/* ============================================================
   BA AVIATION SERVICES — styles.css
   Premium aviation · dark navy + electric blue
   Mobile-first. All design tokens live in :root so the whole
   look (colours, fonts, radius, spacing) is editable in one place.
   ============================================================ */

/* ---------- 1. DESIGN SYSTEM / TOKENS ---------- */
:root {
  /* Navy base ramp */
  --navy-900: #06101d;   /* deepest — footer */
  --navy-800: #0a1628;   /* page base */
  --navy-700: #0e1d30;   /* raised surfaces */
  --navy-600: #13263d;   /* cards */
  --navy-500: #1b3350;   /* borders / hovers */

  /* Accent — electric blue (change this one line to re-skin) */
  --accent:      #00a8ff;
  --accent-600:  #0090e0;
  --accent-300:  #7fd0ff;
  --accent-soft: rgba(0, 168, 255, 0.16);

  /* Text */
  --text:       #eaf1f8;
  --text-dim:   #a4b6c9;
  --text-faint: #6f8197;
  --white:      #ffffff;

  /* Glassmorphism */
  --glass-bg:     rgba(255, 255, 255, 0.07);
  --glass-bg-2:   rgba(255, 255, 255, 0.10);
  --glass-border: rgba(255, 255, 255, 0.16);
  --glass-blur:   14px;

  /* Shape */
  --radius:      14px;
  --radius-lg:   18px;
  --radius-pill: 999px;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --nav-h: 68px;

  /* Type */
  --font-display: 'Outfit', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-1: 0 10px 30px -12px rgba(0, 0, 0, 0.55);
  --shadow-2: 0 24px 60px -20px rgba(0, 0, 0, 0.65);
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--navy-800);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Accessibility helper */
.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;
}

/* Visible focus for keyboard users */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. LAYOUT HELPERS ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 11vw, 128px); position: relative; scroll-margin-top: var(--nav-h); }
.section--tight { padding-block: clamp(48px, 8vw, 96px); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.section__head { max-width: 640px; margin-bottom: clamp(32px, 5vw, 56px); }
.section__head h2 { font-size: clamp(30px, 5.2vw, 46px); }
.section__head p { color: var(--text-dim); margin-top: 16px; font-size: 18px; }

/* Optional gradient text accent for key headings */
.grad {
  background: linear-gradient(96deg, var(--white) 35%, var(--accent-300) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- 4. BUTTONS / MICRO-INTERACTIONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), border-color 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--accent); color: #04121f;
  box-shadow: 0 8px 24px -8px rgba(0, 168, 255, 0.6);
}
.btn--primary:hover {
  background: var(--accent-300);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px -8px rgba(0, 168, 255, 0.75);
}
.btn--ghost {
  background: var(--glass-bg); color: var(--text);
  border-color: var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
}
.btn--ghost:hover { background: var(--glass-bg-2); transform: translateY(-2px); border-color: var(--accent); }
.btn--block { width: 100%; justify-content: center; }

/* Text link with animated arrow */
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--accent); font-weight: 500;
  transition: gap 0.25s var(--ease), color 0.25s var(--ease);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--accent-300); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- 5. GLASS UTILITY ---------- */
.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius-lg);
}

