/* ────── Lumière (Femme-style) — bespoke stylesheet ────── */

:root {
  --bg: #EFEBE4;
  --bg-2: #BDA28B;
  --ink: #36322D;
  --ink-soft: #5d564e;
  --accent: #C4936B;
  --btn-brown: #4a3325;
  --line: rgba(54, 50, 45, 0.14);
  --line-strong: rgba(54, 50, 45, 0.28);
  --paper: #F5F2EA;
  --shadow: 0 30px 60px -30px rgba(54, 50, 45, 0.22);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', ui-sans-serif, system-ui, sans-serif;

  --r-sm: 6px;
  --r-md: 16px;
  --r-lg: 28px;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --page-x: 56px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
a { color: inherit; text-decoration: none; }
svg { display: inline-block; vertical-align: -2px; flex-shrink: 0; }

/* ─────── Display headings ─────── */
.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.018em;
}
.h-display .i { font-style: italic; font-weight: 400; }
.h-display .ny { font-style: normal; }
.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.eyebrow::before {
  content: ""; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  display: inline-block; opacity: 0.7;
}

/* ─────── Sections ─────── */
section { padding: 120px var(--page-x); position: relative; }
.container { max-width: 1320px; margin: 0 auto; }

/* ─────── Scroll progress ─────── */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 100;
  background: rgba(0, 0, 0, 0.04);
  pointer-events: none;
}
.scroll-progress__bar { height: 100%; background: var(--ink); width: 0%; transition: width .12s linear; }

/* ─────── Nav (Femme-style) ─────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 12px 16px;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), padding .3s var(--ease);
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav .logo {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.nav .logo span { color: var(--ink); }
.nav .logo svg { color: var(--accent); }

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none; margin: 0; padding: 0;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
}
.nav-item { position: relative; }
.nav-item > a {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 12px 0;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.nav-item > a:hover { color: var(--accent); }
.nav-plus {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0;
  display: inline-block;
  margin-left: 2px;
  transform: translateY(-1px);
}
.nav-dropdown {
  position: absolute; top: 100%; left: -16px;
  min-width: 220px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  display: flex; flex-direction: column;
  gap: 2px;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
  z-index: 10;
}
.nav-item--dd:hover .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown a {
  padding: 10px 14px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 10px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav-dropdown a:hover { background: var(--bg-2); color: var(--accent); }

.nav-right {
  display: flex; align-items: center; gap: 24px;
}
.nav-cart {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex; align-items: baseline; gap: 8px;
  transition: color .25s var(--ease);
}
.nav-cart:hover { color: var(--accent); }
.nav-cart-count {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
  font-size: 13px;
}
.nav-cta {
  background: var(--btn-brown);
  color: var(--bg);
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-family: 'Noto Sans', var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .25s var(--ease);
  white-space: nowrap;
}
.nav-cta:hover { transform: scale(1.03); }
.nav-burger {
  display: none;
  width: 42px; height: 42px; border: 0; background: transparent;
  flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  cursor: pointer; padding: 0;
}
.nav-burger span { width: 24px; height: 1.6px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-burger.on span:nth-child(1) { transform: translateY(3.8px) rotate(45deg); }
.nav-burger.on span:nth-child(2) { transform: translateY(-3.8px) rotate(-45deg); }
.nav-drawer {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(20,16,13,0.4);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
}
.nav-drawer.on { opacity: 1; pointer-events: auto; }
.nav-drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(82vw, 360px);
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: 100px 32px 40px;
  box-shadow: -20px 0 60px -20px rgba(20,16,13,0.4);
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-drawer.on .nav-drawer-panel { transform: none; }
.nav-drawer-close {
  position: absolute; top: 22px; right: 24px;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-strong); background: transparent;
  font-size: 26px; line-height: 1; color: var(--ink);
  cursor: pointer; display: grid; place-items: center;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-drawer-close:active { background: var(--ink); color: var(--bg); }
.nav-drawer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.nav-drawer ul a { font-family: var(--font-display); font-size: clamp(28px, 7.5vw, 38px); font-weight: 500; color: var(--ink); display: block; padding: 8px 0; letter-spacing: -0.01em; }
.nav-drawer ul a:active { color: var(--accent); }
.nav-drawer-cta { margin-top: 32px; width: 100%; }

/* ─────── Buttons ─────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 18px 28px;
  border: none;
  border-radius: var(--r-pill);
  background: var(--btn-brown);
  color: var(--bg);
  font-family: 'Noto Sans', var(--font-body);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: transform .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: scale(1.03); }
.btn.solid { background: var(--ink); color: var(--bg); }
.btn.solid:hover { transform: scale(1.03); }
.btn.lg { padding: 22px 34px; font-size: 13px; }

/* Rotating-circle button (Femme signature) */
.btn-rotate {
  display: inline-flex; align-items: center; gap: 18px;
  background: transparent; border: 0; padding: 0;
  cursor: pointer; font-family: inherit;
  color: var(--ink);
  font-size: 14px; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-rotate .ring {
  width: 60px; height: 60px;
  position: relative;
  border-radius: 50%;
  background: var(--ink); color: var(--bg);
  display: grid; place-items: center;
  transition: transform .5s var(--ease), background .35s var(--ease);
}
.btn-rotate:hover .ring { transform: rotate(45deg) scale(1.05); }
.btn-rotate .rotating-text {
  position: absolute; inset: 0;
  animation: ring-spin 14s linear infinite;
}
.btn-rotate .rotating-text text {
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase;
  fill: var(--bg);
}
@keyframes ring-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

/* ─────── HERO (Femme-style: full-bleed photo + marquee top + welcome + pills) ─────── */
.hero {
  height: calc(100vh - 104px);
  min-height: 660px;
  padding: 0;
  position: relative;
  overflow: hidden;
  margin: 8px 16px 16px;
  border-radius: 18px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92);
  transform-origin: center;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.on {
  opacity: 1;
  animation: hero-breathe 8s ease-out forwards;
}
@keyframes hero-breathe {
  from { transform: scale(1.04); }
  to   { transform: scale(1.13); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.1) 40%, rgba(26,26,26,0.55) 100%);
}

/* Hero marquee inside rounded banner */
.hero-marquee {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  padding-top: 32px;
  padding-bottom: 12px;
}
.hero-marquee-track {
  display: flex;
  white-space: nowrap;
  animation: hero-marquee-scroll 30s linear infinite;
  width: max-content;
}
.hero-marquee-item {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(120px, 16vw, 240px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--bg);
  margin-right: 40px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.hero-marquee-item .dot { color: var(--bg); opacity: 0.85; }
@keyframes hero-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * (16vw + 40px) * 12)); }
}

/* Bottom row: welcome (left) + pill grid (right) */
.hero-bottom {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 4;
  padding: 0 44px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.hero-welcome {
  color: var(--bg);
  max-width: 460px;
}
.hero-welcome-eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bg);
  margin-bottom: 16px;
  opacity: 0.92;
}
.hero-welcome-body {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  text-wrap: pretty;
}

.hero-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-end;
  margin-left: auto;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.25);
  color: var(--bg);
  border-radius: var(--r-pill);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all .3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.hero-pill:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
  transform: translateY(-2px);
}

