@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=DM+Sans:wght@400;500;600;700;800;900&display=swap&subset=cyrillic,latin-ext");

:root {
  --ink: #352a44;
  --ink-deep: #11101d;
  --ink-soft: #2f253f;
  --paper: #faf2ea;
  --soft: #fafaf7;
  --mint: #e9fff4;
  --white: #ffffff;
  --line: rgba(53, 42, 68, 0.14);
  --muted: rgba(53, 42, 68, 0.72);
  --shadow: 0 28px 80px rgba(53, 42, 68, 0.14);
  --sans: "DM Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --h1-size: clamp(54px, 7.2vw, 112px);
  --h2-size: clamp(44px, 5.4vw, 82px);
  --body-size: 11px;
  --container-xl: 1440px;
  --container-lg: 1240px;
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --ease-soft: cubic-bezier(.2, .72, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }

.site-header {
  position: fixed;
  top: 18px;
  left: 22px;
  right: 22px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 20px;
  min-height: 64px;
  padding: 9px 10px 9px 18px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  background: rgba(20, 18, 32, .46);
  backdrop-filter: blur(22px);
}
.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(250, 250, 247, .92);
  box-shadow: 0 16px 38px rgba(53,42,68,.12);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  font-weight: 900;
}
.brand-logo {
  display: block;
  width: clamp(142px, 12.8vw, 198px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.24));
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: var(--ink);
  border-radius: 14px;
  background: var(--mint);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 700;
}
.brand-name { font-size: 18px; }
.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 32px);
  font-size: 14px;
  font-weight: 800;
}
.lang-switch {
  position: relative;
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  font-size: 11px;
  font-weight: 900;
}
.site-header.is-scrolled .lang-switch,
.site-header.is-open .lang-switch { border-color: var(--line); }
.lang-switch button {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  border-radius: 999px;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  cursor: pointer;
  opacity: .74;
  transition: opacity 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.lang-switch button:hover { opacity: 1; background: rgba(255,255,255,.14); }
.lang-switch button[aria-current="true"],
.lang-switch button.is-active {
  color: var(--ink);
  background: var(--mint);
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1.5px rgba(53,42,68,.28), 0 8px 20px rgba(53,42,68,.16);
}
.lang-switch button[aria-current="true"]::after,
.lang-switch button.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateX(-50%);
}
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  color: #202120;
  border-radius: 80px;
  background: var(--mint);
  font-size: 14px;
  font-weight: 900;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}
.header-cta:hover {
  transform: scale(1.03);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(233,255,244,.22);
}
.menu-button { display: none; }

.float-cta {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 6px 7px 6px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(233,255,244,.92);
  box-shadow: 0 18px 42px rgba(53,42,68,.2);
  backdrop-filter: blur(16px);
  font-weight: 900;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}
.float-cta:hover {
  transform: scale(1.03);
  background: var(--white);
  box-shadow: 0 22px 54px rgba(53,42,68,.28);
}
.call-cta b { font-size: 17px; }
.float-cta b,
.pill-cta b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--mint);
  transition: transform 260ms ease, color 260ms ease, background 260ms ease;
}

.hero { padding: 18px; }
.hero-frame {
  position: relative;
  min-height: clamp(660px, 86svh, 960px);
  overflow: hidden;
  border-radius: 34px;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 52% 70%, rgba(233,255,244,.16), transparent 28%),
    linear-gradient(180deg, rgba(16,17,28,.24), rgba(16,17,28,.12) 42%, rgba(16,17,28,.72)),
    linear-gradient(90deg, rgba(16,17,28,.72), rgba(16,17,28,.08) 62%, rgba(16,17,28,.5));
}
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 122px 8vw 150px;
  color: var(--white);
}
.hero h1 {
  width: min(930px, 100%);
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5.7vw, 88px);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -.01em;
  text-shadow: 0 14px 46px rgba(0,0,0,.26);
}
.hero .line {
  display: block;
  opacity: 0;
  transform: translateY(.45em);
  animation: riseIn 900ms ease forwards;
}
.line-left { text-align: left; }
.line-right { text-align: right; animation-delay: 120ms !important; }
.line-center { text-align: center; animation-delay: 240ms !important; }
.hero-word {
  position: relative;
  display: block;
  min-height: 1.04em;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}
.hero-word span {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: translate3d(0, 68%, 0);
  filter: blur(5px);
  will-change: transform, opacity, filter;
  animation: rotateWord 10.5s var(--ease-soft) infinite;
}
.hero-word span:nth-child(2) { animation-delay: 3.5s; }
.hero-word span:nth-child(3) { animation-delay: 7s; }
.hero-meta {
  position: absolute;
  left: 50%;
  bottom: 92px;
  z-index: 3;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 32px));
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0,0,0,.42);
}
.hero-meta p { margin: 4px 0; color: #fff; }
.hero-proof {
  position: absolute;
  right: 30px;
  bottom: 34px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 360px;
}
.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.pill-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 8px 8px 8px 28px;
  border-radius: 80px;
  border: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 260ms ease, background 260ms ease, color 260ms ease, box-shadow 260ms ease;
}
.pill-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 44px rgba(53,42,68,.18);
}
.pill-cta:hover b { transform: scale(1.08); }
.pill-cta.dark { color: var(--white); background: var(--ink); }
.pill-cta.dark:hover { background: #241a32; }
.pill-cta.light { color: #202120; background: var(--mint); }
.pill-cta.light:hover { background: var(--white); }
.pill-cta.light b { color: var(--white); background: var(--ink); }
.pill-cta.centered {
  display: flex;
  width: max-content;
  margin: 22px auto 0;
}
.help > .pill-cta {
  position: relative;
  z-index: 5;
}
.hero-cta {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  transform: translateX(-50%);
  min-width: 286px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 20px 56px rgba(53,42,68,.28);
}
.hero-cta span {
  white-space: nowrap;
}
.hero-cta:hover { transform: translateX(-50%) scale(1.03); }

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(52px, 6vw, 88px) 0;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: var(--body-size);
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}
h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 650;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
}
h2 { font-size: clamp(38px, 4.8vw, var(--h2-size)); }
h3 { font-size: clamp(25px, 2.45vw, 36px); }
p { color: var(--muted); }
em {
  font-style: italic;
  font-weight: 500;
}
.hero em,
h2 em,
h3 em,
.lead em {
  font-style: italic;
  font-weight: 600;
  letter-spacing: .01em;
}
h2 em,
h3 em {
  font-size: 1.03em;
}
.center { text-align: center; margin-inline: auto; }
.lead {
  color: var(--ink);
  font-size: clamp(20px, 2.35vw, 30px);
  line-height: 1.28;
}
.intro {
  width: min(1100px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px clamp(32px, 5vw, 64px);
  align-items: center;
}
.intro-card {
  grid-column: 1;
  grid-row: 1;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 28px;
  background: var(--soft);
  box-shadow: 0 16px 54px rgba(53,42,68,.08);
}
.intro-card h2 { font-size: clamp(36px, 3.6vw, 52px); }
.intro-card .lead { font-size: clamp(18px, 1.55vw, 23px); }
.intro-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 26px;
}
.intro-facts span {
  min-height: 74px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.intro-facts strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.intro-visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  aspect-ratio: 0.68;
  min-height: 0;
  overflow: hidden;
  border-radius: 999px 999px 26px 26px;
  clip-path: inset(0 round 999px 999px 26px 26px);
  background: var(--mint);
  box-shadow: 0 26px 70px rgba(53,42,68,.12);
}
.intro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}
.intro-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(53,42,68,0), rgba(53,42,68,.72));
  border-radius: inherit;
}
.intro-badges {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.intro-badges span {
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 900;
}
.intro-text {
  grid-column: 1;
  grid-row: 2;
  max-width: 620px;
}
.intro-text p { font-size: 16px; line-height: 1.72; }
.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 900;
}

.section-head { max-width: 820px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.light h2, .light .eyebrow { color: var(--white); }
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.treatment-item {
  min-height: 380px;
  padding: 24px clamp(22px, 3vw, 46px) 32px;
  text-align: center;
}
.treatment-item + .treatment-item { border-left: 1px solid var(--line); }
.treatment-item img {
  width: 172px;
  height: 132px;
  object-fit: contain;
  margin: 0 auto 42px;
  padding: 0;
  background: transparent;
  filter: grayscale(1) contrast(1.16);
  mix-blend-mode: darken;
  isolation: isolate;
}
.treatment-item {
  background-color: transparent;
}
.treatment-item.reveal { opacity: 1; transform: none; }
.treatment-item.reveal.is-visible { opacity: 1; transform: none; }
.treatment-item p { max-width: 360px; margin: 22px auto 0; }

.help {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  border-radius: 38px;
  background: radial-gradient(circle at 50% 45%, var(--mint), rgba(250,242,234,.96) 66%);
}
.help-head { position: relative; z-index: 2; text-align: center; }
.help-stage {
  position: relative;
  min-height: 520px;
  margin-top: 20px;
}
.help-ring {
  position: absolute;
  left: 50%;
  top: 48%;
  border: 1px solid rgba(53,42,68,.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: breath 9s ease-in-out infinite;
}
.help-ring-large { width: min(920px, 86vw); height: min(920px, 86vw); }
.help-ring-small { width: min(500px, 48vw); height: min(500px, 48vw); animation-delay: 1.4s; }
.help-photo {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(330px, 42vw);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 34px 70px rgba(53,42,68,.18);
}
.help-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(250,242,234,0), var(--paper));
}
.help-photo img { width: 100%; height: 100%; object-fit: cover; }
.help-list {
  position: absolute;
  top: 48%;
  z-index: 2;
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 15px;
}
.help-left { left: 12%; text-align: right; }
.help-right { right: 12%; }
.help-list li::after,
.help-list li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(53,42,68,.12);
}
.help-right li::before { margin: 0 12px 0 0; }
.help-right li::after,
.help-left li::before { display: none; }

.focus { width: min(1340px, calc(100% - 48px)); }
.focus-panel {
  padding: clamp(48px, 6vw, 76px) clamp(20px, 4vw, 48px);
  border-radius: 34px;
  background: var(--ink);
}
.focus-panel .section-head { margin-bottom: clamp(48px, 5vw, 70px); }
.focus-panel .section-head h2 { margin-bottom: 18px; }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.focus-card {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-radius: 20px;
  color: var(--white);
  background: #241a32;
}
.focus-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transition: transform 700ms ease;
}
.focus-card { transition: transform 300ms ease, box-shadow 300ms ease; }
.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,.22);
}
.focus-card:hover img { transform: scale(1.06); }
.focus-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(53,42,68,.04), rgba(53,42,68,.24) 35%, rgba(53,42,68,.9));
}
.focus-card span,
.focus-card h3,
.focus-card p {
  position: relative;
  z-index: 2;
}
.focus-card span {
  position: absolute;
  top: 22px;
  left: 24px;
  font-weight: 900;
  opacity: .8;
}
.focus-card h3 {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 82px;
  text-align: center;
  font-size: clamp(28px, 2.7vw, 38px);
}
.focus-card p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 30px;
  margin: 0;
  color: rgba(255,255,255,.88);
  text-align: center;
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.price-card {
  display: grid;
  align-content: space-between;
  gap: 24px;
  min-height: 390px;
  padding: clamp(28px, 3.5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--soft);
  transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
}
.price-card:hover {
  transform: translateY(-8px);
  border-color: rgba(53,42,68,.28);
  box-shadow: 0 26px 72px rgba(53,42,68,.14);
}
.price-card:hover strong { transform: translateX(8px); }
.price-card.featured {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(53,42,68,.96), rgba(53,42,68,.82)),
    url("assets/therapy-individual.jpg") center / cover;
}
.price-card.featured p,
.price-card.featured .eyebrow { color: rgba(255,255,255,.82); }
.price-card strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(54px, 6.6vw, 86px);
  font-weight: 650;
  line-height: .95;
  transition: transform 300ms ease;
}

