@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --bg: #0f0e0c;
  --surface: #181612;
  --surface2: #201e19;
  --earth: #c4894a;
  --earth-dark: #9a6a35;
  --earth-light: rgba(196,137,74,0.12);
  --sage: #6b8f6e;
  --sage-light: rgba(107,143,110,0.12);
  --text: #f0ebe0;
  --muted: #9aaa98;
  --border: rgba(240,235,224,0.08);
  --border-earth: rgba(196,137,74,0.25);
  --radius: 6px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4, blockquote {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15,14,12,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text);
}
.nav-logo span { color: var(--earth); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--muted);
  transition: color .2s;
  text-transform: uppercase;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--earth);
  color: #0f0e0c !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 500 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--earth-dark) !important; }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 12px; }
  .hide-mobile { display: none !important; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(196,137,74,0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(107,143,110,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 300;
  color: var(--text);
  max-width: 900px;
  margin-bottom: 28px;
  line-height: 1.08;
}
.hero h1 em {
  font-style: italic;
  color: var(--earth);
}
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px, 1.5vw, 16px);
  font-style: italic;
  color: var(--muted);
  border-left: 2px solid var(--earth);
  padding-left: 20px;
  max-width: 680px;
  line-height: 1.6;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s;
  border: none;
}
.btn-earth { background: var(--earth); color: #0f0e0c; }
.btn-earth:hover { background: var(--earth-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border-earth); }
.btn-outline:hover { background: var(--earth-light); border-color: var(--earth); }

/* ── SECTION ── */
.section { padding: 100px 40px; }
.section-sm { padding: 60px 40px; }
.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 760px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  font-weight: 300;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ── CARDS ── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px;
  transition: border-color .2s;
}
.card:hover { border-color: var(--border-earth); }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card-icon { font-size: 24px; margin-bottom: 16px; }
.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.card-text { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── PROBLEM GRID ── */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.problem-item {
  background: var(--surface);
  padding: 32px;
}
.problem-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--text);
  margin-bottom: 10px;
}
.problem-text { font-size: 14px; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ── STAT ROW ── */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: 10px; overflow: hidden; }
.stat-item { background: var(--surface); padding: 28px 24px; text-align: center; }
.stat-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--earth);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl { font-size: 12px; color: var(--muted); letter-spacing: .04em; }

/* ── VALUES ── */
.value-row {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.value-row:last-child { border-bottom: none; }
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--earth);
  min-width: 56px;
  line-height: 1;
  padding-top: 4px;
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--text);
  margin-bottom: 6px;
}
.value-text { font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* ── CTA ── */
.cta-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 40px;
  text-align: center;
}
.cta-section h2 { font-size: clamp(32px, 5vw, 60px); font-weight: 300; margin-bottom: 20px; }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  letter-spacing: .1em;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-logo span { color: var(--earth); }
.footer-desc { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 280px; font-weight: 300; }
.footer-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 10px; transition: color .2s; font-weight: 300; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── PAGE HERO ── */
.page-hero {
  padding: 140px 40px 80px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 24px; letter-spacing: .04em; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--text); }

/* ── HIGHLIGHT BOX ── */
.highlight {
  background: var(--earth-light);
  border: 1px solid var(--border-earth);
  border-radius: var(--radius);
  padding: 24px 28px;
}

/* ── ZONE CARDS ── */
.zone-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.zone-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
}
.zone-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--earth);
  opacity: .4;
  line-height: 1;
  margin-bottom: 12px;
}
.zone-title { font-size: 14px; font-weight: 500; color: var(--text); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.zone-text { font-size: 13px; color: var(--muted); line-height: 1.6; font-weight: 300; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .section { padding: 70px 24px; }
  .hero { padding: 100px 24px 60px; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .zone-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  nav { padding: 0 20px; }
  .page-hero { padding: 110px 24px 60px; }
  .cta-section { padding: 70px 24px; }
}
@media (max-width: 600px) {
  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .zone-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .value-row { flex-direction: column; gap: 8px; }
}
