/* ============================================================
   HIGH END AIR — SHARED DESIGN SYSTEM
   Cormorant Garamond (serif) + Inter (sans)
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:           #F8F4EE;
  --bg-alt:       #EEE8DF;
  --white:        #FFFFFF;
  --charcoal:     #1A1715;
  --charcoal-2:   #262119;
  --muted:        #7C7670;
  --taupe:        #C4B49A;
  --taupe-light:  #E2DBD1;
  --taupe-dark:   #9A8870;
  --gold:         #AA8438;
  --espresso:     #141210;
  --espresso-2:   #1C1916;

  --on-dark:         rgba(255,255,255,0.88);
  --on-dark-muted:   rgba(255,255,255,0.42);
  --on-dark-dim:     rgba(255,255,255,0.13);

  --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:   'Inter', system-ui, -apple-system, sans-serif;

  --section-v: 120px;
  --max-w:     1240px;
  --ease:      cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 17px; }
body  {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--charcoal);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a      { text-decoration: none; color: inherit; }
img    { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }
ul     { list-style: none; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}
.section { padding: var(--section-v) 0; }

/* ── INLINE LINKS ────────────────────────────────────────── */
.body-link {
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--taupe);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.25s;
}
.body-link:hover { text-decoration-color: var(--charcoal); }

.body-link-light {
  color: var(--on-dark);
  text-decoration: underline;
  text-decoration-color: rgba(196,180,154,0.4);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.25s;
}
.body-link-light:hover { text-decoration-color: rgba(255,255,255,0.7); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.d1 { transition-delay: 0.10s; }
.reveal.d2 { transition-delay: 0.18s; }
.reveal.d3 { transition-delay: 0.26s; }
.reveal.d4 { transition-delay: 0.34s; }
.reveal.d5 { transition-delay: 0.42s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 18px;
}
.section-label-light { color: var(--taupe); }

.display-heading {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.012em;
}

.section-subtext {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.82;
  font-weight: 300;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: all 0.28s var(--ease);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--charcoal);
}
.btn-dark:hover { background: var(--charcoal-2); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.38);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.07); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.32);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.06); transform: translateY(-2px); }

.btn-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(170,132,56,0.45);
}
.btn-gold:hover { background: rgba(170,132,56,0.08); border-color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 0 56px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 32px;
}

/* States */
#header.h-top    { background: transparent; }
#header.h-solid  {
  background: rgba(248,244,238,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--taupe-light);
}
#header.h-dark   {
  background: rgba(20,18,16,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.header-logo {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white);
  flex-shrink: 0;
  transition: color 0.3s;
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}
#header.h-solid .header-logo { color: var(--charcoal); }
#header.h-dark  .header-logo { color: var(--white); }
.logo-main { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; letter-spacing: 0.04em; line-height: 1; }
.logo-sub { font-family: var(--sans); font-size: 0.58rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.55; line-height: 1; margin-top: 3px; }
#header.h-solid .logo-sub { opacity: 0.45; }
#header.h-dark  .logo-sub { opacity: 0.55; }

/* Nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item { position: relative; }
.nav-item > a {
  display: block;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s;
  white-space: nowrap;
}
.nav-item > a:hover { color: rgba(255,255,255,1); }
.nav-item > a.active { color: var(--white); }

#header.h-solid .nav-item > a       { color: var(--muted); }
#header.h-solid .nav-item > a:hover { color: var(--charcoal); }
#header.h-solid .nav-item > a.active { color: var(--charcoal); }
#header.h-dark  .nav-item > a       { color: rgba(255,255,255,0.55); }
#header.h-dark  .nav-item > a:hover { color: var(--white); }

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--taupe-light);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  padding: 8px 0;
  z-index: 100;
}
.nav-item:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown a:hover { color: var(--charcoal); background: var(--bg); }
.nav-dropdown a.active { color: var(--charcoal); font-weight: 500; }

/* CTA button in header */
.header-cta {
  flex-shrink: 0;
  padding: 9px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.38);
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.28s var(--ease);
  display: inline-block;
}
.header-cta:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
#header.h-solid .header-cta { color: var(--charcoal); border-color: var(--charcoal); }
#header.h-solid .header-cta:hover { background: var(--charcoal); color: var(--white); }
#header.h-dark  .header-cta { color: var(--white); border-color: rgba(255,255,255,0.38); }
#header.h-dark  .header-cta:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.7); }

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.lang-switch a {
  padding: 5px 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.25s;
  font-family: var(--sans);
  line-height: 1;
}
.lang-switch a:hover { color: rgba(255,255,255,0.9); }
.lang-switch a.active { color: var(--white); }
.lang-switch-sep {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.25);
  user-select: none;
}
#header.h-solid .lang-switch a       { color: var(--muted); }
#header.h-solid .lang-switch a:hover { color: var(--charcoal); }
#header.h-solid .lang-switch a.active { color: var(--charcoal); }
#header.h-dark  .lang-switch a       { color: rgba(255,255,255,0.45); }
#header.h-dark  .lang-switch a:hover { color: var(--white); }
#header.h-dark  .lang-switch a.active { color: var(--white); }
#header.h-solid .lang-switch-sep { color: rgba(0,0,0,0.2); }
#header.h-dark  .lang-switch-sep { color: rgba(255,255,255,0.2); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.75); transition: background 0.25s; }
#header.h-solid .burger span { background: var(--charcoal); }