.testimonials {
  width: min(1240px, calc(100% - 48px));
  overflow: hidden;
}
.testimonial-shell { position: relative; }
.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px 2px 16px;
}
.testimonial-track::-webkit-scrollbar { display: none; }
.testimonial-card {
  min-height: 350px;
  padding: clamp(28px, 3vw, 42px);
  border-radius: 24px;
  background: rgba(250,250,247,.94);
  box-shadow: 0 18px 52px rgba(53,42,68,.07);
  scroll-snap-align: start;
  display: grid;
  align-content: space-between;
  gap: 26px;
}
.quote-mark {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 72px;
  line-height: .62;
}
.testimonial-meta {
  margin: 0;
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}
.testimonial-card blockquote {
  margin: 0;
  color: #202120;
  font-family: var(--serif);
  font-size: clamp(23px, 1.7vw, 30px);
  line-height: 1.16;
}
.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.testimonial-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(53,42,68,.18);
  cursor: pointer;
  font-size: 34px;
  line-height: 1;
  transition: transform 240ms var(--ease-soft), background 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft);
}
.testimonial-controls button:hover {
  transform: translateY(-2px) scale(1.04);
  background: #241a32;
  box-shadow: 0 18px 44px rgba(53,42,68,.22);
}
.testimonial-controls button:active { transform: translateY(0) scale(.98); }
.testimonial-note {
  margin: 16px auto 0;
  color: rgba(53,42,68,.72);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(520px, 1fr);
  gap: clamp(38px, 7vw, 120px);
  align-items: start;
  width: min(1240px, calc(100% - 48px));
}
.faq-copy {
  position: sticky;
  top: 118px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faq-copy h2 {
  margin: 0;
  max-width: 480px;
}
.faq-copy .pill-cta {
  margin-top: auto;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid rgba(53,42,68,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 18px 52px rgba(53,42,68,.045);
  overflow: hidden;
  transition: border-color 260ms var(--ease-soft), box-shadow 260ms var(--ease-soft), transform 260ms var(--ease-soft), background 260ms var(--ease-soft);
}
.faq-item:hover,
.faq-item[open] {
  border-color: rgba(53,42,68,.28);
  background: rgba(250,250,247,.96);
  box-shadow: 0 24px 64px rgba(53,42,68,.09);
  transform: translateY(-2px);
}
.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 22px 64px 22px 26px;
  color: #202120;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.28;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 26px;
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 260ms var(--ease-soft);
}
.faq-item[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}
.faq-item p {
  margin: -4px 26px 26px;
  max-width: 660px;
  color: rgba(53,42,68,.76);
  font-size: 16px;
  line-height: 1.72;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}
.process-grid article {
  min-height: 270px;
  padding: 26px;
  background: var(--soft);
}
.process-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 48px;
  border-radius: 50%;
  background: var(--mint);
  font-weight: 900;
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 80px);
  padding: clamp(36px, 6vw, 74px);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(233,255,244,.94), rgba(250,250,247,.94) 58%, rgba(250,242,234,.96)),
    url("assets/therapy-burnout.jpg") center / cover;
  box-shadow: var(--shadow);
}
.contact-copy p { font-size: 16px; line-height: 1.72; }
.contact-quick {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}
.contact-quick a,
.contact-quick span {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(53,42,68,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  color: var(--ink);
  font-weight: 900;
}
.booking-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(53,42,68,.12);
  border-radius: 20px;
  background: rgba(250,250,247,.82);
  backdrop-filter: blur(16px);
}
.booking-form label { display: grid; gap: 8px; }
.booking-form label span,
.choice-field legend {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}
.booking-form textarea { min-height: 118px; resize: vertical; }
.choice-field {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}
.choice-field legend { grid-column: 1 / -1; margin-bottom: 8px; }
.choice-field label { position: relative; display: block; }
.choice-field input { position: absolute; opacity: 0; pointer-events: none; }
.choice-field span {
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
}
.choice-field input:checked + span { color: var(--white); border-color: var(--ink); background: var(--ink); }
.hidden-field { display: none; }
.form-button { width: 100%; }
.form-note { margin: 0; font-size: 13px; }

.site-footer {
  width: min(100% - 32px, 1560px);
  margin: 28px auto 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(36px, 7vw, 110px);
  padding: clamp(58px, 8vw, 112px) clamp(28px, 8vw, 150px);
  border-radius: 34px 34px 0 0;
  background: radial-gradient(circle at 60% 18%, rgba(233,255,244,.94), rgba(250,250,247,.72) 44%, rgba(250,250,247,.98) 72%);
}
.footer-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 46px;
  border-radius: 14px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
}
.footer-logo {
  display: block;
  width: clamp(172px, 16vw, 230px);
  height: auto;
  margin-bottom: 38px;
  object-fit: contain;
}
.footer-brand h2 {
  max-width: 760px;
  text-wrap: balance;
  overflow-wrap: break-word;
}
.footer-brand p { max-width: 560px; margin-top: 28px; }
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.phone-pill {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 80px;
  background: var(--soft);
  font-weight: 900;
  box-shadow: 0 0 40px rgba(0,0,0,.08);
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}
.phone-pill:hover {
  transform: translateY(-3px);
  background: var(--mint);
  box-shadow: 0 18px 48px rgba(53,42,68,.14);
}
.footer-info {
  display: grid;
  gap: 24px;
  align-content: center;
  font-weight: 800;
}
.footer-info p { margin: 0; color: var(--ink); }
.footer-info nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 36px;
}
.socials { display: flex; flex-wrap: wrap; gap: 10px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  transition: transform 260ms ease, background 260ms ease;
}
.socials a:hover { transform: translateY(-3px); background: var(--mint); }
.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
}
.social-icon path { fill: var(--ink); stroke: none; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(24px, 8vw, 150px);
  border-radius: 0 0 28px 28px;
  color: rgba(255,255,255,.76);
  background: var(--ink);
  font-weight: 700;
}
.footer-bottom a {
  color: var(--mint);
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-language {
  flex: 0 0 auto;
  color: rgba(255,255,255,.86);
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}
.footer-language button {
  min-width: 36px;
  color: inherit;
}
.footer-language button[aria-current="true"] {
  color: var(--ink);
  background: var(--mint);
}

.service-page {
  width: min(1080px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 62px;
}
.service-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(260px, .62fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(30px, 4.5vw, 52px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 82% 12%, rgba(233,255,244,.9), transparent 38%),
    linear-gradient(135deg, var(--soft), rgba(250,242,234,.96));
  box-shadow: var(--shadow);
}
.service-hero h1 {
  margin: 0;
  font-family: var(--serif);
  max-width: 680px;
  font-size: clamp(36px, 4.45vw, 58px);
  font-weight: 650;
  line-height: 1.1;
  text-wrap: balance;
  overflow-wrap: break-word;
  hyphens: none;
}
.service-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 18px;
  font-size: 16px;
  line-height: 1.72;
}
.service-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}
.service-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}
.service-hero img {
  width: 100%;
  aspect-ratio: 4 / 4.7;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(53,42,68,.13);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.service-cards article,
.service-detail,
.service-faq,
.service-cta-block {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--soft);
}
.service-cards article { min-height: 250px; }
.service-cards h2 {
  font-size: clamp(26px, 2.55vw, 34px);
}
.service-detail {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(24px, 5vw, 70px);
  margin-top: 18px;
}
.service-detail ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-detail li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 750;
  overflow-wrap: break-word;
}
.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(53,42,68,.12);
}
.service-faq {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.service-faq h2,
.service-cta-block h2 { font-size: clamp(34px, 4vw, 52px); }
details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}
summary {
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 900;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  float: right;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
}
details[open] summary::after { content: "-"; }
details p {
  max-width: 760px;
  margin: 0;
  padding: 0 24px 24px;
}
.service-cta-block {
  margin-top: 18px;
  background:
    radial-gradient(circle at 82% 12%, rgba(233,255,244,.9), transparent 40%),
    var(--soft);
}
.service-contact {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 0;
}
.single-message .service-hero { grid-template-columns: 1fr; }

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 800ms ease, transform 800ms ease;
}
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes riseIn { to { opacity: 1; transform: none; } }
@keyframes rotateWord {
  0%, 6% {
    opacity: 0;
    transform: translate3d(0, 68%, 0);
    filter: blur(5px);
  }
  13%, 31% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
  38%, 100% {
    opacity: 0;
    transform: translate3d(0, -62%, 0);
    filter: blur(4px);
  }
}
@keyframes breath {
  0%, 100% { opacity: .72; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: .34; transform: translate(-50%, -50%) scale(1.04); }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    left: 12px;
    right: 12px;
    gap: 12px;
    min-height: 60px;
    padding: 8px 8px 8px 14px;
  }
  .site-header > .main-nav,
  .site-header > .header-cta,
  .site-header > .lang-switch { display: none; }
  .menu-button {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: var(--mint);
  }
  .menu-button span { width: 18px; height: 2px; background: var(--ink); }
  .site-header.is-open {
    align-items: start;
    border-radius: 28px;
  }
  .site-header.is-open .brand,
  .site-header.is-open .menu-button {
    align-self: center;
  }
  .site-header.is-open .main-nav {
    display: grid;
    grid-column: 1 / -1;
    gap: 0;
    padding-top: 8px;
  }
  .site-header.is-open .main-nav a {
    padding: 13px 4px;
    border-top: 1px solid var(--line);
  }
  .site-header.is-open > .lang-switch {
    display: inline-flex;
    grid-column: 1 / -1;
    width: max-content;
    margin-top: 10px;
    color: var(--ink);
    border-color: var(--line);
    background: var(--white);
  }
  .intro,
  .contact-panel,
  .footer-main,
  .price-grid,
  .process-grid,
  .focus-grid,
  .treatment-grid,
  .faq,
  .service-hero,
  .service-cards,
  .service-detail { grid-template-columns: 1fr; }
  .intro-card,
  .intro-visual,
  .intro-text {
    grid-column: auto;
    grid-row: auto;
  }
  .intro-visual {
    width: min(360px, 100%);
    min-height: 0;
    margin: 0 auto;
  }
  .intro-visual img { min-height: 0; }
  .intro-facts { grid-template-columns: 1fr 1fr 1fr; }
  .hero h1 { font-size: clamp(44px, 8.5vw, 76px); }
  h2 { font-size: clamp(36px, 7vw, 58px); }
  h3 { font-size: clamp(24px, 4.8vw, 34px); }
  .treatment-item + .treatment-item { border-left: 0; border-top: 1px solid var(--line); }
  .testimonials { width: min(720px, calc(100% - 28px)); }
  .testimonial-track {
    grid-template-columns: none;
    grid-auto-columns: minmax(300px, 78vw);
  }
  .testimonial-card { min-height: 320px; }
  .faq {
    width: min(720px, calc(100% - 28px));
    gap: 24px;
  }
  .faq-copy {
    position: static;
    min-height: auto;
  }
  .faq-copy .pill-cta { margin-top: 22px; }
  .process-grid span { margin-bottom: 28px; }
  .process-grid article { min-height: auto; }
  .help {
    width: min(620px, calc(100% - 28px));
    min-height: auto;
    padding: 64px 22px 46px;
  }
  .help-stage {
    display: grid;
    min-height: auto;
    gap: 22px;
    margin-top: 30px;
  }
  .help-photo {
    position: relative;
    left: auto;
    top: auto;
    width: min(280px, 74vw);
    margin: 0 auto 20px;
    transform: none;
  }
  .help-ring { top: 238px; }
  .help-ring-large { width: min(390px, 108vw); height: min(390px, 108vw); }
  .help-ring-small { width: min(286px, 78vw); height: min(286px, 78vw); }
  .help-list {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    justify-items: center;
    gap: 15px;
    text-align: center;
    transform: none;
  }
  .help-left,
  .help-right { display: contents; }
  .help-list li::before { display: inline-block; margin: 0 12px 0 0; }
  .help-list li::after { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 0; }
  .hero-frame {
    min-height: min(720px, 100svh);
    border-radius: 0 0 24px 24px;
  }
  .brand-logo {
    width: min(156px, 43vw);
    max-height: 46px;
  }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name {
    display: block;
    max-width: 168px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
  }
  .hero-lines { place-items: end start; padding: 0 22px 214px; }
  .hero h1 {
    max-width: 330px;
    font-size: clamp(32px, 10.4vw, 44px);
    line-height: 1.08;
  }
  .line-left,
  .line-right,
  .line-center { text-align: left; }
  .hero-meta {
    left: 24px;
    right: 24px;
    bottom: 130px;
    width: auto;
    transform: none;
    text-align: left;
    letter-spacing: 0;
    font-size: 9px;
    line-height: 1.55;
  }
  .hero-proof {
    left: 24px;
    right: 24px;
    bottom: 76px;
    justify-content: flex-start;
    max-width: none;
  }
  .hero-proof span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }
  .hero-cta {
    bottom: 18px;
    width: auto;
    min-width: min(300px, calc(100% - 72px));
    max-width: calc(100% - 48px);
    min-height: 56px;
    padding-left: 26px;
  }
  .float-cta { right: 12px; bottom: 14px; }
  .section {
    width: calc(100% - 28px);
    padding: 46px 0;
  }
  .service-page {
    width: calc(100% - 28px);
    padding: 96px 0 50px;
  }
  .service-hero {
    padding: 26px 18px;
    border-radius: 24px;
  }
  .service-hero h1 {
    font-size: clamp(30px, 9.8vw, 42px);
    line-height: 1.13;
  }
  .service-hero p:not(.eyebrow) {
    font-size: 15px;
  }
  .service-hero img {
    max-height: 420px;
  }
  .service-cards article,
  .service-detail,
  .service-faq,
  .service-cta-block {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .service-detail ul {
    grid-template-columns: 1fr;
  }
  summary { padding: 20px; }
  details p { padding: 0 20px 22px; }
  h2 { font-size: clamp(30px, 9.5vw, 42px); }
  h3 { font-size: clamp(24px, 7.5vw, 32px); }
  .lead { font-size: 19px; line-height: 1.32; }
  .intro-facts {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .intro-facts span {
    min-height: 62px;
    text-align: center;
  }
  .intro-card,
  .contact-panel { padding: 28px 18px; border-radius: 24px; }
  .treatment-item {
    min-height: auto;
    padding: 26px 4px 34px;
  }
  .treatment-item img { height: 112px; margin-bottom: 26px; }
  .help-head h2 { font-size: clamp(34px, 10.4vw, 46px); }
  .focus { width: calc(100% - 18px); }
  .focus-panel { padding: 46px 14px 18px; border-radius: 24px; }
  .focus-card { min-height: 370px; border-radius: 18px; }
  .focus-card h3 { bottom: 84px; font-size: 28px; line-height: 1.12; }
  .price-card { min-height: auto; padding: 26px 20px; }
  .price-card strong { font-size: 58px; }
  .testimonial-track { grid-auto-columns: minmax(268px, 86vw); }
  .testimonial-card {
    min-height: 300px;
    padding: 28px 24px;
    border-radius: 20px;
  }
  .testimonial-card blockquote {
    font-size: 24px;
  }
  .testimonial-meta,
  .testimonial-note {
    letter-spacing: .16em;
  }
  .faq { gap: 20px; }
  .faq-copy h2 { max-width: 340px; }
  .faq-item { border-radius: 20px; }
  .faq-item summary {
    min-height: 66px;
    padding: 18px 52px 18px 20px;
    font-size: 16px;
  }
  .faq-item summary::after {
    right: 22px;
    width: 10px;
    height: 10px;
  }
  .faq-item p {
    margin: -2px 20px 22px;
    font-size: 15px;
    line-height: 1.62;
  }
  .choice-field { grid-template-columns: 1fr; }
  .contact-quick a,
  .contact-quick span {
    min-height: 44px;
    border-radius: 16px;
    overflow-wrap: break-word;
  }
  .service-facts { margin-bottom: 22px; }
  .site-footer { width: calc(100% - 16px); }
  .footer-main {
    padding: 42px 20px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
  }
  .footer-logo {
    width: min(204px, 72vw);
    margin: 0 auto 28px;
  }
  .footer-brand h2 {
    max-width: 100%;
    font-size: clamp(32px, 9.6vw, 44px);
  }
  .footer-actions .pill-cta,
  .phone-pill { width: 100%; justify-content: center; }
  .footer-info {
    min-width: 0;
    gap: 18px;
    font-size: 14px;
  }
  .footer-info p,
  .footer-info a {
    overflow-wrap: break-word;
  }
  .footer-info nav { grid-template-columns: 1fr; }
  .socials { justify-content: center; }
  .footer-bottom {
    display: grid;
    justify-items: center;
    text-align: center;
    padding: 22px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-word {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-word span {
    display: none;
    position: static;
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero-word span:first-child {
    display: block;
  }
}

/* Premium Balancia-inspired design pass */
:root {
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ui: "DM Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius-lg: 34px;
  --radius-md: 22px;
  --ease-soft: cubic-bezier(.2, .72, .2, 1);
}

body {
  background:
    linear-gradient(180deg, var(--white) 0 38%, rgba(250,242,234,.62) 100%);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.68;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body * { letter-spacing: 0; }

button,
input,
select,
textarea {
  font-family: var(--ui);
}

.brand-mark,
h1,
h2,
h3,
.title,
.lead,
.intro-facts strong,
.price-card strong,
.footer-mark {
  font-family: var(--display);
}

h1,
h2,
h3,
.title {
  font-weight: 500;
  line-height: 1.02;
  overflow-wrap: break-word;
}

h2 {
  font-size: 72px;
  max-width: 960px;
}

h3 { font-size: 36px; }

h2 em,
h3 em,
.hero em,
.accent-italic {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
}

p {
  font-size: 16px;
  line-height: 1.72;
}

.eyebrow {
  color: rgba(53,42,68,.74);
  font-family: var(--ui);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.section-head {
  margin-bottom: 46px;
}

.site-header {
  min-height: 68px;
  background: rgba(15, 14, 25, .58);
  box-shadow: 0 18px 48px rgba(15,14,25,.12);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255,255,255,.9);
}

.brand-mark {
  border-radius: 15px;
  font-size: 28px;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  transition: color 240ms var(--ease-soft), opacity 240ms var(--ease-soft);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity 240ms var(--ease-soft), transform 240ms var(--ease-soft);
}

.main-nav a:hover::after {
  opacity: .72;
  transform: scaleX(1);
}

.header-cta,
.pill-cta,
.phone-pill,
.float-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 280ms var(--ease-soft),
    background 280ms var(--ease-soft),
    color 280ms var(--ease-soft),
    box-shadow 280ms var(--ease-soft);
}

.header-cta::before,
.pill-cta::before,
.phone-pill::before,
.float-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,.28), rgba(255,255,255,0));
  opacity: 0;
  transform: translateX(-65%);
  transition: opacity 280ms var(--ease-soft), transform 520ms var(--ease-soft);
}

.header-cta:hover,
.pill-cta:hover,
.phone-pill:hover,
.float-cta:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 20px 50px rgba(53,42,68,.18);
}

