/* ============================================================
   Blue Current Swim School
   Design direction: calm coastal editorial — warm paper ground,
   deep sea ink, a single pool-light aqua accent, lane-line motif.
   ============================================================ */

:root {
  /* Color */
  --ink:      #07222B;   /* deepest — text, dark sections */
  --sea:      #0D3E4C;   /* mid deep */
  --current:  #1E8B99;   /* accent — pool light */
  --current-d:#166B76;
  --foam:     #DCEAE9;   /* pale wash */
  --sand:     #F5F0E8;   /* warm paper */
  --sand-d:   #EBE3D7;
  --paper:    #FCFAF6;
  --white:    #FFFFFF;
  --muted:    #55707A;
  --muted-d:  #37535D;   /* secondary text that still needs to read clearly */
  --rule:     rgba(7, 34, 43, 0.12);
  --rule-lt:  rgba(255, 255, 255, 0.16);

  /* Type */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Space */
  --gut: clamp(1.25rem, 4vw, 2.5rem);
  --sec: clamp(4.5rem, 10vw, 8rem);
  /* Floating capsule: the gap around it plus the bar's own height. */
  --nav-pad: clamp(18px, 2.4vw, 32px);
  --nav-cap: 78px;
  --nav-h: calc(var(--nav-cap) + var(--nav-pad) * 2);

  /* Shape */
  --r-sm: 6px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(7, 34, 43, .06), 0 4px 12px rgba(7, 34, 43, .05);
  --shadow-md: 0 2px 6px rgba(7, 34, 43, .07), 0 18px 40px -14px rgba(7, 34, 43, .22);
  --shadow-lg: 0 30px 70px -24px rgba(7, 34, 43, .35);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
/* Layout rules set display on several of these, which would outrank the UA
   [hidden] rule. Keep the attribute authoritative. */
[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.9vw, 2.9rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.01em; }
p  { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--white);
  padding: .75rem 1.25rem; z-index: 999; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

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

/* ── Layout ───────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap--narrow { max-width: 760px; }

.section { padding-block: var(--sec); }
.section--sand { background: var(--sand); }

.section__head { max-width: 620px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__sub { margin-top: 1rem; color: var(--muted); font-size: 1.05rem; }

.eyebrow {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--current-d);
  margin: 0 0 1rem;
}
.eyebrow--light { color: #6FD0DA; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  --bg: var(--ink);
  --fg: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: var(--bg);
  color: var(--fg);
  font: 500 .95rem/1 var(--sans);
  letter-spacing: .01em;
  padding: 1rem 1.6rem;
  border: 1px solid var(--bg);
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn:hover  { --bg: var(--current-d); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(7,34,43,.5); }
.btn:active { transform: translateY(0); }

.btn--sm    { padding: .7rem 1.15rem; font-size: .875rem; }
.btn--full  { width: 100%; }
.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--rule); }
.btn--ghost:hover { --bg: transparent; --fg: var(--current-d); border-color: var(--current); box-shadow: none; }
.btn--outline { --bg: transparent; --fg: var(--ink); border-color: rgba(7,34,43,.22); }
.btn--outline:hover { --bg: var(--ink); --fg: var(--paper); }
.btn--light { --bg: var(--paper); --fg: var(--ink); }
.btn--light:hover { --bg: var(--white); --fg: var(--ink); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 500; font-size: .92rem;
  color: var(--current-d); text-decoration: none;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
  transition: gap .2s var(--ease), color .2s var(--ease);
}
.link-arrow::after { content: "→"; transition: transform .2s var(--ease); }
.link-arrow:hover { gap: .6rem; color: var(--ink); }

.pill {
  font-size: .7rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--current-d); background: rgba(30,139,153,.1);
  padding: .34rem .6rem; border-radius: 100px; white-space: nowrap;
}

/* ── Nav — floating capsule ───────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: var(--nav-pad) var(--gut);
  background: transparent;   /* the capsule itself is the surface */
}

/* brand | centred links | cta — all inside one rounded bar */
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: clamp(1.5rem, 3vw, 2.5rem);
  min-height: var(--nav-cap);
  padding-inline: clamp(1.35rem, 2.4vw, 2.25rem);
  border-radius: 100px;
  background: rgba(252, 250, 246, .7);
  border: 1px solid rgba(255, 255, 255, .45);
  box-shadow: 0 1px 2px rgba(7, 34, 43, .06),
              0 18px 40px -18px rgba(7, 34, 43, .45);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  transition: background .35s var(--ease), box-shadow .35s var(--ease),
              border-color .35s var(--ease);
}
/* Once it's over page content rather than photography, firm it up. */
.nav.is-stuck .nav__inner {
  background: rgba(252, 250, 246, .92);
  border-color: rgba(7, 34, 43, .08);
  box-shadow: 0 1px 2px rgba(7, 34, 43, .06),
              0 14px 30px -16px rgba(7, 34, 43, .35);
}
.nav__inner > .btn--sm,
.nav__toggle { justify-self: end; }

