/* ==========================================================================
   Meridian AeroPath Travels — Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Ink / surfaces */
  --ink-900: #04070E;
  --ink-800: #070B16;
  --ink-700: #0B1120;
  --ink-600: #0F172A;
  --ink-500: #16223C;
  --surface: #0A101E;
  --surface-2: #101A2E;
  --surface-3: #16223C;

  /* Brand */
  --gold: #E0B14C;
  --gold-2: #F3D089;
  --gold-3: #A87A2A;
  --aqua: #3ED0C4;
  --aqua-2: #7FE7DE;
  --coral: #FF7A59;

  /* Neutrals */
  --sand: #F7F3EA;
  --sand-2: #EDE6D8;
  --text: #EEF2F8;
  --text-2: #A9B7CC;
  --text-3: #6E819C;
  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(255, 255, 255, 0.16);

  /* Effects */
  --glass: rgba(12, 18, 32, 0.72);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.24);
  --shadow: 0 18px 48px -12px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 40px 90px -20px rgba(0, 0, 0, 0.7);
  --glow-gold: 0 0 0 1px rgba(224, 177, 76, 0.28), 0 18px 50px -12px rgba(224, 177, 76, 0.35);

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-sans: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --header-h: 78px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur: 0.5s;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  /* Decorative glows and offset badges deliberately sit past the content edge.
     `clip` contains them without creating a scroll container (unlike `hidden`,
     which would break position: sticky on descendants). */
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-2);
  background: var(--ink-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; background: none; border: 0; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; padding: 0; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--sand);
  font-variation-settings: "SOFT" 0, "WONK" 0;
  text-wrap: balance;
}

p { text-wrap: pretty; }

::selection {
  background: var(--gold);
  color: var(--ink-900);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--ink-900); }
::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: 20px;
  border: 2px solid var(--ink-900);
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-3); }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container-wide { max-width: 1560px; }
.container-narrow { max-width: 860px; }

.section {
  position: relative;
  padding-block: clamp(4.5rem, 10vw, 9rem);
}

.section-sm { padding-block: clamp(3rem, 6vw, 5rem); }

.section-line { border-top: 1px solid var(--line); }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-sm { gap: 0.6rem; }
.gap { gap: 1rem; }
.gap-lg { gap: 2rem; }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.mt-lg { margin-top: 2.5rem; }
.mt-xl { margin-top: 4rem; }

/* Backgrounds */
.bg-surface { background: var(--surface); }
.bg-ink { background: var(--ink-800); }

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  pointer-events: none;
  opacity: 0.6;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
}
.glow-gold { background: rgba(224, 177, 76, 0.14); }
.glow-aqua { background: rgba(62, 208, 196, 0.11); }

/* --------------------------------------------------------------------------
   4. Typography helpers
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.eyebrow-center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.h1 { font-size: clamp(2.6rem, 6.2vw, 5.1rem); }
.h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); }
.h3 { font-size: clamp(1.45rem, 2.4vw, 2.1rem); }
.h4 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }

.lead {
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 62ch;
}

.muted { color: var(--text-3); }
.small { font-size: 0.875rem; }
.tiny { font-size: 0.78rem; }

.serif-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 60, "WONK" 1;
}

.grad-text {
  background: linear-gradient(120deg, var(--gold-2) 0%, var(--gold) 40%, var(--aqua-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 1.1rem; }
.section-head.center p { margin-inline: auto; }

.section-head-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.section-head-split > div:first-child { max-width: 640px; }

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink-900);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  border-radius: 100px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.75s var(--ease);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-gold);
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(-1px); }

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-lg { padding: 1.15rem 2.2rem; font-size: 0.95rem; }
.btn-sm { padding: 0.7rem 1.25rem; font-size: 0.82rem; }
.btn-block { display: flex; width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-3));
  color: var(--ink-900);
}

.btn-aqua { --btn-bg: var(--aqua); --btn-fg: var(--ink-900); }
.btn-aqua:hover { box-shadow: 0 0 0 1px rgba(62, 208, 196, 0.3), 0 18px 50px -12px rgba(62, 208, 196, 0.4); }

.btn-light { --btn-bg: var(--sand); --btn-fg: var(--ink-900); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line-2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold);
  color: var(--sand);
  box-shadow: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding-inline: 0.4rem;
}
.btn-ghost:hover { color: var(--gold); box-shadow: none; transform: none; }

/* Text link with animated underline */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform 0.4s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

.link-underline {
  position: relative;
  display: inline-block;
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); transform-origin: left; }

