/* ===== Decide to Win — Design System ===== */

:root {
  --bg: #fbfaf7;
  --bg-elev: #ffffff;
  --bg-soft: #f5f1ea;
  --ink: #1a1612;
  --ink-2: #4a4540;
  --ink-3: #837d76;
  --line: #ebe6df;
  --accent: #c2410c;
  --accent-soft: #fef3ec;
  --accent-ink: #7c2d12;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(26,22,18,.04), 0 1px 1px rgba(26,22,18,.03);
  --shadow-md: 0 8px 24px -8px rgba(26,22,18,.12), 0 2px 4px rgba(26,22,18,.04);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-sm { max-width: 880px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,247,.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px; max-width: var(--maxw); margin: 0 auto;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600; font-size: 19px; letter-spacing: -.01em;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #ea580c 100%);
  display: grid; place-items: center;
  color: #fff; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
}
.nav-links { display: flex; gap: 22px; margin-left: 16px; align-items: center; }
.nav-links > a, .nav-links > .has-menu > a {
  color: var(--ink-2); font-weight: 500; font-size: 14.5px;
  padding: 6px 0; position: relative; white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content:""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent); border-radius: 2px;
}
.has-menu { position: relative; }
.has-menu > a::after {
  content: " ▾"; font-size: 10px; opacity: .5;
}
.menu {
  position: absolute; top: calc(100% + 8px); left: -12px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md); padding: 8px; min-width: 180px;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease;
}
.has-menu:hover .menu, .has-menu:focus-within .menu, .has-menu.open .menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.menu a {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 14px; color: var(--ink-2); font-weight: 500;
}
.menu a:hover { background: var(--bg); color: var(--ink); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.lang {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; color: var(--ink-3); font-weight: 500;
  padding: 6px 10px; border: 1px solid var(--line); border-radius: 99px;
  background: var(--bg-elev); position: relative; cursor: pointer;
}
.lang strong { color: var(--ink); font-weight: 600; }
.lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow-md); padding: 6px; min-width: 140px;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: opacity .15s ease, transform .15s ease; z-index: 60;
}
.lang:hover .lang-menu, .lang:focus-within .lang-menu, .lang.open .lang-menu {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.lang-menu a {
  display: block; padding: 8px 12px; font-size: 13.5px; color: var(--ink-2);
  border-radius: 6px;
}
.lang-menu a:hover { background: var(--bg); color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: 99px;
  font-weight: 600; font-size: 14.5px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  cursor: pointer; border: 0; white-space: nowrap;
}
.btn-primary {
  background: var(--ink); color: var(--bg);
}
.btn-primary:hover { background: var(--accent); }
.btn-ghost {
  background: transparent; color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-accent {
  background: var(--accent); color: #fff;
}
.btn-accent:hover { background: #9a3412; }

/* hamburger (mobile) */
.hamburger { display: none; background: none; border: 0; width: 40px; height: 40px; cursor: pointer; padding: 0; position: relative; z-index: 70; }
.hamburger span { display: block; height: 2px; background: var(--ink); margin: 6px auto; width: 20px; transition: transform .25s ease, opacity .2s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* prevent background scroll when drawer is open */
body.menu-open { overflow: hidden; }

/* ---------- HOME HERO ---------- */
.hero {
  padding: 88px 0 96px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(234,88,12,.08), transparent 60%),
    radial-gradient(40% 40% at 10% 80%, rgba(234,88,12,.05), transparent 60%);
}
.hero-grid {
  position: relative;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent-soft); padding: 6px 12px; border-radius: 99px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 99px; background: var(--accent);
}
h1.display {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04; letter-spacing: -.02em;
  margin: 0 0 22px;
  color: var(--ink);
}
h1.display em {
  font-style: italic; color: var(--accent);
}
.lead {
  font-size: 19px; color: var(--ink-2); max-width: 540px;
  margin: 0 0 32px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 36px; display: flex; gap: 24px; align-items: center;
  color: var(--ink-3); font-size: 13.5px; flex-wrap: wrap;
}
.hero-meta .dot { width: 4px; height: 4px; background: var(--ink-3); border-radius: 99px; }
.hero-card {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px; box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 1fr; gap: 18px;
}
.stat {
  display: flex; align-items: baseline; gap: 14px;
  padding: 18px 20px; border-radius: 14px;
  background: linear-gradient(135deg, #fff 0%, var(--bg) 100%);
  border: 1px solid var(--line);
}
.stat-num {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 36px; letter-spacing: -.02em; color: var(--ink);
  line-height: 1;
}
.stat-label { color: var(--ink-2); font-size: 14px; }
.stat-label strong { color: var(--ink); font-weight: 600; }

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(40% 50% at 90% 0%, rgba(234,88,12,.06), transparent 60%);
}
.page-hero .wrap { position: relative; }
h1.page-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(36px, 5vw, 56px); line-height: 1.06;
  letter-spacing: -.02em; margin: 0 0 18px; max-width: 820px;
  color: var(--ink);
}
.page-hero .lead { font-size: 18px; max-width: 700px; }
.breadcrumb { font-size: 13.5px; color: var(--ink-3); margin-bottom: 16px; }
.breadcrumb a { color: var(--ink-3); }
.breadcrumb a:hover { color: var(--ink); }

/* ---------- SECTIONS ---------- */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }
.section-head { max-width: 720px; margin: 0 0 48px; }
.section-head .eyebrow { margin-bottom: 16px; }
h2.section-title {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12; letter-spacing: -.02em;
  margin: 0 0 14px;
}
.section-sub { color: var(--ink-2); font-size: 17px; max-width: 620px; }
.section-divider { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-soft { background: var(--bg-soft); }

/* ---------- JOURNEY STEPS ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step {
  position: relative; padding: 28px 24px;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: 'Fraunces', serif; font-size: 14px; font-weight: 600;
  color: var(--accent); letter-spacing: .04em;
}
.step-title { font-weight: 600; font-size: 18px; margin: 10px 0 8px; }
.step-text { color: var(--ink-2); font-size: 14.5px; margin: 0; }
.step-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px; color: var(--ink); font-weight: 600; font-size: 14px;
  border-bottom: 1px solid var(--ink); padding-bottom: 1px;
}

/* ---------- PILLARS ---------- */
.pillars-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillars-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.pillars-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pillar {
  padding: 28px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-elev);
}
.pillar-sm { padding: 24px; }
.pillar-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; margin-bottom: 20px;
}
.pillar h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; margin: 0 0 10px; letter-spacing: -.01em;
}
.pillar h3.sm { font-size: 17px; }
.pillar p { color: var(--ink-2); margin: 0; font-size: 15px; }
.pillar p.sm { font-size: 13.5px; }