.brand {
  display: inline-flex; align-items: center; gap: .65rem;
  text-decoration: none;
}
.brand__mark {
  width: 36px; height: auto; flex: none;
  display: block;
}
.brand__text { display: grid; line-height: 1.05; }
.brand__text strong {
  font-family: var(--display); font-weight: 600; font-size: 1.06rem; letter-spacing: -.02em;
}
.brand__text em {
  font-style: normal; font-size: .64rem; letter-spacing: .19em;
  text-transform: uppercase; color: var(--muted);
}

/* Plain links — the capsule already does the containing, so no nested pill. */
.nav__links { display: flex; gap: .3rem; }
.nav__links a {
  text-decoration: none;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted-d);
  padding: .65rem 1.1rem;
  border-radius: 100px;
  line-height: 1;
  transition: color .22s var(--ease), background .22s var(--ease);
}
.nav__links a:hover { color: var(--ink); background: rgba(7, 34, 43, .055); }
.nav__links a[aria-current="true"] {
  color: var(--ink);
  background: rgba(7, 34, 43, .07);
}

.nav__toggle {
  display: none; width: 42px; height: 42px;
  background: none; border: 1px solid var(--rule); border-radius: 50%;
  cursor: pointer; padding: 0;
  place-items: center; align-content: center; gap: 5px;
}
.nav__toggle span {
  display: block; width: 17px; height: 1.5px; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.25px) rotate(-45deg); }

/* The panel floats too, tucked just under the capsule. */
.nav__mobile {
  display: grid; gap: .1rem;
  margin-top: .5rem;
  padding: .75rem 1.25rem 1rem;
  border-radius: var(--r-xl);
  background: rgba(252, 250, 246, .97);
  border: 1px solid rgba(7, 34, 43, .08);
  box-shadow: 0 20px 44px -20px rgba(7, 34, 43, .5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: navPanelIn .3s var(--ease);
}
/* display:grid above outranks the UA [hidden] rule — restore it explicitly. */
.nav__mobile[hidden] { display: none; }
@keyframes navPanelIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}
.nav.is-open .nav__inner { background: rgba(252, 250, 246, .97); }
.nav__mobile a {
  text-decoration: none; padding: .85rem .25rem; font-size: 1.02rem; font-weight: 500;
  border-bottom: 1px solid var(--rule);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile-cta { color: var(--current-d); font-weight: 600; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  /* Pull up under the sticky nav so the water runs edge to edge. */
  margin-top: calc(-1 * var(--nav-h));
  padding-block: calc(var(--nav-h) + clamp(3rem, 7vw, 5.5rem)) clamp(4rem, 9vw, 7rem);
  /* Fallback ground if WebGL is unavailable — reads as deep water on its own. */
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(30,139,153,.5), transparent 60%),
    linear-gradient(165deg, var(--sea) 0%, var(--ink) 72%);
  color: var(--foam);
  overflow: hidden;
  isolation: isolate;
}
.hero__slides { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease);
  will-change: opacity;
}
.hero__slide.is-active { opacity: 1; }
/* Slow drift keeps a still photo from feeling like a dead backdrop. */
.hero__slide.is-active.is-moving { animation: heroDrift 14s linear forwards; }
@keyframes heroDrift {
  from { transform: scale(1.02); }
  to   { transform: scale(1.10); }
}

.shader-canvas { display: block; width: 100%; height: 100%; }

/* Darkens the water behind the copy column so the headline always clears
   contrast, no matter which part of the wave drifts through. */
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(96deg, rgba(7,34,43,.86) 0%, rgba(7,34,43,.62) 42%, rgba(7,34,43,.12) 78%),
    linear-gradient(to bottom, rgba(7,34,43,.5), transparent 32%);
}