/* Mobile nav */
#mobileNav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 880;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#mobileNav.open { display: flex; }
.mnav-close {
  position: absolute;
  top: 20px; right: 52px;
  font-size: 1.5rem; color: var(--muted);
  cursor: pointer; background: none; border: none;
  font-family: var(--sans); transition: color 0.25s;
}
.mnav-close:hover { color: var(--charcoal); }
.mnav-link {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 0;
  transition: color 0.25s;
}
.mnav-link:hover, .mnav-link.active { color: var(--charcoal); }
.mnav-divider {
  width: 32px; height: 1px;
  background: var(--taupe-light);
  margin: 10px 0;
}
.mnav-sub {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--muted);
  padding: 5px 0;
  transition: color 0.25s;
}
.mnav-sub:hover { color: var(--charcoal); }

/* ============================================================
   FULL-SCREEN HERO (Homepage)
   ============================================================ */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 22% 68%, rgba(38,28,14,0.65) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 22%, rgba(14,18,34,0.55) 0%, transparent 48%),
    linear-gradient(162deg, #0C1018 0%, #161C25 32%, #13100C 64%, #090807 100%);
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
.home-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 42%;
  background: linear-gradient(to top, rgba(170,132,56,0.07) 0%, transparent 100%);
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  right: -8vw; top: 50%;
  transform: translateY(-52%);
  width: clamp(360px, 48vw, 660px);
  height: clamp(360px, 48vw, 660px);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 38% 32%, rgba(50,68,110,0.26) 0%, transparent 55%),
    radial-gradient(ellipse at 65% 65%, rgba(20,28,50,0.18) 0%, transparent 50%);
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
  animation: orbFloat 9s ease-in-out infinite;
}
.hero-orb::before {
  content: '';
  position: absolute; inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.032);
}
@keyframes orbFloat {
  0%,100% { transform: translateY(-52%); }
  50%      { transform: translateY(-48%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 28px;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8.5vw, 8.5rem);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.022em;
  color: var(--white);
  max-width: 800px;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  display: block;
}
.hero-sub {
  margin-top: 22px;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: rgba(255,255,255,0.44);
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 440px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.hero-bar {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 56px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.trust-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--taupe); opacity: 0.6; flex-shrink: 0; }

.hero-scroll { display: flex; align-items: center; gap: 10px; cursor: pointer; }
.scroll-text { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.25); transition: color 0.25s; }
.hero-scroll:hover .scroll-text { color: rgba(255,255,255,0.52); }
.scroll-line { width: 1px; height: 32px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollAnim 2.4s ease-in-out infinite; }
.scroll-chevron { color: rgba(255,255,255,0.22); font-size: 0.6rem; }
@keyframes scrollAnim {
  0%,100% { opacity: 0.35; }
  50%      { opacity: 0.8; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 72%, rgba(38,28,14,0.6) 0%, transparent 52%),
    radial-gradient(ellipse at 80% 18%, rgba(14,18,34,0.5) 0%, transparent 48%),
    linear-gradient(162deg, #0C1018 0%, #161C25 36%, #13100C 68%, #090807 100%);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to top, rgba(170,132,56,0.055) 0%, transparent 100%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 56px 60px;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.32);
  margin-bottom: 20px;
}
.breadcrumb a { transition: color 0.25s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.7); }
.breadcrumb-sep { opacity: 0.4; }