/* ---------- STATS NUMBERED ---------- */
.facts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.fact { padding: 28px 24px; border-right: 1px solid var(--line); }
.fact:last-child { border-right: 0; }
.fact-num {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 34px; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: 6px;
}
.fact-num .small { font-size: 18px; color: var(--ink-3); font-weight: 400; margin-left: 4px; }
.fact-title { font-weight: 600; font-size: 14.5px; margin-bottom: 6px; }
.fact-text { color: var(--ink-2); font-size: 13.5px; margin: 0; }

/* ---------- QUOTE ---------- */
.quote-block {
  background: var(--ink); color: #f5f1ea;
  border-radius: 20px; padding: 64px 56px;
  display: grid; grid-template-columns: auto 1fr; gap: 32px;
  align-items: start;
}
.quote-mark {
  font-family: 'Fraunces', serif; font-size: 96px; line-height: .8;
  color: var(--accent); font-weight: 500;
}
.quote-block blockquote {
  margin: 0; font-family: 'Fraunces', serif; font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px); line-height: 1.35; letter-spacing: -.01em;
}
.quote-block cite {
  display: block; margin-top: 20px;
  font-family: 'Inter', sans-serif; font-style: normal;
  font-size: 14px; color: rgba(245,241,234,.6); letter-spacing: .02em;
}

/* ---------- LONG-FORM ARTICLE ---------- */
.article { max-width: 800px; }
.article p { font-size: 17px; color: var(--ink-2); line-height: 1.7; margin: 0 0 20px; }
.article p strong { color: var(--ink); }
.article h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 26px; letter-spacing: -.01em; margin: 48px 0 16px;
}
.article h4 {
  font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-ink); margin: 36px 0 10px;
}
.article ul { padding-left: 22px; margin: 0 0 20px; color: var(--ink-2); font-size: 17px; line-height: 1.7; }
.article li { margin-bottom: 6px; }
.article hr { border: 0; border-top: 1px solid var(--line); margin: 48px 0; }
.callout {
  background: var(--accent-soft); border: 1px solid #fcd5b8;
  border-radius: var(--radius); padding: 22px 24px; margin: 24px 0;
  color: var(--accent-ink); font-size: 15.5px;
}
.callout strong { color: var(--accent-ink); }

/* numbered steps in article */
.numbered-step {
  display: grid; grid-template-columns: 60px 1fr; gap: 24px;
  padding: 28px 0; border-top: 1px solid var(--line);
}
.numbered-step:first-of-type { border-top: 0; padding-top: 8px; }
.numbered-step-num {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 44px; line-height: 1; color: var(--accent);
}
.numbered-step h3 { margin-top: 0; margin-bottom: 12px; }
.numbered-step p { font-size: 16px; }

