/* ============================================
   GUNFIGHTER SKIES 2026 — BRIGHT SKY v3
   Clean, cohesive, family-friendly, readable
   WCAG 2.1 Level AA compliant
   ============================================ */

:root {
  /* Backgrounds — every section gets a solid, opaque bg */
  --bg-white: #FFFFFF;
  --bg-cream: #F7F9FC;
  --bg-light: #EEF2F8;
  --bg-hero: #0C1A2E;

  /* Accents */
  --blue: #1B5EB5;
  --blue-light: #2E7DE8;
  --blue-pale: #E8F1FD;
  --blue-glow: rgba(27, 94, 181, 0.10);
  --orange: #E45A1F;
  --orange-light: #F2763F;
  --orange-pale: #FEF0EA;
  --gold: #EFA41B;
  --sky: #5CB8E4;
  --sky-light: #B2DFF5;

  /* Text — all pass WCAG AA 4.5:1 on their intended backgrounds */
  --ink: #152035;
  --ink-secondary: #3D4F6A;
  --ink-muted: #5C7588;          /* darkened from #7B8BA3 for 4.5:1 on white/cream */
  --ink-on-dark: #F0F3F7;
  --ink-on-dark-muted: #98ADCA;

  /* Borders & shadows */
  --border: #DAE1EB;
  --border-light: #EDF0F5;
  --shadow-sm: 0 1px 4px rgba(21, 32, 53, 0.06);
  --shadow-md: 0 6px 20px rgba(21, 32, 53, 0.08);
  --shadow-lg: 0 16px 48px rgba(21, 32, 53, 0.10);

  /* Layout */
  --nav-h: 68px;
  --section-py: 96px;
  --radius: 12px;
  --radius-sm: 8px;

  /* Type */
  --f-head: 'Bebas Neue', Impact, sans-serif;
  --f-sub: 'Rajdhani', 'Barlow Condensed', sans-serif;
  --f-body: 'Inter', 'Source Sans 3', sans-serif;
  --f-mono: 'Share Tech Mono', 'JetBrains Mono', monospace;

  /* Focus */
  --focus-color: #E45A1F;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--f-body);
  background: var(--bg-cream);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange); }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--f-head);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .03em;
}

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

/* ---- Accessibility utilities ---- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  padding: 12px 24px;
  z-index: 10000;
  font-family: var(--f-sub);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  box-shadow: var(--shadow-md);
  transition: top .2s;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
  color: #fff;
}

/* ---- Global focus indicator ---- */
*:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
}
/* Form inputs use their own visible focus treatment */
.form-group input:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 2px;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-checkbox input:focus-visible {
  outline: 2px solid var(--focus-color);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-heading {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

.section-desc {
  font-family: var(--f-sub);
  font-size: 1.1rem;
  color: var(--ink-secondary);
  max-width: 580px;
  font-weight: 400;
  line-height: 1.55;
}

.accent-bar {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky), var(--orange), var(--blue));
  background-size: 300% 100%;
  animation: accentSlide 4s ease infinite;
  border-radius: 2px;
  margin: 20px 0 28px;
}

.sec-pad { padding: var(--section-py) 0; position: relative; z-index: 1; overflow: hidden; }

/* ---- Mission theme: section numbers (watermark) ---- */
.sec-numbered { position: relative; }
.sec-num {
  position: absolute; top: 30px; right: 24px;
  font-family: var(--f-mono); font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700; color: rgba(255, 122, 26, 0.06);
  line-height: 1; pointer-events: none; user-select: none; z-index: 0;
}

/* ---- Mission theme: section tag with number ---- */
.section-tag {
  font-family: var(--f-mono);
  font-size: .72rem;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .25em;
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 8px;
}

/* ---- Mission theme: form hint text ---- */
.form-hint {
  color: var(--ink-muted); text-transform: none; letter-spacing: 0;
  font-weight: 400; font-size: .75rem;
}

/* ---- Reveal ---- */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: none; }

.reveal-left { opacity: 0; transform: translateX(-40px); transition: all .75s cubic-bezier(.16,1,.3,1); }
.reveal-left.visible { opacity: 1; transform: none; }

.reveal-right { opacity: 0; transform: translateX(40px); transition: all .75s cubic-bezier(.16,1,.3,1); }
.reveal-right.visible { opacity: 1; transform: none; }

.stagger > * { transition-delay: calc(var(--i,0) * .1s); }

/* ==========================================================
   DRAFT BANNER
   ========================================================== */
.draft-banner {
  background: #1A2538;
  border-bottom: 2px solid var(--orange);
  padding: 12px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
  position: relative; z-index: 1001;
}
.draft-banner.dismissed { display: none; }