/* Copy on top, booking bar beneath it — the photos get the whole right side. */
.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
}
.hero .eyebrow { color: #7FDCE6; }
.hero h1 { color: var(--white); }

/* Typewriter — height is locked in JS before the first character is cleared,
   so nothing below the headline moves while it types. */
.typewriter__line { display: block; }
.typewriter__caret {
  display: inline-block;
  width: .055em; height: .8em;
  margin-left: .06em;
  vertical-align: -.04em;
  background: currentColor;
  animation: caretBlink 1.05s steps(1) infinite;
}
.typewriter__caret.is-done {
  animation: none;
  opacity: 0;
  transition: opacity .5s var(--ease);
}
@keyframes caretBlink {
  0%, 50%      { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}
.hero h1 em { color: #8FE2EB; }
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: rgba(226, 240, 240, .82);
  max-width: 46ch;
  margin-top: 1.5rem;
  text-shadow: 0 1px 20px rgba(7, 34, 43, .5);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.25rem; }
.hero .btn { --bg: var(--paper); --fg: var(--ink); }
.hero .btn:hover { --bg: var(--white); --fg: var(--ink); }
.hero .btn--ghost { --bg: transparent; --fg: var(--foam); border-color: rgba(255,255,255,.32); }
.hero .btn--ghost:hover {
  --bg: rgba(255,255,255,.1); --fg: var(--white);
  border-color: rgba(255,255,255,.6); box-shadow: none;
}

/* Hero booking bar */
.hero__card {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero__card-body {
  padding: clamp(1.5rem, 2.5vw, 1.9rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: center;
}
.hero__card-lead { min-width: 0; }
.hero__card-label {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--current-d); margin-bottom: .6rem;
}
.hero__card-label::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--current);
  box-shadow: 0 0 0 0 rgba(30,139,153,.6);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping {
  0%   { box-shadow: 0 0 0 0 rgba(30,139,153,.55); }
  70%  { box-shadow: 0 0 0 9px rgba(30,139,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(30,139,153,0); }
}
.hero__card-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.85rem, 2.9vw, 2.35rem);
  line-height: 1.05; letter-spacing: -.03em; margin-bottom: .35rem;
  color: var(--ink);
  white-space: nowrap;
}
.hero__card-sub {
  font-size: .92rem; font-weight: 500; color: var(--muted-d); margin: 0;
}

.hero__card-list {
  margin: 0;
  display: grid; grid-template-columns: repeat(3, auto);
  gap: clamp(1rem, 2.5vw, 2.25rem);
  justify-content: start;
  padding-left: clamp(1rem, 2.5vw, 2.25rem);
  border-left: 1px solid var(--rule);
}
.hero__card-list > div { display: grid; gap: .3rem; }
.hero__card-list dt {
  font-size: .72rem; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--current-d);
}
.hero__card-list dd {
  margin: 0; font-size: .96rem; font-weight: 600; color: var(--ink);
}

.hero__card-cta { display: grid; gap: .65rem; min-width: 220px; }
.hero__card-note {
  margin: 0; font-size: .78rem; color: var(--muted-d); text-align: center;
  max-width: 26ch; justify-self: center;
}

/* ── Credential strip ─────────────────────────────────────── */
.cred-strip {
  background: var(--paper);
  border-block: 1px solid var(--rule);
  padding-block: 1.15rem;
  /* Lane-line motif rendered as the top edge. */
  background-image: repeating-linear-gradient(90deg,
    rgba(30,139,153,.5) 0 22px, transparent 22px 44px);
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.cred-strip ul {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: .6rem clamp(1.5rem, 4vw, 3rem);
}
.cred-strip li {
  font-size: .78rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--sea);
  display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem);
}
.cred-strip li:not(:last-child)::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--current); opacity: .55;
}

/* ── Racing record board ──────────────────────────────────── */
.records {
  margin-top: clamp(2.5rem, 6vw, 4rem);
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--foam);
  position: relative; overflow: hidden;
}
.records__title {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: #6FD0DA;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}
.records__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.5rem);
}
.records__grid li {
  display: grid; gap: .3rem; align-content: start;
  padding-left: 1rem;
  border-left: 1px solid var(--rule-lt);
}
.records__num {
  font-family: var(--display); font-weight: 500;
  /* Entries range from "7×" to "Commonwealth" — sized so the longest still fits. */
  font-size: clamp(1.3rem, 2.3vw, 1.85rem); line-height: 1.05;
  letter-spacing: -.025em; color: var(--white);
  overflow-wrap: break-word;
}
.records__label {
  font-size: .78rem; letter-spacing: .06em;
  color: rgba(220,234,233,.62);
}

/* ── Values ───────────────────────────────────────────────── */
.values { padding-block: clamp(3.5rem, 7vw, 5.5rem); }
.values__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
}
.value { padding-top: 1.5rem; border-top: 2px solid var(--ink); }
.value__num {
  display: block; font-family: var(--display); font-size: .85rem;
  color: var(--current-d); margin-bottom: .9rem; letter-spacing: .05em;
}
.value h3 { margin-bottom: .65rem; font-size: 1.28rem; }
.value p { color: var(--muted); font-size: .96rem; }

