/* =========================================================
   Trikes & Tings VI — Premium Island-Luxe Stylesheet
   ========================================================= */

:root {
  --navy: #062B3F;
  --deep-navy: #031C2B;
  --ink: #071E2D;
  --teal: #0F8E83;
  --turquoise: #18C7B8;
  --aqua: #67E8F9;
  --sand: #F4E8D3;
  --ivory: #FFF8ED;
  --cream: #FFFDF8;
  --coral: #FF7A59;
  --gold: #F5B84B;
  --white: #FFFFFF;
  --muted: #657783;
  --border: rgba(6, 43, 63, 0.12);
  --shadow-soft: 0 18px 45px rgba(3, 28, 43, 0.14);
  --shadow-card: 0 12px 30px rgba(3, 28, 43, 0.10);

  --maxw: 1200px;
  --radius: 28px;
  --radius-sm: 16px;
  --header-h: 84px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 1.0625rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--turquoise); outline-offset: 3px; border-radius: 6px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--navy); }
h1 {
  font-size: clamp(2.9rem, 8.5vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 600;
}
h2 {
  font-size: clamp(2.1rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h3 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); line-height: 1.15; letter-spacing: -0.02em; }
p { text-wrap: pretty; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.25rem, 4vw, 2.5rem); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--navy { background: var(--navy); color: var(--ivory); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--sand { background: linear-gradient(180deg, var(--ivory), var(--sand)); }
.section--ivory { background: var(--ivory); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--turquoise); border-radius: 2px; }
.section--navy .eyebrow { color: var(--aqua); }
.section--navy .eyebrow::before { background: var(--turquoise); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.section-head .lead { margin-top: 1.1rem; font-size: 1.15rem; color: var(--muted); }
.section--navy .section-head .lead { color: rgba(255,248,237,.78); }
.section-head--center { margin-inline: auto; text-align: center; }

.lead { font-size: 1.15rem; color: var(--muted); }
.text-coral { color: var(--coral); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 1rem 1.7rem;
  border-radius: 999px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .25s ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform .35s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(5px); }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  background: linear-gradient(120deg, var(--coral), var(--gold));
  color: #2a0f06;
  box-shadow: 0 12px 28px rgba(255, 122, 89, 0.36);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(255, 122, 89, 0.46); }

.btn-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.42);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
}
.btn-ghost:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); border-color: var(--turquoise); }

.btn-text {
  color: var(--teal); font-weight: 700; padding: 0;
  display: inline-flex; align-items: center; gap: .5rem;
}
.btn-text .arrow { transition: transform .35s var(--ease); }
.btn-text:hover .arrow { transform: translateX(5px); }
.btn-lg { padding: 1.15rem 2rem; font-size: 1.075rem; }
.btn-block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }
.site-header.scrolled {
  background: rgba(6, 43, 63, 0.92);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 8px 30px rgba(3,28,43,.28);
}
.brand { display: flex; align-items: center; gap: .7rem; z-index: 2; }
.brand img { height: 52px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.35)); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-weight: 600; font-size: .98rem; color: rgba(255,255,255,.92);
  position: relative; padding: .35rem 0; transition: color .25s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--turquoise); border-radius: 2px; transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--white); }

.nav .btn-primary { padding: .8rem 1.4rem; font-size: .95rem; }

/* Hamburger */
.hamburger {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  position: relative; z-index: 120; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
}
.hamburger span {
  position: absolute; left: 11px; right: 11px; height: 2.5px; border-radius: 2px; background: var(--white);
  transition: transform .35s var(--ease), opacity .25s ease, top .35s var(--ease);
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 29px; }
body.menu-open .hamburger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-top: calc(var(--header-h) + 2rem); padding-bottom: clamp(3rem, 7vw, 6rem);
  color: var(--white); overflow: hidden;
  background: linear-gradient(135deg, var(--deep-navy), var(--teal) 130%);
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,28,43,.35) 0%, rgba(3,28,43,.15) 30%, rgba(3,28,43,.82) 100%),
    linear-gradient(90deg, rgba(3,28,43,.55), rgba(3,28,43,0) 70%);
}
.hero .container { position: relative; z-index: 2; width: 100%; }
.hero__inner { max-width: 860px; }
.hero h1 { color: var(--white); text-shadow: 0 4px 30px rgba(0,0,0,.3); line-height: 1.08; padding-bottom: .06em; }
.hero .hero__sub { margin-top: 1.5rem; font-size: clamp(1.1rem, 2vw, 1.4rem); max-width: 600px; color: rgba(255,255,255,.92); }
.hero .btn-row { margin-top: 2.2rem; }
.hero__reassure { margin-top: 1.4rem; display: inline-flex; align-items: center; gap: .6rem; font-size: .98rem; color: var(--aqua); font-weight: 600; }
.hero__reassure::before { content: "⚓"; font-size: 1rem; filter: grayscale(.2); }

.hero--page { min-height: 78svh; align-items: center; }
.hero--page .hero__inner { max-width: 760px; }

