/* ============================================================
   YogaRome — design tokens & base (single source: DESIGN.md)
   ============================================================ */

:root {
  /* Brand — Pantone blue family (coated web approximations) */
  --brand-100: #9ADBE8; /* PMS 304 */
  --brand-150: #99D6EA; /* PMS 2975 */
  --brand-300: #59CBE8; /* PMS 305 */
  --brand-350: #5BC2E7; /* PMS 2985 */
  --brand-500: #00B5E2; /* PMS 306 */
  --brand-550: #00A9E0; /* PMS 2995 */
  --brand-600: #0085CA; /* Process Blue */
  --brand-700: #0077C8; /* PMS 3005 — the single CTA blue */
  --brand-900: #0A3A5C; /* derived dark (Decision Log #6) */

  /* Neutrals — warm editorial paper (Decision Log #19: beige/brown vs blue) */
  --canvas: #FAF6EE;
  --surface: #F1EADC;
  --surface-2: #E6DCC8;
  --ink: #241E15;
  --ink-muted: #85755E;
  --earth: #6E4F32;      /* deep brown — eyebrows, captions, editorial accents */
  --sand: #E4D2B2;       /* sand wash — warm highlight surfaces */
  --paper: #FFFFFF;
  --hairline: rgba(36, 30, 21, 0.16);
  --hairline-light: rgba(255, 255, 255, 0.18);

  --font-display: 'Anton', 'Arial Narrow', sans-serif; /* Caldera pass v2 — Log #22 */
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'Roboto Mono', ui-monospace, monospace;

  --radius-pill: 9999px;
  --radius-card: 40px; /* Caldera elegance pass — Decision Log #17 */
  --radius-btn: 40px;  /* Caldera secondary-button radius — Log #22 */
  --radius-img: 16px;
  --dotted: 1.5px dotted rgba(36, 30, 21, 0.30);
  --dotted-light: 1.5px dotted rgba(255, 255, 255, 0.28);

  --max-w: 1200px;
  --section-gap: 80px;

  --ease: 0.2s ease;
  --cta-glow: none; /* Caldera pass v2: fully shadowless — Log #23 */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- Type voices ---- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 10.5vw, 150px);
  line-height: 0.94;
  letter-spacing: 0.02em; /* positive tracking — Caldera rule */
  text-transform: uppercase;
}
.heading {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.heading-sm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.display em, .heading em, .heading-sm em { font-style: normal; } /* Anton has no italic — accent by colour only */
.subheading { font-size: 19px; line-height: 1.4; }
.body-sm { font-size: 14px; line-height: 1.45; }
.mono-label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.muted { color: var(--ink-muted); }

/* ---- Pills & buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-pill);
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.btn-primary {
  background: var(--brand-700);
  color: var(--paper);
  box-shadow: var(--cta-glow);
}
.btn-primary:hover { background: var(--brand-550); }
.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-btn);
  color: var(--ink);
  padding: 16px 24px;
}
.btn-ghost:hover { background: var(--surface); }
.btn-ghost-light {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-btn);
  color: var(--paper);
  padding: 16px 24px;
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.12); }
.btn-wash {
  background: var(--brand-100);
  color: var(--ink);
}
.btn-wash:hover { background: var(--brand-300); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; }

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  background: var(--brand-100);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   Floating pill nav
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(var(--max-w), calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 24px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.nav-logo em { font-style: normal; color: var(--brand-700); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--ease);
}
.nav-links a:hover { background: var(--surface-2); }
.nav-right { display: flex; align-items: center; gap: 8px; }

.lang-toggle {
  display: flex;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.lang-toggle button {
  border: none;
  background: transparent;
  padding: 8px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  transition: background var(--ease), color var(--ease);
}
.lang-toggle button.active { background: var(--ink); color: var(--paper); }

.nav-book {
  background: var(--brand-700);
  color: var(--paper) !important;
  box-shadow: var(--cta-glow);
  padding: 11px 22px !important;
  font-weight: 500;
}
.nav-book:hover { background: var(--brand-550) !important; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  padding: 8px 12px;
  color: var(--ink);
}

/* ============================================================
   Hero — cinematic photographic (Giga)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: heroFade 2s ease-out both;
}
@keyframes heroFade { from { opacity: 0; } to { opacity: 1; } }
/* Slow cinematic Ken Burns — the hero breathes (Decision Log #21) */
@media (prefers-reduced-motion: no-preference) {
  .hero-photo {
    animation: heroFade 2s ease-out both, heroZoom 28s ease-in-out infinite alternate;
    will-change: transform;
  }
  @keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.07); } }
}
.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 58, 92, 0) 40%,
    rgba(10, 58, 92, 0.55) 78%,
    rgba(10, 58, 92, 0.88) 100%
  );
}
/* Caldera halftone signature — brand-blue dot grid rising from the veil */
.hero-veil::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(52vw, 640px);
  height: 46%;
  background-image: radial-gradient(rgba(89, 203, 232, 0.55) 1.6px, transparent 1.6px);
  background-size: 13px 13px;
  -webkit-mask-image: radial-gradient(ellipse at bottom right, #000 0%, transparent 68%);
  mask-image: radial-gradient(ellipse at bottom right, #000 0%, transparent 68%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 72px;
  color: var(--paper);
}
.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid var(--hairline-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--paper);
  margin-bottom: 24px;
}
.glass-badge .dot { color: var(--brand-300); }
.hero h1 { max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--brand-300); }
.hero .lede {
  margin-top: 20px;
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: var(--section-gap) 0; }
.section-head { max-width: 60ch; margin-bottom: 48px; }
.section-head .mono-label { display: block; color: var(--earth); margin-bottom: 16px; }
.section-head h2 em { font-style: normal; color: var(--brand-600); }
.section-head .lede { margin-top: 14px; color: var(--ink-muted); max-width: 52ch; }