/* ---------- 6. NAVIGATION ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease),
              border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.nav.is-solid {
  background: rgba(8, 18, 33, 0.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--navy-500);
}
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.14em; font-size: 18px; color: var(--white); }
.brand .dot { color: var(--accent); }

.nav__links { display: none; align-items: center; gap: 32px; }
.nav__links a { color: var(--text-dim); font-size: 15px; font-weight: 500; transition: color 0.2s var(--ease); position: relative; }
.nav__links a:hover { color: var(--white); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0; background: var(--accent); transition: width 0.25s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 10px;
}
.nav__toggle span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile slide-in menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(6, 16, 29, 0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: var(--gutter);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  visibility: hidden;
}
body.menu-open .mobile-menu { transform: translateX(0); visibility: visible; }
.mobile-menu a { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--text); padding: 10px 0; border-bottom: 1px solid var(--navy-600); }
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .btn { margin-top: 22px; }

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  padding-bottom: clamp(48px, 9vw, 96px);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img, .hero__media video { width: 100%; height: 100%; object-fit: cover; }
.hero__poster { position: absolute; inset: 0; }
.hero__video { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.hero__video.is-ready { opacity: 1; }
.hero__video--mobile { display: block; }
.hero__video--desktop { display: none; }
@media (min-width: 760px) {
  .hero__video--mobile { display: none; }
  .hero__video--desktop { display: block; }
}
/* Cinematic dark gradient so text always reads */
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(6,16,29,0.92) 0%, rgba(6,16,29,0.35) 45%, rgba(6,16,29,0.55) 100%),
    linear-gradient(to right, rgba(6,16,29,0.55), rgba(6,16,29,0.05));
}
.hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.hero__card { max-width: 660px; padding: clamp(24px, 4vw, 40px); }
.hero h1 { font-size: clamp(40px, 9vw, 82px); font-weight: 700; }
.hero__tag { color: var(--text-dim); font-size: clamp(17px, 2.4vw, 21px); margin: 18px 0 28px; max-width: 48ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 2; color: var(--text-dim); display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-cue svg { width: 22px; height: 22px; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---------- 8. SERVICES / BENTO ---------- */
.bento { display: grid; gap: 14px; grid-template-columns: 1fr; }
.tile {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 240px;
  isolation: isolate;
  border: 1px solid var(--navy-500);
}
.tile--scenic   { aspect-ratio: 16 / 9; }
.tile--charter  { aspect-ratio: 4 / 5; }
.tile--transfers{ aspect-ratio: 3 / 2; }
.tile--fishing  { aspect-ratio: 1 / 1; }

.tile__media { position: absolute; inset: 0; z-index: -1; }
.tile__media img, .tile__media video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.tile::after { /* readability gradient */
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(6,16,29,0.9) 8%, rgba(6,16,29,0.15) 60%, rgba(6,16,29,0.35) 100%);
}
.tile__body {
  position: absolute; inset: auto 0 0 0;
  padding: clamp(18px, 2.4vw, 26px);
  display: flex; flex-direction: column; gap: 8px;
}
.tile__kicker { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.tile__body h3 { font-size: clamp(22px, 3vw, 28px); color: var(--white); }
.tile__body p { color: var(--text-dim); font-size: 15px; max-width: 42ch; }
.tile .link-arrow { margin-top: 4px; }

/* Hover micro-interaction: lift + image zoom + accent ring */
.tile { transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease); }
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-2); border-color: var(--accent); }
.tile:hover .tile__media img, .tile:hover .tile__media video { transform: scale(1.06); }

@media (min-width: 760px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "scenic scenic"
      "charter transfers"
      "charter fishing";
  }
  .tile--scenic   { grid-area: scenic; aspect-ratio: 21 / 9; }
  .tile--charter  { grid-area: charter; aspect-ratio: auto; }
  .tile--transfers{ grid-area: transfers; aspect-ratio: 16 / 9; }
  .tile--fishing  { grid-area: fishing; aspect-ratio: 16 / 9; }
}

/* ---------- 9. PANO BAND (cinematic divider) ---------- */
.pano {
  position: relative; min-height: 46vh; display: flex; align-items: center;
  overflow: hidden;
}
.pano__img { position: absolute; inset: 0; }
.pano__img img { width: 100%; height: 100%; object-fit: cover; }
.pano::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,16,29,0.85), rgba(6,16,29,0.25)); }
.pano__text { position: relative; z-index: 2; }
.pano__text h2 { font-size: clamp(26px, 4.4vw, 44px); max-width: 18ch; }
.pano__text p { color: var(--text-dim); margin-top: 12px; max-width: 46ch; }