/* ---------- VIDEO/MEDIA GRID ---------- */
.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.media-card {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: flex; flex-direction: column; gap: 12px;
}
.media-thumb {
  aspect-ratio: 16 / 9; background: #000; border-radius: 10px;
  position: relative; overflow: hidden;
}
.media-thumb iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.media-title { font-weight: 600; font-size: 15px; color: var(--ink); margin: 0; }
.media-meta { font-size: 13px; color: var(--ink-3); }
.media-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: auto; font-size: 13.5px; font-weight: 600; color: var(--accent-ink);
}
.media-link:hover { color: var(--accent); }

/* ---------- LEADER PROFILE CARDS ---------- */
.leaders { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.leader {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 16px;
}
.leader-video {
  aspect-ratio: 16 / 9; background: #000; border-radius: 10px;
  position: relative; overflow: hidden; margin-bottom: 4px;
}
.leader-video iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.leader-head { display: flex; align-items: center; gap: 16px; }
.leader-avatar {
  width: 56px; height: 56px; border-radius: 99px;
  background: linear-gradient(135deg, var(--accent) 0%, #9a3412 100%);
  display: grid; place-items: center; color: #fff;
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 20px;
  letter-spacing: -.02em; flex-shrink: 0;
}
.leader-name {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px;
  letter-spacing: -.01em; margin: 0;
}
.leader-role { font-size: 13.5px; color: var(--ink-3); margin: 4px 0 0; }
.leader-bio { color: var(--ink-2); font-size: 15px; margin: 0; line-height: 1.6; }
.leader-bio ul { padding-left: 18px; margin: 8px 0 0; }
.leader-bio li { margin-bottom: 4px; }

/* ---------- EVENTS SCHEDULE ---------- */
.events-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: stretch; }
.schedule { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 8px; }
.schedule-row {
  display: grid; grid-template-columns: 110px 1fr auto;
  align-items: center; gap: 16px;
  padding: 20px; border-radius: var(--radius-sm);
}
.schedule-row + .schedule-row { border-top: 1px solid var(--line); }
.schedule-row:hover { background: var(--bg); }
.schedule-day {
  font-weight: 600; color: var(--ink); font-size: 13px;
  letter-spacing: .04em; text-transform: uppercase;
}
.schedule-title { font-weight: 500; color: var(--ink); }
.schedule-sub { font-size: 13.5px; color: var(--ink-3); margin-top: 4px; }
.schedule-sub a { color: var(--accent-ink); text-decoration: underline; }
.schedule-time {
  font-feature-settings: "tnum";
  color: var(--ink-2); font-size: 14px; font-weight: 500;
}
.lang-tag {
  display: inline-block; padding: 2px 8px; border-radius: 99px;
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  background: var(--accent-soft); color: var(--accent-ink);
  margin-right: 4px;
}
.event-card {
  background: linear-gradient(160deg, var(--accent) 0%, #9a3412 100%);
  color: #fff; border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.event-eyebrow { font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .8; }
.event-card h3 { font-family: 'Fraunces', serif; font-weight: 500; font-size: 28px; margin: 12px 0 8px; letter-spacing: -.01em; color: #fff; }
.event-meta { font-size: 14.5px; opacity: .9; margin-bottom: 24px; }
.event-card .btn { background: #fff; color: var(--ink); align-self: flex-start; }
.event-card .btn:hover { background: var(--bg); }
.event-card a + a { margin-top: 10px; }

/* ---------- FAQ ACCORDION ---------- */
.faq-group { margin-bottom: 56px; }
.faq-group h2 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 28px; letter-spacing: -.01em; margin: 0 0 24px;
}
.faq-item {
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  padding: 20px 24px; font-weight: 500; font-size: 16px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; font-weight: 300; color: var(--ink-3);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { background: var(--bg); }
.faq-body {
  padding: 0 24px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.65;
}

/* ---------- LOGIN WALL ---------- */
.login-wall {
  max-width: 920px; margin: 0 auto; padding: 80px 24px 100px;
}
.login-wall .lead-msg {
  text-align: center; max-width: 600px; margin: 0 auto 48px;
  font-size: 17px; color: var(--ink-2);
}
.login-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.login-card {
  padding: 36px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-elev);
}
.login-card h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 22px; margin: 0 0 12px;
}
.login-card p { color: var(--ink-2); font-size: 14.5px; margin: 0 0 24px; }
.field { display: block; margin-bottom: 16px; }
.field label {
  display: block; font-size: 13px; font-weight: 600; color: var(--ink-2);
  margin-bottom: 6px;
}
.field input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line);
  border-radius: 8px; font-size: 15px; font-family: inherit;
  background: var(--bg); color: var(--ink);
  transition: border-color .15s ease;
}
.field input:focus { outline: none; border-color: var(--ink); background: #fff; }
.login-card .btn { width: 100%; justify-content: center; }
.login-card .small-link {
  display: block; text-align: center; font-size: 13.5px;
  color: var(--ink-3); margin-top: 14px;
}
.login-card .small-link:hover { color: var(--ink); }

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center; padding: 96px 24px;
  border-top: 1px solid var(--line);
}
.final-cta h2 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(32px, 4vw, 48px); line-height: 1.1;
  letter-spacing: -.02em; margin: 0 auto 16px; max-width: 720px;
}
.final-cta p { color: var(--ink-2); font-size: 17px; max-width: 540px; margin: 0 auto 28px; }
.final-cta .hero-ctas { justify-content: center; }