.draft-banner__badge {
  font-family: var(--f-mono); font-size: .7rem; text-transform: uppercase;
  letter-spacing: .2em; color: #fff; background: #C44E18;
  padding: 3px 10px; font-weight: 700; flex-shrink: 0;
}
.draft-banner__text {
  font-size: .8rem; color: var(--ink-on-dark-muted); text-align: center; line-height: 1.5;
}
.draft-banner__text strong { color: var(--ink-on-dark); }
.draft-banner__text a { color: var(--sky-light); font-weight: 600; }
.draft-banner__close {
  background: none; border: 1px solid rgba(255,255,255,.15); color: var(--ink-on-dark-muted);
  cursor: pointer; font-size: 1rem; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: .2s; line-height: 1;
}
.draft-banner__close:hover { border-color: var(--orange); color: #fff; }

/* ==========================================================
   NAVIGATION
   ========================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 1000;
  background: rgba(12,26,46,.25);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  transition: all .35s;
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border-light);
}
.nav.scrolled .nav__logo-text { color: var(--ink); }
.nav.scrolled .nav__logo-text span { color: var(--blue); }
.nav.scrolled .nav__links a { color: var(--ink-secondary); }
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active { color: var(--blue); }
.nav.scrolled .nav__links a::after { background: var(--blue); }
.nav.scrolled .nav__hamburger span { background: var(--ink); }

.nav__inner {
  max-width: 1300px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav__logo-emblem { width: 32px; height: 32px; }
.nav__logo-emblem svg { width: 100%; height: 100%; }
.nav__logo-text {
  font-family: var(--f-head); font-size: 1.25rem;
  color: var(--ink-on-dark); letter-spacing: .08em; transition: color .35s;
}
.nav__logo-text span { color: var(--sky-light); transition: color .35s; }

.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a {
  font-family: var(--f-sub); font-size: .85rem; font-weight: 600;
  color: rgba(255,255,255,.7); text-transform: uppercase;
  letter-spacing: .1em; text-decoration: none; position: relative; padding: 3px 0; transition: color .25s;
}
.nav__links a::after {
  content:''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--sky-light); transition: width .3s;
}
.nav__links a:hover, .nav__links a.active { color: #fff; }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; z-index: 1002;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink-on-dark); transition: all .3s; transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile-overlay {
  position: fixed; inset: 0; background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px); z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .4s;
}
.nav__mobile-overlay.open { opacity: 1; visibility: visible; }
.nav__mobile-links { list-style: none; text-align: center; display: flex; flex-direction: column; gap: 24px; }
.nav__mobile-links a {
  font-family: var(--f-head); font-size: 2rem; color: var(--ink);
  text-decoration: none; letter-spacing: .06em; transition: color .2s;
}
.nav__mobile-links a:hover { color: var(--blue); }

/* ==========================================================
   HERO — dark, dramatic, cinematic  (v4 overhaul)
   ========================================================== */

/* --- Amber accent: #FF7A1A passes AA on dark overlays (5.2:1) --- */
/* --- Hero secondary text: #A0AAB8 on dark panel (6.8:1 — AA compliant) --- */

.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  overflow: hidden; padding-top: var(--nav-h); background: var(--bg-hero);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg-fallback {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(180deg, #0B0E14 0%, #0F1A2E 40%, #1A0F05 100%);
}
.hero__bg picture { position: absolute; inset: 0; z-index: 1; display: block; width: 100%; height: 100%; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__bg-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg,
    rgba(11,14,20,.7) 0%,
    rgba(11,14,20,.35) 30%,
    rgba(11,14,20,.3) 50%,
    rgba(11,14,20,.55) 70%,
    rgba(11,14,20,.88) 90%,
    var(--bg-cream) 100%);
}

/* --- Hero content wrapper --- */
.hero__content {
  position: relative; z-index: 5; text-align: center;
  padding: 32px 20px 40px; max-width: 1100px; width: 100%;
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
}

/* --- Wing presents badge --- */
.hero__badge-wing {
  display: inline-block;
  font-family: 'Rajdhani', var(--f-sub);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .3em; text-transform: uppercase;
  color: #FF7A1A;
  border: 1px solid rgba(255,122,26,.35);
  padding: 6px 20px;
  margin-bottom: 16px;
  background: rgba(255,122,26,.06);
  border-radius: 100px;
  text-shadow: 0 0 20px rgba(255,122,26,.3);
}

/* --- Title wordmark --- */
.hero__wordmark {
  line-height: 1; margin-bottom: 0;
}
.hero__wordmark-main {
  font-family: 'Bebas Neue', var(--f-head);
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: .88; letter-spacing: .06em;
  color: #E8E8EC;
  text-shadow: 0 2px 40px rgba(0,0,0,.4), 0 0 80px rgba(255,122,26,.1);
  display: block;
}
.hero__wordmark-accent {
  font-family: 'Bebas Neue', var(--f-head);
  font-size: clamp(4.5rem, 14vw, 11rem);
  line-height: .88; letter-spacing: .06em;
  color: #FF7A1A;
  text-shadow: 0 2px 40px rgba(255,122,26,.3), 0 0 80px rgba(255,122,26,.15);
  display: block;
}
.hero__wordmark-year {
  font-family: var(--f-mono);
  font-size: clamp(0.9rem, 2.5vw, 1.3rem);
  color: rgba(78,202,255,0.5);
  letter-spacing: .5em; line-height: 1;
  display: block; margin-top: 10px;
}

/* --- Event details --- */
.hero__event-info {
  font-family: var(--f-sub); font-size: clamp(.78rem, 1.8vw, 1rem);
  color: #C0C8D4; letter-spacing: .25em;
  text-transform: uppercase; margin: 16px 0 28px; font-weight: 600;
}
.hero__event-info .sep {
  margin: 0 10px; opacity: .5;
}

/* --- Glass sell panel (Zone 3) --- */
.hero__sell-panel {
  width: 100%; max-width: 1060px;
  background: rgba(10, 14, 20, 0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 28px 32px 32px;
  margin-top: 4px;
}

/* --- Free admission banner --- */
.hero__free-banner {
  display: flex; align-items: center; gap: 20px;
  background: rgba(255,122,26,.1);
  border: 2px solid rgba(255,122,26,.4);
  border-radius: 10px; padding: 18px 24px;
  margin-bottom: 24px;
}
.hero__free-badge {
  flex-shrink: 0; width: 64px; height: 64px; color: #FF7A1A;
  filter: drop-shadow(0 0 12px rgba(255,122,26,0.4));
}
.hero__free-shield { width: 100%; height: 100%; }
.hero__free-text {
  text-align: left;
}
.hero__free-text strong {
  display: block;
  font-family: var(--f-head); font-size: 1.2rem; font-weight: 700;
  color: #FF7A1A; letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 0 20px rgba(255,122,26,0.3);
}
.hero__free-text span {
  font-size: .88rem; color: #A0A8B8; line-height: 1.5;
}

/* --- Value proposition cards --- */
.hero__value-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 28px;
}
.hero__value-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; padding: 20px 16px;
  text-align: center; transition: all .3s;
}
.hero__value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,122,26,.4);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
}
.hero__value-icon {
  width: 36px; height: 36px; margin: 0 auto 10px;
  color: #FF7A1A;
}
.hero__value-icon svg { width: 100%; height: 100%; }
.hero__value-title {
  font-family: var(--f-head); font-size: 1.1rem;
  color: #E8E8EC; letter-spacing: .04em; margin-bottom: 6px;
}
.hero__value-card p {
  font-size: .8rem; color: #A0AAB8; line-height: 1.5;
}