/* ── Lessons — pill tab selector ──────────────────────────── */
.lanes__tabs {
  display: inline-flex; gap: .25rem;
  padding: .4rem;
  border-radius: 100px;
  background: rgba(7, 34, 43, .05);
  border: 1px solid var(--rule);
  margin-bottom: clamp(1.75rem, 3.5vw, 3rem);
  max-width: 100%;
}
.lane-tab {
  display: grid; gap: .15rem;
  padding: .75rem 1.5rem;
  border-radius: 100px;
  background: transparent; border: none;
  font-family: var(--sans); cursor: pointer;
  text-align: center; white-space: nowrap;
  transition: background .28s var(--ease), color .28s var(--ease),
              box-shadow .28s var(--ease);
}
.lane-tab__name {
  font-size: .95rem; font-weight: 600; letter-spacing: -.01em;
  color: var(--ink);
  transition: color .28s var(--ease);
}
.lane-tab__age {
  font-size: .74rem; letter-spacing: .05em;
  color: var(--muted);
  transition: color .28s var(--ease);
}
.lane-tab:hover { background: rgba(7, 34, 43, .05); }
.lane-tab[aria-selected="true"] {
  background: var(--ink);
  box-shadow: 0 2px 6px rgba(7, 34, 43, .18), 0 10px 24px -12px rgba(7, 34, 43, .5);
}
.lane-tab[aria-selected="true"] .lane-tab__name { color: var(--white); }
.lane-tab[aria-selected="true"] .lane-tab__age { color: #7FDCE6; }

.lane-panel {
  display: grid; grid-template-columns: .85fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  animation: lanePanelIn .45s var(--ease);
}
@keyframes lanePanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.lane-panel:focus-visible { outline-offset: 8px; }
.lane-panel__media { aspect-ratio: 5 / 4; border-radius: var(--r-md); }

/* Portrait clip — a stacked before/after, so 9:16 matches the source exactly
   and nothing gets cropped. Capped in width so it doesn't tower over the copy. */
.lane-video {
  position: relative;
  margin: 0;
  width: 100%; max-width: 260px;
  justify-self: center;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-md);
}
.lane-video__el {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  cursor: pointer;
}
.lane-video__tag {
  position: absolute; left: .7rem;
  padding: .34rem .7rem;
  border-radius: 100px;
  font-size: .66rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--white);
  background: rgba(7, 34, 43, .62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, .22);
  pointer-events: none;
}
.lane-video__tag--before { top: .7rem; }
.lane-video__tag--after {
  bottom: .7rem;
  background: rgba(30, 139, 153, .8);
  border-color: rgba(255, 255, 255, .3);
}
/* The two clips already meet at the halfway mark — make the join deliberate. */
.lane-video__seam {
  position: absolute; left: 0; right: 0; top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, .45);
  pointer-events: none;
}
.lane-panel__body h3 {
  font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .8rem;
}
.lane-panel__body > p { color: var(--muted); font-size: 1rem; max-width: 46ch; }
.lane-panel__body ul {
  margin: 1.5rem 0; padding: 1.35rem 0;
  border-block: 1px solid var(--rule);
  display: grid; gap: .6rem;
}
.lane-panel__body li {
  font-size: .92rem; display: flex; align-items: flex-start; gap: .65rem;
}
.lane-panel__body li::before {
  content: ""; width: 15px; height: 15px; flex: none; margin-top: .28rem;
  border-radius: 50%;
  background: rgba(30,139,153,.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23166B76' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5l5 5L20 6.5'/%3E%3C/svg%3E") center / 9px no-repeat;
}

/* ── Instructor ───────────────────────────────────────────── */
.instructor {
  display: grid; grid-template-columns: .8fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
/* Photo slot. Drop a matching file into assets/ and it swaps itself in —
   until then the gradient stands in, so nothing ever renders broken. */
.photo {
  border-radius: var(--r-md);
  background:
    linear-gradient(150deg, rgba(255,255,255,.35), transparent 55%),
    linear-gradient(200deg, var(--foam), var(--sea));
  background-size: cover;
  background-position: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.photo--portrait { aspect-ratio: 4 / 5; }
.photo::after {
  content: attr(data-photo);
  position: absolute; inset: auto 0 0 0;
  padding: .8rem 1rem;
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.8);
  background: linear-gradient(to top, rgba(7,34,43,.55), transparent);
}
/* Real photo loaded — drop the placeholder caption and fade in. */
.photo.has-photo::after { content: none; }
.photo.has-photo { animation: photoIn .6s var(--ease); }
@keyframes photoIn { from { opacity: 0; } to { opacity: 1; } }

/* ── How it works — full-bleed photo band ─────────────────── */
.how {
  position: relative;
  overflow: hidden;
  color: var(--foam);
  isolation: isolate;
}
.how__media {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(110% 80% at 20% 0%, rgba(30,139,153,.35), transparent 60%),
    linear-gradient(150deg, var(--sea), var(--ink));
  background-size: cover;
  background-position: center;
}
.how__scrim {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to bottom,
    rgba(7,34,43,.7) 0%, rgba(7,34,43,.56) 48%, rgba(7,34,43,.74) 100%);
}
.how .section__sub { color: rgba(220,234,233,.72); }
/* Faces stay readable through a lighter scrim; the shadow keeps the copy safe. */
.how h2, .how .step h3, .how .step p { text-shadow: 0 1px 12px rgba(7,34,43,.55); }

/* ── Adults ───────────────────────────────────────────────── */
.adults { background: var(--paper); }
.adults__inner {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.adults__copy h2 { max-width: 16ch; margin-bottom: 1.1rem; }
.adults__copy > p { color: var(--muted); max-width: 48ch; }
.adults__list {
  display: grid; gap: 0; margin-top: 1.75rem;
  border-top: 1px solid var(--rule);
}
.adults__list li {
  padding: .8rem 0; border-bottom: 1px solid var(--rule);
  font-size: .93rem;
  display: flex; align-items: center; gap: .7rem;
}
.adults__list li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--current); flex: none;
}

