@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("assets/fonts/instrument-serif-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("assets/fonts/syne-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  --cloud: #eef0ed;
  --paper: #f8f7f3;
  --night: #202638;
  --night-2: #171c2a;
  --ink: #252a35;
  --muted: #666b73;
  --periwinkle: #aeb3d9;
  --periwinkle-soft: #dfe1ef;
  --coral: #d59580;
  --coral-soft: #efd8cf;
  --mint: #bfd2c7;
  --acid: #dce89d;
  --line: rgba(32, 38, 56, 0.18);
  --line-light: rgba(255, 255, 255, 0.22);
  --font-display: "Syne", "Arial Narrow", Arial, sans-serif;
  --font-editorial: "Instrument Serif", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --page: clamp(24px, 5.4vw, 88px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 128px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--cloud);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--acid);
  color: var(--night);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  background: var(--night);
  color: white;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.progress {
  position: fixed;
  z-index: 1500;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.topbar {
  position: fixed;
  z-index: 1200;
  inset: 0 0 auto;
  height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(20px, 2.4vw, 42px);
  padding: 0 var(--page);
  isolation: isolate;
  transition: height 350ms var(--ease), background 300ms ease, box-shadow 300ms ease;
}

.topbar::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0 0 auto;
  height: 156px;
  background: rgba(250, 249, 246, 0.985);
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
  filter: drop-shadow(0 12px 18px rgba(32, 38, 56, 0.1));
  transition: height 350ms var(--ease), clip-path 350ms var(--ease), background 300ms ease;
}

.topbar::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 141px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(213, 149, 128, 0.72) 9%, rgba(32, 38, 56, 0.14) 58%, transparent 100%);
  transform: skewY(-1deg);
  transform-origin: left center;
  transition: top 350ms var(--ease);
}

.topbar.is-scrolled {
  height: 92px;
}

.topbar.is-scrolled::before {
  height: 108px;
  background: rgba(250, 249, 246, 0.955);
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
}

.topbar.is-scrolled::after {
  top: 98px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}

.brand img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  transition: width 350ms var(--ease), height 350ms var(--ease);
}

.topbar.is-scrolled .brand img {
  width: 68px;
  height: 68px;
}

.brand > span {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.nav-desktop {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.15vw, 40px);
}

.nav-desktop a {
  display: inline-flex;
  align-items: center;
  padding: 16px 0;
  color: #4f545d;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-desktop a span {
  color: var(--coral);
  font-size: 0.55rem;
}

.nav-desktop a {
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after,
.nav-desktop a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-desktop a[aria-current="page"] {
  color: var(--night);
  font-weight: 600;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 7px 8px 7px 18px;
  border-radius: 999px;
  background: var(--night);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  box-shadow: 0 9px 24px rgba(32, 38, 56, 0.14);
}

.nav-call b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--acid);
  color: var(--night);
  font-weight: 400;
  transition: background 230ms ease, color 230ms ease, transform 230ms var(--ease);
}

.nav-call:hover b,
.nav-call:focus-visible b {
  background: white;
  color: var(--night);
  transform: rotate(45deg);
}

.menu-button,
.nav-mobile {
  display: none;
}

.hero {
  position: relative;
  min-height: max(920px, 100svh);
  overflow: hidden;
  background: var(--cloud);
  isolation: isolate;
}

.hero-grid,
.contact-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(to right, rgba(32, 38, 56, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(32, 38, 56, 0.09) 1px, transparent 1px);
  background-size: clamp(72px, 8vw, 144px) clamp(72px, 8vw, 144px);
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(40vw, 650px);
  aspect-ratio: 1;
  right: -12vw;
  top: -17vw;
  border-radius: 50%;
  background: var(--periwinkle-soft);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 160px;
  height: 160px;
  left: -80px;
  bottom: 5%;
  border-radius: 50%;
  background: var(--coral-soft);
}

.hero-overline {
  position: absolute;
  z-index: 6;
  top: clamp(172px, 18vh, 210px);
  left: var(--page);
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: var(--night);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-overline::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--coral);
}

