/* ============================================================
   THE PILOT LODGE — Main Stylesheet
   Big Lake, Alaska | Rainbow River Aviation LLC
   Target: 95+ Lighthouse, <3s LCP mobile, <1s desktop
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --navy:       #1B3A5C;
  --navy-deep:  #0A1628;
  --gold:       #C8961E;
  --gold-light: #E0B558;
  --off-white:  #F5F0EA;
  --warm-white: #FDFAF6;
  --text:       #2C2C2A;
  --text-muted: #6C7A89;
  --border:     rgba(255,255,255,0.12);

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --max-w:      1280px;
  --section-v:  clamp(4rem, 8vw, 8rem);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     4px;
  --shadow-sm:  0 2px 16px rgba(0,0,0,0.18);
  --shadow-md:  0 8px 40px rgba(0,0,0,0.28);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.serif   { font-family: var(--font-serif); }
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.15; }

.display-xl {
  font-size: clamp(3rem, 7vw, 7rem);
  letter-spacing: -0.01em;
  line-height: 1.0;
  font-weight: 400;
}
.display-lg {
  font-size: clamp(2.25rem, 4.5vw, 5rem);
  line-height: 1.1;
  font-weight: 400;
}
.display-md {
  font-size: clamp(1.75rem, 3vw, 3.25rem);
  line-height: 1.15;
  font-weight: 400;
}
.display-sm {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.body-lg  { font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.75; }
.body-md  { font-size: 1rem; line-height: 1.7; }
.body-sm  { font-size: 0.875rem; line-height: 1.65; }

/* ── UTILITIES ─────────────────────────────────────────────── */
.text-gold    { color: var(--gold); }
.text-white   { color: #fff; }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.italic       { font-style: italic; }
.fw-600       { font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

.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;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(200,150,30,0.35);
}
.btn-outline {
  border: 1px solid rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-outline-dark {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
}
.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.8rem;
}
.btn-arrow::after {
  content: '→';
  font-size: 1rem;
  font-family: var(--font-sans);
  transition: transform 0.2s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── NAVIGATION ─────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.nav-logo .logo-mark {
  width: 32px;
  height: 32px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { right: 0; }
.nav-cta { margin-left: 0.5rem; }

/* Mobile hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--navy-deep);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-mobile.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: #fff;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--gold); }

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: kenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1.0) translate(0, 0); }
  to   { transform: scale(1.08) translate(-1%, 1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,22,40,0.88) 0%,
    rgba(10,22,40,0.45) 45%,
    rgba(10,22,40,0.2) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 8vw, 6rem);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 820px;
}
.hero-subtitle {
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 5vw, 3rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(0.3); }
}

/* ── USP BAR ────────────────────────────────────────────────── */
#usp-bar {
  background: var(--navy-deep);
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(200,150,30,0.25);
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
}
.usp-item:last-child { border-right: none; }
.usp-icon {
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}
.usp-text strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 2px;
}
.usp-text span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ── INTRO SECTION ──────────────────────────────────────────── */
#intro {
  padding: var(--section-v) 0;
  background: var(--warm-white);
}
.intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.intro-images {
  position: relative;
}
.intro-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}
.intro-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 4px solid var(--warm-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.intro-text { }
.intro-text .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.intro-text h2 { margin-bottom: 1.5rem; color: var(--navy-deep); }
.intro-text p { color: #4a4a46; margin-bottom: 1.25rem; }
.intro-stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.75rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-item span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── PULLQUOTE BAND ─────────────────────────────────────────── */
#pullquote {
  background: var(--navy);
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.pullquote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  color: #fff;
  line-height: 1.4;
  max-width: 880px;
  margin: 0 auto 1.5rem;
  font-style: italic;
}
.pullquote-attr {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── PACKAGES ───────────────────────────────────────────────── */
#packages {
  padding: var(--section-v) 0;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-header .eyebrow {
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2 { color: var(--navy-deep); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 560px; margin: 0 auto; }

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pkg-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pkg-card.featured {
  border: 2px solid var(--gold);
  box-shadow: 0 4px 32px rgba(200,150,30,0.2);
}
.pkg-card-img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.pkg-card-head {
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pkg-tier {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.pkg-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy-deep);
  margin-bottom: 0.25rem;
}
.pkg-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-style: italic;
}
.pkg-card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pkg-price {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.pkg-price-unit {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-sans);
}
.pkg-price-fine {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.pkg-transport {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  font-size: 0.7rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}
.pkg-transport.self {
  background: #FEF3E2;
  color: #633806;
}
.pkg-transport.private {
  background: #E1F5EE;
  color: #04342C;
}
.pkg-includes {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: auto;
}
.pkg-includes li {
  font-size: 0.75rem;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.4;
}
.pkg-includes li::before {
  content: '✓';
  color: #1D9E75;
  flex-shrink: 0;
  font-size: 0.7rem;
  margin-top: 0.1rem;
}
.pkg-card-footer {
  padding: 0 1.25rem 1.25rem;
  margin-top: 1rem;
}
.pkg-card-footer .btn {
  width: 100%;
  justify-content: center;
  padding: 0.8rem;
  font-size: 0.7rem;
}

/* ── AIRPLANE HOUSES ────────────────────────────────────────── */
#airplane-houses {
  background: var(--navy-deep);
  padding: var(--section-v) 0;
  overflow: hidden;
}
#airplane-houses .section-header { margin-bottom: 3.5rem; }
#airplane-houses .section-header h2,
#airplane-houses .section-header p { color: rgba(255,255,255,0.9); }
#airplane-houses .section-header p { color: rgba(255,255,255,0.6); }

.plane-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.plane-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 2/3;
  cursor: pointer;
}
.plane-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.plane-card:hover img { transform: scale(1.05); }
.plane-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
}
.plane-card-model {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.plane-card-name {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 0.5rem;
}
.plane-card-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
}

