/* =========================================================
   Loreto Star Adventures — Loreto, Baja California Sur
   Loreto Bay blue / turquoise / sun-yellow palette (layout pattern: fishandtours.com)
   ========================================================= */

:root {
  --black: #041a30;
  --black-2: #0b3558;
  --brown: #0b3558;
  --orange: #f2b52a;
  --gold: #f5bf3a;
  --sand: #dff0f7;
  --turquoise: #2aa7c9;
  --turquoise-2: #16789a;
  --bluegray: #6f8aa6;
  --white: #ffffff;
  --cream: #f3f8fb;
  --bg: #f5f9fc;
  --gray-1: #e2ecf3;
  --gray-2: #c7d8e4;
  --text: #12283d;
  --muted: #5b6e80;
  --shadow-sm: 0 2px 6px rgba(6, 30, 56, 0.08);
  --shadow-md: 0 8px 24px rgba(6, 30, 56, 0.12);
  --shadow-lg: 0 18px 50px rgba(6, 30, 56, 0.22);
  --radius: 14px;
  --radius-lg: 20px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: 'Nunito', system-ui, sans-serif;
  color: var(--black-2);
  margin: 0 0 .4em;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-tight { padding: 56px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { margin-bottom: 10px; }
.section-title p { color: var(--muted); max-width: 720px; margin: 0 auto; }
.eyebrow {
  display: inline-block;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  color: var(--turquoise-2);
  margin-bottom: 10px;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--gold) 100%);
  color: #0b3558;
  box-shadow: 0 6px 16px rgba(242, 181, 42, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(242, 181, 42, .45); }
.btn-secondary {
  background: var(--black);
  color: var(--white);
}
.btn-secondary:hover { background: var(--black-2); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--black-2);
  border: 1.5px solid var(--gray-2);
}
.btn-outline:hover { border-color: var(--turquoise); color: var(--turquoise-2); }
.btn-turquoise {
  background: var(--turquoise);
  color: #fff;
  box-shadow: 0 6px 16px rgba(62,169,143,.35);
}
.btn-turquoise:hover { transform: translateY(-2px); }
.btn-block { width: 100%; justify-content: center; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ============ Header ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--gray-1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 62px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--text);
  position: relative;
  transition: color .15s;
}
.nav a:hover, .nav a.active { color: var(--turquoise-2); }
.nav a.active::after {
  content: ''; position: absolute; bottom: -8px; left: 0; right: 0;
  height: 3px; background: var(--gold); border-radius: 3px;
}

.header-cta { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gray-1); color: var(--black-2);
}
.cart-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--orange); color: #fff;
  font-size: .68rem; font-weight: 700;
  width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center;
}
.menu-toggle {
  display: none; background: none; border: 0; padding: 6px;
}
.menu-toggle svg { width: 30px; height: 30px; color: var(--black-2); }

