/* Twin Tide Swim Co.
   Aquatic, bright and clean, with plenty of white space. Light blue and
   turquoise carry the warmth; navy carries the authority. Bump ASSET_VERSION
   in main.py whenever this file changes. */

:root {
  --navy-900: #08283f;
  --navy-800: #0d3a56;
  --navy-600: #16587c;

  --tide-700: #0a7fa0;
  --tide-600: #0e9cbd;
  --tide-500: #1eb8d4;
  --tide-400: #4fd2e0;
  --tide-300: #96e4ee;
  --tide-200: #c4eff6;
  --tide-100: #e3f6fa;
  --tide-50:  #f3fbfd;

  --gold: #e8a33a;
  --gold-soft: #efb64b;
  --coral: #ff8b73;

  --ink: #0a2b40;
  --body: #46626f;
  --muted: #7593a1;
  --line: #dceef4;
  --line-soft: #eaf5f9;
  --white: #ffffff;

  --r-sm: 14px;
  --r: 20px;
  --r-lg: 28px;
  --r-xl: 36px;

  --sh-xs: 0 1px 3px rgba(8, 40, 63, .05);
  --sh-sm: 0 4px 14px rgba(8, 40, 63, .06);
  --sh: 0 16px 40px rgba(8, 40, 63, .09);
  --sh-lg: 0 30px 70px rgba(8, 40, 63, .15);

  --font: ui-rounded, "SF Pro Rounded", "Segoe UI Variable Display", "Segoe UI",
          system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --pad: clamp(3.75rem, 8vw, 7rem);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  margin: 0;
  -webkit-tap-highlight-color: rgba(14, 156, 189, .15);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.68;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.1; margin: 0 0 .55em; letter-spacing: -.025em; }
h1 { font-size: clamp(2.35rem, 5.4vw, 4.05rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.7rem); font-weight: 800; }
h3 { font-size: 1.22rem; font-weight: 750; }
p { margin: 0 0 1.05rem; }
a { color: var(--tide-700); }
img, svg, video { max-width: 100%; }

.wrap { width: min(1160px, 100% - 2.5rem); margin-inline: auto; }
.wrap-narrow { width: min(780px, 100% - 2.5rem); }

.sr-only, .skip:not(:focus) {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip:focus {
  position: fixed; top: 12px; left: 12px; z-index: 200; background: var(--white);
  color: var(--navy-800); padding: .65rem 1.1rem; border-radius: 999px; box-shadow: var(--sh);
}
:focus-visible { outline: 3px solid var(--tide-500); outline-offset: 3px; border-radius: 8px; }

/* ============ header ============ */

.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(1.5) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; gap: 1rem; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; margin-right: auto; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text {
  font-weight: 850; font-size: 1.18rem; color: var(--navy-900); letter-spacing: -.035em; line-height: 1.1;
}
.brand-text em { font-style: normal; color: var(--tide-600); }

.site-nav { display: flex; align-items: center; gap: 1.15rem; }
.site-nav a { text-decoration: none; color: var(--navy-800); font-weight: 650; font-size: .94rem; white-space: nowrap; }
.site-nav a:not(.btn):hover { color: var(--tide-600); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--white); border-radius: 14px; cursor: pointer;
}
.nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
  display: block; width: 19px; height: 2.2px; background: var(--navy-900);
  border-radius: 2px; margin-inline: auto; content: ""; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before { position: absolute; top: -6px; }
.nav-toggle-bars::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; inset: 100% 0 auto; display: none; flex-direction: column;
    align-items: stretch; gap: 0; background: var(--white); padding: .5rem 1.25rem 1.35rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--sh);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .9rem .25rem; border-bottom: 1px solid var(--line-soft); }
  .site-nav .btn { margin-top: .9rem; text-align: center; border-bottom: 0; }
}

/* ============ buttons ============ */

.btn {
  display: inline-block; padding: 1rem 1.9rem; border-radius: 999px;
  font-weight: 750; font-size: 1rem; text-decoration: none; border: 2px solid transparent;
  cursor: pointer; text-align: center; font-family: inherit;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: .6rem 1.2rem; font-size: .93rem; }