/* --- Hero CTAs --- */
.hero__ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Buttons (v4) */
.btn {
  font-family: var(--f-sub); font-size: .88rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; padding: 14px 32px;
  border: none; cursor: pointer; transition: all .3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; border-radius: 6px;
  min-height: 48px;
}
.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff; box-shadow: 0 4px 14px rgba(27,94,181,.3);
}
.btn--primary:hover { box-shadow: 0 6px 22px rgba(27,94,181,.4); transform: translateY(-2px); color: #fff; }
.btn--amber {
  background: linear-gradient(135deg, #FF6B00, #FF8533);
  color: #0B0E14; box-shadow: 0 4px 18px rgba(255,107,0,.35);
  font-weight: 700;
  animation: ctaPulseAmber 2.5s ease-in-out infinite;
}
.btn--amber:hover { box-shadow: 0 6px 28px rgba(255,107,0,.5); transform: translateY(-2px); color: #0B0E14; }
.btn--warm {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff; box-shadow: 0 4px 14px rgba(228,90,31,.3);
}
.btn--warm:hover { box-shadow: 0 6px 22px rgba(228,90,31,.4); transform: translateY(-2px); color: #fff; }
.btn--outline-white {
  background: transparent; color: #E8E8EC; border: 1px solid rgba(255,255,255,.3);
}
.btn--outline-white:hover { border-color: #4ECAFF; color: #4ECAFF; background: rgba(78,202,255,.06); transform: translateY(-2px); }

/* --- Countdown (inside panel) --- */
.hero__countdown { text-align: center; }
.hero__countdown-label {
  font-family: var(--f-mono); font-size: .7rem; color: #A0AAB8;
  text-transform: uppercase; letter-spacing: .35em; margin-bottom: 12px;
}
.hero__countdown-timer { display: flex; align-items: center; justify-content: center; gap: 6px; }
.cd-block { display: flex; flex-direction: column; align-items: center; min-width: 64px; }
.cd-val {
  font-family: var(--f-mono); font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: #FF7A1A;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,122,26,.15);
  padding: 8px 12px; min-width: 68px; text-align: center;
  border-radius: 6px; transition: transform .15s;
}
.cd-label {
  font-family: var(--f-mono); font-size: .6rem; color: #A0AAB8;
  text-transform: uppercase; letter-spacing: .2em; margin-top: 5px;
}
.cd-sep { font-family: var(--f-mono); font-size: 1.5rem; color: rgba(255,122,26,.4); margin-bottom: 16px; }

/* Scroll indicator removed */

/* --- Hero entry animations --- */
.hero-anim__el {
  opacity: 0; transform: translateY(20px);
}
.hero-anim__el[data-anim-dir="left"] { transform: translateX(-30px); }
.hero-anim__el[data-anim-dir="right"] { transform: translateX(30px); }

.hero-anim__el.anim-in {
  opacity: 1; transform: none;
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
.hero__sell-panel.anim-in {
  transition-duration: .7s;
}

/* ==========================================================
   "EXPERIENCE" — family fun section
   ========================================================== */
#experience { background: var(--bg-white); }

.exp__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 24px;
  padding-top: 8px;
}
.exp-card {
  position: relative; border-radius: var(--radius); overflow: visible;
  background: var(--bg-cream); border: 2px solid #FF7A1A;
  box-shadow: 0 6px 24px rgba(255,122,26,0.14), 0 3px 10px rgba(0,0,0,0.08);
  transition: all .35s;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(92,184,228,.18), 0 4px 12px rgba(21,32,53,.08); }
.exp-card__img {
  height: 220px; overflow: hidden;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
}
.exp-card__img picture, .exp-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.exp-card:hover .exp-card__img img { transform: scale(1.05); }
.exp-card__body { padding: 24px; }
.exp-card__title {
  font-family: var(--f-head); font-size: 1.5rem; color: var(--ink);
  letter-spacing: .03em; margin-bottom: 8px;
}
.exp-card__text { font-size: .9rem; color: var(--ink-secondary); line-height: 1.65; }

/* ==========================================================
   ABOUT — the Gunfighters story
   ========================================================== */
#about { background: var(--bg-cream); }

.about__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: stretch; }

.about__text p { color: var(--ink-secondary); margin-bottom: 14px; font-size: 1.02rem; line-height: 1.7; }
.about__text p strong { color: var(--ink); }

.about__text {
  position: relative; background: var(--bg-white);
  border: 2px solid #FF7A1A; border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 6px 24px rgba(255,122,26,0.14), 0 3px 10px rgba(0,0,0,0.08);
}
.about__heritage {
  margin-top: 20px; padding: 20px 24px;
  border-left: 3px solid #FF7A1A; background: rgba(255,122,26,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.about__heritage p { font-size: .93rem; color: var(--ink-secondary); line-height: 1.7; font-style: italic; margin: 0; }

.stat-card {
  background: var(--bg-white); border: 2px solid #FF7A1A;
  padding: 28px 20px; text-align: center; border-radius: var(--radius-sm);
  box-shadow: 0 6px 24px rgba(255,122,26,0.14), 0 3px 10px rgba(0,0,0,0.08);
  transition: all .35s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card__num {
  font-family: var(--f-head); font-size: 3.2rem; color: #FF7A1A;
  line-height: 1; margin-bottom: 6px;
}
.stat-card__label {
  font-family: var(--f-mono); font-size: .65rem; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: .25em;
}

/* ==========================================================
   SCHEDULE
   ========================================================== */
#schedule { background: var(--bg-white); }

/* Dossier wrapper */
.schedule__dossier { position: relative; }

/* Filing tabs row — match dossier-tab style (dark bg, light text) */
.schedule__tabs { display: flex; gap: 4px; flex-wrap: wrap; padding-left: 16px; }
.schedule__tab {
  font-family: var(--f-mono); font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 22px 8px; background: rgba(21,32,53,0.7); border: none;
  border-bottom: none;
  color: rgba(255,255,255,0.75); cursor: pointer; transition: all .25s;
  border-radius: 4px 4px 0 0;
  position: relative; bottom: -2px; z-index: 1;
}
.schedule__tab:hover { color: #E8E8EC; background: var(--ink); }
.schedule__tab.active,
.schedule__tab[aria-selected="true"] {
  background: var(--ink); color: #FF7A1A;
  box-shadow: 0 -2px 8px rgba(255,122,26,0.1);
  z-index: 3;
}

/* Dossier card body */
.schedule__card {
  background: var(--bg-white); border: 2px solid #FF7A1A;
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 6px 24px rgba(255,122,26,0.14), 0 3px 10px rgba(0,0,0,0.08);
  position: relative; z-index: 2;
}
.schedule__card-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,122,26,0.15);
}
.schedule__card-label {
  font-family: var(--f-mono); font-size: .6rem; color: #FF7A1A;
  letter-spacing: .15em; text-transform: uppercase;
}
.schedule__tz {
  color: var(--ink-muted); font-weight: 400; letter-spacing: .08em;
}

.schedule__day { display: none; }
.schedule__day.active { display: block; }

.schedule__item {
  display: flex; align-items: baseline; gap: 20px;
  padding: 14px 16px; border-bottom: 1px solid var(--border-light); transition: all .2s;
}
.schedule__item:last-child { border-bottom: none; }
.schedule__item:hover { background: rgba(255,122,26,0.04); border-radius: 6px; }

.schedule__time {
  font-family: var(--f-mono); font-size: .92rem; color: var(--ink);
  flex-shrink: 0; min-width: 80px; font-weight: 700;
  background: rgba(255,122,26,0.08); padding: 4px 10px;
  border-radius: 4px; text-align: center;
}
.schedule__event {
  font-family: var(--f-sub); font-size: 1.02rem; color: var(--ink);
  font-weight: 500; letter-spacing: .01em;
}

/* Flight labels — hidden per user feedback */

/* AM/PM toggle */
.schedule__time-toggle {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-mono); font-size: .68rem;
  color: var(--ink-muted); letter-spacing: .06em;
}
.schedule__time-toggle-label {
  text-transform: uppercase; cursor: pointer;
  padding: 4px 8px; border-radius: 4px; transition: all .2s;
}
.schedule__time-toggle-label--active {
  color: var(--ink); font-weight: 700;
  background: rgba(255,122,26,0.1);
}
.toggle-switch {
  position: relative; display: inline-block; width: 40px; height: 22px;
  background: var(--border); border: none; border-radius: 11px;
  cursor: pointer; transition: background .25s; flex-shrink: 0;
  padding: 0; vertical-align: middle;
}
.toggle-switch.active { background: #FF7A1A; }
.toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 16px; height: 16px; background: #fff;
  border-radius: 50%; transition: transform .25s;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-switch.active::after { transform: translateX(18px); }

.schedule__note {
  font-size: .78rem; color: var(--ink-muted); font-style: italic;
  margin-top: 24px; padding: 14px; border: 1px solid rgba(255,122,26,0.15);
  border-radius: var(--radius-sm); background: rgba(255,122,26,0.03);
}
.schedule__download {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,122,26,0.15);
}
.schedule__download-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-sub); font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); padding: 10px 20px;
  border: 2px solid #FF7A1A; border-radius: 6px;
  text-decoration: none; transition: all .25s;
  cursor: default; opacity: 0.55;
}
.schedule__download-btn svg { color: #FF7A1A; }
.schedule__download-note {
  font-family: var(--f-mono); font-size: .62rem;
  color: var(--ink-muted); letter-spacing: .05em; font-style: italic;
}

/* ==========================================================
   AIRCRAFT
   ========================================================== */
#aircraft { background: var(--bg-cream); }

.aircraft__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 44px 24px; padding-top: 16px; margin-top: 12px; }

.aircraft-card {
  position: relative; background: var(--bg-white); border: 2px solid #FF7A1A;
  overflow: visible; transition: all .35s; border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(255,122,26,0.14), 0 3px 10px rgba(0,0,0,0.08);
}
.aircraft-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(92,184,228,.18), 0 4px 12px rgba(21,32,53,.08); }