/* --------------------------------------------------------------------------
   6. Chips / badges / pills
   -------------------------------------------------------------------------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.chip-gold {
  border-color: rgba(224, 177, 76, 0.35);
  background: rgba(224, 177, 76, 0.12);
  color: var(--gold-2);
}

.chip-aqua {
  border-color: rgba(62, 208, 196, 0.3);
  background: rgba(62, 208, 196, 0.1);
  color: var(--aqua-2);
}

.chip-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 3px color-mix(in srgb, currentColor 20%, transparent);
}

.pulse-dot::before { animation: pulse 2s var(--ease-in-out) infinite; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, currentColor 45%, transparent); }
  50% { box-shadow: 0 0 0 6px color-mix(in srgb, currentColor 0%, transparent); }
}

/* --------------------------------------------------------------------------
   7. Header / navigation
   -------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--gold), var(--aqua));
  z-index: 1000;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background-color 0.45s var(--ease), border-color 0.45s var(--ease),
              backdrop-filter 0.45s var(--ease), transform 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--line);
}

.header.hidden { transform: translateY(-100%); }

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

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  z-index: 2;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--gold-2), var(--gold) 50%, var(--gold-3));
  box-shadow: 0 6px 20px -6px rgba(224, 177, 76, 0.6);
  flex-shrink: 0;
  transition: transform 0.5s var(--ease);
}
.logo:hover .logo-mark { transform: rotate(-12deg) scale(1.06); }
.logo-mark svg { width: 21px; height: 21px; color: var(--ink-900); }

.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--sand);
}
.logo-sub {
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Desktop nav */
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-inline: auto;
}

.nav-link {
  position: relative;
  padding: 0.55rem 0.95rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color 0.35s var(--ease);
  white-space: nowrap;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.06);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.nav-link:hover { color: var(--sand); }
.nav-link:hover::before { opacity: 1; transform: scale(1); }

.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  padding: 0.5rem 0.35rem;
  transition: color 0.35s var(--ease);
}
.header-phone svg { width: 15px; height: 15px; color: var(--gold); }
.header-phone:hover { color: var(--gold); }

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.burger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--sand);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease), width 0.45s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 21.5px; width: 12px; margin-left: -3px; }
.burger span:nth-child(3) { top: 27px; }

.nav-open .burger span:nth-child(1) { transform: translateX(-50%) translateY(5.5px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; transform: translateX(-50%) scaleX(0); }
.nav-open .burger span:nth-child(3) { transform: translateX(-50%) translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: var(--ink-900);
  padding: calc(var(--header-h) + 2.5rem) var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  clip-path: circle(0% at calc(100% - 44px) 40px);
  transition: clip-path 0.75s var(--ease);
  visibility: hidden;
}

.nav-open .drawer {
  clip-path: circle(150% at calc(100% - 44px) 40px);
  visibility: visible;
}

.drawer-nav { display: flex; flex-direction: column; gap: 0.15rem; }

.drawer-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 8vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--sand);
  opacity: 0;
  transform: translateY(24px);
  transition: color 0.3s var(--ease);
}
.drawer-link span {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.drawer-link.active,
.drawer-link:hover { color: var(--gold); }

.drawer-foot {
  margin-top: auto;
  padding-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

.drawer-contact { display: grid; gap: 0.4rem; }
.drawer-contact a { font-size: 1.05rem; font-weight: 700; color: var(--sand); }
.drawer-contact p { font-size: 0.85rem; color: var(--text-3); }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: -12% 0 0;
  z-index: -2;
  will-change: transform;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 14, 0.86) 0%, rgba(4, 7, 14, 0.35) 32%, rgba(4, 7, 14, 0.72) 68%, var(--ink-900) 100%),
    linear-gradient(90deg, rgba(4, 7, 14, 0.72) 0%, transparent 55%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero-inner { position: relative; width: 100%; }

.hero-title {
  font-size: clamp(2.9rem, 8.2vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 15ch;
  margin-bottom: 1.6rem;
}

.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; will-change: transform; }

.hero-copy { max-width: 52ch; font-size: clamp(1rem, 1.3vw, 1.15rem); margin-bottom: 2.2rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-meta-item { display: grid; gap: 0.15rem; }
.hero-meta-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  font-weight: 600;
  color: var(--sand);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-meta-num .suffix { color: var(--gold); }
.hero-meta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

.scroll-hint {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  writing-mode: vertical-rl;
}

.scroll-hint::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2.2s var(--ease-in-out) infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); opacity: 0; }
  40% { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(60px); opacity: 0; }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  min-height: clamp(420px, 60vh, 620px);
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--header-h) + 4rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  isolation: isolate;
}

.page-hero-media { position: absolute; inset: -10% 0 0; z-index: -2; will-change: transform; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.1); }
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 7, 14, 0.82) 0%, rgba(4, 7, 14, 0.5) 40%, rgba(4, 7, 14, 0.9) 100%);
}