.btn-block { width: 100%; }

/* primary: the turquoise the brand is built on */
.btn-tide {
  background: linear-gradient(135deg, var(--tide-500), var(--tide-700));
  color: var(--white); box-shadow: 0 10px 24px rgba(14, 156, 189, .32);
}
.btn-tide:hover {
  background: linear-gradient(135deg, var(--tide-400), var(--tide-600));
  box-shadow: 0 14px 30px rgba(14, 156, 189, .4);
}
/* secondary on light backgrounds */
.btn-tide-ghost {
  background: var(--white); color: var(--navy-800); border-color: var(--line);
  box-shadow: var(--sh-xs);
}
.btn-tide-ghost:hover { border-color: var(--tide-300); background: var(--tide-50); }
/* secondary on the deep hero */
.btn-ghost {
  background: rgba(255, 255, 255, .1); color: var(--white); border-color: rgba(255, 255, 255, .55);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .2); }

.btn-danger { background: #fff1ee; color: #a3402c; border-color: #ffd2c8; box-shadow: none; }
.btn-danger:hover { background: #ffe3dc; }

/* ============ hero ============ */

.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  background:
    radial-gradient(900px 520px at 88% -10%, rgba(150, 228, 238, .5), transparent 62%),
    radial-gradient(700px 460px at 5% 105%, rgba(30, 184, 212, .35), transparent 60%),
    linear-gradient(158deg, var(--navy-900) 0%, var(--navy-600) 46%, var(--tide-700) 100%);
  color: #dff3fa;
}
.hero-inner {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding-bottom: clamp(5rem, 10vw, 8rem);
}
.hero h1 { color: var(--white); margin-bottom: .6rem; }
.hero h1 .hl { color: var(--tide-300); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 1.15rem;
  padding: .45rem 1.05rem .45rem .75rem; border-radius: 999px; font-size: .86rem; font-weight: 700;
  background: rgba(255, 255, 255, .13); border: 1px solid rgba(255, 255, 255, .26); color: #fff;
}
.eyebrow .dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--tide-300);
  box-shadow: 0 0 0 4px rgba(150, 228, 238, .25);
}
.lede { font-size: clamp(1.04rem, 1.4vw, 1.16rem); color: #cfeaf4; max-width: 54ch; }

/* the "our pool, or yours" promise, given its own frame */
.promise {
  display: flex; align-items: center; gap: .95rem; margin: 1.6rem 0 0;
  padding: 1.05rem 1.4rem; border-radius: var(--r);
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22);
}
.promise svg { width: 30px; height: 30px; flex: none; color: var(--tide-300); }
.promise-copy { display: block; }
.promise-copy b { display: block; color: var(--white); font-size: 1.08rem; font-weight: 800; letter-spacing: -.02em; }
.promise-copy span { font-size: .93rem; color: #bfe3ef; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 1.7rem 0 0; }

.hero-art { position: relative; display: grid; place-items: center; }
.photo-card {
  position: relative; margin: 0; width: min(100%, 400px);
  background: var(--white); border-radius: var(--r-xl); padding: 13px;
  box-shadow: var(--sh-lg); transform: rotate(-2deg);
}
.photo-card img {
  display: block; width: 100%; height: auto; border-radius: 24px;
  aspect-ratio: 3 / 4; object-fit: cover; background: var(--tide-100);
}
.photo-badge {
  position: absolute; right: -14px; bottom: 26px; transform: rotate(2deg);
  background: var(--white); color: var(--navy-800); border-radius: 999px;
  padding: .6rem 1.15rem; font-size: .87rem; font-weight: 800;
  box-shadow: var(--sh); display: flex; align-items: center; gap: .45rem;
}
.photo-badge .stars { color: var(--gold); letter-spacing: .05em; }

.wave-divider { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.wave-divider svg { width: 100%; height: clamp(50px, 6vw, 96px); display: block; }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; margin-bottom: .5rem; }
  .photo-card { width: min(100%, 320px); }
  .photo-badge { right: -6px; }
}

/* ============ facts bar ============ */