.adults__card {
  background: var(--ink); color: var(--foam);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-md);
}
.adults__card-body { padding: clamp(1.5rem, 3vw, 2rem); }
.adults__card-label {
  font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: #6FD0DA; margin-bottom: .6rem;
}
.adults__card-title {
  font-family: var(--display); font-size: 1.6rem; line-height: 1.1;
  letter-spacing: -.025em; color: var(--white); margin-bottom: .6rem;
}
.adults__card-text {
  font-size: .92rem; color: rgba(220,234,233,.7); margin-bottom: 1.5rem;
}
.adults__card .btn { --bg: var(--current); --fg: var(--white); border-color: var(--current); }
.adults__card .btn:hover { --bg: #23A3B3; border-color: #23A3B3; }
.mailops {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: .3rem .7rem;
  margin: .95rem 0 0;
  font-size: .82rem; color: rgba(220,234,233,.5);
}
.mailops a,
.mailops button {
  background: none; border: none; padding: 0;
  font: inherit; color: var(--foam); cursor: pointer;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.28);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.mailops a:hover,
.mailops button:hover { color: #7FDCE6; border-bottom-color: #7FDCE6; }
.mailops button.is-copied { color: #7FDCE6; border-bottom-color: transparent; }

.adults__card-note {
  margin-top: .7rem; text-align: center;
  font-size: .8rem; color: rgba(220,234,233,.45);
  word-break: break-all;
}

/* ── Reviews ──────────────────────────────────────────────── */
.reviews {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--ink); color: var(--foam);
}
.reviews__water {
  position: absolute; inset: 0; z-index: -2; pointer-events: none;
  opacity: 0; transition: opacity 1.1s var(--ease);
}
.reviews__water.is-shaded { opacity: 1; }
/* The shader's palette runs all the way up to near-white foam, so the scrim
   has to hold a floor for white text no matter which band drifts through. */
.reviews__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(7,34,43,.72) 0%, rgba(7,34,43,.6) 45%, rgba(7,34,43,.76) 100%);
}
.reviews h2,
.reviews .eyebrow { text-shadow: 0 1px 14px rgba(7,34,43,.6); }
.reviews h2 { color: var(--white); }
.reviews .review { backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.reviews__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.review {
  margin: 0;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--rule-lt);
  border-radius: var(--r-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex; flex-direction: column;
}
.review__stars {
  color: #7FDCE6; letter-spacing: .18em; font-size: .95rem; margin-bottom: 1.1rem;
}
.review blockquote {
  margin: 0 0 1.5rem; flex: 1;
  font-family: var(--display); font-size: 1.08rem; line-height: 1.5;
  letter-spacing: -.01em; color: var(--foam);
}
.review figcaption {
  display: grid; gap: .2rem;
  padding-top: 1.1rem; border-top: 1px solid var(--rule-lt);
}
.review figcaption strong { font-size: .92rem; color: var(--white); font-weight: 600; }
.review figcaption span { font-size: .8rem; color: rgba(220,234,233,.55); }

/* Unmistakably not real copy — replace before this goes live. */
[data-placeholder] {
  font-style: italic;
  opacity: .5;
  text-decoration: underline dotted rgba(255,255,255,.3);
  text-underline-offset: 4px;
}

/* ── Gallery strip ────────────────────────────────────────── */
.gallery { background: var(--sand); padding-bottom: clamp(3rem, 7vw, 5rem); }
.gallery__strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(.5rem, 1.2vw, 1rem);
  padding-inline: clamp(.5rem, 1.2vw, 1rem);
}
.gallery__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  box-shadow: none;
  transition: transform .45s var(--ease);
}
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item:nth-child(2) { aspect-ratio: 4 / 3.4; align-self: end; }
.instructor__caption {
  margin-top: .9rem; font-size: .82rem; color: var(--muted);
  letter-spacing: .02em;
}
.instructor__copy p { color: var(--muted); margin-top: 1.1rem; }
.instructor__copy h2 { margin-bottom: .5rem; }

