/*
Theme Name: ÆTHER Aviation
Theme URI: https://aether.aero
Author: ÆTHER Studio
Author URI: https://aether.aero
Description: A luxury, minimalist theme for ÆTHER Aviation — private helicopter and jet charter across Indonesia. Built to the ÆTHER Website Copy Deck with a quiet, considered aesthetic inspired by the discretion of a private office.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aether
*/

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  /* Palette */
  --abyss:      #070f17;   /* near-black navy — footer, deep heroes */
  --navy:       #0b1d2c;   /* CTA bands, primary buttons */
  --navy-2:     #102a3e;
  --ivory:      #ffffff;   /* default page background */
  --cream:      #f8f8f8;   /* alternate section background */
  --paper:      #ffffff;   /* lightest cards */
  --ink:        #14222d;   /* darkest headings on light */
  --text:       #3a444c;   /* body on light */
  --muted:      #717b81;   /* secondary text on light */
  --on-dark:    #ece6da;   /* body on dark */
  --on-dark-mut:#9aa6af;   /* secondary text on dark */
  --line:       rgba(20, 32, 42, 0.12);
  --line-dark:  rgba(236, 230, 218, 0.14);
  --white:      #fff;      /* pure white for text and accents on dark */
  --white-soft: #f8f8f8;   /* off-white for dark section backgrounds */

  /* Type — mirrors vistajet.com (Garamond Premier Pro / Museo Sans) with free
     Google Fonts equivalents. Body weight 300, airy line-height, slight tracking. */
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1240px;
  --container-narrow: 920px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section-y: clamp(3.25rem, 6vw, 5.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
}

/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(0.8125rem, 0.79rem + 0.12vw, 0.875rem); /* 13px → 14px, à la vistajet */
  line-height: 1.8;
  letter-spacing: 0.02em;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

::selection { background: var(--navy); color: #fff; }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* Display scale tuned to vistajet.com (moderate): h1 40→56px, h2 32→44px, h3 22→28px */
.h1, h1 { font-size: clamp(2.5rem, 1.7rem + 3.5vw, 3.5rem); }
.h2, h2 { font-size: clamp(2rem, 1.5rem + 2.4vw, 2.75rem); }
.h3, h3 { font-size: clamp(1.375rem, 1.15rem + 1vw, 1.75rem); }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
  display: inline-block;
  margin-bottom: 1.4rem;
}

.subhead {
  font-size: clamp(1.05rem, 0.98rem + 0.4vw, 1.3rem);
  line-height: 1.6;
  color: var(--muted);
  font-weight: 300;
  max-width: 44ch;
}

.lede { max-width: 60ch; color: var(--text); }
p + p { margin-top: 1.1rem; }

/* ==========================================================================
   4. LAYOUT HELPERS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(2.25rem, 4.5vw, 4rem); }

.bg-ivory { background: #fff; }
.bg-white { background: var(--cream); }
.bg-abyss { background: var(--abyss); color: var(--on-dark); }
.bg-navy  { background: var(--navy);  color: var(--on-dark); }
.bg-white { background: #fff; }
.bg-white-soft { background: #F8F8F8;}

.section-head { max-width: 48ch; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .subhead { margin-top: 1.25rem; }
.text-center { text-align: center; }
.center-x { margin-inline: auto; }

.hairline { height: 1px; background: var(--line); border: 0; }

/* ==========================================================================
   5. BUTTONS
   ========================================================================== */
