/* ============================================================
   Ozone Baths · premium wellness landing
   Palette: warm white / mist / dusty aqua / deep teal / sand
   Type: Source Serif 4 display serif + Inter body
   ============================================================ */

:root {
  /* Base neutrals */
  --warm-white: #f6f3ee;
  --cream: #ede7dc;
  --mist: #e4ecef;
  --paper: #fbfaf6;
  --sand: #d9cdb8;

  /* Section spacing tokens */
  --section-pad: 96px;
  --section-pad-mobile: 76px;
  --head-gap: 104px;
  --head-gap-mobile: 40px;

  /* Aquas */
  --aqua-50:  #eef5f6;
  --aqua-100: #d5e5e7;
  --aqua-200: #b2cfd2;
  --aqua-300: #8eb6ba;
  --aqua-400: #6a9da2;
  --aqua-500: #4d858b;
  --aqua-600: #3a6f76;
  --aqua-700: #2d5a61;
  --aqua-800: #1f4046;
  --aqua-900: #0f2a2f;

  /* Ink */
  --ink-900: #15252a;
  --ink-700: #29393d;
  --ink-500: #5a6c70;
  --ink-300: #8a9a9d;
  --ink-200: #b7c0c1;
  --line: #e1dfd8;

  /* Accents */
  --accent-warm: #c9a373;

  /* Layout */
  --container: 1280px;
  --r-sm: 8px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 36px;

  /* Type — Editorial Fashion-Tech
     Display: Source Serif 4 (optical italic for accents, full Latvian)
     UI/Body: Inter (300–700)
     Technical: JetBrains Mono (eyebrows, numbers, prices) */
  --serif: "Source Serif 4", "Times New Roman", ui-serif, serif;
  --sans:  "Inter", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Fluid type scale — bigger, breathier (2026 ref: OpenAI, Linear, Stripe) */
  --fs-micro:   clamp(11px, .78vw, 12.5px);
  --fs-eyebrow: clamp(11.5px, .85vw, 13px);
  --fs-body:    clamp(16px, 1.1vw, 17.5px);
  --fs-lede:    clamp(18.5px, 1.45vw, 23px);
  --fs-h3:      clamp(26px, 2.3vw, 36px);
  --fs-h2:      clamp(52px, 6.6vw, 112px);
  --fs-h1:      clamp(72px, 11.2vw, 200px);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink-900);
  font-family: var(--sans);
  font-weight: 380;
  font-size: var(--fs-body);
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss03", "cv11", "calt", "liga";
  font-optical-sizing: auto;
  scroll-behavior: smooth;
}

img { max-width: 100%; display: block; }

button, input, textarea { font-family: inherit; color: inherit; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--aqua-200); color: var(--aqua-900); }

/* ---------- shell ---------- */
.shell {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 250, 246, 0.72);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  transition: all .4s cubic-bezier(.4,0,.2,1);
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  transition: padding .4s ease;
}
.site-header.scrolled {
  background: rgba(251, 250, 246, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(225,223,216, .6);
}
.site-header.scrolled .inner { padding: 14px 0; }

.logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: .02em;
}
.logo .mark {
  width: 34px; height: 34px;
  position: relative;
  align-self: center;
  flex: none;
  filter:
    drop-shadow(0 3px 7px rgba(45, 90, 97, .30))
    drop-shadow(0 0 7px rgba(178, 216, 216, .55));
}
.logo .mark svg { width: 100%; height: 100%; display: block; }
.logo .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -.02em;
  color: var(--ink-900);
}
.logo .name .lw {
  font-weight: 600;
  letter-spacing: -.025em;
}
.logo .name .rw {
  font-style: italic;
  font-weight: 400;
  color: var(--aqua-600);
}
.logo .name em {
  font-style: normal;
  font-weight: 400;
  color: var(--aqua-500);
  font-size: .68em;
  margin: 0 .14em;
  vertical-align: .12em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav a {
  font-size: 14px;
  letter-spacing: -.005em;
  color: var(--ink-700);
  padding: 6px 0;
  position: relative;
  font-weight: 450;
  transition: color .2s ease;
  white-space: nowrap;
}
.nav a:hover { color: var(--aqua-700); }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--aqua-500);
  transition: right .25s ease;
}
.nav a:hover::after { right: 0; }

