@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');
/*
  ╔══════════════════════════════════════════════════════════╗
  ║  AIRLY — COMPLETE STYLESHEET                             ║
  ║  This file fully replaces your original CSS.            ║
  ║                                                          ║
  ║  Add this to your HTML <head>:                           ║
  ║  <link href="https://fonts.googleapis.com/css2?          ║
  ║    family=DM+Sans:wght@300;400;500;600;700&              ║
  ║    family=DM+Mono:wght@400;500&                          ║
  ║    family=Playfair+Display:ital,wght@                    ║
  ║      0,700;0,900;1,700;1,900&display=swap"               ║
  ║    rel="stylesheet">                                     ║
  ╚══════════════════════════════════════════════════════════╝
*/


/* ═════════════════════════════════════════
   1. TOKENS
═════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --black:       #0f0f0e;
  --deep:        #161614;
  --charcoal:    #1e1e1c;
  --surface:     #252522;
  --border:      #2a2a28;
  --border2:     #363634;

  /* Gold ramp — brand colour #998772 */
  --tan:         #998772;
  --tan-lt:      #b8a892;
  --tan-mid:     #d4c9b8;
  --tan-tint:    #f2efe9;
  --tan-dim:     #7a6c5a;
  --tan-deep:    #5c5145;
  --tan-glow:    rgba(153,135,114,.06);

  /* Text */
  --white:       #f0ebe3;
  --white-d:     #b8b2aa;
  --muted:       #726e68;

  /* Status colours */
  --green:       #5a8f68;
  --green-tint:  #e8f5ee;
  --orange:      #e07820;
  --orange-dk:   #b85c00;
  --orange-tint: #fef3e8;
  --red:         #c0392b;
  --red-tint:    #fdf0ee;

  /* Charter accent */
  --slate:       #3d5a99;
  --slate-dk:    #2a3f6f;
  --slate-tint:  #f0f4ff;
}


/* ═════════════════════════════════════════
   2. RESET & BASE
═════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: .3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.container       { max-width: 1120px; margin: 0 auto; padding: 0 48px; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
.container--cta  { max-width: 1120px; margin: 0 auto; padding: 0 48px; }

img { display: block; width: 100%; }
a   { color: inherit; text-decoration: none; }


/* ═════════════════════════════════════════
   3. TYPOGRAPHY
═════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.04;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(52px, 7vw, 96px); font-weight: 900; }
h2 { font-size: clamp(32px, 4vw, 58px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.4vw, 30px); font-weight: 700; }

em { font-style: italic; color: var(--tan-lt); }

/* Eyebrow label — bumped from 10px to 12px */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--tan);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--tan);
  flex-shrink: 0;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.light  { color: rgba(240,235,227,.4); }
.eyebrow.light::before { background: rgba(240,235,227,.3); }

.rule { border: none; border-top: 1px solid var(--border); }


/* ═════════════════════════════════════════
   4. BUTTONS
═════════════════════════════════════════ */

/* Primary — bumped from 10px to 13px */
.btn-primary {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--tan);
  padding: 16px 32px;
  font-weight: 500;
  transition: background .2s;
  display: inline-block;
  border-radius: 0;
  cursor: pointer;
}
.btn-primary:hover { background: var(--tan-lt); }

/* Ghost — bumped from 10px to 13px */
.btn-ghost {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(240,235,227,.6);
  background: transparent;
  padding: 16px 28px;
  border: 1px solid rgba(240,235,227,.18);
  transition: border-color .2s, color .2s;
  display: inline-block;
  border-radius: 0;
  cursor: pointer;
}
.btn-ghost:hover { border-color: rgba(240,235,227,.5); color: var(--white); }


/* ═════════════════════════════════════════
   5. STATUS BADGES & FLIGHT TYPE PILLS
═════════════════════════════════════════ */

/* Base — bumped from 10px to 12px */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 0;
  padding: 5px 13px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.5;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.badge-dot.pulse-anim { animation: badgePulse 1.8s ease-in-out infinite; }
@keyframes badgePulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }

/* Booking status */
.badge--confirmed  { background: #1a2e22; color: #6abf85; }
.badge--confirmed  .badge-dot { background: var(--green); }

.badge--awaiting   { background: #2e1f0a; color: #e09040; }
.badge--awaiting   .badge-dot { background: var(--orange); }

.badge--cancelled  { background: #2e0f0f; color: #e06060; }
.badge--cancelled  .badge-dot { background: var(--red); }

.badge--completed  { background: var(--surface); color: var(--muted); border: 1px solid var(--border); }
.badge--completed  .badge-dot { background: var(--muted); }

/* Empty leg availability */
.badge--available  { background: rgba(153,135,114,.1); color: var(--tan-lt); border: 1px solid rgba(153,135,114,.2); }

.badge--departing  { background: #2e1f0a; color: #e09040; }
.badge--departing  .badge-dot { background: var(--orange); }

.badge--filling    { background: #2e0f0f; color: #e06060; }
.badge--filling    .badge-dot { background: var(--red); }

.badge--new        { background: var(--tan); color: var(--black); font-weight: 700; }

.badge--sold       { background: var(--surface); color: var(--muted); text-decoration: line-through; }

/* Flight type */
.badge--empty-leg  { background: rgba(153,135,114,.12); color: var(--tan-lt); border: 1px solid rgba(153,135,114,.25); }
.badge--charter    { background: rgba(61,90,153,.15); color: #8aa4e0; border: 1px solid rgba(61,90,153,.3); }
.badge--jet-card   { background: var(--charcoal); color: var(--tan); border: 1px solid var(--border2); }


/* ── YOUR ORIGINAL NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(28,28,26,.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 36px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { font-family: 'DM Mono',monospace; font-size: 13px; letter-spacing: .32em; text-transform: uppercase; color: var(--tan); font-weight: 500; text-decoration: none; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-family: 'DM Mono',monospace; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--tan); }
.nav-book { font-family: 'DM Mono',monospace; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--black); background: var(--tan); padding: 10px 20px; text-decoration: none; font-weight: 500; transition: background .2s; }
.nav-book:hover { background: var(--tan-lt); }
.nav-book.desktop-only {
    display: inline-block;
    font-family: 'DM Mono', monospace !important;
    font-size: 10px !important;
    letter-spacing: .15em !important;
    text-transform: uppercase;
    color: #000000 !important; /* Force Black text */
    background: #998772 !important; /* Airly Tan */
    padding: 12px 24px !important;
    text-decoration: none;
    font-weight: 500;
    transition: all .2s ease;
    border: none;
}
/* ─────────────────────────────────────────
   COMPLETE MOBILE NAVIGATION 
───────────────────────────────────────── */

/* 1. THE TOGGLE (HAMBURGER) */
.mobile-toggle {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    z-index: 100001 !important; /* Highest layer to ensure X stays visible */
    padding: 10px;
    height: 44px;
    width: 44px;
}

.mobile-toggle .line {
    width: 24px;
    height: 1.5px; /* Balanced thickness */
    background: #ffffff !important;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 2. THE OVERLAY (MENU SCREEN) */
.mobile-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: #1c1c1a !important; /* Solid Obsidian - No hero bleed */
    z-index: 100000 !important; /* Directly under the toggle */
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px !important;
    box-sizing: border-box;
    
    /* Animation Logic */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-overlay.is-active {
    opacity: 1 !important;
    visibility: visible !important;
}

/* 3. MENU CONTENT STYLING */
.mobile-nav-links a {
    font-family: 'Playfair Display', serif !important;
    font-size: 32px !important;
    font-weight: 700;
    color: #ffffff !important;
    text-decoration: none !important;
    display: block;
    margin-bottom: 25px;
    line-height: 1.2;
}

.mobile-nav-links a span {
    font-family: 'DM Mono', monospace !important;
    font-size: 10px;
    color: #998772 !important;
    display: block;
    letter-spacing: 0.3em;
    margin-bottom: 8px;
    opacity: 0.8;
}

/* 4. THE FOOTER CTA (BOOK NOW) */
.mobile-menu-footer .nav-book {
    display: block !important;
    width: 100%;
    text-align: center;
    background: #998772 !important;
    color: #000000 !important;
    padding: 20px !important;
    font-family: 'DM Mono', monospace !important;
    font-size: 11px;
    letter-spacing: 0.2em;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}

/* 5. ACTIVE STATE (THE X ANIMATION) */
.mobile-toggle.is-active .line:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}
.mobile-toggle.is-active .line:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
}

/* 6. THE BREAKPOINT HANDOVER */
@media (max-width: 960px) {
    /* Hide Desktop Clutter */
    .desktop-only, 
    .nav-links:not(.mobile-nav-links), 
    nav > .nav-book { 
        display: none !important; 
    }

    /* Force Nav Bar Layout */
    nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        background: rgba(28, 28, 26, 0.95) !important;
        height: 70px !important;
        padding: 0 25px !important;
        border-bottom: 1px solid var(--border);
    }

    .mobile-toggle {
        display: flex !important;
    }
}
/* ═════════════════════════════════════════
   7. HERO
═════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #1a1a18;
  /* background-image: url('YOUR-HERO-IMAGE.jpg');
     background-size: cover;
     background-position: center 30%; */
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top,  rgba(15,15,14,1) 0%, rgba(15,15,14,.7) 28%, transparent 55%),
    linear-gradient(to right, rgba(15,15,14,.6) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(15,15,14,.55) 0%, transparent 22%);
}

.hero-placeholder-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8%;
  opacity: .12;
}
.hero-placeholder-art svg { width: min(60%, 700px); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
}