.btn {
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 1.2em 2.6em;
  border: 1px solid transparent;
  border-radius: 999px;            /* VistaJet-style pill */
  overflow: hidden;                /* clip the hover fill */
  isolation: isolate;
  transition: color .5s var(--ease), border-color .5s var(--ease),
              transform .6s var(--ease), box-shadow .6s var(--ease);
  white-space: nowrap;
}
/* Hover fill that wipes up from the bottom — the luxe detail */
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .55s var(--ease);
}
.btn:hover::before { transform: scaleY(1); }
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform .5s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 1px 2px rgba(7, 15, 23, 0.18);
}
.btn--primary::before { background: var(--abyss); }
.btn--primary:hover {
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(7, 15, 23, 0.45);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--outline::before { background: var(--ink); }
.btn--outline:hover { color: #fff; border-color: var(--ink); }

/* on dark surfaces */
.on-dark .btn--primary { background: #fff; color: var(--navy); }
.on-dark .btn--primary::before { background: rgba(255,255,255,0.85); }
.on-dark .btn--primary:hover { color: var(--navy); }
.on-dark .btn--outline { color: var(--on-dark); border-color: var(--line-dark); }
.on-dark .btn--outline::before { background: var(--on-dark); }
.on-dark .btn--outline:hover { color: var(--abyss); border-color: var(--on-dark); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 0.35em;
  border-bottom: 1px solid var(--ink);
  transition: gap .4s var(--ease), color .3s;
}
.text-link:hover { gap: 0.9em; color: var(--navy); }
.on-dark .text-link { color: var(--on-dark); }
.on-dark .text-link:hover { color: #fff; }

/* ==========================================================================
   6. SITE HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .5s var(--ease), box-shadow .5s var(--ease),
              padding .5s var(--ease);
  padding-block: 1.5rem;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  color: #fff;
  transition: color .5s var(--ease);
  padding-left: 0.22em; /* optical balance for letter-spacing */
  position: relative;
}
.brand .brand-logo {
  display: block;
  height: 65px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  padding-left: 0;
}

/* Light/dark logo crossfade on scroll */
.brand-logo--light,
.brand-logo--dark {
  transition: opacity .5s var(--ease);
}
.brand-logo--dark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}
.site-header.is-scrolled .brand-logo--light { opacity: 0; }
.site-header.is-scrolled .brand-logo--dark  { opacity: 1; }

.footer-brand .brand .brand-logo {
  height: 84px;
  max-width: 320px;
}
.primary-nav { display: flex; align-items: center; gap: 2.2rem; }
.primary-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  position: relative;
  transition: color .4s;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: #fff;
  transition: width .4s var(--ease);
}
.primary-nav a:hover { color: #fff; }
.primary-nav a:hover::after { width: 100%; }

/* group toggle buttons share the link styling */
.primary-nav .nav-link {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color .4s;
}
.primary-nav .nav-link:hover { color: #fff; }
.site-header.is-scrolled .primary-nav .nav-link { color: var(--text); }
.site-header.is-scrolled .primary-nav .nav-link:hover { color: var(--ink); }

/* ── Dropdown groups ── */
.nav-item { position: relative; }
.nav-caret { transition: transform .4s var(--ease); }
.nav-item:hover .nav-caret,
.nav-item.is-open .nav-caret { transform: rotate(180deg); }

/* invisible bridge so hover survives the gap to the panel */
.nav-item--has-children::after {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 22px;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: var(--white-soft);
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -32px rgba(7,15,23,0.4);
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  z-index: 50;
}
.nav-item:hover .nav-dropdown,
.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  padding: 0.75rem 0.95rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-dropdown a::after { display: none; }
/* High-specificity overrides — win over both default and scrolled header states */
.primary-nav .nav-dropdown a        { color: var(--ink); }
.primary-nav .nav-dropdown a::after { display: none; }
.primary-nav .nav-dropdown a:hover  { background: var(--ink); color: #fff; }
.site-header.is-scrolled .primary-nav .nav-dropdown a       { color: var(--ink); }
.site-header.is-scrolled .primary-nav .nav-dropdown a:hover { background: var(--ink); color: #fff; }

.header-actions { display: flex; align-items: center; gap: 1.25rem; }
.header-cta { padding: 0.85em 1.6em; font-size: 0.72rem; }

/* scrolled state */
.site-header.is-scrolled {
  background: var(--white-soft);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(0,0,0,0.4);
  padding-block: 1rem;
}
.site-header.is-scrolled .brand { color: var(--ink); }
.site-header.is-scrolled .primary-nav a { color: var(--text); }
.site-header.is-scrolled .primary-nav a:hover { color: var(--ink); }
.site-header.is-scrolled .header-cta { background: var(--navy); color: #fff; }
.site-header.is-scrolled .nav-toggle span { background: var(--ink); }

/* mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 6px 0;
  z-index: 110;
}
.nav-toggle span {
  display: block; height: 1.5px; width: 100%;
  background: #fff;
  transition: transform .4s var(--ease), opacity .3s, background .4s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
body.nav-open .nav-toggle span { background: #fff; }

/* ==========================================================================
   7. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 100% at 70% 0%, var(--navy-2), var(--abyss)); }
.hero__media picture {
  display: block;
  width: 100%; height: 100%;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,15,23,0.92) 0%, rgba(7,15,23,0.35) 45%, rgba(7,15,23,0.25) 100%),
    linear-gradient(to right, rgba(7,15,23,0.5) 0%, rgba(7,15,23,0) 60%);
}
.hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  padding-bottom: clamp(4rem, 9vw, 8rem);
  padding-top: 10rem;
}
.hero h1 { color: #fff; max-width: 14ch; }
.hero .subhead { color: rgba(255,255,255,0.85); margin-top: 1.75rem; max-width: 46ch; }
.hero .btn-row { margin-top: 2.75rem; }
.hero__scroll {
  position: absolute;
  left: var(--gutter); bottom: 2rem;
  z-index: 1;
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; gap: 0.8rem;
}
.hero__scroll::before {
  content: ""; width: 1px; height: 42px;
  background: linear-gradient(rgba(255,255,255,0.7), transparent);
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .4; transform: scaleY(.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ==========================================================================
   8. CHARTER REQUEST FORM
   ========================================================================== */
.request {
  position: relative;
}
.request__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: start;
}
/* ── Charter / Request Form ─────────────────────────────────── */
.charter-form {
  background: var(--white-soft);
  border: 1px solid var(--line);
  border-top: 3px solid var(--navy);
  padding: clamp(2rem, 4.5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.on-dark .charter-form {
  background: rgba(255,255,255,0.03);
  border-color: var(--line-dark);
  border-top-color: #fff;
}

/* Field grid — flight details */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 1.5rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
}
.on-dark .field label { color: var(--on-dark-mut); }
.field input {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.97rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.6rem 0;
  border-radius: 0;
  transition: border-color .35s var(--ease);
  width: 100%;
}
.on-dark .field input { color: var(--on-dark); border-color: var(--line-dark); }
.field input::placeholder { color: rgba(58,68,76,0.35); }
.field input:focus { outline: none; border-color: var(--navy); }

/* Section row (Service / Contact toggles) */
.cf-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cf-section__label {
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
}
.on-dark .cf-section__label { color: var(--on-dark-mut); }

/* Toggle pills */
.cf-toggle {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cf-toggle__opt { flex: 1; min-width: 0; }
.cf-toggle__opt input[type="radio"] {
  position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none;
}
.cf-toggle__opt span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65em 1em;
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
  user-select: none;
}
.cf-toggle__opt input:checked + span {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.cf-toggle__opt span:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.on-dark .cf-toggle__opt span { border-color: var(--line-dark); color: var(--on-dark-mut); }
.on-dark .cf-toggle__opt input:checked + span { background: #fff; border-color: #fff; color: var(--navy); }
.on-dark .cf-toggle__opt span:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* Submit + consent */
.charter-form .btn { width: 100%; justify-content: center; }
.form-consent {
  font-size: 0.72rem; line-height: 1.6; color: var(--muted);
}
.on-dark .form-consent { color: var(--on-dark-mut); }
.form-note { font-size: 0.86rem; color: var(--muted); margin-top: 0.75rem; }

/* ==========================================================================
   8b. FLIGHT SEARCH BAR (homepage horizontal form)
   ========================================================================== */
.flight-search { padding-bottom: clamp(3rem, 6vw, 5rem); }

.flight-search__head { margin-bottom: clamp(2rem, 4vw, 3rem); }

.flight-search__bar {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 24px -8px rgba(7, 15, 23, 0.1);
  overflow: hidden;
}

/* each field segment */
.fsb-field {
  flex: 1;
  min-width: 0;
}
.fsb-field__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  padding: 1.1rem 1.5rem;
  height: 100%;
}

.fsb-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.fsb-field label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
}

.fsb-field input[type="text"],
.fsb-field input[type="date"] {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
  width: 100%;
}
.fsb-field input::placeholder { color: var(--muted); font-weight: 300; }
.fsb-field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.4; cursor: pointer;
}

.fsb-field select {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
  width: 100%;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%233a444c' fill='none' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 1rem;
}

/* vertical divider between fields */
.fsb-divider {
  width: 1px;
  background: var(--line);
  flex-shrink: 0;
  margin-block: 0.85rem;
}

/* passenger field */
.fsb-field--pax .fsb-field__inner {
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  padding-inline: 1.25rem;
}
.fsb-pax-display {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.fsb-pax-display label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.fsb-pax-display span {
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 400;
  white-space: nowrap;
}
.fsb-pax-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  flex-shrink: 0;
  color: var(--ink);
  transition: color 0.3s;
}
.fsb-pax-btn svg { width: 22px; height: 22px; }
.fsb-pax-btn:hover { color: var(--navy); }

/* submit arrow button */
.fsb-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 64px;
  margin: 0.4rem;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
  border: none;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease);
}
.fsb-submit svg { width: 20px; height: 20px; }
.fsb-submit:hover { background: var(--abyss); transform: scale(1.05); }

.flight-search__note {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.flight-search__note a {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.1em;
  transition: color 0.3s;
}
.flight-search__note a:hover { color: var(--navy); }

/* responsive — stack on mobile */
@media (max-width: 860px) {
  .flight-search__bar {
    flex-direction: column;
    border-radius: 16px;
  }
  .fsb-divider { width: auto; height: 1px; margin: 0 1rem; }
  .fsb-submit {
    width: auto;
    margin: 0.75rem;
    padding: 1em;
    border-radius: 999px;
  }
  .fsb-field--pax .fsb-field__inner { padding: 1.1rem 1.5rem; }
}

/* ==========================================================================
   9. CARDS
   ========================================================================== */
.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  border: 1px solid var(--line);
  background: var(--white-soft);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 30px 50px -36px rgba(11,29,44,0.4); border-color: rgba(11,29,44,0.3); }
.card .card__tag {
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: 0.85rem; }
.card p { color: var(--muted); font-size: 0.98rem; }
.card__foot { margin-top: auto; padding-top: 1.75rem; }

/* numbered step cards */
.card--step .card__num {
  font-family: var(--serif);
  font-size: 2.4rem; color: var(--navy); opacity: 0.85;
  line-height: 1; margin-bottom: 1rem;
}

/* ==========================================================================
   9b. TWO WAYS TO FLY — image-switcher layout
   ========================================================================== */
.ways .section-head { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }

.ways__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

/* Left image panel */
.ways__media {
  position: sticky;
  top: clamp(6rem, 12vw, 8rem);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-2), var(--abyss));
}
.ways__img-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.65s var(--ease);
}
.ways__img-slide.is-active { opacity: 1; }
.ways__img-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease);
}
.ways__img-slide.is-active img { transform: scale(1.03); }