.aircraft-card__img {
  height: 190px; background: var(--bg-light);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
}
.aircraft-card__img picture, .aircraft-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.aircraft-card:hover .aircraft-card__img img { transform: scale(1.05); }
.aircraft-card__img-ph { font-family: var(--f-mono); font-size: 2.5rem; color: var(--border); }

.aircraft-card__body { padding: 22px; }
.aircraft-card__tag {
  position: absolute; top: 0; left: 16px; transform: translateY(-100%);
  font-family: var(--f-mono); font-size: .6rem; font-weight: 700;
  color: #E8E8EC; background: var(--ink);
  padding: 6px 14px 5px; border-radius: 4px 4px 0 0;
  letter-spacing: .15em; text-transform: uppercase;
  white-space: nowrap; z-index: 2; line-height: 1;
}
.aircraft-card__name {
  font-family: var(--f-head); font-size: 1.5rem; color: var(--ink);
  margin-bottom: 8px; letter-spacing: .03em;
}
.aircraft-card__desc { font-size: .88rem; color: var(--ink-secondary); line-height: 1.6; }

.aircraft__note { font-size: .78rem; color: var(--ink-muted); font-style: italic; margin-top: 28px; text-align: center; }

/* ==========================================================
   PLAN YOUR VISIT
   ========================================================== */