/* Hero badge — bumped from 10px to 13px */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(240,235,227,.55);
  margin-bottom: 28px;
}
.pulse {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.35; transform:scale(.8); } }

.hero-h1 {
  font-size: clamp(54px, 7.5vw, 104px);
  font-weight: 900;
  line-height: .97;
  letter-spacing: -.03em;
  margin-bottom: 36px;
  max-width: 720px;
}

.hero-sub-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-descriptor {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--white-d);
  line-height: 1.7;
  max-width: 400px;
  font-weight: 300;
}
.hero-ctas { display: flex; gap: 12px; flex-shrink: 0; }

.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(153,135,114,.8), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop { 0%,100% { transform:scaleY(1); opacity:.8; } 50% { transform:scaleY(.5); opacity:.3; } }

.hero-photo-note {
  position: absolute;
  bottom: 24px;
  right: 48px;
  z-index: 3;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  color: rgba(240,235,227,.2);
  text-transform: uppercase;
}



/* ═════════════════════════════════════════
   14. EMPTY LEG CARD  (new component)
═════════════════════════════════════════ */
.empty-leg-card {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .2s, background .2s;
}
.empty-leg-card:hover {
  background: var(--surface);
  border-color: rgba(153,135,114,.35);
}

.elc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.elc-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.elc-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}

.elc-route {
  display: flex;
  align-items: center;
  gap: 16px;
}
.elc-iata {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1;
}

/* City name under IATA — bumped from 9px to 12px */
.elc-city {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.elc-arrow { flex: 1; display: flex; align-items: center; gap: 8px; padding: 0 4px; }
.elc-arrow-line { flex: 1; height: 1px; background: var(--border2); }

.elc-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Meta label — bumped from 9px to 12px */
.elc-meta-item {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.elc-meta-item strong {
  display: block;
  color: var(--white-d);
  font-weight: 400;
  margin-top: 3px;
  font-size: 13px;
}

/* Book button — bumped from 10px to 13px */
.elc-book {
  width: 100%;
  background: var(--tan);
  color: var(--black);
  border: none;
  padding: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  border-radius: 0;
}
.elc-book:hover { background: var(--tan-lt); }


/* ═════════════════════════════════════════
   15. CTA BANNER
═════════════════════════════════════════ */
#cta-banner {
  position: relative;
  background: var(--deep);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}

.cta-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: var(--white);
}
.cta-heading em { font-style: italic; color: var(--tan-lt); }

/* CTA sub — bumped from 10px to 13px */
.cta-sub {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(240,235,227,.4);
  margin-bottom: 48px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 72px;
}
#cta-banner .cta-actions a,
#cta-banner .cta-actions a.btn-primary-cta,
#cta-banner .cta-actions a.btn-ghost-cta {
  line-height: 1 !important;
  vertical-align: middle !important;
}
/* CTA primary — bumped from 10px to 13px */
.btn-primary-cta {
  background: var(--tan);
  color: var(--black);
  padding: 18px 36px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0;
  transition: background .2s;
	display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-primary-cta:hover { background: var(--tan-lt); }

/* CTA ghost — bumped from 10px to 13px */
.btn-ghost-cta {
  border: 1px solid rgba(240,235,227,.2);
  color: rgba(240,235,227,.6);
  padding: 18px 36px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all .3s ease;
	display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-ghost-cta:hover { border-color: var(--white); color: var(--white); }

.cta-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding-top: 52px;
  border-top: 1px solid var(--border);
}

.cta-contact-item { text-align: center; }

/* Contact label — bumped from 9px to 12px */
.cta-contact-label {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

/* Contact value — bumped from 14px to 16px */
.cta-contact-value {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  color: var(--tan);
  text-decoration: none;
}

.cta-v-line { width: 1px; height: 40px; background: var(--border); }

#cta-banner .eyebrow { color: rgba(240,235,227,.8); justify-content: center; }
#cta-banner .eyebrow::before { display: none; }


/* ═════════════════════════════════════════
   16. FOOTER
═════════════════════════════════════════ */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
}

/* Footer logo — bumped from 15px to 16px */
.footer-logo {
  font-family: 'DM Mono', monospace;
  font-size: 16px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 500;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 240px;
}

/* Footer col heading — bumped from 9px to 12px */
.footer-col-head {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--tan);
  margin-bottom: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }

/* Footer links — bumped from 13px to 15px */
.footer-links a {
  font-size: 15px;
  color: var(--muted);
  transition: color .2s;
}
.footer-links a:hover { color: var(--white-d); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Footer legal — bumped from 9px to 12px */
.footer-legal {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
}

.footer-book {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--tan);
  padding: 11px 22px;
  font-weight: 500;
  transition: background .2s;
  white-space: nowrap;
  border-radius: 0;
}
.footer-book:hover { background: var(--tan-lt); }

/* Footer bottom bar */
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding: 40px 0;
  margin-top: 60px;
  gap: 40px;
}

/* Footer legal text — bumped from 9px to 12px */
.footer-legal-text {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: .04em;
  color: var(--muted);
  max-width: 800px;
}

.footer-cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--tan);
  color: var(--black);
  padding: 18px 24px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  min-width: 120px;
  transition: background .3s ease;
  flex-shrink: 0;
  border-radius: 0;
}
.footer-cta-box:hover { background-color: var(--tan-lt); }
/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .spec-bar { grid-template-columns: 1fr 1fr; }
    .tech-grid, .cabin-gallery-row, .map-grid { grid-template-columns: 1fr; gap: 40px; }
    .gallery-item { aspect-ratio: 16/9; }
    .floorplan-full-width { padding: 60px 0 !important; }
}
/* ═════════════════════════════════════════
   17. ANIMATIONS
═════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .8s ease forwards; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .28s; }
.d3 { animation-delay: .46s; }
.d4 { animation-delay: .64s; }


/* ═════════════════════════════════════════
   18. RESPONSIVE
═════════════════════════════════════════ */
@media (max-width: 960px) {
  .container, .container--wide, .container--cta { padding: 0 28px; }
  nav { padding: 0 28px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 28px 64px; }
  .hero-sub-row { flex-direction: column; align-items: flex-start; gap: 28px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .programs-header { grid-template-columns: 1fr; gap: 24px; }
  .programs-grid { grid-template-columns: 1fr; }
  .scene { grid-template-columns: 1fr; direction: ltr !important; }
  .scene:nth-child(even) > * { direction: ltr; }
  .scene-photo { min-height: 320px; }
  .scene-photo-overlay { display: none; }
  .scene-copy { padding: 48px 28px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .routes-grid { grid-template-columns: 1fr; }
  .proof-header { grid-template-columns: 1fr; gap: 24px; }
  .quotes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom-bar { flex-direction: column; align-items: flex-start; gap: 30px; }
  .cta-divider { flex-direction: column; gap: 24px; }
  .cta-v-line { display: none; }
  .cta-actions { flex-direction: column; }
}
/* ─────────────────────────────────────────
   MOBILE — max-width 768px
───────────────────────────────────────── */
@media (max-width: 768px) {

  /* HERO */
  .hero-content {
    padding: 0 20px 48px !important;
  }
  .hero-h1,
  #hero h1 {
    font-size: clamp(38px, 10vw, 56px) !important;
    margin-bottom: 24px !important;
  }
  .hero-sub-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .hero-descriptor {
    font-size: 15px !important;
    max-width: 100% !important;
  }
  .hero-ctas {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100% !important;
    margin-top: 20px !important;
  }
  .hero-ctas a,
  .hero-ctas .btn-primary,
  .hero-ctas .btn-ghost {
    flex: 1 1 auto !important;
    min-width: 140px !important;
    height: 44px !important;
    padding: 0 20px !important;
    font-size: 11px !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* STATS */
  .stats-inner {
    grid-template-columns: 1fr 1fr !important;
  }
  .stat-item {
    padding: 28px 20px !important;
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border) !important;
  }
  .stat-item:nth-last-child(-n+2) {
    border-bottom: none !important;
  }
  .stat-n {
    font-size: 36px !important;
  }
  .stat-label {
    font-size: 10px !important;
    letter-spacing: 0.12em !important;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 20px !important;
  }
  .footer-grid > div:first-child {
    grid-column: 1 / -1 !important;
  }
  .footer-tagline {
    max-width: 100% !important;
    font-size: 13px !important;
  }
  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .footer-bottom-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
    padding: 28px 0 !important;
  }
  .footer-legal-text {
    font-size: 11px !important;
  }
  .footer-cta-box {
    width: 100% !important;
    text-align: center !important;
  }

  /* CONTAINER padding */
  .container,
  .container--wide,
  .container--cta {
    padding: 0 20px !important;
  }
	.footer-grid {
    /* This forces the 4 columns into 1 or 2 depending on your preference */
    grid-template-columns: 1fr !important; 
    gap: 40px !important;
  }

}