/* Right item list */
.ways__list {
  display: flex;
  flex-direction: column;
}
.ways__item {
  display: block;
  padding: clamp(1rem, 1.8vw, 1.4rem) clamp(1rem, 1.8vw, 1.5rem);
  border-top: 1px solid var(--line);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  text-decoration: none;
  color: inherit;
}
.ways__item:last-child { border-bottom: 1px solid var(--line); }

/* active = dark card (matches screenshot) */
.ways__item.is-active {
  background: var(--ink);
  box-shadow: 0 12px 40px -12px rgba(7,15,23,0.35);
}
.ways__item.is-active h3 { color: #fff; }
.ways__item.is-active p  { color: var(--on-dark-mut); }
.ways__item.is-active .ways__tag { color: rgba(255,255,255,0.65); }
.ways__item.is-active .ways__cta { color: var(--on-dark); border-bottom-color: #fff; }

.ways__tag {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.55rem;
  transition: color 0.3s;
}
.ways__item h3 {
  font-size: clamp(1.05rem, 0.85rem + 0.9vw, 1.4rem);
  margin-bottom: 0.45rem;
  transition: color 0.3s;
}
.ways__item p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 0.9rem;
  transition: color 0.3s;
}
.ways__cta {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  transition: color 0.3s, gap 0.4s var(--ease), border-color 0.3s;
}

/* Responsive */
@media (max-width: 860px) {
  .ways__layout {
    grid-template-columns: 1fr;
  }
  .ways__media {
    position: relative;
    top: 0;
    aspect-ratio: 16 / 9;
  }
}

/* ==========================================================================
   10. MEDIA + COPY SPLIT
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  position: relative;
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  background: linear-gradient(120deg, var(--navy-2), var(--abyss));
}
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.split:hover .split__media img { transform: scale(1.04); }
.split__body { max-width: 46ch; }
.split__body .btn-row { margin-top: 2.25rem; }

/* ==========================================================================
   11. ARRIVAL (emotional full-width)
   ========================================================================== */
.arrival {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.arrival__media { position: absolute; inset: 0; background: linear-gradient(120deg, var(--navy-2), var(--abyss)); }
.arrival__media img { width: 100%; height: 100%; object-fit: cover; }
.arrival__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(7,15,23,0.86) 0%, rgba(7,15,23,0.55) 55%, rgba(7,15,23,0.25) 100%);
}
.arrival__inner { position: relative; z-index: 1; max-width: 40ch; }
.arrival h2 { color: #fff; }
.arrival p { color: rgba(255,255,255,0.82); margin-top: 1.5rem; font-size: 1.1rem; }
.arrival .text-link { margin-top: 2.25rem; color: #fff; }

/* ==========================================================================
   12. DESTINATION TEASER
   ========================================================================== */
.dest-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(120deg, var(--navy-2), var(--abyss));
}
.dest-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.dest-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,15,23,0.85), rgba(7,15,23,0.05) 65%); transition: background .5s; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card__body { position: relative; z-index: 1; padding: clamp(1.5rem, 3vw, 2.25rem); }
.dest-card__tag { font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.dest-card h3 { color: #fff; margin: 0.5rem 0 0.4rem; }
.dest-card p { color: rgba(255,255,255,0.78); font-size: 0.92rem; }
/* hover affordance — signals the card is a link */
.dest-card__body::after {
  content: "→";
  display: block;
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1;
  color: rgba(255,255,255,0.7);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.dest-card:hover .dest-card__body::after,
.dest-card:focus-visible .dest-card__body::after { opacity: 1; transform: translateX(0); }
.dest-card:hover::after { background: linear-gradient(to top, rgba(7,15,23,0.9), rgba(7,15,23,0.1) 70%); }

/* Destination cards grid */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

/* First card — spans 2 columns, landscape ratio to match sibling heights */
.dest-card--large {
  grid-column: span 2;
  aspect-ratio: 3 / 2;
}

@media (max-width: 860px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card--large {
    grid-column: span 2; /* full-width on 2-col */
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 560px) {
  .dest-grid { grid-template-columns: 1fr; }
  .dest-card--large { grid-column: span 1; aspect-ratio: 4 / 3; }
}

/* ==========================================================================
   12a. EXPLORE TOP DESTINATIONS — 3-column photo cards
   ========================================================================== */
.dest-explore .section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

.dest-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dest-explore-card {
  position: relative;
  display: block;
  /* border-radius: 14px; */
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--navy-2), var(--abyss));
}

.dest-explore-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.dest-explore-card:hover img { transform: scale(1.06); }

.dest-explore-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(7, 15, 23, 0.88) 0%,
    rgba(7, 15, 23, 0.35) 45%,
    rgba(7, 15, 23, 0.08) 100%
  );
  transition: background 0.4s;
}

