/* ============================================
   RUTE STUDIO — v2
   Photo-led · cinematic · deep forest + cream
============================================ */

:root {
  /* Palette */
  --cream:       #F4EFE5;  /* page warm white */
  --cream-soft:  #FBF8F1;  /* card surface */
  --ink:         #15201A;  /* near-black with green */
  --forest:      #243A2C;  /* deep brand green */
  --forest-deep: #182A1F;
  --sage:        #97A48A;  /* desaturated sage */
  --rose:        #DC7F7C;  /* confident rose pink accent */
  --rose-deep:   #BD6863;
  --sand:        #D9CFBA;
  --muted:       #5C5F58;
  --line:        rgba(21, 32, 26, 0.12);
  --line-soft:   rgba(21, 32, 26, 0.06);

  /* Type */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-display: 'Inter Tight', 'Inter', sans-serif;

  /* Spacing */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 96px; --s-10: 128px; --s-11: 160px;

  --container: 1360px;
  --radius: 4px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 0.45s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: opacity .35s var(--ease), color .35s var(--ease); }
a:hover { opacity: 0.72; }
::selection { background: var(--forest); color: var(--cream); }

/* ---------- Type ---------- */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0;
  color: var(--ink);
}
.h-display, h1 {
  font-size: clamp(48px, 6.5vw, 116px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.95;
}
h2 { font-size: clamp(32px, 4vw, 64px); font-weight: 500; letter-spacing: -0.035em; }
h3 { font-size: clamp(22px, 2vw, 28px); font-weight: 500; letter-spacing: -0.02em; }
h4 { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; }
p { margin: 0 0 1em; }
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 52ch;
  font-weight: 400;
}

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-6); }
@media (max-width: 720px) { .container { padding: 0 var(--s-5); } }
section { padding: var(--s-9) 0; }
@media (max-width: 720px) { section { padding: var(--s-8) 0; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-weight: 500; font-size: 14px;
  letter-spacing: 0.01em;
  transition: all .4s var(--ease);
  white-space: nowrap;
}
.btn .arrow { display: inline-block; transition: transform .4s var(--ease); }
.btn:hover { opacity: 1; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary { background: var(--ink); color: var(--cream); }
.btn-primary:hover { background: var(--forest); }

.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: var(--cream-soft); }

.btn-secondary {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(21,32,26,0.3);
}
.btn-secondary:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.btn-light-secondary {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(244,239,229,0.5);
}
.btn-light-secondary:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid currentColor;
}
.btn-text .arrow { transition: transform .4s var(--ease); }
.btn-text:hover .arrow { transform: translateX(3px); }

/* ---------- Nav (overlays hero) ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease);
}
.nav.scrolled {
  background: rgba(244, 239, 229, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav-inner {
  max-width: var(--container); margin: 0 auto;
  padding: 0 var(--s-6);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
}
@media (max-width: 720px) { .nav-inner { padding: 0 var(--s-5); } }

.brand {
  display: flex; align-items: center;
  height: 44px;
  flex-shrink: 0;
  transition: opacity .4s var(--ease);
}
.brand img {
  height: 100%; width: auto; display: block;
  /* logo is dark — invert to white while over the dark hero, remove when scrolled */
  filter: brightness(0) invert(1);
  transition: filter .4s var(--ease);
}
.nav.scrolled .brand img { filter: none; }
@media (max-width: 720px) { .brand { height: 36px; } }

.nav-links {
  display: flex; gap: var(--s-6); list-style: none;
  margin: 0; padding: 0; align-items: center;
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 6px 0;
  transition: color .4s var(--ease);
}
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor; transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover { opacity: 1; }

.nav-right { display: flex; align-items: center; gap: var(--s-4); }