/* ---- Schedule index rows (TWOMUCH) ---- */
.sched-week-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}
.sched-rows { border-top: var(--dotted); }
.sched-row {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 26px 12px;
  border-bottom: var(--dotted);
  transition: background var(--ease);
}
.sched-row:hover { border-radius: var(--radius-img); }
.sched-row:hover { background: var(--surface); }
.sched-when .day { display: block; color: var(--ink-muted); }
.sched-when .time {
  font-family: var(--font-mono);
  font-size: 20px;
  margin-top: 2px;
}
.sched-what { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.sched-right { display: flex; align-items: center; gap: 18px; }
.spots { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.spots.low { color: var(--brand-600); }
.sched-row .btn { padding: 11px 22px; }
.sched-empty {
  padding: 56px 8px;
  border-bottom: var(--dotted);
  text-align: center;
  color: var(--ink-muted);
}
.sched-note { margin-top: 16px; }

/* ---- Philosophy strip ---- */
.philo { background: var(--brand-150); text-align: center; }
.philo h2 { max-width: 22ch; margin: 0 auto; }
.philo h2 em { font-style: normal; color: var(--brand-700); }
.philo-photos {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}
.philo-photos img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-img); }
.philo-photos figure { position: relative; margin: 0; }
.philo-photos figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: var(--paper);
  text-shadow: 0 1px 8px rgba(10, 58, 92, 0.5);
}