.page-hero-title { font-size: clamp(2.4rem, 6vw, 4.6rem); max-width: 18ch; }
.page-hero p { margin-top: 1.25rem; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}
.breadcrumb a { transition: color 0.3s var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb svg { width: 12px; height: 12px; opacity: 0.5; }
.breadcrumb span { color: var(--gold); }

/* --------------------------------------------------------------------------
   9. Search / booking widget
   -------------------------------------------------------------------------- */
.booking-bar {
  position: relative;
  z-index: 20;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 0.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: var(--glass);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.4rem;
  align-items: center;
}

.booking-field {
  display: grid;
  gap: 0.2rem;
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius);
  transition: background-color 0.35s var(--ease);
  position: relative;
  min-width: 0;
}
.booking-field:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: var(--line);
}
.booking-field:hover { background: rgba(255, 255, 255, 0.05); }
.booking-field:hover::after { opacity: 0; }

.booking-field label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.booking-field label svg { width: 11px; height: 11px; }

.booking-field input,
.booking-field select {
  background: none;
  border: 0;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--sand);
  width: 100%;
  min-width: 0;
  outline: none;
  appearance: none;
  cursor: pointer;
}
.booking-field input::placeholder { color: var(--text-3); font-weight: 500; }
.booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  opacity: 0.45;
  cursor: pointer;
}
.booking-field select option { background: var(--ink-700); color: var(--sand); }

.booking-submit { padding: 1.15rem 1.6rem; }

/* --------------------------------------------------------------------------
   10. Marquee
   -------------------------------------------------------------------------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1.5rem, 3vw, 2.25rem);
  border-block: 1px solid var(--line);
  background: var(--ink-800);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: clamp(2rem, 4vw, 3.5rem);
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-reverse .marquee-track { animation-direction: reverse; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-3);
  white-space: nowrap;
  transition: color 0.4s var(--ease);
}
.marquee-item:hover { color: var(--gold); }
.marquee-item::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   11. Cards — destination
   -------------------------------------------------------------------------- */
.card-dest {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  background: var(--surface-2);
  border: 1px solid var(--line);
  min-height: 420px;
  transition: transform 0.65s var(--ease), border-color 0.5s var(--ease), box-shadow 0.65s var(--ease);
}

.card-dest:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 177, 76, 0.4);
  box-shadow: var(--shadow-lg);
}

.card-dest-img { position: absolute; inset: 0; z-index: -2; }
.card-dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
}
.card-dest:hover .card-dest-img img { transform: scale(1.1); }

.card-dest-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 7, 14, 0.1) 0%, rgba(4, 7, 14, 0.5) 45%, rgba(4, 7, 14, 0.94) 100%);
  transition: opacity 0.6s var(--ease);
}

.card-dest-body {
  position: relative;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  gap: 0.55rem;
}

.card-dest-top {
  position: absolute;
  top: clamp(1.4rem, 2.5vw, 1.9rem);
  left: clamp(1.4rem, 2.5vw, 1.9rem);
  right: clamp(1.4rem, 2.5vw, 1.9rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.card-dest-title {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  letter-spacing: -0.03em;
  color: var(--sand);
}

.card-dest-country {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.card-dest-country svg { width: 12px; height: 12px; }

.card-dest-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.5s var(--ease), margin-top 0.6s var(--ease);
}
.card-dest:hover .card-dest-desc { max-height: 6rem; opacity: 1; }

.card-dest-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.card-price { display: flex; align-items: baseline; gap: 0.35rem; }
.card-price .from { font-size: 0.7rem; font-weight: 600; color: var(--text-3); }
.card-price .amt {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--sand);
  letter-spacing: -0.02em;
}

.card-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  color: var(--sand);
  flex-shrink: 0;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease),
              border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.card-arrow svg { width: 15px; height: 15px; }
.card-dest:hover .card-arrow,
.card-pkg:hover .card-arrow,
.card-post:hover .card-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-900);
  transform: rotate(-45deg);
}

/* Tall / feature variants */
.card-dest.tall { min-height: 560px; }
.card-dest.wide { min-height: 380px; }

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 1.5vw, 1.35rem);
}
.bento .span-2 { grid-column: span 2; }
.bento .row-2 { grid-row: span 2; }

/* --------------------------------------------------------------------------
   12. Cards — feature / icon
   -------------------------------------------------------------------------- */
.card {
  position: relative;
  padding: clamp(1.6rem, 2.5vw, 2.1rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.55s var(--ease), border-color 0.5s var(--ease), box-shadow 0.55s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(224, 177, 76, 0.1), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.card:hover { transform: translateY(-6px); border-color: var(--line-2); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(224, 177, 76, 0.2), rgba(224, 177, 76, 0.04));
  border: 1px solid rgba(224, 177, 76, 0.25);
  color: var(--gold);
  margin-bottom: 1.4rem;
  transition: transform 0.55s var(--ease), background-color 0.5s var(--ease);
}
.card-icon svg { width: 23px; height: 23px; }
.card:hover .card-icon { transform: scale(1.08) rotate(-6deg); }

.card-icon.aqua {
  background: linear-gradient(140deg, rgba(62, 208, 196, 0.2), rgba(62, 208, 196, 0.04));
  border-color: rgba(62, 208, 196, 0.25);
  color: var(--aqua);
}

.card h3 { margin-bottom: 0.7rem; font-size: 1.25rem; }
.card p { font-size: 0.9rem; line-height: 1.65; }

.card-num {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  letter-spacing: -0.04em;
  z-index: -1;
}

.card-list { display: grid; gap: 0.6rem; margin-top: 1.3rem; }
.card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-2);
}
.card-list svg { width: 15px; height: 15px; color: var(--aqua); flex-shrink: 0; margin-top: 4px; }

