/* ============================================================
   VELANTIS — Master Design System
   Private Aviation & Yacht Charter
   Sint Maarten · Monaco
   ============================================================ */

/* ── Google Fonts Import ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&family=DM+Mono:wght@300;400&display=swap');

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  /* ── Palette ── */
  --chalk:       #F9F7F2;
  --cream:       #EDE9DF;
  --cream-deep:  #E4DED3;
  --stone-light: #D0CAC1;
  --stone:       #AEA79D;
  --taupe:       #87807A;
  --charcoal:    #2E2926;
  --midnight:    #100E0B;
  --marine:      #16303F;
  --marine-mid:  #1F4459;
  --azure:       #2B6580;
  --sea-glass:   #6FA3B7;
  --gold:        #B8906A;
  --gold-light:  #D4B48E;
  --gold-pale:   #E8D5C0;
  --sand:        #C8AA88;

  /* ── Semantic ── */
  --bg:          var(--chalk);
  --bg-alt:      var(--cream);
  --bg-dark:     var(--marine);
  --bg-midnight: var(--midnight);
  --text:        var(--charcoal);
  --text-sub:    var(--taupe);
  --text-light:  var(--stone);
  --text-inv:    var(--chalk);
  --border:      var(--stone-light);
  --border-sub:  var(--cream-deep);
  --accent:      var(--gold);
  --accent-lt:   var(--gold-light);

  /* ── Typography ── */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body:    'Jost', system-ui, -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* ── Type Scale ── */
  --text-xs:   clamp(0.65rem, 0.8vw, 0.75rem);
  --text-sm:   clamp(0.8rem, 1vw, 0.875rem);
  --text-base: clamp(0.95rem, 1.1vw, 1.0625rem);
  --text-md:   clamp(1.05rem, 1.3vw, 1.25rem);
  --text-lg:   clamp(1.25rem, 2vw, 1.625rem);
  --text-xl:   clamp(1.6rem, 3vw, 2.25rem);
  --text-2xl:  clamp(2rem, 4.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 6vw, 5rem);
  --text-4xl:  clamp(3rem, 8vw, 7rem);
  --text-5xl:  clamp(3.5rem, 11vw, 9.5rem);

  /* ── Spacing ── */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  /* ── Layout ── */
  --nav-h:       76px;
  --content-max: 1440px;
  --reading-max: 720px;
  --sec-pad:     clamp(64px, 9vw, 140px);
  --sec-pad-sm:  clamp(40px, 6vw, 80px);
  --gutter:      clamp(20px, 4vw, 60px);

  /* ── Radius ── */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  16px;
  --r-xl:  32px;

  /* ── Motion ── */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
  --dur-fast:    180ms;
  --dur-base:    360ms;
  --dur-slow:    600ms;
  --dur-long:    900ms;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 3px rgba(16,14,11,.06), 0 1px 2px rgba(16,14,11,.04);
  --shadow-md: 0 4px 16px rgba(16,14,11,.08), 0 2px 6px rgba(16,14,11,.04);
  --shadow-lg: 0 12px 48px rgba(16,14,11,.10), 0 4px 16px rgba(16,14,11,.06);
  --shadow-xl: 0 24px 80px rgba(16,14,11,.14), 0 8px 24px rgba(16,14,11,.08);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ── Typography ─────────────────────────────────────────── */

/* Display hierarchy */
.t-display {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: var(--text-5xl);
  line-height: 1.0;
  letter-spacing: -0.02em;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
}

.t-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-3xl);
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

.t-headline-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--text-2xl);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.t-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--text-xl);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.t-body-lg {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--text-md);
  line-height: 1.75;
  letter-spacing: 0.01em;
}

.t-body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.7;
}

.t-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.t-mono {
  font-family: var(--font-mono);
  font-weight: 300;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}

/* Italic utility */
em, .t-italic { font-style: italic; }

/* ── Section Label ───────────────────────────────────────── */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-6);
}
.sec-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── Layout Utilities ───────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  max-width: 1080px;
}

.container--reading {
  max-width: var(--reading-max);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--dur-base) var(--ease-luxury);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  padding: 15px 32px;
  background: var(--charcoal);
  color: var(--chalk);
  border: 1.5px solid var(--charcoal);
}
.btn--primary:hover {
  background: var(--midnight);
  border-color: var(--midnight);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--primary-gold {
  padding: 15px 32px;
  background: var(--gold);
  color: var(--chalk);
  border: 1.5px solid var(--gold);
}
.btn--primary-gold:hover {
  background: var(--sand);
  border-color: var(--sand);
  transform: translateY(-1px);
}

.btn--outline {
  padding: 14px 30px;
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--chalk);
}