.hero-overline span {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.hero h1 {
  margin: 0;
}

.hero-line {
  position: absolute;
  z-index: 5;
  display: block;
  width: max-content;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.line-one {
  top: clamp(225px, 23vh, 275px);
  left: var(--page);
  font-size: clamp(4.8rem, 8vw, 9.6rem);
}

.line-one em {
  color: var(--coral);
  font-family: var(--font-editorial);
  font-weight: 400;
}

.line-two {
  z-index: 7;
  top: clamp(410px, 41vh, 490px);
  left: clamp(90px, 13vw, 250px);
  color: white;
  font-size: clamp(4.8rem, 8.6vw, 10.2rem);
  text-shadow: 0 3px 24px rgba(23, 28, 42, 0.16);
}

.line-three {
  z-index: 8;
  top: clamp(560px, 60vh, 710px);
  left: clamp(150px, 29vw, 570px);
  color: white;
  font-family: var(--font-editorial);
  font-size: clamp(6.2rem, 12vw, 13rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.055em;
  -webkit-text-stroke: 1px rgba(23, 28, 42, 0.34);
  text-shadow: 0 7px 32px rgba(12, 16, 27, 0.78), 0 2px 5px rgba(12, 16, 27, 0.58);
}

.hero-film {
  position: absolute;
  z-index: 3;
  top: clamp(355px, 36vh, 440px);
  right: 0;
  left: 0;
  height: clamp(295px, 32vh, 385px);
  overflow: hidden;
  background: var(--night);
}

.hero-film::before,
.hero-film::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.36);
}

.hero-film::before {
  left: var(--page);
}

.hero-film::after {
  right: var(--page);
}

.hero-film img {
  width: 100%;
  height: 142%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.72) contrast(0.92) brightness(0.86);
  transform: translateY(var(--film-y, -14%)) scale(1.04);
  will-change: transform;
}

.film-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 38, 56, 0.38), transparent 30%, transparent 68%, rgba(32, 38, 56, 0.44)),
    linear-gradient(0deg, rgba(18, 23, 36, 0.72) 0%, rgba(25, 31, 46, 0.32) 46%, transparent 78%);
}

.hero-method {
  position: absolute;
  z-index: 6;
  right: var(--page);
  bottom: 22px;
  width: min(430px, 36vw);
  padding: 18px 20px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background: rgba(23, 28, 42, 0.38);
  backdrop-filter: blur(13px);
  margin: 0;
  color: white;
  text-align: left;
}

.hero-method > span,
.hero-method strong,
.hero-method small {
  display: block;
}

.hero-method > span {
  color: var(--acid);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-method strong {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.15vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero-method strong b {
  font-weight: inherit;
}

.hero-method strong i {
  color: var(--coral-soft);
  font-family: var(--font-body);
  font-size: 0.75em;
  font-style: normal;
}

.hero-method small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
}

.hero-copy {
  position: absolute;
  z-index: 7;
  left: var(--page);
  bottom: clamp(58px, 7vh, 90px);
  width: min(430px, 31vw);
}

.hero-copy > p {
  margin: 0;
  color: #4f545d;
  font-size: 0.8rem;
  line-height: 1.75;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
}

.hero-facts span {
  position: relative;
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-facts span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -11px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--coral);
}

.hero-cta {
  position: absolute;
  z-index: 9;
  right: var(--page);
  bottom: clamp(54px, 6vh, 78px);
  display: grid;
  width: clamp(142px, 11vw, 188px);
  aspect-ratio: 1;
  place-content: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--night);
  transition: transform 350ms var(--ease), background 250ms ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(32, 38, 56, 0.28);
  border-radius: 50%;
}