/* ---------- 10. ABOUT ---------- */
.about__grid { display: grid; gap: clamp(28px, 5vw, 56px); align-items: center; grid-template-columns: 1fr; }
.about__media { position: relative; }
.about__media .photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-1); }
.about__media .photo img { width: 100%; height: 100%; object-fit: cover; }
.about__map {
  margin-top: 16px; display: flex; gap: 14px; align-items: center;
  padding: 12px; border-radius: var(--radius);
}
.about__map img { width: 84px; height: 110px; object-fit: cover; border-radius: 10px; flex: none; }
.about__map .cap { font-size: 14px; color: var(--text-dim); }
.about__map .cap strong { color: var(--text); display: block; font-family: var(--font-display); }
.about__text h2 { font-size: clamp(28px, 4.6vw, 44px); margin-bottom: 18px; }
.about__text p { color: var(--text-dim); margin-bottom: 16px; }
.about__stats { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 26px; }
.about__stats .stat .n { font-family: var(--font-display); font-size: 34px; font-weight: 700; color: var(--white); }
.about__stats .stat .l { font-size: 13px; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.1em; }

@media (min-width: 860px) {
  .about__grid { grid-template-columns: 0.9fr 1.1fr; }
}

/* ---------- 11. FLEET & SAFETY ---------- */
.fleet { background: var(--navy-900); }
.fleet__grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.fleet__card { padding: clamp(22px, 3vw, 32px); }
.fleet__card h3 { font-size: 22px; color: var(--white); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.fleet__card h3 svg { width: 22px; height: 22px; color: var(--accent); }
.spec-row { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--navy-600); }
.spec-row:last-child { border-bottom: 0; }
.spec-row .k { color: var(--text-dim); } .spec-row .v { color: var(--text); font-weight: 500; text-align: right; }

.badges { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 4px; }
.badge { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: var(--radius); background: var(--navy-700); border: 1px solid var(--navy-600); }
.badge svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.badge .t { font-family: var(--font-display); font-weight: 600; color: var(--white); font-size: 15px; }
.badge .d { font-size: 13px; color: var(--text-faint); }

@media (min-width: 860px) {
  .fleet__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ---------- 12. HOW IT WORKS ---------- */
.steps { display: grid; gap: 18px; grid-template-columns: 1fr; counter-reset: step; }
.step { padding: clamp(22px, 3vw, 30px); position: relative; }
.step__n {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 16px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  border: 1px solid var(--accent);
}
.step h3 { font-size: 20px; color: var(--white); margin-bottom: 8px; }
.step p { color: var(--text-dim); font-size: 15px; }
.step__icon { position: absolute; top: clamp(22px,3vw,30px); right: clamp(22px,3vw,30px); color: var(--navy-500); }
.step__icon svg { width: 30px; height: 30px; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 13. TESTIMONIALS ---------- */
.testi { position: relative; overflow: hidden; }
.testi__bg { position: absolute; inset: 0; z-index: 0; }
.testi__bg img { width: 100%; height: 100%; object-fit: cover; }
.testi::after { content: ""; position: absolute; inset: 0; background: rgba(6,16,29,0.82); z-index: 1; }
.testi .wrap { position: relative; z-index: 2; }
.quotes { display: grid; gap: 18px; grid-template-columns: 1fr; }
.quote { padding: 26px; }
.quote .stars { color: var(--accent); letter-spacing: 3px; margin-bottom: 12px; }
.quote p { color: var(--text); font-size: 16px; margin-bottom: 16px; }
.quote .who { font-family: var(--font-display); font-weight: 600; color: var(--white); }
.quote .who span { display: block; color: var(--text-faint); font-size: 13px; font-weight: 400; font-family: var(--font-body); }
@media (min-width: 860px) { .quotes { grid-template-columns: repeat(3, 1fr); } }

/* ---------- 14. CTA ---------- */
.cta { position: relative; overflow: hidden; text-align: center; }
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,16,29,0.9), rgba(6,16,29,0.55)); z-index: 1; }
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(34px, 6.5vw, 64px); }
.cta p { color: var(--text-dim); margin: 16px auto 30px; max-width: 52ch; font-size: 18px; }
.cta__contacts { display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: center; margin-top: 26px; }
.cta__contacts a { display: inline-flex; align-items: center; gap: 9px; color: var(--text); font-weight: 500; }
.cta__contacts svg { width: 18px; height: 18px; color: var(--accent); }