.dest-explore-card:hover::after {
  background: linear-gradient(
    to top,
    rgba(7, 15, 23, 0.92) 0%,
    rgba(7, 15, 23, 0.45) 50%,
    rgba(7, 15, 23, 0.12) 100%
  );
}

.dest-explore-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.dest-explore-card__info { flex: 1; min-width: 0; }

.dest-explore-card__city {
  display: block;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.01em;
}

.dest-explore-card__route {
  display: block;
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.4rem;
}

.dest-explore-card__price {
  text-align: right;
  flex-shrink: 0;
}

.dest-explore-card__from {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.25rem;
}

.dest-explore-card__amount {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: #fff;
  white-space: nowrap;
}

/* "Ways to fly" variant — stacked layout instead of city/price side-by-side */
.dest-explore-card__body--ways {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.dest-explore-card__body--ways .dest-explore-card__city {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin: 0;
}
.dest-explore-card__desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}
.dest-explore-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: 0.5rem;
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 0.2em;
  transition: gap 0.4s var(--ease), color 0.3s;
}
.dest-explore-card:hover .dest-explore-card__cta { gap: 0.75em; color: #fff; }

@media (max-width: 860px) {
  .dest-explore__grid { grid-template-columns: 1fr 1fr; }
  .dest-explore-card:last-child { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
}

@media (max-width: 560px) {
  .dest-explore__grid { grid-template-columns: 1fr; }
  .dest-explore-card,
  .dest-explore-card:last-child { aspect-ratio: 4 / 3; grid-column: auto; }
}

/* ==========================================================================
   12b. WHY ÆTHER — VISUAL PILLARS (swipeable carousel)
   ========================================================================== */
.pillars {
  overflow: hidden;
}
.pillars__layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.pillars__intro {
  position: sticky;
  top: clamp(6rem, 12vw, 9rem);
}
.pillars__intro h2 { margin-bottom: 1.5rem; }
.pillars__intro .subhead { margin-bottom: 2.25rem; }

/* ── Slider wrapper (contains track + nav) ── */
.pillars__slider-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0; /* prevent grid blowout */
}

/* ── Horizontal scroll track ── */
.pillars__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 1.25rem;
  /* hide scrollbar everywhere */
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  /* slight right-padding so last card doesn't sit flush at edge */
  padding-right: 1rem;
}
.pillars__track::-webkit-scrollbar { display: none; }
.pillars__track.is-dragging { cursor: grabbing; scroll-behavior: auto; }

