:root {
  --bg: #F7F3EE;
  --bg-warm: #EDE6DA;
  --fg: #2C2417;
  --fg-muted: #7A6F60;
  --accent: #8B6B3D;
  --accent-light: #C4A265;
  --olive: #6B7B5E;
  --card-bg: #FFFFFF;
  --card-accent: #2C2417;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ──── HERO ──── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 2rem;
}

.hero-label {
  grid-column: 1 / -1;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 0.5rem;
}

.hero-line {
  width: 40px;
  height: 2px;
  background: var(--accent-light);
  margin-bottom: 1.5rem;
}

.hero-aside p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 380px;
  line-height: 1.7;
}

.hero-bg-text {
  position: absolute;
  bottom: -4rem;
  right: -2rem;
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 22rem);
  font-weight: 700;
  color: var(--bg-warm);
  letter-spacing: -0.03em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: -1;
}

/* ──── FEATURES ──── */
.features {
  padding: 6rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 1rem;
  border: 1px solid var(--olive);
  padding: 0.3em 0.8em;
  border-radius: 2px;
}

.features-header h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 3rem;
  color: var(--fg);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border-radius: 4px;
  position: relative;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
}

.feature-card--wide {
  grid-column: 1 / -1;
}

.feature-card--accent {
  background: var(--card-accent);
  color: var(--bg);
}

.feature-card--accent .feature-number {
  color: var(--accent-light);
}

.feature-card--accent p {
  color: rgba(247, 243, 238, 0.7);
}

.feature-number {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent-light);
  display: block;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ──── METRICS ──── */
.metrics {
  padding: 4rem 2rem;
  background: var(--bg-warm);
}

.metrics-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.metric {
  text-align: center;
}

.metric-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--accent);
  display: block;
  line-height: 1.1;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.5rem;
  display: block;
}

.metric-divider {
  width: 1px;
  height: 60px;
  background: var(--accent-light);
  opacity: 0.4;
}

/* ──── CLOSING ──── */
.closing {
  padding: 8rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.closing-inner .section-tag {
  margin-bottom: 1.5rem;
}

.closing h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--fg);
}

.closing-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* ──── FOOTER ──── */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(139, 107, 61, 0.15);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
}

.footer-sep {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* ──── RESPONSIVE ──── */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: 90vh;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-aside {
    padding-bottom: 0;
  }

  .hero-bg-text {
    font-size: 6rem;
    bottom: -1.5rem;
    right: -1rem;
  }

  .features {
    padding: 4rem 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--wide {
    grid-column: 1;
  }

  .metrics-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .metric-divider {
    width: 40px;
    height: 1px;
  }

  .closing {
    padding: 5rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}