.facts { background: var(--white); padding: clamp(1.9rem, 3.5vw, 2.75rem) 0 0; }
.facts-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem .7rem;
  list-style: none; margin: 0; padding: 0;
}
.facts-list li {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--tide-50); border: 1px solid var(--line);
  border-radius: 999px; padding: .55rem 1.1rem; font-size: .93rem; font-weight: 650; color: var(--navy-800);
}
.facts-list li::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--tide-500); flex: none;
}

/* ============ sections ============ */

.section { padding: var(--pad) 0; }
.section-tint { background: var(--tide-50); }
.section-center { text-align: center; }

.kicker {
  font-size: .8rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--tide-600); margin: 0 0 .6rem;
}
.kicker-light { color: var(--tide-300); }
.section-title { max-width: 20ch; }
.section-center .section-title, .section-center .section-lede { max-width: none; margin-inline: auto; }
.title-light { color: var(--white); }
.section-lede { font-size: 1.08rem; max-width: 64ch; margin-bottom: 2.4rem; }
.section-head { margin-bottom: 2.6rem; }
.section-head .section-lede { margin-bottom: 0; }

/* soft wave used to flow one band into the next */
.wave-sep { line-height: 0; background: var(--white); }
.wave-sep svg { display: block; width: 100%; height: clamp(30px, 4vw, 62px); }
.section-deep { position: relative; }
.section-deep .wave-divider svg { height: clamp(34px, 4vw, 66px); }

/* ============ about ============ */

.about-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.about-photo { margin: 0; }
.about-photo img {
  display: block; width: 100%; height: auto; border-radius: var(--r-lg);
  aspect-ratio: 4 / 3; object-fit: cover; box-shadow: var(--sh);
}
.about-photo figcaption { margin-top: .8rem; font-size: .9rem; color: var(--muted); text-align: center; }
.about-points { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .8rem; }
.about-points li { position: relative; padding-left: 2.1rem; }
.about-points li::before {
  content: ""; position: absolute; left: 0; top: .2rem; width: 22px; height: 22px; border-radius: 50%;
  background: var(--tide-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e9cbd' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/13px no-repeat;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

/* ============ instructors ============ */

.people { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.person {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 2rem; box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.person:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.person-photo {
  width: 132px; height: 132px; border-radius: 50%; object-fit: cover; display: block;
  margin-bottom: 1.1rem; box-shadow: 0 0 0 6px var(--tide-100); background: var(--tide-100);
}
.person h3 { font-size: 1.5rem; margin-bottom: .1rem; }
.person-role { color: var(--tide-600); font-weight: 700; font-size: .92rem; margin-bottom: 1rem; }
.person-why {
  margin: 1.1rem 0 0; padding: .95rem 1.15rem; border-radius: var(--r-sm);
  background: var(--tide-50); border-left: 3px solid var(--tide-400);
  font-style: italic; color: var(--navy-800); font-size: .98rem;
}
.creds { list-style: none; padding: 0; margin: 0 0 1.1rem; display: flex; flex-wrap: wrap; gap: .45rem; }
.creds li {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--tide-100); color: var(--navy-800); border-radius: 999px;
  padding: .34rem .85rem .34rem .68rem; font-size: .84rem; font-weight: 700;
}
.creds li::before {
  content: ""; width: 15px; height: 15px; flex: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e9cbd' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3C/svg%3E") center/15px no-repeat;
}
@media (max-width: 820px) { .people { grid-template-columns: 1fr; } }

/* ============ benefits ============ */

.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.benefit {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.7rem 1.6rem; box-shadow: var(--sh-xs);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--sh-sm); border-color: var(--tide-200); }
.benefit-icon {
  display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(140deg, var(--tide-100), var(--tide-200)); margin-bottom: 1rem;
}
.benefit-icon svg { width: 26px; height: 26px; color: var(--tide-700); }
.benefit h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.benefit p { font-size: .95rem; color: var(--muted); margin: 0; }

@media (max-width: 940px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .benefits { grid-template-columns: 1fr; } }

/* ============ pricing ============ */

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; align-items: start; }
.card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.2rem 2rem; box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
}
.card-feature {
  border-color: transparent;
  box-shadow: var(--sh), 0 0 0 2px var(--tide-400) inset;
  background: linear-gradient(180deg, var(--tide-50), var(--white) 55%);
}
.badge {
  position: absolute; top: -14px; left: 2rem;
  background: linear-gradient(135deg, var(--tide-500), var(--tide-700)); color: var(--white);
  font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  padding: .38rem .95rem; border-radius: 999px; box-shadow: 0 6px 16px rgba(14, 156, 189, .3);
}
.card h3 { font-size: 1.55rem; margin-bottom: .3rem; }
.ratio {
  display: inline-block; background: var(--tide-100); color: var(--navy-800);
  font-size: .87rem; font-weight: 750; padding: .3rem .85rem; border-radius: 999px; margin-bottom: 1.1rem;
}
.card-feature .ratio { background: var(--white); box-shadow: inset 0 0 0 1px var(--tide-200); }