.header-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* lang switcher */
.lang {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  backdrop-filter: blur(8px);
}
.lang button {
  border: none;
  background: transparent;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 6px 11px;
  border-radius: 100px;
  color: var(--ink-500);
  cursor: pointer;
  transition: all .2s ease;
  font-feature-settings: "ss01", "ss02";
}
.lang button:hover { color: var(--ink-900); }
/* Inactive language options get a clearer interactive hover. */
.lang button:not(.active):hover {
  color: var(--ink-900);
  background: rgba(21, 37, 42, .07);
}
.lang button.active {
  background: var(--ink-900);
  color: var(--warm-white);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -.005em;
  text-transform: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
  font-feature-settings: "ss01", "calt";
  line-height: 1;
  min-height: 50px;
  box-sizing: border-box;
}
.btn-primary {
  background: var(--aqua-800);
  color: var(--warm-white);
  border-color: var(--aqua-800);
}
.btn-primary:hover {
  background: var(--aqua-900);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -10px rgba(15, 42, 47, .5);
}
.btn-ghost {
  background: rgba(255,255,255,.6);
  color: var(--ink-900);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.9);
  border-color: var(--aqua-300);
}
.btn-light {
  background: var(--warm-white);
  color: var(--ink-900);
}
.btn-light:hover { background: #fff; transform: translateY(-1px); }
.btn .arrow {
  width: 14px; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .25s ease;
}
.btn .arrow::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 6px; height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.btn:hover .arrow { width: 22px; }

/* Mobile burger — refined two-hairline mark in a soft glass disc */
.burger {
  display: none;
  position: relative;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.burger:hover {
  border-color: var(--aqua-300);
  box-shadow: 0 10px 24px -16px rgba(15,42,47,.5);
}
.burger span {
  display: block;
  width: 18px; height: 0;
  position: relative;
}
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0;
  height: 1.25px; border-radius: 2px;
  background: var(--ink-800, var(--ink-700));
  transition: width .28s cubic-bezier(.4,0,.2,1), transform .28s ease;
}
.burger span::before { top: -3px; width: 18px; }
.burger span::after  { top:  3px; width: 12px; }
.burger:hover span::after { width: 18px; }

/* ---------- mobile menu ---------- */
.mob-menu {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(120% 80% at 85% -10%, rgba(178,207,210,.45) 0%, rgba(178,207,210,0) 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  z-index: 100;
  padding: 26px 28px 36px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility 0s linear .4s;
}
.mob-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .4s ease, visibility 0s linear 0s;
}
.mob-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mob-menu-top .logo .name { font-size: 21px; }
.mob-menu-top .logo .mark { width: 28px; height: 28px; }
.mob-close {
  position: relative;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.5);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 auto;
  transition: border-color .25s ease, transform .25s ease;
}
.mob-close:hover { border-color: var(--aqua-300); transform: rotate(90deg); }
.mob-close span {
  position: absolute; top: 50%; left: 50%;
  width: 15px; height: 1.25px; border-radius: 2px;
  background: var(--ink-700);
}
.mob-close span:nth-child(1) { transform: translate(-50%,-50%) rotate(45deg); }
.mob-close span:nth-child(2) { transform: translate(-50%,-50%) rotate(-45deg); }

.mob-nav {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  margin-bottom: auto;
  padding: 32px 0;
}
.mob-nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(21,37,42,.08);
  color: var(--ink-900);
  text-decoration: none;
}
.mob-nav a:last-child { border-bottom: none; }
.mob-nav a {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s cubic-bezier(.2,.7,.2,1), transform .5s cubic-bezier(.2,.7,.2,1);
  transition-delay: calc(.1s + var(--mi) * .05s);
}
.mob-menu.open .mob-nav a {
  opacity: 1;
  transform: translateY(0);
}
.mob-idx {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--aqua-500);
  min-width: 22px;
  transform: translateY(-2px);
}
.mob-label {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 440;
  letter-spacing: -.015em;
  line-height: 1.05;
  flex: 1 1 auto;
}
.mob-arrow {
  width: 18px; height: 18px;
  position: relative;
  align-self: center;
  opacity: .35;
  transition: opacity .2s ease, transform .2s ease;
}
.mob-arrow::before, .mob-arrow::after {
  content: ""; position: absolute; background: var(--ink-700);
}
.mob-arrow::before { top: 50%; left: 2px; width: 13px; height: 1px; transform: translateY(-50%); }
.mob-arrow::after  { top: 50%; right: 2px; width: 7px; height: 7px; border-top: 1px solid var(--ink-700); border-right: 1px solid var(--ink-700); transform: translateY(-50%) rotate(45deg); }
.mob-nav a:hover .mob-arrow,
.mob-nav a:active .mob-arrow { opacity: .8; transform: translateX(3px); }

.mob-foot {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mob-foot .btn-primary { width: 100%; justify-content: center; }
.mob-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  letter-spacing: -.005em;
}
.mob-contact a { color: var(--ink-700); text-decoration: none; }
.mob-contact .mob-hours {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--ink-300);
  letter-spacing: 0;
}
.mob-lang {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.mob-lang button {
  flex: 1 1 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 10px 0;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--ink-300);
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.mob-lang button.active {
  color: var(--ink-900);
  border-color: var(--aqua-400);
  background: rgba(178,207,210,.22);
}

/* ---------- shared section bits ---------- */
section { padding: var(--section-pad) 0; position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: -.005em;
  text-transform: uppercase;
  color: var(--aqua-700);
  font-weight: 500;
  margin-bottom: 40px;
  font-feature-settings: "ss01", "ss02", "zero";
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--aqua-500);
  display: inline-block;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: .98;
  letter-spacing: -.03em;
  margin: 0 0 36px;
  color: var(--ink-900);
  text-wrap: balance;
  font-optical-sizing: auto;
}
.section-title em {
  font-style: italic;
  color: var(--aqua-700);
  letter-spacing: -.024em;
}
.section-lede {
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: var(--ink-500);
  max-width: 580px;
  margin: 0;
  text-wrap: pretty;
  letter-spacing: -.012em;
  font-weight: 380;
  white-space: pre-line;
}

