/* ============================================================
   GOLDEN MARINER SYNDICATE
   "Safari Lodge Editorial" — Luxury African charter aesthetic
   Condé Nast meets bush lodge. Cinematic. Warm. Unmistakable.
   ============================================================ */

/* --- FONT FACES --- */
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('../fonts/playfair-display-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-300.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-400.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-500.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-600.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Raleway';
  src: url('../fonts/raleway-700.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* --- DESIGN TOKENS --- */
:root {
  /* Palette — warm blacks, burnished golds, parchment whites */
  --black: #0B0A08;
  --black-warm: #110F0B;
  --charcoal: #1A1814;
  --charcoal-warm: #221F1A;
  --gold: #C5A55A;
  --gold-bright: #D4AF37;
  --gold-dark: #8B7332;
  --gold-pale: #E8D5A0;
  --gold-muted: #A08B4A;
  --cream: #F7F3EC;
  --parchment: #EDE8DF;
  --ink: #2A2621;
  --mist: #D8D3CB;
  --driftwood: #6A6355;
  --sage: #4A7C59;
  --ember: #B84C4C;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #A08B4A 0%, #C5A55A 30%, #D4AF37 60%, #E8D5A0 100%);
  --grad-dark: linear-gradient(180deg, var(--black) 0%, var(--charcoal) 100%);
  --grad-vignette: radial-gradient(ellipse at center, transparent 50%, rgba(11,10,8,0.4) 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Raleway', 'Segoe UI', system-ui, sans-serif;

  --text-display: clamp(2.4rem, 4.5vw, 3.8rem);
  --text-h1: clamp(2.5rem, 5vw, 4rem);
  --text-h2: clamp(1.85rem, 3.5vw, 2.75rem);
  --text-h3: clamp(1.25rem, 2vw, 1.5rem);
  --text-lead: 1.2rem;
  --text-body: 1rem;
  --text-sm: 0.875rem;
  --text-xs: 0.6875rem;

  /* Spacing — generous editorial breathing room */
  --section-pad: clamp(2.5rem, 5vw, 5rem);
  --section-pad-sm: clamp(3rem, 6vw, 5rem);
  --container-max: 1260px;
  --container-pad: clamp(1.5rem, 5vw, 3rem);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.45s;
  --dur-slow: 0.8s;

  /* Header */
  --header-h: 72px;

  /* Z-layers */
  --z-header: 100;
  --z-mobile: 90;
  --z-sticky: 70;
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

/* --- ACCESSIBILITY --- */
.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: fixed; top: -100%; left: 1rem; z-index: 9999;
  padding: 0.75rem 1.5rem; background: var(--gold); color: var(--black);
  font-weight: 600; font-size: var(--text-sm); transition: top 0.2s;
}
.skip-link:focus { top: 0; outline: 3px solid var(--gold-bright); outline-offset: 2px; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section { padding: var(--section-pad) 0; position: relative; }

.section--light {
  background: var(--cream);
  color: var(--ink);
}

.section--dark {
  background: var(--black-warm);
  color: var(--mist);
}

/* Subtle grain texture on dark sections */
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.section--dark > * { position: relative; z-index: 1; }

.section--charcoal {
  background: var(--charcoal);
  color: var(--mist);
}

.section--charcoal::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
}

.section--charcoal > * { position: relative; z-index: 1; }

/* --- EYEBROW --- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section--light .eyebrow { color: var(--gold-dark); }

/* --- SECTION HEADERS --- */
.section__header {
  text-align: center;
  max-width: 85ch;
  margin: 0 auto 4rem;
}

.section__title {
  font-size: var(--text-h2);
  margin-bottom: 1rem;
  color: var(--ink);
}
.section__title--gold { color: var(--gold); }
.section--dark .section__title,
.section--charcoal .section__title { color: var(--cream); }

.section__subtitle {
  font-size: var(--text-lead);
  font-weight: 300;
  line-height: 1.75;
  color: var(--driftwood);
  margin: 0 auto;
}
.section__subtitle + .section__subtitle {
  margin-top: 1rem;
}
.section--dark .section__subtitle,
.section--charcoal .section__subtitle {
  color: var(--mist);
  opacity: 0.75;
}

/* Ornamental divider — gold line with diamond center */
.section__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 1.75rem auto 0;
  width: 120px;
  height: 12px;
}
.section__divider::before,
.section__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}
/* The diamond is drawn via border trick */
.section__divider::before {
  margin-right: 8px;
}
.section__divider::after {
  margin-left: 8px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-align: center;
  line-height: 1.2;
  position: relative;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(197, 165, 90, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--secondary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(197, 165, 90, 0.35);
}

.btn--dark {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn--dark:hover {
  background: var(--gold-dark);
  color: var(--cream);
}

/* ================================================================
   HEADER — Large overlapping logo, the signature element
   ================================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  background: var(--black-warm);
  border-bottom: 1px solid rgba(197, 165, 90, 0.12);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  overflow: visible; /* crucial — lets logo extend below */
}

.header--transparent {
  background: transparent;
  border-color: transparent;
}

.header--scrolled {
  background: rgba(11, 10, 8, 0.97);
  border-bottom-color: rgba(197, 165, 90, 0.12);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

/* Subtle gold shimmer line at bottom of scrolled header */
.header--scrolled::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(197, 165, 90, 0.3), transparent);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* --- LARGE OVERLAPPING LOGO --- */
.header__logo {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

.header__logo img {
  height: 100px;
  width: auto;
  position: relative;
  top: 25px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.5));
  transition: opacity var(--dur), transform var(--dur) var(--ease);
}

.header__logo:hover img {
  opacity: 0.9;
  transform: scale(1.03);
}

@media (min-width: 1024px) {
  .header__logo img {
    height: 140px;
    top: 40px;
  }
}

/* --- Desktop Navigation --- */
.header__nav {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.header__nav-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(216, 211, 203, 0.8);
  padding: 0.5rem 0.85rem;
  position: relative;
  transition: color var(--dur);
}

/* Animated underline — slides in from left */
.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0.85rem;
  right: 0.85rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}