/* Centered scroll-down button with notch cutout */
.hero-scroll-btn {
  position: absolute;
  left: 50%; bottom: -36px;
  transform: translateX(-50%);
  z-index: 5;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: grid; place-items: center;
  border: 1px solid var(--line);
  cursor: pointer;
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.25);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
  animation: hero-scroll-bob 2.4s ease-in-out infinite;
}
.hero-scroll-btn::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px; height: 60px;
  background: var(--bg);
  z-index: -1;
  border-radius: 60px 60px 0 0;
}
.hero-scroll-btn:hover {
  background: var(--ink);
  color: var(--bg);
  transform: translateX(-50%) translateY(-4px);
}
.hero-scroll-btn svg { position: relative; z-index: 1; }
@keyframes hero-scroll-bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─────── Statement — big sticky heading + chaotic floating cards ─────── */
.statement {
  padding: 0 var(--page-x);
  position: relative;
  min-height: 220vh;
}
.statement-middle {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}
.statement-sticky {
  display: flex;
  flex-direction: column;
  gap: 36px;
  text-align: center;
  align-items: center;
  max-width: 1080px;
  pointer-events: auto;
  padding: 0 12px;
}
.statement-sticky .eyebrow { justify-content: center; }
.statement-sticky h2 {
  font-family: var(--font-display);
  font-size: clamp(46px, 5.6vw, 88px);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.03em;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
  font-style: italic;
  max-width: 28ch;
}
.statement-sticky h2 .ny {
  font-style: normal;
  position: relative;
  display: inline-block;
}
.statement-sticky h2 .ny::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 4%;
  height: 2px;
  background: var(--ink);
  opacity: 0.5;
}
.statement-thumbs {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}
.statement-thumb-fan {
  display: inline-flex;
  align-items: center;
  padding-left: 22px;
}
.statement-thumb {
  width: 118px; height: 132px;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid var(--bg);
  box-shadow: var(--shadow);
  margin-left: -26px;
  transition: transform .55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .45s var(--ease);
}
.statement-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.statement-thumb:nth-child(1) { transform: rotate(-15deg) translateX(8px) translateY(6px); z-index: 1; }
.statement-thumb:nth-child(2) { transform: rotate(0deg) translateY(-10px); z-index: 3; }
.statement-thumb:nth-child(3) { transform: rotate(15deg) translateX(-8px) translateY(6px); z-index: 2; }
.statement-thumb:first-child { margin-left: 0; }
/* "Open the fan" on hover — all three move */
.statement-thumb-fan:hover .statement-thumb:nth-child(1) { transform: rotate(-22deg) translateX(-22px) translateY(2px); box-shadow: 0 30px 50px -20px rgba(54,50,45,0.4); }
.statement-thumb-fan:hover .statement-thumb:nth-child(2) { transform: rotate(0deg) translateY(-26px) scale(1.06); box-shadow: 0 36px 56px -22px rgba(54,50,45,0.45); }
.statement-thumb-fan:hover .statement-thumb:nth-child(3) { transform: rotate(22deg) translateX(22px) translateY(2px); box-shadow: 0 30px 50px -20px rgba(54,50,45,0.4); }
.statement-thumb-fan:hover .statement-thumb img { transform: scale(1.08); }
.statement-thumb img { width: 100%; height: 100%; object-fit: cover; }
.statement-thumb-count {
  font-family: 'Noto Sans', var(--font-body);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.5;
  text-align: center;
}
.statement-thumb-count strong { color: var(--ink); font-weight: 600; }

.statement-cards-fall {
  position: absolute;
  inset: 16vh clamp(16px, 3vw, 56px) 18vh;
  pointer-events: none;
  z-index: 3;
}
.benefit-wrap {
  position: absolute;
  width: clamp(240px, 22vw, 320px);
  transform: translateY(var(--parallax, 0));
  will-change: transform;
  pointer-events: auto;
}
.benefit {
  aspect-ratio: 1 / 1;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px;
  display: flex;
  box-shadow: 0 14px 38px -20px rgba(26,26,26,0.22);
  opacity: 0;
  transform: translate(var(--enter-x, 0), var(--enter-y, 80px)) rotate(var(--enter-rot, 0deg));
  transition: opacity 1s var(--ease), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.benefit.in {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
}
.benefit-inner {
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 11px;
  max-width: 22ch;
}
.benefit-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--ink);
  display: grid;
  place-items: center;
}
.benefit-n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.benefit-t {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.3vw, 34px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.benefit-body {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.benefit-meta {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  margin-top: 2px;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .statement { min-height: 0; padding: 80px var(--page-x); }
  .statement-middle { position: static; height: auto; pointer-events: auto; }
  .statement-sticky { text-align: center; align-items: center; max-width: none; padding: 0; }
  .statement-sticky .eyebrow { justify-content: center; }
  .statement-sticky h2 { font-size: clamp(34px, 8.5vw, 60px); text-align: center; max-width: 28ch; margin-left: auto; margin-right: auto; line-height: 1.1; }
  .statement-cards-fall {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 48px;
    margin-bottom: 56px;
  }
  .benefit-wrap { position: static; width: auto; transform: none; }
  .benefit { opacity: 1; transform: none; aspect-ratio: auto; }
  .benefit-inner { padding: 40px 28px; max-width: none; }
}
@media (max-width: 600px) {
  .statement-cards-fall { grid-template-columns: 1fr; gap: 14px; margin-bottom: 56px; }
  .benefit-inner { padding: 32px 24px; gap: 9px; }
}

/* ─────── Tabbed services ─────── */
.services {
  background: var(--paper);
  padding-block: 160px;
}
.services-head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 56px; align-items: end;
  margin-bottom: 64px;
}
.services-head h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 96px);
  line-height: 0.96;
  margin: 14px 0 0;
  font-weight: 500;
  letter-spacing: -0.022em;
  text-wrap: balance;
  max-width: 18ch;
}
.services-head h6 { margin: 0; }
.services-row {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px;
  align-items: stretch;
}
.services-tabs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line-strong);
}
.tab {
  display: grid; grid-template-columns: 64px 1fr 40px;
  align-items: baseline; gap: 24px;
  padding: 30px 4px 30px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  cursor: pointer;
  transition: padding-left .4s var(--ease);
}
.tab:hover .tab-title { color: var(--accent); }
.tab.on { padding-left: 22px; }
.tab-n {
  font-family: var(--font-display); font-style: italic;
  font-size: 28px; color: var(--ink-soft);
  line-height: 1;
  transition: color .35s var(--ease);
}
.tab.on .tab-n { color: var(--accent); }
.tab-main { display: flex; flex-direction: column; gap: 8px; }
.tab-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.05;
  transition: color .35s var(--ease), transform .35s var(--ease);
}
.tab.on .tab-title { font-style: italic; }
.tab-body {
  max-height: 0; overflow: hidden;
  color: var(--ink-soft); font-size: 14.5px;
  transition: max-height .55s var(--ease), opacity .5s var(--ease), padding .5s var(--ease);
  opacity: 0;
  max-width: 56ch;
}
.tab.on .tab-body { max-height: 220px; padding-top: 10px; opacity: 1; }
.tab-arrow {
  width: 40px; height: 40px;
  background: transparent;
  color: var(--ink-soft);
  border-radius: 0;
  display: grid; place-items: center;
  justify-self: end;
  font-size: 16px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.tab.on .tab-arrow, .tab:hover .tab-arrow { opacity: 1; transform: translateX(0); color: var(--btn-brown); }

.services-img {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  min-height: 540px;
  background: var(--bg-2);
}
.services-img-card {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s var(--ease);
}
.services-img-card.on { opacity: 1; }
.services-img-card img { width: 100%; height: 100%; object-fit: cover; }
.services-img-card .price-tag {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--bg); color: var(--ink);
  padding: 12px 20px;
  border-radius: 4px;
  font-family: var(--font-display); font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
  display: inline-flex; align-items: baseline; gap: 8px;
}
.services-img-card .price-tag small {
  font-family: var(--font-body); font-style: normal;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─────── Word marquee ─────── */
.word-marquee {
  background: var(--bg);
  padding: 80px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.word-marquee-track {
  display: flex; gap: 64px;
  white-space: nowrap;
  animation: word-scroll 36s linear infinite;
  width: max-content;
}
.word-marquee-item {
  display: inline-flex; align-items: center; gap: 64px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.word-marquee-item::after {
  content: "✦";
  font-style: normal;
  font-size: 40%;
  color: var(--accent);
  vertical-align: middle;
}
@keyframes word-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────── Build your course (calculator) ─────── */
.calc {
  background: var(--bg);
  padding-block: 160px;
}
.calc-head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 64px;
}
.calc-head h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 96px);
  line-height: 0.96;
  margin: 14px 0 0;
  font-weight: 500;
  letter-spacing: -0.022em;
  text-wrap: balance;
  max-width: 21ch;
}
.calc-blurb {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 46ch;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.calc-section-l {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 18px;
}
.calc-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.calc-section-head .calc-section-l { margin-bottom: 0; }
.calc-clear {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  font: inherit;
  font-family: 'Noto Sans', var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.calc-clear:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Area selector grid */
.calc-areas {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
}
.calc-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}
.calc-area {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--ink);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.calc-area:hover { background: var(--bg); }
.calc-area:hover .calc-area-name { color: var(--accent); }
.calc-area.on { background: var(--bg); border-color: var(--accent); }
.calc-area.on .calc-area-name { font-style: italic; }
.calc-area.on .calc-area-price { color: var(--accent); }
.calc-area-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--line-strong);
  display: grid; place-items: center;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.calc-area.on .calc-area-check {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.calc-area-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.1;
  transition: color .3s var(--ease);
}
.calc-area-zone {
  display: none;
}
.calc-area-price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: var(--ink-soft);
  transition: color .3s var(--ease);
}
.calc-area:hover .calc-area-price { color: var(--accent); }