/* Individual pillar card */
.pillar-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* each card = half the track width (minus half the gap) so 2 are visible */
  flex: 0 0 calc(50% - 0.625rem);
  min-height: clamp(300px, 38vw, 460px);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-2), var(--abyss));
  scroll-snap-align: start;
  cursor: default;
}

.pillar-card__bg {
  position: absolute;
  inset: 0;
}
.pillar-card__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
/* dark gradient overlay */
.pillar-card__bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,
      rgba(7,15,23,0.94) 0%,
      rgba(7,15,23,0.55) 50%,
      rgba(7,15,23,0.1)  100%);
}
.pillar-card:hover .pillar-card__bg img { transform: scale(1.07); }

.pillar-card__body {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

/* White hairline */
.pillar-card__body::before {
  content: "";
  display: block;
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
  transition: width .5s var(--ease);
}
.pillar-card:hover .pillar-card__body::before { width: 52px; }

.pillar-card__tag {
  display: block;
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.65rem;
}
.pillar-card h3 {
  color: #fff;
  font-size: clamp(1.15rem, 0.95rem + 0.9vw, 1.55rem);
  margin-bottom: 0.65rem;
}
.pillar-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ── Carousel nav ── */
.pillars__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.pillars__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pillars__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(11, 29, 44, 0.2);
  cursor: pointer;
  transition: background .35s var(--ease), transform .35s var(--ease);
}
.pillars__dot.is-active {
  background: var(--navy);
  transform: scale(1.5);
}
.pillars__arrow {
  width: 42px; height: 42px;
  border: 1px solid var(--navy);
  background: transparent;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease);
  padding: 0;
}
.pillars__arrow:hover { background: var(--navy); color: #fff; }
.pillars__arrow:disabled { opacity: 0.3; pointer-events: none; }
.pillars__arrow svg { width: 16px; height: 16px; }

/* ── Responsive ── */
@media (max-width: 980px) {
  .pillars__layout { grid-template-columns: 1fr; }
  .pillars__intro { position: static; }
  /* show ~1.15 cards on tablet so user can see there's more */
  .pillar-card { flex: 0 0 75%; }
  .pillars__nav { justify-content: center; }
}
@media (max-width: 620px) {
  /* show 1 card + a peek of the next */
  .pillar-card { flex: 0 0 84%; }
}

/* ==========================================================================
   13. SEASON FEATURE
   ========================================================================== */
.season {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.season__media { position: absolute; inset: 0; background: linear-gradient(120deg, var(--navy-2), var(--abyss)); }
.season__media img { width: 100%; height: 100%; object-fit: cover; }
.season__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,15,23,0.9), rgba(7,15,23,0.4)); }
.season__inner { position: relative; z-index: 1; max-width: 44ch; padding-block: clamp(3.5rem, 7vw, 6rem); }
.season .eyebrow { color: #fff; }
.season h2 { color: #fff; }
.season p { color: rgba(255,255,255,0.82); margin-top: 1.4rem; }
.season .btn-row { margin-top: 2.25rem; }

/* ==========================================================================
   14. PARTNERS STRIP
   ========================================================================== */
.partners { text-align: center; }
.partners__label { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); max-width: 50ch; margin: 0 auto 2.75rem; }
.partners__row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(2rem, 6vw, 4.5rem);
}
.partners__row span {
  font-family: var(--serif);
  font-size: 1.35rem; letter-spacing: 0.12em;
  color: var(--ink); opacity: 0.4;
  transition: opacity .4s;
}
.partners__row span:hover { opacity: 0.8; }