@media (max-width: 980px) {
  .nav, .header-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - 84px);
  height: calc(100dvh - 84px);
  background: var(--cream);
  z-index: 79;
  padding: 30px 24px;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--gray-1);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid var(--gray-1);
  color: var(--black-2);
}
.mobile-menu .btn { margin-top: 14px; justify-content: center; }

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #041a30;
}
/* Parallax photo layer: the <img> is taller than the hero and JS shifts it on scroll. */
.hero-media { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-media img {
  position: absolute; left: 0; top: -12%;
  /* 112% is just enough overscan for the parallax shift — keeps the hero
     photo (1620x911) close to its full frame instead of deep-cropping it. */
  width: 100%; height: 112%;
  object-fit: cover; object-position: center 46%;
  filter: saturate(1.06);
  will-change: transform;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(180deg, rgba(4,24,48,.30) 0%, rgba(4,24,48,0) 34%, rgba(4,24,48,.55) 100%),
    linear-gradient(276deg, rgba(4,24,48,.88) 0%, rgba(4,24,48,.70) 36%, rgba(4,24,48,.22) 66%, rgba(4,24,48,.06) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  /* keep .container's horizontal padding — without it the copy hits the screen edge on phones */
  padding: 80px 20px;
  max-width: 800px;
  margin-left: auto; /* copy sits right; the hull with the boat's name stays visible on the left */
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 18px;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.hero p { font-size: 1.1rem; opacity: .92; margin-bottom: 28px; max-width: 660px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  margin-top: 36px;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: .92rem; opacity: .9;
}
.hero-badges span { display: inline-flex; align-items: center; gap: 8px; }
.hero-badges svg { width: 18px; height: 18px; color: var(--gold); }

/* On narrow screens the copy sits over the middle, so fall back to a vertical scrim. */
@media (max-width: 820px) {
  .hero { min-height: 92vh; }
  .hero-media img { object-position: center 46%; }
  .hero::before {
    background-image:
      linear-gradient(180deg, rgba(4,24,48,.62) 0%, rgba(4,24,48,.50) 40%, rgba(4,24,48,.86) 100%);
  }
}

/* Search bar */
.search-bar {
  position: relative;
  margin-top: -45px;
  z-index: 5;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 6px;
  align-items: end;
}
.search-bar .field {
  padding: 6px 16px;
  border-right: 1px solid var(--gray-1);
}
.search-bar .field:last-of-type { border-right: 0; }
.search-bar label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--black-2);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.search-bar select, .search-bar input {
  width: 100%;
  border: 0;
  font-size: .95rem;
  padding: 4px 0;
  background: transparent;
  color: var(--text);
  outline: 0;
}
.search-bar .btn { padding: 16px 28px; }

@media (max-width: 900px) {
  .search-bar { grid-template-columns: 1fr 1fr; gap: 12px; padding: 14px; }
  .search-bar .field { border-right: 0; border-bottom: 1px solid var(--gray-1); padding: 8px 4px; }
  .search-bar .btn { grid-column: span 2; }
}

/* ============ Trust strip ============ */
.trust-strip {
  background: var(--black);
  color: #fff;
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.trust-grid .item h4 { color: var(--gold); margin: 0 0 4px; font-size: 1.6rem; }
.trust-grid .item p { margin: 0; opacity: .8; font-size: .9rem; }
@media (max-width: 720px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ Catalog filters ============ */
.catalog { background: var(--bg); }
.catalog-toolbar {
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.catalog-search {
  flex: 1 1 300px;
  display: flex; align-items: center; gap: 10px;
  background: var(--gray-1);
  border-radius: 999px;
  padding: 8px 18px;
}
.catalog-search input {
  border: 0; background: transparent; outline: 0; flex: 1; font-size: .95rem;
}
.catalog-search svg { width: 18px; color: var(--muted); }

.catalog-toolbar .sort {
  display: flex; align-items: center; gap: 10px;
  font-size: .9rem; color: var(--muted);
}
.catalog-toolbar select {
  padding: 8px 14px;
  border: 1px solid var(--gray-2);
  border-radius: 8px;
  background: #fff;
  font-size: .9rem;
}

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip {
  background: #fff;
  border: 1px solid var(--gray-2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
  color: var(--text);
  cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--turquoise); color: var(--turquoise-2); }
.chip.active {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

/* ============ Tour grid / cards ============ */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 26px;
}
.tour-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.tour-media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--gray-1);
}
.tour-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.tour-card:hover .tour-media img { transform: scale(1.06); }

.badge-row {
  position: absolute; top: 14px; left: 14px;
  display: flex; gap: 6px;
}
.badge {
  background: rgba(6,30,56,.92);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.badge-available { background: #16a34a; }
.badge-gold { background: var(--gold); color: #0b3558; }
.badge-sale { background: var(--orange); color: #fff; }

.tour-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tour-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.tour-head h3 { margin: 0; font-size: 1.35rem; }

.tour-location {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--muted);
}
.tour-location svg { width: 14px; color: var(--turquoise); }

.tour-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: .85rem; color: var(--muted);
  padding: 12px 0;
  border-top: 1px dashed var(--gray-1);
  border-bottom: 1px dashed var(--gray-1);
}
.tour-meta div { display: inline-flex; align-items: center; gap: 6px; }
.tour-meta svg { width: 16px; color: var(--turquoise); }
.tour-meta strong { color: var(--text); font-weight: 700; }

.tour-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tour-tags span {
  background: #E1F3F8;
  color: var(--turquoise-2);
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
}

.tour-price {
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
  margin-top: auto;
}
.tour-price .from { font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .12em; }
.tour-price .amount { font-family: 'Nunito', sans-serif; color: var(--black-2); font-size: 1.35rem; font-weight: 700; }
.tour-price .amount span { color: var(--muted); font-size: .8rem; font-weight: 500; font-family: 'Inter', sans-serif; }
.tour-price .old { text-decoration: line-through; color: var(--muted); font-size: .95rem; margin-right: 6px; }

.tour-actions { display: flex; gap: 10px; margin-top: 6px; }
.tour-actions .btn { flex: 1; padding: 11px 14px; font-size: .88rem; }

/* ============ Destinations / experiences ============ */
/* (legacy overlay .dest-card block removed 2026-08-30 — superseded by the
   stacked destination card further down, which shows the whole photo) */

/* ============ Tiles ============ */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.tile {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-1);
  transition: transform .2s, box-shadow .2s;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.tile .icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: grid; place-items: center;
  font-size: 22px;
  background: #E1F3F8; color: var(--turquoise-2);
  margin-bottom: 14px;
}
.tile h4 { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--black-2); margin: 0 0 6px; }
.tile p { margin: 0; color: var(--muted); font-size: .88rem; }

.tile-gold .icon { background: #FDF1CC; color: #8a5c00; }
.tile-orange .icon { background: #FFF4D6; color: #b47a00; }
.tile-navy .icon { background: #E1EEF7; color: var(--black-2); }

/* ============ Two-column showcase ============ */
.showcase {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
/* Showcase photos render at their own full aspect ratio — never cropped,
   never squeezed by the width/height attributes on the tag. */
.showcase img {
  display: block;
  width: 100%; height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.showcase ul { padding-left: 0; list-style: none; margin: 18px 0 24px; }
.showcase ul li {
  display: flex; gap: 10px; padding: 8px 0;
  align-items: flex-start;
}
.showcase ul li svg { width: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
@media (max-width: 880px) { .showcase { grid-template-columns: 1fr !important; gap: 30px; } }

/* ============ Form ============ */
.form-section { background: var(--black); color: #fff; }
.form-section h2 { color: #fff; }
.form-section .section-title p { color: rgba(255,255,255,.7); }

.request-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  color: var(--text);
  max-width: 920px;
  margin: 0 auto;
}
.form-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
}
.form-row-full { grid-column: span 2; }
.field-group label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--black-2);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1.5px solid var(--gray-2);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  outline: 0;
  transition: border-color .15s, background .15s;
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--turquoise);
  background: #fff;
}
.field-group textarea { min-height: 120px; resize: vertical; }
.form-success {
  background: #d1fae5;
  color: #065f46;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 18px;
  display: none;
}
.form-success.show { display: block; }

.selection-banner {
  background: linear-gradient(135deg, #FDF1CC 0%, #DFF0F7 100%);
  border: 1.5px solid var(--gold);
  color: var(--black-2);
  padding: 14px 18px;
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.selection-banner strong { color: var(--black-2); }
.selection-banner [data-selection] { color: var(--turquoise-2); font-weight: 600; }
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-row-full { grid-column: span 1; }
  .request-form { padding: 24px; }
}

/* ============ CTA banner ============ */
.cta-banner {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--turquoise) 0%, var(--black) 100%);
  color: #fff;
  padding: 50px 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,191,58,.5) 0%, transparent 70%);
}
.cta-banner h3 { color: #fff; font-size: 1.8rem; margin: 0 0 6px; }
.cta-banner p { margin: 0; opacity: .9; }
.cta-banner > div:last-child { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============ Footer ============ */
.footer {
  background: #072a4a;
  color: #b9cddf;
  padding: 70px 0 28px;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 34px;
}
@media (max-width: 1080px) { .footer-grid { grid-template-columns: 1.3fr repeat(2, 1fr); } }
.footer h4 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer a:hover { color: var(--gold); }
.footer .logo { margin-bottom: 14px; }
.footer .logo img { height: 56px; }
.footer-about p { opacity: .8; line-height: 1.65; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.06);
  transition: background .15s, color .15s;
}
.socials a:hover { background: var(--gold); color: #0b3558; }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 22px; margin-top: 50px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .85rem; opacity: .7;
}
.footer-bottom .credit a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.35);
  transition: border-color .2s, opacity .2s;
}
.footer-bottom .credit a:hover { border-bottom-color: #fff; opacity: 1; }

@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Floating WhatsApp */
.whatsapp-fab {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  z-index: 90;
  transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }
.whatsapp-fab svg { width: 28px; height: 28px; }

/* ============ Tour detail page ============ */
.detail-hero {
  background: #041a30;
  color: #fff;
  padding-top: 30px;
}
.breadcrumbs, .crumbs {
  font-size: .85rem; opacity: .8; margin-bottom: 14px;
}
.breadcrumbs a, .crumbs a { color: var(--gold); }
.crumbs .sep { margin: 0 6px; opacity: .5; }

.detail-title { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 10px; gap: 20px; flex-wrap: wrap; padding-bottom: 60px; }
.detail-title h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 6px; color: #fff; }
.detail-title .meta-line { color: rgba(255,255,255,.85); display: flex; gap: 16px; flex-wrap: wrap; }
.detail-title .meta-line span { display: inline-flex; align-items: center; gap: 6px; }
.detail-title svg { width: 16px; color: var(--gold); }

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.gallery .main { grid-column: 1; grid-row: 1 / 3; }
.gallery img {
  width: 100%; height: 100%; object-fit: cover; cursor: zoom-in;
  transition: transform .4s, opacity .2s;
}
.gallery img:hover { transform: scale(1.04); opacity: .94; }

.view-all-photos {
  position: absolute;
  bottom: 14px; right: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  background: rgba(255,255,255,.96);
  color: var(--black-2);
  border: 0; border-radius: 999px;
  font-weight: 600; font-size: .88rem;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: transform .15s, background .15s;
  z-index: 3;
}
.view-all-photos:hover { background: var(--gold); transform: translateY(-2px); }

@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr; grid-template-rows: 280px; }
  .gallery .main { grid-column: 1; grid-row: 1; }
  .gallery > img:not(.main) { display: none; }
  .view-all-photos { padding: 8px 14px; font-size: .82rem; }
}

.detail-body { background: var(--bg); padding: 50px 0 80px; }
.detail-body .container { display: grid; grid-template-columns: 1.6fr 1fr; gap: 36px; align-items: flex-start; }
@media (max-width: 980px) { .detail-body .container { grid-template-columns: 1fr; } }

.tabs { display: flex; gap: 6px; flex-wrap: wrap; border-bottom: 2px solid var(--gray-1); margin-bottom: 24px; }
.tabs button {
  background: transparent; border: 0;
  padding: 14px 18px; font-weight: 600; font-size: .92rem;
  color: var(--muted);
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: color .15s, border-color .15s;
}
.tabs button.active, .tabs button:hover { color: var(--black-2); border-color: var(--gold); }

.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel h3 { font-size: 1.4rem; margin-top: 22px; }
.tab-panel ul { padding-left: 22px; line-height: 1.8; }

.price-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky; top: 100px;
}
.price-box .price-line {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  color: var(--black-2);
  margin-bottom: 4px;
}
.price-box .price-line span { font-size: .9rem; color: var(--muted); font-family: 'Inter'; font-weight: 500; }
.price-box .from { color: var(--muted); font-size: .85rem; }
.price-box hr { border: 0; border-top: 1px solid var(--gray-1); margin: 18px 0; }