/* Area pills */
.calc-pill-groups { display: flex; flex-direction: column; gap: 22px; }
.calc-pill-group { display: flex; flex-direction: column; gap: 12px; }
.calc-pill-group-l {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.calc-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-pill {
  display: inline-flex; align-items: baseline; gap: 9px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  white-space: nowrap;
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .15s var(--ease);
}
.calc-pill:hover { border-color: var(--accent); transform: translateY(-2px); }
.calc-pill:active { transform: scale(0.96); }
.calc-pill.on { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.calc-pill-name { font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1; white-space: nowrap; }
.calc-pill-price { font-size: 13px; color: var(--ink-soft); font-variant-numeric: tabular-nums; transition: color .25s var(--ease); }
.calc-pill.on .calc-pill-price { color: rgba(245,239,230,0.85); }

/* Session range slider */
.calc-zonetabs { display: flex; flex-wrap: wrap; gap: 30px; border-bottom: 1px solid var(--line); }
.calc-zonetab {
  display: inline-flex; align-items: center; gap: 8px;
  font: inherit; cursor: pointer;
  font-family: 'Noto Sans', var(--font-body);
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-soft);
  background: transparent; border: 0; border-bottom: 2px solid transparent;
  border-radius: 0; padding: 0 0 14px;
  margin-bottom: -1px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.calc-zonetab:hover:not(.on) { color: var(--accent); }
.calc-zonetab.on { color: var(--ink); border-bottom-color: var(--accent); }
.calc-zonetab-count {
  display: inline-grid; place-items: center;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 999px; font-size: 11px; letter-spacing: 0;
  background: var(--accent); color: var(--bg);
}

.calc-range-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.calc-range-head .calc-section-sub { margin-bottom: 0; }
.calc-range-meta { display: flex; align-items: baseline; gap: 10px; }
.calc-range-n { font-family: var(--font-body); font-size: 38px; font-weight: 300; line-height: 1; letter-spacing: -0.04em; color: var(--accent); font-variant-numeric: tabular-nums; }
.calc-range-tier { font-family: var(--font-display); font-style: italic; font-size: clamp(18px, 1.9vw, 22px); color: var(--accent); white-space: nowrap; }
.calc-range-wrap { position: relative; }
.calc-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 11px; border-radius: 999px; margin: 0;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) var(--pct, 50%), var(--line-strong) var(--pct, 50%), var(--line-strong) 100%);
  cursor: pointer; outline: none;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 2px 9px rgba(54,50,45,0.3); cursor: grab;
  transition: transform .15s var(--ease);
}
.calc-range::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.12); }
.calc-range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff;
  box-shadow: 0 2px 9px rgba(54,50,45,0.3); cursor: grab;
}
.calc-range::-moz-range-track { height: 11px; border-radius: 999px; background: transparent; }
.calc-range-scale { display: flex; justify-content: space-between; margin-top: 12px; font-size: 13px; letter-spacing: 0.06em; color: var(--ink-soft); font-variant-numeric: tabular-nums; padding: 0 8px; }