#visit { background: var(--bg-white); }

.visit__map {
  width: 100%; height: 280px; background: var(--bg-light);
  border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 40px; overflow: hidden; position: relative;
}
.visit__map iframe { width: 100%; height: 100%; border: none; filter: saturate(.85) brightness(1.05); }
.visit__map-fallback {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  color: var(--ink-muted); font-family: var(--f-mono); font-size: .78rem;
}

.visit__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: 44px 20px; padding-top: 8px; }

.visit-card {
  position: relative; background: var(--bg-cream); border: 2px solid #FF7A1A;
  padding: 24px; border-radius: var(--radius-sm); transition: all .3s;
  box-shadow: 0 6px 24px rgba(255,122,26,0.14), 0 3px 10px rgba(0,0,0,0.08);
  overflow: visible;
}
.visit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Mission Dossier: shared filing-tab style */
.dossier-tab {
  position: absolute; top: 0; left: 16px; transform: translateY(-100%);
  font-family: var(--f-mono); font-size: .6rem; font-weight: 700;
  color: #E8E8EC; background: var(--ink);
  padding: 6px 14px 5px; border-radius: 4px 4px 0 0;
  letter-spacing: .15em; text-transform: uppercase;
  white-space: nowrap; z-index: 2; line-height: 1;
}
.visit-card__title {
  font-family: var(--f-head); font-size: 1.25rem; color: var(--ink);
  letter-spacing: .03em; margin-bottom: 6px;
}
.visit-card__text { font-size: .88rem; color: var(--ink-secondary); line-height: 1.65; }

/* Mission Kit checklist */
.visit-card__checklist {
  list-style: none; padding: 0; margin: 0;
  font-size: .85rem; color: var(--ink-secondary); line-height: 1.65;
}
.visit-card__checklist li {
  padding: 3px 0 3px 24px; position: relative;
}
.visit-card__checklist li::before {
  content: '—'; position: absolute; left: 0; top: 3px;
  font-family: var(--f-mono); font-size: .75rem;
  color: #FF7A1A; font-weight: 700;
}

/* ==========================================================
   ALERT SIGNUP
   ========================================================== */
#alerts { background: var(--bg-cream); }

.alerts__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.alerts__text p { color: var(--ink-secondary); font-size: 1.02rem; line-height: 1.7; margin-bottom: 14px; }