/* ---------- 15. FOOTER ---------- */
.footer { background: var(--navy-900); border-top: 1px solid var(--navy-600); padding-block: 56px 30px; }
.footer__grid { display: grid; gap: 32px; grid-template-columns: 1fr; }
.footer__brand p { color: var(--text-faint); margin-top: 14px; max-width: 34ch; font-size: 14px; }
.footer h4 { font-family: var(--font-display); font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 14px; }
.footer a { color: var(--text-faint); font-size: 15px; display: inline-block; padding: 4px 0; transition: color 0.2s var(--ease); }
.footer a:hover { color: var(--accent); }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--navy-700); border: 1px solid var(--navy-600); color: var(--text-dim); transition: all 0.25s var(--ease); }
.socials a:hover { color: var(--white); background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer__bottom { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--navy-600); display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; color: var(--text-faint); font-size: 13px; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }

/* ---------- 16. FORMS (enquiry page) ---------- */
.page-pad { padding-top: calc(var(--nav-h) + 8px); }
.form-wrap { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-block: clamp(40px, 8vw, 90px); }
.form-bg { position: absolute; inset: 0; z-index: 0; }
.form-bg img { width: 100%; height: 100%; object-fit: cover; }
.form-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(6,16,29,0.92), rgba(6,16,29,0.7)); z-index: 1; }
.form-grid { position: relative; z-index: 2; display: grid; gap: clamp(28px, 5vw, 56px); grid-template-columns: 1fr; align-items: center; width: 100%; }
.form-intro h1 { font-size: clamp(34px, 6vw, 56px); }
.form-intro p { color: var(--text-dim); margin-top: 16px; max-width: 44ch; }
.form-intro ul.ticks { margin-top: 24px; display: grid; gap: 12px; }
.form-intro ul.ticks li { display: flex; gap: 10px; align-items: flex-start; color: var(--text); }
.form-intro ul.ticks svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 3px; }