/* ---------- Studio picker (dropdown) ---------- */
.studio-picker {
  position: relative;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.studio-picker-trigger {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(244,239,229,0.35);
  background: rgba(244,239,229,0.1);
  color: var(--cream);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: all .35s var(--ease);
  cursor: pointer;
}
.nav.scrolled .studio-picker-trigger {
  border-color: var(--line);
  background: rgba(21,32,26,0.04);
  color: var(--ink);
}
.studio-picker-trigger:hover { opacity: 1; background: rgba(244,239,229,0.18); }
.nav.scrolled .studio-picker-trigger:hover { background: rgba(21,32,26,0.06); }
.studio-picker-trigger .label {
  opacity: 0.7; letter-spacing: 0.1em;
}
.studio-picker-trigger .value {
  font-weight: 500; letter-spacing: 0.04em;
}
.studio-picker-trigger .chev {
  width: 10px; height: 6px;
  transition: transform .35s var(--ease);
}
.studio-picker[data-open="true"] .studio-picker-trigger .chev { transform: rotate(180deg); }

.studio-picker-panel {
  position: absolute;
  top: calc(100% + 10px); right: 0;
  min-width: 320px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(21,32,26,0.18);
  padding: 8px;
  opacity: 0; pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  z-index: 150;
}
.studio-picker[data-open="true"] .studio-picker-panel {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.studio-option {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--ink);
  text-transform: none; letter-spacing: 0;
  transition: background .25s var(--ease);
  cursor: pointer;
}
.studio-option:hover { background: var(--cream); opacity: 1; }
.studio-option .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--forest); flex-shrink: 0;
}
.studio-option .body {
  display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.studio-option .body strong {
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.01em;
}
.studio-option .body span {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.studio-option .check {
  width: 16px; height: 16px;
  opacity: 0;
}
.studio-option.active .check { opacity: 1; color: var(--forest); }
.studio-option.soon {
  opacity: 0.45; cursor: not-allowed; pointer-events: none;
}
.studio-option.soon .dot { background: var(--muted); }
/* Soon studios that ARE clickable (link to a teaser page like marlow.html)
   — full opacity, real cursor, rose dot to signal "new". */
a.studio-option.soon {
  opacity: 1; cursor: pointer; pointer-events: auto;
}
a.studio-option.soon .dot { background: var(--rose); }
a.studio-option.soon .body span { color: var(--rose-deep); }
a.studio-option.soon:hover { background: var(--cream); }

.studio-picker-foot {
  margin-top: 4px; padding: 12px 14px 6px;
  border-top: 1px solid var(--line);
  font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}

.nav-cta {
  padding: 10px 20px;
  background: var(--cream); color: var(--ink);
  border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nav.scrolled .nav-cta { background: var(--ink); color: var(--cream); }
.nav-cta:hover { opacity: 1; transform: translateX(0); }

.menu-toggle { display: none; }
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .menu-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--radius-pill);
    border: 1px solid rgba(244,239,229,0.4);
    color: var(--cream);
  }
  .nav.scrolled .menu-toggle { color: var(--ink); border-color: var(--line); }
}
@media (max-width: 720px) {
  .nav-cta, .studio-picker { display: none; }
}

.nav-mobile {
  position: fixed; inset: 0; background: var(--ink); color: var(--cream); z-index: 200;
  display: flex; flex-direction: column;
  padding: 100px var(--s-5) var(--s-7);
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
  overflow-y: auto;
}
.nav-mobile.open { transform: translateY(0); }
.nav-mobile > a {
  font-family: var(--font-display); font-size: 36px; font-weight: 500;
  padding: var(--s-3) 0; border-bottom: 1px solid rgba(244,239,229,0.15);
  letter-spacing: -0.02em;
  color: var(--cream);
}
/* the bottom Book button is also an <a> inside .nav-mobile — restore button styles */
.nav-mobile > a.btn {
  font-family: var(--font); font-size: 14px;
  padding: 14px 24px; border-bottom: 0;
  letter-spacing: 0.01em;
}
.nav-mobile > a.btn-cream { color: var(--ink); }
.nav-mobile > a.btn-cream:hover { color: var(--ink); }
.nav-mobile .nav-mobile-close {
  position: absolute; top: 18px; right: var(--s-5);
  width: 40px; height: 40px; border-radius: var(--radius-pill);
  border: 1px solid rgba(244,239,229,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
}
.nav-mobile-studios {
  margin-top: var(--s-6);
  border-top: 1px solid rgba(244,239,229,0.15);
  padding-top: var(--s-5);
}
.nav-mobile-studios .label {
  display: block; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(244,239,229,0.5);
  margin-bottom: var(--s-3);
}
.nav-mobile-studios a {
  font-size: 18px; padding: var(--s-3) 0;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(244,239,229,0.1);
}
.nav-mobile-studios a.active::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--sage);
}
.nav-mobile-studios a.soon {
  opacity: 0.45; pointer-events: none;
}
/* Linked soon-studios (e.g. Marlow teaser page) stay fully clickable */
.nav-mobile-studios a.soon[href]:not([href="#"]) {
  opacity: 1; pointer-events: auto; color: var(--rose);
}
.nav-mobile .btn { margin-top: var(--s-5); align-self: flex-start; }