/* --------------------------------------------------------------------------
   13. Cards — package / pricing
   -------------------------------------------------------------------------- */
.card-pkg {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: transform 0.55s var(--ease), border-color 0.5s var(--ease), box-shadow 0.55s var(--ease);
}
.card-pkg:hover {
  transform: translateY(-8px);
  border-color: rgba(224, 177, 76, 0.35);
  box-shadow: var(--shadow-lg);
}

.card-pkg-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}
.card-pkg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.card-pkg:hover .card-pkg-media img { transform: scale(1.08); }
.card-pkg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 16, 30, 0.85));
}

.card-pkg-tags {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  z-index: 2;
}

/* Chips sit over unpredictable photography — give them an opaque backing so
   they stay legible against a bright sky as well as a dark one. */
.card-pkg-tags .chip,
.card-post-cat {
  background: rgba(4, 7, 14, 0.66);
  border-color: rgba(224, 177, 76, 0.45);
  color: var(--gold-2);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.card-pkg-loc {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-2);
}
.card-pkg-loc svg { width: 12px; height: 12px; }

.card-pkg-body {
  padding: clamp(1.3rem, 2vw, 1.7rem);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.85rem;
}

.card-pkg-body h3 { font-size: 1.3rem; letter-spacing: -0.03em; }
.card-pkg-body > p { font-size: 0.87rem; line-height: 1.6; }

.pkg-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  padding-block: 0.35rem;
}
.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-3);
}
.pkg-meta-item svg { width: 13px; height: 13px; color: var(--gold); }

.card-pkg-foot {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.rating { display: flex; align-items: center; gap: 0.35rem; font-size: 0.8rem; font-weight: 700; color: var(--sand); }
.rating svg { width: 13px; height: 13px; color: var(--gold); }
.rating span { color: var(--text-3); font-weight: 500; }

/* Pricing tier card */
.card-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.8rem, 2.6vw, 2.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  transition: transform 0.55s var(--ease), border-color 0.5s var(--ease), box-shadow 0.55s var(--ease);
}
.card-tier:hover { transform: translateY(-6px); border-color: var(--line-2); }

.card-tier.featured {
  border-color: rgba(224, 177, 76, 0.45);
  background:
    radial-gradient(600px circle at 50% -10%, rgba(224, 177, 76, 0.16), transparent 60%),
    linear-gradient(170deg, var(--surface-2), var(--surface));
  box-shadow: var(--glow-gold);
}

.tier-flag {
  position: absolute;
  top: -1px;
  right: 1.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: var(--ink-900);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tier-name { font-size: 1.35rem; margin-bottom: 0.4rem; }
.tier-desc { font-size: 0.85rem; min-height: 2.7em; }

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin: 1.4rem 0 0.35rem;
}
.tier-price .cur { font-size: 1rem; font-weight: 700; color: var(--text-2); }
.tier-price .val {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--sand);
  letter-spacing: -0.04em;
  line-height: 1;
}
.tier-price .per { font-size: 0.8rem; color: var(--text-3); font-weight: 600; }

.tier-features { display: grid; gap: 0.75rem; margin: 1.6rem 0 2rem; }
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.86rem;
  color: var(--text-2);
}
.tier-features svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; }
.tier-features .yes svg { color: var(--aqua); }
.tier-features .no { color: var(--text-3); opacity: 0.6; }
.tier-features .no svg { color: var(--text-3); }

.card-tier .btn { margin-top: auto; }

/* --------------------------------------------------------------------------
   14. Split feature blocks
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.split.reverse .split-media { order: 2; }

.split-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
}

.split-media-stack { position: relative; aspect-ratio: 1 / 1; }
.split-media-stack .m1,
.split-media-stack .m2 {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-media-stack .m1 { inset: 0 22% 18% 0; }
.split-media-stack .m2 {
  inset: 42% 0 0 40%;
  border: 6px solid var(--ink-900);
  border-radius: var(--radius-lg);
}
.split-media-stack img { width: 100%; height: 100%; object-fit: cover; }

.media-badge {
  position: absolute;
  z-index: 3;
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.15rem;
}
.media-badge .num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.media-badge .lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.media-badge.bl { left: -1.5rem; bottom: 2rem; }
.media-badge.tr { right: -1.5rem; top: 2rem; }

/* Feature list */
.feature-list { display: grid; gap: 1.5rem; margin-top: 2.2rem; }
.feature-item { display: flex; gap: 1.1rem; }
.feature-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(224, 177, 76, 0.12);
  border: 1px solid rgba(224, 177, 76, 0.22);
  color: var(--gold);
}
.feature-item-icon svg { width: 19px; height: 19px; }
.feature-item h4 { font-size: 1.05rem; margin-bottom: 0.3rem; }
.feature-item p { font-size: 0.86rem; line-height: 1.6; }