.alerts__socials { margin-top: 28px; }
.alerts__socials-label {
  font-family: var(--f-mono); font-size: .68rem; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 12px;
}
.alerts__socials-links { display: flex; flex-wrap: wrap; gap: 10px; }
.alerts__social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border: 2px solid #FF7A1A;
  border-radius: 6px; font-family: var(--f-sub); font-size: .78rem;
  font-weight: 600; color: var(--ink); letter-spacing: .04em;
  transition: all .25s; text-decoration: none;
}
.alerts__social-link svg { color: #FF7A1A; transition: color .25s; }
.alerts__social-link:hover {
  background: #FF7A1A; color: #fff; transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,122,26,0.2);
}
.alerts__social-link:hover svg { color: #fff; }

.alerts__form {
  background: var(--bg-white); border: 2px solid #FF7A1A;
  padding: 36px; border-radius: var(--radius);
  box-shadow: 0 6px 24px rgba(255,122,26,0.14), 0 3px 10px rgba(0,0,0,0.08);
}
.alerts__form-header {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--f-mono); font-size: .6rem;
  color: #FF7A1A; letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,122,26,0.2);
}
.alerts__form-status { color: #16A34A; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-family: var(--f-sub); font-size: .78rem; font-weight: 600;
  color: var(--ink-secondary); text-transform: uppercase;
  letter-spacing: .1em; margin-bottom: 5px;
}
.form-optional { color: var(--ink-muted); text-transform: none; letter-spacing: 0; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  width: 100%; padding: 11px 14px; background: var(--bg-cream);
  border: 1px solid var(--border); color: var(--ink);
  font-family: var(--f-body); font-size: .93rem;
  outline: none; border-radius: 6px; transition: .2s;
}
.form-group input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-glow); }
.form-group input.invalid { border-color: #C41E1E; box-shadow: 0 0 0 3px rgba(196, 30, 30, 0.08); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-error {
  font-size: .78rem;
  color: #C41E1E;
  margin-top: 4px;
  line-height: 1.4;
  min-height: 0;
}
.form-error:empty { display: none; }

.form-checkbox { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; }
.form-checkbox input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; width: 18px; height: 18px;
  border: 2px solid var(--border); background: var(--bg-cream);
  cursor: pointer; position: relative; flex-shrink: 0; transition: .2s; border-radius: 4px;
}
.form-checkbox input:checked { background: var(--blue); border-color: var(--blue); }
.form-checkbox input:checked::after {
  content: '\2713'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); color: #fff; font-size: .65rem; font-weight: 700;
}
.form-checkbox span { font-size: .84rem; color: var(--ink-secondary); }
.form-submit { margin-top: 20px; }
.form-demo-note { font-size: .75rem; color: var(--ink-muted); font-style: italic; margin-top: 10px; }

/* Honeypot — invisible to humans, traps bots */
.form-hp {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* ==========================================================
   SPONSORS
   ========================================================== */
#sponsors { background: var(--bg-white); }

.sponsors__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 20px; margin-bottom: 28px; }
.sponsor-slot {
  height: 90px; background: var(--bg-cream); border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: .65rem; color: var(--ink-muted);
  text-transform: uppercase; letter-spacing: .18em; transition: .3s;
}
.sponsor-slot:hover { border-color: #FF7A1A; color: #FF7A1A; }
.sponsors__cta { text-align: center; font-size: .93rem; color: var(--ink-secondary); }

/* ==========================================================
   FAQ
   ========================================================== */
#faq { background: var(--bg-cream); }

.faq__list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  width: 100%; background: none; border: none; padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; cursor: pointer; text-align: left;
}
.faq-item__q span:first-child {
  font-family: var(--f-sub); font-size: 1.05rem; font-weight: 600;
  color: var(--ink); letter-spacing: .01em;
}
.faq-item__icon {
  width: 26px; height: 26px; display: flex; align-items: center; justify-content: center;
  color: #fff; background: #FF7A1A; border-radius: 50%;
  font-size: .9rem; transition: all .3s; flex-shrink: 0;
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); background: var(--orange); }

.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .4s, padding .3s; }
.faq-item.open .faq-item__a { max-height: 200px; padding-bottom: 18px; }
.faq-item__a p { font-size: .93rem; color: var(--ink-secondary); line-height: 1.7; }

/* ==========================================================
   FOOTER — dark bookend
   ========================================================== */
.footer {
  background: var(--bg-hero); padding: 56px 0 36px; position: relative; z-index: 1;
}
.footer__tagline {
  font-family: var(--f-head); font-size: 1.2rem;
  color: #FF7A1A; text-transform: uppercase;
  letter-spacing: .12em; text-align: center;
  margin-bottom: 32px; padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__inner {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px;
  align-items: start; margin-bottom: 40px;
}
.footer__wordmark {
  font-family: var(--f-head); font-size: 1.6rem; color: var(--ink-on-dark);
  letter-spacing: .05em;
}
.footer__wordmark span { color: var(--sky); }
.footer__unit { font-size: .78rem; color: var(--ink-on-dark-muted); line-height: 1.5; margin-top: 8px; }

.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a {
  font-family: var(--f-sub); font-size: .82rem; color: var(--ink-on-dark-muted);
  letter-spacing: .06em; text-transform: uppercase; transition: color .2s;
}
.footer__links a:hover { color: var(--sky); }

.footer__social { display: flex; justify-content: flex-end; gap: 10px; }
.footer__social a {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.12); border-radius: 50%;
  color: var(--ink-on-dark-muted); transition: all .3s;
}
.footer__social a:hover { border-color: var(--sky); color: var(--sky); background: rgba(92,184,228,.08); }

.footer__privacy-note {
  font-family: var(--f-mono); font-size: .65rem; color: var(--ink-on-dark-muted);
  text-transform: uppercase; letter-spacing: .15em; text-align: center;
  margin-bottom: 20px; padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
}
.footer__disclaimer { font-size: .75rem; color: var(--ink-on-dark-muted); max-width: 560px; line-height: 1.5; }
.footer__disclaimer a { color: var(--sky); }
.footer__credit { font-family: var(--f-mono); font-size: .65rem; color: var(--ink-on-dark-muted); letter-spacing: .12em; text-transform: uppercase; }
.footer__credit a { color: var(--sky); }