/* ===========================================
   HERO — fullscreen photo
=========================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  color: var(--cream);
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  filter: brightness(0.85);
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 88% 18%, rgba(220,127,124,0.45) 0%, transparent 42%),
    linear-gradient(180deg, rgba(21,32,26,0.55) 0%, rgba(21,32,26,0.1) 35%, rgba(21,32,26,0.7) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6) var(--s-9);
  display: flex; flex-direction: column; justify-content: flex-end;
}
@media (max-width: 720px) { .hero-inner { padding: 0 var(--s-5) var(--s-8); } }
.hero-eyebrow {
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(244,239,229,0.85);
  font-weight: 500; margin-bottom: var(--s-5);
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(56px, 8.5vw, 152px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.92;
  max-width: 16ch;
  margin-bottom: var(--s-6);
}
.hero h1 em {
  font-style: italic;
  color: var(--rose);
  font-weight: 400;
}
.hero-meta-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: var(--s-6); flex-wrap: wrap;
  border-top: 1px solid rgba(244,239,229,0.25);
  padding-top: var(--s-5);
  margin-top: var(--s-6);
}
.hero-meta-row p {
  max-width: 38ch;
  color: rgba(244,239,229,0.85);
  font-size: 16px; line-height: 1.55;
  margin: 0;
}
.hero-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  left: 50%; bottom: var(--s-6);
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244,239,229,0.7);
}
.hero-scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(244,239,229,0.7), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  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; }
}

/* ===========================================
   Marquee — animated class names
=========================================== */
.marquee {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  white-space: nowrap;
  background: var(--cream);
}
.marquee-track {
  display: inline-flex; gap: var(--s-7);
  animation: marquee 80s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: baseline; gap: var(--s-4);
  font-family: var(--font-display);
  color: var(--ink);
}
.marquee-item .quote {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.02em;
}
.marquee-item .author {
  font-family: var(--font);
  font-size: clamp(13px, 1.1vw, 15px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 500;
  white-space: nowrap;
  font-style: normal;
}
.marquee-item .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  align-self: center;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===========================================
   Google Reviews CTA
=========================================== */
.reviews-cta {
  background: var(--cream);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
}
.reviews-cta .container {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-4); flex-wrap: wrap;
  text-align: center;
}
.reviews-cta-label {
  font-size: 12px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500;
}
.reviews-cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid var(--ink);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.reviews-cta-link:hover {
  color: var(--rose-deep);
  border-color: var(--rose-deep);
  opacity: 1;
}
.reviews-cta-link svg {
  transition: transform .3s var(--ease);
}
.reviews-cta-link:hover svg {
  transform: translate(2px, -2px);
}

/* ===========================================
   Strip — class names in a clean row
=========================================== */
.class-strip {
  padding: var(--s-6) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.class-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-6);
  display: flex; align-items: center;
  gap: var(--s-6) var(--s-7);
  flex-wrap: wrap;
}
.class-strip-label {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500;
}
.class-strip .item {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 500; letter-spacing: -0.01em;
  color: var(--ink);
}
.class-strip .sep {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--rose);
}
.class-strip .item:first-of-type { color: var(--ink); }

/* ===========================================
   About — editorial pair
=========================================== */
.about {
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  align-items: start;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: var(--s-7); } }
.about-headline {
  font-size: clamp(36px, 5vw, 80px);
  font-weight: 500; letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 0;
}
.about-headline em {
  font-style: italic; color: var(--rose); font-weight: 400;
}
.about-body p {
  font-size: 17px; line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.2em;
  max-width: 50ch;
}
.about-body .btn { margin-top: var(--s-3); }

/* ===========================================
   Studios — split panel
=========================================== */
.studio-split {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  background: var(--ink);
}
@media (max-width: 1080px) { .studio-split { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .studio-split { grid-template-columns: 1fr; } }
.studio-panel {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--cream);
  display: flex; align-items: flex-end;
}
.studio-panel img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.studio-panel:hover img { transform: scale(1.04); }
.studio-panel::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,32,26,0.78) 0%, rgba(21,32,26,0.15) 50%, transparent 100%);
}
.studio-panel-body {
  position: relative; z-index: 2;
  padding: var(--s-7);
  width: 100%;
  display: flex; flex-direction: column; gap: var(--s-3);
}
.studio-panel-body .eyebrow { color: rgba(244,239,229,0.75); }
.studio-panel-body h2 {
  color: var(--cream);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500; letter-spacing: -0.035em;
}
.studio-panel-body p {
  color: rgba(244,239,229,0.85);
  max-width: 36ch;
  margin: 0;
}
.studio-panel-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: var(--s-4);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(244,239,229,0.6);
  align-self: flex-start;
}

/* ===========================================
   Classes grid — photo-led
=========================================== */
.classes-section { padding: var(--s-10) 0; }
@media (max-width: 720px) { .classes-section { padding: var(--s-8) 0; } }

.classes-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-7); align-items: end;
  margin-bottom: var(--s-8);
}
@media (max-width: 720px) { .classes-head { grid-template-columns: 1fr; } }
.classes-head h2 { max-width: 16ch; }

.classes-grid-v2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--s-4);
}
@media (max-width: 880px) { .classes-grid-v2 { grid-template-columns: 1fr; gap: var(--s-5); } }

.class-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--cream);
  display: flex; align-items: flex-end;
  min-height: 520px;
}
.class-tile.lg { grid-column: span 7; }
.class-tile.md { grid-column: span 5; min-height: 520px; }
.class-tile.sm { grid-column: span 4; min-height: 420px; }
@media (max-width: 880px) {
  .class-tile.lg, .class-tile.md, .class-tile.sm { grid-column: span 1; min-height: 360px; }
}