.price { display: flex; align-items: baseline; gap: .5rem; margin: 0 0 .2rem; flex-wrap: wrap; }
.price .amount {
  font-size: clamp(2.5rem, 4.5vw, 3.1rem); font-weight: 850; color: var(--navy-900);
  letter-spacing: -.04em; line-height: 1;
}
.price .per { font-size: 1rem; font-weight: 650; color: var(--muted); }
.price-sub { font-size: .92rem; color: var(--muted); margin: 0 0 1.3rem; }

.spec { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.spec li {
  display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0;
  border-bottom: 1px solid var(--line-soft); font-size: .96rem;
}
.spec li:last-child { border-bottom: 0; }
.spec .k { color: var(--muted); }
.spec .v { font-weight: 750; color: var(--ink); text-align: right; }

.ticks { list-style: none; padding: 0; margin: 0 0 1.75rem; display: grid; gap: .6rem; flex: 1; }
.ticks li { position: relative; padding-left: 1.95rem; font-size: .97rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .18rem; width: 21px; height: 21px;
  border-radius: 50%; background: var(--tide-100)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e9cbd' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E") center/12px no-repeat;
}
.ticks strong { color: var(--ink); }
.card .btn { align-self: stretch; }

.price-note {
  margin: 1.75rem 0 0; padding: 1.1rem 1.4rem; border-radius: var(--r);
  background: var(--white); border: 1px dashed var(--tide-300);
  font-size: .96rem; color: var(--body);
}

@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

/* ============ venues ============ */

.venues { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; align-items: start; }
.venue {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2.1rem 2rem; box-shadow: var(--sh-sm);
}
.venue-primary {
  border-color: transparent; box-shadow: var(--sh), 0 0 0 2px var(--tide-400) inset;
  background: linear-gradient(180deg, var(--tide-50), var(--white) 55%);
}
.venue-icon {
  display: grid; place-items: center; width: 56px; height: 56px; border-radius: 18px;
  background: linear-gradient(140deg, var(--tide-100), var(--tide-200)); margin-bottom: 1.05rem;
}
.venue-icon svg { width: 28px; height: 28px; color: var(--tide-700); }
.venue h3 { font-size: 1.45rem; }
.venue > p { color: var(--muted); }
.venue .ticks { margin-bottom: 0; }
.venue-link { margin: 1.1rem 0 0; font-size: .95rem; font-weight: 700; }
.venue-link a { text-decoration: none; border-bottom: 2px solid var(--tide-300); }
.venue-link a:hover { border-bottom-color: var(--tide-600); }
@media (max-width: 820px) { .venues { grid-template-columns: 1fr; } }

/* ============ levels ============ */

.levels { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.level {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.5rem 1.4rem; box-shadow: var(--sh-xs); position: relative; overflow: hidden;
}
.level::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px;
  background: linear-gradient(90deg, var(--tide-300), var(--tide-500));
}
.level-num {
  font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--tide-600); margin-bottom: .5rem;
}
.level h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.level p { font-size: .93rem; color: var(--muted); margin: 0; }