.header__nav-link:hover,
.header__nav-link.is-active {
  color: var(--gold);
}

.header__nav-link:hover::after,
.header__nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__cta {
  margin-left: 1.25rem;
  font-size: 0.65rem;
  padding: 0.6rem 1.5rem;
  letter-spacing: 0.12em;
}

/* --- Hamburger --- */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  z-index: calc(var(--z-header) + 1);
}

.header__burger-line {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--gold);
  transition: transform var(--dur) var(--ease), opacity var(--dur);
}

.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --- Mobile Menu --- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile);
  background: var(--black-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu__inner {
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 2rem 3rem;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.mobile-menu__phone {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  font-weight: 400;
  color: var(--mist);
  padding: 0.5rem 1rem;
  transition: color var(--dur);
  display: block;
}

.mobile-menu__link:hover,
.mobile-menu__link.is-active { color: var(--gold); }

.mobile-menu__cta { margin-top: 2rem; }

/* ================================================================
   HERO — Cinematic, full-viewport, atmospheric
   ================================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero--page {
  height: 60vh;
  min-height: 400px;
}

.hero--short {
  height: 45vh;
  min-height: 340px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

/* Ken Burns — slow, cinematic drift */
.hero:not(.hero--page):not(.hero--short) .hero__bg img {
  animation: kenBurns 30s ease-in-out infinite alternate;
  opacity: 0.45;
}

@keyframes kenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.1) translate(-1%, 1%); }
}

/* Vignette + gradient overlay */
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(11,10,8,0.5) 100%),
    linear-gradient(to bottom, rgba(11,10,8,0.35) 0%, rgba(11,10,8,0.05) 30%, rgba(11,10,8,0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--container-pad);
  max-width: 880px;
}

/* Decorative gold frame lines in homepage hero */
.hero__frame {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero__frame--top,
.hero__frame--bottom {
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent 0%, rgba(197,165,90,0.35) 20%, rgba(197,165,90,0.35) 80%, transparent 100%);
}
.hero__frame--top { top: 20%; }
.hero__frame--bottom { bottom: 18%; }

.hero__logo {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 2px 16px rgba(0,0,0,0.4));
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-dramatic) 0.2s forwards;
}