/* ---------- hero ---------- */
.hero {
  padding: 0;
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #eaf1f3 0%, #f1efe9 60%, var(--paper) 100%);
}
.hero-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section-pad) 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: stretch;
  min-height: 92vh;
}
.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-disclaimer {
  margin-top: auto;
  padding-top: 48px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-300);
  max-width: 420px;
  line-height: 1.6;
  letter-spacing: -.005em;
}
.hero-copy h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: .88;
  letter-spacing: -.038em;
  margin: 0;
  color: var(--ink-900);
  font-optical-sizing: auto;
}
.hero-copy h1 .word2 {
  display: block;
  font-style: italic;
  color: var(--aqua-700);
  margin-left: clamp(40px, 9vw, 140px);
  margin-top: .04em;
  position: relative;
  letter-spacing: -.03em;
}
.hero-copy h1 .word2::before {
  content: "";
  position: absolute;
  left: -56px; top: 50%;
  width: 40px; height: 1px;
  background: var(--aqua-500);
  display: none;
}
@media (min-width: 900px) {
  .hero-copy h1 .word2::before { display: block; }
}
.hero-sub {
  font-size: var(--fs-lede);
  line-height: 1.5;
  color: var(--ink-500);
  max-width: 520px;
  margin: 56px 0 56px;
  text-wrap: pretty;
  letter-spacing: -.012em;
  font-weight: 380;
  white-space: pre-line;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
/* Balance the two hero CTAs as an equal-width pair (50/50). */
.hero-ctas .btn { flex: 1 1 0; justify-content: center; }

/* Desktop only (>1100px): lift the hero stack so the headline, subhead and
   primary CTA all sit above the fold on standard desktop screens. The content
   is top-anchored, so the oversized top padding above the 88px fixed header was
   the only thing pushing the CTA down. Tablet/mobile keep their own padding via
   the max-width:1100px / 430px overrides below — untouched here. */
@media (min-width: 1101px) {
  .hero-shell { padding-top: 116px; padding-bottom: 124px; }
  .hero-sub { margin: 44px 0 48px; max-width: 720px; }
}

/* hero image stack */
.hero-art {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow:
    0 60px 80px -50px rgba(15, 42, 47, .35),
    0 30px 40px -30px rgba(15, 42, 47, .25);
}
.hero-art-bar {
  display: none;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  width: 56px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
}
.hero-art img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 28% center;
  filter: saturate(.92) brightness(1.02);
  transform: scale(1.02);
  transition: transform 1.4s ease;
}
.hero-art:hover img { transform: scale(1.06); }

/* hero floating glass card */
.hero-card {
  position: absolute;
  left: -28px;
  bottom: 40px;
  padding: 18px 22px 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 100px;
  box-shadow: 0 20px 40px -20px rgba(15, 42, 47, .25);
  max-width: 290px;
}
.hero-card .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--aqua-500);
  box-shadow: 0 0 0 4px rgba(106, 157, 162, .25);
  animation: pulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(106, 157, 162, .25); }
  50%      { box-shadow: 0 0 0 9px rgba(106, 157, 162, 0); }
}
.hero-card .txt {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--ink-700);
  letter-spacing: -.005em;
}

/* hero top floating tag */
.hero-tag {
  display: none; /* duplicate of the eyebrow above the headline — hidden, eyebrow remains */
  position: absolute;
  top: 38px; right: -10px;
  padding: 10px 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-900);
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.8);
  backdrop-filter: blur(14px);
  border-radius: 100px;
  box-shadow: 0 14px 26px -16px rgba(15, 42, 47, .3);
  font-feature-settings: "ss01", "ss02";
}

/* hero decorative bubbles */
.hero-bubble {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.9), rgba(178,207,210,.6) 60%, rgba(74,133,139,.2) 100%);
  pointer-events: none;
  filter: blur(.5px);
}
.hero-bubble.b1 { width: 110px; height: 110px; top: 18%; left: 38%; animation: float 9s ease-in-out infinite; }
.hero-bubble.b2 { width: 60px;  height: 60px;  top: 50%; left: 8%;  animation: float 11s ease-in-out -3s infinite; }
.hero-bubble.b3 { width: 38px;  height: 38px;  top: 70%; left: 45%; animation: float 7s  ease-in-out -1s infinite; }
@keyframes float {
  0%,100% { transform: translateY(0) translateX(0); }
  50%     { transform: translateY(-22px) translateX(8px); }
}

/* ---------- mobile hero (image-led, result-first) ---------- */
.hero-m { display: none; }

/* scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-500);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-feature-settings: "ss01";
}
.scroll-cue .line {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, var(--ink-300), transparent);
  animation: scrolldown 2.4s ease-in-out infinite;
}
@keyframes scrolldown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- audience grid ---------- */
.audience {
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
  padding-top: calc(var(--section-pad) * 0.5);
}
/* Shared section-head alignment — bottoms aligned cleanly */
.audience-head,
.services-head,
.faq-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  margin-bottom: var(--head-gap);
  align-items: end;
}
.audience-head .section-title,
.services-head .section-title,
.faq-head .section-title {
  margin-bottom: 0;
}
.audience-head .section-lede,
.services-head .section-lede,
.faq-head .section-lede,
.faq-head .faq-aside {
  margin: 0;
  max-width: 520px;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.aud-card {
  position: relative;
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 48px 40px 44px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
}
.aud-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--aqua-500), var(--aqua-300), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.aud-card:hover {
  transform: translateY(-4px);
  border-color: var(--aqua-300);
  box-shadow: 0 30px 50px -35px rgba(15, 42, 47, .3);
}
.aud-card:hover::before { transform: scaleX(1); }
.aud-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.aud-tag {
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  color: var(--aqua-700);
  font-weight: 500;
  letter-spacing: 0;
  font-feature-settings: "ss01", "zero";
}
.aud-glyph {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}
.aud-glyph span {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aqua-200);
  transition: all .35s ease;
}
.aud-glyph span:nth-child(2) { background: var(--aqua-400); }
.aud-glyph span:nth-child(3) { background: var(--aqua-600); }
.aud-card:hover .aud-glyph span:nth-child(1) { transform: translateY(-2px); }
.aud-card:hover .aud-glyph span:nth-child(2) { transform: translateY(-4px); }
.aud-card:hover .aud-glyph span:nth-child(3) { transform: translateY(-6px); }
.aud-card h3 {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 450;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -.018em;
  color: var(--ink-900);
  text-wrap: balance;
}
.aud-card p {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0;
  text-wrap: pretty;
  flex: 1;
  letter-spacing: -.008em;
  font-weight: 380;
  white-space: pre-line;
}
.aud-card-foot {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft, var(--line));
}
.aud-line {
  display: block;
  width: 28px; height: 1px;
  background: var(--aqua-500);
  transition: width .4s cubic-bezier(.4,0,.2,1);
}
.aud-card:hover .aud-line { width: 56px; }