.hero-cta span {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-cta b {
  position: absolute;
  z-index: 2;
  top: 28px;
  right: 30px;
  font-size: 1rem;
  font-weight: 400;
}

.hero-cta i {
  position: absolute;
  inset: 0;
  border: 1px solid var(--acid);
  border-radius: 50%;
  transition: transform 450ms var(--ease), opacity 450ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  background: white;
  transform: rotate(-4deg) scale(1.03);
}

.hero-cta:hover i,
.hero-cta:focus-visible i {
  opacity: 0;
  transform: scale(1.25);
}

.hero-signature {
  position: absolute;
  z-index: 6;
  right: clamp(240px, 21vw, 360px);
  bottom: clamp(67px, 8vh, 100px);
  margin: 0;
}

.hero-signature span,
.hero-signature small {
  display: block;
}

.hero-signature span {
  font-family: var(--font-editorial);
  font-size: 1.3rem;
  font-style: italic;
}

.hero-signature small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scroll {
  position: absolute;
  z-index: 7;
  right: 19px;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
}

.hero-scroll i {
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-enter {
  opacity: 0;
  transition: opacity 950ms var(--ease), transform 1100ms var(--ease), clip-path 1200ms var(--ease);
}

.hero-overline.hero-enter,
.hero-copy.hero-enter,
.hero-signature.hero-enter {
  transform: translateY(25px);
}

.hero-line.hero-enter {
  clip-path: inset(-0.2em -0.2em 100% -0.1em);
  transform: translateY(0.55em);
}

.hero-film.hero-enter {
  clip-path: inset(0 100% 0 0);
}

.hero-cta.hero-enter {
  transform: scale(0.7) rotate(12deg);
}

.hero.is-ready .hero-enter {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: none;
}

.hero.is-ready .hero-line {
  clip-path: inset(-0.2em -0.2em -0.28em -0.1em);
}

.hero.is-ready .line-one { transition-delay: 80ms; }
.hero.is-ready .hero-film { transition-delay: 170ms; }
.hero.is-ready .line-two { transition-delay: 300ms; }
.hero.is-ready .line-three { transition-delay: 420ms; }
.hero.is-ready .hero-copy { transition-delay: 520ms; }
.hero.is-ready .hero-method { transition-delay: 540ms; }
.hero.is-ready .hero-cta { transition-delay: 620ms; }
.hero.is-ready .hero-signature { transition-delay: 680ms; }

.chapter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #626773;
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.chapter span {
  color: var(--coral);
}

.chapter-light {
  color: rgba(255, 255, 255, 0.62);
}

.opening {
  position: relative;
  padding: clamp(110px, 12vw, 190px) 0 clamp(120px, 14vw, 220px);
  background: var(--periwinkle-soft);
  overflow: hidden;
}

.opening-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(32, 38, 56, 0.17);
}

.opening-ticker div {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  padding: 12px 0 4px;
  color: rgba(32, 38, 56, 0.13);
  font-family: var(--font-display);
  font-size: clamp(5rem, 10vw, 11rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.07em;
  white-space: nowrap;
  animation: ticker 26s linear infinite;
}

.opening-ticker i {
  margin: 0 0.32em;
  color: var(--coral);
  font-family: var(--font-body);
  font-size: 0.14em;
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.opening-content {
  display: grid;
  grid-template-columns: minmax(170px, 0.36fr) minmax(420px, 1fr) minmax(250px, 0.48fr);
  gap: 50px;
  align-items: start;
  padding: clamp(90px, 10vw, 155px) var(--page) 0;
}

.opening-content h2 {
  margin: -8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.4vw, 6.4rem);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.opening-content h2 em,
.concerns-heading h2 em,
.practice-head h2 em,
.faq-head h2 em {
  color: var(--coral);
  font-family: var(--font-editorial);
  font-weight: 400;
}

.opening-lead {
  margin: 6px 0 0;
  color: #545a65;
  font-size: 0.86rem;
  line-height: 1.85;
}

.opening-note {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  max-width: 900px;
  margin: 70px 0 0 8vw;
  padding-top: 34px;
  border-top: 1px solid rgba(32, 38, 56, 0.2);
}

.opening-note > span {
  color: var(--coral);
  font-family: var(--font-editorial);
  font-size: 6rem;
  line-height: 0.3;
}

.opening-note p {
  margin: 0;
  font-family: var(--font-editorial);
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  font-style: italic;
  line-height: 1.15;
}

.concerns {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(560px, 1.1fr);
  min-height: 100vh;
  background: var(--paper);
}

.concerns-heading {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100vh;
  padding: clamp(120px, 13vw, 190px) var(--page);
  border-right: 1px solid var(--line);
}

.concerns-heading h2 {
  margin: 38px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 4.7vw, 5.7rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.concerns-heading > p:last-child {
  max-width: 400px;
  margin: 52px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.concern-stack {
  border-top: 1px solid var(--line);
}

.concern {
  position: relative;
  min-height: 330px;
  display: grid;
  grid-template-columns: 50px minmax(230px, 0.85fr) minmax(220px, 0.72fr);
  grid-template-rows: 1fr auto;
  gap: 22px 34px;
  align-items: start;
  padding: 56px clamp(32px, 4vw, 68px) 42px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.concern::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--acid);
  transform: translateX(-102%);
  transition: transform 600ms var(--ease);
}

.concern:nth-child(2)::before { background: var(--coral-soft); }
.concern:nth-child(3)::before { background: var(--periwinkle-soft); }
.concern:nth-child(4)::before { background: var(--mint); }

.concern:hover::before,
.concern:focus-within::before {
  transform: translateX(0);
}

.concern-index {
  color: var(--coral);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.concern h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.concern > p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.75;
}

.concern a {
  grid-column: 2 / 4;
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 0.67rem;
  font-weight: 600;
}

.concern a span {
  font-size: 1rem;
  transition: transform 240ms var(--ease);
}

.concern a:hover span,
.concern a:focus-visible span {
  transform: translate(4px, -4px);
}

.approach {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.85fr) minmax(430px, 0.75fr);
  grid-template-rows: auto auto;
  gap: 90px clamp(70px, 10vw, 175px);
  padding: clamp(120px, 14vw, 220px) var(--page) 0;
  background: var(--night);
  color: white;
  overflow: hidden;
  isolation: isolate;
}

.approach::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  right: -260px;
  top: -250px;
  border: 1px solid rgba(174, 179, 217, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(174, 179, 217, 0.04), 0 0 0 160px rgba(174, 179, 217, 0.025);
}

.approach-head h2 {
  margin: 40px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6vw, 7rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.approach-head h2 em {
  color: var(--periwinkle);
  font-family: var(--font-editorial);
  font-weight: 400;
}

.approach-story {
  padding-top: 75px;
}

.approach-intro {
  margin: 0 0 55px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-editorial);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.38;
}

.approach-story ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.approach-story li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
}

.approach-story li > span {
  color: var(--periwinkle);
  font-size: 0.62rem;
}

.approach-story h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.approach-story li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  line-height: 1.7;
}

.approach-image {
  position: relative;
  grid-column: 1 / -1;
  height: min(58vw, 760px);
  margin: 25px calc(var(--page) * -1) 0;
  overflow: hidden;
}

.approach-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32, 38, 56, 0.08), rgba(32, 38, 56, 0.66));
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
  filter: saturate(0.8) contrast(0.95) brightness(0.82);
}