.hero__title {
  font-size: var(--text-display);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 40px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-dramatic) 0.45s forwards;
}

.hero__page-title {
  font-size: var(--text-h1);
  color: var(--cream);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-lead);
  font-weight: 300;
  color: var(--mist);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-dramatic) 0.65s forwards;
}

.hero__cta {
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-dramatic) 0.85s forwards;
}

.hero__breadcrumb {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 400;
  color: rgba(216, 211, 203, 0.7);
  letter-spacing: 0.05em;
}
.hero__breadcrumb a {
  color: var(--gold);
  transition: opacity var(--dur);
}
.hero__breadcrumb a:hover { opacity: 0.7; }
.hero__breadcrumb-sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  animation: scrollFloat 2.5s ease-in-out infinite;
}
.hero__scroll-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  opacity: 0.5;
}
@keyframes scrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(12px); opacity: 0.8; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   INTRO SPLIT — Text / Image
   ================================================================ */
.intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.intro__text h2 {
  font-size: var(--text-h2);
  margin-bottom: 1.25rem;
}
.section--dark .intro__text h2 { color: var(--gold); }

.intro__text p {
  margin-bottom: 1.1rem;
  line-height: 1.85;
  max-width: 55ch;
}
.section--dark .intro__text p { color: var(--mist); }

.intro__image {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}

/* Gold corner accent on images */
.intro__image::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 50px;
  height: 50px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}
.intro__image::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 50px;
  height: 50px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  z-index: 2;
  pointer-events: none;
  opacity: 0.6;
}

.intro__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.intro__image:hover img {
  transform: scale(1.04);
}

/* Pull quote */
.pull-quote {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  font-style: italic;
  color: var(--gold-dark);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 0 0.75rem 1.75rem;
  margin: 2rem 0 0;
}
.intro .pull-quote {
  grid-column: 1 / -1;
  margin: 0;
}
.section--dark .pull-quote { color: var(--gold); }

/* ================================================================
   STATS BAR — Gold numerals, ornamental dividers
   ================================================================ */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(197, 165, 90, 0.15);
  margin-top: 0;
}

.stats-bar__item { text-align: center; }

.stats-bar__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.section--light .stats-bar__value { color: var(--gold-dark); }

.stats-bar__label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--driftwood);
}
.section--dark .stats-bar__label { color: var(--mist); opacity: 0.6; }

.stats-bar__value[data-count] { font-variant-numeric: tabular-nums; }

/* ================================================================
   EXPERIENCE CARDS — Cinematic image cards with gold accents
   ================================================================ */
.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.experience-card {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer;
}

/* Subtle gold gradient border on cards */
.experience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(197, 165, 90, 0.15);
  z-index: 3;
  pointer-events: none;
  transition: border-color var(--dur);
}
.experience-card:hover::before {
  border-color: rgba(197, 165, 90, 0.4);
}

.experience-card__image {
  position: absolute;
  inset: 0;
}
.experience-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.experience-card:hover .experience-card__image img {
  transform: scale(1.08);
}

.experience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,10,8,0.88) 0%, rgba(11,10,8,0.15) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: background var(--dur);
}

/* Gold bottom accent bar */
.experience-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease);
  z-index: 4;
}
.experience-card:hover::after {
  transform: scaleX(1);
}

.experience-card__icon {
  width: 26px;
  height: 26px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.experience-card__title {
  font-size: var(--text-h3);
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.experience-card__desc {
  font-size: var(--text-sm);
  color: var(--mist);
  opacity: 0.8;
  line-height: 1.6;
}

/* ================================================================
   PARALLAX TEASER
   ================================================================ */
.teaser {
  position: relative;
  padding: var(--section-pad) 0;
  background-color: var(--black);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.teaser::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(11,10,8,0.5) 100%),
    rgba(11,10,8,0.55);
}

.teaser__content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.teaser__title {
  font-size: var(--text-h2);
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.teaser__text {
  font-size: var(--text-body);
  color: var(--mist);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.parallax { background-attachment: scroll; }

/* ================================================================
   CTA BAND — Dramatic, dark, gold accents
   ================================================================ */
.cta-band {
  padding: var(--section-pad) 0;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Top and bottom ornamental gold lines */
.cta-band::before,
.cta-band::after {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-muted), transparent);
}
.cta-band::before { top: 0; }
.cta-band::after { bottom: 0; }

.cta-band__title {
  font-size: var(--text-h2);
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-band__text {
  font-size: var(--text-lead);
  font-weight: 300;
  color: var(--mist);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  opacity: 0.8;
}
.cta-band__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ================================================================
   GRIDS
   ================================================================ */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }

/* ================================================================
   INFO CARDS — Premium feel with gold gradient top border
   ================================================================ */
.info-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 165, 90, 0.12);
  padding: 2.25rem;
  position: relative;
  transition: border-color var(--dur), transform var(--dur);
}

