/* ===========================================================
   AquaGo! — CINEMATIC theme
   Dark, full-bleed, immersive travel-film aesthetic.
   Self-contained. Mobile-first. No horizontal overflow.
   =========================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --teal: #1C4474;         /* deep navy-blue (base accent) */
  --teal-dark: #122F54;
  --fuchsia: #C42A78;      /* deep magenta-pink pop */
  --fuchsia-soft: #DC6FAB; /* softer magenta accent */
  --cream: #f7f3ec;
  --white: #ffffff;
  --ink: #07182E;          /* near-black navy */
  --ink-soft: #0E2747;
  --fog: rgba(247, 243, 236, 0.72);

  --shadow-deep: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --maxw: 1180px;

  --font-head: "Archivo", "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, -apple-system, sans-serif;
  --font-drama: "Libre Baskerville", "Playfair Display", Georgia, serif;
  --font-script: "Yellowtail", cursive;
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

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

a { color: inherit; }

p { overflow-wrap: break-word; word-wrap: break-word; }

h1, h2, h3 {
  overflow-wrap: break-word;
  text-wrap: balance;
}

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

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 5vw, 3rem);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--fuchsia);
  color: #fff;
  padding: .75rem 1.25rem;
  z-index: 9999;
  border-radius: 0 0 8px 0;
}
.skip:focus { left: 0; }

/* ---------- Top bar ---------- */
.topbar {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.6rem) clamp(1.1rem, 5vw, 3rem);
}
.topbar img { height: clamp(46px, 9.5vw, 64px); width: auto; filter: drop-shadow(0 2px 10px rgba(0,0,0,.6)); }

.nav-cta {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  border: 1.5px solid var(--fuchsia);
  padding: .6rem 1.2rem;
  border-radius: 999px;
  background: var(--fuchsia);
  box-shadow: 0 8px 22px -10px rgba(196,42,120,.7);
  transition: box-shadow .25s, transform .25s, filter .25s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); filter: brightness(1.08); box-shadow: 0 12px 28px -10px rgba(196,42,120,.85); }

/* ---------- Cinematic section base ---------- */
.cine {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.cine-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Fixed parallax only on capable / desktop devices */
@media (min-width: 821px) and (hover: hover) {
  .cine-bg.fixed { background-attachment: fixed; }
}

.cine-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ---------- Hero crossfade slideshow ---------- */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slide.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}

/* ---------- HERO ---------- */
.hero {
  align-items: center;
  text-align: center;
}
.hero .cine-veil {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(28,68,116,.25), transparent 60%),
    linear-gradient(180deg, rgba(7,24,46,.55) 0%, rgba(7,24,46,.25) 45%, rgba(7,24,46,.92) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
  padding: 7rem clamp(1.1rem, 5vw, 3rem) 4rem;
}

.eyebrow {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: clamp(.64rem, 2.4vw, .82rem);
  font-weight: 800;
  color: var(--cream);
  opacity: 1;
  margin: 0 0 1.1rem;
  padding-left: .42em;
}

.hero h1 {
  font-family: var(--font-drama);
  font-weight: 700;
  font-size: clamp(2.3rem, 9.5vw, 6rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;

}
.hero h1 .go { color: var(--fuchsia); font-weight: 700; }
/* Pink, bold "Go" in every AquaGo wordmark (legal intro, footer, etc.) */
.go { color: var(--fuchsia); font-weight: 800; }
/* Keep "Aqua" as bold as "Go" wherever the wordmark is inline body text */
.brandword { font-weight: 800; }

.script {
  font-family: var(--font-script);
  font-weight: 700;
  -webkit-text-stroke: .6px var(--fuchsia);
  color: var(--fuchsia);
  font-size: clamp(1.8rem, 8vw, 3.4rem);
  line-height: 1;
  display: block;
  margin: .35rem 0 1.4rem;

}

.hero-line {
  font-family: var(--font-drama);
  font-style: italic;
  font-size: clamp(0.82rem, 3.1vw, 1.9rem);
  font-weight: 700;
  margin: 0 auto 2.2rem;
  max-width: none;
  white-space: nowrap;
  color: var(--cream);

}

/* CTA buttons */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: clamp(.85rem, 2.6vw, 1rem);
  text-decoration: none;
  padding: 1rem 2.2rem;
  border-radius: 999px;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.btn-primary {
  background: var(--fuchsia);
  color: #fff;
  box-shadow: 0 14px 40px -10px rgba(196,42,120,.6);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -10px rgba(196,42,120,.75); }
.btn-ghost {
  border: 1.6px solid rgba(247,243,236,.6);
  color: var(--cream);
  background: rgba(0,0,0,.15);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(247,243,236,.12); transform: translateY(-3px); }

.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }

/* Live conditions overlay */
.conditions {
  position: relative;
  z-index: 2;
  margin: 2.6rem auto 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem;
  justify-content: center;
  padding: .7rem 1.4rem;
  border-radius: 999px;
  background: rgba(7,24,46,.5);
  border: 1px solid rgba(247,243,236,.16);
  backdrop-filter: blur(8px);
  font-size: clamp(.72rem, 2.8vw, .9rem);
  letter-spacing: .04em;
}
.conditions span { display: inline-flex; align-items: center; gap: .4rem; white-space: nowrap; }
.conditions b { color: var(--fuchsia); font-weight: 700; }
.conditions .lbl { opacity: .7; text-transform: uppercase; letter-spacing: .14em; font-size: .68rem; }

.scroll-hint {
  position: absolute;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  opacity: .8;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0);} 50% { transform: translateX(-50%) translateY(6px);} }
@media (prefers-reduced-motion: reduce) { .scroll-hint { animation: none; } }

/* ---------- Facts strip ---------- */
.facts {
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  position: relative;
  z-index: 5;
}
.facts ul {
  list-style: none;
  margin: 0;
  padding: clamp(1.6rem, 4vw, 2.4rem) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 1rem 1.5rem;
  text-align: center;
}
.facts li {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(.9rem, 3vw, 1.05rem);
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-width: 0;
}
.facts .amt { color: var(--cream); }
.facts .amt b { color: #fff; font-weight: 900; font-size: 1.25em; }
.facts .dot { color: var(--fuchsia); }

/* ---------- Full-bleed panorama banner ---------- */
.pano {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--ink);
  line-height: 0;
}
.pano img {
  width: 100%;
  max-width: 100%;
  height: clamp(220px, 42vw, 460px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.pano-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,24,46,.35) 0%, transparent 30%, transparent 60%, rgba(7,24,46,.85) 100%);
  pointer-events: none;
}
.pano-cap {
  position: absolute;
  left: 0; right: 0; bottom: clamp(.9rem, 3vw, 1.8rem);
  margin: 0;
  text-align: center;
  z-index: 2;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: clamp(.66rem, 2.6vw, .9rem);
  font-weight: 600;
  line-height: 1.6;
  color: var(--cream);

}
.pano-cap span { color: var(--fuchsia); font-weight: 800; }

/* ---------- Story / immersive split sections ---------- */
.story .cine-veil {
  background: linear-gradient(180deg, rgba(7,24,46,.35), rgba(7,24,46,.78));
}
.story.left { align-items: center; justify-content: flex-start; }
.story.right { align-items: center; justify-content: flex-end; }

.story-card {
  position: relative;
  z-index: 2;
  max-width: 560px;
  width: 100%;
  margin: clamp(5rem,12vh,8rem) 0;
  padding: clamp(1.6rem, 5vw, 2.6rem);
  background: rgba(7,24,46,.62);
  border: 1px solid rgba(247,243,236,.14);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-deep);
}
.story-card .kicker {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  color: var(--fuchsia);
  font-weight: 800;
  margin: 0 0 .8rem;
}
.story-card h2 {
  font-family: var(--font-drama);
  font-weight: 800;
  font-size: clamp(1.8rem, 6vw, 2.9rem);
  line-height: 1.02;
  margin: 0 0 1rem;
}
.story-card p { margin: 0 0 1rem; color: var(--fog); font-size: 1.02rem; }
.story-card p:last-child { margin-bottom: 0; }

/* ---------- Steps ---------- */
.steps {
  background: var(--ink-soft);
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}
.section-head { text-align: center; margin-bottom: clamp(2rem, 5vw, 3.2rem); }
.section-head .kicker {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .3em;
  font-size: .74rem;
  color: var(--fuchsia);
  font-weight: 800;
  margin: 0 0 .7rem;
}
.section-head h2 {
  font-family: var(--font-drama);
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.4rem);
  line-height: 1.02;
  margin: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1.4rem;
}
.step {
  background: linear-gradient(160deg, rgba(28,68,116,.32), rgba(7,24,46,.5));
  border: 1px solid rgba(247,243,236,.12);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  min-width: 0;
  transition: transform .3s, border-color .3s;
}
.step:hover { transform: translateY(-4px); border-color: rgba(196,42,120,.5); }
.step .num {
  font-family: var(--font-drama);
  font-style: italic;
  font-weight: 800;
  font-size: 3rem;
  line-height: 1;
  color: var(--fuchsia);
  display: block;
  margin-bottom: .6rem;
}
.step h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin: 0 0 .5rem; }
.step p { margin: 0; color: var(--fog); font-size: .97rem; }