.chips { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 600;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px); color: var(--white);
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--turquoise); }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.55); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 7px;
}
.scroll-cue span { width: 4px; height: 8px; background: var(--white); border-radius: 4px; animation: scrollcue 1.7s var(--ease) infinite; }
@keyframes scrollcue { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(10px); } 100% { opacity: 0; } }

/* ---------- Media placeholder system ---------- */
.media {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(24,199,184,.20), rgba(245,184,75,.20)),
    var(--sand);
  border: 1px solid var(--border);
}
.media::before {
  content: ""; position: absolute; inset: 0; z-index: 1; opacity: .5;
  background-image: repeating-linear-gradient(135deg, rgba(6,43,63,.05) 0 12px, transparent 12px 24px);
}
.media::after {
  content: attr(data-label); position: absolute; inset: auto 1rem 1rem 1rem; z-index: 2;
  padding: .55rem .9rem; border-radius: 999px; width: fit-content; max-width: calc(100% - 2rem);
  background: rgba(3,28,43,.72); color: #fff; font-size: .76rem; font-weight: 600; letter-spacing: .01em;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  backdrop-filter: blur(10px);
}
.media img, .media video { position: relative; z-index: 3; width: 100%; height: 100%; object-fit: cover; }
.media[data-empty] img { display: block; } /* hidden until JS confirms load; toggled in script.js */
.ratio-16x9 { aspect-ratio: 16 / 9; }
.ratio-4x3 { aspect-ratio: 4 / 3; }
.ratio-1x1 { aspect-ratio: 1 / 1; }
.ratio-3x4 { aspect-ratio: 3 / 4; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--deep-navy); color: var(--ivory); padding-block: 1.5rem; }
.trust-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.4rem; }
.trust-item { display: inline-flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .95rem; color: rgba(255,248,237,.9); }
.trust-item svg { width: 22px; height: 22px; color: var(--turquoise); flex-shrink: 0; }
.trust-item--soft { color: rgba(255,248,237,.55); font-style: italic; }

/* ---------- Experience cards ---------- */
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.xcard {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.xcard .media { border-radius: 0; border: none; aspect-ratio: 16 / 11; }
.xcard__body { padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.xcard__body h3 { color: var(--navy); }
.xcard__body p { color: var(--muted); }
.xcard__foot { margin-top: auto; display: flex; flex-direction: column; gap: .75rem; }
.reassure-sm { font-size: .85rem; color: var(--teal); font-weight: 600; display: inline-flex; gap: .45rem; align-items: center; }
.reassure-sm::before { content: "✓"; color: var(--turquoise); font-weight: 800; }

@media (hover: hover) {
  .xcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); border-color: rgba(24,199,184,.45); }
  .xcard:hover .media img { transform: scale(1.06); }
  .media img { transition: transform .6s var(--ease); }
  .xcard:hover .btn-text .arrow { transform: translateX(5px); }
}

/* ---------- Feature cards ---------- */
.feature {
  background: var(--white); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.section--navy .feature { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); box-shadow: none; }
.section--navy .feature p { color: rgba(255,248,237,.78); }
.feature__icon {
  width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(24,199,184,.18), rgba(245,184,75,.18));
  color: var(--teal);
}
.section--navy .feature__icon { color: var(--aqua); background: rgba(24,199,184,.16); }
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { font-size: 1.3rem; }
.feature p { color: var(--muted); font-size: .98rem; }
@media (hover: hover) { .feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); } }

/* ---------- Route / numbered cards ---------- */
.route-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.route-card .media { border-radius: 0; border: none; aspect-ratio: 16 / 10; }
.route-card__body { padding: clamp(1.5rem, 3vw, 2rem); display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.route-card__body h3 { font-size: 1.45rem; }
.route-card__body > p { color: var(--muted); }
.highlights { display: flex; flex-direction: column; gap: .55rem; }
.highlights li { display: flex; gap: .6rem; align-items: flex-start; font-size: .95rem; color: var(--ink); }
.highlights li::before { content: ""; flex-shrink: 0; margin-top: .5rem; width: 7px; height: 7px; border-radius: 50%; background: var(--turquoise); }
.route-card__foot { margin-top: auto; padding-top: .5rem; }
@media (hover: hover) { .route-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); } .route-card:hover .media img { transform: scale(1.05); } }

