/* ==========================================================================
   MARATHON MERMAID + MORADA MERMAID — DESIGN SYSTEM
   A1A Marketing & Consulting · Two Mermaids. Two Keys Destinations. One Family.
   All tokens + components per STRATEGY.md §2. Self-hosted fonts, no CDNs.
   ========================================================================== */

/* ------------------------------------------------------------------ FONTS */
@font-face {
  font-family: "Sentient";
  src: url("/assets/fonts/Sentient-Variable.woff2") format("woff2");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sentient";
  src: url("/assets/fonts/Sentient-VariableItalic.woff2") format("woff2");
  font-weight: 200 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/Satoshi-Variable.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("/assets/fonts/Satoshi-VariableItalic.woff2") format("woff2");
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Chillax";
  src: url("/assets/fonts/Chillax-Variable.woff2") format("woff2");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------------- TOKENS */
:root {
  /* Brand palette (from the twin logos) */
  --navy-900: #132a4a;
  --navy-700: #27447c;
  --peri-500: #4c66b0;
  --lagoon-500: #1997b8;
  --lagoon-100: #e3f4f8;
  --seafoam-300: #a9d4b4;
  --seafoam-100: #eef7f0;
  --coral-500: #f0704a;
  --coral-600: #d95a35;
  --sunset-400: #f5a15c;
  --sand-100: #faf6ec;
  --ink-600: #3d4a5c;
  --white: #ffffff;

  /* Semantic */
  --bg: var(--white);
  --text: var(--ink-600);
  --heading: var(--navy-900);
  --link: var(--peri-500);
  --link-hover: var(--navy-700);

  /* Type families */
  --font-display: "Sentient", Georgia, "Times New Roman", serif;
  --font-body: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-accent: "Chillax", "Satoshi", sans-serif;

  /* Fluid type scale */
  --fs-hero: clamp(2.6rem, 6vw, 4.6rem);
  --fs-h1: clamp(2.3rem, 5vw, 3.6rem);
  --fs-h2: clamp(2rem, 3.6vw, 3rem);
  --fs-h3: clamp(1.4rem, 2.4vw, 1.9rem);
  --fs-h4: clamp(1.15rem, 1.6vw, 1.35rem);
  --fs-body: 1.0625rem;
  --fs-sm: 0.9375rem;
  --fs-xs: 0.8125rem;
  --fs-eyebrow: 0.8125rem;

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 820px;
  --container-wide: 1440px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(19, 42, 74, 0.08);
  --shadow: 0 10px 30px rgba(19, 42, 74, 0.12);
  --shadow-lg: 0 22px 60px rgba(19, 42, 74, 0.18);

  /* Timing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.45s;

  /* Chrome heights */
  --nav-h: 76px;
  --bookbar-h: 68px;
}

/* ------------------------------------------------------------------ RESET */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: var(--link); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--link-hover); }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }

/* --------------------------------------------------------------- HEADINGS */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); line-height: 1.2; }
p { max-width: 68ch; }

/* --------------------------------------------------------- ACCESSIBILITY */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--navy-900);
  color: var(--white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: 0 0 var(--radius-sm) 0;
  font-family: var(--font-accent);
  font-weight: 600;
}
.skip-link:focus { left: 0; color: var(--white); }

:focus-visible {
  outline: 3px solid var(--peri-500);
  outline-offset: 3px;
  border-radius: 3px;
}
.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;
}

/* ------------------------------------------------------------ UTILITIES */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--sp-5); }
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }

.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--sand { background: var(--sand-100); }
.section--lagoon-tint { background: var(--lagoon-100); }
.section--seafoam-tint { background: var(--seafoam-100); }
.section--navy { background: var(--navy-900); color: rgba(255,255,255,0.86); }
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.nowrap { white-space: nowrap; }
.br-desktop { display: none; }
@media (min-width: 741px) { .br-desktop { display: inline; } }
.mt-2 { margin-top: var(--sp-2); } .mt-3 { margin-top: var(--sp-3); }
.mt-4 { margin-top: var(--sp-4); } .mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); } .mt-7 { margin-top: var(--sp-7); }
.mb-3 { margin-bottom: var(--sp-3); } .mb-4 { margin-bottom: var(--sp-4); }
.mb-5 { margin-bottom: var(--sp-5); } .mb-6 { margin-bottom: var(--sp-6); }
.measure { max-width: 62ch; } .measure-wide { max-width: 74ch; }

/* Section eyebrow label (Chillax, uppercase, tracked) */
.eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lagoon-500);
  margin-bottom: var(--sp-3);
}
.eyebrow--coral { color: var(--coral-600); }
.eyebrow--navy { color: var(--navy-700); }
.eyebrow--light { color: var(--seafoam-300); }