/* Featured (deep teal) variant — every 4th card to add rhythm */
.aud-card:nth-child(2),
.aud-card:nth-child(6) {
  background: var(--aqua-900);
  border-color: transparent;
  color: white;
}
.aud-card:nth-child(2)::after,
.aud-card:nth-child(6)::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(106, 157, 162, .25), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(201, 163, 115, .12), transparent 50%);
  pointer-events: none;
}
.aud-card:nth-child(2) > *,
.aud-card:nth-child(6) > * { position: relative; z-index: 2; }
.aud-card:nth-child(2) .aud-tag,
.aud-card:nth-child(6) .aud-tag { color: var(--aqua-200); }
.aud-card:nth-child(2) h3,
.aud-card:nth-child(6) h3 { color: white; }
.aud-card:nth-child(2) p,
.aud-card:nth-child(6) p { color: rgba(255,255,255,.72); }
.aud-card:nth-child(2) .aud-glyph span,
.aud-card:nth-child(6) .aud-glyph span { background: rgba(255,255,255,.25); }
.aud-card:nth-child(2) .aud-glyph span:nth-child(2),
.aud-card:nth-child(6) .aud-glyph span:nth-child(2) { background: rgba(255,255,255,.5); }
.aud-card:nth-child(2) .aud-glyph span:nth-child(3),
.aud-card:nth-child(6) .aud-glyph span:nth-child(3) { background: var(--aqua-200); }
.aud-card:nth-child(2) .aud-card-foot,
.aud-card:nth-child(6) .aud-card-foot { border-top-color: rgba(255,255,255,.12); }
.aud-card:nth-child(2) .aud-line,
.aud-card:nth-child(6) .aud-line { background: var(--aqua-200); }

/* ---------- how it works ---------- */
.how {
  background: var(--paper);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: stretch;
}
.how-aside {
  display: flex;
  flex-direction: column;
}
.how-aside .visual {
  margin-top: 40px;
  flex: 1 1 auto;
  min-height: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  position: relative;
}
.how-aside .visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0) 60%, rgba(31, 64, 70, .18));
  pointer-events: none;
}
.how-steps {
  display: flex;
  flex-direction: column;
}
.how-step {
  display: grid;
  grid-template-columns: 60px 1fr 80px;
  gap: 28px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  transition: all .3s ease;
  cursor: default;
}
.how-step:last-child { border-bottom: 1px solid var(--line); }
.how-step:hover { background: rgba(212, 229, 231, .25); padding-left: 8px; }
.how-step .n {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 500;
  color: var(--aqua-600);
  font-style: normal;
  line-height: 1;
  letter-spacing: 0;
  font-feature-settings: "ss01", "zero", "tnum";
  font-variant-numeric: tabular-nums;
  padding-top: 6px;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: var(--fs-h3);
  font-weight: 450;
  margin: 0 0 14px;
  color: var(--ink-900);
  letter-spacing: -.018em;
  line-height: 1.15;
}
.how-step p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0;
  max-width: 560px;
  letter-spacing: -.008em;
  font-weight: 380;
  white-space: pre-line;
}
.how-step .marker {
  height: 1px;
  background: var(--line);
  align-self: center;
  position: relative;
  transition: background .3s ease;
}
.how-step:hover .marker { background: var(--aqua-500); }

/* ---------- services ---------- */
.services {
  background: linear-gradient(180deg, var(--mist) 0%, #eaf1f3 100%);
}
/* services-head specifics already covered by shared rule above */
.svc-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.svc-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  background: var(--warm-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -40px rgba(15, 42, 47, .25);
  transition: transform .4s ease, box-shadow .4s ease;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 80px -40px rgba(15, 42, 47, .35);
}
.svc-card.reverse { grid-template-columns: 1.15fr 0.85fr; }
.svc-card.reverse .svc-img { order: 2; }
.svc-img {
  aspect-ratio: auto;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 380px;
}
.svc-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 64, 70, .12), rgba(31, 64, 70, 0));
}
.svc-body {
  padding: 64px 64px;
  display: flex;
  flex-direction: column;
}
.svc-body .num {
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  color: var(--aqua-600);
  margin-bottom: 28px;
  letter-spacing: 0;
  font-feature-settings: "ss01", "zero", "tnum";
  font-variant-numeric: tabular-nums;
}
.svc-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 4vw, 64px);
  line-height: 1.0;
  letter-spacing: -.028em;
  margin: 0 0 24px;
  color: var(--ink-900);
  text-wrap: balance;
  font-optical-sizing: auto;
}
.svc-body .desc {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0 0 36px;
  max-width: 480px;
  letter-spacing: -.01em;
  font-weight: 380;
  white-space: pre-line;
}
.svc-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.svc-features li {
  font-size: 15px;
  color: var(--ink-700);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
  letter-spacing: -.008em;
  font-weight: 380;
}
.svc-features li::before {
  content: "";
  position: absolute;
  left: 2px; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aqua-600);
}

