:root {
  --bg: #FDF9F8;
  --bg-alt: #F5EDE8;
  --fg: #1A1210;
  --fg-muted: #7D6E65;
  --accent: #C4857A;
  --accent-soft: #EDD5CF;
  --white: #FFFFFF;
  --border: rgba(26, 18, 16, 0.08);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── Navigation ─── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--fg);
}
.nav__tagline {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

/* ─── Hero ─── */
.hero {
  padding: 80px 48px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  min-height: 80vh;
  position: relative;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__bg-shape--1 {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(237, 213, 207, 0.5) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__bg-shape--2 {
  position: absolute;
  bottom: 20%;
  left: 30%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196, 133, 122, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero__content {
  padding-top: 40px;
  position: relative;
  z-index: 1;
}
.hero__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-family: var(--font-body);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 80px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--fg);
}
.hero__line { display: block; }
.hero__line--italic { font-style: italic; font-weight: 300; }
.hero__sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 420px;
  font-weight: 300;
}
.hero__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  padding-top: 20px;
}
.hero__img--1 { grid-column: 1; grid-row: 1 / 3; }
.hero__img--2 { grid-column: 2; grid-row: 1; }
.hero__img--3 { grid-column: 2; grid-row: 2; }
.hero__img-placeholder {
  border-radius: 4px;
  height: 100%;
  min-height: 280px;
}
.hero__img-placeholder--pink { background: #EDD5CF; }
.hero__img-placeholder--white { background: #FFFFFF; border: 1px solid var(--border); }
.hero__img-placeholder--blush { background: #F5EDE8; }

/* ─── Philosophy ─── */
.philosophy {
  padding: 100px 48px;
  background: var(--white);
  margin: 0 0 0 0;
}
.philosophy__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.philosophy__overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.philosophy__quote {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 32px;
  border-left: 2px solid var(--accent-soft);
  padding-left: 28px;
  text-align: left;
}
.philosophy__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--fg-muted);
  text-align: left;
}

/* ─── Features ─── */
.features {
  padding: 100px 48px;
  background: var(--bg);
}
.features__header {
  margin-bottom: 64px;
}
.features__overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.features__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--fg);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.feature {}
.feature__icon {
  width: 44px;
  height: 44px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
  color: var(--fg);
}
.feature__desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 100px 48px;
  background: var(--fg);
  color: var(--white);
}
.manifesto__inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto__overline {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 32px;
}
.manifesto__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 36px;
  color: var(--white);
}
.manifesto__body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  margin-bottom: 24px;
}
.manifesto__accent {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.manifesto__accent span {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--accent-soft);
}

/* ─── Footer ─── */
.footer {
  padding: 64px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer__inner {
  max-width: 720px;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer__sub {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.footer__copy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 0;
    min-height: auto;
  }
  .hero__image-grid {
    margin-top: 40px;
  }
  .hero__img-placeholder { min-height: 180px; }
  .philosophy, .features, .manifesto { padding: 64px 24px; }
  .features__grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px; }
}