/* --------------------------------------------------------------------------
   15. Stats
   -------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  padding: clamp(1.75rem, 3vw, 2.6rem);
  background: var(--surface);
  display: grid;
  gap: 0.4rem;
  transition: background-color 0.5s var(--ease);
}
.stat:hover { background: var(--surface-2); }

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 3.1rem);
  font-weight: 600;
  color: var(--sand);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-num .suffix { color: var(--gold); }
.stat-label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.stat-desc { font-size: 0.83rem; color: var(--text-3); line-height: 1.5; }

/* --------------------------------------------------------------------------
   16. Testimonials
   -------------------------------------------------------------------------- */
.testi {
  position: relative;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--surface-2), var(--surface));
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  height: 100%;
  transition: transform 0.55s var(--ease), border-color 0.5s var(--ease);
}
.testi:hover { transform: translateY(-5px); border-color: var(--line-2); }

.testi-quote {
  position: absolute;
  top: 1.2rem;
  right: 1.6rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: rgba(224, 177, 76, 0.12);
  pointer-events: none;
}

.testi-stars { display: flex; gap: 0.2rem; color: var(--gold); }
.testi-stars svg { width: 15px; height: 15px; }

.testi-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.3vw, 1.13rem);
  font-weight: 400;
  line-height: 1.6;
  color: var(--sand-2);
  letter-spacing: -0.01em;
  flex: 1;
}

.testi-person { display: flex; align-items: center; gap: 0.85rem; padding-top: 1.2rem; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(224, 177, 76, 0.4);
  flex-shrink: 0;
}
.testi-name { font-size: 0.9rem; font-weight: 700; color: var(--sand); line-height: 1.3; }
.testi-role { font-size: 0.76rem; color: var(--text-3); }

/* Avatar fallback (initials) */
.avatar-fallback {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-900);
  background: linear-gradient(140deg, var(--gold-2), var(--gold-3));
  letter-spacing: -0.02em;
}

/* --------------------------------------------------------------------------
   17. Timeline / process
   -------------------------------------------------------------------------- */
.timeline { position: relative; display: grid; gap: 0; }
.timeline::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(224, 177, 76, 0.1));
}

.tl-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.5rem;
  padding-block: 1.4rem;
}

.tl-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink-800);
  border: 1px solid rgba(224, 177, 76, 0.4);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 1;
  flex-shrink: 0;
  transition: background-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.tl-item:hover .tl-dot {
  background: var(--gold);
  color: var(--ink-900);
  transform: scale(1.08);
}

.tl-body h4 { font-size: 1.2rem; margin-bottom: 0.45rem; }
.tl-body p { font-size: 0.88rem; line-height: 1.65; max-width: 60ch; }
.tl-time {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
}

/* Itinerary day (horizontal) */
.itinerary { display: grid; gap: 1rem; }
.itin-day {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.45s var(--ease), background-color 0.45s var(--ease);
}
.itin-day:hover { border-color: rgba(224, 177, 76, 0.35); background: var(--surface-2); }
.itin-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 0.25rem;
  white-space: nowrap;
}
.itin-day h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.itin-day p { font-size: 0.86rem; }

/* --------------------------------------------------------------------------
   18. Accordion / FAQ
   -------------------------------------------------------------------------- */
.accordion { display: grid; gap: 0.75rem; }

.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.45s var(--ease), background-color 0.45s var(--ease);
}
.acc-item.open { border-color: rgba(224, 177, 76, 0.4); background: var(--surface-2); }

.acc-head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.3rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  font-weight: 600;
  color: var(--sand);
  letter-spacing: -0.02em;
  transition: color 0.35s var(--ease);
}
.acc-head:hover { color: var(--gold); }

.acc-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  transition: background-color 0.45s var(--ease), border-color 0.45s var(--ease), transform 0.45s var(--ease);
}
.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
}
.acc-icon::before { width: 11px; height: 1.5px; }
.acc-icon::after { width: 1.5px; height: 11px; }
.acc-item.open .acc-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-900);
  transform: rotate(180deg);
}
.acc-item.open .acc-icon::after { transform: scaleY(0); opacity: 0; }

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease);
}
.acc-item.open .acc-panel { grid-template-rows: 1fr; }
.acc-panel > div { overflow: hidden; }
.acc-panel p {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 70ch;
}