/* Single continuous panel */
.calc-panel {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.calc-panel .calc-section-head { margin-bottom: 0; }
.calc-panel .calc-sessions {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.calc-footer {
  background: linear-gradient(165deg, rgba(196,147,107,0.12) 0%, rgba(196,147,107,0.05) 100%);
  border: 1px solid rgba(196,147,107,0.28);
  border-radius: 20px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
.calc-footer .calc-breakdown { border-top: 0; padding-top: 0; }
.calc-checkout {
  display: flex; flex-direction: column; gap: 16px;
  border-left: 1px solid rgba(196,147,107,0.3);
  padding-left: 40px;
}
.calc-total-n { color: var(--accent); }
@media (max-width: 880px) {
  .calc-panel { padding: 28px; gap: 22px; }
  .calc-panel .calc-sessions { padding: 24px; }
  .calc-footer { grid-template-columns: 1fr; gap: 24px; padding: 26px; }
  .calc-checkout { border-left: 0; padding-left: 0; border-top: 1px solid rgba(196,147,107,0.3); padding-top: 22px; }
}

/* Summary panel */
.calc-summary {
  position: sticky;
  top: 100px;
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.calc-summary .calc-section-l {
  color: var(--ink-soft);
}
.calc-summary-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calc-section-sub {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

.calc-sessions-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.calc-session {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 14px 16px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
  font: inherit;
  color: var(--ink);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.calc-session:hover { background: rgba(196,147,107,0.08); border-color: var(--line-strong); }
.calc-session.on {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.calc-session-n {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.calc-session-l {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.calc-session.on .calc-session-l { color: rgba(245,239,230,0.9); }
.calc-session-tag {
  position: absolute;
  top: -8px;
  right: 10px;
  background: var(--ink);
  color: var(--bg);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  font-weight: 600;
}
.calc-session-note {
  margin: 14px 0 0;
  font-size: 20px;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
}

.calc-breakdown {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calc-empty {
  margin: 0;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-style: italic;
}
.calc-items {
  list-style: none;
  margin: 0 0 6px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}
.calc-items li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  color: var(--ink);
}
.calc-items li > span:first-child { min-width: 0; }
.calc-items li > span:last-child {
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
  white-space: nowrap;
  flex-shrink: 0;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--ink-soft);
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.calc-row > span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; flex-shrink: 0; }
.calc-row > span:first-child { min-width: 0; }
.calc-row--discount { color: var(--accent); }

.calc-total {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}
.calc-total-l {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: -0.01em;
  text-transform: none;
  white-space: nowrap;
  color: var(--ink);
}
.calc-total-sub {
  display: block;
  font-size: 17px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-top: 6px;
  font-style: italic;
  font-family: var(--font-display);
}
.calc-total-n {
  font-family: var(--font-body);
  font-size: clamp(40px, 4.4vw, 60px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.calc-cta {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}
.calc-cta.disabled {
  opacity: 0.4;
  pointer-events: none;
}
.calc-fineprint {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-align: center;
  text-wrap: pretty;
}

/* ─────── Warm calculator palette ─────── */
.calc-panel {
  background: #fcf7ef;
  border-color: rgba(74,51,37,0.14);
}
.calc-footer {
  background: #f1e9dd;
  border-color: rgba(74,51,37,0.16);
}
.calc-checkout { border-left-color: rgba(74,51,37,0.18); }
.calc-range::-webkit-slider-thumb { border-color: #fcf7ef; }
.calc-range::-moz-range-thumb { border-color: #fcf7ef; }
.calc-range-n, .calc-range-tier, .calc-total-n { color: var(--btn-brown); }
.calc-pill.on { background: var(--btn-brown); border-color: var(--btn-brown); color: var(--bg); }
.calc-pill.on .calc-pill-price { color: rgba(245,239,230,0.8); }
.calc-pill:hover { border-color: var(--btn-brown); }
.calc-zonetab.on { color: var(--ink); border-bottom-color: var(--btn-brown); }
.calc-zonetab:hover:not(.on) { color: var(--btn-brown); }
.calc-zonetab-count { background: var(--btn-brown); }
.calc-session-note { color: var(--ink); }
.calc-pill { background: #fffdf9; border-color: rgba(74,51,37,0.14); }

@media (max-width: 1080px) {
  .calc-head { grid-template-columns: 1fr; gap: 20px; }
  .calc-grid { grid-template-columns: 1fr; gap: 16px; }
  .calc-summary { position: static; }
}
@media (max-width: 600px) {
  .calc-area-grid { grid-template-columns: 1fr; }
  .calc-sessions-row { grid-template-columns: 1fr; }
}

/* ─────── Service cards row ─────── */
.cards {
  padding-block: 160px;
}
.cards-head {
  display: flex; justify-content: space-between; align-items: end;
  margin-bottom: 56px;
  gap: 40px;
}
.cards-head h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 96px);
  line-height: 0.96;
  margin: 18px 0 0;
  max-width: 18ch;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-wrap: balance;
}
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card-svc {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex; flex-direction: column;
}
.card-svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-svc-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.card-svc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.card-svc:hover .card-svc-img img { transform: scale(1.06); }
.card-svc-cat {
  position: absolute; top: 18px; left: 18px;
  background: var(--bg); color: var(--ink);
  padding: 8px 14px;
  border-radius: var(--r-pill);
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
}
.card-svc-cat.dark { background: var(--ink); color: var(--bg); }
.card-svc-bottom {
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
}
.card-svc-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1;
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 12px;
}
.card-svc-price {
  font-style: italic; color: var(--ink-soft);
  font-size: 22px;
  white-space: nowrap;
}
.card-svc-price small {
  font-family: var(--font-body); font-style: normal;
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); margin-right: 4px;
}
.card-svc-body { color: var(--ink-soft); font-size: 13.5px; margin: 0; text-wrap: pretty; }
.card-svc-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* ─────── Why us / mission ─────── */
.why {
  background: var(--ink);
  background-image: url('images/treatment-care.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--bg);
  padding-block: 160px;
  position: relative;
  isolation: isolate;
}
.why::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,13,0.84) 0%, rgba(20,16,13,0.9) 100%);
  z-index: -1;
}
.why-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 80px;
  max-width: 1100px;
}
.why-h {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 96px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0;
  color: var(--bg);
  text-wrap: balance;
}
.why-h .i { font-style: italic; }
.why .eyebrow { color: rgba(245, 239, 230, 0.7); }
.why .eyebrow::before { background: var(--accent); }

/* Stats row with vertical dividers (at the very bottom) */
.why-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 40px 0;
  border-top: 1px solid rgba(245, 239, 230, 0.18);
  border-bottom: 1px solid rgba(245, 239, 230, 0.18);
}
.why-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 32px;
  border-right: 1px solid rgba(245, 239, 230, 0.14);
}
.why-stat:first-child { padding-left: 0; }
.why-stat:last-child { border-right: none; padding-right: 0; }
.why-stat-n {
  font-family: var(--font-body);
  font-size: clamp(56px, 5.4vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  color: var(--bg);
}
.why-stat-l {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.65);
  margin-top: 6px;
}

/* Bottom: image pair + manifesto side by side */
.why-bottom {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 100px;
}
.why-mission {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: rgba(245, 239, 230, 0.85);
  font-size: 15.5px;
  line-height: 1.6;
  text-wrap: pretty;
  max-width: 44ch;
}
.why-mission .btn { margin-top: 20px; align-self: flex-start; background: var(--bg); color: var(--ink); }
.why-mission .btn:hover { background: var(--btn-brown); color: var(--bg); }
.why-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-images .img {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 3/4;
}
.why-images .img:nth-child(1) { margin-top: 48px; }
.why-images .img img { width: 100%; height: 100%; object-fit: cover; }

/* ─────── Video promo banner ─────── */
.video-banner {
  padding-block: 160px;
}
.video-banner { padding: 100px 16px 0; }
.video-card {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16/7;
  background: var(--bg-2);
}
.video-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.7); }
.video-card-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 48px;
  color: var(--bg);
}
.video-card-top {
  display: flex; justify-content: space-between; align-items: start;
  gap: 24px;
}
.video-card .eyebrow { color: rgba(255,255,255,0.85); }
.video-card .eyebrow::before { background: var(--bg); }
.video-card-play {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.6);
  color: var(--bg);
  display: grid; place-items: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all .35s var(--ease);
  animation: pulse-soft 3s var(--ease) infinite;
}
.video-card-play:hover { background: var(--bg); color: var(--ink); transform: scale(1.08); }
@keyframes pulse-soft {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 0 22px rgba(255,255,255,0); }
}
.video-card-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.4vw, 72px);
  font-weight: 300;
  font-style: normal;
  line-height: 1.05;
  margin: 0;
  max-width: 18ch;
  letter-spacing: -0.018em;
  text-wrap: balance;
}
.video-card-bottom { display: flex; flex-direction: column; gap: 28px; }
.video-card-form { display: flex; gap: 12px; max-width: 500px; flex-wrap: wrap; }
.video-card-form input {
  flex: 1; min-width: 220px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.45);
  border-radius: var(--r-pill);
  padding: 17px 24px;
  font-family: var(--font-body); font-size: 15px;
  color: var(--bg);
  outline: none;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.video-card-form input::placeholder { color: rgba(255,255,255,0.65); }
.video-card-form input:focus { border-color: var(--bg); background: rgba(255,255,255,0.2); }
.video-card-form .btn { background: var(--bg); color: var(--ink); border: 0; white-space: nowrap; }
.video-card-form .btn:hover { background: var(--btn-brown); color: var(--bg); }
.video-card-sent {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(18px, 2vw, 26px); color: var(--bg);
  margin: 0; max-width: 28ch;
}
.journal { padding-block: 160px; background: var(--bg-2); }
.journal-head {
  display: flex; justify-content: space-between; align-items: end;
  gap: 40px; margin-bottom: 56px;
}
.journal-head h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 96px);
  line-height: 0.96; margin: 18px 0 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  max-width: 18ch;
  text-wrap: balance;
}
.journal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.journal-card {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 22px;
  background: var(--paper);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.journal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.journal-img { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.journal-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.journal-card:hover .journal-img img { transform: scale(1.06); }
.journal-body {
  padding: 32px 32px 32px 0;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 18px;
}
.journal-cat {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink-soft);
}
.journal-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.08;
  margin: 0;
  text-wrap: balance;
}
.journal-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.journal-read {
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; color: var(--ink); letter-spacing: 0;
  display: inline-flex; align-items: center; gap: 8px;
}

