:root {
  --bg: #FDF8F3;
  --bg-alt: #F5EDE4;
  --fg: #2C2420;
  --fg-muted: #7A6E65;
  --accent: #C4704A;
  --accent-warm: #D4825A;
  --sage: #8FA88A;
  --border: #E8DDD4;
  --radius: 6px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
}
.logo-mark { color: var(--accent); display: flex; align-items: center; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  padding: 100px 40px 96px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(48px, 7vw, 84px);
  color: var(--fg);
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero-lede {
  font-size: 20px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 44px;
  font-weight: 400;
  line-height: 1.65;
}
.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tag {
  display: inline-block;
  padding: 8px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* HOW */
.how {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 40px;
}
.how-header {
  max-width: 1100px;
  margin: 0 auto 64px;
}
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 400;
}
.how-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.how-step { position: relative; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 20px;
  line-height: 1;
}
.step-title {
  font-size: 22px;
  margin-bottom: 12px;
}
.step-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PHILOSOPHY */
.philosophy {
  padding: 100px 40px;
}
.philosophy-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-mark {
  color: var(--accent);
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
}
.philosophy-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-style: italic;
  color: var(--fg);
  margin-bottom: 36px;
  line-height: 1.3;
}
.philosophy-body {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* STORIES */
.stories {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 40px;
}
.stories-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.stories .section-title { color: var(--bg); }
.story-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.story-card {
  background: rgba(253, 248, 243, 0.06);
  border: 1px solid rgba(253, 248, 243, 0.12);
  padding: 40px 36px;
  border-radius: 8px;
}
.story-emoji {
  color: var(--accent-warm);
  margin-bottom: 24px;
}
.story-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--bg);
}
.story-body {
  font-size: 15px;
  color: rgba(253, 248, 243, 0.6);
  line-height: 1.65;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 24px;
  line-height: 1.15;
}
.closing-body {
  font-size: 19px;
  color: var(--fg-muted);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
}
.footer-logo svg { color: var(--accent); }
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
}

/* MOBILE */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { padding: 72px 20px 64px; }
  .hero-headline { font-size: 42px; }
  .hero-lede { font-size: 17px; }
  .how, .philosophy, .stories, .closing { padding: 72px 20px; }
  .how-steps, .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-title { font-size: 30px; }
}