/* --------------------------------------------------------------------------
   19. Filters / tabs
   -------------------------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.62rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-2);
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}
.filter-btn:hover { border-color: var(--line-2); color: var(--sand); transform: translateY(-2px); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-color: transparent;
  color: var(--ink-900);
  font-weight: 700;
}
.filter-btn .count { opacity: 0.6; font-size: 0.75rem; margin-left: 0.3rem; }

.filter-empty {
  grid-column: 1 / -1;
  padding: 4rem 1rem;
  text-align: center;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius-lg);
}
.filter-empty h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }

/* Search results banner (packages page) */
.search-banner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(224, 177, 76, 0.35);
  background:
    radial-gradient(600px circle at 0% 0%, rgba(224, 177, 76, 0.1), transparent 60%),
    var(--surface-2);
}
.search-banner h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* --------------------------------------------------------------------------
   20. Blog cards
   -------------------------------------------------------------------------- */
.card-post {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  height: 100%;
  transition: transform 0.55s var(--ease), border-color 0.5s var(--ease), box-shadow 0.55s var(--ease);
}
.card-post:hover {
  transform: translateY(-7px);
  border-color: rgba(224, 177, 76, 0.35);
  box-shadow: var(--shadow-lg);
}

.card-post-media { aspect-ratio: 16 / 9; overflow: hidden; position: relative; flex-shrink: 0; }
.card-post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.card-post:hover .card-post-media img { transform: scale(1.07); }

.card-post-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.card-post-body { padding: clamp(1.3rem, 2vw, 1.6rem); display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.card-post-body h3 { font-size: 1.2rem; line-height: 1.3; }
.card-post-body > p { font-size: 0.86rem; line-height: 1.6; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 600;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.post-meta .sep { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* Featured post */
.post-featured {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.post-featured:hover { border-color: rgba(224, 177, 76, 0.4); box-shadow: var(--shadow-lg); }
.post-featured-media { position: relative; overflow: hidden; min-height: 380px; }
.post-featured-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.post-featured:hover .post-featured-media img { transform: scale(1.06); }
.post-featured-body {
  padding: clamp(1.8rem, 3.5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}
.post-featured-body h2 { font-size: clamp(1.6rem, 2.6vw, 2.3rem); line-height: 1.15; }

/* Article body */
.article { max-width: 760px; margin-inline: auto; }
.article > * + * { margin-top: 1.5rem; }
.article p { font-size: 1.03rem; line-height: 1.85; color: var(--text-2); }
.article h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-top: 3rem; }
.article h3 { font-size: clamp(1.25rem, 1.9vw, 1.5rem); margin-top: 2.2rem; }
.article ul { display: grid; gap: 0.85rem; padding-left: 0; }
.article ul li {
  position: relative;
  padding-left: 1.7rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
}
.article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.article strong { color: var(--sand); font-weight: 700; }
.article a:not(.btn) { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.article-figure { margin-block: 2.5rem; }
.article-figure img { width: 100%; border-radius: var(--radius-lg); }
.article-figure figcaption {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  color: var(--text-3);
  text-align: center;
  font-style: italic;
}

.pullquote {
  margin-block: 2.5rem;
  padding: 1.8rem 2rem;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg, rgba(224, 177, 76, 0.08), transparent);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.5;
  color: var(--sand);
  font-style: italic;
  letter-spacing: -0.01em;
}
.pullquote cite {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.callout {
  padding: 1.5rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid rgba(62, 208, 196, 0.25);
  background: rgba(62, 208, 196, 0.06);
  margin-block: 2rem;
}
.callout h4 {
  font-size: 1rem;
  color: var(--aqua-2);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.callout h4 svg { width: 17px; height: 17px; }
.callout p { font-size: 0.9rem; }

/* --------------------------------------------------------------------------
   21. Team
   -------------------------------------------------------------------------- */
.card-team {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--surface-2);
  isolation: isolate;
}
.card-team img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 1s var(--ease), filter 0.6s var(--ease);
}
.card-team:hover img { transform: scale(1.07); filter: grayscale(0); }
.card-team::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 7, 14, 0.95));
  pointer-events: none;
}
.card-team-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 1.4rem;
}
.card-team h4 { font-size: 1.15rem; margin-bottom: 0.15rem; }
.card-team .role {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.card-team .bio {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease), opacity 0.5s var(--ease), margin-top 0.5s var(--ease);
}
.card-team:hover .bio { max-height: 8rem; opacity: 1; margin-top: 0.7rem; }

/* --------------------------------------------------------------------------
   22. Forms
   -------------------------------------------------------------------------- */
.form { display: grid; gap: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }

.field { display: grid; gap: 0.45rem; }
.field label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}
.field label .req { color: var(--coral); }

.input,
.textarea,
.select {
  width: 100%;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  color: var(--sand);
  font-size: 0.92rem;
  font-family: var(--font-sans);
  transition: border-color 0.35s var(--ease), background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.input::placeholder,
.textarea::placeholder { color: var(--text-3); }

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(224, 177, 76, 0.15);
}

.textarea { min-height: 150px; resize: vertical; line-height: 1.6; }

.select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E819C' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 15px;
  padding-right: 2.8rem;
}
.select option { background: var(--ink-700); color: var(--sand); }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.83rem;
  color: var(--text-2);
  cursor: pointer;
  line-height: 1.55;
}
.checkbox input {
  appearance: none;
  width: 19px;
  height: 19px;
  border-radius: 5px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.checkbox input:checked { background: var(--gold); border-color: var(--gold); }
.checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--ink-900);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