.checklist {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 10px 24px;
  list-style: none; padding: 0;
}
.checklist li { display: flex; gap: 8px; align-items: flex-start; }
.checklist svg { width: 18px; color: #16a34a; flex-shrink: 0; margin-top: 3px; }
.checklist.excludes svg { color: #dc2626; }
@media (max-width: 600px) { .checklist { grid-template-columns: 1fr; } }

.faq-accordion { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px; background: none; border: 0;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-weight: 600; font-size: 1rem; color: var(--black-2);
}
.faq-q svg { width: 18px; flex-shrink: 0; transition: transform .2s; color: var(--turquoise); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a div { padding: 0 22px 20px; color: var(--muted); }

/* ============ Sticky mobile CTA ============ */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff;
  box-shadow: 0 -6px 20px rgba(0,0,0,.12);
  padding: 12px 16px;
  display: none;
  align-items: center; justify-content: space-between;
  gap: 12px;
  z-index: 70;
}
.sticky-cta .btn { flex: 1; }
@media (max-width: 720px) { .sticky-cta { display: flex; } }

/* ============ Page hero (sub pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--turquoise-2) 100%);
  color: #fff;
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -100px; top: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,191,58,.25) 0%, transparent 70%);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.page-hero p { max-width: 720px; opacity: .9; font-size: 1.08rem; }

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(4, 24, 48, .96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox-stage {
  position: relative;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 70px 80px;
}
.lightbox-image {
  max-width: 100%; max-height: 100%; object-fit: contain;
  border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6);
  user-select: none; animation: lb-pop .25s ease;
}
@keyframes lb-pop { from { opacity: 0; transform: scale(.96); } to { opacity: 1; transform: scale(1); } }
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
  z-index: 5;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: #0b3558; transform: scale(1.06); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover, .lightbox-next:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-close svg, .lightbox-prev svg, .lightbox-next svg { width: 22px; height: 22px; }
.lightbox-caption {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.45); color: #fff; padding: 8px 18px;
  border-radius: 999px; font-size: .9rem; font-weight: 500; letter-spacing: .02em; z-index: 5;
}
.lightbox-thumbs {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; max-width: 92vw; overflow-x: auto;
  padding: 6px 8px; background: rgba(0,0,0,.4); border-radius: 12px;
  backdrop-filter: blur(6px); scrollbar-width: thin;
}
.lightbox-thumbs::-webkit-scrollbar { height: 6px; }
.lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 4px; }
.lightbox-thumbs img {
  width: 64px; height: 48px; object-fit: cover; border-radius: 6px; cursor: pointer;
  opacity: .55; border: 2px solid transparent; transition: opacity .15s, border-color .15s; flex-shrink: 0;
}
.lightbox-thumbs img:hover { opacity: .9; }
.lightbox-thumbs img.active { opacity: 1; border-color: var(--gold); }
@media (max-width: 720px) {
  .lightbox-stage { padding: 60px 12px 100px; }
  .lightbox-prev, .lightbox-next { width: 42px; height: 42px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-thumbs img { width: 50px; height: 38px; }
}
body.lightbox-open { overflow: hidden; }

/* ============ Cart sidebar ============ */
.cart-sidebar {
  position: fixed; top: 0; right: -420px; width: 100%; max-width: 420px; height: 100%;
  background: #fff; z-index: 120; box-shadow: -10px 0 40px rgba(0,0,0,.2);
  transition: right .3s ease; display: flex; flex-direction: column;
}
.cart-sidebar.open { right: 0; }
.cart-scrim {
  position: fixed; inset: 0; background: rgba(4,24,48,.5); z-index: 119;
  opacity: 0; visibility: hidden; transition: opacity .3s;
}
.cart-scrim.open { opacity: 1; visibility: visible; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--gray-1); }
.cart-head h3 { margin: 0; }
.cart-close { background: none; border: 0; padding: 6px; }
.cart-close svg { width: 24px; height: 24px; }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; display: flex; flex-direction: column; gap: 14px; }
.cart-item { display: flex; gap: 12px; padding: 14px; background: var(--bg); border-radius: var(--radius); }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 700; font-size: .92rem; margin-bottom: 2px; }
.cart-item-meta { font-size: .8rem; color: var(--muted); }
.cart-remove { background: none; border: 0; color: var(--muted); }
.cart-remove:hover { color: #dc2626; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.cart-empty svg { width: 48px; height: 48px; margin: 0 auto 14px; opacity: .4; }
.cart-foot { padding: 20px 24px; border-top: 1px solid var(--gray-1); }
.cart-total-row { display: flex; justify-content: space-between; font-family: 'Nunito', sans-serif; font-size: 1.3rem; margin-bottom: 14px; }

/* ============ Checkout ============ */
.pt-sm { padding-top: 30px; }
.co-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 30px; align-items: flex-start; }
@media (max-width: 980px) { .co-layout { grid-template-columns: 1fr; } }
.co-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); margin-bottom: 20px; }
.co-card h3 { display: flex; align-items: center; gap: 12px; }
.step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--gold); color: #0b3558; font-size: .95rem; font-weight: 700;
  flex-shrink: 0;
}
.co-item { display: flex; justify-content: space-between; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--gray-1); }
.co-item:last-of-type { border-bottom: 0; }
.co-item-name { font-weight: 700; }
.co-item-meta { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.co-item-price { font-weight: 700; text-align: right; white-space: nowrap; }
.co-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 16px; margin-top: 6px; border-top: 2px solid var(--black-2); font-family: 'Nunito', sans-serif; font-size: 1.5rem; }
.text-center { text-align: center; }
.field-help { font-size: .78rem; color: var(--muted); margin-top: 4px; }
.field-label { display: block; font-size: .82rem; font-weight: 700; color: var(--black-2); letter-spacing: .04em; margin-bottom: 6px; text-transform: uppercase; }
.co-card .full { grid-column: span 2; }
@media (max-width: 620px) { .co-card .full { grid-column: span 1; } .form-grid { grid-template-columns: 1fr; } }
.pay-methods { display: flex; gap: 14px; flex-wrap: wrap; margin: 14px 0; font-size: .85rem; color: var(--muted); }
.btn-mp { background: linear-gradient(135deg,#3EA98F,#2c8069); color: #fff; }
.btn-wa { background: #25D366; color: #fff; }

.alert { padding: 16px 20px; border-radius: 12px; background: #FCEFCE; color: #6b4b00; margin-bottom: 20px; }
.alert-error { background: #fde2e2; color: #991b1b; }
.alert-ok { background: #d1fae5; color: #065f46; }
.empty-state { text-align: center; padding: 80px 20px; color: var(--muted); }
.empty-state svg { width: 56px; height: 56px; margin: 0 auto 18px; opacity: .4; }

/* ============ Confirmation ============ */
.confirm-card { max-width: 640px; margin: 0 auto; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 44px; text-align: center; }
.confirm-icon { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; font-size: 30px; }
.confirm-paid { background: #d1fae5; color: #065f46; }
.confirm-pending { background: #FCEFCE; color: #8a5c00; }
.confirm-rows { text-align: left; margin-top: 26px; border-top: 1px solid var(--gray-1); }
.confirm-row { display: flex; justify-content: space-between; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--gray-1); font-size: .92rem; }
.confirm-row span:first-child { color: var(--muted); }
.booking-num { font-family: 'Nunito', sans-serif; font-weight: 700; color: var(--turquoise-2); }
.tag { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; }
.tag-ok { background: #d1fae5; color: #065f46; }
.tag-wait { background: #FCEFCE; color: #8a5c00; }
.next-steps { text-align: left; background: var(--bg); border-radius: var(--radius); padding: 20px 22px; margin-top: 24px; }
.next-steps h4 { margin: 0 0 10px; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.next-steps ul { margin: 0; padding-left: 20px; color: var(--muted); font-size: .9rem; line-height: 1.8; }

/* ============ Islands ============ */
.island-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.island-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-1);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.island-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.island-card-media { aspect-ratio: 1600/893; overflow: hidden; background: var(--gray-1); }
.island-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.island-card:hover .island-card-media img { transform: scale(1.06); }
.island-card-media-empty {
  display: grid; place-items: center;
  font-size: 2rem;
  color: var(--turquoise-2);
  background: linear-gradient(135deg, #E4F4EF, var(--sand));
}
.island-card-body { padding: 18px 20px 20px; }
.island-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 8px; }
.island-card-head h4 { font-family: 'Nunito', sans-serif; font-size: 1.15rem; margin: 0; color: var(--black-2); }
.island-badge { font-size: .72rem; font-weight: 700; color: var(--turquoise-2); background: #E1F3F8; padding: 3px 10px; border-radius: 999px; white-space: nowrap; }
.island-badge-gold { color: #8a5c00; background: #FCEFCE; }
.island-card-body p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.6; }

/* ============ Blog ============ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-media { aspect-ratio: 16/9; overflow: hidden; background: var(--gray-1); }
.blog-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-media img { transform: scale(1.06); }
.blog-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-date { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--turquoise-2); font-weight: 700; }
.blog-body h3 { margin: 0; font-size: 1.3rem; line-height: 1.3; }
.blog-body p { margin: 0; color: var(--muted); font-size: .92rem; flex: 1; }
.blog-read { font-weight: 700; color: var(--orange); font-size: .88rem; }

.article-hero { aspect-ratio: 21/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 34px; }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body { max-width: 760px; margin: 0 auto; font-size: 1.02rem; line-height: 1.75; color: var(--text); }
.article-body h2 { font-family: 'Nunito', sans-serif; font-size: 1.6rem; margin: 42px 0 14px; }
.article-body h3 { font-family: 'Nunito', sans-serif; font-size: 1.25rem; margin: 28px 0 10px; }
.article-body p { margin: 0 0 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--turquoise-2); font-weight: 600; text-decoration: underline; }
.article-meta { max-width: 760px; margin: 0 auto 28px; display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: .88rem; }

/* ============ Photo wall (gallery.php) ============ */
.filter-chips .chip-count {
  display: inline-block;
  margin-left: 6px;
  font-size: .76rem;
  opacity: .6;
}
.photo-wall {
  columns: 4 260px;
  column-gap: 14px;
}
.photo-wall-item {
  break-inside: avoid;
  margin: 0 0 14px;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: #0f0b06;
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,.08));
}
.photo-wall-item[hidden] { display: none; }
.photo-wall-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .45s ease, opacity .2s ease;
}
.photo-wall-item:hover img { transform: scale(1.05); opacity: .92; }
.photo-wall-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 14px 12px;
  font-size: .82rem;
  line-height: 1.35;
  color: #fff;
  background: linear-gradient(180deg, rgba(4,24,48,0) 0%, rgba(4,24,48,.85) 65%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
}
.photo-wall-item:hover figcaption,
.photo-wall-item:focus-within figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 720px) {
  .photo-wall { columns: 2 150px; column-gap: 10px; }
  .photo-wall-item { margin-bottom: 10px; }
  .photo-wall-item figcaption { opacity: 1; transform: none; font-size: .74rem; padding: 20px 10px 9px; }
}

/* Home page photo strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.gallery-strip a {
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-strip img {
  width: 100%; height: 100%; object-fit: contain;
  background: #0f0b06;
  transition: transform .45s ease, opacity .2s ease;
}
.gallery-strip a:hover img { transform: scale(1.07); opacity: .92; }
@media (max-width: 900px) { .gallery-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .gallery-strip { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ============================================================
   Fleet & experience sections (added 2026-08-29)
   ============================================================ */

/* --- "Your boat, your day" experience chooser --- */
.exp-chooser {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 14px;
}
.exp-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-1);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  color: inherit; text-decoration: none;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.exp-card .exp-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center; font-size: 22px;
  background: #E1F3F8; margin-bottom: 13px;
}
.exp-card h4 { font-family: 'Inter', sans-serif; font-size: 1rem; color: var(--black-2); margin: 0 0 6px; }
.exp-card p { margin: 0 0 14px; color: var(--muted); font-size: .87rem; line-height: 1.55; }
.exp-card .exp-go {
  margin-top: auto; font-size: .82rem; font-weight: 700;
  color: var(--turquoise-2); letter-spacing: .02em;
}
.exp-card:hover .exp-go { color: var(--orange); }

/* --- Full-bleed drone band --- */
.fleet-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.fleet-band img { width: 100%; height: auto; display: block; }
.fleet-band .fleet-band-copy {
  position: absolute; inset: auto 0 0 0;
  padding: 46px 34px 26px;
  background: linear-gradient(180deg, rgba(4,24,48,0) 0%, rgba(4,24,48,.82) 100%);
  color: #fff;
}
.fleet-band .fleet-band-copy strong {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.8rem);
  font-weight: 600; margin-bottom: 4px;
}
.fleet-band .fleet-band-copy span { font-size: .92rem; opacity: .88; }
@media (max-width: 720px) {
  .fleet-band .fleet-band-copy { padding: 34px 20px 18px; }
}

/* --- Shade vs sun comfort split --- */
.comfort-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 34px;
}
.comfort-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--gray-1);
  box-shadow: var(--shadow-md);
}
/* Photos are 4:3 — the frame matches them, so the whole shot is visible. */
.comfort-card img {
  display: block;
  width: 100%; height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.comfort-card .comfort-copy {
  flex: 1;
  padding: 24px 26px 26px;
  color: var(--text);
}
.comfort-card h3 { color: var(--black-2); font-size: 1.4rem; margin: 0 0 8px; }
.comfort-card p { margin: 0; font-size: .93rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 780px) { .comfort-split { grid-template-columns: 1fr; } }

/* --- Captains --- */
.captain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.captain-card {
  background: #fff;
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}
.captain-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.captain-card img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; }
.captain-card .captain-body { padding: 20px 22px 24px; }
.captain-card h4 { font-family: 'Inter', sans-serif; font-size: 1.02rem; margin: 0 0 6px; color: var(--black-2); }
.captain-card p { margin: 0; color: var(--muted); font-size: .89rem; line-height: 1.6; }