.section-head { max-width: 760px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.text-center { margin-inline: auto; }
.section-head p { color: var(--ink-600); font-size: 1.125rem; }
.section--navy .section-head p { color: rgba(255,255,255,0.8); }

.lede { font-size: 1.2rem; line-height: 1.65; color: var(--ink-600); }

/* Grid helpers */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-3 { gap: var(--sp-3); } .gap-4 { gap: var(--sp-4); } .gap-5 { gap: var(--sp-5); }
.cta-row { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.cta-row--center { justify-content: center; }

/* --------------------------------------------------------------- BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  line-height: 1;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.2s var(--ease), color 0.2s var(--ease),
              border-color 0.2s var(--ease);
  text-align: center;
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 480px) {
  .cta-row .btn, .hero__cta .btn { white-space: normal; line-height: 1.3; }
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 0.7rem 1.2rem; font-size: 0.9375rem; }
.btn--lg { padding: 1.15rem 2.2rem; font-size: 1.0625rem; }
.btn--block { width: 100%; }

/* Solid coral = PRIMARY CTA */
.btn-coral {
  background: var(--coral-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(240, 112, 74, 0.32);
}
.btn-coral:hover { background: var(--coral-600); color: var(--white); box-shadow: 0 12px 26px rgba(217, 90, 53, 0.4); }

/* Lagoon = Marathon-accented primary */
.btn-lagoon {
  background: var(--lagoon-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(25, 151, 184, 0.3);
}
.btn-lagoon:hover { background: #147a96; color: var(--white); box-shadow: 0 12px 26px rgba(25, 151, 184, 0.4); }

/* Navy solid (neutral umbrella) */
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); color: var(--white); }

/* Ghost = outline */
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-ghost:hover { background: var(--navy-900); color: var(--white); }

/* Ghost on dark/photo backgrounds */
.btn-ghost--light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}
.btn-ghost--light:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }

/* ------------------------------------------------------------ LOCATION CHIPS */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-pill);
  line-height: 1;
}
.chip--marathon { background: var(--lagoon-100); color: #0f6d85; }
.chip--islamorada { background: #fdeae2; color: var(--coral-600); }
.chip--neutral { background: var(--seafoam-100); color: var(--navy-700); }
.chip--ghost { background: rgba(255,255,255,0.9); color: var(--navy-900); box-shadow: var(--shadow-sm); }

/* Small detail chips (duration / ages) */
.detail-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy-700);
  background: var(--seafoam-100);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
}
.detail-chip svg { width: 16px; height: 16px; flex: none; }

/* ------------------------------------------------------------ TRUST BAR */
.trust-bar {
  background: var(--navy-900);
  color: var(--white);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.75rem);
  padding-block: var(--sp-5);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.25;
}
.trust-item__figure {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.trust-item__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--seafoam-300);
}
.trust-bar__divider { width: 1px; height: 34px; background: rgba(255,255,255,0.2); }
@media (max-width: 720px) { .trust-bar__divider { display: none; } }

/* Trust bar on light bg variant */
.trust-bar--light { background: var(--sand-100); color: var(--navy-900); }
.trust-bar--light .trust-item__figure { color: var(--navy-900); }
.trust-bar--light .trust-item__label { color: var(--lagoon-500); }
.trust-bar--light .trust-bar__divider { background: rgba(19,42,74,0.15); }

/* ------------------------------------------------------------ MERMAID BADGE */
.mermaid-badge {
  width: var(--badge-size, 128px);
  height: var(--badge-size, 128px);
  position: relative;
  flex: none;
}
.mermaid-badge svg { width: 100%; height: 100%; }
.mermaid-badge__ring-text { fill: var(--navy-900); font-family: var(--font-accent); font-weight: 600; letter-spacing: 0.02em; }
.mermaid-badge--light .mermaid-badge__ring text { fill: var(--white); }
.mermaid-badge--light .badge-ring-circle { stroke: var(--seafoam-300); }
.mermaid-badge--light .badge-anchor { stroke: var(--seafoam-300); fill: none; }

/* ------------------------------------------------------------ STICKY NAV */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  height: var(--nav-h);
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}
.brand { display: inline-flex; align-items: center; gap: var(--sp-3); }
.brand__logo { height: 46px; width: auto; transition: filter var(--dur) var(--ease); }
.brand__logos { display: inline-flex; align-items: center; gap: var(--sp-4); }

/* Transparent-over-hero state: white text + drop shadow for legibility */
.site-header:not(.scrolled) { background: transparent; }
.site-header:not(.scrolled) .nav-link,
.site-header:not(.scrolled) .nav-toggle-label { color: var(--white); text-shadow: 0 1px 6px rgba(0,0,0,0.35); }
.site-header:not(.scrolled) .brand__logo { filter: brightness(0) invert(1) drop-shadow(0 2px 6px rgba(0,0,0,0.4)); }
.site-header:not(.scrolled) .hamburger span { background: var(--white); }

