:root {
  --bg: #FFF8F2;
  --bg-alt: #F5EDE4;
  --fg: #1A1714;
  --fg-muted: #7A7168;
  --accent: #C4785B;
  --accent-light: #F0DED4;
  --border: #E8DDD2;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Navigation */
.nav {
  padding: 28px 0 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 80px 0 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 460px;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 2px 16px rgba(196, 120, 91, 0.06);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow 0.2s;
}
.hero-card:hover {
  box-shadow: 0 4px 24px rgba(196, 120, 91, 0.12);
}
.hero-card-1 { border-left: 3px solid var(--accent); }
.hero-card-2 { border-left: 3px solid #7BA68F; }
.hero-card-3 { border-left: 3px solid #9B8EC4; }
.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--fg);
}
.card-remaining {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* Features */
.features {
  padding: 80px 0;
  background: var(--bg-alt);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.features-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 48px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 64px;
}
.feature {}
.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.feature h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.feature p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* Story / Quote */
.story {
  padding: 100px 0;
}
.story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-quote blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--fg);
  margin-bottom: 32px;
}
.attr-line {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 4px;
}
.attr-sub {
  font-size: 12px;
  color: var(--fg-muted);
}
.story-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-left: 1px solid var(--border);
  padding-left: 60px;
}
.stat-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* Closing */
.closing {
  padding: 100px 0 120px;
  background: var(--fg);
  color: white;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}
.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
}
.closing-body {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-vibe {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Footer */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}
.footer-desc {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-links {
  font-size: 12px;
  color: var(--fg-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-grid { grid-template-columns: 1fr; }
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-stats { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 48px; }
}
@media (max-width: 600px) {
  .nav-inner, .hero-inner, .features-inner, .story-inner, .closing-inner, .footer-inner {
    padding: 0 24px;
  }
  .nav { padding-top: 20px; }
  .hero { padding: 48px 0 40px; }
  .features, .story { padding: 60px 0; }
  .closing { padding: 60px 0 80px; }
}