/* ─────── Testimonials slider (3-up) ─────── */
.testimonials {
  background: var(--bg);
  padding: 92px var(--page-x) 0;
}
.test-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}
.test-head h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 14px 0 0;
  color: var(--ink);
  text-wrap: balance;
  max-width: none;
  white-space: nowrap;
}
.test-head-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.test-counter {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.test-counter-now { font-size: 36px; line-height: 1; }
.test-counter-sep { opacity: 0.4; }
.test-counter-total { opacity: 0.5; }
.test-nav { display: inline-flex; gap: 10px; }
.test-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), opacity .3s var(--ease);
}
.test-arrow:hover:not(:disabled) { background: var(--ink); color: var(--bg); }
.test-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.test-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 32px 0 56px;
  padding-left: max(var(--page-x), calc((100vw - 1320px) / 2));
  padding-right: max(var(--page-x), calc((100vw - 1320px) / 2));
  scroll-padding-left: max(var(--page-x), calc((100vw - 1320px) / 2));
  scrollbar-width: none;
  -ms-overflow-style: none;
  --tcw: min(calc(100vw - 2 * var(--page-x)), 1320px);
}
.test-track::-webkit-scrollbar { display: none; }

.test-card {
  flex: 0 0 calc((var(--tcw) - 44px) / 3);
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  min-height: 320px;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.test-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 80px;
  line-height: 0.4;
  color: var(--bg-2);
  height: 24px;
}
.test-cardtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.test-cardtop .test-stars { color: var(--accent); }
.test-q {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: -0.012em;
  font-weight: 500;
  color: var(--ink);
  margin: 0;
  text-wrap: pretty;
  flex: 1;
}
.test-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.test-avatar {
  width: 48px; height: 48px;
  border-radius: 50%; overflow: hidden;
  background: var(--bg-2);
  flex-shrink: 0;
}
.test-avatar img { width: 100%; height: 100%; object-fit: cover; }
.test-who { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.test-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}
.test-role {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.test-stars {
  display: flex; gap: 2px;
  color: var(--ink);
  margin-left: auto;
}

.test-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}
.test-dot {
  width: 24px; height: 3px;
  background: var(--line-strong);
  border: none;
  border-radius: 2px;
  padding: 0;
  cursor: pointer;
  transition: background .3s var(--ease), width .35s var(--ease);
}
.test-dot.on { background: var(--ink); width: 44px; }
.test-dot:hover:not(.on) { background: var(--ink-soft); }

@media (max-width: 1180px) {
  .test-card { flex: 0 0 calc((var(--tcw) - 22px) / 2); }
}
@media (max-width: 760px) {
  .test-head { grid-template-columns: 1fr; gap: 20px; }
  .test-head-right { justify-content: space-between; }
  .test-card { flex: 0 0 var(--tcw); min-height: 0; }
}

/* ─────── Social / Follow us ─────── */
.social {
  padding: 0;
  background: var(--bg);
}
.social-top {
  background: var(--bg);
  padding: 88px var(--page-x) 56px;
}
.social-top-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.social-eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}
.social-links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: clamp(24px, 3.5vw, 56px);
  align-items: center;
  flex-wrap: wrap;
}
.social-links a {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-block;
  position: relative;
  transition: opacity .35s var(--ease), transform .5s var(--ease);
}
.social-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 6%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.social-links a:hover { transform: translateY(-4px); }
.social-links a:hover::after { transform: scaleX(1); }

/* The strip where photos straddle the cream / image-bg boundary */
.social-strip {
  position: relative;
  padding: 0 var(--page-x);
  background: transparent;
  margin-bottom: clamp(-130px, -9vw, -90px);
  z-index: 2;
}
.social-tiles {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  align-items: end;
}
.social-tile {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bg-2);
  transform: translateY(0);
  transition: transform .5s var(--ease);
}
.social-tile img { width: 100%; height: 100%; object-fit: cover; }
.social-tile--rounded { border-radius: 28px; }
.social-tile--arch { border-radius: 50% 50% 28px 28px / 38% 38% 8% 8%; }
.social-tile:hover { transform: translateY(-8px); }
.social-tile:nth-child(odd)  { margin-top: 24px; }
.social-tile:nth-child(even) { margin-top: 0; }

.social-bottom {
  background: var(--ink);
  background-image: url('images/studio-interior.jpeg');
  background-size: cover;
  background-position: center;
  color: var(--bg);
  padding: clamp(210px, 17vw, 280px) var(--page-x) 180px;
  position: relative;
  isolation: isolate;
}
.social-bottom::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(54,50,45,0.72) 0%, rgba(54,50,45,0.85) 100%);
  z-index: -1;
}
.social-bottom-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 96px;
}
.social-headline {
  font-size: clamp(48px, 5.4vw, 84px);
  line-height: 1.02;
  font-weight: 500;
  letter-spacing: -0.022em;
  color: var(--bg);
  margin: 0;
  max-width: 34ch;
  text-wrap: balance;
}
.social-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 239, 230, 0.18);
}
.social-blurb {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 239, 230, 0.7);
  max-width: 48ch;
  text-wrap: pretty;
}
.social-phones {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}
.social-phone {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.01em;
  color: var(--bg);
  transition: color .25s var(--ease);
}
.social-phone:hover { color: var(--accent); }
.social-phone-sep {
  width: 1px; height: 22px;
  background: rgba(245, 239, 230, 0.3);
}

@media (max-width: 1180px) {
  .social-tiles { grid-template-columns: repeat(4, 1fr); }
  .social-tile:nth-child(n+5) { display: none; }
  .social-top-inner { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .social-foot { grid-template-columns: 1fr; gap: 28px; align-items: start; }
}
@media (max-width: 760px) {
  .social-tiles { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .social-tile:nth-child(n+4) { display: none; }
  .social-strip { margin-bottom: -60px; }
  .social-top { padding: 64px var(--page-x) 32px; }
  .social-bottom { padding: 110px var(--page-x) 80px; }
  .why-images { grid-template-columns: 1fr; }
  .why-images .img:nth-child(1) { margin-top: 0; }
  .social-phones { flex-wrap: wrap; gap: 12px; }
  .social-phone-sep { display: none; }
}

/* ─────── Final CTA ─────── */
/* ─────── Before / After comparison ─────── */
.results {
  background: var(--bg);
  padding-block: 160px;
}
.results-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.results-head h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 14px 0 0;
  color: var(--ink);
  text-wrap: balance;
  max-width: 14ch;
}
.results-blurb {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 42ch;
  margin-left: auto;
  padding-bottom: 18px;
}

.ba {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  background: var(--bg-2);
  box-shadow: var(--shadow);
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after-wrap {
  position: absolute; inset: 0;
  pointer-events: none;
  transition: clip-path 0.05s linear;
}
.ba-label {
  position: absolute;
  top: 28px;
  padding: 8px 18px 9px;
  background: rgba(54, 50, 45, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--bg);
  border: 1px solid rgba(245,239,230,0.18);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 500;
  font-family: 'Noto Sans', var(--font-body);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ba-label::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.ba-label--before { left: 28px; }
.ba-label--after { right: 28px; }
.ba-label--after::before { background: var(--bg); }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--bg);
  transform: translateX(-1px);
  pointer-events: none;
  box-shadow: 0 0 24px rgba(0,0,0,0.35);
}
.ba-divider::before,
.ba-divider::after {
  content: "";
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg);
}
.ba-divider::before { top: 0; }
.ba-divider::after { bottom: 0; }
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  border: 2px solid var(--bg);
  cursor: ew-resize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  pointer-events: auto;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.ba-handle:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--accent); }

