:root {
  --bg: #f4efe6;
  --bg-alt: #ebe6dc;
  --fg: #1a1a1a;
  --fg-muted: #5a5a5a;
  --accent: #c9622f;
  --teal: #0d3d3d;
  --teal-mid: #1a5c5c;
  --cream: #f9f6f0;
  --border: #d4cfc5;
  --radius: 6px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(244, 239, 230, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-links a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image-wrap {
  position: absolute;
  inset: 0;
}
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(244, 239, 230, 0.95) 0%,
    rgba(244, 239, 230, 0.85) 45%,
    rgba(244, 239, 230, 0.4) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 32px 80px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--teal);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  max-width: 620px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-cta { margin-bottom: 16px; }
.hero-meta {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
}
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--teal-mid);
  transform: translateY(-1px);
}

/* HOW IT WORKS */
.howitworks {
  padding: 100px 0;
  background: var(--cream);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--teal);
  letter-spacing: -0.025em;
  margin-bottom: 64px;
  line-height: 1.1;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}
.step-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* FEATURES */
.features {
  padding: 100px 0;
  background: var(--bg);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.feature {}
.feature-icon {
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.feature-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* WORLDMAP */
.worldmap {
  padding: 100px 0;
  background: var(--teal);
}
.worldmap-inner {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: center;
}
.worldmap-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.worldmap-body {
  font-size: 16px;
  color: rgba(249, 246, 240, 0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}
.worldmap-stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 14px;
  color: rgba(249, 246, 240, 0.6);
  font-weight: 500;
}

/* CLOSING */
.closing {
  padding: 100px 0;
  background: var(--cream);
  text-align: center;
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--teal);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  margin-bottom: 40px;
}

/* FOOTER */
.footer {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--teal);
}
.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.footer-links a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  font-size: 12px;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .features-grid { grid-template-columns: 1fr; gap: 36px; }
  .worldmap-inner { grid-template-columns: 1fr; gap: 48px; }
  .worldmap-stats { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-content { padding-top: 100px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-content { padding: 90px 20px 60px; }
  .worldmap-stats { flex-direction: column; }
}