.page-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--white);
  max-width: 760px;
  margin-bottom: 22px;
}
.page-hero-intro {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  max-width: 520px;
  line-height: 1.78;
}
.page-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.hero-badge {
  padding: 6px 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(170,132,56,0.38);
}

/* ============================================================
   BRAND STATEMENT (homepage)
   ============================================================ */
.statement-inner { max-width: 880px; margin: 0 auto; text-align: center; }
.statement-quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.014em;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.statement-quote em { font-style: italic; color: var(--taupe-dark); }
.statement-divider { width: 36px; height: 1px; background: var(--taupe); margin: 0 auto 32px; }
.statement-body { font-size: 1rem; color: var(--muted); line-height: 1.88; font-weight: 300; max-width: 600px; margin: 0 auto 60px; }
.statement-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--taupe-light);
  border: 1px solid var(--taupe-light);
}
.pillar { background: var(--bg); padding: 28px 20px; text-align: center; }
.pillar-label { display: block; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 7px; }
.pillar-text  { font-family: var(--serif); font-size: 1.08rem; font-weight: 500; color: var(--charcoal); }

/* ============================================================
   POSSIBILITIES CARDS
   ============================================================ */
.possibilities-header { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 60px; }
.poss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--taupe-light);
  border: 1px solid var(--taupe-light);
}
.poss-card { background: var(--white); padding: 38px 28px 34px; transition: background 0.3s; }
.poss-card:hover { background: var(--bg); }
.poss-num  { display: block; font-family: var(--serif); font-size: 2.2rem; font-weight: 300; color: var(--taupe-light); line-height: 1; margin-bottom: 28px; }
.poss-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 500; color: var(--charcoal); margin-bottom: 11px; line-height: 1.2; }
.poss-text  { font-size: 0.87rem; color: var(--muted); line-height: 1.75; font-weight: 300; margin-bottom: 22px; }
.poss-link  { font-size: 0.73rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal); display: inline-flex; align-items: center; gap: 7px; transition: gap 0.25s; }
.poss-link:hover { gap: 11px; }

/* ============================================================
   ROUTE CARDS (grid)
   ============================================================ */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
.route-card { background: var(--espresso); padding: 38px 32px; position: relative; overflow: hidden; transition: background 0.3s; }
.route-card::after { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--gold); transition: height 0.44s var(--ease-out); }
.route-card:hover { background: var(--espresso-2); }
.route-card:hover::after { height: 100%; }
.route-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.route-name { font-family: var(--serif); font-size: clamp(1.2rem, 2.2vw, 1.55rem); font-weight: 500; color: var(--white); line-height: 1.15; }
.route-sep  { color: rgba(255,255,255,0.28); margin: 0 6px; }
.route-badge { flex-shrink: 0; padding: 4px 11px; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(170,132,56,0.34); white-space: nowrap; align-self: flex-start; }
.route-desc { font-size: 0.87rem; color: rgba(255,255,255,0.38); line-height: 1.72; font-weight: 300; margin-bottom: 22px; }
.route-link { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: inline-flex; align-items: center; gap: 8px; transition: color 0.25s, gap 0.25s; }
.route-link:hover { color: var(--white); gap: 12px; }

/* ============================================================
   TRAVEL TIME COMPARISON
   ============================================================ */
.time-compare {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--taupe-light);
  border: 1px solid var(--taupe-light);
  margin-top: 0;
}
.time-item { background: var(--white); padding: 36px 30px; }
.time-item.featured { background: var(--charcoal); }
.time-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe-dark); margin-bottom: 12px; display: block; }
.time-item.featured .time-label { color: var(--taupe); }
.time-value { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; color: var(--charcoal); line-height: 1.1; margin-bottom: 10px; }
.time-item.featured .time-value { color: var(--white); }
.time-note { font-size: 0.9rem; color: var(--muted); line-height: 1.72; font-weight: 300; }
.time-item.featured .time-note { color: rgba(255,255,255,0.48); }
.time-tag { display: inline-block; margin-top: 14px; padding: 3px 10px; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(170,132,56,0.35); }

/* ============================================================
   BENEFITS / HIGHLIGHT LIST
   ============================================================ */
.benefit-list { display: flex; flex-direction: column; }
.benefit-item { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--taupe-light); font-size: 0.9rem; font-weight: 500; color: var(--charcoal); }
.benefit-item:first-child { border-top: 1px solid var(--taupe-light); }
.benefit-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip { padding: 80px 0; border-top: 1px solid var(--taupe-light); border-bottom: 1px solid var(--taupe-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 38px 32px; border-right: 1px solid var(--taupe-light); }
.stat-item:last-child { border-right: none; }
.stat-icon { width: 32px; height: 32px; margin-bottom: 18px; color: var(--taupe-dark); }
.stat-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 8px; }
.stat-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.78; font-weight: 300; }