.step {
  position: relative; background: var(--white); border-radius: var(--radius); padding: clamp(1.7rem, 3vw, 2.3rem);
  border: 1px solid var(--border); box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: .9rem;
}
.step__num {
  font-family: var(--font-display); font-size: 3rem; line-height: 1; font-weight: 600;
  background: linear-gradient(120deg, var(--coral), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.step h3 { font-size: 1.3rem; }
.step p { color: var(--muted); font-size: .98rem; }

/* ---------- Split / band ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media .media { aspect-ratio: 4 / 3; }
.split__body { display: flex; flex-direction: column; gap: 1.2rem; }
.split__body .btn-row { margin-top: .6rem; }

.cta-band { border-radius: var(--radius); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; position: relative; overflow: hidden; background: linear-gradient(120deg, var(--navy), var(--teal)); color: var(--white); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(245,184,75,.22), transparent 50%); pointer-events: none; }
.cta-band h2 { color: var(--white); position: relative; }
.cta-band p { position: relative; max-width: 620px; margin: 1.1rem auto 0; color: rgba(255,255,255,.9); font-size: 1.15rem; }
.cta-band .btn-row { position: relative; justify-content: center; margin-top: 2rem; }
.cta-band__reassure { position: relative; margin-top: 1.2rem; font-size: .95rem; color: var(--aqua); font-weight: 600; }

/* ---------- Checklist ---------- */
.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 2rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 600; font-size: 1rem; }
.checklist li svg { flex-shrink: 0; width: 24px; height: 24px; color: var(--teal); margin-top: 1px; }
.section--navy .checklist li svg { color: var(--turquoise); }

/* ---------- Gallery + lightbox ---------- */
.gallery { columns: 3; column-gap: 1.1rem; }
.gallery figure { break-inside: avoid; margin-bottom: 1.1rem; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; }
.gallery figure .media { border-radius: 0; border: none; }
.gallery .g-tall .media { aspect-ratio: 3 / 4; }
.gallery .g-wide .media { aspect-ratio: 4 / 3; }
@media (hover: hover) {
  .gallery figure::after { content: "⤢"; position: absolute; z-index: 4; top: .9rem; right: .9rem; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: rgba(3,28,43,.6); color: #fff; opacity: 0; transform: scale(.8); transition: opacity .3s ease, transform .3s var(--ease); }
  .gallery figure:hover::after { opacity: 1; transform: scale(1); }
  .gallery figure:hover .media img { transform: scale(1.07); }
}
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; place-items: center; padding: 5vw; background: rgba(3,18,28,.92); backdrop-filter: blur(6px); }
.lightbox.open { display: grid; animation: lbfade .3s ease; }
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lightbox__inner { max-width: 1000px; width: 100%; }
.lightbox__inner .media { aspect-ratio: 16 / 10; border-radius: var(--radius); }
.lightbox__inner .media img { display: block; }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); color: #fff; font-size: 1.5rem; line-height: 1; }
.lightbox__close:hover { background: rgba(255,255,255,.22); }

/* ---------- Reviews placeholder ---------- */
.review-card { background: var(--white); border: 1.5px dashed var(--border); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.4rem); display: flex; flex-direction: column; gap: 1rem; min-height: 200px; }
.review-card .stars { display: flex; gap: .25rem; color: rgba(101,119,131,.35); }
.review-card .stars svg { width: 20px; height: 20px; }
.review-card .placeholder-line { height: 12px; border-radius: 6px; background: rgba(6,43,63,.07); }
.review-card .placeholder-line.short { width: 60%; }
.review-card__tag { margin-top: auto; font-family: ui-monospace, Menlo, monospace; font-size: .8rem; color: var(--coral); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: flex; flex-direction: column; gap: .8rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .3s ease, border-color .3s ease; }
.section--navy .faq-item { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.faq-item.open { box-shadow: var(--shadow-card); border-color: rgba(24,199,184,.4); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.3rem 1.5rem; text-align: left; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--navy); }
.section--navy .faq-q { color: var(--white); }
.faq-icon { position: relative; flex-shrink: 0; width: 24px; height: 24px; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--teal); border-radius: 2px; transform: translate(-50%, -50%); transition: transform .35s var(--ease), opacity .25s ease; }
.faq-icon::before { width: 16px; height: 2.5px; }
.faq-icon::after { width: 2.5px; height: 16px; }
.section--navy .faq-icon::before, .section--navy .faq-icon::after { background: var(--turquoise); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a__inner { padding: 0 1.5rem 1.4rem; color: var(--muted); }
.section--navy .faq-a__inner { color: rgba(255,248,237,.78); }

/* ---------- Booking page ---------- */
.embed-wrap { max-width: 920px; margin-inline: auto; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-soft); padding: clamp(1rem, 3vw, 2rem); }
#ghl-booking-embed { min-height: 720px; width: 100%; border-radius: var(--radius-sm); overflow: hidden; }
.embed-empty { min-height: 720px; display: grid; place-items: center; text-align: center; padding: 2rem; border-radius: var(--radius-sm); background: linear-gradient(135deg, rgba(24,199,184,.10), rgba(245,184,75,.10)), var(--ivory); border: 1.5px dashed var(--border); }
.embed-empty .mono { font-family: ui-monospace, Menlo, monospace; font-size: .85rem; color: var(--coral); margin-top: .8rem; }
.embed-fallback { text-align: center; margin-top: 1.2rem; color: var(--muted); font-size: .95rem; }
.embed-fallback a { color: var(--teal); font-weight: 700; }