.creds {
  display: grid; gap: 0; margin-top: 2rem;
  border-top: 1px solid var(--rule);
}
.creds li {
  padding: .85rem 0; border-bottom: 1px solid var(--rule);
  font-size: .92rem; color: var(--muted);
  display: flex; gap: .75rem; align-items: baseline;
}
.creds strong {
  font-weight: 600; color: var(--ink); min-width: 128px; font-size: .88rem;
}

/* ── Steps ────────────────────────────────────────────────── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  counter-reset: step;
}
.step { padding-top: 1.5rem; border-top: 1px solid var(--rule-lt); }
.step__num {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(111,208,218,.5);
  color: #6FD0DA; font-family: var(--display); font-size: .95rem;
  margin-bottom: 1.1rem;
}
.step h3 { color: var(--white); margin-bottom: .5rem; font-size: 1.25rem; }
.step p { color: rgba(220,234,233,.68); font-size: .94rem; }

/* ── Rates ────────────────────────────────────────────────── */
.rate-panel {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) 1.2fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-sm);
}

.rate-panel__price {
  text-align: center;
  background: var(--ink);
  color: var(--foam);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 1.75rem);
  position: relative;
  overflow: hidden;
}
.rate__price {
  font-family: var(--display); font-size: clamp(3.4rem, 7vw, 4.4rem);
  line-height: 1; letter-spacing: -.035em; margin: 0; color: var(--white);
}
.rate__price span {
  font-size: .35em; vertical-align: super; margin-right: .08em; opacity: .5;
}
.rate__unit {
  font-size: .88rem; color: rgba(220,234,233,.66);
  margin: .65rem 0 1.6rem;
}
.rate-panel__price .btn { --bg: var(--current); --fg: var(--white); border-color: var(--current); }
.rate-panel__price .btn:hover { --bg: #23A3B3; border-color: #23A3B3; }
.rate-panel__pay {
  margin-top: .9rem; font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(220,234,233,.5);
}

.rate-panel__list { display: grid; gap: 0; }
.rate-panel__list li {
  display: grid; gap: .3rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
}
.rate-panel__list li:first-child { padding-top: 0; }
.rate-panel__list li:last-child { padding-bottom: 0; border-bottom: none; }
.rate-panel__list strong {
  font-size: .98rem; font-weight: 600; letter-spacing: -.005em;
  display: flex; align-items: baseline; gap: .6rem;
}
.rate-panel__list strong::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; flex: none;
  background: var(--current); transform: translateY(-2px);
}
.rate-panel__list span {
  font-size: .9rem; color: var(--muted); padding-left: 1.2rem;
}

/* ── Booking ──────────────────────────────────────────────── */
.booking { background: var(--paper); }
.booking__panel {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: 1fr auto;
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: stretch;
}
/* Calendar and its fallback line share column 1; the sidebar spans both rows. */
.booking__embed { grid-column: 1; grid-row: 1; }
.booking__side  { grid-column: 2; grid-row: 1 / span 2; }
.booking__embed {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  min-height: 620px;
  overflow: hidden;
  display: grid;
  box-shadow: var(--shadow-sm);
}
.booking__embed iframe { width: 100%; height: 100%; min-height: 620px; border: 0; display: block; }

.booking__placeholder {
  place-self: center; text-align: center;
  padding: 3rem 2rem; max-width: 40ch;
}
.booking__placeholder-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; margin: 0 auto 1.25rem;
  border-radius: 50%; color: var(--current);
  background: rgba(30,139,153,.09);
}
.booking__placeholder-icon svg { width: 26px; height: 26px; }
.booking__placeholder-title {
  font-family: var(--display); font-size: 1.3rem; letter-spacing: -.02em; margin-bottom: .6rem;
}
.booking__placeholder-body { font-size: .9rem; color: var(--muted); }
.booking__placeholder code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .84em; background: var(--sand); padding: .12em .4em; border-radius: 4px;
}

.booking__escape {
  grid-column: 1; grid-row: 2;
  margin: 0;
  font-size: .84rem; color: var(--muted);
}
.booking__escape a { color: var(--current-d); font-weight: 500; }

.booking__side { display: grid; gap: 1rem; align-content: start; }
.booking__block {
  background: var(--sand);
  border-radius: var(--r-md);
  padding: 1.5rem;
}
.booking__block h3 {
  font-size: .78rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  font-family: var(--sans); color: var(--current-d); margin-bottom: .7rem;
}
.booking__block-body { font-size: .92rem; color: var(--ink); }
.booking__block-body--muted { color: var(--muted); font-size: .85rem; margin-top: .5rem; }