.results-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.results-stat { display: flex; flex-direction: column; gap: 6px; }
.results-stat-n {
  font-family: var(--font-body);
  font-size: clamp(56px, 5.4vw, 88px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}
.results-stat-n sup {
  font-size: 0.45em;
  font-style: italic;
  font-weight: 400;
  vertical-align: super;
  margin-left: 2px;
  color: var(--ink-soft);
}
.results-stat-l {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

@media (max-width: 880px) {
  .results-head { grid-template-columns: 1fr; gap: 24px; }
  .ba { aspect-ratio: 4 / 5; }
  .ba-label { font-size: 13px; padding: 6px 12px; top: 16px; }
  .ba-label--before { left: 16px; }
  .ba-label--after { right: 16px; }
  .results-stats { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ─────── FAQ ─────── */
.faq {
  background: var(--paper);
  padding-block: 160px;
}
.faq-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.faq-head h2 {
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 96px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.022em;
  margin: 14px 0 0;
  color: var(--ink);
  text-wrap: balance;
  max-width: 27ch;
}
.faq-list {
  list-style: none;
  margin: 0; padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--line-strong);
  position: relative;
  transition: background .35s var(--ease);
}
.faq-item:hover { background: rgba(189,162,139,0.06); }
.faq-item:last-child { border-bottom: none; }
.faq-item.on { background: rgba(189,162,139,0.1); }
.faq-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: var(--accent);
  transition: width .4s var(--ease);
  display: none;
}
.faq-item.on::before { width: 0; }
.faq-q {
  display: grid;
  grid-template-columns: 70px 1fr 44px;
  align-items: center;
  gap: 36px;
  width: 100%;
  padding: 36px 36px 36px 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--ink);
}
.faq-n {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  opacity: 0.5;
  transition: opacity .35s var(--ease), color .35s var(--ease);
}
.faq-item.on .faq-n { opacity: 1; color: var(--ink); }
.faq-qt {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}
.faq-item.on .faq-qt { font-style: italic; }
.faq-toggle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .25s var(--ease);
}
.faq-item:hover .faq-toggle { border-color: var(--ink); }
.faq-item.on .faq-toggle {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.faq-item.on .faq-a-wrap {
  grid-template-rows: 1fr;
}
.faq-a-inner {
  overflow: hidden;
  min-height: 0;
}
.faq-a {
  margin: 0;
  padding: 0 80px 36px 138px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
  max-width: 78ch;
}

@media (max-width: 880px) {
  .faq-head { grid-template-columns: 1fr; gap: 24px; }
  .faq-q { grid-template-columns: 48px 1fr 38px; gap: 18px; padding: 26px 16px 26px 18px; }
  .faq-a { padding: 0 16px 28px 80px; font-size: 16px; }
  .faq-n { font-size: 22px; }
  .faq-toggle { width: 38px; height: 38px; }
}

/* ─────── Booking form (replaces Final CTA) ─────── */
.cta {
  background: var(--paper);
  padding: 0;
  --cta-gutter: max(var(--page-x), calc((100vw - 1320px) / 2));
}
.cta-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  min-height: 720px;
}
.cta-img {
  position: relative;
  background: var(--bg-2);
  overflow: hidden;
}
.cta-img img { width: 100%; height: 100%; object-fit: cover; }
.cta-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.0) 30%, rgba(26,26,26,0.65) 100%);
}
.cta-img-overlay {
  position: absolute;
  left: var(--cta-gutter); right: 48px; bottom: 48px;
  z-index: 1;
  color: var(--bg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cta-img-overlay .eyebrow {
  color: rgba(255,255,255,0.85);
}
.cta-img-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 500;
  color: var(--bg);
  margin: 0;
  text-wrap: balance;
  max-width: 14ch;
}
.cta-img-h .i { font-style: italic; }
.cta-img-meta {
  display: flex;
  gap: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 10px;
}
.cta-img-meta > div { display: flex; flex-direction: column; gap: 4px; }
.cta-img-meta-l {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.cta-img-meta-v {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.cta-form {
  padding: clamp(56px, 6vw, 96px) clamp(40px, 5vw, 88px);
  padding-right: max(clamp(40px, 5vw, 88px), var(--cta-gutter));
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: var(--paper);
}
.cta-form-head { display: flex; flex-direction: column; gap: 14px; }
.cta-form-head h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1;
  letter-spacing: -0.022em;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
  max-width: 14ch;
}
.cta-form-head h2 .i { font-style: italic; }
.cta-form-blurb {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  max-width: 50ch;
}

.cta-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field > span {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field > span em {
  text-transform: none;
  letter-spacing: 0;
  font-style: italic;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink-soft);
  opacity: 0.7;
  margin-left: 6px;
}
.field input,
.field textarea,
.field-select select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 10px 0 12px;
  font: inherit;
  font-size: 17px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color .25s var(--ease);
  font-family: inherit;
}
.field textarea {
  resize: vertical;
  min-height: 60px;
  line-height: 1.5;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-soft);
  opacity: 0.5;
}
.field input:focus,
.field textarea:focus,
.field-select select:focus {
  border-color: var(--ink);
}
.field-select {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line-strong);
  transition: border-color .25s var(--ease);
}
.field-select:focus-within { border-color: var(--ink); }
.field-select select {
  appearance: none;
  -webkit-appearance: none;
  border-bottom: none;
  padding-right: 24px;
  cursor: pointer;
}
.field-select svg {
  position: absolute;
  right: 4px;
  pointer-events: none;
  color: var(--ink-soft);
}
.field input[type="date"] {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
}

.cta-form-foot {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.cta-form-consent {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-soft);
  cursor: pointer;
  max-width: 38ch;
}
.cta-form-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.cta-form-consent input[type="checkbox"]:checked {
  background: var(--ink);
  border-color: var(--ink);
}
.cta-form-consent input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px; top: 1px;
  width: 6px; height: 10px;
  border: solid var(--bg);
  border-width: 0 1.6px 1.6px 0;
  transform: rotate(45deg);
}

.cta-form-submit { /* identical to .btn (uses shared rules) */ }

@media (max-width: 1180px) {
  .cta-inner { grid-template-columns: 1fr; min-height: 0; }
  .cta-img { min-height: 360px; }
  .cta-img-overlay { left: 32px; right: 32px; bottom: 32px; }
  .cta-form { padding: 64px 40px; }
}
@media (max-width: 760px) {
  .cta-form { padding: 48px 24px; }
  .cta-form-grid { grid-template-columns: 1fr; }
  .cta-form-foot { grid-template-columns: 1fr; gap: 20px; }
  .cta-img-meta { gap: 24px; flex-wrap: wrap; }
}

/* ─────── Footer ─────── */
footer {
  background: #151310;
  color: var(--bg);
  padding: 0 var(--page-x) 32px;
  position: relative;
  overflow: hidden;
}

/* Top CTA strip */
.footer-cta {
  border-bottom: 1px solid rgba(245, 239, 230, 0.12);
  padding: 96px 0 96px;
}
.footer-cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: end;
}
.footer-eyebrow {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.55);
  font-weight: 500;
}
.footer-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1.0;
  letter-spacing: -0.024em;
  font-weight: 500;
  color: var(--bg);
  margin: 16px 0 0;
  max-width: 22ch;
  text-wrap: balance;
}
.footer-h .i { font-style: italic; }

