/* ─────────────────────────────────────────────
   ALTURA AIR — design system
   "The Apple of private aviation" — hybrid light/dark,
   champagne gold, machined precision, cinematic calm.
   Sections flip a token set (--bg/--text/--muted/--surface/
   --line) so light & dark alternate cleanly. Gold is constant.
   ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:      #C8A559;
  --gold-soft: #B8954A;
  --gold-bright:#DDBE7C;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "SF Mono", ui-monospace, "Cascadia Code", monospace;

  /* default = dark token set (hero, footer, dark sections) */
  --bg:      #07080A;
  --surface: #0E1014;
  --elevated:#14171C;
  --text:    #F4F4F2;
  --muted:   rgba(244,244,242,0.62);
  --dim:     rgba(244,244,242,0.40);
  --line:    rgba(255,255,255,0.10);
  --line-2:  rgba(255,255,255,0.06);
  --shadow:  0 40px 90px rgba(0,0,0,0.55);
}

/* token flips */
.sec-dark {
  --bg:#07080A; --surface:#0E1014; --elevated:#14171C;
  --text:#F4F4F2; --muted:rgba(244,244,242,0.62); --dim:rgba(244,244,242,0.40);
  --line:rgba(255,255,255,0.10); --line-2:rgba(255,255,255,0.06);
  --shadow:0 40px 90px rgba(0,0,0,0.55);
  background: var(--bg); color: var(--text);
}
.sec-light {
  --bg:#F5F5F7; --surface:#FFFFFF; --elevated:#FFFFFF;
  --text:#14161A; --muted:rgba(20,22,26,0.60); --dim:rgba(20,22,26,0.42);
  --line:rgba(0,0,0,0.10); --line-2:rgba(0,0,0,0.06);
  --shadow:0 30px 70px rgba(20,24,40,0.12);
  background: var(--bg); color: var(--text);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: #07080A; color: #F4F4F2;
  font-family: var(--font); line-height: 1.5;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: rgba(200,165,89,0.30); color: #fff; }

/* ─── TYPE ─── */
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.display { font-size: clamp(40px, 6vw, 88px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.03; }
h1, h2, h3 { font-weight: 600; letter-spacing: -0.03em; }
.lead { font-size: clamp(17px, 1.8vw, 22px); line-height: 1.6; color: var(--muted); }

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 60px; display: flex; align-items: center; gap: 28px; padding: 0 30px;
  background: transparent;
  transition: background .45s ease, backdrop-filter .45s ease, border-color .45s ease;
  border-bottom: 0.5px solid transparent;
}
nav.scrolled {
  background: rgba(7,8,10,0.72);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}
.nav-logo { text-decoration: none; flex-shrink: 0; display: inline-flex; align-items: center; gap: 10px; }
.nav-logo .mark { height: 30px; width: auto; display: block; }
.nav-logo .wm { display: inline-flex; flex-direction: column; line-height: 1; }
.nav-logo .wm .top { font-size: 18px; font-weight: 600; letter-spacing: 0.10em; color: #F4F4F2; }
.nav-logo .wm .air { font-size: 9.5px; font-weight: 600; letter-spacing: 0.46em; color: var(--gold); margin-top: 4px; }
.foot-logo { display: inline-block; text-decoration: none; }
.foot-logo img { width: 224px; max-width: 100%; height: auto; display: block; }
.nav-links { list-style: none; display: flex; gap: 24px; margin-left: auto; align-items: center; }
.nav-links a { font-size: 13px; color: rgba(244,244,242,0.7); text-decoration: none; letter-spacing: 0.01em; transition: color .2s; white-space: nowrap; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.nav-cta { flex-shrink: 0; font-size: 13px; font-weight: 500; padding: 8px 18px; border-radius: 980px;
  text-decoration: none; background: var(--gold); color: #181208; transition: transform .2s, background .2s, box-shadow .2s; }
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(200,165,89,0.28); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; margin-left: auto; }
.nav-burger span { width: 22px; height: 1.5px; background: #F4F4F2; display: block; }

/* ─── BUTTONS ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500;
  padding: 13px 26px; border-radius: 980px; text-decoration: none; transition: all .22s; cursor: pointer; border: none; white-space: nowrap; }
.btn-fill { background: var(--gold); color: #181208; }
.btn-fill:hover { background: var(--gold-bright); transform: translateY(-1px); box-shadow: 0 10px 30px rgba(200,165,89,0.3); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-link { display: inline-flex; align-items: center; gap: 6px; color: var(--gold); text-decoration: none; font-size: 15px; font-weight: 500;
  transition: gap .25s; }
.btn-link:hover { gap: 11px; }

/* ─── HERO (wheel-lock scrub) ─── */
.hero-wrap { height: 100svh; position: relative; overflow: hidden; background: #07080A; }
.hero-sticky { position: absolute; inset: 0; overflow: hidden; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse 90% 80% at 50% 30%, #11161f 0%, #07080A 70%); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; background: transparent; }
.hero-veil { position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(ellipse 100% 85% at 50% 38%, transparent 48%, rgba(7,8,10,0.45) 100%),
  linear-gradient(to bottom, rgba(7,8,10,0.42) 0%, transparent 26%, transparent 60%, rgba(7,8,10,0.82) 100%); }
.hero-progress { position: absolute; bottom: 0; left: 0; height: 2px; width: 0%; z-index: 10;
  background: linear-gradient(90deg, transparent, var(--gold), transparent); transition: width .06s linear; }
.hero-content { position: relative; z-index: 5; text-align: center; padding: 0 24px; max-width: 920px;
  display: flex; flex-direction: column; align-items: center; transition: opacity .05s, transform .05s; }
.hero-content h1 { font-size: clamp(46px, 8vw, 110px); font-weight: 600; letter-spacing: -0.04em; line-height: 0.98;
  margin: 16px 0 0; color: #fff; text-shadow: 0 2px 50px rgba(0,0,0,0.5); }
.hero-content .lead { font-size: clamp(17px, 2vw, 22px); color: rgba(244,244,242,0.85); max-width: 600px; margin: 22px auto 0; }
.hero-cta-row { display: flex; gap: 13px; flex-wrap: wrap; justify-content: center; margin-top: 36px; }
.scroll-hint { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 6;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(244,244,242,0.4);
  display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-hint span { width: 1px; height: 30px; background: linear-gradient(var(--gold), transparent); }

/* apple-style intro motion */
.hero-anim { opacity: 0; transform: translateY(20px); filter: blur(8px); animation: heroIn 1.15s cubic-bezier(.22,.61,.36,1) forwards; }
.hero-anim.a1 { animation-delay: .15s; } .hero-anim.a2 { animation-delay: .32s; }
.hero-anim.a3 { animation-delay: .50s; } .hero-anim.a4 { animation-delay: .68s; }
@keyframes heroIn { to { opacity: 1; transform: none; filter: blur(0); } }

/* ─── SECTIONS ─── */
.section { padding: clamp(90px, 13vh, 180px) 24px; position: relative; }
.wrap { max-width: 1180px; margin: 0 auto; }
.measure { max-width: 760px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head { max-width: 820px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(34px, 5vw, 68px); line-height: 1.05; margin: 16px 0 0; letter-spacing: -0.035em; }
.section-head .lead { margin-top: 22px; }

/* statement (big centered line, Apple-style) */
.statement { font-size: clamp(30px, 4.6vw, 60px); font-weight: 600; letter-spacing: -0.035em; line-height: 1.12; max-width: 980px; }
.statement .hl { color: var(--gold); }
.statement.center { margin: 0 auto; text-align: center; }

/* feature row: text + media */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 92px); align-items: center; }
.feature.reverse .feature-media { order: -1; }
.feature-copy h2 { font-size: clamp(32px, 4.4vw, 58px); line-height: 1.06; margin: 14px 0 20px; }
.feature-copy .lead { margin-bottom: 28px; }

.media { position: relative; aspect-ratio: 16/10; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow);
  border: 0.5px solid var(--line-2);
  background: radial-gradient(ellipse at 50% 18%, rgba(200,165,89,0.18), transparent 60%), linear-gradient(155deg, #1a1d24 0%, #07080A 100%); }
.media.cine { aspect-ratio: 16/9; }
.media.tall { aspect-ratio: 4/5; }
.media.square { aspect-ratio: 1/1; }
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* full-bleed cinematic band */
.band { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden;
  border-radius: 28px; margin: 0 clamp(12px, 3vw, 40px);
  background: linear-gradient(160deg, #12161d, #07080A); }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band .band-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,6,8,0.92) 0%, rgba(5,6,8,0.30) 46%, transparent 76%); }
.band-inner { position: relative; z-index: 2; max-width: 1180px; margin: 0 auto; padding: 0 40px 92px; width: 100%; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(22px); will-change: opacity, transform; filter: blur(6px);
  transition: opacity 1.1s cubic-bezier(.22,.61,.36,1), transform 1.1s cubic-bezier(.22,.61,.36,1), filter 1.1s ease; }
.reveal.in { opacity: 1; transform: none; filter: blur(0); }
.reveal.d1 { transition-delay: .10s; } .reveal.d2 { transition-delay: .22s; }
.reveal.d3 { transition-delay: .34s; } .reveal.d4 { transition-delay: .46s; }
.media img.imgfade { opacity: 0; transition: opacity .8s ease; }
.media img.imgfade.loaded { opacity: 1; }

/* ─── FLEET (cards) ─── */
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.fleet-card { background: var(--surface); border: 0.5px solid var(--line); border-radius: 24px; overflow: hidden;
  transition: transform .35s cubic-bezier(.16,1,.3,1), border-color .35s, box-shadow .35s; }
.fleet-card:hover { transform: translateY(-5px); border-color: rgba(200,165,89,0.4); box-shadow: var(--shadow); }
.fleet-photo { position: relative; aspect-ratio: 16/10; overflow: hidden;
  background: linear-gradient(160deg, #1a1d24, #07080A); }
.fleet-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.16,1,.3,1); }
.fleet-card:hover .fleet-photo img { transform: scale(1.05); }
.fleet-body { padding: 28px 30px 32px; text-align: center; }
.fleet-class { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.fleet-body h3 { font-size: 26px; margin: 8px 0 14px; }
.fleet-specs { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.fleet-spec .n { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.fleet-spec .l { font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* ─── WAYS TO FLY (3 cards) ─── */
.ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.way { background: var(--surface); border: 0.5px solid var(--line); border-radius: 24px; padding: 40px 34px 38px;
  display: flex; flex-direction: column; text-align: center; align-items: center;
  transition: transform .35s, border-color .35s; }
.way:hover { transform: translateY(-5px); border-color: rgba(200,165,89,0.4); }
.way .ico { width: 40px; height: 40px; color: var(--gold); margin-bottom: 20px; }
.way h3 { font-size: 24px; margin-bottom: 12px; }
.way p { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 22px; }
.way .btn-link { margin-top: auto; }

/* ─── STATS ─── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: 0.5px solid var(--line); border-radius: 22px; overflow: hidden; }
.stat { background: var(--bg); padding: 44px 24px; text-align: center; }
.stat .n { font-size: clamp(34px, 5vw, 60px); font-weight: 600; letter-spacing: -0.04em; color: var(--gold); display: block; line-height: 1; }
.stat .l { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 12px; }

/* ─── DESTINATIONS (grid) ─── */
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dest { position: relative; aspect-ratio: 3/4; border-radius: 18px; overflow: hidden; border: 0.5px solid var(--line-2);
  background: linear-gradient(160deg, #1a1d24, #07080A); display: flex; align-items: flex-end; }
.dest img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.dest:hover img { transform: scale(1.06); }
.dest .dest-veil { position: absolute; inset: 0; background: linear-gradient(to top, rgba(5,6,8,0.85), transparent 55%); }
.dest .dest-name { position: relative; z-index: 2; padding: 20px; font-size: 18px; font-weight: 600; color: #fff; }

/* ─── FEATURE TILES (light spec cards) ─── */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tile { background: var(--surface); border: 0.5px solid var(--line); border-radius: 22px; padding: 34px 32px 36px; text-align: center; }
.tile .ico { width: 36px; height: 36px; color: var(--gold); display: block; margin: 0 auto 18px; }
.tile h3 { font-size: 21px; margin-bottom: 10px; }
.tile p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: var(--surface); border: 0.5px solid var(--line); border-radius: 22px; padding: 40px 34px 36px;
  display: flex; flex-direction: column; text-align: center; }
.quote .stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; }
.quote p { font-size: 19px; line-height: 1.5; margin: 18px 0 24px; letter-spacing: -0.01em; }
.quote .who { margin-top: auto; font-size: 13px; color: var(--muted); }

/* ─── IMAGE GALLERY (cabin showcase) ─── */
.imgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.imgrid .cell { position: relative; aspect-ratio: 16/10; border-radius: 18px; overflow: hidden;
  border: 0.5px solid var(--line-2); background: linear-gradient(160deg, #1a1d24, #07080A); }
.imgrid .cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.16,1,.3,1); }
.imgrid .cell:hover img { transform: scale(1.05); }
@media (max-width: 860px) { .imgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .imgrid { grid-template-columns: 1fr; } }

/* ─── DEVICE / APP ─── */
.device { position: relative; margin: 0 auto; width: min(320px, 78vw); aspect-ratio: 9/19; border-radius: 44px;
  background: linear-gradient(160deg, #1a1d24, #07080A); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow); }
.device img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ─── BIG CTA ─── */
.cta-band { position: relative; text-align: center; padding: clamp(120px, 18vh, 220px) 24px; overflow: hidden;
  border-radius: 28px; margin: 0 clamp(12px, 3vw, 40px) clamp(12px, 3vw, 40px);
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(200,165,89,0.16), transparent 62%), #07080A; }
.cta-band .cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-band .cta-veil { position: absolute; inset: 0; z-index: 1; background:
  radial-gradient(ellipse 80% 90% at 50% 50%, rgba(7,8,10,0.55), rgba(7,8,10,0.86)),
  linear-gradient(to bottom, rgba(7,8,10,0.7), rgba(7,8,10,0.35) 42%, rgba(7,8,10,0.9)); }
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(40px, 6.2vw, 88px); line-height: 1.02; letter-spacing: -0.04em; color: #fff; }
.cta-band .lead { max-width: 620px; margin: 24px auto 0; color: rgba(244,244,242,0.85); }
.cta-band .hero-cta-row { margin-top: 38px; }

/* ─── PAGE HERO (interior pages) ─── */
.page-hero { position: relative; padding: 150px 24px 86px; text-align: center; overflow: hidden;
  border-bottom: 0.5px solid var(--line);
  background: radial-gradient(ellipse 90% 80% at 50% -10%, rgba(200,165,89,0.13), transparent 60%); }
.page-hero h1 { font-size: clamp(44px, 7vw, 92px); letter-spacing: -0.04em; line-height: 1.0; margin: 16px 0 0; }
.page-hero .lead { margin: 22px auto 0; max-width: 640px; }

/* ─── TICK LIST ─── */
.ticks { list-style: none; display: flex; flex-direction: column; gap: 13px; margin: 6px 0 30px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; color: var(--muted); line-height: 1.5; }
.ticks li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ─── FORM (Request Access) ─── */
.form { max-width: 620px; margin: 0 auto; display: grid; gap: 16px; text-align: left; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form .field label { font-size: 11px; letter-spacing: 0.10em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; display: block; }
.form input, .form select, .form textarea { width: 100%; background: var(--surface); border: 0.5px solid var(--line);
  border-radius: 12px; padding: 14px 16px; color: var(--text); font-family: var(--font); font-size: 15px; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: var(--dim); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: rgba(200,165,89,0.6); }
.form select { appearance: none; -webkit-appearance: none; cursor: pointer; }
.form button { justify-self: start; margin-top: 6px; }
@media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } }

/* ─── FOOTER ─── */
.site-footer { background: #050608; border-top: 0.5px solid rgba(255,255,255,0.08); padding: 76px 30px 40px; color: #F4F4F2; }
.foot-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; }
.foot-brand .nav-logo { font-size: 24px; }
.foot-brand p { color: rgba(244,244,242,0.55); font-size: 13.5px; margin-top: 16px; max-width: 300px; line-height: 1.62; }
.foot-social { display: flex; gap: 14px; margin-top: 22px; }
.foot-social a { width: 38px; height: 38px; border: 0.5px solid rgba(255,255,255,0.12); border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; color: rgba(244,244,242,0.6); transition: all .25s; }
.foot-social a:hover { border-color: rgba(200,165,89,0.5); color: var(--gold); transform: translateY(-2px); }
.foot-social svg { width: 17px; height: 17px; }
.foot-col h4 { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(244,244,242,0.4); margin-bottom: 16px; }
.foot-col a { display: block; color: rgba(244,244,242,0.6); text-decoration: none; font-size: 14px; margin-bottom: 12px; transition: color .2s; }
.foot-col a:hover { color: #fff; }
.foot-copy { max-width: 1180px; margin: 52px auto 0; padding-top: 24px; border-top: 0.5px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: rgba(244,244,242,0.4); }
.foot-copy .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-copy .legal a { color: rgba(244,244,242,0.4); text-decoration: none; transition: color .2s; }
.foot-copy .legal a:hover { color: rgba(244,244,242,0.7); }

/* ─── PUBLICOVER MEDIA CREDIT ─── */
.pm-credit { background: #030405; border-top: 0.5px solid rgba(255,255,255,0.08); padding: 26px 28px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.pm-credit .back-link { font-size: 12px; letter-spacing: 0.06em; color: rgba(255,255,255,0.95); text-decoration: none; transition: color .2s; }
.pm-credit .back-link:hover { color: #fff; }
.pm-credit .pm-logo-link { display: flex; align-items: center; justify-content: center; }
.pm-credit .pm-logo-link img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.pm-credit > div:last-child { text-align: right; }

/* ─── MOBILE MENU ─── */
.mobile-menu { position: fixed; inset: 0; z-index: 300; background: #07080A;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  transform: translateY(-100%); opacity: 0; visibility: hidden;
  transition: transform .42s cubic-bezier(.16,1,.3,1), opacity .42s ease, visibility .42s; }
.mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
.mobile-menu a { font-size: 27px; font-weight: 600; letter-spacing: -0.02em; color: #F4F4F2; text-decoration: none; padding: 10px 14px; text-align: center; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mm-cta { margin-top: 22px; font-size: 15px; font-weight: 500; padding: 13px 30px; border-radius: 980px; background: var(--gold); color: #181208; }
.mobile-menu-close { position: absolute; top: 20px; right: 26px; background: none; border: none; color: #F4F4F2; font-size: 32px; line-height: 1; cursor: pointer; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1000px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  nav { padding: 0 20px; }
  .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature.reverse .feature-media { order: 0; }
  .fleet-grid { grid-template-columns: 1fr; }
  .ways { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .tiles { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .quotes { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .foot-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
  .foot-brand { grid-column: 1 / -1; }
  .band-inner { padding: 0 24px 64px; }
}
@media (max-width: 560px) {
  .section { padding: 84px 20px; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; justify-items: center; }
  .foot-brand p { margin-left: auto; margin-right: auto; }
  .foot-social { justify-content: center; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
  .hero-anim { opacity: 1 !important; transform: none !important; filter: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .fleet-photo img, .dest img { transition: none !important; }
}