.svc-opts {
  display: flex;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.svc-opts .prices {
  display: flex;
  gap: 22px;
}
.svc-opts .price-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.svc-opts .price-item .t {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-300);
  font-weight: 500;
  margin-bottom: 0;
  font-feature-settings: "ss01", "zero";
}
.svc-opts .price-item .p {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--aqua-700);
  font-weight: 460;
  letter-spacing: -.02em;
  font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* ---------- FAQ ---------- */
.faq {
  background: linear-gradient(180deg, #16363b 0%, #0c2227 100%);
  color: rgba(255,255,255,.9);
  position: relative;
  overflow: hidden;
}
.faq::before {
  content: "";
  position: absolute;
  top: -50px; left: -50px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(106, 157, 162, .25), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.faq::after {
  content: "";
  position: absolute;
  bottom: -50px; right: -50px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201, 163, 115, .12), transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}
.faq .eyebrow { color: var(--aqua-200); }
.faq .eyebrow::before { background: var(--aqua-200); }
.faq .section-title { color: white; }
.faq .section-title em { color: var(--aqua-200); }
/* faq-head specifics already covered by shared rule above */
.faq-aside {
  font-size: var(--fs-lede);
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  text-wrap: pretty;
  letter-spacing: -.012em;
  font-weight: 380;
}
.faq-list {
  position: relative;
  z-index: 2;
}
.faq-item {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
/* FAQ accordion — standard pattern, multi-open, smooth */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 38px 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.6vw, 40px);
  color: white;
  font-weight: 420;
  letter-spacing: -.02em;
  line-height: 1.12;
  transition: color .25s ease;
}
.faq-q:hover { color: var(--aqua-200); }
.faq-item.open .faq-q { color: var(--aqua-200); }
.faq-q .icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  flex-shrink: 0;
  margin-left: 24px;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.faq-q .icon::before,
.faq-q .icon::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,.75);
  transition: transform .35s cubic-bezier(.4,0,.2,1), background .25s ease;
}
.faq-q .icon::before { width: 12px; height: 1px; }
.faq-q .icon::after  { width: 1px;  height: 12px; }
.faq-item.open .faq-q .icon {
  background: var(--aqua-200);
  border-color: var(--aqua-200);
  transform: rotate(180deg);
}
.faq-item.open .faq-q .icon::before,
.faq-item.open .faq-q .icon::after { background: var(--aqua-900); }
.faq-item.open .faq-q .icon::after { transform: scaleY(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition:
    max-height .55s cubic-bezier(.4,0,.2,1),
    opacity .35s ease,
    transform .45s cubic-bezier(.4,0,.2,1);
  will-change: max-height, opacity;
}
.faq-item.open .faq-a {
  max-height: 480px;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height .55s cubic-bezier(.4,0,.2,1),
    opacity .45s ease .1s,
    transform .5s cubic-bezier(.4,0,.2,1) .05s;
}
.faq-a-inner {
  padding: 4px 70px 40px 0;
  color: rgba(255,255,255,.78);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 760px;
  text-wrap: pretty;
  letter-spacing: -.008em;
  font-weight: 380;
}

/* Specialist section: trim bottom padding so it sits closer to the CTA. */
.specialist {
  background: var(--paper);
  padding-bottom: calc(var(--section-pad) * 0.5);
}
.spec-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  column-gap: 72px;
  align-items: start;
}
.spec-photo {
  position: relative;
  width: 100%;
  max-width: 260px;
}
.spec-body {
  min-width: 0; /* allow text to wrap rather than blow grid */
}
.spec-divider {
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 32px 0 32px;
  width: 100%;
  max-width: 580px;
}
.spec-photo .frame {
  aspect-ratio: 5/6;
  background: var(--mist);
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 48px -32px rgba(15, 42, 47, .35);
}
.spec-photo .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.95);
}
.spec-photo .frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 65%, rgba(15, 42, 47, .08));
  pointer-events: none;
}
.spec-body h2 {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.0;
  font-weight: 400;
  margin: 0 0 16px;
  letter-spacing: -.028em;
  font-optical-sizing: auto;
}
.spec-body h2 em { font-style: italic; color: var(--aqua-700); letter-spacing: -.024em; }
.spec-body .role {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--aqua-700);
  margin-bottom: 0;
  font-weight: 500;
  font-feature-settings: "ss01", "zero";
  line-height: 1.5;
  display: block;
}
.spec-body .bio {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-500);
  margin: 0;
  max-width: 580px;
  text-wrap: pretty;
  letter-spacing: -.008em;
  font-weight: 380;
}
.spec-values {
  display: grid;
  gap: 22px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  max-width: 580px;
}
.spec-value {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 14px;
  padding: 4px 0;
}
.spec-value .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--aqua-600);
  margin-top: 9px;
  position: relative;
}
.spec-value .dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--aqua-200);
}
.spec-value .title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 450;
  color: var(--ink-900);
  letter-spacing: -.012em;
  margin-bottom: 4px;
  line-height: 1.25;
}
.spec-value p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-500);
  letter-spacing: -.008em;
  font-weight: 380;
}