.footer-cta-btn { background: var(--bg); color: var(--ink); border: 1.5px solid var(--bg); }
.footer-cta-btn:hover { background: transparent; color: var(--bg); border-color: var(--bg); }

/* Mid columns */
.footer-mid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.7fr 1.2fr;
  gap: clamp(32px, 4vw, 80px);
  padding: 88px 0 80px;
}
.footer-col { display: flex; flex-direction: column; gap: 24px; }
.footer-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-logo svg { color: var(--accent); }
.footer-brand-blurb {
  margin: 0;
  color: rgba(245, 239, 230, 0.65);
  font-size: 14px;
  line-height: 1.6;
  max-width: 38ch;
}

.footer-news { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.footer-news-l {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.55);
}
.footer-news-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(245, 239, 230, 0.28);
  padding-bottom: 12px;
  transition: border-color .3s var(--ease);
}
.footer-news-row:focus-within { border-color: var(--bg); }
.footer-news input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--bg);
  font: inherit;
  font-size: 16px;
  padding: 6px 0;
}
.footer-news input::placeholder { color: rgba(245, 239, 230, 0.4); }
.footer-news button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  border: none;
  cursor: pointer;
  display: grid; place-items: center;
  transition: background .3s var(--ease), transform .4s var(--ease);
  flex-shrink: 0;
}
.footer-news button:hover { background: var(--accent); transform: rotate(45deg); }

footer h5 {
  font-size: 13px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.55);
  margin: 0;
  font-weight: 500;
}

.footer-loc { display: flex; flex-direction: column; gap: 28px; }
.footer-loc-item { display: flex; flex-direction: column; gap: 8px; }
.footer-loc-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--bg);
  line-height: 1.1;
}
.footer-loc-addr {
  font-size: 13px;
  color: rgba(245, 239, 230, 0.6);
  line-height: 1.55;
}
.footer-loc-link {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.3);
  padding-bottom: 4px;
  width: fit-content;
  transition: border-color .3s var(--ease);
}
.footer-loc-link:hover { border-color: var(--bg); }
.footer-loc-link svg { transition: transform .35s var(--ease); }
.footer-loc-link:hover svg { transform: translate(3px, -3px); }

footer ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-direction: column;
  gap: 14px;
  font-size: 15px;
}
footer ul a {
  color: rgba(245, 239, 230, 0.78);
  transition: color .25s var(--ease);
  display: inline-block;
}
footer ul a:hover { color: var(--bg); }

.footer-contact { gap: 18px; }
.footer-contact li a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 4px 0;
}
.footer-contact span {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.7);
}
.footer-contact em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--bg);
  letter-spacing: -0.005em;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.footer-social a {
  width: auto; height: auto;
  border: 1px solid rgba(245, 239, 230, 0.22);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 230, 0.85);
  display: inline-block;
  font-family: var(--font-body);
  font-style: normal;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.footer-social a:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
  transform: none;
}

/* Studio wordmark block — refined layout */
.footer-wordmark {
  margin: 24px 0 24px;
  display: flex;
  flex-direction: column;
  user-select: none;
  pointer-events: none;
}
.footer-wordmark-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.15);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.55);
  font-family: 'Noto Sans', var(--font-body);
}
.footer-meta-r {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.footer-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent);
}
.footer-wordmark-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(140px, 26vw, 420px);
  letter-spacing: -0.045em;
  line-height: 0.78;
  color: var(--bg);
  text-align: center;
  margin: 24px 0 8px;
  white-space: nowrap;
}
.footer-wordmark-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 239, 230, 0.15);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 20px);
  color: rgba(245, 239, 230, 0.85);
  letter-spacing: -0.005em;
}
.footer-wordmark-tag .dot {
  color: var(--accent);
  font-style: normal;
  font-size: 13px;
}

@media (max-width: 760px) {
  .footer-wordmark-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-wordmark-tag { flex-wrap: wrap; gap: 8px 14px; }
  .footer-wordmark-tag .dot { display: none; }
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
  color: rgba(245, 239, 230, 0.62);
  font-size: 13px;
  letter-spacing: 0.04em;
}
.footer-legal {
  display: inline-flex;
  gap: 22px;
  justify-content: center;
}
.footer-legal a {
  color: rgba(245, 239, 230, 0.55);
  transition: color .25s var(--ease);
}
.footer-legal a:hover { color: var(--bg); }
.footer-made { text-align: right; font-style: italic; font-family: var(--font-display); font-size: 14px; }