/* Gold gradient top accent */
.info-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--dur);
}
.info-card:hover::before { opacity: 1; }
.info-card:hover {
  border-color: rgba(197, 165, 90, 0.3);
  transform: translateY(-4px);
}

.section--light .info-card {
  background: white;
  border-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}
.section--light .info-card:hover {
  border-color: rgba(197, 165, 90, 0.4);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.07);
}

.info-card__icon {
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.info-card__title {
  font-size: var(--text-h3);
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section--light .info-card__title { color: var(--ink); }

.info-card__text {
  font-size: var(--text-body);
  line-height: 1.75;
}

/* ================================================================
   SPEC BAR (Houseboat page)
   ================================================================ */
.spec-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  max-width: var(--container-max);
  margin: 2.5rem auto 0;
  background: var(--charcoal);
  border: 1px solid rgba(197, 165, 90, 0.1);
  position: relative;
}

/* Decorative corner accents */
.spec-bar::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  pointer-events: none;
}
.spec-bar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 30px;
  height: 30px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
}

.spec-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: flex-start;
}
.spec-bar__icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.spec-bar__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--mist);
}

/* Boarding info bar */
.boarding-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.75rem;
  font-size: var(--text-sm);
}
.boarding-bar strong { color: var(--gold); }

/* ================================================================
   TABS (Amenities)
   ================================================================ */
.tabs__list {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 2.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tabs__trigger {
  padding: 0.85rem 1.5rem;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--driftwood);
  position: relative;
  white-space: nowrap;
  transition: color var(--dur);
}

.tabs__trigger::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}
.tabs__trigger:hover { color: var(--ink); }
.tabs__trigger.is-active { color: var(--gold-dark); }
.tabs__trigger.is-active::after { transform: scaleX(1); }

.tabs__panel {
  display: none;
  animation: fadePanel 0.5s var(--ease);
}
.tabs__panel.is-active { display: block; }

@keyframes fadePanel {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   CHECKLIST
   ================================================================ */
.checklist {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
.checklist__group h3 {
  font-size: var(--text-h3);
  margin-bottom: 1.25rem;
}
.checklist__group:only-child {
  grid-column: 1 / -1;
}
.checklist__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.checklist__icon { width: 20px; height: 20px; flex-shrink: 0; }
.checklist__icon--check { color: var(--sage); }
.checklist__icon--cross { color: var(--ember); }

/* ================================================================
   PACK GRID
   ================================================================ */
.pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 780px;
  margin: 0 auto;
}
.pack-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1rem;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: border-color var(--dur), transform var(--dur);
}
.pack-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.pack-item__icon {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 0.85rem;
}
.pack-item__label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}

/* ================================================================
   DESTINATION CARDS (Rates page)
   ================================================================ */
.dest-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 165, 90, 0.15);
  padding: 2.25rem;
  text-align: center;
  position: relative;
  transition: border-color var(--dur), transform var(--dur);
}
.dest-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 2px;
  background: var(--grad-gold);
  opacity: 0;
  transition: opacity var(--dur);
}
.dest-card:hover::before { opacity: 1; }
.dest-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.dest-card__duration {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.dest-card__name {
  font-family: var(--font-display);
  font-size: var(--text-h3);
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.dest-card__fuel {
  font-size: var(--text-sm);
  color: var(--mist);
  opacity: 0.75;
}
.dest-card__fuel strong { color: var(--gold); }

/* ================================================================
   TABLE (Rates page)
   ================================================================ */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-body);
}
.table thead { background: var(--charcoal); }
.table th {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 1.1rem 1.25rem;
  text-align: left;
  white-space: nowrap;
}
.table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  color: var(--ink);
}
.table tbody tr { transition: background var(--dur); }
.table tbody tr:hover { background: rgba(197, 165, 90, 0.04); }