/* ==========================================================
   MODAL
   ========================================================== */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(21,32,53,.5);
  backdrop-filter: blur(6px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all .3s; padding: 24px;
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.modal {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: 16px; max-width: 500px; width: 100%; max-height: 90vh;
  overflow-y: auto; transform: translateY(30px) scale(.95);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  box-shadow: var(--shadow-lg);
}
.modal-overlay.open .modal { transform: none; }

.modal__header { padding: 28px 28px 0; display: flex; align-items: start; justify-content: space-between; }
.modal__title { font-family: var(--f-head); font-size: 1.8rem; color: var(--ink); letter-spacing: .03em; }
.modal__close {
  background: var(--bg-cream); border: 1px solid var(--border); color: var(--ink-secondary);
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: .2s; border-radius: 50%;
}
.modal__close:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.modal__body { padding: 20px 28px 28px; }

/* ==========================================================
   FUN ANIMATIONS — family-friendly visual enhancements
   ========================================================== */

@keyframes accentSlide {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes ctaPulseAmber {
  0%, 100% { box-shadow: 0 4px 18px rgba(255,107,0,.35); }
  50% { box-shadow: 0 4px 32px rgba(255,107,0,.55), 0 0 60px rgba(255,107,0,.15); }
}

@keyframes tickPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}


/* Countdown tick */
.cd-val.tick { animation: tickPop .3s ease; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
/* --- Tablet (768px - 1199px) --- */
@media (max-width: 1199px) {
  .hero__value-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__sell-panel { padding: 24px; }
}

@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__stats { grid-template-columns: repeat(3,1fr); }
  .alerts__inner { grid-template-columns: 1fr; gap: 36px; }
  .exp__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer__social { justify-content: center; }
  .footer__bottom { justify-content: center; text-align: center; }
  .hero__wordmark-main, .hero__wordmark-accent { font-size: clamp(3.5rem, 11vw, 6.5rem); }
}

/* --- Mobile (< 768px) --- */
@media (max-width: 768px) {
  :root { --section-py: 60px; --nav-h: 56px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero mobile */
  .hero__bg img { object-position: center 30%; }
  .hero__content { padding: 16px 14px 0; }
  .hero__wordmark-main, .hero__wordmark-accent { font-size: clamp(3rem, 13vw, 4.5rem); }
  .hero__wordmark-year { font-size: 1.2rem; letter-spacing: .3em; }
  .hero__badge-wing { font-size: .62rem; letter-spacing: .2em; padding: 5px 14px; }
  .hero__event-info { letter-spacing: .15em; font-size: .75rem; margin: 12px 0 20px; }
  .hero__event-info .sep { margin: 0 6px; }
  .hero__sell-panel { padding: 20px 16px; border-radius: 12px; }

  /* Free banner stacks */
  .hero__free-banner { flex-direction: column; text-align: center; gap: 12px; padding: 14px 16px; }
  .hero__free-badge { width: 40px; height: 40px; }
  .hero__free-text { text-align: center; }

  /* Value cards stack vertically with inline layout */
  .hero__value-grid { grid-template-columns: 1fr; gap: 10px; }
  .hero__value-card {
    display: flex; align-items: center; gap: 14px;
    text-align: left; padding: 14px;
  }
  .hero__value-icon { margin: 0; flex-shrink: 0; width: 28px; height: 28px; }

  /* CTAs stack */
  .hero__ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Countdown */
  .cd-block { min-width: 52px; }
  .cd-val { font-size: 1.3rem; padding: 7px 6px; min-width: 52px; }
  .cd-sep { font-size: 1.1rem; margin-bottom: 12px; }

  /* Scroll indicator hidden on mobile */
  .hero__scroll-indicator { display: none; }


  /* Section number watermarks smaller */
  .sec-num { font-size: 3rem; top: 20px; right: 16px; }

  /* Other sections */
  .about__stats { grid-template-columns: 1fr; }
  .exp__grid { grid-template-columns: 1fr; }
  .aircraft__grid { grid-template-columns: 1fr; }
  .visit__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sponsors__grid { grid-template-columns: repeat(2,1fr); }
  .draft-banner { flex-direction: column; text-align: center; padding: 10px 38px 10px 14px; }
  .draft-banner__close { position: absolute; top: 8px; right: 8px; }
  .modal__header { padding: 20px 18px 0; }
  .modal__body { padding: 16px 18px 24px; }

  /* Schedule tabs: smaller on mobile */
  .schedule__tabs { padding-left: 8px; gap: 2px; }
  .schedule__tab { font-size: .65rem; padding: 7px 10px 5px; }
  .schedule__time-toggle { flex-wrap: wrap; gap: 6px; }
}

@media (max-width: 480px) {
  .hero__wordmark-main, .hero__wordmark-accent { font-size: clamp(2.6rem, 14vw, 3.5rem); }
  .hero__wordmark-year { font-size: 1rem; }
  .cd-block { min-width: 44px; }
  .cd-val { font-size: 1.1rem; padding: 6px 5px; min-width: 44px; }
  .section-heading { font-size: 2rem; }
}

/* 320px viewport — no horizontal scroll */
@media (max-width: 360px) {
  .container { padding: 0 16px; }
  .hero__wordmark-main, .hero__wordmark-accent { font-size: 2.4rem; }
  .hero__wordmark-year { font-size: .85rem; letter-spacing: .2em; }
  .hero__event-info { letter-spacing: .12em; font-size: .65rem; }
  .hero__event-info .sep { margin: 0 4px; }
  .cd-block { min-width: 38px; }
  .cd-val { font-size: 1rem; padding: 5px 4px; min-width: 38px; }
  .cd-sep { font-size: .9rem; margin-bottom: 10px; }
  .section-heading { font-size: 1.7rem; }
  .sponsors__grid { grid-template-columns: 1fr; }
  .alerts__form { padding: 20px; }
  .hero__badge-wing { font-size: .55rem; letter-spacing: .15em; padding: 4px 10px; }
  .hero__sell-panel { padding: 16px 12px; }
  .hero__free-text strong { font-size: .82rem; }
  .hero__value-card p { font-size: .75rem; }
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-muted); }

/* ---- Reduced motion — disable ALL animations and transitions ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  /* Show all reveal elements immediately */
  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Show all hero anim elements immediately */
  .hero-anim__el {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Disable card hover lifts */
  .exp-card:hover, .aircraft-card:hover, .stat-card:hover, .visit-card:hover,
  .hero__value-card:hover {
    transform: none !important;
  }
  .exp-card:hover .exp-card__img img,
  .aircraft-card:hover .aircraft-card__img img {
    transform: none !important;
  }
}

/* ---- Floating mobile CTA ---- */
.fab-alert {
  display: none; /* hidden on desktop */
}
@media (max-width: 768px) {
  .fab-alert {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    position: fixed; bottom: 16px; left: 16px; right: 16px;
    height: 52px; z-index: 900;
    background: #FF6B00; color: #0B0E14; border: none; border-radius: 12px;
    font-family: var(--f-sub); font-size: 0.85rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    box-shadow: 0 4px 20px rgba(255,107,0,0.3);
    cursor: pointer; padding: 0 20px;
    transform: translateY(100px);
    opacity: 0; visibility: hidden;
    transition: transform .3s ease-in, opacity .3s ease-in, visibility .3s;
  }
  .fab-alert.visible {
    transform: translateY(0);
    opacity: 1; visibility: visible;
    transition: transform .3s ease-out, opacity .3s ease-out, visibility .3s;
  }
  .fab-alert:focus-visible {
    outline: 3px solid var(--focus-color); outline-offset: 2px;
  }
  .fab-alert svg { flex-shrink: 0; }

  /* Pulse glow animation */
  @keyframes fabPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255,107,0,0.3); }
    50% { box-shadow: 0 4px 32px rgba(255,107,0,0.6), 0 0 48px rgba(255,107,0,0.2); }
  }
  .fab-alert.pulse {
    animation: fabPulse 1.5s ease-in-out 3;
  }

  /* Extra bottom padding so FAB doesn't obscure content */
  .footer { padding-bottom: 80px !important; }
}
@media (max-width: 768px) and (prefers-reduced-motion: reduce) {
  .fab-alert {
    transition: none;
    transform: none;
  }
  .fab-alert.visible { transform: none; }
  .fab-alert.pulse { animation: none; }
}