.brand:focus-visible,
.main-nav a:focus-visible,
.lang-switch button:focus-visible,
.menu-button:focus-visible,
.testimonial-controls button:focus-visible,
.faq-item summary:focus-visible,
.header-cta:focus-visible,
.pill-cta:focus-visible,
.phone-pill:focus-visible,
.float-cta:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(233,255,244,.95);
  outline-offset: 4px;
}

.pill-cta:active,
.header-cta:active,
.float-cta:active {
  transform: translateY(-1px) scale(.99);
}

.hero-cta:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.015);
}

.hero-cta:active {
  transform: translateX(-50%) translateY(-1px) scale(.99);
}

.header-cta:hover::before,
.pill-cta:hover::before,
.phone-pill:hover::before,
.float-cta:hover::before {
  opacity: 1;
  transform: translateX(65%);
}

.pill-cta b,
.float-cta b {
  transition: transform 280ms var(--ease-soft), background 280ms var(--ease-soft), color 280ms var(--ease-soft);
}

.pill-cta:hover b,
.float-cta:hover b {
  transform: translateX(3px) scale(1.06);
}

.pill-cta.dark:hover {
  background: #2a2038;
}

.pill-cta.light:hover,
.header-cta:hover {
  background: var(--white);
}

.hero-frame {
  min-height: 820px;
  border-radius: 38px;
}

.hero-shade {
  background:
    radial-gradient(circle at 52% 62%, rgba(233,255,244,.14), transparent 30%),
    radial-gradient(circle at 30% 70%, rgba(250,242,234,.18), transparent 34%),
    linear-gradient(180deg, rgba(12,13,22,.14), rgba(12,13,22,.18) 42%, rgba(12,13,22,.76)),
    linear-gradient(90deg, rgba(12,13,22,.72), rgba(12,13,22,.08) 58%, rgba(12,13,22,.48));
}

.hero-lines {
  padding: 132px 8vw 168px;
}

.hero h1 {
  width: min(1040px, 100%);
  font-size: 100px;
  font-weight: 500;
  line-height: .94;
  text-shadow: 0 18px 54px rgba(0,0,0,.34);
}

.hero .line {
  transform: translateY(.32em);
  animation: riseIn 1000ms var(--ease-soft) forwards;
}

.hero-meta {
  bottom: 96px;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 800;
  text-shadow: 0 3px 20px rgba(0,0,0,.52);
}

.hero-proof {
  bottom: 36px;
}

.hero-proof span,
.service-facts span,
.intro-badges span {
  backdrop-filter: blur(14px);
}

.intro {
  width: min(1120px, calc(100% - 48px));
  grid-template-columns: minmax(0, .95fr) 360px;
  gap: 30px 70px;
}

.intro-card {
  padding: 48px;
  border: 1px solid rgba(53,42,68,.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 90% 8%, rgba(233,255,244,.9), transparent 38%),
    rgba(250,250,247,.96);
  box-shadow: 0 22px 70px rgba(53,42,68,.09);
}

.intro-card h2 {
  font-size: 56px;
}

.intro-card .lead {
  max-width: 760px;
  font-size: 27px;
  line-height: 1.16;
}

.intro-text p {
  max-width: 640px;
  font-size: 16px;
}

.intro-visual {
  border-radius: 999px 999px 30px 30px;
  clip-path: inset(0 round 999px 999px 30px 30px);
  transform: translateZ(0);
}

.intro-visual img {
  transition: transform 900ms var(--ease-soft);
}

.intro-visual:hover img {
  transform: scale(1.045);
}

.treatment-grid {
  border-color: rgba(53,42,68,.13);
}

.treatment-item {
  min-height: 390px;
  padding: 28px 46px 36px;
}

.treatment-item img {
  transition: transform 600ms var(--ease-soft), filter 600ms var(--ease-soft);
}

.treatment-item:hover img {
  transform: translateY(-8px) scale(1.035);
  filter: grayscale(1) contrast(1.08);
}

.treatment-item h3 {
  font-size: 31px;
}

.treatment-item p {
  font-size: 15px;
}

.help {
  min-height: 760px;
  background:
    radial-gradient(circle at 50% 45%, rgba(233,255,244,1), rgba(250,250,247,.88) 40%, rgba(250,242,234,.92) 76%);
  box-shadow: inset 0 0 0 1px rgba(53,42,68,.07);
}

.help-head h2 {
  margin-inline: auto;
  font-size: 70px;
}

.help-list {
  font-size: 16px;
}