.class-tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.class-tile:hover img { transform: scale(1.04); }
.class-tile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(21,32,26,0.78) 0%, rgba(21,32,26,0.15) 55%, transparent 100%);
}
.class-tile-body {
  position: relative; z-index: 2;
  padding: var(--s-6);
  width: 100%;
}
.class-tile .ix-num {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244,239,229,0.75); margin-bottom: var(--s-3); display: block;
  font-weight: 500;
}
.class-tile h3 {
  color: var(--cream);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 500; letter-spacing: -0.035em;
  margin-bottom: var(--s-2);
}
.class-tile p {
  color: rgba(244,239,229,0.85);
  font-size: 15px; line-height: 1.5;
  max-width: 42ch;
  margin: 0 0 var(--s-4);
}
.class-tile .chips {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.class-tile .chip {
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  color: var(--cream);
  padding: 4px 10px;
  border: 1px solid rgba(244,239,229,0.45);
  border-radius: var(--radius-pill);
}

/* ===========================================
   Feature band — fullbleed photo
=========================================== */
.feature-band {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  color: var(--cream);
  display: flex; align-items: center;
}
.feature-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.feature-band::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(21,32,26,0.85) 0%, rgba(21,32,26,0.55) 45%, rgba(21,32,26,0.15) 90%);
}
.feature-band-inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: var(--s-9) var(--s-6);
}
.feature-band h2 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 96px);
  font-weight: 500; letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: var(--s-5);
  max-width: 18ch;
}
.feature-band p {
  color: rgba(244,239,229,0.85);
  max-width: 50ch;
  font-size: 17px; line-height: 1.55;
}
.feature-band .feature-actions {
  margin-top: var(--s-6);
  display: flex; gap: var(--s-3); flex-wrap: wrap;
}

/* ===========================================
   Team — single column edit
=========================================== */
.team-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
@media (max-width: 880px) { .team-strip { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.team-card .photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--sand);
}
.team-card .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.team-card:hover .photo img { transform: scale(1.06); }
.team-card .info { padding: var(--s-4) 0 var(--s-2); }
.team-card h4 {
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
}
.team-card .role {
  font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
  margin-top: 4px; display: block;
}

/* ===========================================
   Quote — large editorial
=========================================== */
.quote-block {
  padding: var(--s-10) var(--s-6);
  text-align: center;
  max-width: 1000px; margin: 0 auto;
  position: relative;
}
.quote-block::before {
  content: '"';
  font-family: var(--font-display);
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  font-size: 220px; font-weight: 500;
  line-height: 1; color: var(--rose);
  opacity: 0.55;
  font-style: italic;
  pointer-events: none;
  z-index: 0;
}
.quote-block blockquote {
  position: relative; z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 52px);
  font-weight: 500; letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 var(--s-5);
  color: var(--ink);
}
.quote-block .cite {
  font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  position: relative; z-index: 1;
}

/* ===========================================
   CTA — fullbleed dark
=========================================== */
.cta-band {
  background: var(--forest);
  color: var(--cream);
  padding: var(--s-10) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band.cta-band--rose {
  background: var(--rose);
  color: var(--ink);
}
.cta-band.cta-band--rose h2 { color: var(--ink); }
.cta-band.cta-band--rose p { color: rgba(21,32,26,0.72); }
.cta-band.cta-band--rose .hero-eyebrow { color: rgba(21,32,26,0.6) !important; }
.cta-band.cta-band--rose .btn-cream { background: var(--ink); color: var(--cream); }
.cta-band.cta-band--rose .btn-cream:hover { background: var(--forest-deep); }
.cta-band.cta-band--rose .btn-light-secondary {
  border-color: rgba(21,32,26,0.4); color: var(--ink);
}
.cta-band.cta-band--rose .btn-light-secondary:hover {
  background: var(--ink); color: var(--cream); border-color: var(--ink);
}
.cta-band.cta-band--rose::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  filter: blur(40px);
  pointer-events: none;
}
.cta-band h2 {
  color: var(--cream);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500; letter-spacing: -0.04em;
  line-height: 0.96;
  max-width: 18ch;
  margin: 0 auto var(--s-6);
}
.cta-band p {
  color: rgba(244,239,229,0.78);
  max-width: 50ch; margin: 0 auto var(--s-6);
  font-size: 17px;
}
.cta-band .actions { display: inline-flex; gap: var(--s-3); flex-wrap: wrap; justify-content: center; }

/* ===========================================
   Newsletter signup band
=========================================== */
.newsletter-band {
  background: var(--sand);
  padding: var(--s-8) 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-6);
  align-items: center;
}
.newsletter-band h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500; letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.newsletter-band p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 380px;
}
.newsletter-form-row {
  display: flex;
  gap: var(--s-3);
}
.newsletter-form input[type="email"] {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(21,32,26,0.3);
  padding: 10px 2px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
}
.newsletter-form input[type="email"]::placeholder { color: var(--muted); }
.newsletter-form input[type="email"]:focus { outline: none; border-bottom-color: var(--ink); }
.newsletter-form .btn {
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}
.newsletter-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 14px; height: 14px;
  accent-color: var(--forest);
  flex-shrink: 0;
  cursor: pointer;
}
.newsletter-note {
  font-size: 12px;
  margin-top: 6px;
}
.newsletter-note.is-success { color: var(--forest); }
.newsletter-note.is-error { color: var(--rose); }
@media (max-width: 880px) {
  .newsletter-grid { grid-template-columns: 1fr; text-align: left; }
  .newsletter-form { min-width: 0; width: 100%; }
  .newsletter-form-row { flex-direction: column; }
  .newsletter-form-row .btn { width: 100%; justify-content: center; }
}