/* ==========================================================================
   15. GLOBAL CTA BAND
   ========================================================================== */
.cta-band { text-align: center; }
.cta-band__inner { max-width: 40ch; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band .subhead { color: var(--on-dark-mut); margin: 1.4rem auto 2.5rem; }
.cta-band .btn-row { justify-content: center; }

/* ==========================================================================
   15b. INNER-PAGE COMPONENTS
   (page hero · editorial · reasons · glance · faq · channels · dest map)
   ========================================================================== */

/* ── Inner-page hero ── */
.page-hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.page-hero--compact { min-height: 56vh; }
.page-hero__media {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(120% 100% at 70% 0%, var(--navy-2), var(--abyss));
}
.page-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 18s var(--ease) forwards;
}
.page-hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,15,23,0.9) 0%, rgba(7,15,23,0.4) 52%, rgba(7,15,23,0.3) 100%),
    linear-gradient(to right, rgba(7,15,23,0.55) 0%, rgba(7,15,23,0) 60%);
}
.page-hero__inner {
  position: relative; z-index: 1;
  width: 100%;
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
  padding-top: 11rem;
}
.page-hero h1 { color: #fff; max-width: 16ch; }
.page-hero .eyebrow { color: rgba(255,255,255,0.7); }
.page-hero .subhead { color: rgba(255,255,255,0.85); margin-top: 1.5rem; max-width: 50ch; }
.page-hero .btn-row { margin-top: 2.5rem; }

/* ── Editorial text block ── */
.editorial h2 { margin-bottom: 1.25rem; }
.editorial .lede {
  font-size: clamp(1.12rem, 1rem + 0.6vw, 1.4rem);
  line-height: 1.6;
  color: var(--text);
}
.editorial p { color: var(--muted); }
.editorial .lede + p { margin-top: 1.25rem; }

/* ── Reasons (titled paragraphs, 3-up) ── */
.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}
.reasons__item { padding-top: 1.75rem; border-top: 1px solid var(--line); }
.reasons__lead {
  font-size: clamp(1.2rem, 1rem + 0.9vw, 1.55rem);
  margin-bottom: 0.75rem;
}
.reasons__item p { color: var(--muted); font-size: 0.98rem; }

/* ── At a glance (detail row) ── */
.glance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 2.25rem;
  max-width: 64ch;
  margin-inline: auto;
}
.glance__item {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.glance__item::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--navy);
  margin-right: 0.85rem;
}