.form-note { font-size: 0.78rem; color: var(--text-3); }

.form-status {
  padding: 0.9rem 1.15rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 0.6rem;
}
.form-status svg { width: 17px; height: 17px; flex-shrink: 0; }
.form-status.show { display: flex; }
.form-status.ok {
  background: rgba(62, 208, 196, 0.1);
  border: 1px solid rgba(62, 208, 196, 0.3);
  color: var(--aqua-2);
}
.form-status.err {
  background: rgba(255, 122, 89, 0.1);
  border: 1px solid rgba(255, 122, 89, 0.3);
  color: var(--coral);
}

.input.invalid,
.textarea.invalid,
.select.invalid { border-color: var(--coral); }

.field-error {
  font-size: 0.74rem;
  color: var(--coral);
  font-weight: 600;
  display: none;
}
.field-error.show { display: block; }

/* Honeypot: off-canvas rather than display:none, which bots increasingly skip. */
.hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Newsletter inline */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.5rem;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
  max-width: 480px;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.newsletter-form:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(224, 177, 76, 0.14);
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  background: none;
  border: 0;
  outline: none;
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  color: var(--sand);
}
.newsletter-form input::placeholder { color: var(--text-3); }

/* --------------------------------------------------------------------------
   23. Contact
   -------------------------------------------------------------------------- */
.contact-card {
  display: flex;
  gap: 1.15rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.45s var(--ease), transform 0.45s var(--ease), background-color 0.45s var(--ease);
}
.contact-card:hover {
  border-color: rgba(224, 177, 76, 0.4);
  transform: translateY(-4px);
  background: var(--surface-2);
}
.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(224, 177, 76, 0.12);
  border: 1px solid rgba(224, 177, 76, 0.25);
  color: var(--gold);
  flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h4 {
  font-size: 0.74rem;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.contact-card p, .contact-card a { font-size: 0.95rem; color: var(--sand); line-height: 1.55; font-weight: 500; }
.contact-card a:hover { color: var(--gold); }
.contact-card .sub { font-size: 0.8rem; color: var(--text-3); margin-top: 0.3rem; font-weight: 400; }

.map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  background: var(--surface-2);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.6) invert(0.92) contrast(0.85) hue-rotate(180deg); }

.map-pin {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 2;
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius);
  background: var(--glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
  max-width: 260px;
}
.map-pin h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.map-pin p { font-size: 0.8rem; color: var(--text-2); line-height: 1.5; }

.hours-list { display: grid; gap: 0.75rem; }
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.87rem;
}
.hours-row:last-child { border-bottom: 0; padding-bottom: 0; }
.hours-row .day { color: var(--text-2); font-weight: 600; }
.hours-row .time { color: var(--sand); font-weight: 600; }
.hours-row.closed .time { color: var(--text-3); }

/* --------------------------------------------------------------------------
   24. CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(2.75rem, 6vw, 5.5rem) clamp(1.6rem, 5vw, 4.5rem);
  border: 1px solid var(--line-2);
}
.cta-band-media { position: absolute; inset: 0; z-index: -2; }
.cta-band-media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(4, 7, 14, 0.95) 20%, rgba(4, 7, 14, 0.62) 100%);
}
.cta-band-inner { max-width: 620px; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); margin-bottom: 1.1rem; }

/* --------------------------------------------------------------------------
   25. Footer
   -------------------------------------------------------------------------- */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  background: var(--ink-800);
  overflow: hidden;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer-brand { max-width: 340px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-block: 1.3rem; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.footer-links { display: grid; gap: 0.75rem; }
.footer-links a {
  font-size: 0.88rem;
  color: var(--text-2);
  transition: color 0.35s var(--ease), padding-left 0.35s var(--ease);
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }

.footer-contact { display: grid; gap: 1rem; }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.88rem; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 4px; }
.footer-contact-item a, .footer-contact-item address {
  color: var(--text-2);
  font-style: normal;
  line-height: 1.6;
  transition: color 0.35s var(--ease);
}
.footer-contact-item a:hover { color: var(--gold); }

.socials { display: flex; gap: 0.55rem; }
.social {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-2);
  color: var(--text-2);
  transition: all 0.4s var(--ease);
}
.social svg { width: 16px; height: 16px; }
.social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink-900);
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-block: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { transition: color 0.35s var(--ease); }
.footer-legal a:hover { color: var(--gold); }

.footer-watermark {
  position: absolute;
  left: 50%;
  bottom: -3.5vw;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 15rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.018);
  white-space: nowrap;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  line-height: 1;
}