/* ===========================================
   Footer
=========================================== */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: var(--s-9) 0 var(--s-6);
}
footer .container {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: var(--s-6);
  align-items: start;
}
@media (max-width: 1080px) { footer .container { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 880px) { footer .container { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { footer .container { grid-template-columns: 1fr; } }
footer h4 {
  color: var(--cream);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  margin-bottom: var(--s-4);
}
footer ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
footer a { color: rgba(244,239,229,0.72); font-size: 14px; }
footer a:hover { color: var(--cream); opacity: 1; }
.foot-brand {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: var(--s-3);
}
.foot-tag {
  color: rgba(244,239,229,0.65);
  font-size: 14px;
  max-width: 28ch;
  margin-bottom: var(--s-5);
}
.foot-meta {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(244,239,229,0.12);
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.04em;
  color: rgba(244,239,229,0.45);
  flex-wrap: wrap; gap: var(--s-4);
}

/* ===========================================
   PAGE HERO — for inner pages
=========================================== */
.page-hero {
  padding: calc(80px + var(--s-9)) 0 var(--s-9);
  position: relative;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-8);
  align-items: end;
}
@media (max-width: 880px) { .page-hero-grid { grid-template-columns: 1fr; gap: var(--s-5); } }
.page-hero h1 {
  font-size: clamp(48px, 8vw, 132px);
  font-weight: 500; letter-spacing: -0.045em;
  line-height: 0.92;
  max-width: 14ch;
  margin-bottom: 0;
}
.page-hero h1 em {
  font-style: normal; color: var(--forest);
}
.page-hero .lede { margin: 0; }

/* ===========================================
   CLASS DETAIL — long list
=========================================== */
.class-rows { display: flex; flex-direction: column; }
.class-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: var(--s-7);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--line);
  align-items: center;
}
.class-row:last-child { border-bottom: 1px solid var(--line); }
.class-row:nth-child(even) { direction: rtl; }
.class-row:nth-child(even) > * { direction: ltr; }
@media (max-width: 880px) {
  .class-row { grid-template-columns: 1fr; gap: var(--s-5); padding: var(--s-6) 0; }
  .class-row:nth-child(even) { direction: ltr; }
}
.class-row-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
}
.class-row-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.class-row:hover .class-row-photo img { transform: scale(1.04); }
.class-row-photo .num {
  position: absolute; top: var(--s-4); left: var(--s-4);
  z-index: 2;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cream);
  background: rgba(21,32,26,0.6);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: var(--radius-pill);
}
.class-row-body { display: flex; flex-direction: column; gap: var(--s-3); }
.class-row-body h3 {
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 500; letter-spacing: -0.035em;
}
.class-row-body p {
  color: var(--muted); font-size: 16px; line-height: 1.55;
  margin: 0; max-width: 56ch;
}
.class-row-body .chips {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: var(--s-2);
}
.class-row-body .chip {
  font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; font-weight: 500;
  color: var(--muted);
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
}
.class-row-body .chip.henley { background: var(--forest); border-color: transparent; color: var(--cream); }
.class-row-body .chip.chalfont { background: var(--ink); border-color: transparent; color: var(--cream); }
.class-row-body .cta {
  margin-top: var(--s-3);
  align-self: flex-start;
}

/* ===========================================
   TEAM — compact grid (team page)
=========================================== */
.team-compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7) var(--s-5);
}
@media (max-width: 960px) { .team-compact { grid-template-columns: repeat(2, 1fr); gap: var(--s-6) var(--s-4); } }
@media (max-width: 560px) { .team-compact { grid-template-columns: 1fr; } }