.btn--outline-light {
  padding: 14px 30px;
  background: transparent;
  color: var(--chalk);
  border: 1.5px solid rgba(249,247,242,0.4);
}
.btn--outline-light:hover {
  background: rgba(249,247,242,0.1);
  border-color: var(--chalk);
}

.btn--ghost {
  padding: 14px 30px;
  background: transparent;
  color: var(--chalk);
  border: 1.5px solid rgba(249,247,242,0.35);
}
.btn--ghost:hover {
  background: var(--chalk);
  color: var(--charcoal);
  border-color: var(--chalk);
}

.btn--text {
  padding: 0;
  background: none;
  border: none;
  color: var(--charcoal);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  border-radius: 0;
}
.btn--text:hover { opacity: 0.6; }

.btn--text-gold {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.btn--text-inv {
  color: var(--chalk);
  border-bottom-color: rgba(249,247,242,0.5);
}
.btn--text-inv:hover { opacity: 0.7; }

/* Arrow icon in button */
.btn .arrow { transition: transform var(--dur-base) var(--ease-luxury); }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--dur-slow) var(--ease-luxury),
              backdrop-filter var(--dur-slow) var(--ease-luxury),
              box-shadow var(--dur-slow) var(--ease-luxury);
}

.nav.is-scrolled {
  background: rgba(249,247,242,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav.nav--dark:not(.is-scrolled) {
  background: transparent;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--gutter);
  max-width: var(--content-max);
  margin: 0 auto;
  gap: var(--sp-8);
}

/* Brand */
.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logomark {
  width: 32px;
  height: 32px;
}

.nav__wordmark {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--dur-base);
}

.nav--dark:not(.is-scrolled) .nav__wordmark { color: var(--chalk); }

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 36px);
  flex: 1;
  justify-content: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  transition: color var(--dur-base);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-luxury);
}
.nav__link:hover { color: var(--charcoal); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--charcoal); }
.nav__link.is-active::after { transform: scaleX(1); }

.nav--dark:not(.is-scrolled) .nav__link { color: rgba(249,247,242,0.6); }
.nav--dark:not(.is-scrolled) .nav__link:hover { color: var(--chalk); }

/* Actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.nav__request {
  padding: 9px 20px;
  background: transparent;
  border: 1px solid var(--stone-light);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: all var(--dur-base);
}
.nav__request:hover {
  background: var(--charcoal);
  color: var(--chalk);
  border-color: var(--charcoal);
}

.nav--dark:not(.is-scrolled) .nav__request {
  border-color: rgba(249,247,242,0.3);
  color: var(--chalk);
}
.nav--dark:not(.is-scrolled) .nav__request:hover {
  background: var(--chalk);
  color: var(--charcoal);
}

.nav__icon-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  transition: color var(--dur-base);
}
.nav__icon-btn:hover { color: var(--charcoal); }
.nav--dark:not(.is-scrolled) .nav__icon-btn { color: rgba(249,247,242,0.6); }
.nav--dark:not(.is-scrolled) .nav__icon-btn:hover { color: var(--chalk); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 38px;
  height: 38px;
}
.nav__toggle span {
  display: block;
  height: 1px;
  background: var(--charcoal);
  transition: all var(--dur-base) var(--ease-luxury);
}
.nav__toggle span:nth-child(1) { width: 22px; }
.nav__toggle span:nth-child(2) { width: 14px; }
.nav--dark:not(.is-scrolled) .nav__toggle span { background: var(--chalk); }
.nav__toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  width: 20px;
}
.nav__toggle.is-open span:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -3px);
  width: 20px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--chalk);
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 40px) var(--gutter) 40px;
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  padding: var(--sp-4) 0;
  border-bottom: 1px solid var(--border);
  transition: opacity var(--dur-base);
}
.mobile-menu__link:hover { opacity: 0.5; }

.mobile-menu__actions {
  margin-top: var(--sp-10);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

/* ── Page Header ─────────────────────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + var(--sec-pad));
  padding-bottom: var(--sec-pad);
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

.page-header__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.page-header__coords {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--taupe);
  letter-spacing: 0.08em;
}

.page-header__rule {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--stone-light);
}

.page-header h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--text-4xl);
  line-height: 1.0;
  letter-spacing: -0.02em;
}

.page-header h1 em { font-style: italic; }

.page-header__sub {
  margin-top: var(--sp-6);
  max-width: 560px;
  font-size: var(--text-md);
  font-weight: 300;
  color: var(--taupe);
  line-height: 1.75;
}

/* ── Ticker / Marquee ───────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  background: var(--cream);
}

.ticker__track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}

.ticker__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  white-space: nowrap;
}

.ticker__sep {
  color: var(--gold);
  font-size: 8px;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Image Utilities ─────────────────────────────────────── */