.approach-image figcaption {
  position: absolute;
  z-index: 2;
  right: var(--page);
  bottom: 42px;
  color: white;
  text-align: right;
}

.approach-image figcaption span,
.approach-image figcaption small {
  display: block;
}

.approach-image figcaption span {
  font-family: var(--font-editorial);
  font-size: 1.6rem;
  font-style: italic;
}

.approach-image figcaption small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.58rem;
}

.approach-stamp {
  position: absolute;
  z-index: 4;
  left: var(--page);
  bottom: clamp(40px, 5vw, 80px);
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--acid);
  color: var(--night);
}

.approach-stamp span {
  position: absolute;
  inset: 14px;
  display: grid;
  place-items: start center;
  border: 1px solid rgba(32, 38, 56, 0.25);
  border-radius: 50%;
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding-top: 10px;
  text-align: center;
  transform: rotate(-16deg);
}

.approach-stamp b {
  font-family: var(--font-editorial);
  font-size: 3.4rem;
  font-weight: 400;
}

.addiction {
  position: relative;
  min-height: 760px;
  display: grid;
  grid-template-columns: minmax(450px, 1fr) minmax(320px, 0.55fr);
  gap: clamp(70px, 12vw, 210px);
  align-items: end;
  padding: clamp(120px, 14vw, 210px) var(--page);
  background: var(--coral);
  color: var(--night);
  overflow: hidden;
  isolation: isolate;
}

.addiction-backdrop {
  position: absolute;
  z-index: -1;
  left: -0.04em;
  bottom: -0.25em;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(10rem, 24vw, 29rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.08em;
  white-space: nowrap;
  -webkit-text-stroke: 1px rgba(248, 247, 243, 0.28);
}

.addiction-intro h2 {
  margin: 38px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.addiction-intro h2 em {
  color: var(--paper);
  font-family: var(--font-editorial);
  font-weight: 400;
}

.addiction .chapter,
.addiction .chapter span {
  color: var(--night);
}

.addiction-text {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(32, 38, 56, 0.25);
  background: rgba(248, 247, 243, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.addiction-text p {
  margin: 0 0 20px;
  font-size: 0.82rem;
  line-height: 1.82;
}

.addiction-text small {
  display: block;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(32, 38, 56, 0.24);
  font-size: 0.61rem;
  line-height: 1.6;
}

.practice {
  padding: clamp(120px, 14vw, 220px) var(--page);
  background: var(--cloud);
}

.practice-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 45px;
}

.practice-head h2 {
  margin: -8px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 6.5vw, 7.6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.practice-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(80px, 10vw, 150px) 0 0;
  border-block: 1px solid var(--line);
}

.practice-number {
  position: relative;
  min-height: 290px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  padding: 38px clamp(24px, 4vw, 60px);
  border-right: 1px solid var(--line);
}

.practice-number:first-child {
  padding-left: 0;
}

.practice-number:last-child {
  border-right: 0;
  padding-right: 0;
}

.practice-number small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.practice-number strong {
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 9vw, 10.5rem);
  font-weight: 600;
  line-height: 0.84;
  letter-spacing: -0.09em;
}

.practice-number span {
  align-self: end;
  padding-bottom: 9px;
  color: var(--coral);
  font-family: var(--font-editorial);
  font-size: 1.45rem;
  font-style: italic;
}

.formats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 30px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
  color: var(--night);
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.formats i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--coral);
}