/* ============================================================
   EXAMPLE DAY / TIMELINE
   ============================================================ */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 112px; top: 0; bottom: 0; width: 1px; background: var(--taupe-light); }
.timeline-item { display: grid; grid-template-columns: 100px 1fr; gap: 24px; padding: 22px 0; position: relative; }
.timeline-item:first-child { padding-top: 0; }
.timeline-item:last-child  { padding-bottom: 0; }
.timeline-time { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; color: var(--taupe-dark); padding-top: 3px; text-align: right; }
.timeline-dot {
  position: absolute;
  left: 108px;
  top: 24px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--taupe);
}
.timeline-item:first-child .timeline-dot { top: 2px; }
.timeline-event { font-family: var(--serif); font-size: 1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 4px; }
.timeline-note { font-size: 0.9rem; color: var(--muted); font-weight: 300; }

/* ============================================================
   TWO-COLUMN CONTENT LAYOUT
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-wide { display: grid; grid-template-columns: 5fr 4fr; gap: 72px; align-items: start; }

.content-visual {
  position: relative;
  height: 460px;
  background:
    radial-gradient(ellipse at 22% 68%, rgba(20,35,65,0.9) 0%, transparent 58%),
    linear-gradient(148deg, #0D1624 0%, #182840 55%, #0C1620 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 38px;
}
.content-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 44px 44px;
}
.visual-quote { position: relative; z-index: 1; font-family: var(--serif); font-size: clamp(1.3rem, 2.6vw, 2rem); font-weight: 400; font-style: italic; color: rgba(255,255,255,0.6); line-height: 1.35; }

.re-visual {
  height: 480px;
  background:
    radial-gradient(ellipse at 68% 36%, rgba(170,132,56,0.1) 0%, transparent 52%),
    linear-gradient(155deg, #0A1520 0%, #152030 55%, #0C1A28 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 26px;
}
.re-visual-tag { position: relative; z-index: 1; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--taupe); padding: 7px 13px; border: 1px solid rgba(196,180,154,0.28); background: rgba(0,0,0,0.3); backdrop-filter: blur(8px); }

/* ============================================================
   FLEXIBLE DEPARTURE BLOCK
   ============================================================ */
.flex-depart-block {
  background: var(--espresso-2);
  padding: 48px 48px;
  position: relative;
  overflow: hidden;
  border-left: 2px solid var(--gold);
}
.flex-depart-block::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px);
  background-size: 52px 52px;
}
.flex-depart-block > * { position: relative; z-index: 1; }
.flex-depart-block .section-label { color: var(--gold); margin-bottom: 14px; }
.flex-depart-block .display-heading { color: var(--white); font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 18px; }
.flex-depart-block p { font-size: 0.92rem; color: rgba(255,255,255,0.44); line-height: 1.82; font-weight: 300; margin-bottom: 14px; }
.flex-depart-block p:last-of-type { margin-bottom: 24px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg-alt); }
.faq-header  { max-width: 520px; margin-bottom: 56px; }
.faq-list    { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--taupe-light); }
.faq-item    {
  background: var(--white);
  border-bottom: 1px solid var(--taupe-light);
  overflow: hidden;
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 30px;
  cursor: pointer;
  transition: background 0.25s;
}
.faq-q:hover { background: var(--bg); }
.faq-q-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1px solid var(--taupe-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe-dark);
  font-size: 0.85rem;
  transition: transform 0.3s, background 0.25s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 30px 24px 30px;
  font-size: 0.96rem;
  color: var(--muted);
  line-height: 1.86;
  font-weight: 300;
}
.faq-a-inner p + p { margin-top: 10px; }

/* ============================================================
   USE CASES GRID
   ============================================================ */
.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--taupe-light);
  border: 1px solid var(--taupe-light);
}
.use-case { background: var(--white); padding: 34px 26px; transition: background 0.28s; }
.use-case:hover { background: var(--bg); }
.use-case-icon  { width: 36px; height: 36px; color: var(--taupe-dark); margin-bottom: 18px; }
.use-case-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; color: var(--charcoal); margin-bottom: 10px; }
.use-case-text  { font-size: 0.93rem; color: var(--muted); line-height: 1.78; font-weight: 300; }

