/* ============================================================
   STUDY ABROAD GATE — Design System
   Trusted gateway to a world-class education abroad.
   Synthesized from IDP (trust architecture), YesAtlas (regional
   value props), HubSpot (dual-CTA conversion patterns).
   ============================================================ */

/* Design-system token layer — MUST load so component vars
   (--surface-page, --ink-900, --color-brand, --text-muted, …) resolve.
   Without these, component/kit pages render on undefined backgrounds
   (transparent → painted black by the browser). */
@import url('tokens/fonts.css');
@import url('tokens/typography.css');
@import url('tokens/spacing.css');
@import url('tokens/colors.css');
@import url('tokens/effects.css');
@import url('tokens/base.css');

@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&family=Hanken+Grotesk:wght@400;500;600;700;800&family=Spline+Sans+Mono:wght@400;500&display=swap');

:root {
  /* Brand — derived from the approved logo */
  --ink:        oklch(0.25 0.028 256);   /* primary text — near navy-black */
  --navy:       #13233F;                 /* logo navy — primary brand */
  --navy-700:   #1C2F4C;                 /* lighter step — links / hovers */
  --navy-deep:  #0C1729;                 /* hero / footer ground */
  --gold:       #C48E2E;                 /* logo gold — fills / icons */
  --gold-strong:#8A5E16;                 /* deep gold — AA small text / eyebrows */
  --gold-soft:  oklch(0.93 0.055 84);    /* gold tint — soft fills */
  /* NOTE: teal is NOT in the approved palette (Navy + Gold + Ivory + neutrals).
     These legacy aliases are remapped onto approved navy tones so any remaining
     references resolve on-brand. Do not introduce new teal. */
  --teal:       var(--navy);              /* deprecated → approved navy */
  --teal-soft:  oklch(0.945 0.016 256);   /* deprecated → cool navy tint */

  /* Neutrals (warm) */
  --cream:      oklch(0.985 0.008 86);   /* page ground */
  --sand:       oklch(0.955 0.012 82);   /* alt section */
  --card:       oklch(1 0 0);
  --line:       oklch(0.905 0.010 80);
  --line-soft:  oklch(0.945 0.008 82);
  --muted:      oklch(0.52 0.020 256);   /* secondary text */
  --muted-2:    oklch(0.62 0.016 256);

  /* Type */
  --serif: 'Source Serif 4', Georgia, serif; /* @kind font */
  --sans:  'Hanken Grotesk', system-ui, -apple-system, sans-serif; /* @kind font */
  --mono:  'Spline Sans Mono', ui-monospace, monospace; /* @kind font */

  /* Radius / shadow */
  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px oklch(0.25 0.03 256 / 0.06), 0 2px 6px oklch(0.25 0.03 256 / 0.05);
  --sh-2: 0 6px 24px oklch(0.25 0.03 256 / 0.09);
  --sh-3: 0 20px 60px oklch(0.20 0.04 258 / 0.18);

  /* Layout */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px); /* @kind spacing */
}

* { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
p { margin: 0; text-wrap: pretty; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap-wide { max-width: 1340px; margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section-sm { padding-block: clamp(40px, 5vw, 64px); }
.center { text-align: center; }
.stack > * + * { margin-top: var(--s, 16px); }

/* ---------- eyebrow / kicker ---------- */
.kicker {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-strong);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.kicker::before {
  content: "";
  width: 22px; height: 1.5px;
  background: var(--gold-strong);
  display: inline-block;
}
.kicker.on-dark { color: var(--gold); }
.kicker.on-dark::before { background: var(--gold); }
.kicker.center-line { justify-content: center; }

/* ---------- headings scale ---------- */
.h-display { font-size: clamp(2.6rem, 5.6vw, 4.4rem); line-height: 1.02; letter-spacing: -0.025em; }
.h1 { font-size: clamp(2.1rem, 3.8vw, 3.1rem); }
.h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
.h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--muted); line-height: 1.62; }
.eyebrow-serif { font-style: italic; color: var(--gold-strong); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 14px 24px; border-radius: var(--r-pill);
  border: 1.5px solid transparent; cursor: pointer; transition: all .18s ease;
  line-height: 1; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-accent { background: var(--gold); color: var(--ink); border-color: var(--gold); box-shadow: var(--sh-1); }
.btn-accent:hover { background: var(--gold-strong); border-color: var(--gold-strong); transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-1px); box-shadow: var(--sh-2); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: oklch(0.25 0.03 256 / 0.03); }
.btn-ghost.on-dark { color: #fff; border-color: oklch(1 0 0 / 0.28); }
.btn-ghost.on-dark:hover { border-color: #fff; background: oklch(1 0 0 / 0.08); }
.btn-lg { padding: 17px 30px; font-size: 1.05rem; }
.btn-block { width: 100%; }
.link-arrow { font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: 7px; }
.link-arrow svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- image placeholder ---------- */
.ph {
  position: relative;
  background-color: var(--sand);
  background-image: repeating-linear-gradient(135deg, oklch(0.34 0.04 256 / 0.05) 0 1px, transparent 1px 13px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  color: var(--muted);
}
.ph::after {
  content: attr(data-label);
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em;
  color: var(--muted-2); text-transform: uppercase;
  padding: 6px 12px; border: 1px dashed var(--line);
  border-radius: var(--r-pill); background: oklch(1 0 0 / 0.6);
  max-width: 78%; text-align: center; line-height: 1.4;
}
.ph.dark { background-color: var(--navy-700); background-image: repeating-linear-gradient(135deg, oklch(1 0 0 / 0.05) 0 1px, transparent 1px 13px); border-color: oklch(1 0 0 / 0.12); }
.ph.dark::after { color: oklch(1 0 0 / 0.6); border-color: oklch(1 0 0 / 0.2); background: oklch(1 0 0 / 0.06); }

/* ---------- cards ---------- */
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-1); overflow: hidden;
}

/* ---------- chips / tags ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 600; padding: 6px 13px; border-radius: var(--r-pill);
  background: var(--sand); color: var(--muted); border: 1px solid var(--line);
}
.chip-gold { background: var(--gold-soft); color: oklch(0.45 0.09 70); border-color: transparent; }
.chip-teal { background: oklch(0.945 0.016 256); color: var(--navy); border-color: transparent; }

/* ---------- header / nav ---------- */
.site-head {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-deep);
  border-bottom: 1px solid oklch(1 0 0 / 0.08);
}
.site-head .brand { color: #fff; }
.site-head .btn-ghost { color: #fff; border-color: oklch(1 0 0 / 0.28); }
.site-head .btn-ghost:hover { border-color: #fff; background: oklch(1 0 0 / 0.08); }
.nav { display: flex; align-items: center; gap: 28px; height: clamp(64px,7vw,88px); }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-weight: 600; font-size: 1.22rem; letter-spacing: -0.02em; color: var(--ink); }
.brand .mark {
  width: 30px; height: 30px; flex: 0 0 auto; position: relative;
  background: var(--navy); border-radius: 7px 7px 3px 3px;
  display: grid; place-items: center;
}
.brand .mark::before {
  content: ""; width: 13px; height: 17px; background: var(--gold);
  border-radius: 7px 7px 0 0;
}
.brand small { color: var(--gold-strong); }

/* ---------- canonical logo (approved primary identity) ---------- */
/* Full lockup — icon + wordmark + tagline always together. Clear space
   = 0.5× cap-height of the wordmark, provided by header padding + gap. */
.brand.sag-logo { gap: 0; }
.brand.sag-logo img { height: clamp(42px,4.4vw,56px); width: auto; display: block; }
.sag-logo-link { display: inline-flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.foot-logo { height: 58px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 22px; margin-left: 8px; }
.nav-links a { font-size: 0.96rem; font-weight: 500; color: oklch(0.84 0.012 256); padding: 6px 0; position: relative; transition: color .15s; }
.nav-links a:hover { color: #fff; }
.nav-links a.has-caret::after { content: "▾"; font-size: 0.7em; margin-left: 5px; color: oklch(0.7 0.02 256); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lang-toggle { font-family: var(--mono); font-size: 0.8rem; font-weight: 500; color: oklch(0.84 0.015 256); border: 1px solid oklch(1 0 0 / 0.18); border-radius: var(--r-pill); padding: 6px 12px; }
.lang-toggle b { color: var(--gold); }

/* ---------- footer ---------- */
.site-foot { background: var(--navy-deep); color: oklch(0.86 0.01 256); padding-block: clamp(48px, 6vw, 76px) 28px; }
.site-foot a { color: oklch(0.80 0.015 256); font-size: 0.94rem; }
.site-foot a:hover { color: #fff; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.foot-col h5 { font-family: var(--sans); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 0 0 16px; font-weight: 700; }
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.foot-bar { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 48px; padding-top: 24px; border-top: 1px solid oklch(1 0 0 / 0.12); font-size: 0.84rem; color: oklch(0.66 0.015 256); flex-wrap: wrap; }

/* ---------- footer social icons ---------- */
.foot-social { display: flex; align-items: center; gap: 12px; margin-top: 40px; flex-wrap: wrap; }
.foot-social + .foot-bar { margin-top: 28px; }
.foot-social a { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.14); color: oklch(0.82 0.015 256); transition: background .16s, color .16s, border-color .16s; }
.foot-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.foot-social svg { width: 18px; height: 18px; }

/* ---------- footer language switch (EN ⇄ AR) ---------- */
.foot-lang { display: inline-flex; align-items: center; gap: 4px; background: oklch(1 0 0 / 0.06); border: 1px solid oklch(1 0 0 / 0.14); border-radius: var(--r-pill); padding: 4px; }
.foot-lang a { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: oklch(0.80 0.015 256); padding: 5px 14px; border-radius: var(--r-pill); line-height: 1; transition: background .16s ease, color .16s ease; }
.foot-lang a[lang="ar"] { font-family: var(--sans); }
.foot-lang a:hover { color: #fff; }
.foot-lang a[aria-current="true"] { background: var(--gold); color: var(--ink); }
.foot-lang a[aria-current="true"]:hover { color: var(--ink); }
.foot-brand { display: flex; align-items: center; gap: 11px; font-family: var(--serif); font-size: 1.3rem; color: #fff; margin-bottom: 14px; }
.foot-brand img.foot-logo { height: 58px; }

/* ---------- trust bar ---------- */
.trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.trust-cell { background: var(--card); padding: 26px 24px; text-align: center; }
.trust-cell .num { font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 2.6rem); font-weight: 600; color: var(--navy); line-height: 1; }
.trust-cell .num b { color: var(--gold-strong); font-weight: 600; }
.trust-cell .lbl { font-size: 0.86rem; color: var(--muted); margin-top: 9px; }
.trust-cell .src { font-family: var(--mono); font-size: 0.66rem; color: var(--muted-2); margin-top: 6px; letter-spacing: 0.02em; }

/* ---------- proof tiles (Manchester "Why X" pattern, source-cited) ---------- */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.proof-tile { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 6px; }
.proof-tile .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-soft); display: grid; place-items: center; margin-bottom: 8px; }
.proof-tile .ic svg { width: 21px; height: 21px; stroke: var(--gold-strong); fill: none; }
.proof-tile .claim { font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.proof-tile p { font-size: 0.9rem; color: var(--muted); }
.proof-tile .src { font-family: var(--mono); font-size: 0.68rem; color: var(--muted-2); margin-top: auto; padding-top: 8px; }
.proof-tile .src::before { content: "↳ source: "; opacity: 0.7; }

/* ---------- partner prestige strip (borrowed authority) ---------- */
.partner-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.partner-chip { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 16px 18px; display: flex; align-items: center; gap: 13px; }
.partner-chip .logo { width: 46px; height: 46px; border-radius: 10px; flex: 0 0 auto; }
.partner-chip b { font-size: 0.98rem; display: block; }
.partner-chip .rank { font-family: var(--mono); font-size: 0.72rem; color: var(--gold-strong); margin-top: 2px; }

@media (max-width: 1000px) { .proof-grid, .partner-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .proof-grid, .partner-row { grid-template-columns: 1fr; } }

/* ---------- destination card ---------- */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.dest-card { display: flex; flex-direction: column; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.dest-card .img { aspect-ratio: 4/3; border-radius: 0; border: 0; }
.dest-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.dest-card .flag { font-size: 0.8rem; font-family: var(--mono); color: var(--gold-strong); letter-spacing: 0.08em; text-transform: uppercase; }
.dest-card h3 { font-size: 1.4rem; }
.dest-card p { font-size: 0.95rem; color: var(--muted); flex: 1; }

/* ---------- step / process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step { position: relative; padding-top: 18px; }
.step .n { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); font-weight: 600; line-height: 1; }
.step h4 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; margin: 12px 0 7px; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ---------- reason grid ---------- */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reason { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 24px; }
.reason .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--gold-soft); display: grid; place-items: center; margin-bottom: 16px; }
.reason .ic svg { width: 22px; height: 22px; stroke: var(--gold-strong); }
.reason h4 { font-family: var(--sans); font-size: 1.08rem; font-weight: 700; margin-bottom: 7px; }
.reason p { font-size: 0.93rem; color: var(--muted); }

/* ---------- lead form ---------- */
.lead-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-2); padding: 26px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.field label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.field input, .field select {
  font-family: var(--sans); font-size: 0.98rem; padding: 12px 14px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line); background: var(--cream); color: var(--ink); width: 100%;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--navy); background: #fff; }
.form-note { font-size: 0.8rem; color: var(--muted-2); margin-top: 4px; }

/* ---------- hero eligibility widget (3-step; markup + JS shared via eligibility-widget.js) ---------- */
.qz-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.qz-prog { display: flex; gap: 6px; }
.qz-prog i { width: 28px; height: 4px; border-radius: 2px; background: var(--line); transition: .2s; }
.qz-prog i.on { background: var(--gold); }
.qz-step-lbl { font-family: var(--mono); font-size: 0.74rem; color: var(--muted-2); }
.qz-panel { display: none; }
.qz-panel.active { display: block; }
.qz-q { font-family: var(--serif); font-size: 1.32rem; font-weight: 700; line-height: 1.3; margin-bottom: 5px; }
.qz-help { font-size: 0.9rem; color: var(--muted); margin-bottom: 15px; line-height: 1.6; }
.qz-opts { display: grid; gap: 9px; }
.qz-opts.two { grid-template-columns: 1fr 1fr; }
.qz-opt { display: flex; align-items: center; gap: 10px; text-align: start; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--cream); cursor: pointer; font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--ink); transition: .14s; }
.qz-opt:hover { border-color: var(--navy); background: #fff; }
.qz-opt.sel { border-color: var(--gold-strong); background: var(--gold-soft); }
.qz-opt .em { font-size: 1.1rem; }
.qz-back { background: none; border: 0; color: var(--muted); font-family: var(--sans); font-size: 0.88rem; font-weight: 600; cursor: pointer; padding: 8px 0 0; }
.qz-back:hover { color: var(--ink); }
.qz-result-head { display: flex; gap: 13px; align-items: center; background: oklch(0.95 0.045 150); border-radius: var(--r-sm); padding: 14px 16px; margin-bottom: 14px; }
.qz-result-head .big { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: oklch(0.42 0.11 150); line-height: 1; flex: 0 0 auto; }
.qz-result-head b { font-size: 0.97rem; display: block; line-height: 1.4; }
.qz-match { display: flex; align-items: center; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.qz-match .lg { width: 34px; height: 34px; border-radius: 8px; background: var(--sand); flex: 0 0 auto; }
.qz-match b { font-size: 0.93rem; display: block; }
.qz-match .mt { font-family: var(--mono); font-size: 0.72rem; color: var(--gold-strong); display: block; }
.qz-match .tag { margin-inline-start: auto; font-size: 0.72rem; font-weight: 700; color: oklch(0.4 0.09 150); background: oklch(0.93 0.05 150); padding: 3px 10px; border-radius: var(--r-pill); white-space: nowrap; }
.qz-progs { display: grid; gap: 8px; }
.qz-prog-item { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--cream); }
.qz-prog-item .badge { font-family: var(--mono); font-size: 0.66rem; font-weight: 600; color: var(--gold-strong); background: var(--gold-soft); padding: 5px 8px; border-radius: 6px; flex: 0 0 auto; }
.qz-prog-item b { font-size: 0.92rem; display: block; }
.qz-prog-item .lvl { font-family: var(--mono); font-size: 0.7rem; color: var(--muted-2); display: block; }
.qz-phone-row { display: flex; gap: 8px; }
.qz-phone-row select { width: auto; flex: 0 0 104px; }
.qz-phone-row input { flex: 1; }
.qz-success { text-align: center; padding: 12px 0 6px; }
.qz-success .tick { width: 56px; height: 56px; border-radius: 50%; background: oklch(0.93 0.05 150); color: oklch(0.42 0.11 150); display: grid; place-items: center; font-size: 1.7rem; font-weight: 700; margin: 0 auto 14px; }
.qz-err { border-color: oklch(0.55 0.18 27) !important; }

/* ---------- fact strip ---------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.fact { border-left: 2px solid var(--gold); padding-left: 16px; }
.fact .v { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); line-height: 1.1; }
.fact .k { font-size: 0.82rem; color: var(--muted); margin-top: 4px; }

/* ---------- divider label ---------- */
.sec-head { max-width: 640px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head .h2 { margin-top: 14px; }
.sec-head .lead { margin-top: 14px; }

/* ---------- table ---------- */
.cost-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); }
.cost-table th, .cost-table td { text-align: left; padding: 15px 20px; border-bottom: 1px solid var(--line-soft); font-size: 0.96rem; }
.cost-table th { background: var(--sand); font-family: var(--sans); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.cost-table td:last-child { font-family: var(--mono); font-weight: 500; color: var(--navy); text-align: right; }
.cost-table tr:last-child td { border-bottom: 0; }

/* ---------- sticky cta card ---------- */
.sticky-cta { position: sticky; top: 96px; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .dest-grid, .reasons { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .facts, .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .dest-grid, .reasons, .steps, .facts { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .nav-right .btn:not(.btn-accent) { display: none; }
}

/* ---------- shared mobile nav (burger + drawer injected by floating-cta.js) ---------- */
.site-head .burger { display: none; width: 48px; height: 48px; border: 1px solid oklch(1 0 0 / 0.18); border-radius: 11px; background: transparent; cursor: pointer; flex-direction: column; gap: 4px; align-items: center; justify-content: center; padding: 0; flex: 0 0 auto; }
.site-head .burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; }
.sag-drawer { display: none; position: fixed; inset: 0 0 0 auto; width: min(86vw, 340px); background: var(--cream); z-index: 200; padding: 20px; flex-direction: column; gap: 2px; overflow-y: auto; box-shadow: -12px 0 40px oklch(0.2 0.04 258 / 0.28); transform: translateX(100%); transition: transform .25s; }
[dir=rtl] .sag-drawer { inset: 0 auto 0 0; transform: translateX(-100%); box-shadow: 12px 0 40px oklch(0.2 0.04 258 / 0.28); }
.sag-drawer.open { display: flex; transform: none; }
.sag-drawer-backdrop { display: none; position: fixed; inset: 0; background: oklch(0.15 0.03 258 / 0.5); z-index: 199; }
.sag-drawer-backdrop.open { display: block; }
.sag-drawer .dh { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; margin-bottom: 10px; border-bottom: 1px solid var(--line); }
.sag-drawer .dh img { height: 34px; }
.sag-drawer .dclose { width: 40px; height: 40px; border: 0; background: none; font-size: 1.6rem; line-height: 1; color: var(--ink); cursor: pointer; }
.sag-drawer > a { font-family: var(--serif); font-size: 1.24rem; color: var(--ink); padding: 13px 6px; border-bottom: 1px solid var(--line-soft); text-decoration: none; }
.sag-drawer .da { margin-top: 18px; display: grid; gap: 10px; }
.sag-drawer .da a { font-family: var(--sans); font-size: 1rem; text-align: center; padding: 14px; border-radius: var(--r-pill); }
@media (max-width: 1000px) { .site-head .burger { display: flex; } }
@media (min-width: 1001px) { .sag-drawer, .sag-drawer-backdrop { display: none !important; } }

/* ---------- CLS guard: reserve image aspect ---------- */
.imgwrap { aspect-ratio: 4 / 3; }
.dcard .imgwrap { aspect-ratio: auto; }