.img-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.img-frame {
  position: relative;
  overflow: hidden;
}

.img-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Image reveal animation */
.img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform-origin: left;
  transition: transform var(--dur-long) var(--ease-out);
}
.img-frame.is-revealed::after { transform: scaleX(0); }

/* ── Dividers ────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

.divider--gold {
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--chalk);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-luxury),
              transform var(--dur-base) var(--ease-luxury);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.card__image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.card__image img,
.card__image .img-bg {
  transition: transform var(--dur-long) var(--ease-luxury);
}
.card:hover .card__image img,
.card:hover .card__image .img-bg {
  transform: scale(1.04);
}

.card__body {
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
}

.card__category {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--sp-3);
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}

.card__desc {
  font-size: var(--text-sm);
  color: var(--taupe);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.card__meta {
  display: flex;
  gap: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card__meta-label {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

.card__meta-value {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 500;
  color: var(--charcoal);
}

/* ── Fleet Card (horizontal scroll) ─────────────────────── */
.fleet-card {
  width: clamp(300px, 35vw, 480px);
  flex-shrink: 0;
  background: var(--chalk);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--dur-base) var(--ease-luxury);
}
.fleet-card:hover { box-shadow: var(--shadow-lg); }

.fleet-card__image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--cream-deep);
}
.fleet-card__image .img-bg {
  transition: transform var(--dur-long) var(--ease-luxury);
}
.fleet-card:hover .fleet-card__image .img-bg { transform: scale(1.05); }

.fleet-card__tag {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  background: var(--chalk);
  padding: 4px 10px;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
}

.fleet-card__body {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
}

.fleet-card__name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.fleet-card__type {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--sp-5);
}

.fleet-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--border);
}

.fleet-spec__label {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  display: block;
  margin-bottom: 3px;
}

.fleet-spec__value {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 400;
  color: var(--charcoal);
}

/* ── Empty Leg Board ─────────────────────────────────────── */
.leg-row {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 1fr 1fr auto;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur-base);
}
.leg-row:hover { background: var(--cream); }

.leg-row__city {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.1;
}
.leg-row__iata {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--taupe);
  letter-spacing: 0.08em;
  margin-top: 2px;
}

.leg-row__arrow {
  color: var(--gold);
  font-size: 16px;
  text-align: center;
}

.leg-row__aircraft {
  font-size: var(--text-sm);
  color: var(--taupe);
  font-weight: 400;
}

.leg-row__date {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--charcoal);
}

.leg-row__pax {
  font-size: var(--text-xs);
  color: var(--taupe);
  letter-spacing: 0.08em;
}

.leg-row__action {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity var(--dur-base);
}
.leg-row__action:hover { opacity: 0.5; }

/* ── Stats ───────────────────────────────────────────────── */
.stat-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-3xl);
  font-weight: 300;
  line-height: 1;
  color: var(--charcoal);
}

.stat-label {
  font-size: var(--text-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-top: var(--sp-2);
  font-weight: 500;
}

/* ── Forms ───────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-label {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: var(--chalk);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  color: var(--charcoal);
  outline: none;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
  appearance: none;
  border-radius: 0;
}
.form-control::placeholder { color: var(--stone); font-weight: 300; }
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,144,106,0.12);
}

.form-control--dark {
  background: rgba(249,247,242,0.05);
  border-color: rgba(249,247,242,0.15);
  color: var(--chalk);
}
.form-control--dark::placeholder { color: rgba(249,247,242,0.35); }
.form-control--dark:focus {
  border-color: rgba(184,144,106,0.6);
  box-shadow: 0 0 0 3px rgba(184,144,106,0.08);
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23AEA79D' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; cursor: pointer; }

/* ── Sections - Background Variants ─────────────────────── */
.sec { padding: var(--sec-pad) 0; }
.sec--sm { padding: var(--sec-pad-sm) 0; }
.sec--chalk { background: var(--chalk); }
.sec--cream { background: var(--cream); }
.sec--dark { background: var(--marine); color: var(--chalk); }
.sec--midnight { background: var(--midnight); color: var(--chalk); }

/* ── Reveal Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--midnight);
  color: var(--chalk);
  padding-top: var(--sec-pad);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: var(--sec-pad-sm);
  border-bottom: 1px solid rgba(249,247,242,0.08);
}

.footer__brand-name {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--chalk);
  margin-bottom: var(--sp-4);
  display: block;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(249,247,242,0.6);
  line-height: 1.3;
  margin-bottom: var(--sp-8);
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(249,247,242,0.4);
  line-height: 1.75;
  max-width: 300px;
  margin-bottom: var(--sp-8);
}

.footer__coords {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(249,247,242,0.25);
  letter-spacing: 0.08em;
}

.footer__col-title {
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(249,247,242,0.3);
  margin-bottom: var(--sp-6);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.footer__link {
  font-size: var(--text-sm);
  color: rgba(249,247,242,0.55);
  transition: color var(--dur-base);
}
.footer__link:hover { color: var(--chalk); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-6) 0;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(249,247,242,0.25);
  letter-spacing: 0.08em;
}

.footer__legal {
  display: flex;
  gap: var(--sp-6);
}

.footer__legal a {
  font-size: var(--text-xs);
  color: rgba(249,247,242,0.25);
  letter-spacing: 0.08em;
  transition: color var(--dur-base);
}
.footer__legal a:hover { color: rgba(249,247,242,0.6); }

/* ── Badge / Tag ─────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  color: var(--taupe);
}

.badge--gold {
  background: var(--gold-pale);
  border-color: var(--gold-light);
  color: var(--gold);
}

.badge--dark {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--chalk);
}

/* ── Horizontal scroll container ────────────────────────── */
.h-scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--sp-4);
}
.h-scroll::-webkit-scrollbar { display: none; }