/* ============================================================
   RELATED ROUTES / LINKS
   ============================================================ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
.related-card { background: var(--espresso); padding: 30px 26px; transition: background 0.28s; }
.related-card:hover { background: var(--espresso-2); }
.related-route { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--white); margin-bottom: 8px; display: block; }
.related-time  { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block; }
.related-link  { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.38); display: inline-flex; align-items: center; gap: 7px; transition: color 0.25s, gap 0.25s; }
.related-card:hover .related-link { color: var(--white); gap: 10px; }

/* ============================================================
   INSPIRATIONAL / WAYS TO FLY
   ============================================================ */
.insp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--taupe-light);
  border: 1px solid var(--taupe-light);
}
.insp-block { background: var(--white); padding: 46px 38px; min-height: 260px; transition: background 0.3s; }
.insp-block:hover { background: var(--bg); }
.insp-num  { display: block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-bottom: 26px; }
.insp-city { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 500; color: var(--charcoal); margin-bottom: 13px; line-height: 1.2; }
.insp-text { font-size: 0.87rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ============================================================
   TRUST ITEMS
   ============================================================ */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--taupe-light); border: 1px solid var(--taupe-light); }
.trust-item { background: var(--white); padding: 46px 38px; transition: background 0.3s; }
.trust-item:hover { background: var(--bg); }
.trust-icon  { width: 38px; height: 38px; color: var(--taupe-dark); margin-bottom: 22px; }
.trust-title { font-family: var(--serif); font-size: 1.18rem; font-weight: 500; color: var(--charcoal); margin-bottom: 11px; }
.trust-text  { font-size: 0.93rem; color: var(--muted); line-height: 1.86; font-weight: 300; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--espresso); position: relative; overflow: hidden; }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.013) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; padding: var(--section-v) 0; }
.cta-inner .section-label { margin-bottom: 16px; }
.cta-heading { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 400; color: var(--white); line-height: 1.12; letter-spacing: -0.012em; margin-bottom: 20px; }
.cta-heading em { font-style: italic; color: rgba(255,255,255,0.55); }
.cta-text { font-size: 0.95rem; color: rgba(255,255,255,0.4); line-height: 1.78; font-weight: 300; margin-bottom: 36px; }
.cta-buttons { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left-head { font-size: 0.67rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-bottom: 18px; display: block; }
.contact-h2 { font-family: var(--serif); font-size: clamp(2rem, 3.8vw, 3.4rem); font-weight: 400; color: var(--white); line-height: 1.1; letter-spacing: -0.012em; margin-bottom: 20px; }
.contact-sub { font-size: 0.92rem; color: rgba(255,255,255,0.38); line-height: 1.82; font-weight: 300; }

.contact-form { display: flex; flex-direction: column; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; }
.f-group { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16); margin: 0 -1px -1px 0; position: relative; transition: border-color 0.25s, background 0.25s; }
.f-group:focus-within { border-color: rgba(255,255,255,0.40); background: rgba(255,255,255,0.11); z-index: 2; }
.f-group.f-full { grid-column: 1 / -1; }
.f-group.err { border-color: rgba(180,60,60,0.6); z-index: 2; }
.f-label { display: block; padding: 14px 18px 0; font-size: 0.61rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.f-input, .f-select, .f-textarea { display: block; width: 100%; padding: 6px 18px 14px; background: transparent; border: none; outline: none; font-family: var(--sans); font-size: 0.9rem; color: var(--white); appearance: none; -webkit-appearance: none; }
.f-input::placeholder, .f-textarea::placeholder { color: rgba(255,255,255,0.35); font-weight: 300; }
.f-select { cursor: pointer; }
.f-select option { background: var(--espresso-2); }
.f-textarea { resize: none; min-height: 112px; }
.f-err-msg { display: none; padding: 0 18px 10px; font-size: 0.7rem; color: rgba(200,80,80,0.9); }
.f-group.err .f-err-msg { display: block; }
.form-actions { padding-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-submit { font-family: var(--sans); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; background: var(--white); color: var(--charcoal); border: 1px solid var(--white); padding: 15px 40px; cursor: pointer; transition: all 0.28s var(--ease); }
.btn-submit:hover { background: var(--bg); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.5; cursor: default; transform: none; }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.25); font-weight: 300; }
.form-success { display: none; padding: 56px 36px; border: 1px solid rgba(255,255,255,0.07); text-align: center; }
.form-success.show { display: block; }
.success-icon { width: 42px; height: 42px; margin: 0 auto 18px; color: var(--gold); }
.form-success h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.form-success p { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 360px; margin: 0 auto; }
.form-success-light { border-color: var(--taupe-light); background: var(--white); }
.form-success-light h3 { color: var(--charcoal); }
.form-success-light p { color: var(--muted); }