.team-card-c {
  display: flex; flex-direction: column;
}
.team-card-c .photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  margin-bottom: var(--s-4);
  position: relative;
}
.team-card-c .photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.team-card-c:hover .photo img { transform: scale(1.04); }
.team-card-c h3 {
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500; letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.team-card-c .role {
  display: block;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: var(--s-3);
}
.team-card-c p {
  color: var(--muted);
  font-size: 14px; line-height: 1.55;
  margin: 0; max-width: 38ch;
}
.team-card-c .schedule-line {
  margin-top: var(--s-3);
  font-size: 12px;
  color: var(--forest); font-weight: 500;
  letter-spacing: -0.005em;
}

/* ===========================================
   TEAM BIO — large editorial (kept for legacy)
=========================================== */
.team-bio-list { display: flex; flex-direction: column; }
.team-bio {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: var(--s-8);
  padding: var(--s-8) 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.team-bio:last-child { border-bottom: 1px solid var(--line); }
.team-bio:nth-child(even) { direction: rtl; }
.team-bio:nth-child(even) > * { direction: ltr; }
@media (max-width: 880px) {
  .team-bio { grid-template-columns: 1fr; gap: var(--s-5); padding: var(--s-7) 0; }
  .team-bio:nth-child(even) { direction: ltr; }
}
.team-bio .photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
}
.team-bio .photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.team-bio .body {
  padding-top: var(--s-3);
}
.team-bio h3 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 500; letter-spacing: -0.04em;
  margin-bottom: 0;
}
.team-bio .role {
  display: block;
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--forest);
  margin: var(--s-3) 0 var(--s-5);
}
.team-bio .body p {
  color: var(--muted); font-size: 17px; line-height: 1.6;
  max-width: 56ch; margin: 0 0 1em;
}
.team-bio .body p:last-child { margin-bottom: 0; }

/* ===========================================
   Studio-conditional content (pricing etc.)
=========================================== */
[data-studio-section] { display: none; }
html[data-location="henley"] [data-studio-section="henley"],
html[data-location="chalfont"] [data-studio-section="chalfont"],
html[data-location="marlow"] [data-studio-section="marlow"] {
  display: block;
}
html:not([data-location]) [data-studio-section="henley"] { display: block; }

/* classes.html: the shared Henley/Chalfont class list (differentiated only
   by inline per-image swaps) doesn't apply to Marlow, which has its own
   dedicated [data-studio-section="marlow"] section instead. */
html[data-location="marlow"] .classes-shared { display: none; }

/* Grid/flex items need their own display restored when shown */
html[data-location="henley"] .class-tile[data-studio-section="henley"],
html:not([data-location]) .class-tile[data-studio-section="henley"] {
  display: flex;
}
html[data-location="chalfont"] .class-tile[data-studio-section="chalfont"] {
  display: flex;
}
html[data-location="henley"] .reviews-cta-link[data-studio-section="henley"],
html:not([data-location]) .reviews-cta-link[data-studio-section="henley"] {
  display: inline-flex;
}
html[data-location="chalfont"] .reviews-cta-link[data-studio-section="chalfont"] {
  display: inline-flex;
}
html[data-location="marlow"] .reviews-cta-link[data-studio-section="marlow"] {
  display: inline-flex;
}
/* Opt a block OUT for a specific studio — for content that's universal
   across studios except one where it isn't confirmed yet (e.g. private
   sessions at Marlow). Opposite of [data-studio-section]. */
html[data-location="marlow"] [data-hide-studio="marlow"] {
  display: none !important;
}
/* index.html Marlow classes grid needs its display:grid restored — the
   generic [data-studio-section] rule only sets display:block. */
html[data-location="marlow"] .classes-grid-v2[data-studio-section="marlow"] {
  display: grid;
}
html[data-location="henley"] .btn[data-studio-section="henley"],
html:not([data-location]) .btn[data-studio-section="henley"] {
  display: inline-flex;
}
html[data-location="chalfont"] .btn[data-studio-section="chalfont"] {
  display: inline-flex;
}
html[data-location="marlow"] .btn[data-studio-section="marlow"] {
  display: inline-flex;
}
.price-card[data-studio-section] { display: none; }
html[data-location="henley"] .price-card[data-studio-section="henley"],
html:not([data-location]) .price-card[data-studio-section="henley"] {
  display: flex;
}
html[data-location="chalfont"] .price-card[data-studio-section="chalfont"] {
  display: flex;
}

/* Nav items shown only when a specific studio is selected */
[data-loc-only] { display: none !important; }
html[data-location="henley"] [data-loc-only="henley"],
html[data-location="chalfont"] [data-loc-only="chalfont"] {
  display: list-item !important;
}
html[data-location="henley"] a[data-loc-only="henley"],
html[data-location="chalfont"] a[data-loc-only="chalfont"] {
  display: flex !important;
}

/* Studio indicator strip */
.studio-indicator {
  margin-top: var(--s-6);
  padding: var(--s-5) var(--s-6);
  border-radius: var(--radius-lg);
  background: var(--cream-soft);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); flex-wrap: wrap;
  position: relative;
}
.studio-indicator::before {
  content: '';
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose);
  position: absolute; top: 50%; left: var(--s-4);
  transform: translateY(-50%);
}
.studio-indicator-text { padding-left: var(--s-5); }
.studio-indicator .label {
  display: block;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px; font-weight: 500;
}
.studio-indicator h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500; letter-spacing: -0.02em;
  margin: 0;
}

/* ===========================================
   Schedule iframe (Momence embed)
=========================================== */
.schedule-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--cream-soft);
  padding: var(--s-5);
  position: relative;
  min-height: 600px;  /* placeholder before plugin loads */
}
.schedule-frame iframe { width: 100%; border: 0; display: block; }
.schedule-frame #ribbon-schedule,
.schedule-frame #momence-plugin-host-schedule { width: 100%; }
@media (max-width: 720px) { .schedule-frame { padding: var(--s-3); } }