/* Solid state on scroll */
.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.site-header.scrolled .nav-link,
.site-header.scrolled .nav-toggle-label { color: var(--navy-900); text-shadow: none; }
.site-header.scrolled .brand__logo { filter: none; }
.site-header.scrolled .hamburger span { background: var(--navy-900); }

/* Primary nav */
.primary-nav { display: flex; align-items: center; gap: clamp(0.5rem, 1.4vw, 1.4rem); }
.nav-list { display: flex; align-items: center; gap: clamp(0.4rem, 1.2vw, 1.1rem); }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--navy-900);
  padding: 0.6rem 0.5rem;
  background: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease);
}
.nav-link:hover, .nav-link[aria-expanded="true"] { color: var(--lagoon-500); }
.nav-link .caret { width: 12px; height: 12px; transition: transform 0.25s var(--ease); }
.nav-link[aria-expanded="true"] .caret { transform: rotate(180deg); }

/* Mega-dropdown */
.has-dropdown > .dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 20;
}
.has-dropdown > .dropdown::before {
  content: "";
  position: absolute;
  top: -16px; left: 0; right: 0; height: 16px;
}
.has-dropdown.open > .dropdown,
.has-dropdown:hover > .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown__head {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lagoon-500);
  padding: 0 var(--sp-3) var(--sp-2);
}
.dropdown__list { display: flex; flex-direction: column; gap: 2px; }
.dropdown__link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.6rem var(--sp-3);
  border-radius: var(--radius-sm);
  color: var(--navy-900);
  transition: background 0.18s var(--ease);
}
.dropdown__link:hover { background: var(--seafoam-100); color: var(--navy-900); }
.dropdown__link strong { font-weight: 700; font-size: 0.95rem; }
.dropdown__link span { font-size: var(--fs-xs); color: var(--ink-600); }
.dropdown__foot { margin-top: var(--sp-3); padding-top: var(--sp-3); border-top: 1px solid var(--seafoam-100); }
.dropdown--islamorada .dropdown__head { color: var(--coral-600); }

/* BOOK NOW nav button with its own dropdown */
.nav-book { position: relative; }
.nav-book__btn { padding: 0.7rem 1.3rem; }
.nav-book__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-3);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 20;
}
.nav-book.open .nav-book__menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  z-index: 1100;
}
.hamburger span {
  display: block; height: 2.5px; width: 100%;
  background: var(--navy-900); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.drawer-open .hamburger span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.drawer-open .hamburger span:nth-child(2) { opacity: 0; }
.drawer-open .hamburger span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------------------- MOBILE FULL-SCREEN DRAWER */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: var(--white);
  padding: calc(var(--nav-h) + 1rem) clamp(1.25rem, 6vw, 3rem) 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s var(--ease), visibility 0.4s;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.drawer-open .mobile-drawer { transform: translateX(0); visibility: visible; }
.drawer-book-buttons { display: grid; gap: var(--sp-3); }
.drawer-book-buttons .btn { padding: 1.25rem 1.5rem; font-size: 1.05rem; letter-spacing: 0.04em; }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav > li { border-bottom: 1px solid var(--seafoam-100); }
.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
  text-align: left;
}
.drawer-sub { display: none; padding: 0 0 var(--sp-3) var(--sp-4); flex-direction: column; gap: 2px; }
.drawer-group.open .drawer-sub { display: flex; }
.drawer-group.open .drawer-link .caret { transform: rotate(180deg); }
.drawer-sub a { padding: 0.5rem 0; color: var(--ink-600); font-weight: 600; }
.drawer-link .caret { width: 16px; height: 16px; transition: transform 0.25s var(--ease); }

body.drawer-open { overflow: hidden; }