/* ── Contact form — light background variant ──────────────── */
.contact-form-light .f-group { background: var(--white); border: 1px solid var(--taupe-light); }
.contact-form-light .f-group.err { border-color: rgba(180,60,60,0.5); }
.f-label-dark { color: var(--taupe-dark) !important; }
.f-input-light { color: var(--charcoal) !important; }
.f-input-light::placeholder { color: rgba(26,23,21,0.25) !important; }
.f-select.f-input-light { color: var(--charcoal) !important; }
.f-select.f-input-light option { background: var(--white); color: var(--charcoal); }
.f-textarea-light { color: var(--charcoal) !important; }
.f-textarea-light::placeholder { color: rgba(26,23,21,0.25) !important; }
.btn-submit-dark { background: var(--charcoal) !important; color: var(--white) !important; border-color: var(--charcoal) !important; }
.btn-submit-dark:hover { background: var(--charcoal-2) !important; }
.form-note-dark { color: var(--muted) !important; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
@media (max-width: 700px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: var(--white);
  border: 1px solid var(--taupe-light);
  border-radius: 2px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars { color: #F4B942; font-size: 1rem; letter-spacing: 2px; }
.review-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.75;
  flex: 1;
}
.review-source {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.review-source svg { width: 16px; height: 16px; flex-shrink: 0; }
.reviews-rating-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.reviews-score {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1;
}
.reviews-meta { font-size: 0.85rem; color: var(--muted); }

/* Pull-quote variant (contact pages) */
.review-pullquote {
  margin-bottom: 40px;
  padding: 28px 32px;
  background: var(--bg-alt);
  border-left: 2px solid var(--gold);
  position: relative;
}
.review-pullquote::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.35;
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}
.review-pullquote .review-text {
  font-size: 1.08rem;
  padding-left: 20px;
  color: var(--charcoal);
}
.review-pullquote .review-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-left: 20px;
}
.review-pullquote .review-stars { font-size: 0.85rem; letter-spacing: 1px; }
.review-pullquote .review-source { font-size: 0.72rem; }
.review-pullquote .review-source svg { width: 14px; height: 14px; }

/* Horizontal strip variant (destination pages) */
.review-strip {
  background: var(--bg-alt);
  padding: 40px 0;
}
.review-strip-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.review-strip-quote {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.8;
  flex-shrink: 0;
}
.review-strip-body { flex: 1; }
.review-strip-body .review-text {
  font-size: 1.12rem;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.review-strip-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 600px) {
  .review-strip-inner { flex-direction: column; gap: 16px; }
  .review-strip-quote { display: none; }
}

/* Featured testimonial variant (charter pages) */
.review-featured {
  background: var(--espresso);
  padding: 72px 0;
}
.review-featured-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.review-featured-mark {
  font-family: var(--serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.6;
  display: block;
  margin-bottom: 24px;
}
.review-featured .review-text {
  font-size: 1.35rem;
  color: var(--white);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 28px;
}
.review-featured .review-stars { font-size: 1rem; letter-spacing: 3px; }
.review-featured .review-source {
  justify-content: center;
  margin-top: 12px;
  color: rgba(255,255,255,0.4);
}
.review-featured .review-source svg { width: 14px; height: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--espresso-2); padding: 78px 0 38px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-top { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px; }
.footer-logo { display: block; font-family: var(--serif); font-size: 1.1rem; font-weight: 500; letter-spacing: 0.04em; color: var(--white); margin-bottom: 13px; }
.footer-logo-sub { display: block; font-family: var(--sans); font-size: 0.62rem; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 4px; }
.footer-logo-by { display: block; font-family: var(--sans); font-size: 0.58rem; font-weight: 300; letter-spacing: 0.08em; color: rgba(255,255,255,0.22); margin-top: 6px; }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.3); line-height: 1.78; font-weight: 300; max-width: 240px; }
.footer-col-title { display: block; font-size: 0.61rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.22); margin-bottom: 17px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.82rem; color: rgba(255,255,255,0.38); font-weight: 300; transition: color 0.25s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.fct-row { margin-bottom: 12px; }
.fct-label { display: block; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.2); margin-bottom: 3px; }
.fct-val { font-size: 0.82rem; color: rgba(255,255,255,0.38); font-weight: 300; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: 0.74rem; color: rgba(255,255,255,0.16); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.74rem; color: rgba(255,255,255,0.2); transition: color 0.25s; }
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ============================================================
   NUMBERED BENEFIT GRID (service / inner pages)
   ============================================================ */