/* ---------- booking ---------- */
.booking {
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--section-pad) * 0.55);
}
.booking::before {
  content: "";
  position: absolute;
  top: 20%; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--aqua-100), transparent 60%);
  opacity: .7;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
.book-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-copy .title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: .98;
  font-weight: 400;
  margin: 0 0 36px;
  letter-spacing: -.03em;
  text-wrap: balance;
  font-optical-sizing: auto;
}
.book-copy .title em { color: var(--aqua-700); font-style: italic; letter-spacing: -.024em; font-weight: 400; }
.book-copy .lede {
  font-size: var(--fs-lede);
  line-height: 1.55;
  color: var(--ink-500);
  margin: 0 0 48px;
  max-width: 480px;
  text-wrap: pretty;
  letter-spacing: -.012em;
  font-weight: 380;
}
.book-meta {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.book-meta .row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-size: 14.5px;
  flex-wrap: wrap;
}
.book-meta .row .v a {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.book-meta .row .v a:hover { border-bottom-color: currentColor; }
.book-meta .row .k {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--ink-300);
  min-width: 80px;
  font-weight: 500;
  font-feature-settings: "ss01", "zero";
}
.book-meta .row .v { color: var(--ink-700); letter-spacing: -.005em; }

.book-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.6) inset,
    0 18px 44px -26px rgba(15, 42, 47, .26);
}
/* Full-width submit for stronger conversion weight. */
.book-form .btn-primary { width: 100%; justify-content: center; }
.field {
  display: block;
  margin-bottom: 30px;
  position: relative;
}
.field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 18px 0 14px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink-900);
  outline: none;
  transition: border-color .25s ease;
  letter-spacing: -.005em;
}
.field input:focus {
  border-bottom-color: var(--aqua-500);
}
.field input::placeholder { color: var(--ink-300); }
.field label {
  position: absolute;
  top: 16px; left: 0;
  font-size: 14px;
  color: var(--ink-500);
  pointer-events: none;
  transition: all .25s ease;
}
.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label {
  top: -4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0;
  color: var(--aqua-700);
  text-transform: uppercase;
  font-feature-settings: "ss01", "zero";
}
.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0 28px;
  font-size: 12.5px;
  color: var(--ink-500);
  line-height: 1.5;
  cursor: pointer;
  letter-spacing: -.005em;
}
.consent input {
  margin-top: 3px;
  accent-color: var(--aqua-700);
  width: 16px; height: 16px;
}
.privacy-link {
  font: inherit;
  color: var(--aqua-700);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  letter-spacing: inherit;
}
.privacy-link:hover { color: var(--aqua-900); }

/* ---------- Privacy modal ---------- */
.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(21, 37, 42, .42);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}
.privacy-overlay.open { opacity: 1; visibility: visible; }
.privacy-modal {
  position: relative;
  width: min(560px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  background: var(--cream);
  color: var(--ink-700);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px -20px rgba(21, 37, 42, .45);
  padding: 44px 44px 40px;
  transform: translateY(16px) scale(.98);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
.privacy-overlay.open .privacy-modal { transform: translateY(0) scale(1); }
.privacy-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  line-height: 1;
  color: var(--ink-500);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.privacy-close:hover { background: var(--paper); color: var(--ink-900); border-color: var(--ink-300); }
.privacy-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink-900);
  margin: 0 0 26px;
}
.privacy-body { display: flex; flex-direction: column; gap: 20px; }
.privacy-section h3 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--aqua-700);
  margin: 0 0 6px;
}
.privacy-section p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-700);
  margin: 0;
  letter-spacing: -.005em;
  text-wrap: pretty;
}
.privacy-note {
  margin: 6px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-500);
  letter-spacing: -.005em;
}
@media (max-width: 560px) {
  .privacy-modal { padding: 38px 24px 32px; }
}
.book-success {
  background: rgba(74, 133, 139, .12);
  border: 1px solid var(--aqua-300);
  border-radius: var(--r-md);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--aqua-800);
  margin-bottom: 18px;
}

/* ---------- footer ---------- */
.site-footer {
  background: #0c2227;
  color: rgba(255,255,255,.75);
  padding: 112px 0 36px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 72px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  margin: 0 0 22px;
  font-feature-settings: "ss01", "zero";
}
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.foot-col a { font-size: 14.5px; color: rgba(255,255,255,.72); transition: color .2s ease; letter-spacing: -.005em; }
.foot-col a:hover { color: white; }
.foot-brand .logo .name { color: white; }
.foot-brand .logo .name em { color: var(--aqua-200); }
.foot-brand .logo .name .rw { color: var(--aqua-200); }
.foot-brand p {
  margin: 28px 0 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.6);
  max-width: 320px;
  letter-spacing: -.005em;
}
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.foot-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--aqua-200);
  transition: all .25s ease;
}
.foot-social a svg { width: 24px; height: 24px; display: block; }
.foot-social a:hover {
  background: var(--aqua-200);
  color: var(--aqua-900);
  border-color: var(--aqua-200);
}
/* Contacts column carded as a distinct unit (booking-card recipe, adapted to the dark footer). */
.foot-contact {
  align-self: start;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, .55);
}
.foot-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  letter-spacing: 0;
  font-feature-settings: "ss01", "zero";
}
.foot-disclaimer {
  font-size: 12.5px;
  color: rgba(255,255,255,.42);
  line-height: 1.6;
  max-width: 760px;
  margin: 24px 0 0;
  text-wrap: pretty;
  letter-spacing: -.005em;
  white-space: pre-line;
}

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
.reveal.d6 { transition-delay: .48s; }