/* ─────── Responsive ─────── */
@media (max-width: 1180px) {
  :root { --page-x: 40px; }
  .services-row, .why-bottom { grid-template-columns: 1fr; gap: 40px; }
  .why-bottom { gap: 64px; }
  .footer-mid { grid-template-columns: 1fr 1fr; gap: 56px; }
  .footer-cta-row { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .footer-made, .footer-legal { text-align: center; justify-content: center; }
  .journal-grid, .cards-grid { grid-template-columns: 1fr 1fr; }
  .why-images .img:nth-child(1) { margin-top: 0; }
  .cta-img { order: 2; }
  .cta-form { order: 1; }
  .hero-bottom { grid-template-columns: 1fr; gap: 18px; }
  .hero-pills { order: -1; justify-content: flex-start; margin-left: 0; flex-wrap: wrap; }
  .hero-welcome { max-width: none; }
  .nav-menu { gap: 22px; }
  .nav-menu .nav-item > a { font-size: 13px; }
}
@media (max-width: 760px) {
  :root { --page-x: 20px; }
  section { padding-block: 80px; }
  .hero { margin: 8px 12px 12px; border-radius: 14px; }
  .hero-bottom { padding: 0 24px 32px; }
  .nav { grid-template-columns: 1fr auto; }
  .footer-cta { padding: 64px 0; }
  .footer-mid { padding: 56px 0; }
  footer { padding-inline: 28px; padding-bottom: 28px; }
  .footer-cta-btn { width: 100%; justify-content: center; text-align: center; }
  .services-head { grid-template-columns: 1fr; gap: 22px; }
  .why-head { margin-bottom: 36px; }
  .nav-menu { display: none; }
  .nav-cart { display: none; }
  .cards-grid, .journal-grid { grid-template-columns: 1fr; }
  .hero-bottom { grid-template-columns: 1fr; gap: 18px; }
  .hero-pills { order: -1; justify-content: flex-start; margin-left: 0; flex-wrap: wrap; }
  .footer-mid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .why-stat { border-right: none; padding: 0 16px; }
  .why-stat:nth-child(odd) { padding-left: 0; }
  .why-stat:nth-child(even) { padding-right: 0; }
  .services, .calc, .cards, .why, .journal, .testimonials, .results, .faq { padding-block: 76px; }
  .video-banner { padding: 56px 12px; }
  .services-head, .calc-head, .test-head, .results-head, .faq-head, .cards-head { margin-bottom: 36px; }
  .test-head h2 { white-space: normal; font-size: clamp(40px, 9vw, 56px); }
  .why-head { margin-bottom: 32px; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .hero-marquee-item { font-size: clamp(58px, 21vw, 104px); }
  .hero-pill { padding: 9px 14px; font-size: 12px; letter-spacing: 0.08em; }
  .hero-slide { filter: brightness(1.06); }
  .hero-slide:first-child { object-position: 26% center; }
  .statement { padding-top: 8px; }
  .why { padding-inline: 14px; }
  .word-marquee { padding: 44px 0; }
  .why-images { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-images .img:nth-child(1) { margin-top: 24px; }
  .benefit-t { font-size: clamp(24px, 6vw, 30px); }
  .calc-section-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .calc-panel { padding: 26px 14px; }
  .calc-footer { padding: 24px 14px; }
}

/* ─────── Immersive cinematic interlude (signature moment) ─────── */
.immersive {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background: #161310;
  display: grid;
  place-items: center;
}
.immersive-media {
  position: absolute;
  left: 0;
  right: 0;
  top: -14%;
  bottom: -14%;
  will-change: transform;
}
.immersive-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.immersive-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,16,13,0.84) 0%, rgba(20,16,13,0.9) 100%);
}
.immersive::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}
.immersive-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--bg);
  padding: 0 24px;
  max-width: 1180px;
}
.immersive-eyebrow {
  display: block;
  font-family: 'Noto Sans', var(--font-body);
  font-size: 13px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.82);
  margin-bottom: 36px;
}
.immersive-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(52px, 8.4vw, 140px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
.immersive-line { display: block; }
.immersive-h .i { font-style: italic; font-weight: 400; }
.immersive-caption {
  margin: 44px auto 0;
  max-width: 46ch;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.4;
  color: rgba(245,239,230,0.9);
  text-wrap: balance;
}
.immersive-cta {
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-top: 40px;
  padding: 18px 38px;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--ink);
  font-family: 'Noto Sans', var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.immersive-cta:hover { background: var(--btn-brown); color: var(--bg); transform: translateY(-2px); }
/* elegant soft reveal (opacity + rise, no clipping) */
.immersive-eyebrow,
.immersive-h,
.immersive-caption,
.immersive-cta {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 1s var(--ease), transform 1.15s var(--ease);
}
.immersive.in .immersive-eyebrow { transition-delay: 0.05s; }
.immersive.in .immersive-h { transition-delay: 0.2s; }
.immersive.in .immersive-caption { transition-delay: 0.55s; }
.immersive.in .immersive-cta { transition-delay: 0.72s; }
.immersive.in .immersive-eyebrow,
.immersive.in .immersive-h,
.immersive.in .immersive-caption,
.immersive.in .immersive-cta {
  opacity: 1;
  transform: none;
}
@media (max-width: 760px) {
  .immersive { min-height: 560px; }
}

/* ─────── Site-wide elegant scroll reveals ─────── */
html.reveal-on .rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
html.reveal-on .rv.in {
  opacity: 1;
  transform: none;
}

/* ─────── Booking modal ─────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(21,19,16,0.55);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: grid; place-items: center;
  padding: 24px;
  animation: modal-fade .3s var(--ease);
}
@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  position: relative;
  background: var(--paper);
  border-radius: 24px;
  padding: 48px;
  max-width: 560px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow);
  animation: modal-rise .4s var(--ease);
}
@keyframes modal-rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line); background: transparent;
  font-size: 22px; line-height: 1; color: var(--ink-soft);
  cursor: pointer; transition: background .25s var(--ease), color .25s var(--ease);
}
.modal-close:hover { background: var(--ink); color: var(--bg); }
.modal-h { font-family: var(--font-display); font-size: clamp(30px,4vw,46px); font-weight: 500; margin: 12px 0 24px; letter-spacing: -0.02em; line-height: 1.04; }
.modal-h .i { font-style: italic; }
.modal-summary { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 22px; margin-bottom: 24px; display: flex; flex-direction: column; gap: 11px; }
.modal-summary-row { display: flex; justify-content: space-between; gap: 16px; font-size: 15px; color: var(--ink-soft); }
.modal-summary-row > span:last-child { color: var(--ink); text-align: right; }
.modal-summary-total { border-top: 1px solid var(--line); padding-top: 11px; font-family: var(--font-display); }
.modal-summary-total > span:last-child { color: var(--accent); font-size: 22px; font-style: italic; }
.modal-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.modal-field { display: flex; flex-direction: column; gap: 7px; }
.modal-field > span { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.modal-field--full { grid-column: 1 / -1; }
.modal-field input, .modal-field textarea {
  font: inherit; font-family: var(--font-body); font-size: 15px;
  padding: 13px 16px; border: 1px solid var(--line-strong); border-radius: 12px;
  background: #fff; color: var(--ink); outline: none; width: 100%;
  transition: border-color .2s var(--ease);
}
.modal-field input:focus, .modal-field textarea:focus { border-color: var(--accent); }

/* Date input — full-field clickable + accent picker */
.date-input {
  accent-color: var(--accent);
  color-scheme: light;
  cursor: pointer;
  position: relative;
  font-variant-numeric: tabular-nums;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236F6862' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
/* Stretch the native picker trigger across the whole field so a click anywhere opens it */
.date-input::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: auto; height: auto;
  margin: 0; padding: 0;
  cursor: pointer;
  opacity: 0;
}
.date-input::-webkit-datetime-edit { padding: 1px 0; }
.modal-submit { grid-column: 1 / -1; justify-content: center; margin-top: 4px; }
.modal-done { text-align: center; padding: 12px 0; }
.modal-done-p { color: var(--ink-soft); margin: 14px 0 28px; line-height: 1.6; }
@media (max-width: 600px) {
  .modal { padding: 32px 22px; }
  .modal-form { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .video-banner { padding: 64px 12px; }
  .video-card { aspect-ratio: auto; min-height: 520px; border-radius: 14px; }
  .video-card-content { padding: 36px 28px; }
  .video-card-form { max-width: none; }
}

/* ─────── Premium "wow" layer ─────── */
/* Hero entrance — staggered rise on load */
@keyframes wow-rise {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: none; }
}
@keyframes wow-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero-welcome { animation: wow-rise 1.1s var(--ease) both 0.15s; }
.hero-pills .hero-pill { animation: wow-rise 0.9s var(--ease) both; }
.hero-pills .hero-pill:nth-child(1) { animation-delay: 0.40s; }
.hero-pills .hero-pill:nth-child(2) { animation-delay: 0.48s; }
.hero-pills .hero-pill:nth-child(3) { animation-delay: 0.56s; }
.hero-pills .hero-pill:nth-child(4) { animation-delay: 0.64s; }
.hero-pills .hero-pill:nth-child(5) { animation-delay: 0.72s; }
.hero-pills .hero-pill:nth-child(6) { animation-delay: 0.80s; }
.hero-marquee { animation: wow-fade 1.4s var(--ease) both 0.5s; }
.hero-scroll-btn { animation: hero-scroll-bob 2.4s ease-in-out infinite, wow-fade 1.2s var(--ease) both 0.9s; }

/* Slow ken-burns on the active service image */
.services-img-card.on img {
  animation: svc-kenburns 9s ease-out both;
}
@keyframes svc-kenburns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

/* Shine sweep on primary buttons */
.btn, .nav-cta, .calc-cta, .immersive-cta { position: relative; overflow: hidden; }
.btn::after, .nav-cta::after, .calc-cta::after, .immersive-cta::after {
  content: "";
  position: absolute; top: 0; left: -120%;
  width: 70%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
}
.btn:hover::after, .nav-cta:hover::after, .calc-cta:hover::after, .immersive-cta:hover::after {
  animation: btn-shine 0.85s var(--ease);
}
@keyframes btn-shine {
  to { left: 130%; }
}

/* Hero pill fill grows from center on hover */
.hero-pill { position: relative; z-index: 0; overflow: hidden; }

/* prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .immersive-eyebrow,
  .immersive-h,
  .immersive-caption,
  .immersive-cta { opacity: 1 !important; transform: none !important; }
  html.reveal-on .rv { opacity: 1 !important; transform: none !important; }
}