.form-card { max-width: 720px; margin-inline: auto; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-card); padding: clamp(1.8rem, 4vw, 3rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .9rem; color: var(--navy); }
.field input, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: .9rem 1rem; border-radius: 12px; border: 1.5px solid var(--border); background: var(--cream);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--turquoise); box-shadow: 0 0 0 4px rgba(24,199,184,.16); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { margin-top: 1rem; font-size: .9rem; color: var(--muted); }

/* ---------- Legal pages ---------- */
.legal { max-width: 780px; margin-inline: auto; }
.legal h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); }
.legal .updated { color: var(--muted); font-weight: 600; margin-top: .5rem; }
.legal h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.6rem; margin-bottom: .8rem; }
.legal p { color: var(--ink); margin-bottom: 1rem; }
.legal ul { margin: 0 0 1rem 1.2rem; list-style: disc; color: var(--ink); }
.legal ul li { margin-bottom: .4rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--deep-navy); color: rgba(255,248,237,.82); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; max-width: 320px; }
.footer-logo { display: inline-grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 18px; padding: .9rem 1.1rem; width: fit-content; }
.footer-logo img { height: 56px; width: auto; }
.footer-brand p { font-size: .98rem; line-height: 1.6; color: rgba(255,248,237,.72); }
.footer-col h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--aqua); margin-bottom: 1.1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a, .footer-col span { font-size: .96rem; color: rgba(255,248,237,.78); transition: color .25s ease; }
.footer-col a:hover { color: var(--white); }
.footer-phone { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); font-weight: 600; }
.socials { display: flex; gap: .7rem; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); transition: background .25s ease, transform .25s ease; }
.socials a:hover { background: var(--teal); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; color: var(--white); }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.12); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer-disclaimer { font-size: .82rem; color: rgba(255,248,237,.5); max-width: 640px; line-height: 1.6; }
.footer-legal { display: flex; gap: 1.4rem; font-size: .85rem; }
.footer-copy { font-size: .82rem; color: rgba(255,248,237,.5); margin-top: 1.2rem; }