.pay { display: grid; gap: 0; margin-top: .25rem; }
.pay li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: .7rem 0; border-bottom: 1px solid var(--rule);
}
.pay li:last-child { border-bottom: none; padding-bottom: 0; }
.pay__tag { font-weight: 600; font-size: .88rem; }
.pay__val { font-size: .85rem; color: var(--muted); text-align: right; }

/* Text button that reads as a link. */
.linklike {
  display: inline-block;
  margin-top: 1rem;
  background: none; border: none; padding: 0;
  font: 500 .84rem/1.4 var(--sans);
  color: var(--current-d); cursor: pointer;
  border-bottom: 1px solid rgba(22, 107, 118, .35);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.linklike:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* ── Post-booking payment state ───────────────────────────── */
.booking__block--paid {
  background: var(--ink);
  color: var(--foam);
  animation: paidIn .5s var(--ease);
}
@keyframes paidIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
.paid__check {
  display: grid; place-items: center;
  width: 34px; height: 34px; margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--current); color: var(--white);
}
.paid__check svg { width: 17px; height: 17px; }
.booking__block--paid h3 {
  font-family: var(--display); font-size: 1.3rem; font-weight: 500;
  letter-spacing: -.02em; text-transform: none;
  color: var(--white); margin-bottom: .5rem;
}
.paid__lead { font-size: .88rem; color: rgba(220,234,233,.7); }
.paid__msg {
  font-size: .95rem; color: var(--foam);
  margin: 1.1rem 0 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule-lt);
}
.paid__actions { display: grid; gap: .55rem; }
.paid__actions .btn { --bg: var(--current); --fg: var(--white); border-color: var(--current); }
.paid__actions .btn:hover { --bg: #23A3B3; border-color: #23A3B3; }
.paid__actions .btn--outline {
  --bg: transparent; --fg: var(--foam); border-color: rgba(255,255,255,.3);
}
.paid__actions .btn--outline:hover {
  --bg: rgba(255,255,255,.1); --fg: var(--white); border-color: rgba(255,255,255,.55);
}
.paid__note {
  margin-top: .9rem; font-size: .78rem;
  color: rgba(220,234,233,.55); text-align: center;
}

/* ── Confirmation page (booked.html) ──────────────────────── */
.booked-body {
  min-height: 100vh;
  display: grid; place-items: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  background:
    radial-gradient(120% 90% at 70% 0%, rgba(30,139,153,.35), transparent 60%),
    linear-gradient(165deg, var(--sea) 0%, var(--ink) 75%);
}
/* Inside the calendar iframe the parent already frames this — go flat. */
.booked-body.is-embedded { background: var(--paper); padding: 1.5rem; }
.booked-body.is-embedded .booked__card { box-shadow: none; border: 1px solid var(--rule); }

.booked { width: 100%; max-width: 520px; }
.booked__card {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 5vw, 2.75rem);
  box-shadow: var(--shadow-lg);
}
.booked__check {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 1.5rem;
  border-radius: 50%;
  background: var(--current); color: var(--white);
}
.booked__check svg { width: 23px; height: 23px; }
.booked h1 { font-size: clamp(1.8rem, 4.5vw, 2.3rem); margin-bottom: .75rem; }
.booked__when {
  display: inline-block;
  font-size: .88rem; font-weight: 500;
  color: var(--current-d);
  background: rgba(30,139,153,.1);
  padding: .45rem .85rem; border-radius: 100px;
  margin-bottom: 1rem;
}
.booked__lead { color: var(--muted); font-size: .96rem; }

.booked__pay {
  margin-top: 1.75rem; padding-top: 1.75rem;
  border-top: 1px solid var(--rule);
}
.booked__pay-title {
  font-family: var(--display); font-size: 1.25rem;
  letter-spacing: -.02em; margin-bottom: .4rem;
}
.booked__pay-body { font-size: .9rem; color: var(--muted); margin-bottom: 1.25rem; }
.booked__pay .paid__actions .btn { --bg: var(--ink); --fg: var(--paper); border-color: var(--ink); }
.booked__pay .paid__actions .btn:hover { --bg: var(--current-d); border-color: var(--current-d); }
.booked__pay .paid__actions .btn--outline {
  --bg: transparent; --fg: var(--ink); border-color: rgba(7,34,43,.22);
}
.booked__pay .paid__actions .btn--outline:hover { --bg: var(--ink); --fg: var(--paper); }
.booked__pay .paid__note { color: var(--muted); }
.booked__back { margin-top: 1.75rem; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { border-top: 1px solid var(--rule); }
.faq__item { border-bottom: 1px solid var(--rule); }
.faq__item summary {
  list-style: none; cursor: pointer;
  padding: 1.4rem 2.5rem 1.4rem 0;
  font-family: var(--display); font-size: 1.16rem; letter-spacing: -.01em;
  position: relative;
  transition: color .2s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--current-d); }