.help-list li {
  transition: transform 260ms var(--ease-soft), color 260ms var(--ease-soft);
}

.help-list li:hover {
  color: #21172d;
  transform: translateX(4px);
}

.help-left li:hover {
  transform: translateX(-4px);
}

.help-photo {
  box-shadow: 0 36px 82px rgba(53,42,68,.16);
}

.focus-panel {
  padding: 76px 48px 54px;
  border-radius: 36px;
  box-shadow: 0 32px 86px rgba(53,42,68,.16);
}

.focus-panel .section-head {
  margin-bottom: 64px;
}

.focus-panel .section-head h2 {
  margin-inline: auto;
  font-size: 76px;
}

.focus-card {
  min-height: 470px;
  border-radius: 22px;
}

.focus-card::after {
  background:
    linear-gradient(180deg, rgba(53,42,68,.02), rgba(53,42,68,.18) 34%, rgba(53,42,68,.92)),
    radial-gradient(circle at 50% 84%, rgba(233,255,244,.12), transparent 40%);
}

.focus-card h3 {
  bottom: 88px;
  font-size: 38px;
  line-height: 1.02;
}

.focus-card p {
  font-size: 15px;
}

.price-card {
  border-radius: 26px;
}

.price-card strong {
  font-size: 82px;
}

.process-grid article,
.testimonial-card,
.service-cards article,
.service-detail,
.service-faq,
.service-cta-block,
.booking-form {
  transition: transform 280ms var(--ease-soft), box-shadow 280ms var(--ease-soft), border-color 280ms var(--ease-soft);
}

.process-grid article:hover,
.testimonial-card:hover,
.service-cards article:hover {
  transform: translateY(-5px);
  border-color: rgba(53,42,68,.22);
  box-shadow: 0 22px 54px rgba(53,42,68,.1);
}

.contact-panel {
  border: 1px solid rgba(53,42,68,.08);
  border-radius: 34px;
}

.contact-copy h2 {
  font-size: 56px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(53,42,68,.22);
  border-color: rgba(53,42,68,.38);
  box-shadow: 0 0 0 5px rgba(233,255,244,.76);
}

.footer-brand h2 {
  font-size: 78px;
}

.service-hero h1 {
  font-size: 60px;
  font-weight: 500;
  line-height: 1.02;
}

.service-cards h2 {
  font-size: 38px;
}

.service-faq h2,
.service-cta-block h2 {
  font-size: 56px;
}

.lang-switch button[aria-current="true"],
.lang-switch button.is-active {
  box-shadow: inset 0 0 0 1px rgba(53,42,68,.18), 0 8px 20px rgba(53,42,68,.14);
}

.reveal {
  opacity: 0;
  transform: translateY(38px) scale(.985);
  transition:
    opacity 820ms var(--ease-soft),
    transform 820ms var(--ease-soft);
  transition-delay: calc(var(--reveal-index, 0) * 48ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  h2 { font-size: 62px; }
  .hero h1 { font-size: 82px; }
  .focus-panel .section-head h2,
  .footer-brand h2 { font-size: 64px; }
}

@media (max-width: 980px) {
  h2 { font-size: 54px; }
  h3 { font-size: 32px; }
  .hero-frame { min-height: 760px; }
  .hero h1 { font-size: 68px; }
  .intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .intro-card h2,
  .contact-copy h2,
  .service-hero h1 { font-size: 48px; }
  .focus-panel .section-head h2,
  .help-head h2,
  .footer-brand h2 { font-size: 56px; }
  .focus-grid,
  .price-grid,
  .service-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  p { font-size: 15px; line-height: 1.68; }
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
    min-height: 58px;
  }
  .hero-frame {
    min-height: 720px;
    border-radius: 0 0 28px 28px;
  }
  .hero-lines {
    padding: 0 22px 222px;
  }
  .hero h1 {
    max-width: 340px;
    font-size: 46px;
    line-height: .98;
  }
  .hero-meta {
    bottom: 132px;
    font-size: 10px;
  }
  .hero-proof {
    bottom: 78px;
  }
  .hero-cta {
    min-width: 250px;
  }
  .section {
    width: calc(100% - 28px);
    padding-top: 54px;
    padding-bottom: 54px;
  }
  h2,
  .intro-card h2,
  .contact-copy h2,
  .service-hero h1,
  .service-faq h2,
  .service-cta-block h2 {
    font-size: 42px;
    line-height: 1.02;
  }
  h3,
  .treatment-item h3,
  .service-cards h2 {
    font-size: 30px;
  }
  .intro-card,
  .contact-panel {
    padding: 28px 20px;
  }
  .intro-card .lead {
    font-size: 23px;
    line-height: 1.16;
  }
  .treatment-item {
    padding: 28px 10px 36px;
  }
  .help {
    padding: 58px 22px 46px;
  }
  .help-head h2,
  .focus-panel .section-head h2,
  .footer-brand h2 {
    font-size: 44px;
  }
  .help-photo {
    width: min(260px, 72vw);
  }
  .focus-panel {
    padding: 48px 16px 20px;
  }
  .focus-card {
    min-height: 390px;
  }
  .focus-card h3 {
    font-size: 34px;
  }
  .price-card strong {
    font-size: 62px;
  }
  .footer-main {
    padding: 42px 20px;
  }
}

.intro-visual {
  aspect-ratio: 0.68;
  overflow: hidden;
  border-radius: 999px 999px 30px 30px;
  clip-path: inset(0 round 999px 999px 30px 30px);
}

.intro-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

/* Final text safety pass for RU/LV/EN */
.hero h1,
.hero-meta,
.eyebrow,
.main-nav,
.lang-switch,
.pill-cta,
.header-cta,
.footer-info,
.booking-form,
.service-facts,
.intro-badges {
  letter-spacing: 0;
}

.section-head,
.intro-card,
.intro-text,
.treatment-item,
.help,
.focus-card,
.price-card,
.process-grid article,
.contact-panel,
.footer-brand,
.footer-info,
.service-hero,
.service-cards article,
.service-detail,
.service-faq,
.service-cta-block {
  overflow-wrap: break-word;
}

.focus-card h3,
.service-cards h2,
.service-hero h1,
.service-cta-block h2,
.footer-brand h2 {
  hyphens: none;
}

/* Fixed header and floating call CTA safeguards */
.site-header {
  color: var(--white);
  background: rgba(12, 13, 24, .9);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 18px 48px rgba(12,13,24,.22);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--white);
  background: rgba(12, 13, 24, .88);
  border-color: rgba(255,255,255,.18);
}

.site-header.is-scrolled .lang-switch,
.site-header.is-open .lang-switch {
  border-color: rgba(255,255,255,.22);
}

.site-header.is-scrolled .main-nav a,
.site-header.is-open .main-nav a {
  color: var(--white);
}

.float-cta.call-cta {
  position: fixed;
  top: auto;
  left: auto;
  right: 18px;
  bottom: 22px;
  z-index: 60;
  transform: none;
}

.float-cta.call-cta:hover {
  transform: translateY(-3px) scale(1.015);
}

.brand-mark {
  object-fit: contain;
}

img.brand-mark,
img.footer-mark {
  padding: 0;
}

.hero-cta.pill-cta {
  position: absolute;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 24px;
  z-index: 12;
  transform: translateX(-50%);
  justify-content: center;
  min-width: min(286px, calc(100% - 48px));
}

.hero-cta.pill-cta:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.015);
}

.price-card.is-selected {
  border-color: rgba(53,42,68,.44);
  box-shadow: 0 28px 76px rgba(53,42,68,.17);
}

@media (max-width: 980px) {
  .site-header.is-open {
    color: var(--ink);
    background: rgba(250,250,247,.96);
    border-color: var(--line);
  }

  .site-header.is-open .main-nav a,
  .site-header.is-open .brand-name {
    color: var(--ink);
  }

  .site-header.is-open > .lang-switch {
    color: var(--ink);
    border-color: var(--line);
    background: var(--white);
  }
}

@media (max-width: 640px) {
  .float-cta.call-cta {
    right: 14px;
    bottom: 14px;
    width: 54px;
    min-width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
    justify-content: center;
  }

  .float-cta.call-cta span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .float-cta.call-cta b {
    width: 42px;
    height: 42px;
  }
}

/* Senior Balancia-inspired polish pass: tokens, header, hero, first content section */
:root {
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ui: "DM Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #352a44;
  --ink-deep: #10111d;
  --ink-panel: #151421;
  --paper: #faf2ea;
  --soft: #fafaf7;
  --mint: #e9fff4;
  --line: rgba(53, 42, 68, .14);
  --line-on-dark: rgba(255, 255, 255, .18);
  --muted: rgba(53, 42, 68, .72);
  --shadow-premium: 0 34px 90px rgba(53, 42, 68, .18);
  --shadow-dark: 0 28px 80px rgba(6, 7, 14, .36);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 22px;
  --ease-soft: cubic-bezier(.2, .72, .2, 1);
}

body {
  background:
    radial-gradient(circle at 50% 820px, rgba(233,255,244,.42), transparent 360px),
    linear-gradient(180deg, #ffffff 0%, #ffffff 42%, rgba(250,242,234,.62) 100%);
  color: var(--ink);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.68;
}

h1,
h2,
h3,
.lead,
.price-card strong {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(44px, 5.35vw, 82px);
  line-height: .98;
}

h3 {
  font-size: clamp(29px, 2.55vw, 40px);
  line-height: 1.03;
}

.eyebrow {
  font-family: var(--ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .34em;
  line-height: 1.3;
}

.section {
  width: min(1240px, calc(100% - 56px));
  padding-top: clamp(76px, 7.4vw, 124px);
  padding-bottom: clamp(76px, 7.4vw, 124px);
}

.site-header {
  top: 22px;
  left: 28px;
  right: 28px;
  grid-template-columns: minmax(150px, auto) minmax(0, 1fr) auto auto;
  gap: clamp(16px, 2vw, 30px);
  min-height: 70px;
  padding: 10px 12px 10px 22px;
  border: 1px solid var(--line-on-dark);
  border-radius: 999px;
  color: var(--white);
  background: rgba(16, 17, 29, .9);
  box-shadow: 0 20px 60px rgba(6, 7, 14, .24);
  backdrop-filter: blur(22px);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--white);
  border-color: var(--line-on-dark);
  background: rgba(16, 17, 29, .92);
  box-shadow: 0 20px 60px rgba(6, 7, 14, .28);
}

.brand-logo {
  width: clamp(168px, 13.2vw, 214px);
  max-height: 54px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.28));
}

.main-nav {
  justify-content: center;
  gap: clamp(18px, 2.25vw, 38px);
  color: rgba(255,255,255,.96);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 12px 0;
}

.lang-switch {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
}

.header-cta {
  min-height: 52px;
  padding: 0 25px;
  border-radius: 80px;
  background: var(--mint);
  box-shadow: none;
  color: #202120;
}

.hero {
  padding: 14px 16px 0;
}

.hero-frame {
  min-height: min(850px, calc(100svh - 28px));
  border-radius: var(--radius-xl);
  background: var(--ink-deep);
  box-shadow: var(--shadow-dark);
}

.hero-video {
  object-fit: cover;
  object-position: center 47%;
  filter: saturate(.92) contrast(1.04) brightness(.9);
  transform: scale(1.01);
}

.hero-shade {
  background:
    radial-gradient(circle at 64% 48%, rgba(233,255,244,.2), transparent 22%),
    radial-gradient(circle at 35% 66%, rgba(250,242,234,.2), transparent 34%),
    linear-gradient(180deg, rgba(9,10,18,.2) 0%, rgba(9,10,18,.13) 42%, rgba(9,10,18,.78) 100%),
    linear-gradient(90deg, rgba(9,10,18,.74) 0%, rgba(9,10,18,.08) 56%, rgba(9,10,18,.56) 100%);
}

.hero-lines {
  padding: 128px 8vw 178px;
}