/* --- Party / celebration pills --- */
.party-pills { display: flex; flex-wrap: wrap; gap: 9px; margin: 20px 0 26px; }
.party-pills span {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px;
  background: #fff; border: 1px solid var(--gray-2);
  border-radius: 999px;
  font-size: .85rem; font-weight: 600; color: var(--black-2);
}

/* --- "Available on this boat" chips (boat detail) --- */
.boat-uses { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 26px; }
.boat-uses a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: var(--cream); border: 1px solid var(--gray-1);
  border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  color: var(--black-2); text-decoration: none;
  transition: border-color .15s, background .15s, transform .15s;
}
.boat-uses a:hover { border-color: var(--gold); background: #fff; transform: translateY(-2px); }

/* --- Boat detail: thumbnail rail under the hero gallery --- */
.gallery-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 116px;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 2px 2px;
  scrollbar-width: thin;
}
.gallery-rail img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: 10px; cursor: zoom-in;
  opacity: .82; transition: opacity .2s, transform .2s;
}
.gallery-rail img:hover { opacity: 1; transform: translateY(-2px); }
@media (max-width: 720px) { .gallery-rail { grid-auto-columns: 96px; } }

/* Dark band used by the crew section */
.section-dark { background: var(--black-2); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-title p { color: rgba(255,255,255,.72); }
.section-dark .eyebrow { color: var(--gold); }

/* ============ Rate table (boat detail, added 2026-08-29) ============ */
.rate-card {
  margin-top: 38px;
  background: #fff;
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-lg);
  padding: 28px 26px 24px;
  box-shadow: var(--shadow-sm);
}
.rate-card h3 { font-size: 1.4rem; margin: 0 0 6px; }
.rate-card .rate-lead { color: var(--muted); font-size: .92rem; margin: 0 0 18px; }

