:root {
  --bg: #f5f0e8;
  --fg: #1a1a18;
  --accent: #c8922a;
  --navy: #1a3d2b;
  --muted: #6b6b65;
  --rule: #d4cfc4;
  --card-bg: #fffdf7;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 64px;
  border-bottom: 1px solid var(--rule);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--navy);
}

.nav-badge {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--rule);
  padding: 6px 14px;
  border-radius: 20px;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 64px 80px;
  background: var(--navy);
  color: #fff;
}

.hero-inner {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
  color: #fff;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  line-height: 1.65;
  margin-bottom: 56px;
}

.hero-stat-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px;
}

.hero-stat {
  flex: 1;
  padding-right: 40px;
}

.hero-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 42px;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  display: block;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.12);
  align-self: stretch;
  margin: 0 40px;
}

.hero-accent-mark {
  position: absolute;
  right: -80px;
  top: 0;
  bottom: 0;
  width: 400px;
  background: linear-gradient(135deg, rgba(200,146,42,0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* SECTION LABEL */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* WHY */
.why {
  padding: 96px 64px;
  background: var(--bg);
}

.why-inner { max-width: 820px; }

.why-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 54px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 48px;
  color: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}

.why-item {
  background: var(--card-bg);
  padding: 32px;
}

.why-icon {
  margin-bottom: 16px;
}

.why-item p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg);
}

.why-statement {
  font-size: 20px;
  line-height: 1.5;
  color: var(--fg);
  font-weight: 500;
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}

/* HOW */
.how {
  padding: 96px 64px;
  background: #fff;
}

.how-inner { max-width: 820px; }

.how-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--navy);
}

.how-intro {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 56px;
  max-width: 620px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.how-step-num {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.how-step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.how-step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* REGIONS */
.regions {
  padding: 96px 64px;
  background: var(--navy);
  color: #fff;
}

.regions-inner { max-width: 820px; }

.regions .section-label { color: var(--accent); }

.regions-headline {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -1px;
  margin-bottom: 48px;
  color: #fff;
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
}

.region-card {
  background: rgba(255,255,255,0.06);
  padding: 32px;
}

.region-card-wide {
  grid-column: span 1;
}

.region-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 10px;
}

.region-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  padding: 96px 64px;
  background: var(--bg);
}

.closing-inner { max-width: 720px; }

.closing-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 40px;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* FOOTER */
.footer {
  padding: 48px 64px;
  border-top: 1px solid var(--rule);
  background: var(--bg);
}

.footer-inner {}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--rule);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 20px 28px; }
  .hero { padding: 60px 28px 56px; }
  .hero-headline { font-size: 46px; letter-spacing: -1px; }
  .hero-stat-row { flex-direction: column; gap: 28px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding-right: 0; }
  .why, .how, .regions, .closing { padding: 64px 28px; }
  .why-grid, .how-steps, .regions-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 28px; }
}