.hero h1 {
  width: min(1110px, 100%);
  font-size: clamp(54px, 7.15vw, 116px);
  font-weight: 500;
  line-height: .92;
  letter-spacing: 0;
  text-shadow: 0 24px 62px rgba(0,0,0,.38);
}

.hero h1 em {
  font-weight: 500;
}

.line-left {
  text-align: left;
}

.line-right {
  text-align: right;
}

.line-center {
  text-align: center;
}

.hero-word {
  min-height: .98em;
}

.hero-word span {
  filter: blur(4px);
}

.hero-meta {
  bottom: 106px;
  width: min(620px, calc(100% - 44px));
  color: rgba(255,255,255,.96);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.55;
}

.hero-proof {
  right: 28px;
  bottom: 34px;
  gap: 9px;
}

.hero-proof span {
  min-height: 38px;
  padding: 0 16px;
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
  font-size: 10px;
}

.pill-cta,
.header-cta,
.phone-pill,
.float-cta {
  transition: transform 280ms var(--ease-soft), background 280ms var(--ease-soft), color 280ms var(--ease-soft), box-shadow 280ms var(--ease-soft);
}

.pill-cta:hover,
.header-cta:hover,
.phone-pill:hover,
.float-cta:hover {
  transform: translateY(-3px) scale(1.015);
}

.hero-cta.pill-cta {
  bottom: 26px;
  min-width: min(312px, calc(100% - 48px));
  min-height: 62px;
  padding-left: 30px;
  background: var(--ink);
  box-shadow: 0 24px 64px rgba(5,6,12,.34);
}

.hero-cta.pill-cta:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.015);
}

.intro {
  width: min(1240px, calc(100% - 56px));
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  gap: 34px clamp(48px, 6vw, 96px);
  align-items: center;
  padding-top: clamp(88px, 8vw, 132px);
  padding-bottom: clamp(88px, 8vw, 132px);
}

.intro-card {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 68px);
  border: 1px solid rgba(53,42,68,.1);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 0%, rgba(233,255,244,.8), transparent 30%),
    linear-gradient(135deg, rgba(250,250,247,.98), rgba(250,242,234,.74));
  box-shadow: 0 28px 78px rgba(53,42,68,.09);
}

.intro-card h2 {
  max-width: 620px;
  font-size: clamp(42px, 4.6vw, 70px);
  line-height: .96;
}

.intro-card .lead {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(53,42,68,.9);
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.26;
}

.intro-facts {
  gap: 12px;
  margin-top: 34px;
}