.h-scroll__track {
  display: flex;
  gap: var(--sp-5);
  padding: 0 var(--gutter);
}

/* ── Overlay / Modal ─────────────────────────────────────── */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,14,11,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base), visibility var(--dur-base);
  padding: var(--sp-6);
}
.overlay.is-open { opacity: 1; visibility: visible; }

.modal {
  background: var(--chalk);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sec-pad-sm);
  position: relative;
}

.modal__close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  color: var(--taupe);
  transition: color var(--dur-base);
}
.modal__close:hover { color: var(--charcoal); }

/* ── Destination Card ────────────────────────────────────── */
.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.dest-card__bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--dur-long) var(--ease-luxury);
}
.dest-card:hover .dest-card__bg { transform: scale(1.05); }
.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,14,11,0.7) 0%, rgba(16,14,11,0.1) 60%, transparent 100%);
}
.dest-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-6) var(--sp-6) var(--sp-5);
}
.dest-card__iata {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: rgba(249,247,242,0.5);
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-1);
}
.dest-card__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--chalk);
  line-height: 1.1;
}

/* ── Alert / Quick Request bar ───────────────────────────── */
.quick-bar {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}

/* ── Trust Signals ───────────────────────────────────────── */
.trust-strip {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}

.trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Number / editorial items ───────────────────────────── */
.editorial-num {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 300;
  font-style: italic;
  color: var(--stone-light);
  line-height: 1;
  user-select: none;
}

/* ── Portal / Dashboard ──────────────────────────────────── */
.portal-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--cream);
  border-right: 1px solid var(--border);
  padding: var(--sp-8) var(--sp-6);
  min-height: calc(100vh - var(--nav-h));
}

.portal-content {
  flex: 1;
  padding: var(--sp-8) var(--sp-10);
  overflow-y: auto;
}

/* ── Tabs ────────────────────────────────────────────────── */
.tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  gap: 0;
  overflow-x: auto;
}

.tab-btn {
  flex-shrink: 0;
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--dur-base);
}
.tab-btn.is-active {
  color: var(--charcoal);
  border-bottom-color: var(--charcoal);
}
.tab-btn:hover { color: var(--charcoal); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav__links { display: none; }
  .nav__request { display: none; }
  .nav__toggle { display: flex; }

  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-4);
  }

  .leg-row {
    grid-template-columns: 1fr 20px 1fr;
    gap: var(--sp-2);
    padding: var(--sp-4);
  }
  .leg-row__aircraft,
  .leg-row__date,
  .leg-row__pax,
  .leg-row__action { display: none; }
}

@media (max-width: 480px) {
  .trust-strip { gap: var(--sp-6); }
}

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .nav, .mobile-menu, .ticker { display: none; }
  body { font-size: 11pt; color: #000; background: #fff; }
}

/* Launch QA enhancements */
:focus-visible{outline:2px solid var(--gold);outline-offset:3px} .skip-link{position:absolute;left:-9999px;top:8px;z-index:999;background:#fff;color:#111;padding:8px 12px}.skip-link:focus{left:8px}@media(max-width:768px){.nav{padding:0 16px}.nav-logo span:last-child{display:none}.nav-r .nav-ghost{display:none}.nav-r{gap:8px}.nav-cta{padding:8px 12px}.hero{min-height:680px}.hero-body{padding-left:22px;padding-right:22px}.hbar{grid-template-columns:1fr 1fr}.hbar .hb{padding:14px}.hb-v{font-size:28px}}@media(prefers-reduced-motion:reduce){*,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}.rv{opacity:1!important;transform:none!important}}