.level-help {
  margin-top: 1.75rem; background: linear-gradient(135deg, var(--tide-100), var(--tide-50));
  border: 1px solid var(--tide-200); border-radius: var(--r-lg); padding: 1.75rem 2rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; justify-content: space-between;
}
.level-help p { margin: 0; max-width: 62ch; }
.level-help strong { color: var(--ink); display: block; font-size: 1.12rem; margin-bottom: .2rem; }

@media (max-width: 940px) { .levels { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .levels { grid-template-columns: 1fr; } }

/* ============ skills chips ============ */

.skills { margin-top: 2.75rem; }
.skills-title { font-size: 1.02rem; color: var(--muted); font-weight: 700; margin-bottom: .9rem; }
.chips { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.chips li {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem 1.05rem; font-size: .92rem; font-weight: 600; color: var(--navy-800);
}

/* ============ service area ============ */

.section-deep {
  background:
    radial-gradient(680px 340px at 10% 110%, rgba(30, 184, 212, .4), transparent 62%),
    linear-gradient(140deg, var(--navy-900), var(--navy-600));
  color: #d5edf6;
}
.area-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.75rem; align-items: center; }
.area-copy { max-width: 54ch; color: #cbe8f2; margin-bottom: 1.75rem; }
.area-card {
  position: relative; display: grid; place-items: center; min-height: 240px;
  border-radius: var(--r-lg); background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16); overflow: hidden;
}
.area-card::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.area-pin {
  position: relative; width: 26px; height: 26px; border-radius: 50% 50% 50% 0;
  background: var(--tide-400); transform: rotate(-45deg); margin-bottom: 1.2rem;
  box-shadow: 0 0 0 10px rgba(79, 210, 224, .18), 0 0 0 22px rgba(79, 210, 224, .09);
}
.area-label { position: relative; margin: 0; text-align: center; font-weight: 800; color: var(--white); font-size: 1.15rem; line-height: 1.35; }
.area-label span { font-weight: 600; font-size: .92rem; color: #b6dfec; }

@media (max-width: 820px) { .area-inner { grid-template-columns: 1fr; } }

/* ============ gallery ============ */

/* Masonry rather than a grid: these are real phone photos in square, 4:5 and
   3:4, plus a 9:16 clip. A fixed grid would crop hands and feet out of the
   wider ones, so each keeps its own shape and the columns pack around them. */
.gallery { columns: 3 290px; column-gap: 1.25rem; }
.shot {
  margin: 0 0 1.25rem; break-inside: avoid; -webkit-column-break-inside: avoid;
  display: inline-block; width: 100%;
}
.shot img {
  display: block; width: 100%; height: auto;
  border-radius: var(--r); background: var(--tide-100);
  box-shadow: var(--sh-sm); transition: transform .22s ease, box-shadow .22s ease;
}
.shot:hover img { transform: translateY(-5px); box-shadow: var(--sh); }
.shot figcaption { margin-top: .65rem; font-size: .88rem; color: var(--muted); font-weight: 600; line-height: 1.45; }

/* the clip keeps its own 9:16 shape in the masonry flow */
.shot-video .clip-video {
  display: block; width: 100%; height: auto; aspect-ratio: 9 / 16;
  object-fit: cover; background: var(--navy-900);
  border-radius: var(--r); box-shadow: var(--sh-sm);
}

.privacy-note {
  display: flex; align-items: flex-start; gap: .9rem;
  margin: 2rem 0 0; padding: 1.15rem 1.4rem; border-radius: var(--r);
  background: var(--tide-50); border: 1px solid var(--tide-200);
  font-size: .95rem; color: var(--body);
}
.privacy-note svg { width: 24px; height: 24px; flex: none; color: var(--tide-600); margin-top: .1rem; }
.privacy-note b { color: var(--ink); }

/* ============ reviews ============ */

.reviews-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1.75rem; margin-bottom: 2.2rem; }
.reviews-head .section-title { margin-bottom: 0; }
.rating-summary { display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; }
.rating-stars { color: var(--gold); font-size: 1.2rem; letter-spacing: .08em; }
.rating-value { font-weight: 800; color: var(--ink); }
.rating-count { color: var(--muted); font-size: .93rem; }

.reviews { columns: 3 300px; column-gap: 1.4rem; }
.review {
  margin: 0 0 1.4rem; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.6rem 1.6rem 1.3rem; box-shadow: var(--sh-xs);
  break-inside: avoid; -webkit-column-break-inside: avoid; display: inline-block; width: 100%;
}
.review-stars { color: var(--gold); font-size: 1.02rem; letter-spacing: .1em; margin-bottom: .7rem; }
.review blockquote { margin: 0 0 1rem; font-size: 1rem; color: var(--body); line-height: 1.62; }
.review blockquote::before { content: "\201C"; }
.review blockquote::after { content: "\201D"; }
.review.is-clamped blockquote {
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical;
  overflow: hidden; margin-bottom: .5rem;
}
.review.is-clamped.is-open blockquote { display: block; -webkit-line-clamp: none; overflow: visible; }
.review-more {
  background: none; border: 0; padding: 0 0 .9rem; cursor: pointer; font: inherit;
  font-size: .92rem; font-weight: 750; color: var(--tide-700);
  border-bottom: 2px solid transparent; margin-bottom: .3rem;
}
.review-more:hover { border-bottom-color: var(--tide-300); }
.review figcaption { font-size: .92rem; color: var(--muted); }
.review figcaption strong { color: var(--ink); display: block; font-weight: 750; }

.review-form-wrap { margin-top: 2.75rem; }
.review-form-title { font-size: 1.45rem; margin-bottom: .35rem; }
.review-form-lede { color: var(--muted); max-width: 56ch; margin-bottom: 1.3rem; }

.stars-field { border: 0; padding: 0; margin: 0; }
.stars-field legend { font-weight: 700; font-size: .93rem; color: var(--ink); padding: 0 0 .4rem; }
/* Rendered 5..1 so the sibling selector can light the chosen star and every
   star to its right, which visually sits to its left. */
.stars-input { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: .15rem; }
.stars-input input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.stars-input label {
  cursor: pointer; font-size: 2rem; line-height: 1; color: var(--line);
  transition: color .12s ease, transform .12s ease;
}
.stars-input label::before { content: "\2605"; }
.stars-input input:checked, .stars-input input:checked ~ label { color: var(--gold-soft); }
.stars-input label:hover, .stars-input label:hover ~ label { color: #f5c76a; }
.stars-input label:hover { transform: scale(1.12); }
.stars-input input:focus-visible + label { outline: 3px solid var(--tide-500); outline-offset: 3px; border-radius: 4px; }

/* ============ faq ============ */

.faq { display: grid; gap: .8rem; }
.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: .3rem 1.4rem; box-shadow: var(--sh-xs);
}
.faq details[open] { border-color: var(--tide-200); box-shadow: var(--sh-sm); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.1rem 2rem 1.1rem 0; position: relative;
  font-weight: 700; color: var(--ink); font-size: 1.03rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0; top: 50%; width: 11px; height: 11px;
  margin-top: -8px; border-right: 2.6px solid var(--tide-600); border-bottom: 2.6px solid var(--tide-600);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -3px; }
.faq details p { margin: 0 0 1.15rem; color: var(--body); font-size: .98rem; }

/* ============ booking + contact ============ */

.section-book {
  background: linear-gradient(180deg, var(--white) 0%, var(--tide-50) 100%);
}

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.contact-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 1.9rem 1.7rem; box-shadow: var(--sh-xs); text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--sh-sm); }
.contact-icon {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px;
  background: linear-gradient(140deg, var(--tide-100), var(--tide-200)); margin: 0 auto 1rem;
}
.contact-icon svg { width: 27px; height: 27px; color: var(--tide-700); }
.contact-card h3 { font-size: 1.12rem; margin-bottom: .3rem; }
.contact-card p { margin: 0 0 .4rem; font-size: 1rem; font-weight: 650; color: var(--ink); }
.contact-card p a { font-weight: 750; text-decoration: none; border-bottom: 2px solid var(--tide-300); }
.contact-card p a:hover { border-bottom-color: var(--tide-600); }
.contact-sub { font-weight: 400 !important; font-size: .92rem !important; color: var(--muted) !important; margin: 0 !important; }