.form-card { padding: clamp(22px, 4vw, 40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 500; color: var(--text-dim); margin-bottom: 7px; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  background: rgba(8, 18, 33, 0.6);
  border: 1px solid var(--navy-500);
  border-radius: var(--radius);
  color: var(--text); font-family: var(--font-body); font-size: 16px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft); background: rgba(8, 18, 33, 0.85);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%237fd0ff' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field--error input, .field--error select, .field--error textarea { border-color: #ff6b6b; }
.field .err { color: #ff9b9b; font-size: 13px; margin-top: 6px; display: none; }
.field--error .err { display: block; }
.row-2 { display: grid; gap: 0 16px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .row-2 { grid-template-columns: 1fr 1fr; } }
.form-note { color: var(--text-faint); font-size: 13px; margin-top: 14px; text-align: center; }
.form-status { margin-top: 14px; font-size: 14px; display: none; }
.form-status.show { display: block; }
.form-status.error { color: #ff9b9b; }
@media (min-width: 900px) { .form-grid { grid-template-columns: 1fr 1.05fr; } }

/* ---------- 17. THANK YOU ---------- */
.ty { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: var(--gutter); position: relative; overflow: hidden; }
.ty__card { max-width: 560px; padding: clamp(32px, 6vw, 60px); }
.ty__icon { width: 84px; height: 84px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 24px; background: var(--accent-soft); border: 1px solid var(--accent); color: var(--accent); }
.ty__icon svg { width: 42px; height: 42px; }
.ty h1 { font-size: clamp(30px, 6vw, 48px); }
.ty p { color: var(--text-dim); margin: 16px 0 28px; }

/* ---------- 18. SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 19. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__video { display: none !important; }
  .scroll-cue svg { animation: none; }
}

/* ---------- 20. DESKTOP NAV REVEAL ---------- */
@media (min-width: 920px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__toggle, .mobile-menu { display: none; }
}

/* ============================================================
   21. MULTI-PAGE COMPONENTS (added for the expanded site)
   ============================================================ */

/* ---------- Dropdown nav (Tours menu) ---------- */
.nav__links .has-dropdown { position: relative; }
.nav__links .has-dropdown > a { display: inline-flex; align-items: center; gap: 5px; }
.nav__links .has-dropdown > a .caret { width: 12px; height: 12px; transition: transform 0.25s var(--ease); }
.nav__links .has-dropdown:hover > a .caret,
.nav__links .has-dropdown:focus-within > a .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(8, 18, 33, 0.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--navy-500); border-radius: var(--radius);
  padding: 10px; min-width: 240px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 120; box-shadow: var(--shadow-2);
}
.nav__links .has-dropdown:hover .dropdown,
.nav__links .has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { padding: 11px 14px; border-radius: 8px; color: var(--text-dim); font-size: 15px; white-space: nowrap; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--navy-600); color: var(--white); }
.dropdown a.active { color: var(--accent); }

/* Mobile menu: scrollable, more items */
@media (max-width: 919px) {
  .mobile-menu { justify-content: flex-start; padding-top: calc(var(--nav-h) + 26px); overflow-y: auto; gap: 0; }
  .mobile-menu a { font-size: 23px; padding: 12px 0; }
  .mobile-menu .mm-group { font-family: var(--font-body); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-top: 18px; padding: 0 0 2px; border: 0; }
}

/* ---------- Interior page hero (banner) ---------- */
.page-hero { position: relative; min-height: 62svh; display: flex; align-items: flex-end; padding-bottom: clamp(40px, 7vw, 80px); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(6,16,29,0.95) 5%, rgba(6,16,29,0.35) 60%, rgba(6,16,29,0.65)); }
.page-hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.page-hero h1 { font-size: clamp(36px, 7.2vw, 70px); font-weight: 700; max-width: 16ch; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lead { color: var(--text); font-size: clamp(17px, 2.3vw, 21px); margin-top: 16px; max-width: 56ch; }

/* Quick fact pills */
.facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.fact { display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border: 1px solid var(--glass-border); border-radius: var(--radius-pill); font-size: 14px; color: var(--text-dim); background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur)); }
.fact svg { width: 16px; height: 16px; color: var(--accent); }

/* ---------- Section background helpers ---------- */
.section--ink { background: var(--navy-900); }
.section--mid { background: var(--navy-700); }
.section--line { border-top: 1px solid var(--navy-600); }
.lead-p { color: var(--text-dim); font-size: 18px; max-width: 68ch; }