.intro-facts span {
  min-height: 88px;
  padding: 17px 16px;
  border-color: rgba(53,42,68,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.78);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.intro-facts strong {
  margin-bottom: 5px;
  font-size: 31px;
}

.intro-visual {
  aspect-ratio: .72;
  border: 1px solid rgba(53,42,68,.1);
  border-radius: 999px 999px 28px 28px;
  background: var(--paper);
  box-shadow: 0 34px 86px rgba(53,42,68,.15);
}

.intro-visual img {
  filter: saturate(.94) contrast(1.03);
}

.intro-visual::after {
  height: 42%;
  background:
    radial-gradient(ellipse at 50% 22%, rgba(255,255,255,.18), transparent 42%),
    linear-gradient(180deg, rgba(53,42,68,0), rgba(53,42,68,.76));
}

.intro-badges {
  left: 20px;
  right: 20px;
  bottom: 20px;
}

.intro-badges span {
  padding: 9px 14px;
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}

.intro-text {
  max-width: 680px;
  padding-left: 28px;
  border-left: 1px solid rgba(53,42,68,.16);
}

.intro-text p {
  color: rgba(53,42,68,.74);
  font-size: 17px;
  line-height: 1.72;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .brand-logo {
    width: 168px;
  }
}

@media (max-width: 980px) {
  .site-header {
    left: 14px;
    right: 14px;
    top: 12px;
    min-height: 62px;
    padding: 8px 8px 8px 14px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header.is-open {
    color: var(--white);
    background: rgba(16,17,29,.96);
    border-color: var(--line-on-dark);
  }

  .site-header.is-open .main-nav a {
    color: var(--white);
  }

  .site-header.is-open > .lang-switch {
    color: var(--white);
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.08);
  }

  .brand-logo {
    width: min(164px, 46vw);
    max-height: 48px;
  }

  .menu-button {
    background: var(--mint);
  }

  .hero {
    padding: 0;
  }

  .hero-frame {
    min-height: min(760px, 100svh);
    border-radius: 0 0 28px 28px;
  }

  .hero-lines {
    place-items: end start;
    padding: 0 24px 218px;
  }

  .hero h1 {
    width: min(420px, 100%);
    font-size: clamp(39px, 10.8vw, 58px);
    line-height: 1.02;
  }

  .line-left,
  .line-right,
  .line-center {
    text-align: left;
  }

  .hero-meta {
    left: 24px;
    right: 24px;
    bottom: 132px;
    width: auto;
    transform: none;
    text-align: left;
    letter-spacing: .04em;
    font-size: 10px;
  }

  .hero-proof {
    left: 24px;
    right: 24px;
    bottom: 82px;
    justify-content: flex-start;
    max-width: none;
  }

  .hero-proof span {
    min-height: 31px;
    padding: 0 11px;
    font-size: 10px;
  }

  .hero-cta.pill-cta {
    bottom: 18px;
    min-height: 58px;
  }

  .intro {
    width: min(720px, calc(100% - 28px));
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .intro-card {
    padding: 34px 22px;
    border-radius: 28px;
  }

  .intro-visual {
    width: min(360px, 100%);
  }

  .intro-text {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .section {
    width: calc(100% - 28px);
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(35px, 11.2vw, 46px);
  }

  .hero-cta.pill-cta {
    min-width: min(306px, calc(100% - 52px));
    padding-left: 24px;
  }

  .intro {
    width: calc(100% - 28px);
  }

  .intro-card h2 {
    font-size: clamp(35px, 10.2vw, 46px);
  }

  .intro-card .lead {
    font-size: 20px;
  }

  .intro-facts {
    grid-template-columns: 1fr;
  }
}

/* Homepage luxury refinement pass */
:root {
  --lux-dark: #070711;
  --lux-dark-2: #11101d;
  --lux-ink: #2c2436;
  --lux-muted: #6f6878;
  --lux-purple: #3b235c;
  --lux-purple-2: #4a2d73;
  --lux-paper: #faf7f1;
  --lux-paper-2: #f7f4ef;
  --lux-mint: #e8fff3;
  --lux-line: rgba(44,36,54,.12);
  --lux-line-dark: rgba(255,255,255,.16);
  --lux-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --lux-sans: "DM Sans", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  color: var(--lux-ink);
  background:
    radial-gradient(circle at 50% 780px, rgba(232,255,243,.42), transparent 340px),
    linear-gradient(180deg, #fff 0 31%, var(--lux-paper) 76%, #fff 100%);
  font-family: var(--lux-sans);
  font-size: 17px;
  line-height: 1.66;
}

p {
  color: var(--lux-muted);
  font-family: var(--lux-sans);
  font-size: 17px;
  line-height: 1.66;
}

h1,
h2,
h3,
.lead,
.testimonial-card blockquote,
.price-card strong,
.intro-facts strong {
  font-family: var(--lux-serif);
  color: var(--lux-ink);
  font-weight: 500;
  letter-spacing: -.012em;
}

h2 {
  font-size: clamp(58px, 6vw, 92px);
  line-height: .96;
}

h3 {
  font-size: clamp(29px, 2.6vw, 38px);
  line-height: 1.05;
}

em,
h2 em,
h3 em,
.hero em {
  font-family: var(--lux-serif);
  font-style: italic;
  font-weight: 500;
}

.eyebrow {
  color: rgba(44,36,54,.68);
  font-family: var(--lux-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .11em;
  line-height: 1.35;
}

.section {
  width: min(1240px, calc(100% - 64px));
  padding-top: clamp(96px, 8vw, 140px);
  padding-bottom: clamp(96px, 8vw, 140px);
}

.section-head {
  max-width: 880px;
  margin-bottom: clamp(48px, 5vw, 76px);
}

.site-header {
  top: 22px;
  left: 28px;
  right: 28px;
  min-height: 72px;
  padding: 10px 12px 10px 22px;
  grid-template-columns: minmax(180px, auto) minmax(0, 1fr) auto auto;
  gap: clamp(18px, 2.4vw, 36px);
  color: #fff;
  border: 1px solid var(--lux-line-dark);
  border-radius: 999px;
  background: rgba(7,7,17,.88);
  box-shadow: 0 22px 70px rgba(5,5,13,.26);
  backdrop-filter: blur(24px);
}

.site-header.is-scrolled,
.site-header.is-open {
  color: #fff;
  border-color: var(--lux-line-dark);
  background: rgba(7,7,17,.92);
  box-shadow: 0 24px 74px rgba(5,5,13,.3);
}

.brand-logo {
  width: clamp(174px, 13.5vw, 222px);
  max-height: 56px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.35));
}

.main-nav {
  gap: clamp(18px, 2.2vw, 38px);
  color: rgba(255,255,255,.94);
  font-family: var(--lux-sans);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a::after {
  bottom: 7px;
  height: 1px;
  opacity: 0;
}

.main-nav a:hover::after {
  opacity: .54;
}

.lang-switch {
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.9);
}

.header-cta {
  min-height: 54px;
  padding: 0 28px;
  background: var(--lux-mint);
  color: #202120;
  font-family: var(--lux-sans);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  padding: 14px 16px 0;
}

.hero-frame {
  min-height: min(870px, calc(100svh - 28px));
  border-radius: 40px;
  background: var(--lux-dark);
  box-shadow: 0 34px 90px rgba(5,5,13,.34);
}

.hero-video {
  object-position: center 48%;
  filter: saturate(.86) contrast(1.06) brightness(.86);
}

.hero-shade {
  background:
    radial-gradient(circle at 62% 49%, rgba(232,255,243,.2), transparent 23%),
    radial-gradient(circle at 29% 72%, rgba(250,247,241,.2), transparent 34%),
    linear-gradient(180deg, rgba(5,5,13,.12) 0%, rgba(5,5,13,.22) 50%, rgba(5,5,13,.84) 100%),
    linear-gradient(90deg, rgba(5,5,13,.78) 0%, rgba(5,5,13,.08) 57%, rgba(5,5,13,.62) 100%);
}

.hero-lines {
  padding: 138px 8vw 188px;
}

.hero h1 {
  width: min(1130px, 100%);
  color: #fff;
  font-size: clamp(88px, 7.75vw, 128px);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.018em;
  text-shadow: 0 28px 70px rgba(0,0,0,.42);
}

.hero h1 em {
  color: #fff;
}

.hero-word {
  min-height: .94em;
}

.hero-meta {
  bottom: 112px;
  color: rgba(255,255,255,.92);
  font-family: var(--lux-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

.hero-proof {
  right: 30px;
  bottom: 34px;
  gap: 10px;
}

.hero-proof span {
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-size: 10px;
  font-weight: 700;
}

.pill-cta,
.header-cta,
.phone-pill,
.float-cta {
  border-radius: 999px;
  font-family: var(--lux-sans);
  font-weight: 700;
  transition: transform 280ms var(--ease-soft), background 280ms var(--ease-soft), border-color 280ms var(--ease-soft), box-shadow 280ms var(--ease-soft);
}

.pill-cta {
  min-height: 58px;
  padding-left: 30px;
}

.pill-cta.dark {
  background: var(--lux-purple);
  color: #fff;
}

.pill-cta.dark:hover {
  background: var(--lux-purple-2);
}

.pill-cta.light {
  background: var(--lux-mint);
  color: #202120;
}

.hero-cta.pill-cta {
  bottom: 26px;
  min-width: min(322px, calc(100% - 52px));
  min-height: 62px;
  background: var(--lux-purple);
  box-shadow: 0 24px 70px rgba(5,5,13,.38);
}

.hero-cta.pill-cta:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.012);
}

.intro {
  width: min(1240px, calc(100% - 64px));
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(42px, 6vw, 92px);
  padding-top: clamp(104px, 8.5vw, 148px);
  padding-bottom: clamp(104px, 8.5vw, 148px);
}

.intro-card {
  padding: clamp(48px, 5.8vw, 74px);
  border: 1px solid var(--lux-line);
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232,255,243,.72), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(250,247,241,.82));
  box-shadow: none;
}

.intro-card h2 {
  max-width: 650px;
  font-size: clamp(54px, 5.25vw, 84px);
  line-height: .94;
}

.intro-card .lead {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(44,36,54,.88);
  font-size: clamp(23px, 2.1vw, 31px);
  line-height: 1.22;
}

.intro-facts {
  gap: 12px;
  margin-top: 38px;
}

.intro-facts span {
  min-height: 92px;
  border: 1px solid var(--lux-line);
  border-radius: 22px;
  background: rgba(255,255,255,.68);
  color: var(--lux-muted);
}

.intro-facts strong {
  color: var(--lux-ink);
  font-size: 32px;
}

.intro-visual {
  border: 1px solid var(--lux-line);
  border-radius: 999px 999px 30px 30px;
  box-shadow: none;
}

.intro-text {
  max-width: 650px;
  padding-left: 34px;
  border-left: 1px solid var(--lux-line);
}

.intro-text p,
.contact-copy p {
  color: var(--lux-muted);
  font-size: 17px;
  line-height: 1.7;
}

.text-link {
  color: var(--lux-purple);
}

.treatment {
  width: min(1280px, calc(100% - 64px));
}

.treatment-grid {
  border-top: 1px solid var(--lux-line);
  border-bottom: 1px solid var(--lux-line);
  background: transparent;
}

.treatment-item {
  min-height: 420px;
  padding: 34px clamp(24px, 3.4vw, 54px) 42px;
  background: transparent;
}

.treatment-item + .treatment-item {
  border-left: 1px solid var(--lux-line);
}

.treatment-item img {
  width: 166px;
  height: 126px;
  margin-bottom: 46px;
  opacity: .68;
  filter: grayscale(1) contrast(1.05);
}

.treatment-item h3 {
  color: var(--lux-ink);
  font-size: clamp(30px, 2.55vw, 38px);
}

.treatment-item p {
  max-width: 370px;
  margin-top: 24px;
  color: var(--lux-muted);
}

.help {
  width: min(1240px, calc(100% - 64px));
  min-height: 760px;
  border: 1px solid rgba(44,36,54,.08);
  border-radius: 40px;
  background:
    radial-gradient(circle at 50% 44%, rgba(232,255,243,.86), rgba(250,247,241,.96) 58%, rgba(255,255,255,.94) 100%);
}

.help-head h2 {
  font-size: clamp(58px, 5.8vw, 88px);
}

.help-ring {
  border-color: rgba(44,36,54,.12);
}

.help-photo {
  box-shadow: none;
  border: 1px solid var(--lux-line);
}

.help-list {
  color: var(--lux-ink);
  font-size: 16px;
  font-weight: 700;
}

.help-list li::after,
.help-list li::before {
  background: var(--lux-purple);
  box-shadow: 0 0 0 4px rgba(59,35,92,.1);
}

.focus {
  width: min(1360px, calc(100% - 64px));
}

.focus-panel {
  padding: clamp(72px, 6.4vw, 94px) clamp(30px, 4vw, 54px) clamp(52px, 5vw, 72px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% -18%, rgba(232,255,243,.08), transparent 32%),
    linear-gradient(145deg, #352a44, #2f253f 64%, #352a44);
  box-shadow: none;
}

.focus-panel .section-head h2 {
  color: rgba(255,255,255,.96);
  font-size: clamp(58px, 5.4vw, 84px);
}

.focus-panel .section-head .eyebrow {
  color: rgba(232,255,243,.82);
}

.focus-grid {
  gap: clamp(18px, 2vw, 28px);
}

.focus-card {
  min-height: 480px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  box-shadow: none;
}

.focus-card::after {
  background:
    linear-gradient(180deg, rgba(53,42,68,.02), rgba(53,42,68,.2) 34%, rgba(29,20,40,.92)),
    radial-gradient(circle at 50% 84%, rgba(232,255,243,.1), transparent 40%);
}

.focus-card h3 {
  bottom: 88px;
  color: rgba(255,255,255,.96);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1;
}

.focus-card p {
  bottom: 32px;
  color: rgba(255,255,255,.86);
  font-size: 15px;
  font-weight: 500;
}

.price-grid {
  gap: clamp(24px, 4vw, 54px);
}

.price-card {
  min-height: 470px;
  padding: clamp(36px, 4vw, 56px);
  border: 1px solid var(--lux-line);
  border-radius: 32px;
  background: rgba(255,255,255,.68);
  box-shadow: none;
}

.price-card.featured {
  background:
    linear-gradient(145deg, rgba(44,36,54,.96), rgba(59,35,92,.86)),
    url("assets/therapy-individual.jpg") center / cover;
}

.price-card h3 {
  font-size: clamp(34px, 3.2vw, 48px);
}

.price-card strong {
  font-size: clamp(64px, 6.4vw, 92px);
  line-height: .9;
}

.testimonials {
  width: min(1280px, calc(100% - 64px));
}

.testimonial-card {
  min-height: 380px;
  border: 1px solid rgba(44,36,54,.06);
  border-radius: 28px;
  background: rgba(250,250,247,.9);
  box-shadow: none;
}

.testimonial-card blockquote {
  color: #202120;
  font-size: clamp(25px, 1.8vw, 32px);
  line-height: 1.14;
}

.faq {
  width: min(1240px, calc(100% - 64px));
  gap: clamp(52px, 8vw, 128px);
}

.faq-copy h2 {
  font-size: clamp(58px, 5.4vw, 84px);
}

.faq-item {
  border: 1px solid var(--lux-line);
  border-radius: 24px;
  background: rgba(255,255,255,.76);
  box-shadow: none;
}

.faq-item:hover,
.faq-item[open] {
  box-shadow: none;
  border-color: rgba(44,36,54,.2);
}

.process-grid {
  border-color: var(--lux-line);
  background: var(--lux-line);
}

.process-grid article {
  background: rgba(250,250,247,.78);
}

.contact {
  width: min(1240px, calc(100% - 64px));
}

.contact-panel {
  gap: clamp(34px, 5vw, 76px);
  padding: clamp(42px, 5vw, 72px);
  border: 1px solid var(--lux-line);
  border-radius: 38px;
  background:
    radial-gradient(circle at 0 0, rgba(232,255,243,.72), transparent 32%),
    linear-gradient(135deg, rgba(250,250,247,.98), rgba(250,247,241,.84));
  box-shadow: none;
}

.contact-copy h2 {
  font-size: clamp(50px, 5vw, 76px);
}

.booking-form {
  border: 1px solid rgba(44,36,54,.1);
  border-radius: 30px;
  background: rgba(255,255,255,.76);
  box-shadow: none;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border-color: var(--lux-line);
  background: rgba(255,255,255,.86);
}

.site-footer {
  width: min(100% - 32px, 1560px);
}

.footer-main {
  border: 1px solid rgba(44,36,54,.08);
  border-bottom: 0;
  background:
    radial-gradient(circle at 60% 10%, rgba(232,255,243,.86), transparent 34%),
    linear-gradient(135deg, rgba(250,250,247,.98), rgba(250,247,241,.82));
}

.footer-brand h2 {
  font-size: clamp(58px, 5.6vw, 88px);
}

.footer-bottom {
  background: var(--lux-ink);
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(72px, 8vw, 96px);
  }

  .main-nav {
    gap: 18px;
    font-size: 13px;
  }

  .brand-logo {
    width: 168px;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    left: 14px;
    right: 14px;
    min-height: 62px;
    padding: 8px 8px 8px 14px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header > .main-nav,
  .site-header > .header-cta,
  .site-header > .lang-switch {
    display: none;
  }

  .site-header.is-open .main-nav {
    display: grid;
  }

  .site-header.is-open > .lang-switch {
    display: inline-flex;
    color: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.2);
    background: rgba(255,255,255,.07);
  }

  .brand-logo {
    width: min(164px, 46vw);
    max-height: 48px;
  }

  .hero {
    padding: 0;
  }

  .hero-frame {
    min-height: min(760px, 100svh);
    border-radius: 0 0 30px 30px;
  }

  .hero-lines {
    place-items: end start;
    padding: 0 24px 222px;
  }

  .hero h1 {
    width: min(460px, 100%);
    font-size: clamp(50px, 13vw, 66px);
    line-height: .96;
  }

  .line-left,
  .line-right,
  .line-center {
    text-align: left;
  }

  .hero-meta {
    left: 24px;
    right: 24px;
    bottom: 136px;
    width: auto;
    transform: none;
    text-align: left;
    letter-spacing: .04em;
  }

  .hero-proof {
    left: 24px;
    right: 24px;
    bottom: 82px;
    justify-content: flex-start;
    max-width: none;
  }

  .hero-cta.pill-cta {
    bottom: 18px;
  }

  .section,
  .intro,
  .treatment,
  .help,
  .focus,
  .testimonials,
  .faq,
  .contact {
    width: min(720px, calc(100% - 28px));
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .intro,
  .faq,
  .contact-panel,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .intro-card {
    padding: 36px 24px;
  }

  .intro-card h2,
  .help-head h2,
  .focus-panel .section-head h2,
  .faq-copy h2,
  .contact-copy h2,
  .footer-brand h2 {
    font-size: clamp(44px, 10vw, 62px);
  }

  .intro-visual {
    width: min(360px, 100%);
    margin-inline: auto;
  }

  .intro-text {
    padding-left: 0;
    border-left: 0;
  }

  .treatment-grid,
  .focus-grid,
  .price-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .treatment-item + .treatment-item {
    border-left: 0;
    border-top: 1px solid var(--lux-line);
  }

  .focus-panel,
  .contact-panel {
    border-radius: 30px;
  }

  .focus-card {
    min-height: 420px;
  }

  .help {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  p {
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(47px, 13.2vw, 60px);
  }

  .hero-lines {
    padding: 0 22px 214px;
  }

  .hero-meta {
    bottom: 130px;
    font-size: 9px;
  }

  .hero-proof {
    bottom: 76px;
  }

  .hero-proof span {
    min-height: 30px;
    padding: 0 10px;
    font-size: 9px;
  }

  .hero-cta.pill-cta {
    min-width: min(304px, calc(100% - 48px));
    min-height: 56px;
  }

  .section,
  .intro,
  .treatment,
  .help,
  .focus,
  .testimonials,
  .faq,
  .contact {
    width: calc(100% - 28px);
    padding-top: 64px;
    padding-bottom: 64px;
  }

  h2,
  .intro-card h2,
  .help-head h2,
  .focus-panel .section-head h2,
  .faq-copy h2,
  .contact-copy h2,
  .footer-brand h2 {
    font-size: clamp(42px, 11vw, 54px);
  }

  .intro-card,
  .price-card,
  .testimonial-card,
  .contact-panel,
  .booking-form {
    border-radius: 24px;
  }

  .intro-facts {
    grid-template-columns: 1fr;
  }

  .focus-panel {
    padding: 48px 16px 20px;
  }

  .focus-card {
    min-height: 370px;
  }

  .focus-card h3 {
    font-size: 32px;
  }
}

/* Final homepage stability and interaction polish */
html {
  scroll-padding-top: 104px;
}

.main-nav a,
.header-cta,
.pill-cta,
.phone-pill,
.float-cta,
.focus-card,
.price-card,
.testimonial-card,
.faq-item,
.booking-form input,
.booking-form select,
.booking-form textarea {
  -webkit-tap-highlight-color: transparent;
}

.header-cta,
.pill-cta,
.phone-pill,
.float-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  will-change: transform;
}

.header-cta::before,
.pill-cta::before,
.phone-pill::before,
.float-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: translateX(-120%);
  transition: transform 520ms var(--ease-soft);
}

.header-cta:hover,
.pill-cta:hover,
.phone-pill:hover,
.float-cta:hover {
  transform: translateY(-3px) scale(1.012);
  box-shadow: 0 18px 42px rgba(44,36,54,.18);
}

.header-cta:hover::before,
.pill-cta:hover::before,
.phone-pill:hover::before,
.float-cta:hover::before {
  transform: translateX(120%);
}

.hero-cta.pill-cta:hover {
  transform: translateX(-50%) translateY(-3px) scale(1.012);
  box-shadow: 0 24px 70px rgba(5,5,13,.42);
}

.pill-cta b {
  flex: 0 0 auto;
  transition: transform 280ms var(--ease-soft), background 280ms var(--ease-soft), color 280ms var(--ease-soft);
}

.pill-cta:hover b {
  transform: translateX(2px) scale(1.04);
}

.hero h1,
.section-head h2,
.intro-card h2,
.help-head h2,
.focus-panel .section-head h2,
.contact-copy h2,
.footer-brand h2 {
  text-wrap: balance;
}

.intro-card .lead,
.treatment-item p,
.price-card p,
.contact-copy p,
.testimonial-card blockquote,
.faq-item p {
  text-wrap: pretty;
}

.intro-visual {
  aspect-ratio: 4 / 5.7;
  overflow: hidden;
}

.intro-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-item img {
  mix-blend-mode: multiply;
}

.focus-card img {
  transform: scale(1.01);
  transition: transform 700ms var(--ease-soft), filter 700ms var(--ease-soft);
}

.focus-card:hover img {
  transform: scale(1.065);
  filter: saturate(.98) contrast(1.06);
}

.price-card:hover,
.testimonial-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(44,36,54,.2);
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 88px;
  }

  .site-header.is-open {
    align-items: start;
    border-radius: 30px;
    padding: 10px 12px 16px 16px;
  }

  .site-header.is-open .brand {
    align-self: center;
  }

  .site-header.is-open .menu-button {
    align-self: center;
  }

  .site-header.is-open .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    padding: 14px 6px 8px;
    gap: 2px;
  }

  .site-header.is-open .main-nav a {
    min-height: 40px;
    padding: 0 10px;
    border-radius: 16px;
    color: rgba(255,255,255,.94);
  }

  .site-header.is-open .main-nav a:hover {
    background: rgba(255,255,255,.08);
  }

  .site-header.is-open > .lang-switch {
    grid-column: 1 / -1;
    justify-self: start;
    margin-left: 6px;
  }

  .help-stage {
    min-height: 520px;
  }

  .help-photo {
    width: min(300px, 76vw);
  }

  .help-left,
  .help-right {
    position: relative;
    inset: auto;
    width: min(420px, 100%);
    margin: 18px auto 0;
    columns: 2;
  }

  .help-list li {
    break-inside: avoid;
    justify-content: flex-start;
    margin-bottom: 14px;
  }

  .footer-main,
  .footer-bottom {
    border-radius: 28px;
  }

  .footer-bottom {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: min(150px, 48vw);
  }

  .hero-frame {
    min-height: min(720px, 100svh);
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(44px, 12.4vw, 56px);
  }

  .hero-lines {
    padding-inline: 20px;
  }

  .hero-meta {
    max-width: 310px;
  }

  .help-left,
  .help-right {
    columns: 1;
    max-width: 280px;
  }

  .testimonial-card {
    min-height: 320px;
    padding: 32px 24px;
  }

  .testimonial-card blockquote {
    font-size: 24px;
  }

  .footer-main {
    padding: 46px 22px 34px;
  }

  .footer-actions {
    width: 100%;
  }

  .footer-actions .pill-cta,
  .footer-actions .phone-pill {
    width: 100%;
    justify-content: center;
  }
}