/* ── FAQ accordion ── */
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
  padding: 1.4rem 0;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1rem + 0.5vw, 1.4rem);
  color: var(--ink);
}
.faq__icon { position: relative; flex: 0 0 16px; width: 16px; height: 16px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--navy);
  transition: transform .4s var(--ease), opacity .4s;
}
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after  { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item.is-open .faq__icon::after { opacity: 0; transform: translateX(-50%) scaleY(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease); }
.faq__item.is-open .faq__a { max-height: 260px; }
.faq__a p { color: var(--muted); padding-bottom: 1.4rem; max-width: 60ch; }

/* ── Direct channels ── */
.channels__row .btn { min-width: 150px; justify-content: center; }
.channels__label {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-top: 2rem;
}

/* ── Destinations map band ── */
.dest-map {
  position: relative;
  color: #fff;
  overflow: hidden;
}
.dest-map__media { position: absolute; inset: 0; }
.dest-map__media img { width: 100%; height: 100%; object-fit: cover; opacity: 0.45; }
.dest-map__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(7,15,23,0.92), rgba(7,15,23,0.55));
}
.dest-map__inner {
  position: relative; z-index: 1;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  max-width: 62ch;
}
.dest-map h2 { color: #fff; }
.dest-map .eyebrow { color: rgba(255,255,255,0.7); }
.dest-map p { color: var(--on-dark-mut); margin-top: 1rem; }
.dest-map__pins { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2.25rem; }
.dest-pin {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7em 1.2em;
  border: 1px solid var(--line-dark);
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark);
  transition: border-color .4s, background .4s, color .4s;
}
.dest-pin:hover { border-color: #fff; color: #fff; }
.dest-pin__dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; }
.dest-pin--origin { background: #fff; color: var(--navy); border-color: #fff; }
.dest-pin--origin .dest-pin__dot { background: var(--navy); }
.dest-pin--origin:hover { color: var(--navy); border-color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.85); }

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.site-footer { background: var(--abyss); color: var(--on-dark); padding-block: clamp(4rem, 8vw, 6.5rem) 2.5rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); }
.footer-brand .brand { color: #fff; display: inline-block; margin-bottom: 1.5rem; }
.footer-brand p { color: var(--on-dark-mut); font-size: 0.95rem; max-width: 38ch; }
.footer-col h4 {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: #fff; margin-bottom: 1.4rem; font-weight: 400;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { color: var(--on-dark-mut); font-size: 0.95rem; transition: color .3s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.8rem; color: var(--on-dark-mut);
}
.footer-bottom a:hover { color: #fff; }

/* ==========================================================================
   17. SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.38s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .request__grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split--reverse .split__media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .reasons { grid-template-columns: 1fr; gap: 0; }
  .reasons__item { padding-block: 1.5rem; }
  .reasons__item:not(:last-child) { border-bottom: 0; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .primary-nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--abyss);
    transform: translateX(100%);
    transition: transform .6s var(--ease);
    padding: 3rem;
  }
  body.nav-open .primary-nav { transform: none; }
  body.nav-open { overflow: hidden; }
  .primary-nav a { color: var(--on-dark); font-size: 1rem; letter-spacing: 0.2em; }

  /* groups expand inline in the drawer — no accordion needed */
  .nav-item { width: 100%; text-align: center; }
  .nav-item--has-children::after { display: none; }
  .primary-nav .nav-link {
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    pointer-events: none; /* label only; links below are always visible */
  }
  .nav-caret { display: none; }
  .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    min-width: 0;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-top: 1.1rem;
    gap: 1.1rem;
    align-items: center;
  }
  /* Match specificity of global .primary-nav .nav-dropdown a rule so mobile wins */
  .primary-nav .nav-dropdown a {
    color: var(--on-dark);
    font-size: 1rem;
    letter-spacing: 0.2em;
    padding: 0;
  }
  .primary-nav .nav-dropdown a:hover { background: none; color: #fff; }
  .nav-link--direct { color: var(--on-dark) !important; font-size: 1rem !important; letter-spacing: 0.2em !important; pointer-events: auto !important; }

  /* In the dark mobile drawer the scrolled-header colours must NOT apply —
     they darken the text onto the navy background and make it invisible. */
  .site-header.is-scrolled .primary-nav a,
  .site-header.is-scrolled .primary-nav .nav-dropdown a { color: var(--on-dark); }
  .site-header.is-scrolled .primary-nav a:hover,
  .site-header.is-scrolled .primary-nav .nav-dropdown a:hover { color: #fff; background: none; }
  .site-header.is-scrolled .primary-nav .nav-link { color: rgba(255,255,255,0.6); }

  /* Logo: replace opacity crossfade with reliable display swap on mobile.
     Selector specificity must match .brand .brand-logo (0,2,0) to win. */
  .brand .brand-logo--light,
  .brand .brand-logo--dark { transition: none; }
  .brand .brand-logo--dark {
    position: static;
    transform: none;
    opacity: 1;
    display: none;
  }
  .site-header.is-scrolled .brand .brand-logo--light { display: none; }
  .site-header.is-scrolled .brand .brand-logo--dark  { display: block; }

  .primary-nav .nav-cta-mobile {
    margin-top: 1rem; background: #fff; color: var(--navy);
    padding: 1em 2em;
  }
  .primary-nav .nav-cta-mobile::after { display: none; }
}

@media (max-width: 620px) {
  .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .partners__row { gap: 1.5rem 2.5rem; }
  .btn { width: 100%; justify-content: center; }
  .hero .btn-row .btn, .cta-band .btn-row .btn,
  .page-hero .btn-row .btn { width: 100%; }
  .page-hero__inner { padding-top: 8.5rem; }
  .glance { justify-content: flex-start; text-align: left; }
}

/* ==========================================================================
   FLEET — aircraft showcase, grouped by class
   ========================================================================== */
.fleet-group { margin-top: clamp(3rem, 6vw, 5rem); }
.fleet-group:first-of-type { margin-top: clamp(2rem, 4vw, 3.5rem); }

.fleet-group__head {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding-bottom: 1.25rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  border-bottom: 1px solid var(--line);
}
.fleet-group__head h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  white-space: nowrap;
}
.fleet-group__note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-left: auto;
  text-align: right;
}

.fleet-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: repeat(3, 1fr);
}