/* ---------- Feature split rows ---------- */
.feature { display: grid; gap: clamp(28px, 5vw, 60px); align-items: center; grid-template-columns: 1fr; }
.feature + .feature { margin-top: clamp(48px, 7vw, 84px); }
.feature__img { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-1); aspect-ratio: 4 / 3; }
.feature__img img { width: 100%; height: 100%; object-fit: cover; }
.feature__img .tag { position: absolute; top: 14px; left: 14px; background: var(--accent); color: #04121f; font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 13px; border-radius: var(--radius-pill); }
.feature__body h2 { font-size: clamp(26px, 4.4vw, 42px); margin-bottom: 14px; }
.feature__body p { color: var(--text-dim); margin-bottom: 14px; }
.feat-list { margin-top: 18px; display: grid; gap: 11px; }
.feat-list li { position: relative; padding-left: 28px; color: var(--text); }
.feat-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
@media (min-width: 880px) {
  .feature { grid-template-columns: 1fr 1fr; }
  .feature--rev .feature__img { order: 2; }
}

/* ---------- Day-rhythm / timeline ---------- */
.rhythm { display: grid; gap: 16px; grid-template-columns: 1fr; }
.rhythm__item { padding: clamp(20px, 3vw, 28px); }
.rhythm__when { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.rhythm__item h3 { font-size: 20px; color: var(--white); margin-bottom: 7px; }
.rhythm__item p { color: var(--text-dim); font-size: 15px; }
@media (min-width: 760px) { .rhythm { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Option / package cards ---------- */
.options { display: grid; gap: 18px; grid-template-columns: 1fr; }
.option-card { padding: clamp(24px, 3vw, 34px); display: flex; flex-direction: column; gap: 12px; position: relative; }
.option-card .opt-label { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); }
.option-card .opt-n { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: var(--white); line-height: 1; }
.option-card .opt-n small { font-size: 16px; color: var(--text-dim); font-weight: 500; }
.option-card p { color: var(--text-dim); font-size: 15px; }
.option-card--feat { border: 2px solid var(--accent); }
.option-card .opt-badge { position: absolute; top: -12px; left: 24px; background: var(--accent); color: #04121f; font-size: 12px; font-weight: 600; padding: 4px 13px; border-radius: var(--radius-pill); }
@media (min-width: 860px) { .options { grid-template-columns: repeat(3, 1fr); } }

/* ---------- "What's included" grid ---------- */
.included { display: grid; gap: 14px; grid-template-columns: repeat(2, 1fr); }
.inc { padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.inc-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; }
.inc-ico svg { width: 22px; height: 22px; }
.inc h3 { font-size: 16px; color: var(--white); }
.inc p { font-size: 14px; color: var(--text-faint); }
@media (min-width: 760px) { .included { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Trust / credential cards ---------- */
.trust-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.trust-card { padding: 26px; }
.trust-card .ti { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; margin-bottom: 16px; }
.trust-card .ti svg { width: 26px; height: 26px; }
.trust-card h3 { font-size: 19px; color: var(--white); margin-bottom: 8px; }
.trust-card p { color: var(--text-dim); font-size: 15px; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Spec list (fleet) ---------- */
.specs { max-width: 540px; }

/* ---------- Contact info rows ---------- */
.info-row { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--navy-600); }
.info-row:last-child { border-bottom: 0; }
.info-row .k { color: var(--text-faint); text-transform: uppercase; font-size: 13px; letter-spacing: 0.1em; }
.info-row .v { color: var(--text); font-weight: 500; text-align: right; }
.info-row .v a { color: var(--accent); }

/* ---------- Gallery ---------- */
.gallery { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.gallery .g { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 1; position: relative; border: 1px solid var(--navy-500); }
.gallery .g img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery .g:hover img { transform: scale(1.06); }
.gallery .g.wide { grid-column: span 2; aspect-ratio: 16 / 9; }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } .gallery .g.tall { grid-row: span 2; aspect-ratio: 1 / 2; } }

/* ---------- End-of-page CTA band ---------- */
.endcta { background: var(--navy-900); text-align: center; border-top: 1px solid var(--navy-600); }
.endcta h2 { font-size: clamp(28px, 5vw, 48px); }
.endcta p { color: var(--text-dim); margin: 14px auto 28px; max-width: 52ch; font-size: 18px; }
.endcta .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Form: checkbox add-ons + fieldsets ---------- */
.form-step { margin-bottom: 26px; }
.form-step__label { font-family: var(--font-display); font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block; }
.checks { display: grid; gap: 10px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .checks { grid-template-columns: 1fr 1fr; } }
.check { display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px; border: 1px solid var(--navy-500); border-radius: var(--radius); background: rgba(8,18,33,0.5); cursor: pointer; transition: border-color 0.2s var(--ease); font-size: 14px; color: var(--text); }
.check:hover { border-color: var(--accent); }
.check input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--accent); }
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 6px 0 4px; font-size: 14px; color: var(--text-dim); }
.consent input { width: 18px; height: 18px; flex: none; margin-top: 2px; accent-color: var(--accent); }

/* ---------- Tour-card grid (home hub) ---------- */
.tour-grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
.tour-grid .tile { aspect-ratio: 4 / 3; min-height: 220px; }
@media (min-width: 620px) { .tour-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .tour-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   22. VIDEO GALLERY + AERIAL-WORKS COMPONENTS
   ============================================================ */

/* Video gallery — native controls, lazy (preload=none) */
.vidgrid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .vidgrid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .vidgrid { grid-template-columns: repeat(3, 1fr); } }
.vidcard { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--navy-500); aspect-ratio: 16 / 9; background: #000; }
.vidcard video { width: 100%; height: 100%; object-fit: cover; display: block; }
.vidcard .vidcap { position: absolute; top: 0; left: 0; right: 0; padding: 12px 14px; z-index: 2; pointer-events: none; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: #fff; background: linear-gradient(to bottom, rgba(6,16,29,0.82), transparent); }
.vidcard .vidcap span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--text-dim); }
.vidcard.feat { grid-column: 1 / -1; }
@media (min-width: 680px) { .vidcard.feat { grid-column: span 2; } }
@media (min-width: 1000px) { .vidcard.feat { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; } }
.vidgrid2 { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .vidgrid2 { grid-template-columns: 1fr 1fr; } }

/* ---------- Cape York Circuit route map (parchment chart insert) ---------- */
.circuit-map { background: #f4ecdd; border: 1px solid #e3d8c2; border-radius: var(--radius-lg); padding: clamp(16px, 3vw, 30px); }
.circuit-map > svg { width: 100%; height: auto; display: block; }
.circuit-legend { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 22px; padding-top: 20px; border-top: 1px solid #e3d8c2; }
@media (min-width: 760px) { .circuit-legend { grid-template-columns: repeat(3, 1fr); } }
.circuit-legend .li { display: flex; gap: 12px; align-items: flex-start; }
.circuit-legend .li p { color: #3c4a3e; font-size: 14px; line-height: 1.55; margin: 0; }
.circuit-legend .li strong { display: block; font-family: var(--font-display); color: #1b2a23; font-weight: 600; margin-bottom: 2px; }
.circuit-legend .sw { width: 34px; flex: none; margin-top: 9px; height: 0; border-top: 3px solid #16242b; }
.circuit-legend .sw.dash { border-top: 3px dashed #1f7d78; }
.circuit-legend .swico { width: 24px; height: 24px; flex: none; color: #c1571e; margin-top: 2px; }
.region-card { max-width: 520px; margin: 28px auto 0; }
.region-card .ph { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--navy-500); }
.region-card .ph img { width: 100%; height: auto; display: block; }
.region-card .cap { text-align: center; color: var(--text-faint); font-size: 13px; margin-top: 10px; }

/* Ember treatment (incendiary burning section) */
.ember { position: relative; background: var(--navy-900); overflow: hidden; }
.ember__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.5; }
.ember__bg img { width: 100%; height: 100%; object-fit: cover; }
.ember::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(125% 85% at 82% 118%, rgba(255,128,28,0.55), rgba(255,96,22,0.14) 34%, transparent 62%); }
.ember::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(6,12,22,0.88), rgba(6,12,22,0.45)); }
.ember .wrap { position: relative; z-index: 2; }
.ember .eyebrow { color: #ff9d4d; }
.ember .feat-list li::before { color: #ff9d4d; }
.tag--ember { background: #ff7a1a !important; color: #2a1300 !important; }

/* Capsule / step row for "how it works" mini-flows */
.miniflow { display: grid; gap: 14px; grid-template-columns: 1fr; margin-top: 6px; }
@media (min-width: 760px) { .miniflow { grid-template-columns: repeat(3, 1fr); } }
.miniflow .mf { padding: 20px; }
.miniflow .mf .n { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 14px; letter-spacing: 0.1em; margin-bottom: 8px; }
.miniflow .mf h3 { font-size: 17px; color: var(--white); margin-bottom: 6px; }
.miniflow .mf p { font-size: 14px; color: var(--text-dim); }