.benefit-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--taupe-light);
  border: 1px solid var(--taupe-light);
}
.benefit-col { background: var(--white); padding: 40px 32px; transition: background 0.28s; }
.benefit-col:hover { background: var(--bg); }
.benefit-col-num   { display: block; font-family: var(--serif); font-size: 2.1rem; font-weight: 300; color: var(--taupe-light); line-height: 1; margin-bottom: 22px; }
.benefit-col-title { font-family: var(--serif); font-size: 1.12rem; font-weight: 500; color: var(--charcoal); margin-bottom: 10px; }
.benefit-col-text  { font-size: 0.93rem; color: var(--muted); line-height: 1.82; font-weight: 300; }

/* ============================================================
   RICH BENEFIT LIST (title + paragraph, bordered)
   ============================================================ */
.rich-benefit-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--taupe-light); }
.rich-benefit { background: var(--white); padding: 24px 30px; border-bottom: 1px solid var(--taupe-light); transition: background 0.25s; }
.rich-benefit:last-child { border-bottom: none; }
.rich-benefit:hover { background: var(--bg); }
.rich-benefit-title { font-family: var(--serif); font-size: 1.02rem; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.rich-benefit-text  { font-size: 0.93rem; color: var(--muted); line-height: 1.82; font-weight: 300; }

/* ============================================================
   DEPARTURE POINTS LIST
   ============================================================ */
.dep-points { border: 1px solid var(--taupe-light); display: flex; flex-direction: column; }
.dep-point  { padding: 18px 26px; border-bottom: 1px solid var(--taupe-light); background: var(--white); display: flex; flex-direction: column; gap: 3px; transition: background 0.22s; }
.dep-point:last-child { border-bottom: none; }
.dep-point:hover { background: var(--bg); }
.dep-point strong { font-size: 0.94rem; font-weight: 600; color: var(--charcoal); }
.dep-point em { font-style: normal; font-size: 0.84rem; color: var(--muted); font-weight: 300; }

/* ============================================================
   ROUTE CARDS — LIGHT BACKGROUND VARIANT
   ============================================================ */
.routes-grid-light {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--taupe-light);
  border: 1px solid var(--taupe-light);
}
.route-card-light { background: var(--white); padding: 36px 32px; transition: background 0.3s; position: relative; overflow: hidden; display: block; text-decoration: none; color: inherit; }
.route-card-light::after { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--charcoal); transition: height 0.44s var(--ease-out); }
.route-card-light:hover { background: var(--bg); }
.route-card-light:hover::after { height: 100%; }
.route-card-light .route-name   { color: var(--charcoal); }
.route-card-light .route-sep    { color: rgba(26,23,21,0.22); }
.route-card-light .route-badge  { color: var(--taupe-dark); border-color: var(--taupe-light); }
.route-card-light .route-desc   { color: var(--muted); }
.route-card-light .route-link   { color: var(--taupe-dark); }
.route-card-light:hover .route-link { color: var(--charcoal); gap: 12px; }

/* ============================================================
   TIMELINE — DARK BACKGROUND VARIANT
   ============================================================ */
.timeline-dark::before         { background: rgba(255,255,255,0.1); }
.timeline-dark .timeline-dot   { background: var(--espresso); border-color: rgba(255,255,255,0.28); }
.timeline-dark .timeline-time  { color: var(--taupe); }
.timeline-dark .timeline-event { color: var(--white); }
.timeline-dark .timeline-note  { color: rgba(255,255,255,0.44); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1060px) {
  .poss-grid         { grid-template-columns: repeat(2, 1fr); }
  .use-cases-grid    { grid-template-columns: repeat(2, 1fr); }
  .related-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid        { grid-template-columns: repeat(2, 1fr); }
  .benefit-col-grid  { grid-template-columns: repeat(2, 1fr) !important; }
  .statement-pillars { grid-template-columns: repeat(2, 1fr) !important; }
  .routes-grid-light { grid-template-columns: 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--taupe-light); border-top: 1px solid var(--taupe-light); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--taupe-light); }
  .footer-top        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .two-col, .two-col-wide, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .content-visual, .re-visual { height: 300px; order: -1; }
  .time-compare      { grid-template-columns: 1fr; gap: 1px; }
}