/* --------------------------------------------------------------------------
   26. Trust badges
   -------------------------------------------------------------------------- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-3);
  transition: color 0.4s var(--ease);
}
.trust-item:hover { color: var(--gold); }
.trust-item svg { width: 22px; height: 22px; }

/* --------------------------------------------------------------------------
   27. Gallery
   -------------------------------------------------------------------------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.6rem, 1vw, 1rem);
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--surface-2);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item.tall { aspect-ratio: 1 / 2; grid-row: span 2; }
.gallery-item.wide { aspect-ratio: 2 / 1; grid-column: span 2; }
.gallery-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(4, 7, 14, 0.9));
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sand);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover .gallery-cap { transform: translateY(0); }

/* --------------------------------------------------------------------------
   28. Animation utilities
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; will-change: transform, opacity; }
.no-js [data-reveal] { opacity: 1; }

/* The resting state lives in a class, not an inline style: Motion clears the
   inline properties it managed once an animation finishes, which would drop the
   element back to opacity:0. Specificity (0,2,0) beats [data-reveal] (0,1,0),
   and a normal declaration still loses to the running animation. */
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  filter: none;
  will-change: auto;
}

[data-parallax] { will-change: transform; }

.motion-ready [data-reveal] { opacity: 0; }

/* Fallback if JS fails to boot within reason */
.js-failed [data-reveal] { opacity: 1 !important; transform: none !important; }

/* Cursor glow */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(224, 177, 76, 0.07), transparent 62%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.6s var(--ease);
  mix-blend-mode: screen;
}
body:hover .cursor-glow { opacity: 1; }

/* --------------------------------------------------------------------------
   29. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: span 2; max-width: none; }
  .booking-bar { grid-template-columns: repeat(2, 1fr); }
  .booking-submit { grid-column: span 2; }
  .booking-field:nth-child(2)::after { display: none; }
}

@media (max-width: 1024px) {
  :root { --header-h: 70px; }

  .nav, .header-phone { display: none; }
  .burger { display: block; }

  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento .span-2 { grid-column: span 2; }
  .bento .row-2 { grid-row: span 1; }
  .card-dest.tall { min-height: 440px; }

  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-media { order: 0; }
  .split-media { aspect-ratio: 16 / 11; }
  .split-media-stack { aspect-ratio: 16 / 11; }
  .media-badge.bl { left: 1rem; }
  .media-badge.tr { right: 1rem; }

  .post-featured { grid-template-columns: 1fr; }
  .post-featured-media { min-height: 260px; }

  .gallery { grid-template-columns: repeat(3, 1fr); }
  .scroll-hint { display: none; }
  .cursor-glow { display: none; }
}

@media (max-width: 760px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .bento { grid-template-columns: 1fr; }
  .bento .span-2 { grid-column: span 1; }
  .card-dest, .card-dest.tall, .card-dest.wide { min-height: 400px; }

  .booking-bar { grid-template-columns: 1fr; padding: 0.75rem; }
  .booking-submit { grid-column: span 1; }
  .booking-field::after { display: none !important; }
  .booking-field { border-bottom: 1px solid var(--line); border-radius: var(--radius-sm); }
  .booking-field:nth-last-child(2) { border-bottom: 0; }

  .form-row { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.5rem 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .timeline::before { left: 19px; }
  .tl-item { grid-template-columns: 40px 1fr; gap: 1.1rem; }
  .tl-dot { width: 40px; height: 40px; font-size: 0.85rem; }

  .itin-day { grid-template-columns: 1fr; gap: 0.5rem; }

  .testi-quote { font-size: 3.5rem; }
  .cta-band-media::after { background: linear-gradient(180deg, rgba(4, 7, 14, 0.8), rgba(4, 7, 14, 0.95)); }
  .acc-head { padding: 1.1rem 1.15rem; gap: 1rem; }
  .acc-panel p { padding: 0 1.15rem 1.2rem; }
}

/* Below ~620px the logo + CTA + burger no longer fit on one line and the
   burger gets pushed off-screen. The drawer carries the same CTA. */
@media (max-width: 620px) {
  .header-actions .btn { display: none; }
  .logo-name { font-size: 0.95rem; }
  .logo-mark { width: 34px; height: 34px; border-radius: 10px; }
  .logo-mark svg { width: 18px; height: 18px; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  .btn { padding: 0.9rem 1.4rem; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius); padding: 0.75rem; }
  .newsletter-form .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   30. Motion preferences & print
   -------------------------------------------------------------------------- */
@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;
    scroll-behavior: auto !important;
  }

  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
  .cursor-glow { display: none; }
  .hero-media img, .page-hero-media img, .split-media img { transform: none; }
}

@media print {
  .header, .drawer, .scroll-progress, .cursor-glow, .footer-watermark, .scroll-hint { display: none !important; }
  body { background: #fff; color: #000; }
  [data-reveal] { opacity: 1 !important; }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1001;
  padding: 0.8rem 1.3rem;
  border-radius: 0 0 10px 10px;
  background: var(--gold);
  color: var(--ink-900);
  font-size: 0.85rem;
  font-weight: 700;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 0; }