/* ---------- responsive ---------- */
/* Prevent horizontal scrollbars at every breakpoint */
html, body { overflow-x: hidden; }

@media (max-width: 1280px) {
  .nav { gap: 28px; }
  .nav a { font-size: 13.5px; }
  .header-right { gap: 14px; }
  .shell { padding: 0 28px; }
}
@media (max-width: 1100px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .hero-shell { grid-template-columns: 1fr; gap: 40px; padding: 110px 32px 60px; }
  .hero-art { max-width: 520px; margin: 0 auto; }
  .hero-ctas .btn { flex: 1 1 0; min-width: 0; justify-content: center; }
  .audience-head, .services-head, .faq-head, .book-grid, .how-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .audience-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .aud-card { min-height: 0; padding: 32px 28px 26px; }
  .aud-card-top { margin-bottom: 24px; }
  .aud-card h3 { font-size: 26px; margin-bottom: 14px; }
  .aud-card-foot { margin-top: 24px; padding-top: 18px; }
  .svc-card, .svc-card.reverse { grid-template-columns: 1fr; }
  .svc-card.reverse .svc-img { order: 0; }
  .svc-img { min-height: 320px; }
  .how-aside { position: relative; top: 0; }
  .how-aside .visual { flex: 0 0 auto; aspect-ratio: 5/4; min-height: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .spec-grid { grid-template-columns: 220px 1fr; column-gap: 40px; }
  .spec-photo { max-width: 220px; }
}
@media (max-width: 720px) {
  .shell { padding: 0 20px; }
  section { padding: var(--section-pad-mobile) 0; }

  /* Defensive: ensure every reveal-animated element is visible on mobile
     even if the IntersectionObserver doesn't fire in time. Critical for
     audience cards — we had reports of the 6th card looking 'cut off'. */
  .reveal { opacity: 1; transform: none; transition: none; }

  /* Tighter section-pad overrides for blocks with extra trimming */
  .audience { padding-top: calc(var(--section-pad-mobile) * 0.7); }
  .specialist { padding-bottom: calc(var(--section-pad-mobile) * 0.55); }
  .booking { padding-top: calc(var(--section-pad-mobile) * 0.7); padding-bottom: calc(var(--section-pad-mobile) * 0.7); }

  .audience-head, .services-head, .faq-head, .how-grid {
    gap: 20px;
    margin-bottom: var(--head-gap-mobile);
  }
  /* Booking: gap top of form == gap bottom to footer (symmetric breathing) */
  .book-grid { gap: 40px; margin-bottom: 0; }

  .section-title { margin-bottom: 18px; line-height: 1.02; }
  .eyebrow { margin-bottom: 22px; }
  .section-lede { font-size: 16px; line-height: 1.5; }

  /* ===== Mobile hero: hide desktop composition, show image-led version ===== */
  .hero { min-height: 0; background: var(--paper); overflow: visible; }
  .hero-shell { display: none; }
  .hero-bubble { display: none; }
  /* language switch lives inside the burger menu on mobile */
  .header-right .lang { display: none; }
  /* header is glass from load on mobile — not only after scroll */
  .site-header {
    background: rgba(251, 250, 246, 0.78);
    -webkit-backdrop-filter: saturate(140%) blur(14px);
    backdrop-filter: saturate(140%) blur(14px);
    border-bottom: 1px solid rgba(225, 223, 216, .55);
  }

  .hero-m {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
  }
  .hero-m-photo {
    position: relative;
    width: 100%;
    height: 45svh;
    max-height: 45vh;
    min-height: 240px;
    flex: 0 0 auto;
    overflow: hidden;
  }
  .hero-m-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: 50% 32%;
    filter: saturate(.94) brightness(1.02);
  }
  /* top scrim removed — the glass header now keeps the logo + burger legible */
  .hero-m-photo::before { content: none; }
  /* gradient fade removed — replaced by a clean rounded content panel (referenced band→panel transition) */
  .hero-m-photo-fade { display: none; }
  .hero-m-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 2;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    background: var(--paper);
    padding: 36px 24px 30px;
  }
  .hero-m-cat {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--aqua-700);
    font-weight: 500;
    font-feature-settings: "ss01", "ss02", "zero";
    margin-bottom: 14px;
  }
  .hero-m-lead {
    font-family: var(--serif);
    font-weight: 400;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.04;
    letter-spacing: -.03em;
    color: var(--ink-900);
    margin: 0;
    text-wrap: balance;
  }
  /* match the rest of the site: last word in italic aqua, like .section-title em */
  .hero-m-lead em {
    font-style: italic;
    color: var(--aqua-700);
    letter-spacing: -.024em;
  }
  .hero-m-proc {
    font-family: var(--serif);
    font-style: italic;
    font-size: 18px;
    letter-spacing: -.02em;
    color: var(--aqua-700);
    margin-top: 8px;
  }
  .hero-m-desc {
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--ink-500);
    letter-spacing: -.01em;
    font-weight: 380;
    margin: 18px 0 0;
    text-wrap: pretty;
  }
  .hero-m-points {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .hero-m-points li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    line-height: 1.3;
    color: var(--ink-700);
    letter-spacing: -.01em;
  }
  .hero-m-points li::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 7px; height: 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #fff 0%, var(--aqua-300) 45%, var(--aqua-600) 100%);
  }
  .hero-m-cta {
    margin-top: 26px;
    width: 100%;
    justify-content: center;
  }

  .audience-grid { grid-template-columns: 1fr; gap: 14px; }
  .aud-card { padding: 26px 24px 22px; min-height: 0; }
  .aud-card-top { margin-bottom: 18px; }
  .aud-card h3 { font-size: 22px; line-height: 1.15; margin-bottom: 12px; }
  .aud-card p { font-size: 14.5px; line-height: 1.55; }
  .aud-card-foot { margin-top: 18px; padding-top: 14px; }

  .svc-body { padding: 32px 24px; }
  .svc-body h3 { font-size: 32px; line-height: 1.05; margin-bottom: 14px; }
  .svc-body .desc { font-size: 15.5px; line-height: 1.55; margin-bottom: 22px; }
  .svc-features { margin-bottom: 24px; gap: 8px; }
  .svc-features li { font-size: 14.5px; line-height: 1.45; }
  .svc-opts { flex-direction: column; align-items: stretch; gap: 18px; padding-top: 20px; }
  .svc-opts .btn { width: 100%; justify-content: center; }
  .svc-opts .price-item .p { font-size: 26px; }

  .how-step { grid-template-columns: 40px 1fr; gap: 16px; padding: 24px 0; }
  .how-step .marker { display: none; }
  .how-step h3 { font-size: 22px; line-height: 1.15; margin-bottom: 6px; }
  .how-step p { font-size: 15px; line-height: 1.55; }

  .faq-q { font-size: 22px; padding: 22px 0; line-height: 1.15; }
  .faq-q .icon { width: 30px; height: 30px; margin-left: 14px; }
  .faq-a-inner { padding: 0 0 24px 0; font-size: 15px; line-height: 1.55; }

  .spec-grid { grid-template-columns: 1fr; gap: 22px; }
  .spec-photo { max-width: 180px; margin: 0; justify-self: start; }
  .spec-body h2 { font-size: 36px; line-height: 1.0; margin-bottom: 12px; }
  .spec-body .bio { font-size: 15.5px; line-height: 1.55; }
  .spec-divider { margin: 18px 0 20px; max-width: none; }

  .book-copy .title { font-size: 38px; line-height: 1.02; margin-bottom: 18px; }
  .book-copy .lede { font-size: 16px; line-height: 1.5; margin-bottom: 32px; }
  .book-meta { padding-top: 20px; gap: 14px; }
  .book-meta .row { flex-direction: column; gap: 4px; align-items: flex-start; }
  .book-meta .row .k { min-width: 0; }
  .book-form { padding: 28px 22px; }

  .foot-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 48px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
  .site-footer { padding: 72px 0 28px; }

  .hero-card { left: 20px; right: 20px; bottom: 18px; margin: 0; max-width: none; }
  .hero-tag { right: 20px; left: auto; top: 24px; padding: 8px 14px; font-size: 10px; }
  .lang { padding: 2px; gap: 0; }
  .lang button { font-size: 10.5px; padding: 5px 9px; letter-spacing: 0; }
  .header-right { gap: 10px; }
  .header-right .btn-primary { padding: 12px 18px; font-size: 12.5px; min-height: 42px; }
  .burger { width: 42px; height: 42px; }
}
@media (max-width: 430px) {
  .shell { padding: 0 16px; }
  .hero-shell { padding: 88px 0 36px; gap: 26px; }
  .hero-copy { padding: 0 16px; }
  .hero-copy h1 { line-height: .94; }
  .hero-sub { margin: 26px 0 26px; }
  .hero-disclaimer { padding-top: 24px; font-size: 11px; }
  .hero-art-bar { width: 44px; height: 2px; top: 18px; left: 18px; }
  .aud-card { padding: 24px 22px 20px; }
  .aud-card h3 { font-size: 21px; }
  .aud-card-top { margin-bottom: 16px; }
  .svc-body { padding: 28px 20px; }
  .svc-body h3 { font-size: 28px; }
  .svc-features li { font-size: 14px; }
  .svc-opts .price-item .p { font-size: 24px; }
  .book-form { padding: 24px 18px; }
  .book-copy .title { font-size: 32px; }
  .faq-q { font-size: 20px; padding: 20px 0; }
  .faq-q .icon { width: 28px; height: 28px; margin-left: 12px; }
  .faq-a-inner { padding-right: 0; font-size: 14.5px; }
  .spec-body h2 { font-size: 30px; }
  .spec-body .bio { font-size: 15px; line-height: 1.5; }
  .site-footer { padding: 56px 0 24px; }
  .foot-grid { padding-bottom: 36px; }
  .header-right { gap: 8px; }
  .header-right .btn-primary { display: none; }
  .lang button { padding: 4px 7px; font-size: 10px; }
  .v2-logo .name, .logo .name { font-size: 19px; }
}
@media (max-width: 360px) {
  .lang button { padding: 4px 6px; font-size: 9.5px; letter-spacing: 0; }
  .logo .name { font-size: 17px; }
  .header-right { gap: 6px; }
  .burger { width: 32px; height: 32px; }
  .hero-copy h1 { font-size: 56px; }
}

/* ---------- utility ---------- */
.text-warm { color: var(--aqua-700); font-style: italic; }

/* FAQ toggle icons: 44px minimum touch target on mobile/tablet (a11y). */
@media (max-width: 768px) {
  .faq-q .icon {
    width: 44px; height: 44px;
    min-width: 44px; min-height: 44px;
  }
}
