:root {
  --bg: #F8F5F0;
  --fg: #1A1A18;
  --green: #0A3D2E;
  --coral: #E85D3B;
  --amber: #D4A853;
  --muted: #6B6860;
  --border: #E0DCD4;
  --card-bg: #FFFFFF;
}

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

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

h1, h2, h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ── NAV ── */
.nav {
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner { width: 100%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--fg); font-family: 'DM Serif Display', serif; font-size: 1.25rem; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { text-decoration: none; color: var(--muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--fg); }

/* ── HERO ── */
.hero { padding: 96px 48px 80px; background: var(--green); color: #fff; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hero-eyebrow { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 20px; font-weight: 500; }
.hero h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); color: #fff; margin-bottom: 20px; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.8); max-width: 480px; line-height: 1.7; margin-bottom: 40px; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--coral); color: #fff; text-decoration: none; padding: 14px 28px; border-radius: 6px; font-weight: 600; font-size: 0.95rem; transition: background 0.2s; display: inline-block; }
.btn-primary:hover { background: #d44e2e; }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.4); color: #fff; text-decoration: none; padding: 14px 28px; border-radius: 6px; font-weight: 500; font-size: 0.95rem; transition: border-color 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.8); }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; gap: 6px; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 2rem; color: #fff; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.4; }
.stat-highlight { background: rgba(232,93,59,0.15); border-color: rgba(232,93,59,0.3); }

/* ── PROBLEM ── */
.problem { padding: 100px 48px; }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 16px; display: block; }
.problem-header { max-width: 680px; margin-bottom: 64px; }
.problem-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 20px; }
.problem-lede { color: var(--muted); font-size: 1.05rem; line-height: 1.7; }
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.problem-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 32px; }
.problem-icon { width: 48px; height: 48px; background: var(--bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--green); margin-bottom: 20px; }
.problem-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 12px; }
.problem-card p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* ── HOW IT WORKS ── */
.howitworks { padding: 100px 48px; background: var(--card-bg); }
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.howitworks h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.howitworks-sub { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin-bottom: 64px; line-height: 1.7; }
.journey-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.journey-step { display: flex; gap: 24px; padding: 28px 0; border-top: 1px solid var(--border); align-items: flex-start; }
.journey-step:nth-child(odd) { padding-right: 48px; border-right: 1px solid var(--border); }
.journey-step:nth-child(even) { padding-left: 48px; }
.step-num { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: var(--coral); flex-shrink: 0; width: 48px; }
.step-content h3 { font-family: 'DM Serif Display', serif; font-size: 1.1rem; margin-bottom: 8px; }
.step-content p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

/* ── FAIRNESS ── */
.fairness { padding: 100px 48px; background: var(--green); color: #fff; }
.fairness-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.fairness h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; margin-bottom: 20px; }
.fairness-desc { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.7; margin-bottom: 32px; }
.fairness-detail { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 32px; }
.fairness-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(232,93,59,0.2); border: 1px solid rgba(232,93,59,0.3); border-radius: 20px; padding: 6px 14px; font-size: 0.8rem; color: var(--coral); }
.fairness-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 24px; margin-bottom: 16px; }
.fairness-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.fc-hospital { font-weight: 600; font-size: 0.95rem; }
.fc-badge { font-size: 0.72rem; letter-spacing: 0.05em; padding: 4px 10px; border-radius: 20px; font-weight: 600; }
.fc-badge-good { background: rgba(16,185,129,0.2); color: #6ee7b7; }
.fc-badge-warn { background: rgba(251,191,36,0.2); color: #fcd34d; }
.fc-bars { display: flex; flex-direction: column; gap: 12px; }
.fc-bar-row { display: grid; grid-template-columns: 80px 1fr 60px; align-items: center; gap: 12px; }
.fc-bar-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); }
.fc-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.fc-bar-fill { height: 100%; border-radius: 4px; }
.fc-fill-local { background: rgba(255,255,255,0.4); width: 60%; }
.fc-fill-intl { background: rgba(255,255,255,0.7); width: 70%; }
.fc-fill-premium { background: rgba(232,93,59,0.6); width: 20%; }
.fc-premium-warn { background: rgba(251,191,36,0.7); }
.fc-bar-val { font-size: 0.82rem; font-weight: 500; text-align: right; }
.fc-small { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.fc-warn { color: #fcd34d; }
.fc-note { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 12px; font-style: italic; }

/* ── DESTINATIONS ── */
.destinations { padding: 100px 48px; }
.destinations-inner { max-width: 1200px; margin: 0 auto; }
.destinations h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }
.destinations-sub { color: var(--muted); font-size: 1.05rem; max-width: 600px; margin-bottom: 64px; line-height: 1.7; }
.dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.dest-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 12px; padding: 28px 20px; }
.dest-flag { margin-bottom: 16px; }
.dest-card h3 { font-family: 'DM Serif Display', serif; font-size: 1.15rem; margin-bottom: 10px; }
.dest-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.dest-tag { display: inline-block; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--coral); font-weight: 600; }

/* ── MANIFESTO ── */
.manifesto { padding: 100px 48px; background: var(--card-bg); }
.manifesto-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.manifesto-quote { margin-bottom: 48px; }
.manifesto-quote blockquote { font-family: 'DM Serif Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--green); line-height: 1.4; }
.manifesto-body p { color: var(--muted); font-size: 1rem; line-height: 1.85; margin-bottom: 20px; max-width: 680px; margin-left: auto; margin-right: auto; }

/* ── CLOSING ── */
.closing { padding: 100px 48px; background: var(--green); color: #fff; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: #fff; margin-bottom: 20px; }
.closing p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.7; margin-bottom: 48px; }
.closing-trust { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7); }

/* ── FOOTER ── */
.footer { padding: 60px 48px 32px; background: var(--fg); color: #fff; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: 'DM Serif Display', serif; font-size: 1.2rem; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; font-weight: 600; }
.footer-col a { display: block; text-decoration: none; color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .destinations-inner { gap: 12px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .hero { padding: 64px 24px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .problem { padding: 72px 24px; }
  .problem-grid { grid-template-columns: 1fr; }
  .howitworks { padding: 72px 24px; }
  .journey-grid { grid-template-columns: 1fr; }
  .journey-step:nth-child(odd) { border-right: none; padding-right: 0; }
  .journey-step:nth-child(even) { padding-left: 0; }
  .fairness { padding: 72px 24px; }
  .fairness-inner { grid-template-columns: 1fr; gap: 48px; }
  .destinations { padding: 72px 24px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .manifesto { padding: 72px 24px; }
  .closing { padding: 72px 24px; }
  .footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .closing-trust { gap: 24px; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
}