.first-session {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(390px, 0.75fr) minmax(240px, 0.47fr);
  gap: 45px;
  align-items: start;
  margin-top: clamp(90px, 11vw, 160px);
}

.first-session h3 {
  margin: -6px 0 0;
  font-family: var(--font-editorial);
  font-size: clamp(2.8rem, 4.5vw, 5.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 0.95;
}

.first-session > p:nth-of-type(2) {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.8;
}

.line-link {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 34px;
  padding: 16px 0;
  border-block: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 600;
}

.line-link span {
  font-size: 1rem;
}

.faq {
  display: grid;
  grid-template-columns: minmax(380px, 0.75fr) minmax(480px, 0.92fr);
  gap: clamp(70px, 11vw, 180px);
  padding: clamp(120px, 14vw, 210px) var(--page);
  background: var(--night);
  color: white;
}

.faq-head h2 {
  margin: 38px 0 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 5.7vw, 6.8rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.faq-head h2 em {
  color: var(--periwinkle);
}

.faq-items {
  border-top: 1px solid var(--line-light);
}

.faq details {
  border-bottom: 1px solid var(--line-light);
}

.faq summary {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr 28px;
  gap: 18px;
  align-items: center;
  padding: 30px 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  line-height: 1.3;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary > span {
  color: var(--periwinkle);
  font-family: var(--font-body);
  font-size: 0.57rem;
}

.faq summary i,
.faq summary i::after {
  display: block;
  width: 20px;
  height: 1px;
  background: white;
  content: "";
  transition: transform 260ms var(--ease);
}

.faq summary i::after {
  transform: rotate(90deg);
}

.faq details[open] summary i::after {
  transform: rotate(0deg);
}

.faq details p {
  max-width: 610px;
  margin: -3px 44px 30px 52px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.8;
}

.contact {
  position: relative;
  min-height: 840px;
  padding: clamp(120px, 13vw, 200px) var(--page) 70px;
  background: var(--acid);
  color: var(--night);
  overflow: hidden;
  isolation: isolate;
}

.contact-grid {
  opacity: 0.25;
  mask-image: linear-gradient(90deg, transparent, black 40%, black);
}

.contact::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: min(52vw, 820px);
  aspect-ratio: 1;
  right: -15vw;
  bottom: -25vw;
  border: 1px solid rgba(32, 38, 56, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(32, 38, 56, 0.035), 0 0 0 180px rgba(32, 38, 56, 0.022);
}

.contact h2 {
  margin: 45px 0 0;
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 10vw, 12rem);
  font-weight: 600;
  line-height: 0.78;
  letter-spacing: -0.09em;
}

.contact h2 em {
  color: var(--coral);
  font-family: var(--font-editorial);
  font-weight: 400;
}

.contact-copy {
  max-width: 470px;
  margin: 60px 0 0 26vw;
  font-size: 0.84rem;
  line-height: 1.8;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(310px, 1fr));
  max-width: 1050px;
  margin: 55px 0 0 26vw;
  border-block: 1px solid rgba(32, 38, 56, 0.3);
}

.contact-actions a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 20px;
  min-height: 120px;
  align-content: center;
  padding: 20px 34px 20px 0;
  border-right: 1px solid rgba(32, 38, 56, 0.3);
  transition: background 250ms ease, padding 300ms var(--ease);
}

.contact-actions a:last-child {
  border-right: 0;
  padding-left: 34px;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  padding-inline: 20px;
  background: rgba(248, 247, 243, 0.25);
}

.contact-actions small {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-actions strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.contact-actions span {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-size: 1.3rem;
}

.contact-foot {
  position: absolute;
  right: var(--page);
  bottom: 32px;
  left: var(--page);
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(32, 38, 56, 0.3);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 46px var(--page) 25px;
  background: var(--night-2);
  color: rgba(255, 255, 255, 0.65);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  filter: grayscale(1) brightness(3.2);
  opacity: 0.8;
}

.footer-brand > span,
.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  color: white;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.footer-brand small {
  margin-top: 4px;
  font-size: 0.54rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 3.2vw, 52px);
}