/* ---- About Anastasia (dark band) ---- */
.about { background: var(--brand-900); color: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-photo img { width: 100%; border-radius: var(--radius-img); }
.about .mono-label { color: var(--brand-300); display: block; margin-bottom: 18px; }
.about h2 em { font-style: normal; color: var(--brand-300); }
.about .bio {
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  max-width: 50ch;
}
.about .links { margin-top: 20px; display: flex; gap: 18px; flex-wrap: wrap; }
.about .links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-300);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease);
}
.about .links a:hover { border-color: var(--brand-300); }
.stat-cards {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat-card {
  border-radius: var(--radius-card);
  padding: 40px 32px;
  background: var(--brand-600);
  color: var(--paper);
  display: flex;
  flex-direction: column-reverse; /* Caldera order: label above the metric */
  gap: 12px;
}
.stat-card:nth-child(2) { background: var(--brand-700); }
.stat-card:nth-child(3) { background: var(--brand-600); }
.stat-card .n {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.stat-card .l {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

/* ---- Pricing ---- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.price-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.price-card.highlight { background: var(--brand-100); }
.price-card .plan { display: block; color: var(--ink-muted); margin-bottom: 10px; }
.price-card.highlight .plan { color: var(--brand-900); }
.price-card .amount { font-family: var(--font-display); font-weight: 400; font-size: 72px; line-height: 1; letter-spacing: 0.02em; }
.price-card .amount small { font-size: 18px; font-weight: 400; }
.price-card .desc { margin-top: 10px; color: var(--ink-muted); font-size: 14px; line-height: 1.45; flex: 1; }
.price-card.highlight .desc { color: rgba(11, 11, 10, 0.65); }
.price-note { margin-top: 20px; color: var(--ink-muted); }

/* ---- Contact / newsletter ---- */
.contact { background: var(--surface); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
/* Newsletter as a Caldera-style card with a halftone-dot corner in brand blue */
.contact-grid > div:nth-child(2) {
  position: relative;
  overflow: hidden;
  background: var(--canvas);
  border-radius: var(--radius-card);
  padding: 40px;
}
.contact-grid > div:nth-child(2)::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  background-image: radial-gradient(rgba(0, 133, 202, 0.35) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  -webkit-mask-image: radial-gradient(circle at top right, #000 0%, transparent 70%);
  mask-image: radial-gradient(circle at top right, #000 0%, transparent 70%);
  pointer-events: none;
}
.contact h2 em { font-style: normal; color: var(--brand-600); }
.contact-ways { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.contact-ways .btn-ghost { border-color: var(--hairline); color: var(--brand-600); }
.news-form { display: flex; gap: 10px; margin-top: 24px; }
.news-form input {
  flex: 1;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  background: var(--paper);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border var(--ease);
}
.news-form input:focus { outline: none; border: 2px solid var(--brand-500); padding: 13px 19px; }
.news-note { margin-top: 14px; min-height: 20px; color: var(--ink-muted); }

/* ---- Footer ---- */
.footer { background: var(--brand-900); color: var(--paper); padding: 72px 0 40px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 48px;
  border-bottom: var(--dotted-light);
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 96px);
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}
.footer-brand em { font-style: normal; color: var(--brand-300); }
.footer-col h4 { margin-bottom: 16px; color: var(--brand-300); font-weight: 400; }
.footer-col a {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 10px;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--brand-300); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a:hover { color: var(--brand-300); }

/* ============================================================
   Booking modal
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 58, 92, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--canvas);
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: var(--radius-card);
  padding: 40px;
}
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.modal-head .mono-label { display: block; color: var(--ink-muted); margin-bottom: 8px; }
.modal-close {
  background: none;
  border: none;
  font-size: 26px;
  line-height: 1;
  color: var(--ink);
  padding: 0 4px;
  transition: color var(--ease);
}
.modal-close:hover { color: var(--brand-600); }
.modal-class {
  margin-top: 20px;
  background: var(--surface);
  border-radius: var(--radius-img);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.modal-class .when { font-family: var(--font-mono); font-size: 13px; }
.field { margin-top: 16px; }
.field label { display: block; margin-bottom: 8px; color: var(--ink-muted); }
.field input, .field select {
  width: 100%;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  background: var(--paper);
  padding: 13px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  transition: border var(--ease);
  appearance: none;
}
.field input:focus, .field select:focus { outline: none; border: 2px solid var(--brand-500); padding: 12px 19px; }
.form-err { margin-top: 12px; min-height: 20px; font-size: 14px; color: #B4502A; }
.modal-foot { margin-top: 20px; display: flex; justify-content: flex-end; }
.modal-success { text-align: center; padding: 24px 0 8px; }
.modal-success .sun {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--brand-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}
.modal-success h4 { font-family: var(--font-display); font-weight: 400; font-size: 28px; letter-spacing: 0.02em; text-transform: uppercase; }
.modal-success p { margin-top: 12px; color: var(--ink-muted); max-width: 38ch; margin-inline: auto; }
.hidden { display: none !important; }

/* ============================================================
   Editorial elements & motion (Home/New Form donor — Log #18-21)
   ============================================================ */

/* Breathing sun logomark */
.logo-sun {
  width: 22px;
  height: 22px;
  flex: none;
  display: inline-block;
  vertical-align: -3px;
  margin-right: 8px;
}
@media (prefers-reduced-motion: no-preference) {
  .logo-sun .core { animation: sunBreathe 7s ease-in-out infinite; transform-origin: center; }
  @keyframes sunBreathe {
    0%, 100% { transform: scale(1); opacity: 0.85; }
    50% { transform: scale(1.18); opacity: 1; }
  }
}

/* Inline photo tiles floated inside display headlines */
.inline-tile {
  display: inline-block;
  width: 2em;
  height: 1.15em;
  object-fit: cover;
  border-radius: 14px;
  vertical-align: -0.18em;
  margin: 0 0.08em;
}

/* Scroll reveals */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s ease, transform 0.9s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* Full-bleed closing accent band (New Form signature, in brand blue) */
.accent-band {
  position: relative;
  background: linear-gradient(135deg, var(--brand-600), var(--brand-700) 60%, var(--brand-900));
  color: var(--paper);
  padding: 110px 0 90px;
  overflow: hidden;
}
/* Halftone overlay — the Caldera signature, in brand blue */
.accent-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(154, 219, 232, 0.4) 1.8px, transparent 1.8px);
  background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 62%);
  mask-image: radial-gradient(ellipse at top right, #000 0%, transparent 62%);
  pointer-events: none;
}
.accent-band .wrap { position: relative; }
.accent-band .wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(64px, 14.5vw, 189px); /* Caldera display ceiling */
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}
.accent-band .wordmark em { font-style: normal; color: var(--brand-100); }
.accent-band .strap {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.75);
}

/* Warm-contrast touches */
.price-card.highlight { background: var(--sand); }
.price-card.highlight .plan { color: var(--earth); }
.price-card.highlight .desc { color: rgba(36, 30, 21, 0.65); }
.philo { background: var(--brand-150); }
.sched-when .day { color: var(--earth); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .price-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .philo-photos { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { padding-left: 18px; }
  .nav-links { display: none; }
  .nav.menu-open .nav-links {
    display: flex;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--hairline);
    border-radius: var(--radius-card);
    padding: 12px;
  }
  .nav-burger { display: block; }
  .sched-row { grid-template-columns: 1fr; gap: 10px; padding: 18px 8px; }
  .sched-right { justify-content: space-between; width: 100%; }
  .section { padding: 56px 0; }
  .hero-content { padding-top: 120px; padding-bottom: 48px; }
}

/* ============================================================
   Broadsheet pass — Home/New Form structure only (Log #24)
   Owner: keep Pantone blues + warm neutrals + colour photos.
   Serif display for hero + wordmarks; Anton stays on headings.
   ============================================================ */
:root {
  --font-display-serif: 'Fraunces', Georgia, serif;
  --cta-shadow: 1px 8px 20px 0 rgba(0, 119, 200, 0.35); /* blue-tinted, never gray */
}

.display {
  font-family: var(--font-display-serif);
  font-weight: 600;
  text-transform: none;
  font-size: clamp(52px, 9.5vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.04em;
}
.display em { font-style: italic; }

.nav-logo, .footer-brand, .accent-band .wordmark {
  font-family: var(--font-display-serif);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.02em;
}
.nav-logo em, .footer-brand em, .accent-band .wordmark em { font-style: italic; }

/* Closing band must stay a full-bleed brand-blue signature (Log #18) */
.accent-band {
  background: var(--brand-700);
  color: var(--paper);
  padding: 110px 0 90px;
  overflow: hidden;
}

/* Sharp editorial action buttons; elevation lives only on the primary */
.btn {
  border-radius: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn-primary, .btn-wash { border-radius: 5px; }
.btn-primary { box-shadow: var(--cta-shadow); }
.nav-book { border-radius: 5px; box-shadow: var(--cta-shadow); }

/* Underlined serif links (the Times pattern from the reference) */
.footer-col a, .about .links a {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  letter-spacing: 0;
  text-transform: none;
  border-bottom: none;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.footer-col a:hover, .about .links a:hover { text-decoration-thickness: 2px; }

/* ============================================================
   Philosophy = rotating yoga quotes stage (owner request, Log #26)
   ============================================================ */
.philo-inner { position: relative; text-align: center; padding: 30px 0 20px; }
.philo-eyebrow { display: block; color: var(--earth); margin-bottom: 30px; }

.quote-stage { margin: 0 auto; max-width: 780px; min-height: 5.2em; }
.quote-text {
  font-family: var(--font-display-serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(28px, 4.4vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.quote-attr { margin-top: 24px; color: var(--earth); transition: opacity 0.35s ease; }
.quote-stage.fading .quote-text, .quote-stage.fading .quote-attr {
  opacity: 0;
  transform: translateY(10px);
}

.quote-dots { margin-top: 30px; display: flex; justify-content: center; gap: 10px; }
.quote-dots button {
  width: 10px; height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(36, 30, 21, 0.22);
  padding: 0;
  transition: background var(--ease), transform var(--ease);
}
.quote-dots button.active { background: var(--brand-700); transform: scale(1.25); }

/* Photos shrink to small tilted editorial inserts framing the quote */
.philo-tile {
  position: absolute;
  width: clamp(130px, 16vw, 210px);
  border-radius: var(--radius-img);
  border: 4px solid var(--paper);
}
.philo-tile.tile-a { top: -6px; right: 1%; transform: rotate(2.5deg); }
.philo-tile.tile-b { bottom: -2px; left: 1%; transform: rotate(-3deg); }

@media (max-width: 920px) {
  .philo-tile { position: static; display: inline-block; margin: 26px 8px 0; width: 34vw; max-width: 190px; }
  .philo-tile.tile-a { transform: rotate(2deg); }
  .philo-tile.tile-b { transform: rotate(-2.5deg); }
  .quote-stage { min-height: 0; }
}

/* ============================================================
   WhatsApp glyph on wa.me links (CSS mask — survives i18n text swaps)
   ============================================================ */
.wa-link { display: inline-flex; align-items: center; gap: 9px; }
.wa-link::before {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.885-9.885 9.885m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.297-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.885-9.885 9.885m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") center / contain no-repeat;
}
/* footer variant: it's a text link, keep the icon smaller and aligned */
.footer-col a.wa-link::before { width: 15px; height: 15px; }

/* ============================================================
   Pricing v2 — 4 tiers, 2×2 grid, badge + strikethrough (Log #28)
   ============================================================ */
.price-grid { grid-template-columns: repeat(2, 1fr); }
.price-card { position: relative; }
.price-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--ink);
  color: var(--canvas);
  font-size: 11px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
}
.price-card .amount .was {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink-muted);
  text-decoration-thickness: 2px;
  margin-left: 12px;
  letter-spacing: 0;
  vertical-align: 14%;
}
.price-card .price-cta { margin-top: 22px; }
@media (max-width: 760px) {
  .price-grid { grid-template-columns: 1fr; }
}