@media (max-width: 1024px) {
  .primary-nav .nav-list, .primary-nav .nav-book { display: none; }
  .hamburger { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-drawer { display: none; }
}

/* ---------------------------------------------------------------- VIDEO HERO */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
.hero--short { min-height: 72vh; }
.hero__media, .hero__media video, .hero__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(19,42,74,0.72) 0%, rgba(19,42,74,0.28) 42%, rgba(19,42,74,0.12) 70%, rgba(19,42,74,0.28) 100%);
}
.hero__scrim--left {
  background:
    linear-gradient(to top, rgba(19,42,74,0.68) 0%, rgba(19,42,74,0.18) 55%, rgba(19,42,74,0.32) 100%),
    linear-gradient(to right, rgba(19,42,74,0.5) 0%, rgba(19,42,74,0) 60%);
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 4.5rem) var(--sp-5) clamp(3rem, 7vw, 5rem);
}
.hero__content { max-width: 760px; }
.hero h1 {
  color: var(--white);
  font-size: var(--fs-hero);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.02;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
}
.hero__eyebrow { color: var(--seafoam-300); text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero__sub {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  font-weight: 500;
  color: var(--white);
  margin-top: var(--sp-4);
  text-shadow: 0 2px 14px rgba(0,0,0,0.4);
}
.hero__text {
  max-width: 60ch;
  margin-top: var(--sp-4);
  color: rgba(255,255,255,0.94);
  font-size: 1.075rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
}
.hero__cta { margin-top: var(--sp-6); }
.hero__badge { position: absolute; top: calc(var(--nav-h) + 1.5rem); right: clamp(1rem,4vw,3rem); z-index: 2; --badge-size: 116px; }
@media (max-width: 820px) { .hero__badge { display: none; } }

/* Tour hero meta row (chips under title) */
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-5); }
.hero__price { font-family: var(--font-accent); font-weight: 600; }
.hero__price .amt { font-size: 1.5rem; color: var(--white); }
.hero__meta .detail-chip { background: rgba(255,255,255,0.16); color: var(--white); backdrop-filter: blur(4px); }

/* Reduced motion: hide video, show poster */
@media (prefers-reduced-motion: reduce) {
  .hero__media video { display: none; }
  .hero__media .hero__poster { display: block; }
}
.hero__media .hero__poster { display: none; }

/* --------------------------------------------------------------- SPLIT PANELS */
.split-panels { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }
@media (max-width: 860px) { .split-panels { grid-template-columns: 1fr; } }
.panel {
  position: relative;
  min-height: 55vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}
.panel__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 0.7s var(--ease); }
.panel::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(19,42,74,0.92) 0%, rgba(19,42,74,0.62) 55%, rgba(19,42,74,0.28) 100%);
}
.panel:hover .panel__img { transform: scale(1.06); }
.panel__body { padding: clamp(1.75rem, 4vw, 2.75rem); }
.panel__body h3 { color: var(--white); font-size: var(--fs-h3); }
.panel__loc { display: block; font-family: var(--font-accent); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; color: var(--seafoam-300); margin-bottom: var(--sp-2); }
.panel__body p { color: rgba(255,255,255,0.92); margin-top: var(--sp-3); }
.panel__features { margin: var(--sp-4) 0; display: flex; flex-direction: column; gap: 0.4rem; }
.panel__features li { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: var(--fs-sm); color: var(--white); }
.panel__features li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--seafoam-300); flex: none; }
.panel--islamorada .panel__features li::before { background: var(--sunset-400); }
.panel--islamorada .panel__loc { color: var(--sunset-400); }

/* "Can't choose" callout below panels */
.cta-callout {
  text-align: center;
  max-width: 760px;
  margin: clamp(2.5rem,5vw,3.5rem) auto 0;
}

/* --------------------------------------------------------------- TOUR CARD */
.tour-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19,42,74,0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  height: 100%;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tour-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.05); }
.tour-card__chip { position: absolute; top: var(--sp-3); left: var(--sp-3); z-index: 2; }
.tour-card__flag { position: absolute; top: var(--sp-3); right: var(--sp-3); z-index: 2; }
.tour-card__body { display: flex; flex-direction: column; gap: var(--sp-3); padding: var(--sp-5); flex: 1; }
.tour-card__title { font-size: var(--fs-h4); color: var(--navy-900); line-height: 1.15; }
.tour-card__desc { font-size: var(--fs-sm); color: var(--ink-600); flex: 1; }
.tour-card__meta { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.tour-card__price { font-family: var(--font-accent); font-weight: 600; color: var(--navy-900); }
.tour-card__price .from { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-600); display: block; }
.tour-card__price .amt { font-size: 1.5rem; }
.tour-card__actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: auto; padding-top: var(--sp-2); }
.tour-card__actions .btn { flex: 1 1 auto; min-width: fit-content; }
@media (max-width: 420px) { .tour-card__actions { flex-direction: column; } }