/* ── EXPERIENCES ────────────────────────────────────────────── */
#experiences { padding: var(--section-v) 0; background: var(--warm-white); }

.experience-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 2px;
}
.experience-row.reverse { direction: rtl; }
.experience-row.reverse > * { direction: ltr; }

.exp-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.exp-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.experience-row:hover .exp-img img { transform: scale(1.03); }

.exp-content {
  background: var(--navy-deep);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exp-content .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.exp-content h3 { font-family: var(--font-serif); color: #fff; margin-bottom: 1.25rem; }
.exp-content p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; line-height: 1.75; }
.exp-content .btn { align-self: flex-start; }

/* Light variant */
.exp-content.light {
  background: var(--off-white);
}
.exp-content.light h3 { color: var(--navy-deep); }
.exp-content.light p { color: #5a5a55; }

/* ── DESTINATIONS GRID ──────────────────────────────────────── */
#destinations {
  padding: var(--section-v) 0;
  background: var(--navy-deep);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto auto;
  gap: 0.5rem;
}
.dest-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.dest-card:nth-child(1),
.dest-card:nth-child(5) { grid-column: span 2; }
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem 0.875rem;
  background: linear-gradient(transparent, rgba(10,22,40,0.85));
}
.dest-card-label strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}
.dest-card-label span {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── OVERNIGHT ──────────────────────────────────────────────── */
#overnight {
  background: var(--off-white);
  padding: var(--section-v) 0;
}
.overnight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.overnight-card {
  background: var(--navy-deep);
  border-radius: var(--radius);
  overflow: hidden;
}
.overnight-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.overnight-card-body {
  padding: 2rem;
}
.overnight-card-body .eyebrow { color: var(--gold); margin-bottom: 0.75rem; }
.overnight-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: #fff;
  margin-bottom: 1rem;
}
.overnight-card-body p { color: rgba(255,255,255,0.68); margin-bottom: 1.5rem; font-size: 0.9rem; }
.timing-pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.timing-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(200,150,30,0.15);
  border: 1px solid rgba(200,150,30,0.35);
  color: var(--gold-light);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
}