.fleet-card {
  display: flex;
  flex-direction: column;
  background: var(--white-soft);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease), border-color .6s;
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px -36px rgba(11,29,44,0.4);
  border-color: rgba(11,29,44,0.3);
}
.fleet-card__media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-2), var(--abyss));
}
.fleet-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.fleet-card:hover .fleet-card__media img { transform: scale(1.05); }
.fleet-card__body {
  padding: clamp(1.25rem, 2.4vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.fleet-card__name { font-size: 1.25rem; line-height: 1.2; }
.fleet-card__pax {
  margin-top: auto;
  padding-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
}
.fleet-card__pax svg { width: 15px; height: 15px; flex: none; }

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-group__head { flex-direction: column; gap: 0.5rem; }
  .fleet-group__note { margin-left: 0; text-align: left; }
}

/* Services list — used on the helicopters page */
.svc-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.svc-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.15rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--ink);
}
.svc-list li::before {
  content: "";
  width: 7px; height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--navy);
}
@media (max-width: 620px) {
  .svc-list { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FIGURES — a quiet stat band (used after the hero on service pages)
   ========================================================================== */
.figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.figures--4 { grid-template-columns: repeat(4, 1fr); }
.figure {
  text-align: center;
  padding: clamp(0.5rem, 2vw, 1.5rem) clamp(1rem, 2vw, 2rem);
}
.figure:not(:last-child) { border-right: 1px solid var(--line-dark); }
.figure__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -0.01em;
}
.figure__label {
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark);
}
.figure__note {
  margin-top: 0.5rem;
  font-size: 0.86rem;
  color: var(--on-dark-mut);
}
@media (max-width: 700px) {
  .figures, .figures--4 { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
  .figure:nth-child(2n) { border-right: 0; }
  .figure { padding-block: 1rem; }
}

/* ==========================================================================
   COMPARE — "the old way / the ÆTHER way" (helicopters signature)
   ========================================================================== */
.compare { border-top: 1px solid var(--line); }
.compare__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem 2rem;
  padding: clamp(1.25rem, 2.5vw, 1.85rem) 0;
  border-bottom: 1px solid var(--line);
}
.compare__route {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--ink);
  line-height: 1.1;
}
.compare__times {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.75rem);
  justify-self: end;
}
.compare__old {
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(113,123,129,0.5);
  font-size: 0.95rem;
  text-align: right;
  max-width: 16ch;
}
.compare__arrow { color: var(--navy); flex: none; }
.compare__new {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink);
  white-space: nowrap;
}
@media (max-width: 560px) {
  .compare__row { grid-template-columns: 1fr; gap: 0.6rem; }
  .compare__times { justify-self: start; }
  .compare__old { text-align: left; }
}

/* ==========================================================================
   DESTINATIONS PAGE — map split layout + featured card
   ========================================================================== */

/* Fix dead duplicate: first .bg-white was meant to be .bg-cream */
.bg-cream { background: #f8f8f8; }

/* ── Dest-map split layout (left intro / right route list) ── */
.dest-map__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  position: relative;
  z-index: 1;
}

.dest-map__intro .btn-row { margin-top: 2rem; }

/* Route list — column header */
.dest-map__routes-head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--sans);
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--on-dark-mut);
}

/* Individual route row */
.dest-map__route {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0.75rem;
  border-bottom: 1px solid var(--line-dark);
  color: var(--on-dark);
  text-decoration: none;
  transition: background .35s var(--ease), padding-inline .35s var(--ease), color .35s;
}
.dest-map__route:hover {
  background: rgba(255, 255, 255, 0.06);
  padding-inline: 1.25rem;
  color: #fff;
}

.dest-map__route-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.dest-map__route-name {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  flex: 1;
  line-height: 1.2;
  color: inherit;
}

.dest-map__route-type {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  min-width: 80px;
  text-align: right;
}

.dest-map__route-arrow {
  color: #fff;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.dest-map__route:hover .dest-map__route-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive — stack on tablet */
@media (max-width: 860px) {
  .dest-map__layout {
    grid-template-columns: 1fr;
    gap: clamp(2.5rem, 6vw, 4rem);
  }
}

/* ── Destination cards — section subhead ── */
.section-head .subhead { margin-top: 1.1rem; }

/* ── Full-width Bespoke featured card ── */
.dest-card--featured {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 7;
  align-items: center;
}
.dest-card--featured::after {
  background: linear-gradient(
    90deg,
    rgba(7, 15, 23, 0.92) 0%,
    rgba(7, 15, 23, 0.62) 50%,
    rgba(7, 15, 23, 0.18) 100%
  );
}
.dest-card--featured:hover::after {
  background: linear-gradient(
    90deg,
    rgba(7, 15, 23, 0.95) 0%,
    rgba(7, 15, 23, 0.68) 50%,
    rgba(7, 15, 23, 0.22) 100%
  );
}
.dest-card--featured .dest-card__body {
  padding-left: clamp(2rem, 6vw, 4.5rem);
  padding-bottom: 0;
}
.dest-card--featured h3 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
}
.dest-card--featured .dest-card__body::after { display: none; }

/* Explicit CTA label inside featured card */
.dest-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  margin-top: 1.25rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 0.2em;
  transition: gap .4s var(--ease), color .3s, border-color .3s;
}
.dest-card--featured:hover .dest-card__cta {
  gap: 0.8em;
  color: #fff;
  border-bottom-color: #fff;
}

@media (max-width: 620px) {
  .dest-card--featured {
    aspect-ratio: 4 / 3;
    align-items: flex-end;
  }
  .dest-card--featured .dest-card__body {
    padding-left: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* ── dest-map on white background — colour overrides ── */
.dest-map.bg-white {
  color: var(--ink);
  background: #fff; /* ensure dark gradient from .dest-map is cancelled */
}
.dest-map.bg-white h2                    { color: var(--ink); }
.dest-map.bg-white p                     { color: var(--muted); }
.dest-map.bg-white .eyebrow              { color: var(--navy); }
.dest-map.bg-white .dest-map__routes-head {
  border-bottom-color: var(--line);
  color: var(--muted);
}
.dest-map.bg-white .dest-map__route {
  color: var(--text);
  border-bottom-color: var(--line);
}
.dest-map.bg-white .dest-map__route:hover {
  background: #f8f8f8;
  color: var(--ink);
}
.dest-map.bg-white .dest-map__route-type  { color: var(--navy); }
.dest-map.bg-white .dest-map__route-arrow { color: var(--navy); }