/* --------------------------------------------------- 6-CARD DIFFERENCE GRID */
.difference-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 900px) { .difference-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .difference-grid { grid-template-columns: 1fr; } }
.diff-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(19,42,74,0.07);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.diff-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--seafoam-100);
  color: var(--lagoon-500);
  margin-bottom: var(--sp-4);
}
.diff-card__icon svg { width: 28px; height: 28px; }
.diff-card:nth-child(3n+2) .diff-card__icon { background: var(--lagoon-100); color: var(--lagoon-500); }
.diff-card:nth-child(3n) .diff-card__icon { background: #fdeae2; color: var(--coral-600); }
.diff-card h3 { font-size: 1.2rem; margin-bottom: var(--sp-2); }
.diff-card p { font-size: var(--fs-sm); color: var(--ink-600); }

/* ---------------------------------------------- DAY ONE / DAY TWO TIMELINE */
.timeline { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-6); position: relative; }
@media (max-width: 800px) { .timeline { grid-template-columns: 1fr; } }
.timeline-day {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19,42,74,0.06);
}
.timeline-day__media { position: relative; aspect-ratio: 16 / 10; }
.timeline-day__media img { width: 100%; height: 100%; object-fit: cover; }
.timeline-day__tag {
  position: absolute; top: var(--sp-4); left: var(--sp-4); z-index: 2;
  font-family: var(--font-accent);
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.78rem;
  background: var(--navy-900); color: var(--white);
  padding: 0.45rem 0.9rem; border-radius: var(--radius-pill);
}
.timeline-day--two .timeline-day__tag { background: var(--coral-500); }
.timeline-day__body { padding: clamp(1.5rem, 3vw, 2.25rem); }
.timeline-day__body h3 { font-size: var(--fs-h3); margin-bottom: var(--sp-2); }
.timeline-day__loc { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--lagoon-500); margin-bottom: var(--sp-3); display: block; }
.timeline-day--two .timeline-day__loc { color: var(--coral-600); }

/* Double Dip ribbon / callout */
.double-dip {
  background: linear-gradient(120deg, var(--coral-500), var(--sunset-400));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  box-shadow: 0 16px 40px rgba(240,112,74,0.28);
}
.double-dip h3 { color: var(--white); font-size: var(--fs-h3); }
.double-dip p { color: rgba(255,255,255,0.95); margin: var(--sp-3) auto 0; }
.double-dip__pct { font-family: var(--font-display); font-size: clamp(2.4rem,6vw,3.6rem); font-weight: 700; line-height: 1; }
.double-dip .btn-ghost--light { border-color: var(--white); }

/* Slim ribbon variant for tour pages */
.dip-ribbon {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--sp-4);
  background: linear-gradient(120deg, var(--coral-500), var(--sunset-400));
  color: var(--white);
  border-radius: var(--radius);
  padding: var(--sp-5) var(--sp-6);
  text-align: center;
}
.dip-ribbon strong { font-family: var(--font-display); font-size: 1.35rem; color: var(--white); }
.dip-ribbon p { color: rgba(255,255,255,0.95); margin: 0; }

/* --------------------------------------------------------------- ACCORDION */
.accordion { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: var(--sp-3); }
.acc-item { background: var(--white); border: 1px solid rgba(19,42,74,0.1); border-radius: var(--radius); overflow: hidden; }
.acc-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy-900);
  text-align: left;
}
.acc-trigger:hover { color: var(--lagoon-500); }
.acc-icon { position: relative; width: 20px; height: 20px; flex: none; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: currentColor; border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.acc-icon::before { width: 14px; height: 2.5px; }
.acc-icon::after { width: 2.5px; height: 14px; }
.acc-trigger[aria-expanded="true"] .acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.acc-panel__inner { padding: 0 1.5rem 1.35rem; color: var(--ink-600); }
.acc-panel__inner p + p { margin-top: var(--sp-3); }

/* ---------------------------------------------------------- TESTIMONIAL CARD */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; } }
.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(19,42,74,0.06);
  display: flex; flex-direction: column; gap: var(--sp-4);
  height: 100%;
}
.testimonial__quote-mark { font-family: var(--font-display); font-size: 3rem; line-height: 0.6; color: var(--seafoam-300); height: 1.4rem; }
.testimonial__title { font-family: var(--font-display); font-weight: 600; color: var(--navy-900); font-size: 1.2rem; }
.testimonial__text { color: var(--ink-600); font-size: var(--fs-sm); flex: 1; }
.testimonial__foot { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); border-top: 1px solid var(--seafoam-100); padding-top: var(--sp-4); }
.testimonial__name { font-weight: 700; color: var(--navy-900); }
.testimonial__platform { font-family: var(--font-accent); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--lagoon-500); }

/* --------------------------------------------------------------- GALLERY MASONRY */
.gallery-masonry { columns: 3 260px; column-gap: var(--sp-4); }
.gallery-masonry .g-item { break-inside: avoid; margin-bottom: var(--sp-4); border-radius: var(--radius); overflow: hidden; display: block; box-shadow: var(--shadow-sm); }
.gallery-masonry .g-item img { width: 100%; height: auto; display: block; transition: transform 0.6s var(--ease); }
.gallery-masonry .g-item:hover img { transform: scale(1.05); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; margin-bottom: var(--sp-6); }
.gallery-filter {
  font-family: var(--font-accent);
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.55rem 1.1rem; border-radius: var(--radius-pill);
  background: var(--white); color: var(--navy-700); border: 1.5px solid rgba(19,42,74,0.14);
  transition: all 0.2s var(--ease);
}
.gallery-filter:hover { border-color: var(--lagoon-500); color: var(--lagoon-500); }
.gallery-filter[aria-pressed="true"] { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }

/* Photo strip (horizontal scroll on small) */
.photo-strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr); gap: var(--sp-4); overflow-x: auto; padding-bottom: var(--sp-3); scroll-snap-type: x mandatory; }
.photo-strip .g-item { scroll-snap-align: start; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.photo-strip .g-item img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }

/* -------------------------------------------------------- BOOKING PANEL (tour) */
.tour-layout { display: grid; grid-template-columns: 1fr 380px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.tour-layout > * { min-width: 0; }
@media (max-width: 960px) { .tour-layout { grid-template-columns: 1fr; } }
.booking-panel {
  position: sticky; top: calc(var(--nav-h) + 1rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid rgba(19,42,74,0.08);
  overflow: hidden;
}
@media (max-width: 960px) { .booking-panel { position: static; } }
.booking-panel__head { background: var(--navy-900); color: var(--white); padding: var(--sp-5); }
.booking-panel__head h2 { color: var(--white); font-size: 1.4rem; }
.pricing-tiers { display: flex; flex-direction: column; }
.pricing-tier { display: flex; align-items: baseline; justify-content: space-between; gap: var(--sp-4); padding: 1rem var(--sp-5); border-bottom: 1px solid var(--seafoam-100); }
.pricing-tier__label { font-weight: 700; color: var(--navy-900); }
.pricing-tier__label span { display: block; font-weight: 500; font-size: var(--fs-xs); color: var(--ink-600); }
.pricing-tier__price { font-family: var(--font-accent); font-weight: 600; font-size: 1.35rem; color: var(--navy-900); }
.booking-panel__cta { padding: var(--sp-5); }
.quick-details { padding: var(--sp-5); border-top: 1px solid var(--seafoam-100); display: flex; flex-direction: column; gap: var(--sp-4); }
.quick-detail { display: flex; gap: var(--sp-3); align-items: flex-start; }
.quick-detail__icon { width: 22px; height: 22px; flex: none; color: var(--lagoon-500); margin-top: 2px; }
.quick-detail__label { font-family: var(--font-accent); font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-600); }
.quick-detail__value { font-weight: 600; color: var(--navy-900); }

/* Prose blocks */
.prose > * + * { margin-top: var(--sp-4); }
.prose h2 { margin-top: var(--sp-6); }
.prose h3 { margin-top: var(--sp-5); }
.prose p { color: var(--ink-600); }
.prose ul { display: flex; flex-direction: column; gap: var(--sp-2); }
.prose ul li { position: relative; padding-left: 1.6rem; color: var(--ink-600); }
.prose ul li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 8px; height: 8px; border-radius: 50%; background: var(--lagoon-500); }
.prose--islamorada ul li::before { background: var(--coral-500); }

/* Info list (what's included / bring) two-column */
.info-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
@media (max-width: 640px) { .info-cols { grid-template-columns: 1fr; } }
.info-block h3 { font-size: 1.25rem; margin-bottom: var(--sp-3); }

/* ------------------------------------------------------------ CROSS-PROMO BLOCK */
.cross-promo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem);
  display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-4);
}
.cross-promo__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cross-promo::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(19,42,74,0.85) 0%, rgba(19,42,74,0.45) 100%); }
.cross-promo h2 { color: var(--white); }
.cross-promo p { color: rgba(255,255,255,0.92); }

/* Map / logistics card (clickable, NOT iframe) */
.map-card {
  display: flex; flex-wrap: wrap; gap: var(--sp-4); align-items: center;
  background: var(--white);
  border: 1px solid rgba(19,42,74,0.1);
  border-radius: var(--radius);
  padding: var(--sp-5);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.map-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.map-card__pin { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 12px; background: var(--lagoon-100); color: var(--lagoon-500); }
.map-card__body strong { display: block; color: var(--navy-900); font-family: var(--font-display); font-size: 1.1rem; }
.map-card__body span { font-size: var(--fs-sm); color: var(--ink-600); }
.map-card__cta { margin-left: auto; font-weight: 700; color: var(--lagoon-500); }

/* --- Narrow-screen hardening: let grid/flex items shrink to their track so nothing overflows on very small phones --- */
.split-panels > *, .testimonial-grid > *, .tour-grid > *, .difference-grid > *, .info-cols > *, .footer-grid > *, .feature-trio > *, .story-grid > *, .boats-grid > * { min-width: 0; }
.testimonial, .panel__body, .tour-card__body { min-width: 0; }
.testimonial__quote-mark { max-width: 100%; overflow: hidden; }
.testimonial__foot { flex-wrap: wrap; }
/* On very small phones, allow button labels to wrap instead of forcing their container wider than the screen */
@media (max-width: 430px) {
  .btn { white-space: normal; line-height: 1.25; }
  .map-card__cta { white-space: normal; }
}

/* NAP list */
.nap { display: flex; flex-direction: column; gap: var(--sp-3); }
.nap-row { display: flex; gap: var(--sp-3); align-items: flex-start; }
.nap-row svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--seafoam-300); }