/* ===========================================
   TREATMENTS
=========================================== */
.treatments-intro {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-7);
  align-items: start;
  padding: var(--s-6) 0;
  margin-bottom: var(--s-6);
}
@media (max-width: 880px) { .treatments-intro { grid-template-columns: 1fr; gap: var(--s-5); } }
.treatments-intro .photo {
  aspect-ratio: 4 / 5; border-radius: var(--radius);
  overflow: hidden; background: var(--sand);
}
.treatments-intro .photo img { width: 100%; height: 100%; object-fit: cover; }
.treatments-intro h2 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500; letter-spacing: -0.04em; line-height: 0.95;
  margin: 0;
}
.treatments-intro p {
  color: var(--muted); font-size: 17px; line-height: 1.6;
  max-width: 56ch; margin-top: var(--s-5);
}
.treatments-intro .quote {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 500;
  font-style: italic; color: var(--forest);
  margin-top: var(--s-4);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (max-width: 960px) { .treatments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .treatments-grid { grid-template-columns: 1fr; } }

.treatment-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
  transition: all .4s var(--ease);
  min-height: 220px;
}
.treatment-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.treatment-card .t-label {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--rose-deep);
  font-weight: 600;
}
.treatment-card h4 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.15;
  margin: 0;
}
.treatment-card p {
  font-size: 14px; line-height: 1.55;
  color: var(--muted); margin: 0; flex: 1;
}
.treatment-card .t-price {
  font-family: var(--font-display);
  font-size: 24px; font-weight: 500;
  color: var(--ink); letter-spacing: -0.02em;
  margin-top: var(--s-2);
}
.treatment-card.featured {
  background: var(--forest); color: var(--cream);
  border-color: transparent;
  grid-column: span 2;
}
@media (max-width: 960px) { .treatment-card.featured { grid-column: span 1; } }
.treatment-card.featured h4 { color: var(--cream); font-size: 28px; }
.treatment-card.featured p { color: rgba(244,239,229,0.78); }
.treatment-card.featured .t-label { color: var(--rose); }
.treatment-card.featured .t-price { color: var(--cream); }

/* ===========================================
   PRICING
=========================================== */
.pricing-block { padding-top: var(--s-9); }
.pricing-block:first-of-type { padding-top: 0; }
.pricing-block-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: var(--s-6); margin-bottom: var(--s-6); flex-wrap: wrap;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-4);
}
@media (max-width: 560px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  position: relative;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: all .45s var(--ease);
}
.price-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.price-card.popular {
  background: var(--forest); color: var(--cream);
  border-color: transparent;
}
.price-card.popular .price-label { color: rgba(244,239,229,0.7); }
.price-card.popular h3 { color: var(--rose); }
.price-card.popular .price-amount { color: var(--rose); }
.price-card.popular .price-per { color: rgba(244,239,229,0.65); }
.price-card.popular .price-features li { border-color: rgba(244,239,229,0.15); color: rgba(244,239,229,0.9); }
.price-card .badge {
  position: absolute; top: var(--s-4); right: var(--s-4);
  background: var(--sage); color: var(--ink);
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
}
.price-label {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  font-weight: 500;
}
.price-card h3 {
  font-size: 22px; font-weight: 500; letter-spacing: -0.01em;
  margin-top: 0;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 500; letter-spacing: -0.04em;
  line-height: 1; color: var(--ink);
}
.price-per { font-size: 13px; color: var(--muted); margin-top: -8px; }
.price-features { list-style: none; padding: 0; margin: var(--s-2) 0 0; }
.price-features li {
  padding: 10px 0; font-size: 14px;
  border-top: 1px solid var(--line);
  display: flex; align-items: flex-start; gap: 8px;
  color: var(--ink);
}
.price-features li::before {
  content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3 3 7-8' stroke='%23243A2C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price-card.popular .price-features li::before {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3 3 7-8' stroke='%23F4EFE5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.price-card .btn { margin-top: auto; align-self: flex-start; }
.price-card.popular .btn { background: var(--cream); color: var(--ink); }
.price-card.popular .btn:hover { background: var(--cream-soft); }

/* ===========================================
   STUDIO DETAIL
=========================================== */
.studio-detail-block {
  padding: var(--s-9) 0;
  border-bottom: 1px solid var(--line);
}
.studio-detail-block:last-of-type { border-bottom: 0; }
.studio-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: var(--s-8);
  align-items: start;
}
.studio-detail-block:nth-of-type(even) .studio-detail-grid { direction: rtl; }
.studio-detail-block:nth-of-type(even) .studio-detail-grid > * { direction: ltr; }
@media (max-width: 880px) {
  .studio-detail-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .studio-detail-block:nth-of-type(even) .studio-detail-grid { direction: ltr; }
}
.studio-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--s-3);
  height: 560px;
}
.studio-gallery > * {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sand);
}
.studio-gallery img { width: 100%; height: 100%; object-fit: cover; }
.studio-gallery .main { grid-row: span 2; }
@media (max-width: 720px) { .studio-gallery { height: 380px; } }