/* ================================================================
   ACCORDION (FAQs)
   ================================================================ */
.accordion__category { margin-bottom: 3.5rem; }
.accordion ~ .accordion .accordion__heading { padding-top: 1rem; }

.accordion__category-title {
  font-size: var(--text-h3);
  color: var(--ink);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
}

.accordion__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 0;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  gap: 1rem;
  transition: color var(--dur);
}
.accordion__trigger:hover { color: var(--gold-dark); }

.accordion__icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  background: var(--gold);
  transition: transform var(--dur) var(--ease);
}
.accordion__icon::before {
  top: 50%; left: 2px; right: 2px; height: 1.5px;
  transform: translateY(-50%);
}
.accordion__icon::after {
  left: 50%; top: 2px; bottom: 2px; width: 1.5px;
  transform: translateX(-50%);
}
.accordion__trigger[aria-expanded="true"] .accordion__icon::after {
  transform: translateX(-50%) scaleY(0);
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur) var(--ease);
}
.accordion__panel[aria-hidden="false"] {
  grid-template-rows: 1fr;
}

.accordion__panel-inner { overflow: hidden; }
.accordion__panel-inner p {
  padding: 0 0 1.35rem;
  color: var(--driftwood);
  line-height: 1.85;
}
.accordion__panel-inner a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ Search */
.faq-search {
  max-width: 480px;
  margin: 0 auto 3rem;
}
.faq-search__input {
  width: 100%;
  padding: 0.95rem 1.25rem 0.95rem 3.25rem;
  font-size: var(--text-body);
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: white;
  transition: border-color var(--dur);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236A6355' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'%3E%3C/circle%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'%3E%3C/line%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 1rem center;
}
.faq-search__input:focus {
  border-color: var(--gold);
  outline: none;
}

/* FAQ Category Nav */
.faq-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.faq-nav__link {
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--driftwood);
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  transition: all var(--dur);
}
.faq-nav__link:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.accordion__item.is-hidden,
.accordion__category.is-hidden { display: none; }

/* ================================================================
   GALLERY
   ================================================================ */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.gallery-filter__btn {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--driftwood);
  padding: 0.65rem 1.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all var(--dur);
}
.gallery-filter__btn:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.gallery-filter__btn.is-active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
}
.gallery-item.is-hidden { display: none; }
.gallery-item a {
  display: block;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  transition: transform 1s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item__overlay { display: none; }

/* --- Lightbox --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border: none;
  user-select: none;
  transition: opacity 0.25s;
}
.lightbox__caption { display: none; }
.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,0.4);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0.7;
  transition: opacity 0.2s, background 0.2s;
  z-index: 10;
}
.lightbox__nav:hover { opacity: 1; background: rgba(0,0,0,0.6); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
.lightbox__counter {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--ff-body);
  font-size: var(--text-sm);
}

/* ================================================================
   CONTACT FORM
   ================================================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}

.contact-details__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-details__icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold-dark);
}
.contact-details__text { font-size: var(--text-body); }
.contact-details__text a { transition: color var(--dur); }
.contact-details__text a:hover { color: var(--gold-dark); }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-group { display: flex; flex-direction: column; }
.form-group__label {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.form-group__input,
.form-group__textarea,
.form-group__select {
  padding: 0.8rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.08);
  background: white;
  font-size: var(--text-body);
  transition: border-color var(--dur);
  color: var(--ink);
}
.form-group__input:focus,
.form-group__textarea:focus,
.form-group__select:focus {
  border-color: var(--gold);
  outline: none;
}
.form-group__textarea { resize: vertical; min-height: 120px; }
.form-group__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236A6355' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group__error {
  font-size: 0.8rem;
  color: var(--ember);
  margin-top: 0.35rem;
  display: none;
}
.form-group.has-error .form-group__input,
.form-group.has-error .form-group__textarea {
  border-color: var(--ember);
}
.form-group.has-error .form-group__error { display: block; }

.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.is-visible {
  display: block;
  animation: fadePanel 0.5s var(--ease);
}
.form-success__icon {
  width: 48px;
  height: 48px;
  color: var(--sage);
  margin: 0 auto 1rem;
}
.form-success__title {
  font-size: var(--text-h3);
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.form-success__text { color: var(--driftwood); }

/* Loading spinner */
.btn--loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn--loading::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(11,10,8,0.15);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ================================================================
   STICKY SECTION NAV (Houseboat page)
   ================================================================ */
.section-nav {
  position: sticky;
  top: var(--header-h);
  z-index: var(--z-sticky);
  background: var(--cream);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.section-nav__list {
  display: flex;
  gap: 0;
  justify-content: center;
  padding: 0 var(--container-pad);
  min-width: max-content;
}
.section-nav__link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--driftwood);
  white-space: nowrap;
  position: relative;
  transition: color var(--dur);
}
.section-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--dur) var(--ease);
}
.section-nav__link:hover,
.section-nav__link.is-active { color: var(--gold-dark); }
.section-nav__link.is-active::after { transform: scaleX(1); }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--black-warm);
  color: var(--mist);
  padding-top: 5rem;
  position: relative;
}