.contact-cta {
  margin-top: 1.75rem; background: var(--white); border: 1px solid var(--tide-200);
  border-radius: var(--r-lg); padding: 1.6rem 2rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.1rem;
}
.contact-cta p { margin: 0; }
.contact-cta strong { color: var(--ink); }

@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============ compact booking steps ============ */

.steps {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: .75rem;
}
.steps li {
  display: flex; align-items: center; gap: .65rem; font-size: .93rem;
  font-weight: 650; color: var(--navy-800); background: var(--tide-50);
  border: 1px solid var(--line); border-radius: var(--r-sm); padding: .85rem 1rem;
}
.steps li span {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--tide-500); color: var(--white); font-size: .82rem; font-weight: 800;
}
@media (max-width: 820px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .steps { grid-template-columns: 1fr; } }

/* ============ forms ============ */

.form {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem); box-shadow: var(--sh-sm); display: grid; gap: 1.1rem;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }

.field { display: grid; gap: .4rem; }
.field > span { font-weight: 700; font-size: .93rem; color: var(--ink); }
.field > span b { color: var(--coral); }
.field > span i { font-style: normal; font-weight: 500; color: var(--muted); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); background: var(--tide-50);
  border: 1.5px solid var(--line); border-radius: var(--r-sm); padding: .85rem 1rem; width: 100%;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus {
  background: var(--white); border-color: var(--tide-500); outline: none;
  box-shadow: 0 0 0 4px rgba(30, 184, 212, .16);
}
.field input::placeholder, .field textarea::placeholder { color: #9ab7c3; }
.form-note { font-size: .87rem; color: var(--muted); text-align: center; margin: 0; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert {
  background: #fff4f1; border: 1.5px solid #ffc9bf; color: #8a3524;
  border-radius: var(--r-sm); padding: 1rem 1.2rem; margin-bottom: 1.2rem;
}
.alert ul { margin: .4rem 0 0; padding-left: 1.2rem; }

/* ============ thanks pages ============ */

.splash { width: 96px; margin: 0 auto 1.5rem; }
.splash svg { width: 100%; height: auto; }

/* ============ inbox ============ */

.count {
  display: inline-block; background: var(--tide-100); color: var(--navy-800);
  font-size: 1rem; font-weight: 800; padding: .15rem .7rem; border-radius: 999px; vertical-align: middle;
}
.count-alert { background: #fdeed2; color: #7a5410; }
.inbox-tabs { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.inbox-tabs a {
  text-decoration: none; font-weight: 700; color: var(--navy-800); background: var(--tide-50);
  border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1rem; font-size: .95rem;
}
.inbox-tabs a:hover { background: var(--tide-100); }
.inbox-heading { margin-top: 3rem; }

.inbox-list { display: grid; gap: 1rem; }
.inbox-item {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  padding: 1.35rem 1.45rem; box-shadow: var(--sh-xs);
}
.inbox-item header { display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: baseline; margin-bottom: .8rem; }
.inbox-item h2, .inbox-item h3 { font-size: 1.15rem; margin: 0; }
.inbox-item time { color: var(--muted); font-size: .88rem; }
.inbox-item dl { display: grid; gap: .45rem; margin: 0; }
.inbox-item dl > div { display: grid; grid-template-columns: 140px 1fr; gap: .5rem; font-size: .95rem; }
.inbox-item dt { font-weight: 700; color: var(--muted); }
.inbox-item dd { margin: 0; }
@media (max-width: 560px) { .inbox-item dl > div { grid-template-columns: 1fr; gap: 0; } }

.review-row.status-pending { border-left: 4px solid var(--gold-soft); }
.review-row.status-approved { border-left: 4px solid var(--tide-500); }
.review-row.status-hidden { border-left: 4px solid var(--line); opacity: .72; }
.review-hood { font-weight: 500; color: var(--muted); font-size: .92rem; }
.review-row-stars { color: var(--gold); letter-spacing: .1em; margin: 0 0 .5rem; }
.review-row-body { margin: 0 0 1rem; color: var(--body); }
.review-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.review-actions form { margin: 0; }

.pill {
  font-size: .73rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  padding: .22rem .6rem; border-radius: 999px;
}
.pill-pending { background: #fdeed2; color: #7a5410; }
.pill-approved { background: var(--tide-100); color: var(--navy-800); }
.pill-hidden { background: #eef3f5; color: var(--muted); }

/* ============ instagram ============ */

.ig-link {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.1rem;
  color: #cbe8f2; text-decoration: none; font-weight: 700; font-size: .95rem;
  border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; padding: .5rem 1.05rem .5rem .85rem;
  transition: background .16s ease, color .16s ease;
}
.ig-link:hover { background: rgba(255, 255, 255, .1); color: var(--white); }
.ig-icon { width: 19px; height: 19px; flex: none; }

.nav-ig { display: inline-flex; align-items: center; gap: .4rem; color: var(--navy-800); }
.nav-ig svg { width: 21px; height: 21px; flex: none; }
.nav-ig:hover { color: var(--tide-600); }
.nav-ig-text { display: none; }
@media (max-width: 1040px) { .nav-ig-text { display: inline; } }

/* ============ footer ============ */

.site-footer { background: var(--navy-900); color: #9ec9dc; padding: 3.5rem 0 1.75rem; }
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 2.5rem; justify-content: space-between;
  align-items: flex-start; padding-bottom: 2.25rem; border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand { max-width: 42ch; }
.footer-brand .brand-text { color: var(--white); display: block; margin-bottom: .5rem; font-size: 1.22rem; }
.footer-brand .brand-text em { color: var(--tide-300); }
.footer-brand p { margin: 0; font-size: .95rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: #cbe8f2; text-decoration: none; font-size: .95rem; font-weight: 600; }
.footer-links a:hover { color: var(--white); text-decoration: underline; }
.copyright { text-align: center; font-size: .85rem; color: #6fa3ba; margin: 1.5rem 0 0; }


/* ============ mobile ============ */

@media (max-width: 720px) {
  :root { --pad: clamp(3rem, 11vw, 4.5rem); }

  /* comfortable tap targets everywhere */
  .btn { padding: 1.05rem 1.8rem; font-size: 1.02rem; }
  .btn-sm { padding: .85rem 1.4rem; font-size: 1rem; }
  .site-nav a { padding: 1rem .25rem; font-size: 1.02rem; }

  h1 { font-size: clamp(2.15rem, 9vw, 2.9rem); }
  h2 { font-size: clamp(1.65rem, 6.5vw, 2.1rem); }
  .section-title { max-width: none; }
  .lede, .section-lede { font-size: 1.03rem; }

  /* single column everywhere it matters */
  .cards, .venues, .people, .benefits, .contact-grid { grid-template-columns: 1fr; }
  .levels { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2 140px; column-gap: .85rem; }
  .shot { margin-bottom: .85rem; }

  .card, .venue, .person { padding: 1.7rem 1.4rem; }
  .price .amount { font-size: 2.6rem; }

  /* stacked call-to-action rows go full width so they are easy to hit */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .level-help, .contact-cta { flex-direction: column; align-items: stretch; text-align: left; }
  .level-help .btn, .contact-cta .btn { width: 100%; }

  .promise { align-items: flex-start; }
  .photo-badge { right: 50%; transform: translateX(50%) rotate(0deg); bottom: -16px; }
  .photo-card { transform: rotate(-1.5deg); }

  .stars-input label { font-size: 2.4rem; }
  .reviews { columns: 1; }
  .faq summary { padding-right: 2.2rem; font-size: 1rem; }
  .privacy-note { flex-direction: column; gap: .6rem; }
  .footer-inner { gap: 1.75rem; }
}

@media (max-width: 400px) {
  .levels { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .facts-list li { font-size: .89rem; padding: .5rem .9rem; }
}

/* sticky booking bar on phones: most parents arrive from Instagram */
.book-bar { display: none; transition: opacity .2s ease; }
@media (max-width: 720px) {
  .book-bar {
    display: block; position: fixed; inset: auto 0 0 0; z-index: 80;
    padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, .94); backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .book-bar .btn { width: 100%; }
  body { padding-bottom: 5.5rem; }
}