/* Client review finesse pass */
.site-header {
  top: 18px;
  left: 22px;
  right: 22px;
  min-height: 66px;
  padding: 8px 10px 8px 20px;
  box-shadow: 0 18px 52px rgba(5,5,13,.22);
}

.brand-logo {
  width: clamp(164px, 12vw, 204px);
  max-height: 50px;
}

.main-nav {
  gap: clamp(18px, 2vw, 34px);
  font-size: 13px;
}

.header-cta {
  min-height: 50px;
  padding-inline: 26px;
}

.lang-switch {
  min-height: 42px;
}

.hero {
  padding: 12px 12px 0;
}

.hero-frame {
  min-height: min(820px, calc(100svh - 24px));
  border-radius: 34px;
}

.hero-lines {
  padding: 122px 8vw 178px;
}

.hero h1 {
  width: min(1040px, 100%);
  font-size: clamp(78px, 6.85vw, 112px);
  line-height: .9;
  letter-spacing: -.01em;
}

.hero-meta {
  bottom: 108px;
  font-size: 10px;
}

.hero-cta.pill-cta {
  bottom: 28px;
  min-width: min(300px, calc(100% - 52px));
  min-height: 58px;
}

.hero-proof span {
  min-height: 34px;
}

.float-cta {
  right: 22px;
  bottom: 20px;
  min-height: 54px;
  padding: 0 18px;
  gap: 12px;
  box-shadow: 0 14px 36px rgba(44,36,54,.14);
}

.intro {
  width: min(1120px, calc(100% - 64px));
  grid-template-columns: minmax(0, .95fr) minmax(300px, 360px);
  gap: clamp(34px, 4.8vw, 72px);
  padding-top: clamp(82px, 6.4vw, 116px);
  padding-bottom: clamp(82px, 6.4vw, 116px);
}

.intro-card {
  padding: clamp(38px, 4.4vw, 58px);
  border-radius: 30px;
}

.intro-card h2 {
  max-width: 560px;
  font-size: clamp(50px, 4.55vw, 72px);
}

.intro-card .lead {
  max-width: 620px;
  font-size: clamp(21px, 1.7vw, 27px);
  line-height: 1.25;
}

.intro-facts {
  margin-top: 30px;
}

.intro-facts span {
  min-height: 78px;
  padding: 18px;
}

.intro-facts strong {
  font-size: 28px;
}

.intro-visual {
  width: min(360px, 100%);
  align-self: center;
  justify-self: center;
}

.intro-text {
  max-width: 610px;
  margin-top: -16px;
}

.treatment {
  padding-top: clamp(86px, 7vw, 120px);
  padding-bottom: clamp(86px, 7vw, 120px);
}

.treatment .section-head {
  margin-bottom: clamp(42px, 4.2vw, 64px);
}

.treatment-item {
  min-height: 380px;
  padding-top: 30px;
}

.treatment-item img {
  width: 142px;
  height: 112px;
  margin-bottom: 38px;
}

.help {
  min-height: 700px;
  padding-top: clamp(76px, 6.2vw, 104px);
  padding-bottom: clamp(76px, 6.2vw, 104px);
}

.focus {
  padding-top: clamp(76px, 6.5vw, 112px);
  padding-bottom: clamp(76px, 6.5vw, 112px);
}

.focus-panel {
  padding-top: clamp(62px, 5.2vw, 82px);
  padding-bottom: clamp(44px, 4.2vw, 62px);
}

.focus-card {
  min-height: 438px;
}

.focus-card h3 {
  bottom: 82px;
  font-size: clamp(31px, 2.7vw, 40px);
}

.pricing {
  padding-top: clamp(80px, 6.4vw, 112px);
  padding-bottom: clamp(86px, 6.8vw, 118px);
}

.price-card {
  min-height: 430px;
  padding: clamp(34px, 3.6vw, 50px);
}

.price-card h3 {
  font-size: clamp(32px, 2.8vw, 44px);
}

.price-card strong {
  font-size: clamp(56px, 5.4vw, 78px);
}

.testimonials {
  padding-top: clamp(82px, 6.6vw, 116px);
  padding-bottom: clamp(86px, 6.8vw, 120px);
}

.testimonials .section-head {
  margin-bottom: clamp(38px, 4vw, 58px);
}

.testimonial-card {
  min-height: 336px;
  padding: clamp(32px, 3.2vw, 46px);
}

.testimonial-card blockquote {
  font-size: clamp(21px, 1.35vw, 26px);
  line-height: 1.2;
}

.testimonial-meta {
  margin-bottom: 30px;
  letter-spacing: .18em;
}

.quote-mark {
  margin-bottom: 22px;
}

.faq {
  align-items: start;
  padding-top: clamp(80px, 6.2vw, 112px);
  padding-bottom: clamp(82px, 6.4vw, 116px);
}

.faq-copy {
  position: sticky;
  top: 124px;
  align-self: start;
}

.faq-copy h2 {
  max-width: 390px;
  font-size: clamp(56px, 4.8vw, 76px);
  line-height: .94;
}

.faq-copy .eyebrow {
  display: block;
  margin-top: 18px;
}

.faq-copy .pill-cta {
  margin-top: 124px;
}

.faq-list {
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
}

.faq-item summary {
  min-height: 76px;
  padding: 0 30px;
  font-size: 18px;
}

.faq-item p {
  max-width: 760px;
  padding: 0 56px 30px 30px;
  font-size: 16px;
}

.process {
  padding-top: clamp(84px, 6.8vw, 118px);
  padding-bottom: clamp(92px, 7vw, 126px);
}

.process .section-head {
  margin-bottom: clamp(44px, 4.4vw, 68px);
}

.process-grid {
  border-radius: 28px;
  overflow: hidden;
}

.process-grid article {
  min-height: 280px;
  padding: clamp(32px, 3.2vw, 46px);
  transition: background 260ms var(--ease-soft), transform 260ms var(--ease-soft);
}

.process-grid article:hover {
  background: rgba(255,255,255,.72);
  transform: translateY(-2px);
}

.process-grid article > span {
  width: 48px;
  height: 48px;
}

.process-grid h3 {
  font-size: clamp(30px, 2.2vw, 38px);
}

.contact {
  padding-top: clamp(84px, 6.8vw, 118px);
}

.contact-panel {
  padding: clamp(42px, 4.5vw, 64px);
}

.contact-copy h2 {
  font-size: clamp(48px, 4.4vw, 68px);
  line-height: .98;
}