/* ── GALLERY ────────────────────────────────────────────────── */
#gallery {
  padding: var(--section-v) 0 0;
  background: var(--warm-white);
  overflow: hidden;
}
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.375rem;
  margin-top: 2.5rem;
}
.gallery-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.3s;
}
.gallery-strip img:hover { opacity: 0.85; }

/* ── FLIGHT TRAINING ────────────────────────────────────────── */
#training {
  background: var(--navy);
  padding: var(--section-v) 0;
}
.training-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.training-img {
  position: relative;
}
.training-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
}
.training-badge {
  position: absolute;
  top: 1.5rem; right: -1.5rem;
  background: var(--gold);
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.training-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  line-height: 1;
}
.training-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}
.training-content .eyebrow { color: var(--gold); margin-bottom: 1rem; }
.training-content h2 { color: #fff; margin-bottom: 1.5rem; }
.training-content p { color: rgba(255,255,255,0.72); margin-bottom: 1.5rem; }
.training-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.training-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}
.training-feature::before {
  content: '✈';
  color: var(--gold);
  font-size: 0.8rem;
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
#testimonials {
  background: var(--off-white);
  padding: var(--section-v) 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em; }
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.testimonial-meta strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
}
.testimonial-meta span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ── PRESS ──────────────────────────────────────────────────── */
#press {
  background: var(--warm-white);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.press-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.press-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding-right: 2rem;
  border-right: 1px solid rgba(0,0,0,0.12);
  margin-right: 1rem;
  white-space: nowrap;
}
.press-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--text-muted);
  padding: 0.5rem 1.5rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  letter-spacing: 0.05em;
}
.press-logo:hover { opacity: 1; }

/* ── BOOKING CTA ────────────────────────────────────────────── */
#booking-cta {
  position: relative;
  overflow: hidden;
  padding: var(--section-v) 0;
}
#booking-cta .bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
#booking-cta .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#booking-cta .bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.78);
}
#booking-cta .content {
  position: relative;
  z-index: 1;
  text-align: center;
}
#booking-cta .eyebrow { color: var(--gold); margin-bottom: 1rem; }
#booking-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 4rem);
  color: #fff;
  margin-bottom: 1.25rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#booking-cta p {
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
}
.cta-phone a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.cta-phone a:hover { color: var(--gold); }

/* ── FOOTER ─────────────────────────────────────────────────── */
#footer {
  background: var(--navy-deep);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-contact { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.footer-contact a { color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-contact p { margin-bottom: 0.6rem; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── FADE IN ANIMATION ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }

/* ── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(3, 1fr); }
  .dest-card:nth-child(1),
  .dest-card:nth-child(5) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-strip { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-v: clamp(3rem, 6vw, 5rem); }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  /* Hero */
  .hero-title { max-width: 100%; }
  .hero-subtitle { max-width: 100%; }

  /* USP Bar */
  .usp-grid { grid-template-columns: 1fr; }
  .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 1rem 1.5rem; }
  .usp-item:last-child { border-bottom: none; }

  /* Intro */
  .intro-inner { grid-template-columns: 1fr; }
  .intro-img-accent { display: none; }

  /* Packages */
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-card.featured { order: -1; }

  /* Planes */
  .plane-grid { grid-template-columns: 1fr; }
  .plane-card { aspect-ratio: 16/9; }

  /* Experiences */
  .experience-row { grid-template-columns: 1fr; }
  .experience-row.reverse { direction: ltr; }

  /* Destinations */
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card:nth-child(n) { grid-column: span 1; }

  /* Overnight */
  .overnight-grid { grid-template-columns: 1fr; }

  /* Training */
  .training-inner { grid-template-columns: 1fr; }
  .training-badge { right: 1rem; top: 1rem; }

  /* Testimonials */
  .testimonial-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-strip { grid-template-columns: repeat(3, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .intro-stat-row { flex-wrap: wrap; gap: 1.5rem; }
}

/* ── PRINT ───────────────────────────────────────────────────── */
@media print {
  #nav, .scroll-hint, .nav-burger, .nav-mobile { display: none; }
  #hero { height: auto; min-height: 0; }
}