/* ------------------------------------------------------------------ FOOTER */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.75); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 0.9fr; gap: clamp(1.75rem, 4vw, 3rem); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: var(--white); font-family: var(--font-accent); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: var(--sp-4); }
.footer-col .nap-row { color: rgba(255,255,255,0.78); font-size: var(--fs-sm); }
.footer-col .nap-row a { color: rgba(255,255,255,0.85); }
.footer-col .nap-row a:hover { color: var(--seafoam-300); }
.footer-quick { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer-quick a { color: rgba(255,255,255,0.78); font-size: var(--fs-sm); }
.footer-quick a:hover { color: var(--seafoam-300); }
.footer-socials { display: flex; gap: var(--sp-3); margin-top: var(--sp-4); }
.footer-socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.08); color: var(--white); transition: background 0.2s var(--ease); }
.footer-socials a:hover { background: var(--coral-500); color: var(--white); }
.footer-socials svg { width: 20px; height: 20px; }
.footer-brand-logo { height: 54px; width: auto; margin-bottom: var(--sp-4); }
.footer-badge { --badge-size: 92px; margin-top: var(--sp-4); }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--sp-4);
  font-size: var(--fs-xs); color: rgba(255,255,255,0.6);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: var(--seafoam-300); }
.powered-fh { font-family: var(--font-accent); letter-spacing: 0.06em; }

/* -------------------------------------------------------- STICKY MOBILE BOOK BAR */
.mobile-book-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: 0.75rem clamp(1rem, 4vw, 1.5rem);
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0));
  background: var(--white);
  box-shadow: 0 -8px 24px rgba(19,42,74,0.14);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.mobile-book-bar.visible { transform: translateY(0); }
.mobile-book-bar__price { line-height: 1.1; }
.mobile-book-bar__price .from { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-600); }
.mobile-book-bar__price .amt { font-family: var(--font-accent); font-weight: 600; font-size: 1.35rem; color: var(--navy-900); display: block; }
.mobile-book-bar .btn { flex: 1; max-width: 60%; }
@media (max-width: 768px) {
  .mobile-book-bar { display: flex; }
  body.has-book-bar { padding-bottom: var(--bookbar-h); }
}

/* --------------------------------------------------------- FINAL CTA BAND */
.cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  color: var(--white);
  padding-block: clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(120deg, var(--navy-900) 0%, var(--lagoon-500) 55%, var(--sunset-400) 120%);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse at 70% 20%, rgba(240,112,74,0.35), transparent 55%);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.9); margin-inline: auto; }
.cta-band .mermaid-badge { --badge-size: 104px; margin: 0 auto var(--sp-5); }

/* --------------------------------------------------- REVEAL-ON-SCROLL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--scale { transform: translateY(28px) scale(0.97); }
.reveal--scale.is-visible { transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--scale { opacity: 1 !important; transform: none !important; transition: none !important; }
  .panel__img, .tour-card__media img, .gallery-masonry .g-item img { transition: none !important; }
  .btn:hover, .tour-card:hover, .diff-card:hover, .map-card:hover { transform: none !important; }
}

/* Divider ornament */
.rule-wave { height: 2px; width: 64px; background: var(--seafoam-300); border-radius: 2px; margin-block: var(--sp-4); }
.rule-wave--center { margin-inline: auto; }
.rule-wave--coral { background: var(--coral-500); }

/* Onboard amenity list */
.amenity-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: var(--sp-4); }
.amenity {
  display: flex; align-items: center; gap: var(--sp-3);
  background: var(--white); border-radius: var(--radius); padding: var(--sp-4);
  border: 1px solid rgba(19,42,74,0.07); font-weight: 600; color: var(--navy-900); font-size: var(--fs-sm);
}
.amenity svg { width: 24px; height: 24px; color: var(--lagoon-500); flex: none; }

/* Anchor offset so in-page jumps clear the fixed nav */
:target { scroll-margin-top: calc(var(--nav-h) + 1rem); }
[id] { scroll-margin-top: calc(var(--nav-h) + 1rem); }