/* ---- Print ---- */
@media print {
  /* Hide interactive/visual-only elements */
  .nav, .draft-banner, .hero__countdown, .hero__ctas,
  .modal-overlay, .nav__mobile-overlay, .footer__social, .skip-link,
  .form-hp, .btn, .schedule__tabs, .form-submit, .form-checkbox,
  .hero__bg, .hero__bg-fallback, .hero__bg-overlay,
  .hero__scroll-indicator, .fab-alert, .schedule__download-btn,
  .schedule__download-note, .schedule__time-toggle,

  /* White background, dark text, no shadows */
  body { background: #fff !important; color: #000 !important; }
  * { box-shadow: none !important; text-shadow: none !important; }

  /* Clean section rendering */
  .hero { min-height: auto !important; background: #fff !important; padding: 40px 0 !important; }
  .hero__content { color: #000; }
  .hero__wordmark-main, .hero__wordmark-accent { color: #000 !important; }
  .hero__wordmark-year { color: #333 !important; }
  .hero__event-info { color: #333 !important; }
  .hero__badge-wing { color: #000 !important; border-color: #999 !important; background: none !important; }
  .hero__sell-panel { background: none !important; backdrop-filter: none !important; border: 1px solid #ccc !important; }
  .hero__free-banner { border-color: #999 !important; background: none !important; }
  .hero__free-text strong { color: #000 !important; }
  .hero__free-text span { color: #333 !important; }
  .hero__value-card { border-color: #ccc !important; background: none !important; }
  .hero__value-title { color: #000 !important; }
  .hero__value-card p { color: #333 !important; }
  .hero-anim__el { opacity: 1 !important; transform: none !important; }
  .section-heading { color: #000 !important; }
  .section-tag { color: #333 !important; }

  /* All sections visible with white bg */
  section, .sec-pad { background: #fff !important; padding: 24px 0 !important; }

  /* Show URLs after links */
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: .75em; color: #666; word-break: break-all; }
  a[href^="#"]::after { content: none; }

  /* Page breaks */
  h2, h3 { page-break-after: avoid; }
  .exp-card, .aircraft-card, .visit-card, .stat-card { page-break-inside: avoid; }

  /* Footer */
  .footer { background: #fff !important; border-top: 2px solid #000; padding-top: 20px !important; }
  .footer__wordmark, .footer__links a, .footer__disclaimer, .footer__credit, .footer__unit,
  .footer__privacy-note { color: #000 !important; }
}