/* Ornamental gold line at top */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-gold);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}

.footer__logo {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--driftwood);
  max-width: 260px;
  line-height: 1.6;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__link-list li { margin-bottom: 0.5rem; }
.footer__link-list a {
  font-size: var(--text-sm);
  color: var(--mist);
  transition: color var(--dur);
  display: inline-block;
  opacity: 0.75;
}
.footer__link-list a:hover { color: var(--gold); opacity: 1; }

.footer__contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: var(--text-sm);
}
.footer__contact-list svg {
  flex-shrink: 0;
  color: var(--gold);
}
.footer__contact-list a { transition: color var(--dur); }
.footer__contact-list a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.75rem 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--driftwood);
}
.footer__bottom a {
  color: var(--gold);
  transition: opacity var(--dur);
}
.footer__bottom a:hover { opacity: 0.7; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-dramatic),
              transform var(--dur-slow) var(--ease-dramatic);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

.reveal--scale {
  opacity: 0;
  transform: scale(0.96);
  transition: opacity var(--dur-slow) var(--ease-dramatic),
              transform var(--dur-slow) var(--ease-dramatic);
}
.reveal--scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Fuel policy / catering text utility classes */
.fuel-policy {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}
.fuel-policy h3 {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: var(--text-h3);
}
.catering-text {
  max-width: 60ch;
  margin: 0 auto;
  text-align: center;
}
.catering-text strong { color: var(--gold-dark); }

/* ================================================================
   RESPONSIVE — Tablet (768px+)
   ================================================================ */
@media (min-width: 768px) {
  .intro {
    grid-template-columns: 1fr 1fr;
  }

  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stats-bar__item + .stats-bar__item {
    border-left: 1px solid rgba(197, 165, 90, 0.15);
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .experience-card { aspect-ratio: 3 / 4; }

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

  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }

  .checklist { grid-template-columns: repeat(2, 1fr); }
  .pack-grid { grid-template-columns: repeat(4, 1fr); }

  .form-grid {
    grid-template-columns: 2fr 3fr;
    gap: 4.5rem;
  }
  .form-row { grid-template-columns: repeat(2, 1fr); }



  .spec-bar { grid-template-columns: repeat(4, 1fr); }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
  }
}

/* ================================================================
   RESPONSIVE — Desktop (1024px+)
   ================================================================ */
@media (min-width: 1024px) {
  .header__nav { display: flex; }
  .header__burger { display: none; }

  .experience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ================================================================
   TABLE STACKING — Mobile
   ================================================================ */
@media (max-width: 767px) {
  .table--stack thead { display: none; }
  .table--stack tbody tr {
    display: block;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
  .table--stack td {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border: none;
  }
  .table--stack td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: var(--text-sm);
    color: var(--gold-dark);
    margin-right: 1rem;
  }
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__logo, .hero__title, .hero__subtitle, .hero__cta {
    opacity: 1;
    animation: none;
  }
  .hero__bg img { animation: none; }
}