.studio-info h2 {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500; letter-spacing: -0.04em; line-height: 0.95;
}
.studio-info .addr {
  margin-top: var(--s-3);
  font-size: 18px; color: var(--forest);
  font-weight: 500; letter-spacing: -0.01em;
}
.studio-info .body p {
  color: var(--muted); font-size: 17px; line-height: 1.6;
  margin: var(--s-5) 0 0; max-width: 50ch;
}
.studio-info .facts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  margin-top: var(--s-6); padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.studio-info .fact .label {
  display: block;
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 4px;
}
.studio-info .fact .val {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 500; letter-spacing: -0.01em;
  line-height: 1.3;
}
.studio-info .amenities {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: var(--s-5);
}
.studio-info .amenities span {
  font-size: 12px; letter-spacing: 0.04em;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--muted);
}
.studio-info .actions {
  margin-top: var(--s-6);
  display: flex; gap: var(--s-3); flex-wrap: wrap;
}

/* ===========================================
   FAQ (small, used on pricing/contact)
=========================================== */
.faq { max-width: 880px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: var(--s-5) 0; text-align: left;
  font-family: var(--font-display); font-size: 20px; font-weight: 500;
  letter-spacing: -0.01em;
}
.faq-q .plus {
  width: 28px; height: 28px; position: relative; flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--ink);
  top: 50%; left: 50%; transition: opacity .35s var(--ease);
}
.faq-q .plus::before { width: 14px; height: 1px; transform: translate(-50%, -50%); }
.faq-q .plus::after  { width: 1px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 0 var(--s-5); max-width: 60ch; color: var(--muted); font-size: 16px; }
.faq-item.open .faq-a { max-height: 420px; }

/* ===========================================
   Welcome modal — first-visit studio picker
=========================================== */
.welcome-modal {
  position: fixed; inset: 0; z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: var(--s-5);
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease);
}
.welcome-modal.open { opacity: 1; pointer-events: auto; }

.welcome-backdrop {
  position: absolute; inset: 0;
  background: rgba(21, 32, 26, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.welcome-card {
  position: relative; z-index: 2;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--s-7);
  max-width: 540px; width: 100%;
  box-shadow: 0 32px 80px rgba(21,32,26,0.32);
  transform: translateY(20px) scale(0.97);
  transition: transform .5s var(--ease);
}
.welcome-modal.open .welcome-card { transform: translateY(0) scale(1); }
@media (max-width: 560px) {
  .welcome-card { padding: var(--s-6); }
}

.welcome-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--muted);
  transition: all .3s var(--ease);
}
.welcome-close:hover { color: var(--ink); border-color: var(--ink); }

.welcome-label {
  font-size: 11px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rose-deep); font-weight: 500;
  display: block; margin-bottom: var(--s-3);
}
.welcome-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500; letter-spacing: -0.03em;
  margin-bottom: var(--s-3);
}
.welcome-card > p {
  color: var(--muted); font-size: 15px; line-height: 1.55;
  margin: 0 0 var(--s-5); max-width: 44ch;
}

.welcome-options {
  display: flex; flex-direction: column; gap: 8px;
}
.welcome-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  transition: all .35s var(--ease);
  width: 100%;
  font: inherit;
}
.welcome-option:hover {
  border-color: var(--ink);
  background: var(--cream);
  transform: translateX(2px);
}
.welcome-option .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--forest); flex-shrink: 0;
}
.welcome-option .body {
  display: flex; flex-direction: column; gap: 2px; flex: 1;
}
.welcome-option .body strong {
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.welcome-option .body span {
  font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em;
}
.welcome-option .arrow {
  font-family: var(--font);
  color: var(--muted); font-size: 16px;
  transition: transform .35s var(--ease), color .35s var(--ease);
}
.welcome-option:hover .arrow {
  color: var(--rose); transform: translateX(3px);
}
.welcome-option.soon {
  opacity: 0.5; cursor: not-allowed; pointer-events: none;
}
.welcome-option.soon .dot { background: var(--muted); }
a.welcome-option.soon {
  opacity: 1; cursor: pointer; pointer-events: auto;
}
a.welcome-option.soon .dot { background: var(--rose); }
a.welcome-option.soon .body span { color: var(--rose-deep); }
a.welcome-option.soon:hover { background: var(--cream); }

.welcome-skip {
  margin-top: var(--s-5);
  font-size: 13px; color: var(--muted);
  background: transparent; border: 0; cursor: pointer;
  padding: 4px 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  font: inherit;
  align-self: flex-start;
  display: block;
}
.welcome-skip:hover { color: var(--ink); }

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-in.visible { opacity: 1; transform: none; }