/* ============================================================================
   CONVERSION CTAs (additive) — persistent booking access across all pages.
   Header mobile Book pill · universal sticky bar · location chooser ·
   desktop scroll nudge · reusable booking prompt band. Does not modify any
   existing component; new classes only.
   ========================================================================== */

/* --- Header mobile "Book" pill (shows only when the hamburger shows) --- */
.header-book {
  display: none;
  margin-left: auto;
  padding: 0.55rem 1.15rem;
  font-size: 0.95rem;
  white-space: nowrap;
}
@media (max-width: 1024px) { .header-book { display: inline-flex; } }
body.drawer-open .header-book { visibility: hidden; }

/* --- Universal sticky book bar (reuses .mobile-book-bar look) --- */
.mobile-book-bar__label { line-height: 1.15; min-width: 0; }
.mobile-book-bar__label .lede { font-family: var(--font-accent); font-weight: 600; font-size: 1.02rem; color: var(--navy-900); display: block; }
.mobile-book-bar__label .sub { font-size: var(--fs-xs); color: var(--ink-600); display: block; }
.mobile-book-bar--universal .btn { flex: 0 0 auto; max-width: none; padding-inline: 1.4rem; }
@media (max-width: 768px) { .mobile-book-bar--universal { display: flex; } }

/* --- Location chooser sheet --- */
.book-sheet { position: fixed; inset: 0; z-index: 1200; display: none; }
.book-sheet.open { display: block; }
.book-sheet__backdrop { position: absolute; inset: 0; background: rgba(19,42,74,0.55); }
.book-sheet__panel {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: min(520px, 100%); background: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: clamp(1.5rem, 4vw, 2rem);
  padding-bottom: calc(clamp(1.5rem, 4vw, 2rem) + env(safe-area-inset-bottom, 0));
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) {
  .book-sheet__panel { bottom: auto; top: 50%; transform: translate(-50%, -50%); border-radius: var(--radius-lg); }
}
.book-sheet__eyebrow { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.72rem; font-weight: 600; color: var(--lagoon-500); }
.book-sheet__title { font-size: var(--fs-h3); margin: 0.15rem 0 0.2rem; }
.book-sheet__sub { color: var(--ink-600); margin-bottom: var(--sp-4); font-size: var(--fs-sm); }
.book-sheet__opts { display: grid; gap: var(--sp-3); }
.book-opt { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); padding: 0.95rem 1.15rem; border-radius: var(--radius); text-decoration: none; color: #fff; }
.book-opt strong { display: block; font-size: 1.06rem; }
.book-opt span { font-size: var(--fs-xs); opacity: 0.92; }
.book-opt .book-opt__go { font-size: 1.3rem; line-height: 1; }
.book-opt--marathon { background: var(--lagoon-500); }
.book-opt--islamorada { background: var(--coral-500); }
.book-opt:hover { filter: brightness(1.06); color: #fff; }
.book-sheet__close { position: absolute; top: 0.6rem; right: 0.85rem; background: none; border: 0; font-size: 1.6rem; line-height: 1; color: var(--ink-600); cursor: pointer; }

/* --- Desktop scroll-depth nudge (tour pages only) --- */
.book-nudge {
  position: fixed; left: clamp(1rem, 2vw, 1.5rem); bottom: clamp(1rem, 2vw, 1.5rem);
  z-index: 850; width: min(320px, 90vw);
  background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: var(--sp-4); border: 1px solid rgba(19,42,74,0.06);
  transform: translateY(150%); opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.book-nudge.visible { transform: translateY(0); opacity: 1; }
.book-nudge__title { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy-900); padding-right: 1.2rem; }
.book-nudge__meta { font-size: var(--fs-xs); color: var(--ink-600); margin: 0.15rem 0 0.7rem; }
.book-nudge__close { position: absolute; top: 0.4rem; right: 0.6rem; background: none; border: 0; font-size: 1.25rem; color: var(--ink-600); cursor: pointer; line-height: 1; }
.book-nudge .btn { width: 100%; }
@media (max-width: 1024px) { .book-nudge { display: none !important; } }
@media (prefers-reduced-motion: reduce) { .book-nudge { transition: opacity 0.3s; } }

/* --- Reusable booking prompt band (repeat CTA #7 / warm-page CTA #8) --- */
.book-prompt__inner { max-width: 640px; margin-inline: auto; }
.book-prompt .eyebrow { color: var(--coral-600); }

/* --- Keep the Birdeye chat bubble clear of the sticky bar on mobile --- */
@media (max-width: 768px) {
  body.has-book-bar iframe[src*="getBubbleContent"],
  body.has-universal-bar iframe[src*="getBubbleContent"] { bottom: 84px !important; }
}
@media (max-width: 768px) { body.has-universal-bar { padding-bottom: var(--bookbar-h); } }