@media (max-width: 768px) {
  :root { --section-v: 80px; }
  .container   { padding: 0 24px; }
  #header      { padding: 0 24px; }
  .hero-content, .page-hero-content { padding-left: 24px; padding-right: 24px; }
  .hero-bar    { padding: 18px 24px; }
  .header-nav, .header-cta { display: none; }
  .burger      { display: flex; }

  .hero-headline { font-size: clamp(2.8rem, 10vw, 5rem); }
  .hero-orb      { display: none; }
  .hero-buttons  { flex-direction: column; }
  .btn           { max-width: 320px; width: 100%; justify-content: center; }
  .hero-trust    { gap: 10px; }

  .possibilities-header { grid-template-columns: 1fr; gap: 24px; }
  .routes-grid    { grid-template-columns: 1fr; }
  .insp-grid      { grid-template-columns: 1fr; }
  .trust-grid     { grid-template-columns: 1fr; }
  .statement-pillars { grid-template-columns: 1fr !important; }
  .f-row          { grid-template-columns: 1fr; }
  .footer-top     { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom  { flex-direction: column; text-align: center; }

  .flex-depart-block { padding: 32px 28px; }
  .timeline::before  { left: 16px; }
  .timeline-item     { display: flex; flex-direction: column; gap: 4px; padding: 20px 0 20px 40px; }
  .timeline-time     { text-align: left; font-size: 0.72rem; }
  .timeline-dot      { left: 12px; top: 4px; }
}

@media (max-width: 768px) {
  .benefit-col-grid  { grid-template-columns: 1fr !important; }
}

/* Grid utility: responsive 2-column section intro header */
.grid-intro-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 60px;
}
.grid-intro-header--start { align-items: start; margin-bottom: 0; }
@media (max-width: 768px) {
  .grid-intro-header { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
  .grid-intro-header--start { margin-bottom: 0; }
}

/* Grid utility: rich-benefit 2/3-col border grid */
.grid-rich-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--taupe-light);
}
.grid-rich-benefits--3col { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 768px) {
  .grid-rich-benefits,
  .grid-rich-benefits--3col { grid-template-columns: 1fr; }
}

/* Grid utility: side-by-side luxury card panels with 2px gap */
.grid-cards-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 2px;
}
@media (max-width: 768px) {
  .grid-cards-2col { grid-template-columns: 1fr; }
}

/* Grid utility: 2-col use-case cards with 32px gap */
.grid-use-cases-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .grid-use-cases-2col { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
  .poss-grid  { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

/* ── ROUTE BADGES ────────────────────────────────────────── */
.route-badges {
  padding: 52px 0;
  background: var(--espresso-2);
}
.route-badges-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 56px;
}
.route-badges-label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe-dark);
  margin-bottom: 28px;
  display: block;
}
.route-badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.route-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(196,180,154,0.22);
  font-family: var(--sans);
  transition: border-color 0.22s var(--ease), background 0.22s var(--ease);
}
.route-badge:hover {
  border-color: var(--gold);
  background: rgba(170,132,56,0.06);
}
.route-badge-cities {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
}
.route-badge-arrow {
  color: var(--taupe-dark);
  font-size: 0.7rem;
  margin: 0 2px;
}
.route-badge-time {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold);
  padding-left: 10px;
  border-left: 1px solid rgba(196,180,154,0.2);
}
@media (max-width: 768px) {
  .route-badges-inner { padding: 0 24px; }
  .route-badge { padding: 12px 16px; }
}

/* ── STICKY MOBILE CTA ───────────────────────────────────── */
.sticky-mobile-cta {
  display: none;
}
@media (max-width: 767px) {
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    box-shadow: 0 -2px 24px rgba(0,0,0,0.28);
  }
  .sticky-mobile-cta a {
    flex: 1;
    padding: 16px 12px;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.18s;
  }
  .sticky-mobile-cta a:active { opacity: 0.8; }
  .sticky-cta-call {
    background: var(--espresso);
    color: rgba(255,255,255,0.88);
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .sticky-cta-book {
    background: var(--gold);
    color: #fff;
  }
  body { padding-bottom: 56px; }
}