.rate-table { width: 100%; border-collapse: collapse; }
.rate-table th {
  text-align: left;
  font-size: .74rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
  padding: 0 10px 10px 0;
  border-bottom: 2px solid var(--gray-1);
}
.rate-table td { padding: 13px 10px 13px 0; border-bottom: 1px solid var(--gray-1); font-size: .95rem; }
.rate-table tr:last-child td { border-bottom: 0; }
.rate-table .rate-total { font-weight: 700; color: var(--black-2); white-space: nowrap; }
.rate-table .rate-bonus {
  display: block; margin-top: 2px;
  font-size: .78rem; font-weight: 700; color: var(--turquoise-2);
}
.rate-table tr.is-best td { background: #FCF4E2; }
.rate-table tr.is-best td:first-child { border-radius: 8px 0 0 8px; font-weight: 700; }
.rate-table tr.is-best td:last-child  { border-radius: 0 8px 8px 0; }

.rate-promo {
  margin-top: 20px;
  background: #FCF4E2;
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.rate-promo strong { display: block; color: #8a5c00; margin-bottom: 4px; font-size: .98rem; }
.rate-promo p { margin: 0; font-size: .89rem; color: var(--text); line-height: 1.6; }

.rate-note { margin: 16px 0 0; font-size: .82rem; color: var(--muted); line-height: 1.6; }

@media (max-width: 520px) {
  .rate-card { padding: 22px 18px 20px; }
  .rate-table td, .rate-table th { font-size: .88rem; }
}

/* ================================================================
   Experience-first redesign (2026-08-29): parallax bands, destination
   cards, sticky mobile book bar, scroll-reveal.
   ================================================================ */

/* ---- Full-width parallax bands ---- */
.plx {
  position: relative;
  overflow: hidden;
  min-height: 62vh;
  display: flex;
  align-items: center;
  color: #fff;
}
.plx-bg { position: absolute; left: 0; right: 0; top: -26%; bottom: -26%; z-index: 0; }
.plx-bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.plx::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(4,24,48,.50) 0%, rgba(4,24,48,.24) 45%, rgba(4,24,48,.58) 100%);
}
.plx-inner {
  position: relative; z-index: 2;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 110px 20px;
  text-align: center;
}
.plx-inner .eyebrow { color: var(--gold); }
.plx-inner h2 {
  color: #fff;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  margin-bottom: 14px;
  text-shadow: 0 2px 18px rgba(0,0,0,.55);
}
.plx-inner p {
  font-size: 1.08rem;
  opacity: .94;
  max-width: 660px;
  margin: 0 auto 28px;
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}
.plx-inner .btn-secondary { background: rgba(255,255,255,.14); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.35); color: #fff; }
@media (max-width: 820px) {
  .plx { min-height: 54vh; }
  .plx-inner { padding: 84px 20px; }
}

/* ---- Destination cards (grid on desktop, snap carousel on mobile) ---- */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dest-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--gray-1);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .2s ease;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* Photos are 1600x893 — the card frame matches them, so nothing is cropped. */
.dest-card img {
  display: block;
  width: 100%; height: auto;
  aspect-ratio: 1600 / 893;
  object-fit: cover;
}
.dest-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: rgba(4,24,48,.55);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: .74rem; font-weight: 600; letter-spacing: .3px;
  padding: 5px 11px;
  border-radius: 999px;
}
.dest-body { padding: 16px 18px 20px; flex: 1; display: flex; flex-direction: column; }
.dest-body h4 {
  font-family: 'Nunito', sans-serif;
  color: var(--black-2);
  font-size: 1.25rem;
  margin: 0 0 6px;
}
.dest-body p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.dest-card-all {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  gap: 10px;
  padding: 24px;
  min-height: 260px;
  border: 0;
  color: #fff;
  background: linear-gradient(150deg, var(--black-2) 0%, var(--turquoise-2) 130%);
}
.dest-card-all::after { display: none; }
.dest-card-all .icon { font-size: 2rem; }
.dest-card-all h4 { font-family: 'Nunito', sans-serif; color: #fff; font-size: 1.25rem; margin: 0; }
.dest-card-all p { margin: 0; font-size: .87rem; opacity: .85; }
.dest-card-all .exp-go { color: var(--gold); font-weight: 700; font-size: .9rem; }
.dest-hint { display: none; }
@media (max-width: 900px) {
  .dest-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    margin: 0 -20px;
    padding: 4px 20px 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .dest-grid::-webkit-scrollbar { display: none; }
  .dest-card { flex: 0 0 74%; max-width: 300px; scroll-snap-align: center; }
  .dest-hint { display: block; text-align: center; color: var(--muted); font-size: .84rem; margin-top: 10px; }
}

/* ---- Sticky mobile book bar ---- */
.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 -6px 20px rgba(0,0,0,.14);
}
.book-bar .bb-info { line-height: 1.3; white-space: nowrap; }
.book-bar .bb-info small { display: block; color: var(--muted); font-size: .72rem; }
.book-bar .bb-info strong { font-size: .95rem; color: var(--black-2); }
.book-bar .btn { flex: 1; text-align: center; padding: 13px 18px; }
@media (max-width: 820px) {
  .book-bar { display: flex; }
  body.has-book-bar { padding-bottom: 74px; }
  body.has-book-bar .whatsapp-fab { bottom: 92px; }
}