.footer-brand h2 {
  font-size: clamp(52px, 4.8vw, 76px);
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: clamp(66px, 7.4vw, 90px);
  }

  .focus-card {
    min-height: 390px;
  }

  .testimonial-card blockquote {
    font-size: 23px;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 12px;
    left: 14px;
    right: 14px;
    min-height: 60px;
  }

  .brand-logo {
    width: min(150px, 46vw);
  }

  .hero-frame {
    min-height: min(720px, 100svh);
    border-radius: 0 0 30px 30px;
  }

  .hero h1 {
    font-size: clamp(48px, 12vw, 62px);
  }

  .hero-lines {
    padding-bottom: 208px;
  }

  .hero-meta {
    bottom: 126px;
  }

  .hero-proof {
    bottom: 72px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .intro-card h2,
  .help-head h2,
  .focus-panel .section-head h2,
  .faq-copy h2,
  .contact-copy h2,
  .footer-brand h2 {
    font-size: clamp(42px, 9.5vw, 58px);
  }

  .intro-text {
    margin-top: 0;
  }

  .faq {
    gap: 34px;
  }

  .faq-copy {
    position: static;
  }

  .faq-copy h2 {
    max-width: 560px;
  }

  .faq-copy .pill-cta {
    margin-top: 28px;
  }

  .testimonial-card {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 58px;
    padding-left: 12px;
  }

  .hero h1 {
    font-size: clamp(40px, 11.3vw, 52px);
    line-height: .94;
  }

  .hero-lines {
    padding: 0 18px 202px;
  }

  .hero-meta {
    bottom: 122px;
    font-size: 8.5px;
  }

  .hero-proof {
    bottom: 70px;
  }

  .hero-cta.pill-cta {
    min-width: min(286px, calc(100% - 40px));
    min-height: 54px;
  }

  .float-cta {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .intro-card .lead {
    font-size: 20px;
  }

  .intro-facts span {
    min-height: 70px;
  }

  .treatment-item {
    min-height: auto;
    padding: 28px 22px 34px;
  }

  .treatment-item img {
    margin-bottom: 26px;
  }

  .focus-card {
    min-height: 340px;
  }

  .price-card {
    min-height: auto;
  }

  .testimonial-card blockquote {
    font-size: 21px;
  }

  .faq-copy h2 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .faq-item summary {
    min-height: 66px;
    padding: 0 22px;
    font-size: 16px;
  }

  .faq-item p {
    padding: 0 22px 24px;
  }

  .process-grid article {
    min-height: auto;
  }
}

/* Pricing readability correction */
.price-grid {
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  overflow: hidden;
}

.price-card > * {
  position: relative;
  z-index: 2;
}

.price-card.featured {
  color: #fff;
  border-color: rgba(255,255,255,.12);
  background:
    linear-gradient(145deg, rgba(23,17,33,.9), rgba(59,35,92,.86) 56%, rgba(23,17,33,.82)),
    url("assets/therapy-individual.jpg") center / cover;
}

.price-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 88% 16%, rgba(232,255,243,.12), transparent 30%),
    linear-gradient(180deg, rgba(7,7,17,.1), rgba(7,7,17,.28) 48%, rgba(7,7,17,.56));
  pointer-events: none;
}

.price-card.featured .eyebrow,
.price-card.featured p,
.price-card.featured h3,
.price-card.featured strong {
  color: rgba(255,255,255,.95);
}

.price-card.featured .eyebrow {
  color: rgba(232,255,243,.88);
}

.price-card.featured p {
  max-width: 500px;
  color: rgba(255,255,255,.86);
}

.price-card.featured h3 {
  text-shadow: 0 14px 34px rgba(0,0,0,.28);
}

.price-card.featured strong {
  text-shadow: 0 16px 38px rgba(0,0,0,.32);
}

.price-card .pill-cta {
  width: 100%;
  margin-top: 4px;
}

@media (max-width: 980px) {
  .price-card.featured {
    min-height: 390px;
  }
}

@media (max-width: 640px) {
.price-card.featured {
  min-height: 360px;
  }
}

/* Netlify first-paint hero fallback */
.hero-frame {
  background:
    linear-gradient(90deg, rgba(5,5,13,.9), rgba(5,5,13,.46) 54%, rgba(5,5,13,.78)),
    linear-gradient(180deg, rgba(5,5,13,.1), rgba(5,5,13,.86)),
    url("assets/stress-burnout-ai.jpg") center / cover no-repeat,
    var(--lux-dark);
}

.hero-video {
  background:
    linear-gradient(90deg, rgba(5,5,13,.9), rgba(5,5,13,.46) 54%, rgba(5,5,13,.78)),
    url("assets/stress-burnout-ai.jpg") center / cover no-repeat;
}

/* Mobile hero/menu and compact testimonials correction */
@keyframes rotateWord {
  0%, 7% {
    opacity: 0;
    transform: translate3d(0, 36%, 0);
    filter: blur(1px);
  }
  14%, 34% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
  43%, 100% {
    opacity: 0;
    transform: translate3d(0, -34%, 0);
    filter: blur(1px);
  }
}

.hero-word {
  min-height: 1.22em;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-word span {
  filter: blur(0);
  padding-bottom: .05em;
}

.hero h1 {
  padding-block: .08em .12em;
}

.testimonial-track {
  gap: clamp(16px, 1.8vw, 24px);
}

.testimonial-card {
  min-height: 292px;
  padding: clamp(28px, 2.6vw, 38px);
}

.testimonial-card blockquote {
  font-size: clamp(19px, 1.18vw, 23px);
  line-height: 1.22;
}

.testimonial-meta {
  margin-bottom: 22px;
  font-size: 9px;
}

.quote-mark {
  margin-bottom: 14px;
  font-size: 42px;
}

@media (max-width: 980px) {
  .site-header.is-open {
    min-height: auto;
    padding: 14px 14px 18px;
    grid-template-columns: 1fr auto;
    align-items: center;
    border-radius: 28px;
  }

  .site-header.is-open .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header.is-open .menu-button {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: end;
  }

  .site-header.is-open .main-nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    width: 100%;
    padding: 18px 2px 10px;
    text-align: left;
  }

  .site-header.is-open .main-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    color: #fff;
    font-size: 15px;
  }

  .site-header.is-open > .lang-switch {
    grid-column: 1 / -1;
    justify-self: start;
    margin: 8px 0 0 2px;
  }

  .hero-lines {
    place-items: end start;
    padding: 0 24px 250px;
  }

  .hero h1 {
    width: min(390px, 100%);
    font-size: clamp(42px, 11.2vw, 58px);
    line-height: .96;
  }

  .hero-word {
    display: block;
    margin-top: .08em;
    min-height: 1.05em;
    font-size: .92em;
  }

  .hero-word span {
    inset: 0 auto auto 0;
    width: 100%;
    text-align: left;
  }

  .hero-meta {
    left: 24px;
    right: 24px;
    bottom: 134px;
    width: auto;
    max-width: 330px;
    transform: none;
    text-align: left;
    font-size: 11px;
    line-height: 1.35;
    letter-spacing: .02em;
  }

  .hero-proof {
    left: 24px;
    right: 24px;
    bottom: 78px;
    justify-content: flex-start;
    gap: 7px;
  }

  .hero-proof span {
    min-height: 30px;
    padding-inline: 10px;
    font-size: 8.5px;
  }

  .hero-cta.pill-cta {
    bottom: 18px;
  }
}

@media (max-width: 640px) {
  .site-header {
    left: 12px;
    right: 12px;
  }

  .site-header.is-open {
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 24px);
    overflow-y: auto;
  }

  .brand-logo {
    width: min(160px, 55vw);
  }

  .hero-frame {
    min-height: min(735px, calc(100svh - 20px));
  }

  .hero-video {
    object-position: 42% center;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 72% 36%, rgba(233,255,244,.16), transparent 26%),
      linear-gradient(180deg, rgba(5,5,13,.05) 0%, rgba(5,5,13,.18) 42%, rgba(5,5,13,.92) 100%),
      linear-gradient(90deg, rgba(5,5,13,.38) 0%, rgba(5,5,13,.08) 48%, rgba(5,5,13,.38) 100%);
  }

  .hero-lines {
    padding: 0 22px 300px;
  }

  .hero h1 {
    max-width: 335px;
    font-size: clamp(37px, 10.8vw, 46px);
    line-height: .98;
  }

  .hero-word {
    min-height: 1.08em;
    font-size: .88em;
  }

  .hero-meta {
    bottom: 156px;
    max-width: 310px;
    font-size: 10.5px;
    line-height: 1.38;
  }

  .hero-proof {
    bottom: 92px;
    gap: 6px;
  }

  .hero-proof span {
    min-height: 28px;
    padding-inline: 8px;
    font-size: 7.6px;
    letter-spacing: .02em;
  }

  .hero-cta.pill-cta {
    bottom: 24px;
    min-width: calc(100% - 48px);
    max-width: 320px;
    min-height: 54px;
    padding-left: 22px;
    font-size: 13px;
  }

  .hero-cta.pill-cta span {
    white-space: normal;
    line-height: 1.15;
  }

  .testimonials {
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .testimonial-track {
    grid-auto-columns: minmax(240px, 78vw);
  }

  .testimonial-card {
    min-height: 265px;
    padding: 26px 22px;
  }

  .testimonial-card blockquote {
    font-size: 18px;
    line-height: 1.24;
  }
}

/* Hero final mobile readability pass */
.hero-frame {
  background:
    radial-gradient(circle at 64% 42%, rgba(87,176,208,.24), transparent 28%),
    radial-gradient(circle at 38% 64%, rgba(232,255,243,.11), transparent 30%),
    linear-gradient(180deg, #070711 0%, #0a0b14 50%, #05050d 100%);
}

.hero-video {
  background: #070711;
}

.hero-meta {
  font-weight: 600;
  letter-spacing: .06em;
  text-shadow: 0 12px 28px rgba(0,0,0,.4);
}

.hero-meta p {
  font-weight: 600;
}

@media (min-width: 981px) {
  .hero-word {
    min-height: 1.28em;
  }

  .hero-word span {
    padding-block: .08em .16em;
    text-shadow: 0 18px 48px rgba(0,0,0,.32);
  }
}

@media (max-width: 980px) {
  .hero-lines {
    padding-bottom: 274px;
  }

  .hero h1 {
    display: block;
  }

  .hero-word {
    margin-top: .14em;
    min-height: 1.12em;
    color: rgba(255,255,255,.96);
    font-size: .9em;
    line-height: 1;
    text-shadow: 0 14px 34px rgba(0,0,0,.5);
  }

  .hero-word span {
    color: rgba(255,255,255,.96);
    font-style: normal;
    font-weight: 500;
    opacity: 0;
    transform: translate3d(0, 28%, 0);
    filter: none;
  }

  .hero-meta {
    bottom: 144px;
    font-weight: 600;
    letter-spacing: .01em;
    text-transform: uppercase;
  }

  .hero-meta p {
    font-weight: 600;
  }

  .hero-proof {
    bottom: 84px;
  }
}

@media (max-width: 640px) {
  .hero-frame {
    min-height: min(760px, calc(100svh - 18px));
  }

  .hero-video {
    object-position: 43% center;
  }

  .hero-lines {
    padding: 0 22px 314px;
  }

  .hero h1 {
    max-width: 320px;
    font-size: clamp(36px, 10.2vw, 44px);
    line-height: .98;
  }

  .hero-word {
    display: block;
    min-height: 1.15em;
    margin-top: .16em;
    font-size: .92em;
  }

  .hero-meta {
    bottom: 164px;
    max-width: 292px;
    font-size: 9.8px;
    line-height: 1.42;
  }

  .hero-proof {
    bottom: 98px;
  }

  .hero-proof span {
    background: rgba(255,255,255,.13);
  }
}

/* Testimonials alignment pass */
.testimonial-card {
  grid-template-rows: 34px 34px 1fr;
  align-content: start;
  align-items: start;
  gap: 24px;
}

.testimonial-card .quote-mark {
  align-self: start;
  margin: 0;
}

.testimonial-meta {
  min-height: 34px;
  display: flex;
  align-items: center;
  margin: 0;
  letter-spacing: .18em;
  line-height: 1.25;
}

.testimonial-card blockquote {
  align-self: start;
  padding-top: clamp(26px, 3vw, 42px);
}

@media (max-width: 640px) {
  .testimonial-card {
    grid-template-rows: 28px auto 1fr;
    gap: 18px;
  }

  .testimonial-meta {
    min-height: 28px;
    letter-spacing: .12em;
  }

  .testimonial-card blockquote {
    padding-top: 12px;
  }
}

/* Treatment cards alignment pass */
.treatment-item {
  display: grid;
  grid-template-rows: 126px minmax(96px, auto) 1fr;
  align-items: start;
  justify-items: center;
  row-gap: 24px;
}

.treatment-item img {
  align-self: end;
  margin: 0;
}

.treatment-item h3 {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  text-wrap: balance;
}

.treatment-item p {
  align-self: start;
  margin: 0 auto;
}

@media (max-width: 980px) {
  .treatment-item {
    grid-template-rows: 116px auto 1fr;
    row-gap: 20px;
  }

  .treatment-item h3 {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .treatment-item {
    row-gap: 18px;
  }
}