/* ---------- DOWNLOAD ROW ---------- */
.downloads { display: flex; gap: 12px; flex-wrap: wrap; }
.download-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border: 1px solid var(--line); border-radius: 99px;
  background: var(--bg-elev); color: var(--ink); font-weight: 500;
  font-size: 14px;
  transition: border-color .15s ease, transform .15s ease;
}
.download-pill:hover { border-color: var(--ink); transform: translateY(-1px); }
.download-pill svg { color: var(--accent); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--ink); color: rgba(245,241,234,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(245,241,234,.1);
}
footer h4 { color: #fff; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; margin: 0 0 16px; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
footer a { font-size: 14.5px; color: rgba(245,241,234,.7); }
footer a:hover { color: #fff; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(245,241,234,.6); max-width: 320px; margin: 0; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13px; color: rgba(245,241,234,.5);
  flex-wrap: wrap; gap: 12px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .pillars-5 { grid-template-columns: repeat(2, 1fr); }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .fact { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .fact:nth-child(2n) { border-right: 0; }
  .fact:last-child { border-bottom: 0; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .pillars-3 { grid-template-columns: 1fr; }
  .pillars-2 { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .leaders { grid-template-columns: 1fr; }
  .login-grid { grid-template-columns: 1fr; }
  .quote-block { padding: 40px 28px; grid-template-columns: 1fr; gap: 12px; }
  .quote-mark { font-size: 64px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hamburger { display: block; }
  section { padding: 56px 0; }
  .hero { padding: 56px 0 64px; }
  .numbered-step { grid-template-columns: 1fr; gap: 8px; }

  /* compact "Log in" button on mobile */
  .nav-right .btn-ghost { padding: 8px 14px; font-size: 13.5px; }

  /* turn .nav-links into a slide-in drawer */
  .nav-links {
    display: flex;
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(86vw, 360px); height: 100dvh;
    flex-direction: column; align-items: stretch;
    background: var(--bg-elev);
    padding: 88px 24px 32px;
    margin: 0; gap: 0;
    box-shadow: -16px 0 48px -8px rgba(26,22,18,.18);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.22,.61,.36,1);
    z-index: 55;
  }
  .nav-links.open { transform: translateX(0); }

  /* backdrop */
  body.menu-open::after {
    content: "";
    position: fixed; inset: 0;
    background: rgba(26,22,18,.4);
    z-index: 54;
    animation: fadeIn .2s ease;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  /* nav items inside drawer */
  .nav-links > a,
  .nav-links > .has-menu > a {
    display: block; width: 100%;
    padding: 16px 4px; font-size: 17px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .nav-links > a.active { color: var(--accent); }
  .nav-links > a.active::after { display: none; }

  /* dropdown trigger uses chevron, rotates when open */
  .has-menu > a::after {
    content: "›"; position: absolute; right: 4px; top: 16px;
    font-size: 20px; opacity: .5;
    transition: transform .2s ease;
  }
  .has-menu.open > a::after { transform: rotate(90deg); }

  /* submenu inline-expanded inside drawer (override desktop popover) */
  .has-menu { position: static; border-bottom: 1px solid var(--line); }
  .has-menu > a { border-bottom: 0; }
  .menu {
    position: static; opacity: 1; pointer-events: auto; transform: none;
    background: transparent; border: 0; box-shadow: none;
    padding: 0 0 12px; min-width: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .28s ease;
  }
  .has-menu.open .menu { max-height: 400px; }
  .menu a { padding: 10px 16px; font-size: 15px; }
  .menu a:hover { background: var(--bg); }

  /* language switcher inside drawer */
  .nav-right { margin-left: auto; }
  .nav-right .lang { margin-right: 8px; }
  .lang-menu { right: auto; left: 0; }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
  .pillars-5 { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .fact { border-right: 0; }
  .media-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .quote-block { padding: 32px 24px; }
}