/* ---- Scroll reveal (gated on .js-anim so no-JS users always see content) ---- */
@media (prefers-reduced-motion: no-preference) {
  .js-anim .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  .js-anim .reveal.in { opacity: 1; transform: none; }
}


/* ============================================================
   Destination & experience landing pages (added 2026-08-30)
   Every image frame below matches the intrinsic ratio of the
   files it shows, so nothing on these pages is cropped.
   ============================================================ */
.dest-hero {
  margin: 0 0 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #0f0b06;
}
.dest-hero img { display: block; width: 100%; height: auto; }
.dest-hero figcaption {
  padding: 12px 18px;
  font-size: .84rem;
  color: rgba(255,255,255,.8);
  background: var(--black-2);
}

.dest-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: var(--gray-1);
  border: 1px solid var(--gray-1);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 40px;
}
.dest-facts > div { background: #fff; padding: 16px 18px; }
.dest-facts span {
  display: block;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin-bottom: 4px;
}
.dest-facts strong { font-size: 1.02rem; color: var(--black-2); }

.dest-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: start;
}
.dest-article { font-size: 1.02rem; line-height: 1.78; color: var(--text); min-width: 0; }
.dest-article .lead {
  font-size: 1.16rem; line-height: 1.7; color: var(--black-2);
  border-left: 3px solid var(--gold); padding-left: 18px; margin: 0 0 30px;
}
.dest-article h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem; margin: 38px 0 12px; color: var(--black-2);
}
.dest-article h3 { font-size: 1.15rem; margin: 26px 0 8px; color: var(--black-2); }
.dest-article p { margin: 0 0 16px; }
.dest-article ul { padding-left: 20px; margin: 0 0 18px; }
.dest-article li { margin-bottom: 9px; }
.dest-article a { color: var(--turquoise-2); text-decoration: underline; text-underline-offset: 2px; }
.dest-article a:hover { color: var(--black-2); }
.dest-article .party-pills { margin: 16px 0 22px; }