.faq__item summary::after {
  content: ""; position: absolute; right: .3rem; top: 50%;
  width: 12px; height: 12px; margin-top: -6px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2307222B' stroke-width='2.6' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .3s var(--ease);
}
.faq__item[open] summary::after { transform: rotate(180deg); }
.faq__body { padding: 0 3rem 1.6rem 0; color: var(--muted); font-size: .96rem; }
.faq__item[open] .faq__body { animation: fadeIn .32s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: none; } }

/* ── Closer ───────────────────────────────────────────────── */
.closer {
  background: var(--ink); color: var(--foam);
  padding-block: clamp(4rem, 9vw, 7rem);
}
.closer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: end;
}
.closer h2 { color: var(--white); max-width: 14ch; }
.closer p { color: rgba(220,234,233,.7); margin: 1.1rem 0 2rem; max-width: 42ch; }
.closer__contact { display: grid; gap: 0; }
.closer__contact p {
  margin: 0; display: flex; justify-content: space-between; gap: 1.5rem;
  padding: .9rem 0; border-bottom: 1px solid var(--rule-lt);
  font-size: .92rem; color: var(--foam);
}
.closer__contact p:first-child { border-top: 1px solid var(--rule-lt); }
.closer__contact span:first-child {
  color: rgba(220,234,233,.5); font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; align-self: center;
}
.closer__contact a { text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.closer__contact a:hover { border-bottom-color: currentColor; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: var(--ink); color: rgba(220,234,233,.6); padding-block: 2.5rem; }
.footer__inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem 2.5rem;
  border-top: 1px solid var(--rule-lt); padding-top: 2.5rem;
}
.brand--footer { margin-right: auto; color: var(--foam); }
.brand--footer .brand__text strong { color: var(--white); }
.brand--footer .brand__text em { color: rgba(220,234,233,.5); }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer__links a:hover { color: var(--white); }
.footer__legal { font-size: .8rem; width: 100%; margin: 0; }

/* ── Reveal ───────────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1000px) {
  /* Three columns stop fitting — stack the bar and left-align the note. */
  .hero__card-body { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero__card-list {
    border-left: none; padding-left: 0;
    padding-top: 1.35rem; border-top: 1px solid var(--rule);
    grid-template-columns: repeat(3, 1fr);
  }
  .hero__card-cta { min-width: 0; }
  .hero__card-note { justify-self: start; text-align: left; max-width: none; }
  /* Copy stacks over the full width, so the scrim goes uniform. */
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(7,34,43,.72) 0%, rgba(7,34,43,.55) 55%, rgba(7,34,43,.75) 100%);
  }
  .booking__panel { grid-template-columns: 1fr; grid-template-rows: auto; }
  .booking__embed,
  .booking__escape,
  .booking__side { grid-column: auto; grid-row: auto; }
  .booking__side { grid-template-columns: repeat(3, 1fr); display: grid; }
  .instructor { grid-template-columns: 1fr; }
  .instructor__media { max-width: 380px; }
  .closer__inner { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav .btn--sm { display: none; }
  .nav__toggle { display: grid; }
  /* Only brand + toggle remain — collapse the centre column. */
  .nav__inner { grid-template-columns: 1fr auto; }
  .rate-panel { grid-template-columns: 1fr; }
  .values__grid,
  .steps { grid-template-columns: 1fr; }
  /* The pill scrolls inside itself rather than wrapping or squashing. */
  .lanes__tabs {
    display: flex; overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .lanes__tabs::-webkit-scrollbar { display: none; }
  .lane-tab { flex: 0 0 auto; scroll-snap-align: center; padding-inline: 1.15rem; }
  .lane-panel { grid-template-columns: 1fr; }
  .adults__inner { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .records__grid { grid-template-columns: repeat(2, 1fr); }
  .cred-strip li { font-size: .72rem; gap: 1.25rem; }
  .cred-strip ul { gap: .5rem 1.25rem; }
  .booking__side { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__card-list { grid-template-columns: 1fr; gap: .9rem; }
  .hero__card-title { white-space: normal; }
  .booking__embed { min-height: 520px; }
  .creds li { flex-direction: column; gap: .15rem; }
  .creds strong { min-width: 0; }
  .records__grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .gallery__strip { grid-template-columns: 1fr 1fr; }
  .gallery__item:nth-child(3) { grid-column: 1 / -1; aspect-ratio: 16 / 9; }
}

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