/* ---------- Sticky mobile booking bar ---------- */
.mobile-book {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; display: none;
  padding: .7rem .9rem calc(.7rem + env(safe-area-inset-bottom));
  background: rgba(6,43,63,.96); backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.12);
  gap: .7rem; box-shadow: 0 -8px 24px rgba(3,28,43,.3);
}
.mobile-book .btn-primary { flex: 1; padding: .95rem; }
.mobile-book .mb-call {
  flex-shrink: 0; display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .15rem; padding: .55rem 1.1rem; border-radius: 14px; background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2); color: var(--white); font-weight: 700; font-size: .8rem;
}
.mobile-book .mb-call svg { width: 20px; height: 20px; color: var(--aqua); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 1; transform: none; transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* Hero entrance */
.hero .anim { opacity: 0; transform: translateY(26px); animation: heroUp .9s var(--ease) forwards; }
.hero .anim-1 { animation-delay: .15s; }
.hero .anim-2 { animation-delay: .3s; }
.hero .anim-3 { animation-delay: .45s; }
.hero .anim-4 { animation-delay: .6s; }
.hero .anim-5 { animation-delay: .75s; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; max-width: none; }
  .gallery { columns: 2; }
}
@media (max-width: 860px) {
  :root { --header-h: 72px; }
  .nav-links, .nav .btn-primary { display: none; }
  .hamburger { display: block; }
  .nav { gap: 0; }

  /* Mobile menu panel */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 110; display: flex; flex-direction: column;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem; gap: .4rem;
    background: linear-gradient(160deg, var(--navy), var(--deep-navy));
    transform: translateY(-100%); opacity: 0; pointer-events: none;
    transition: transform .45s var(--ease), opacity .35s ease; visibility: hidden;
  }
  body.menu-open .mobile-menu { transform: none; opacity: 1; pointer-events: auto; visibility: visible; }
  .mobile-menu a {
    font-family: var(--font-display); font-size: 1.7rem; font-weight: 600; color: var(--white);
    padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
    opacity: 0; transform: translateY(14px);
  }
  body.menu-open .mobile-menu a { animation: menuIn .5s var(--ease) forwards; }
  body.menu-open .mobile-menu a:nth-child(1) { animation-delay: .12s; }
  body.menu-open .mobile-menu a:nth-child(2) { animation-delay: .18s; }
  body.menu-open .mobile-menu a:nth-child(3) { animation-delay: .24s; }
  body.menu-open .mobile-menu a:nth-child(4) { animation-delay: .30s; }
  body.menu-open .mobile-menu a:nth-child(5) { animation-delay: .36s; }
  @keyframes menuIn { to { opacity: 1; transform: none; } }
  .mobile-menu .btn-primary { margin-top: 1.4rem; font-size: 1.1rem; padding: 1.1rem; border-bottom: none; opacity: 0; }
  body.menu-open .mobile-menu .btn-primary { animation: menuIn .5s var(--ease) .42s forwards; }
  .mobile-menu .mm-phone { margin-top: auto; font-size: 1rem; color: var(--aqua); font-family: var(--font-body); border-bottom: none; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .checklist { grid-template-columns: 1fr; }
  .gallery { columns: 2; column-gap: .8rem; }
  .form-grid { grid-template-columns: 1fr; }

  .mobile-book { display: flex; }
  body { padding-bottom: 76px; }
  body.has-mobilebar .site-footer { margin-bottom: 0; }
}
@media (max-width: 520px) {
  .gallery { columns: 1; }
  .trust-strip .container { gap: .8rem 1.4rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Desktop: no mobile menu */
@media (min-width: 861px) { .mobile-menu { display: none; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero .anim { opacity: 1 !important; transform: none !important; }
}

/* hardening: images always render, no filename placeholder labels */
.media::after{content:none !important;}
.media[data-empty] img{display:block !important;}
.reveal{opacity:1 !important;transform:none !important;}

/* ---------- Full-bleed CTA banner ---------- */
.cta-banner{position:relative;min-height:60vh;display:grid;align-items:center;overflow:hidden;color:#fff;padding-block:4rem}
.cta-banner__bg{position:absolute;inset:0;background-size:cover;background-position:center;z-index:0}
.cta-banner__bg::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(3,28,43,.32),rgba(3,28,43,.64))}
.cta-banner .container{position:relative;z-index:1}
.cta-banner__inner{max-width:720px}
.cta-banner__inner h2{color:#fff;margin-bottom:.6rem}
.cta-banner__inner p{color:rgba(255,255,255,.92);font-size:1.1rem;margin-bottom:1.4rem;max-width:560px}
.eyebrow--light{color:#fff;opacity:.92}

/* hero eyebrow contrast over photo/video */
.hero .eyebrow{color:#ffffff;text-shadow:0 1px 12px rgba(3,28,43,.55)}
.hero .eyebrow::before{background:var(--gold)}

/* ---------- Membership tiers ---------- */
.container--narrow{max-width:900px}
.tier{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:2rem 1.8rem;display:flex;flex-direction:column;gap:.4rem;box-shadow:var(--shadow-card);position:relative}
.tier--featured{border-color:var(--turquoise);box-shadow:var(--shadow-soft)}
.tier__badge{position:absolute;top:-12px;left:1.8rem;background:linear-gradient(120deg,var(--coral),var(--gold));color:#fff;font-size:.72rem;font-weight:700;letter-spacing:.04em;text-transform:uppercase;padding:.35rem .75rem;border-radius:999px}
.tier__name{color:var(--navy);font-size:1.25rem}
.tier__price{font-family:var(--font-display);font-size:2.6rem;font-weight:600;color:var(--navy);line-height:1;margin:.2rem 0 .4rem}
.tier__price span{font-family:var(--font-body);font-size:1rem;font-weight:600;color:var(--muted)}
.tier__list{display:flex;flex-direction:column;gap:.55rem;margin:.6rem 0 1.4rem}
.tier__list li{display:flex;gap:.6rem;align-items:flex-start;font-size:.95rem;color:var(--ink)}
.tier__list li::before{content:"";flex-shrink:0;margin-top:.5rem;width:7px;height:7px;border-radius:50%;background:var(--turquoise)}
.tier .btn{margin-top:auto}

/* ---------- Waiver / legal doc ---------- */
.waiver-actions{display:flex;flex-wrap:wrap;gap:1rem;margin:1.5rem 0 .5rem}
.waiver-note{color:var(--muted);font-size:.95rem;margin-bottom:1.5rem}
.legal-doc{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:clamp(1.5rem,4vw,2.6rem);box-shadow:var(--shadow-card)}
.legal-doc h2{font-size:1.18rem;color:var(--navy);margin:1.8rem 0 .6rem;padding-top:1.3rem;border-top:1px solid var(--border)}
.legal-doc h2:first-of-type{border-top:none;padding-top:0;margin-top:0}
.legal-doc h3{font-size:1.05rem;color:var(--navy);margin:1.4rem 0 .5rem}
.legal-doc p{color:var(--ink);margin-bottom:.55rem;line-height:1.6}
.legal-doc .req{color:var(--coral);font-size:.85rem;font-weight:600}
.legal-doc .chk{font-weight:600;color:var(--navy)}
.legal-doc .chk em{font-weight:400;color:var(--muted)}
.legal-doc .fl{border-bottom:1px dashed var(--border);padding-bottom:1.5rem;color:var(--muted);font-weight:600}
.legal-end{text-align:center;color:var(--muted);font-weight:600;margin-top:2rem}
@media print{.site-header,.mobile-menu,.mobile-book,.site-footer,.waiver-actions,.waiver-note{display:none!important}.legal-doc{border:none;box-shadow:none;padding:0}}

/* ==========================================================
   v2 additions — guided single-tour site
   ========================================================== */
.skip-link{position:absolute;left:-9999px;top:0;z-index:999;background:var(--navy);color:#fff;padding:.8rem 1.2rem;border-radius:0 0 12px 0;font-weight:700}
.skip-link:focus{left:0}
.tel{color:inherit;font-weight:700;white-space:nowrap}
.section--navy .tel{color:var(--aqua)}
.text-center{text-align:center}

/* Trust badges */
.badges{display:flex;flex-wrap:wrap;gap:.9rem;justify-content:center}
.badge{display:inline-flex;align-items:center;gap:.6rem;padding:.7rem 1.15rem;border-radius:999px;font-weight:700;font-size:.92rem;background:var(--white);border:1px solid var(--border);box-shadow:var(--shadow-card);color:var(--navy)}
.badge svg{width:20px;height:20px;color:var(--teal);flex-shrink:0}
.section--navy .badge{background:rgba(255,255,255,.06);border-color:rgba(255,255,255,.14);color:#fff}
.section--navy .badge svg{color:var(--turquoise)}

/* Pricing */
.price-wrap{max-width:760px;margin-inline:auto}
.price-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-soft);overflow:hidden}
.price-card__head{background:linear-gradient(120deg,var(--navy),var(--teal));color:#fff;padding:clamp(1.8rem,4vw,2.6rem);text-align:center;position:relative}
.price-card__head::after{content:"";position:absolute;inset:0;background:radial-gradient(circle at 85% 15%,rgba(245,184,75,.25),transparent 55%)}
.price-card__head h3{color:#fff;position:relative;font-size:clamp(1.5rem,3vw,2rem)}
.price-amount{position:relative;font-family:var(--font-display);font-weight:600;font-size:clamp(3.2rem,9vw,4.6rem);line-height:1;margin-top:.4rem}
.price-amount span{font-family:var(--font-body);font-size:1.05rem;font-weight:600;opacity:.9;letter-spacing:.02em}
.price-card__body{padding:clamp(1.6rem,4vw,2.6rem)}
.price-includes{display:grid;grid-template-columns:1fr 1fr;gap:.85rem 1.6rem}
.price-includes li{display:flex;gap:.7rem;align-items:flex-start;font-weight:600;font-size:.98rem}
.price-includes li svg{width:22px;height:22px;color:var(--teal);flex-shrink:0;margin-top:1px}
.price-card__foot{margin-top:1.8rem;display:flex;flex-direction:column;gap:.9rem;align-items:center;text-align:center}
.price-local{font-weight:700;color:var(--navy)}
@media(max-width:560px){.price-includes{grid-template-columns:1fr}}

/* Callout / deposit */
.callout{max-width:820px;margin-inline:auto;background:var(--white);border:1px solid var(--border);border-left:5px solid var(--gold);border-radius:var(--radius-sm);padding:clamp(1.4rem,3vw,2rem);box-shadow:var(--shadow-card);display:flex;gap:1.1rem;align-items:flex-start}
.callout__icon{flex-shrink:0;width:46px;height:46px;border-radius:12px;display:grid;place-items:center;background:linear-gradient(135deg,rgba(245,184,75,.2),rgba(255,122,89,.16));color:var(--coral)}
.callout__icon svg{width:26px;height:26px}
.callout h3{font-size:1.25rem;margin-bottom:.5rem}
.callout p{color:var(--muted);margin-bottom:.5rem}
.callout p:last-child{margin-bottom:0}
.callout--navy{background:rgba(255,255,255,.05);border-left-color:var(--turquoise);color:#fff}
.callout--navy h3{color:#fff}
.callout--navy p{color:rgba(255,248,237,.8)}

/* Requirements */
.req-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.req-item{display:flex;gap:.8rem;align-items:flex-start;background:var(--white);border:1px solid var(--border);border-radius:var(--radius-sm);padding:1.1rem 1.25rem;box-shadow:var(--shadow-card);font-weight:600}
.req-item svg{width:24px;height:24px;color:var(--teal);flex-shrink:0}
@media(max-width:640px){.req-grid{grid-template-columns:1fr}}

/* Route timeline */
.timeline{position:relative;max-width:960px;margin-inline:auto}
.timeline::before{content:"";position:absolute;left:27px;top:8px;bottom:8px;width:3px;background:linear-gradient(180deg,var(--turquoise),var(--gold));border-radius:3px}
.tl-item{position:relative;padding-left:76px;margin-bottom:clamp(1.6rem,3vw,2.4rem)}
.tl-num{position:absolute;left:0;top:0;width:56px;height:56px;border-radius:50%;display:grid;place-items:center;font-family:var(--font-display);font-weight:600;font-size:1.35rem;color:#fff;background:linear-gradient(135deg,var(--teal),var(--navy));box-shadow:0 8px 20px rgba(6,43,63,.25);z-index:2}
.tl-item--stop .tl-num{background:linear-gradient(135deg,var(--coral),var(--gold));color:#2a0f06}
.tl-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-card);overflow:hidden;display:grid;grid-template-columns:1.15fr 1fr}
.tl-card__body{padding:clamp(1.3rem,3vw,1.9rem);display:flex;flex-direction:column;gap:.7rem}
.tl-eyebrow{font-family:var(--font-body);font-weight:700;font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;color:var(--teal)}
.tl-card__body h3{font-size:1.35rem}
.tl-card__body p{color:var(--muted);font-size:.97rem}
.tl-list{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:.2rem}
.tl-list li{font-size:.83rem;font-weight:600;color:var(--navy);background:var(--sand);border-radius:999px;padding:.35rem .8rem}
.tl-media{position:relative;min-height:180px}
.tl-media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.tl-item--note .tl-card{grid-template-columns:1fr;border-style:dashed;box-shadow:none;background:var(--ivory)}
.tl-item--note .tl-num{background:var(--white);color:var(--teal);border:2px dashed var(--gold)}
@media(max-width:720px){
  .tl-card{grid-template-columns:1fr}
  .tl-media{min-height:200px;order:-1}
  .tl-item{padding-left:62px}
  .timeline::before{left:23px}
  .tl-num{width:48px;height:48px;font-size:1.2rem}
}

/* Booking steps */
.book-step{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow-card);padding:clamp(1.4rem,3.5vw,2.4rem);margin-bottom:1.5rem}
.book-step__head{display:flex;gap:1rem;align-items:center;margin-bottom:1.3rem}
.step-badge{flex-shrink:0;width:44px;height:44px;border-radius:50%;display:grid;place-items:center;font-family:var(--font-display);font-weight:600;font-size:1.25rem;color:#fff;background:linear-gradient(135deg,var(--teal),var(--navy))}
.book-step__head h2{font-size:clamp(1.4rem,3vw,1.9rem)}
.book-step__head p{color:var(--muted);font-size:.95rem;margin-top:.15rem}
.embed-wrap--full{max-width:none}

/* Order summary */
.order-summary{background:var(--ivory);border:1px solid var(--border);border-radius:var(--radius-sm);padding:1.3rem 1.5rem;margin-bottom:1.3rem}
.summary-row{display:flex;justify-content:space-between;align-items:center;gap:1rem;padding:.5rem 0;font-weight:600}
.summary-row+.summary-row{border-top:1px dashed var(--border)}
.summary-total{font-family:var(--font-display);font-size:1.6rem;color:var(--navy)}
.qty{display:inline-flex;align-items:center;border:1.5px solid var(--border);border-radius:999px;overflow:hidden;background:#fff}
.qty button{width:40px;height:40px;font-size:1.3rem;color:var(--navy);background:none}
.qty button:hover{background:var(--sand)}
.qty input{width:48px;text-align:center;border:none;font-weight:700;font-size:1.1rem;font-family:inherit;background:none}
.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}

/* Notice */
.notice{border-radius:var(--radius-sm);padding:1.1rem 1.3rem;font-size:.95rem;display:flex;gap:.8rem;align-items:flex-start}
.notice svg{width:22px;height:22px;flex-shrink:0;margin-top:1px}
.notice--warn{background:#FFF6E8;border:1px solid rgba(245,184,75,.5);color:#7a5a12}
.notice--warn svg{color:#d79412}
.notice--info{background:rgba(24,199,184,.08);border:1px solid rgba(24,199,184,.35);color:var(--teal)}
.notice a{font-weight:700;color:inherit;text-decoration:underline}

/* Agreement checkboxes */
.check-field{display:flex;gap:.75rem;align-items:flex-start;padding:.55rem 0;font-size:.95rem;color:var(--ink)}
.check-field input{margin-top:.2rem;width:20px;height:20px;flex-shrink:0;accent-color:var(--teal)}
.check-field label{font-weight:600}
.req-star{color:var(--coral)}
#paypal-buttons{margin-top:.4rem;min-height:48px}
.hidden{display:none!important}

/* Ticket */
.ticket-wrap{max-width:660px;margin-inline:auto}
.ticket{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-soft);border:1px solid var(--border)}
.ticket__head{background:linear-gradient(120deg,var(--navy),var(--teal));color:#fff;padding:1.5rem 1.7rem;display:flex;justify-content:space-between;align-items:center;gap:1rem}
.ticket__head h3{color:#fff;font-size:1.35rem;margin:0}
.ticket__head .conf{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;opacity:.85;display:block;margin-bottom:.2rem}
.ticket__brand{text-align:right;font-size:.8rem;opacity:.9}
.ticket__body{padding:1.7rem;display:grid;grid-template-columns:1fr auto;gap:1.6rem;align-items:center}
.ticket__qr{width:148px;height:148px;display:grid;place-items:center;background:#fff;border:1px solid var(--border);border-radius:14px;padding:8px}
.ticket__qr img,.ticket__qr canvas,.ticket__qr table{max-width:100%;height:auto}
.ticket__rows{display:grid;grid-template-columns:1fr 1fr;gap:.85rem 1.2rem}
.trow{display:flex;flex-direction:column}
.trow span{font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;color:var(--muted);font-weight:700}
.trow strong{font-size:1.02rem;color:var(--navy)}
.ticket__foot{border-top:1px dashed var(--border);padding:1.1rem 1.7rem;background:var(--ivory);font-size:.82rem;color:var(--muted);display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem}
@media(max-width:540px){.ticket__body{grid-template-columns:1fr;justify-items:center;text-align:center}.ticket__rows{text-align:left}}

/* Receipt */
.receipt{max-width:660px;margin:1.4rem auto 0;background:#fff;border:1px solid var(--border);border-radius:var(--radius-sm);padding:1.5rem 1.7rem;box-shadow:var(--shadow-card)}
.receipt h4{font-family:var(--font-body);letter-spacing:.06em;text-transform:uppercase;font-size:.78rem;color:var(--muted);margin-bottom:.9rem}

/* Map + contact */
.map-wrap{border-radius:var(--radius);overflow:hidden;border:1px solid var(--border);box-shadow:var(--shadow-card);background:var(--sand)}
.map-wrap iframe{display:block;width:100%;height:420px;border:0}
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.5rem,4vw,3rem);align-items:start}
@media(max-width:860px){.contact-grid{grid-template-columns:1fr}}
.contact-methods{display:flex;flex-direction:column;gap:1rem;margin:1.4rem 0}
.contact-method{display:flex;gap:1rem;align-items:center;background:var(--white);border:1px solid var(--border);border-radius:var(--radius-sm);padding:1.1rem 1.3rem;box-shadow:var(--shadow-card)}
.contact-method svg{width:26px;height:26px;color:var(--teal);flex-shrink:0}
.cm-label{font-size:.72rem;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);font-weight:700}
.cm-value{font-family:var(--font-display);font-size:1.3rem;color:var(--navy);font-weight:600;display:block}
.phone-hero{font-family:var(--font-display);font-weight:600;font-size:clamp(2rem,6vw,3rem);color:var(--navy);display:inline-flex;align-items:center;gap:.6rem;line-height:1}
.section--navy .phone-hero{color:#fff}
.phone-hero svg{width:.85em;height:.85em;color:var(--teal)}
.section--navy .phone-hero svg{color:var(--turquoise)}

/* Print */
@media print{
  .site-header,.mobile-menu,.mobile-book,.site-footer,.skip-link,.no-print{display:none!important}
  body{padding:0!important;background:#fff}
  .ticket,.receipt{box-shadow:none;border:1px solid #ccc}
  main{padding-top:0!important}
}

/* ---------- Meet the Team ---------- */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:clamp(1rem,2.5vw,1.6rem)}
.team-card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-card);transition:transform .4s var(--ease),box-shadow .4s var(--ease)}
.team-card .media{aspect-ratio:4/5;border-radius:0;border:none}
.team-card__body{padding:1.05rem 1rem 1.3rem;text-align:center}
.team-card__name{font-family:var(--font-display);font-size:1.18rem;color:var(--navy);font-weight:600;line-height:1.15}
.team-card__role{font-size:.76rem;letter-spacing:.1em;text-transform:uppercase;color:var(--teal);font-weight:700;margin-top:.35rem}
@media (hover:hover){.team-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-soft)}.team-card:hover .media img{transform:scale(1.05)}}
@media (max-width:860px){.team-grid{grid-template-columns:repeat(2,1fr)}}

/* ---------- Hero background video ---------- */
.hero__video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
@media (prefers-reduced-motion: reduce){ .hero__video{display:none} }

/* ---------- Booking calendar: full-bleed + mobile-optimized ---------- */
#book-flow .container{max-width:1160px!important}
#book-flow .embed-wrap{max-width:none;padding:clamp(.4rem,1.4vw,1rem)}
#book-flow .bokunWidget{width:100%;min-height:80vh}
#book-flow .bokunWidget iframe{width:100%!important;min-height:80vh!important;border:0}
@media (max-width:700px){
  #book-flow .container{padding-inline:.5rem}
  #book-flow .embed-wrap{padding:0;border-radius:14px}
  #book-flow .bokunWidget,#book-flow .bokunWidget iframe{min-height:88vh!important}
}

/* ---------- Book page: light hero + solid header (fully readable, no white text) ---------- */
.page-book .site-header{background:rgba(6,43,63,.95);backdrop-filter:blur(14px) saturate(140%);box-shadow:0 8px 30px rgba(3,28,43,.28)}
.hero--light{display:block;min-height:auto;background:linear-gradient(160deg,#FFFDF8,#F4E8D3);color:var(--ink);padding-top:calc(var(--header-h) + 3rem);padding-bottom:clamp(2.4rem,5vw,3.6rem);overflow:hidden}
.hero--light .hero__media{display:none}
.hero--light .hero__inner{max-width:760px}
.hero--light .eyebrow{color:var(--teal);text-shadow:none}
.hero--light .eyebrow::before{background:var(--turquoise)}
.hero--light h1{color:var(--navy);text-shadow:none}
.hero--light .hero__sub{color:#33454F}
.hero--light .chip{background:#fff;color:var(--navy);border-color:var(--border)}
.hero--light .chip::before{background:var(--turquoise)}
.hero--light .btn-secondary{background:#fff;color:var(--navy);border-color:var(--border)}
.hero--light .btn-secondary:hover{background:var(--sand)}