/* ---------- FAQ ---------- */
.faq {
  background: var(--ink);
  padding: clamp(3.5rem, 9vw, 6rem) 0;
}
.faq-list { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid rgba(247,243,236,.16);
  padding: .4rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem .2rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.02rem, 3.4vw, 1.2rem);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--fuchsia);
  color: var(--fuchsia);
  display: grid; place-items: center;
  font-size: 1.2rem; line-height: 1;
  transition: transform .3s, background .3s, color .3s;
}
.faq details[open] summary .plus { transform: rotate(45deg); background: var(--fuchsia); color: #fff; }
.faq details p { margin: 0 0 1.2rem; color: var(--fog); padding-right: 2rem; }
.faq a { color: var(--fuchsia); }

/* ---------- Final CTA band ---------- */
.cta-band {
  position: relative;
  min-height: 80vh;
  min-height: 80svh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.cta-band .cine-veil {
  background:
    radial-gradient(80% 70% at 50% 50%, rgba(196,42,120,.22), transparent 65%),
    linear-gradient(180deg, rgba(7,24,46,.7), rgba(7,24,46,.85));
}
.cta-inner { position: relative; z-index: 2; width: 100%; padding: 4rem 0; }
.cta-inner h2 {
  font-family: var(--font-drama);
  font-weight: 900;
  font-size: clamp(1.05rem, 4.4vw, 3.2rem);
  line-height: 1.05;
  margin: 0 auto 1rem;
  max-width: none;
  white-space: nowrap;

}
.cta-inner .script { margin: .2rem 0 1.6rem; }

/* ---------- Footer ---------- */
.footer {
  background: var(--teal-dark);
  padding: clamp(2.4rem, 6vw, 3.5rem) 0 2.4rem;
  text-align: center;
}
.footer img { height: clamp(58px, 12vw, 80px); width: auto; margin: 0 auto 1.2rem; }
.footer .addr {
  font-family: var(--font-head);
  letter-spacing: .04em;
  margin: 0 0 1.2rem;
  font-size: .95rem;
  color: var(--cream);
}
.footer .addr a { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(247,243,236,.4); }
.footer .addr a:hover { color: #fff; }
.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  justify-content: center;
  margin-bottom: 1.4rem;
}
.footer nav a {
  text-decoration: none;
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--cream);
  text-transform: uppercase;
}
.footer nav a:hover { color: var(--fuchsia); }
.footer .legal { font-size: .78rem; color: var(--cream); opacity: .6; margin: 0; }
.footer .tag { font-family: var(--font-script); font-size: 1.4rem; color: var(--fuchsia); margin: 0 0 .4rem; }

/* ===========================================================
   SITE-WIDE CHROME + INNER PAGES (booking / legal / forms)
   Cinematic dark skin shared by every page via base.html.
   =========================================================== */

/* ---------- Top bar: lang switcher + CTA ---------- */
.topbar-brand { display: inline-flex; align-items: center; }
.topbar-actions { display: flex; align-items: center; gap: clamp(.7rem, 2.5vw, 1.2rem); }
.topbar .lang-switcher { display: flex; gap: 9px; align-items: center; margin: 0; }
.topbar .lang-code {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--cream);
  opacity: .55;
  text-decoration: none;
  transition: opacity .15s;
}
.topbar .lang-code:hover { opacity: .9; }
.topbar .lang-code.lang-active { opacity: 1; font-weight: 800; color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Live conditions strip (under the hero) ---------- */
.cond-bar {
  background: var(--ink-soft);
  border-top: 1px solid rgba(247,243,236,.08);
  border-bottom: 1px solid rgba(247,243,236,.08);
  position: relative;
  z-index: 5;
}
.cond-bar-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: .8rem;
  padding-top: clamp(1.3rem, 3vw, 1.9rem);
  padding-bottom: clamp(1.3rem, 3vw, 1.9rem);
}
/* dissolve the facts wrapper so all six items share one row of widget cards */
.cond-bar-inner { display: contents; }
/* keep all six widgets on a single row at desktop widths */
@media (min-width: 920px) { .cond-bar-row { flex-wrap: nowrap; gap: .65rem; } }
/* Live water + weather widgets flanking the band */
.live-widget {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: linear-gradient(150deg, rgba(28,68,116,.40), rgba(7,24,46,.5));
  border: 1px solid rgba(247,243,236,.18);
  border-radius: 16px;
  padding: .6rem 1rem;
  box-shadow: 0 10px 30px -16px rgba(0,0,0,.7);
}
.live-widget .lw-icon { font-size: 1.7rem; line-height: 1; }
.live-widget .lw-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.live-widget .lw-label { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .14em; font-size: .54rem; font-weight: 800; color: var(--fuchsia); }
.live-widget .lw-value { font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; color: #fff; display: inline-flex; align-items: center; gap: .3rem; white-space: nowrap; }
.live-widget .lw-sub { font-size: .62rem; color: var(--fog); white-space: nowrap; }
.live-widget .live-dot {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: #1FA35E; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(31,163,94,.6); animation: condpulse 2.4s infinite;
}
@media (prefers-reduced-motion: reduce) { .live-widget .live-dot { animation: none; } }
.cond {
  flex: 0 1 auto;
  display: flex;
  align-items: center;
  gap: .6rem;
  min-width: 0;
  background: linear-gradient(150deg, rgba(28,68,116,.38), rgba(7,24,46,.5));
  border: 1px solid rgba(247,243,236,.16);
  border-radius: 14px;
  padding: .58rem .9rem;
  box-shadow: 0 10px 30px -16px rgba(0,0,0,.7);
}
.cond .lw-icon { font-size: 1.4rem; line-height: 1; flex: 0 0 auto; }
.cond-text { display: flex; flex-direction: column; gap: .12rem; min-width: 0; line-height: 1.2; }
.cond-label {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .56rem;
  font-weight: 800;
  color: var(--fuchsia);
  white-space: nowrap;
}
.cond-value { font-size: .9rem; font-weight: 700; color: var(--cream); line-height: 1.25; }
.cond-value a.cond-map { color: var(--cream); text-decoration: none; border-bottom: 1px solid rgba(247,243,236,.35); }
.cond-value a.cond-map:hover { color: #fff; border-color: var(--fuchsia); }
.cond-note { font-size: .72rem; font-weight: 500; color: var(--fog); margin-left: .3rem; }
.cond .live-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #1FA35E; margin-right: 5px; vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(31,163,94,.6); animation: condpulse 2.4s infinite;
}
@keyframes condpulse { 0% { box-shadow: 0 0 0 0 rgba(31,163,94,.55); } 70% { box-shadow: 0 0 0 7px rgba(31,163,94,0); } 100% { box-shadow: 0 0 0 0 rgba(31,163,94,0); } }
.cond .weather-emoji { margin-right: 5px; }
@media (prefers-reduced-motion: reduce) { .cond .live-dot { animation: none; } }

.cta-sub { color: var(--fog); font-size: 1.02rem; margin: 0 auto 1.6rem; max-width: 30ch; }

/* ---------- Generic inner-page hero (book / legal / confirm) ---------- */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: grid;
  align-items: flex-end;
  padding: clamp(6rem, 14vw, 8.5rem) clamp(1.1rem, 5vw, 3rem) clamp(2.2rem, 5vw, 3.4rem);
  color: var(--cream);
  background: linear-gradient(160deg, var(--teal-dark) 0%, var(--ink) 70%);
  overflow: hidden;
}
.page-hero h1 {
  font-family: var(--font-drama);
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 3.6rem);
  line-height: 1.02;
  margin: 0;

}
.page-hero-sub { color: var(--fog); font-size: 1.02rem; margin-top: .6rem; position: relative; z-index: 2; }