.footer nav a,
.footer-top {
  font-size: 0.62rem;
  font-weight: 500;
}

.footer nav a:hover,
.footer nav a:focus-visible,
.footer-top:hover,
.footer-top:focus-visible {
  color: white;
}

.footer-legal {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.54rem;
  letter-spacing: 0.05em;
}

.footer-legal nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.footer-legal nav a {
  color: rgba(255, 255, 255, 0.46);
  font-size: inherit;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.footer-legal nav a:hover,
.footer-legal nav a:focus-visible {
  color: white;
  text-decoration-color: currentColor;
}

.mobile-call {
  display: none;
}

.js .motion {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 850ms var(--ease), transform 950ms var(--ease);
}

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

@media (max-width: 1180px) {
  :root {
    --page: clamp(26px, 4vw, 54px);
  }

  .nav-desktop {
    gap: 18px;
  }

  .nav-desktop a {
    font-size: 0.61rem;
  }

  .brand img {
    width: 84px;
    height: 84px;
  }

  .brand small,
  .nav-call span {
    display: none;
  }

  .nav-call {
    padding: 7px;
  }

  .line-one {
    font-size: clamp(4.5rem, 8.3vw, 7.3rem);
  }

  .line-two {
    font-size: clamp(4.5rem, 9vw, 7.8rem);
  }

  .line-three {
    font-size: clamp(6rem, 12vw, 10rem);
  }

  .opening-content {
    grid-template-columns: 150px minmax(380px, 1fr) minmax(230px, 0.45fr);
  }

  .concerns {
    grid-template-columns: minmax(330px, 0.65fr) minmax(500px, 1fr);
  }

  .concern {
    grid-template-columns: 38px minmax(200px, 0.8fr) minmax(190px, 0.68fr);
    gap: 20px 25px;
  }

  .approach {
    gap: 75px 70px;
  }

  .first-session {
    grid-template-columns: 150px minmax(360px, 0.72fr) minmax(220px, 0.48fr);
  }

  .contact-copy,
  .contact-actions {
    margin-left: 18vw;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 90px;
  }

  .topbar,
  .topbar.is-scrolled {
    height: var(--header-height);
    grid-template-columns: 1fr auto;
    background: rgba(248, 247, 243, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(32, 38, 56, 0.1);
    box-shadow: 0 10px 28px rgba(32, 38, 56, 0.08);
  }

  .topbar::before,
  .topbar::after {
    display: none;
  }

  .brand img,
  .topbar.is-scrolled .brand img {
    width: 70px;
    height: 70px;
  }

  .brand small {
    display: block;
  }

  .nav-desktop,
  .nav-call {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 1300;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    position: absolute;
    width: 17px;
    height: 1px;
    background: var(--night);
    transition: transform 280ms var(--ease);
  }

  .menu-button span:first-child { transform: translateY(-4px); }
  .menu-button span:last-child { transform: translateY(4px); }
  .menu-button[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

  .nav-mobile {
    position: fixed;
    z-index: 1250;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
    padding: 100px var(--page);
    background: var(--periwinkle-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition: opacity 350ms ease, visibility 350ms ease, transform 350ms var(--ease);
  }

  .nav-mobile.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-mobile a {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 4rem);
    font-weight: 600;
    letter-spacing: -0.06em;
  }

  .nav-mobile small {
    color: var(--coral);
    font-family: var(--font-body);
    font-size: 0.6rem;
  }

  .hero {
    min-height: 970px;
  }

  .hero-overline {
    top: 126px;
  }

  .line-one {
    top: 190px;
    font-size: clamp(4.1rem, 10.5vw, 6.4rem);
  }

  .hero-film {
    top: 325px;
    height: 310px;
  }

  .line-two {
    top: 370px;
    left: 8vw;
    font-size: clamp(4rem, 11.2vw, 6.8rem);
  }

  .line-three {
    top: 550px;
    left: 20vw;
    font-size: clamp(5rem, 14vw, 8.4rem);
  }

  .hero-copy {
    bottom: 55px;
    width: min(440px, 54vw);
  }

  .hero-signature {
    display: none;
  }

  .hero-cta {
    bottom: 50px;
  }

  .opening-content {
    grid-template-columns: 1fr;
  }

  .opening-content h2 {
    margin-top: 24px;
  }

  .opening-lead {
    max-width: 620px;
  }

  .opening-note {
    grid-column: 1;
    margin: 45px 0 0 10vw;
  }

  .concerns {
    grid-template-columns: 1fr;
  }

  .concerns-heading {
    position: relative;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .concern {
    min-height: 280px;
  }

  .approach {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .approach-story {
    max-width: 670px;
    padding-top: 0;
  }

  .approach-image {
    height: 68vw;
  }

  .addiction {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .addiction-text {
    max-width: 680px;
  }

  .practice-head {
    grid-template-columns: 1fr;
  }

  .practice-head h2 {
    margin-top: 25px;
  }

  .practice-number {
    min-height: 235px;
    padding-inline: 25px;
  }

  .first-session {
    grid-template-columns: 1fr;
  }

  .first-session > p:nth-of-type(2) {
    max-width: 560px;
  }

  .line-link {
    grid-column: 1;
    max-width: 560px;
  }

  .faq {
    grid-template-columns: 1fr;
  }

  .contact-copy,
  .contact-actions {
    margin-left: 10vw;
  }

  .footer {
    grid-template-columns: 1fr auto;
  }

  .footer nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .footer-legal {
    grid-row: 3;
  }
}

@media (max-width: 680px) {
  :root {
    --page: 21px;
    --header-height: 84px;
  }

  body {
    font-size: 15px;
  }

  .topbar {
    padding-inline: 17px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .topbar.is-scrolled .brand img {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    font-size: 0.8rem;
  }

  .brand small {
    font-size: 0.48rem;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: 1080px;
  }

  .hero::before {
    width: 250px;
    right: -110px;
    top: -80px;
  }

  .hero-overline {
    top: 114px;
    left: var(--page);
    flex-wrap: wrap;
    gap: 8px 12px;
    max-width: 260px;
    font-size: 0.52rem;
    line-height: 1.5;
  }

  .hero-overline::before {
    width: 24px;
  }

  .hero-overline span {
    padding-left: 12px;
  }

  .line-one {
    top: 176px;
    left: var(--page);
    font-size: clamp(3.15rem, 15vw, 4.2rem);
    white-space: normal;
  }

  .line-one em {
    display: block;
    margin-left: 20vw;
    font-size: 1.17em;
  }

  .hero-film {
    top: 346px;
    height: 380px;
  }

  .hero-film img {
    height: 115%;
    object-position: 53% center;
    transform: translateY(var(--film-y, -6%)) scale(1.05);
  }

  .hero-film::before,
  .hero-film::after {
    display: none;
  }

  .line-two {
    top: 393px;
    left: 24px;
    font-size: clamp(3.25rem, 15vw, 4.35rem);
    line-height: 0.9;
    white-space: normal;
  }

  .line-two::first-line {
    color: white;
  }

  .line-three {
    top: 596px;
    left: 34px;
    color: white;
    font-size: clamp(4.5rem, 20vw, 6rem);
    -webkit-text-stroke: 0.8px rgba(23, 28, 42, 0.5);
    text-shadow: 0 5px 26px rgba(12, 16, 27, 0.88), 0 2px 5px rgba(12, 16, 27, 0.68);
  }

  .hero-method {
    top: auto;
    right: var(--page);
    bottom: 0;
    left: var(--page);
    width: auto;
    padding: 9px 12px 10px;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(23, 28, 42, 0.58);
    color: white;
  }

  .hero-method > span {
    color: var(--acid);
    font-size: 0.43rem;
  }

  .hero-method strong {
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 3px;
    font-size: 0.72rem;
  }

  .hero-method strong i {
    color: var(--coral-soft);
  }

  .hero-method small {
    display: none;
  }

  .hero-copy {
    bottom: 28px;
    width: calc(100% - 42px);
  }

  .hero-copy > p {
    max-width: 340px;
    font-size: 0.75rem;
  }

  .hero-cta {
    right: 18px;
    top: 735px;
    bottom: auto;
    width: 120px;
  }

  .hero-cta b {
    top: 23px;
    right: 25px;
  }

  .hero-scroll {
    display: none;
  }

  .opening {
    padding-block: 105px 120px;
  }

  .opening-ticker div {
    font-size: 4.6rem;
  }

  .opening-content {
    gap: 31px;
    padding-top: 80px;
  }

  .opening-content h2 {
    font-size: clamp(2.8rem, 12.5vw, 4rem);
  }

  .opening-note {
    grid-template-columns: 45px 1fr;
    gap: 17px;
    margin-left: 0;
  }

  .opening-note > span {
    font-size: 4.5rem;
  }

  .opening-note p {
    font-size: 1.55rem;
  }

  .concerns-heading {
    padding-block: 105px;
  }

  .concerns-heading h2 {
    font-size: clamp(2.9rem, 12.5vw, 4.2rem);
  }

  .concerns-heading > p:last-child {
    margin-top: 34px;
  }

  .concern {
    min-height: 0;
    grid-template-columns: 30px 1fr;
    grid-template-rows: auto;
    gap: 18px 12px;
    padding: 38px 22px 34px;
  }

  .concern h3 {
    font-size: 2.35rem;
  }

  .concern > p,
  .concern a {
    grid-column: 2;
  }

  .concern a {
    margin-top: 5px;
  }

  .approach {
    gap: 42px;
    padding-top: 110px;
  }

  .approach-head h2 {
    font-size: clamp(3.35rem, 14vw, 4.8rem);
  }

  .approach-intro {
    font-size: 1.35rem;
  }

  .approach-image {
    height: 112vw;
    margin-top: 20px;
  }

  .approach-image figcaption {
    right: 22px;
    bottom: 24px;
    left: 150px;
  }

  .approach-stamp {
    left: 20px;
    bottom: 24px;
    width: 118px;
    height: 118px;
  }

  .approach-stamp span {
    display: none;
  }

  .approach-stamp b {
    font-size: 2.8rem;
  }

  .addiction {
    min-height: 740px;
    gap: 48px;
    padding-block: 105px;
  }

  .addiction-intro h2 {
    font-size: clamp(3.15rem, 13vw, 4.5rem);
  }

  .addiction-text {
    padding: 24px;
  }

  .addiction-backdrop {
    font-size: 8.5rem;
    bottom: -0.12em;
  }

  .practice {
    padding-block: 108px;
  }

  .practice-head h2 {
    font-size: clamp(3.3rem, 14vw, 4.8rem);
  }

  .practice-numbers {
    grid-template-columns: 1fr;
    margin-top: 70px;
  }

  .practice-number,
  .practice-number:first-child,
  .practice-number:last-child {
    min-height: 170px;
    padding: 30px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .practice-number:last-child {
    border-bottom: 0;
  }

  .practice-number strong {
    font-size: 6rem;
  }

  .formats {
    justify-content: flex-start;
    gap: 13px 18px;
    font-size: 1.05rem;
  }

  .first-session {
    gap: 28px;
    margin-top: 85px;
  }

  .first-session h3 {
    font-size: 3rem;
  }

  .line-link {
    margin-top: 10px;
  }

  .faq {
    gap: 65px;
    padding-block: 105px;
  }

  .faq-head h2 {
    font-size: clamp(3.4rem, 14vw, 4.8rem);
  }

  .faq summary {
    grid-template-columns: 28px 1fr 22px;
    gap: 13px;
    padding: 25px 0;
    font-size: 1rem;
  }

  .faq details p {
    margin: -2px 10px 27px 41px;
  }

  .contact {
    min-height: 760px;
    padding-block: 105px 95px;
  }

  .contact h2 {
    margin-top: 35px;
    font-size: clamp(4.1rem, 18vw, 6.2rem);
  }

  .contact-copy,
  .contact-actions {
    margin-left: 0;
  }

  .contact-copy {
    margin-top: 48px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .contact-actions a,
  .contact-actions a:last-child {
    min-height: 96px;
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(32, 38, 56, 0.3);
  }

  .contact-actions a:last-child {
    border-bottom: 0;
  }

  .contact-actions strong {
    font-size: 1.25rem;
  }

  .contact-foot {
    flex-direction: column;
    gap: 6px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 88px;
  }

  .footer nav {
    grid-column: 1;
    grid-row: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .footer-top {
    justify-self: start;
  }

  .footer-legal {
    grid-row: auto;
    flex-direction: column;
    gap: 8px;
  }

  .footer-legal nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .mobile-call {
    position: fixed;
    z-index: 1150;
    right: 13px;
    bottom: 13px;
    left: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 53px;
    padding: 12px 19px;
    border-radius: 100px;
    background: var(--acid);
    box-shadow: 0 15px 40px rgba(23, 28, 42, 0.3);
    color: var(--night);
    font-size: 0.68rem;
    font-weight: 600;
    transition: transform 300ms var(--ease);
  }

  .mobile-call.is-hidden {
    transform: translateY(85px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-enter,
  .js .motion {
    opacity: 1 !important;
    clip-path: none !important;
    transform: none !important;
  }
}