.dest-aside { position: sticky; top: 100px; display: grid; gap: 18px; }
.aside-card {
  background: #fff;
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
}
.aside-card h3 { font-family: 'Inter', sans-serif; font-size: 1.02rem; margin: 0 0 12px; color: var(--black-2); }
.aside-boats { list-style: none; margin: 0 0 16px; padding: 0; display: grid; gap: 10px; }
.aside-boats a { display: flex; gap: 11px; align-items: center; text-decoration: none; color: var(--text); }
.aside-boats img { width: 74px; height: 49px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.aside-boats strong { display: block; font-size: .92rem; color: var(--black-2); }
.aside-boats small { color: var(--muted); font-size: .78rem; }
.aside-boats a:hover strong { color: var(--turquoise-2); }
.aside-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.aside-list li {
  position: relative; padding-left: 22px;
  font-size: .89rem; line-height: 1.55; color: var(--muted);
}
.aside-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 700;
}
.dest-more-title {
  font-family: 'Nunito', sans-serif;
  font-size: 1.7rem; margin: 56px 0 20px; color: var(--black-2);
}
@media (max-width: 980px) {
  .dest-layout { grid-template-columns: 1fr; gap: 34px; }
  .dest-aside { position: static; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}

/* --- Island cards become links on the index --- */
a.island-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
a.island-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.island-card-body .exp-go { margin-top: 12px; display: inline-block; }

/* --- Experiences index --- */
.exp-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 26px;
}
.exp-index-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--gray-1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.exp-index-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
/* Experience photos are all 1600x1200 — frame matches, no crop. */
.exp-index-media { display: block; }
.exp-index-media img {
  display: block; width: 100%; height: auto;
  aspect-ratio: 4 / 3; object-fit: cover;
}
.exp-index-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.exp-index-icon { font-size: 1.5rem; line-height: 1; }
.exp-index-body h2 { font-family: 'Nunito', sans-serif; font-size: 1.45rem; margin: 8px 0 6px; }
.exp-index-body h2 a { color: var(--black-2); text-decoration: none; }
.exp-index-body h2 a:hover { color: var(--turquoise-2); }
.exp-index-tag { margin: 0 0 10px; color: var(--gold-2, #8a5c00); font-weight: 600; font-size: .88rem; }
.exp-index-body p { margin: 0 0 14px; color: var(--muted); font-size: .9rem; line-height: 1.6; }
.exp-index-body .exp-go { margin-top: auto; }