/* Book-page hero: photo crossfade behind the heading */
.book-hero { min-height: 46vh; align-items: center; text-align: center; }
.book-hero-slides { position: absolute; inset: 0; z-index: 0; }
.book-hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease; will-change: opacity;
}
.book-hero-slide.active { opacity: 1; }
.book-hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(7,24,46,.55) 0%, rgba(7,24,46,.35) 45%, rgba(7,24,46,.85) 100%);
}
.book-hero h1, .book-hero .page-hero-sub, .book-hero .script-tagline { position: relative; z-index: 2; }
.book-hero .script-tagline {
  font-family: var(--font-script);
  font-weight: 700;
  color: var(--fuchsia);
  -webkit-text-stroke: .6px var(--fuchsia);
  font-size: clamp(1.8rem, 7vw, 3rem);
  line-height: 1;
  margin: .2rem 0 .6rem;

}
@media (prefers-reduced-motion: reduce) { .book-hero-slide { transition: none; } }

/* ---------- Page card (booking / legal content) ---------- */
.page-card {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: clamp(-3.2rem, -6vw, -2rem) auto clamp(3.5rem, 8vw, 5.5rem);
  background: var(--ink-soft);
  border: 1px solid rgba(247,243,236,.1);
  border-radius: 20px;
  padding: clamp(1.6rem, 5vw, 3.2rem);
  box-shadow: var(--shadow-deep);
}
.page-card.narrow { max-width: 640px; }
.book-card { max-width: 1180px; }

/* ---------- Legal pages ---------- */
.legal-card { display: grid; max-width: 980px; gap: 1.8rem; }
.legal-intro { max-width: 640px; padding-bottom: .4rem; }
.legal-intro .eyebrow { color: var(--fuchsia); display: block; margin-bottom: .5rem; }
.legal-intro h2 { font-family: var(--font-drama); font-weight: 700; margin: .2rem 0 .6rem; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.legal-intro h2 .go { font-weight: 900; }
.legal-details { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.1rem; }
.legal-panel { padding: 1.4rem; border: 1px solid rgba(247,243,236,.12); border-radius: 14px; background: rgba(28,68,116,.16); }
.legal-section { padding-top: 1.5rem; border-top: 1px solid rgba(247,243,236,.12); }
.legal-card h3 {
  margin-bottom: .6rem;
  font-family: var(--font-head);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--fuchsia);
}
.legal-card p { max-width: 72ch; color: var(--fog); }
.legal-card a { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; }
.legal-card a:hover { color: #fff; }
.credits-list { margin: .6rem 0 0; padding-left: 1.2rem; color: var(--fog); font-size: .92rem; line-height: 1.6; }
.credits-list li { margin-bottom: .35rem; }
.uptime-footnote { color: var(--fog); opacity: .8; font-size: .85rem; margin-top: 1rem; }
@media (max-width: 700px) { .legal-details { grid-template-columns: 1fr; } }

/* ---------- Buttons / forms ---------- */
button, .button {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  min-height: 46px; padding: 0 1.6rem; border: 0; border-radius: 999px;
  background: var(--fuchsia); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem;
  letter-spacing: .04em; text-decoration: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 12px 34px -12px rgba(196,42,120,.6);
}
button:hover, .button:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -12px rgba(196,42,120,.7); }
.button.secondary { background: transparent; color: var(--cream); border: 1.5px solid rgba(247,243,236,.4); box-shadow: none; }
.button.secondary:hover { border-color: var(--fuchsia); color: #fff; }
button.danger { background: #d64545; box-shadow: none; }
button.danger:hover { background: #b33030; }

label { display: grid; gap: 6px; font-weight: 600; font-size: .85rem; color: var(--cream); }
input:not([type=checkbox]):not([type=submit]), textarea, select {
  width: 100%; min-height: 46px;
  border: 1.5px solid rgba(247,243,236,.18); border-radius: 10px;
  padding: 8px 13px; font: inherit; color: var(--cream);
  background: rgba(247,243,236,.06); transition: border-color .15s, background .15s;
}
input::placeholder, textarea::placeholder { color: rgba(247,243,236,.4); }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--fuchsia); background: rgba(247,243,236,.1); }

.section-divider { border: none; border-top: 1px solid rgba(247,243,236,.14); margin: 2rem 0; }
.section-label { font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--fuchsia); margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.book-fields { margin-bottom: 1.4rem; }
.consent-row { display: flex; align-items: flex-start; gap: 10px; margin: -2px 0 1.2rem; color: var(--fog); font-size: .9rem; line-height: 1.45; }
.consent-row input { margin-top: 3px; flex: 0 0 auto; width: auto; min-height: auto; }
.consent-row a { color: var(--cream); }

/* ---------- Booking split + calendar ---------- */
.book-split { display: grid; grid-template-columns: auto 1fr; gap: 2.4rem; align-items: start; margin-bottom: .5rem; }
.book-split-left, .book-split-right { min-width: 0; }

.availability-calendar { display: grid; gap: 12px; }
.calendar-head { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 10px; }
.calendar-head h2 { margin: 0; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.4rem); }
.calendar-nav {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px;
  border: 1.5px solid rgba(247,243,236,.2); border-radius: 10px; color: var(--cream);
  font-size: 1.5rem; font-weight: 800; text-decoration: none; background: rgba(247,243,236,.05);
}
.calendar-nav:hover { border-color: var(--fuchsia); color: #fff; }
.calendar-nav-disabled { opacity: .3; pointer-events: none; }
.calendar-weekdays, .calendar-grid { display: grid; grid-template-columns: repeat(7, minmax(0,1fr)); gap: 6px; }
.calendar-weekdays span { min-width: 0; text-align: center; color: var(--fog); font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.calendar-day {
  position: relative; display: flex; align-items: center; justify-content: center; min-width: 0;
  aspect-ratio: 1/1; border: 1.5px solid transparent; border-radius: 9px;
  color: var(--cream); font-weight: 800; text-decoration: none;
}
.calendar-day:hover { border-color: var(--fuchsia); }
.cal-day-free { background: rgba(46,160,67,.24); color: #d6f6df; }
.cal-day-partial { background: rgba(245,184,75,.24); color: #ffe9c2; }
.cal-day-full { background: rgba(223,99,88,.26); color: #ffd7d2; }
.cal-day-closed, .cal-day-unavailable { background: rgba(28,68,116,.5); color: #eef3fb; text-decoration: line-through; }
.cal-day-muted { opacity: .45; }
.cal-day-disabled { opacity: .3; pointer-events: none; }
.cal-day-selected { border-color: var(--fuchsia); box-shadow: 0 0 0 3px rgba(196,42,120,.3); }
.cal-day-number { line-height: 1; }
.calendar-legend { display: flex; flex-wrap: wrap; gap: 10px 16px; color: var(--fog); font-size: .82rem; font-weight: 700; }
.calendar-legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.legend-free { background: #2EA043; }
.legend-partial { background: #f5b84b; }
.legend-full { background: #df6358; }
.legend-closed { background: #2E6FB0; }

/* Compact calendar on the booking page */
.book-card .availability-calendar { max-width: 420px; }
.book-card .calendar-head { grid-template-columns: 36px 1fr 36px; }
.book-card .calendar-nav { min-height: 36px; font-size: 1.25rem; }
.book-card .calendar-head h2 { font-size: 1rem; }
.book-card .calendar-weekdays span { font-size: .64rem; }
.book-card .calendar-day { font-size: .78rem; border-radius: 7px; }
.book-card .calendar-legend { font-size: .72rem; gap: 10px; }

/* ---------- Product card ---------- */
.product-card {
  display: flex; flex-direction: column; height: 100%;
  background: rgba(28,68,116,.18); border: 1px solid rgba(247,243,236,.12);
  border-radius: 18px; overflow: hidden; transition: border-color .2s, box-shadow .2s;
}
.product-card.gear-selected { border-color: var(--fuchsia); box-shadow: 0 0 0 3px rgba(196,42,120,.28); }
.product-img { height: 240px; background-size: contain; background-repeat: no-repeat; background-position: center; background-color: rgba(0,0,0,.25); flex-shrink: 0; }
.product-img:not([style]) { background: linear-gradient(135deg, var(--teal) 0%, var(--ink) 100%); }
.product-body { display: flex; flex-direction: column; gap: 10px; padding: 1.5rem; flex: 1; }
.product-meta { display: flex; justify-content: flex-end; }
.product-avail { font-size: .8rem; color: var(--fog); }
.product-price { font-family: var(--font-head); font-size: 1.9rem; font-weight: 900; color: #fff; line-height: 1; }
.product-price span { font-size: .9rem; font-weight: 500; color: var(--fog); }
.product-includes { font-size: .9rem; color: var(--fog); padding: 10px 14px; background: rgba(0,0,0,.22); border-radius: 10px; border: 1px solid rgba(247,243,236,.1); }
.product-stepper { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(247,243,236,.14); }
.product-stepper-label { font-size: .9rem; font-weight: 600; color: var(--cream); }
.product-stepper-controls { display: flex; align-items: center; }
.step-btn {
  width: 36px; min-height: 36px; padding: 0; min-width: auto;
  background: rgba(247,243,236,.08); color: var(--cream);
  border: 1.5px solid rgba(247,243,236,.2); border-radius: 9px;
  font-size: 1.2rem; font-weight: 700; line-height: 1; cursor: pointer; box-shadow: none;
}
.step-btn:hover { background: rgba(247,243,236,.16); border-color: var(--fuchsia); transform: none; }
.step-val { min-width: 40px; text-align: center; font-weight: 800; font-size: 1rem; color: #fff; user-select: none; }

/* ---------- Submit row + totals ---------- */
.book-submit-row {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 1.1rem 1.3rem; background: rgba(28,68,116,.2);
  border-radius: 14px; border: 1px solid rgba(247,243,236,.14);
}
.book-submit-row button { padding: 12px 32px; font-size: 1rem; white-space: nowrap; flex-shrink: 0; }
.book-total { display: flex; flex-direction: column; gap: 1px; }
.book-total-label { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--fog); }
.book-total-amount { font-family: var(--font-head); font-size: 1.4rem; font-weight: 800; color: #fff; }
.no-items { text-align: center; color: var(--fog); padding: 2rem 1.2rem; background: rgba(0,0,0,.2); border-radius: 12px; border: 1.5px dashed rgba(247,243,236,.18); }

/* ---------- Flash messages ---------- */
.flash-stack { max-width: 820px; margin: clamp(5.5rem, 13vw, 7rem) auto 0; padding: 0 1.2rem; }
.flash { padding: 13px 16px; border-radius: 10px; background: var(--ink-soft); border: 1.5px solid rgba(247,243,236,.16); color: var(--cream); font-weight: 500; font-size: .93rem; }
.flash-error { border-color: #df6358; color: #ffd7d2; background: rgba(223,99,88,.16); }
.flash-success { border-color: #1FA35E; color: #d6f6e4; background: rgba(31,163,94,.14); }

/* ---------- Booking summary (confirmation / cancel) ---------- */
.booking-ref-chip { display: inline-block; padding: 5px 13px; background: rgba(247,243,236,.08); border: 1px solid rgba(247,243,236,.18); border-radius: 8px; font-family: "JetBrains Mono", monospace; font-size: .95rem; font-weight: 700; letter-spacing: .06em; color: #fff; margin-bottom: .6rem; }
.booking-date { color: var(--fog); font-size: .93rem; margin-bottom: 1.5rem; }
.item-lines { list-style: none; display: grid; gap: 8px; margin-bottom: 1rem; padding: 0; }
.item-lines li { display: flex; justify-content: space-between; align-items: center; padding: 11px 14px; background: rgba(247,243,236,.06); border-radius: 10px; font-weight: 500; font-size: .95rem; }
.item-lines li .price { color: var(--fuchsia); font-weight: 700; }
.total-row { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; background: var(--fuchsia); color: #fff; border-radius: 12px; font-weight: 800; margin-bottom: 1.3rem; }
.total-row .amount { font-size: 1.25rem; }
.pickup-note { color: var(--fog); font-size: .88rem; padding: 12px 14px; background: rgba(0,0,0,.22); border-radius: 10px; margin-bottom: 1.3rem; }
.cancel-link { display: block; text-align: center; color: var(--fog); font-size: .85rem; text-decoration: none; margin-top: 1rem; }
.cancel-link:hover { color: #fff; text-decoration: underline; }
.cancel-warning { padding: 14px 16px; background: rgba(245,184,75,.14); border: 1.5px solid rgba(245,184,75,.5); border-radius: 12px; color: #ffe9c2; font-size: .93rem; margin-bottom: 1.3rem; }
.already-cancelled { text-align: center; padding: 1.5rem 0; color: var(--fog); }

/* ---------- Inner-page responsive ---------- */
@media (max-width: 860px) {
  .book-split { grid-template-columns: 1fr; }
  .book-card .availability-calendar { max-width: 100%; }
}
@media (max-width: 720px) {
  .form-row { grid-template-columns: 1fr; }
  .book-submit-row { flex-direction: column; align-items: stretch; }
  .book-submit-row button { width: 100%; }
}

/* ---------- Footer tagline (pink script) ---------- */
.footer .footer-script {
  font-family: var(--font-script);
  color: var(--fuchsia);
  font-weight: 700;
  -webkit-text-stroke: .5px var(--fuchsia);
  font-size: clamp(1.4rem, 4.5vw, 2rem);
  line-height: 1.3;
  margin: .2rem 0 1.1rem;
}

/* ---------- Legal pages: larger topbar logo ---------- */
.page-legal .topbar img { height: clamp(58px, 11vw, 84px); }

/* ===========================================================
   BOOKING PAGE — light calendar + form area (carousel hero stays dark)
   =========================================================== */
body.page-book { background: #eef4f3; }
.page-book .book-card {
  background: #ffffff;
  color: #0f2e2f;
  border: 1px solid #d2e1e0;
  box-shadow: 0 14px 44px rgba(0,0,0,.20);
}
.page-book .section-label { color: #4c6b6a; }
.page-book .section-divider { border-top-color: #d2e1e0; }
.page-book label { color: #0f2e2f; }
.page-book input:not([type=checkbox]):not([type=submit]),
.page-book textarea,
.page-book select {
  color: #0f2e2f;
  background: #ffffff;
  border-color: #d2e1e0;
}
.page-book input::placeholder, .page-book textarea::placeholder { color: #90a7a5; }
.page-book input:focus, .page-book textarea:focus, .page-book select:focus { border-color: var(--fuchsia); background: #fff; }
.page-book .consent-row { color: #4c6b6a; }
.page-book .consent-row a { color: #1C4474; }

/* Calendar on white */
.page-book .calendar-head h2 { color: #0f2e2f; }
.page-book .calendar-nav { color: #1C4474; background: #fff; border-color: #d2e1e0; }
.page-book .calendar-nav:hover { border-color: var(--fuchsia); color: var(--fuchsia); }
.page-book .calendar-weekdays span { color: #4c6b6a; }
.page-book .calendar-day { color: #0f2e2f; }
.page-book .calendar-day:hover { border-color: var(--fuchsia); }
.page-book .cal-day-free { background: #d8f0de; color: #0f2e2f; }
.page-book .cal-day-partial { background: #ffe3ad; color: #0f2e2f; }
.page-book .cal-day-full { background: #f5b9b2; color: #0f2e2f; }
.page-book .cal-day-closed, .page-book .cal-day-unavailable { background: rgba(28,68,116,.5); color: #eef3fb; text-decoration: line-through; }
.page-book .cal-day-selected { border-color: var(--fuchsia); box-shadow: 0 0 0 3px rgba(196,42,120,.2); }
.page-book .calendar-legend { color: #4c6b6a; }

/* Product card on white */
.page-book .product-card { background: #fff; border: 1px solid #d2e1e0; }
.page-book .product-card.gear-selected { border-color: var(--fuchsia); box-shadow: 0 0 0 3px rgba(196,42,120,.2); }
.page-book .product-img { background-color: #fff; }
.page-book .product-img:not([style]) { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }
.page-book .product-avail { color: #4c6b6a; }
.page-book .product-price { color: #1C4474; }
.page-book .product-price span { color: #4c6b6a; }
.page-book .product-includes { color: #4c6b6a; background: #f5faf9; border-color: #d2e1e0; }
.page-book .product-stepper { border-top-color: #d2e1e0; }
.page-book .product-stepper-label { color: #0f2e2f; }
.page-book .step-btn { background: #f5faf9; color: #0f2e2f; border-color: #d2e1e0; }
.page-book .step-btn:hover { background: #e7efee; border-color: var(--fuchsia); }
.page-book .step-val { color: #0f2e2f; }

/* Submit row + totals on white */
.page-book .book-submit-row { background: #f5faf9; border-color: #d2e1e0; }
.page-book .book-total-label { color: #4c6b6a; }
.page-book .book-total-amount { color: #0f2e2f; }
.page-book .no-items { background: #f5faf9; color: #4c6b6a; border-color: #d2e1e0; }

/* Capitalize each word in titles (all-caps kickers/CTAs are unaffected) */
.page-hero h1,
.section-head h2,
.story-card h2,
.cta-inner h2,
.step h3 { text-transform: capitalize; }

/* ---------- Legal pages: white, high-contrast text on a clean dark card ---------- */
.page-legal .page-card { background: #0e2a2e; border-color: rgba(247,243,236,.16); }
.page-legal .page-hero-sub { color: var(--cream); }
.page-legal .legal-intro .eyebrow,
.page-legal .legal-card h3 { color: var(--cream); }
.page-legal .legal-card p,
.page-legal .legal-card { color: var(--cream); }
.page-legal .legal-panel { background: rgba(0,0,0,.28); border-color: rgba(247,243,236,.16); }
.page-legal .legal-card a { color: #ffffff; text-decoration: underline; text-underline-offset: 2px; }
.page-legal .credits-list { color: var(--cream); }
.page-legal .uptime-footnote { color: var(--cream); opacity: .75; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--ink-soft); padding: clamp(3.5rem, 9vw, 6rem) 0; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 1.4rem;
}
.quote-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  background: linear-gradient(160deg, rgba(28,68,116,.30), rgba(7,24,46,.5));
  border: 1px solid rgba(247,243,236,.12);
  border-radius: 18px;
  padding: 1.8rem;
  transition: transform .3s, border-color .3s;
}
.quote-card:hover { transform: translateY(-4px); border-color: rgba(196,42,120,.5); }
/* Highlight the middle testimonial with a watermelon-fuchsia tint */
.quote-grid .quote-card:nth-child(2) {
  background: linear-gradient(160deg, rgba(196,42,120,.22), rgba(7,24,46,.55));
  border-color: rgba(196,42,120,.45);
}
.quote-card .stars { color: var(--fuchsia); letter-spacing: .15em; font-size: 1rem; }
.quote-card blockquote { margin: 0; font-family: var(--font-drama); font-style: italic; font-size: 1.12rem; line-height: 1.5; color: var(--cream); }
.quote-card figcaption { font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .06em; color: var(--fog); text-transform: uppercase; margin-top: auto; }

/* ---------- Gallery carousel (swipeable on mobile, auto-advance) ---------- */
.gallery { background: var(--ink-soft); padding: clamp(3.5rem, 9vw, 6rem) 0; }
.gallery-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: .3rem clamp(1.1rem, 5vw, 3rem) 1.1rem;
  scrollbar-width: none;
}
.gallery-carousel::-webkit-scrollbar { display: none; }
.gallery-carousel:focus-visible { outline: 3px solid var(--fuchsia); outline-offset: 3px; border-radius: 6px; }
.gallery-slide {
  flex: 0 0 auto;
  width: clamp(240px, 72vw, 420px);
  height: clamp(190px, 50vw, 300px);
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: center;
  border: 1px solid rgba(247,243,236,.14);
}

/* Off-season (closed) days: solid black, not faded by the disabled state */
.calendar-day.cal-day-closed { opacity: 1; }
