@view-transition {
  navigation: auto;
}

:root {
  --ink: #263a35;
  --ink-soft: #53635e;
  --paper: #fbf7f0;
  --cream: #f4e6c8;
  --blush: #edc9bd;
  --rose: #c99076;
  --rose-deep: #a9664c;
  --bronze: #9b6a3f;
  --sage: #8ba79a;
  --teal: #275f60;
  --teal-deep: #173e3c;
  --gold: #d6ad57;
  --white: #fffdf9;
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shell: min(88vw, 1320px);
  --header-height: 82px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-soft: 0 28px 80px rgb(39 62 55 / 12%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

body::after {
  position: fixed;
  z-index: 80;
  inset: 0;
  pointer-events: none;
  background-image: repeating-radial-gradient(circle at 20% 30%, rgb(31 56 50 / 18%) 0 0.45px, transparent 0.6px 3px);
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.11;
}

.page-intro {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  color: var(--cream);
  background: var(--teal-deep);
  clip-path: inset(0 0 0 0);
  place-items: center;
  pointer-events: none;
  animation: intro-curtain 1.25s var(--ease-out) 750ms forwards;
}

.page-intro::before,
.page-intro::after {
  position: absolute;
  border: 1px solid rgb(214 173 87 / 24%);
  border-radius: 50%;
  content: "";
}

.page-intro::before {
  width: min(58vw, 680px);
  aspect-ratio: 1;
}

.page-intro::after {
  width: min(43vw, 500px);
  aspect-ratio: 1;
}

.page-intro__logo {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.84;
  text-align: center;
  animation: intro-mark 1.1s var(--ease-out) 200ms both;
}

.page-intro__logo span {
  display: block;
}

@keyframes intro-curtain {
  to {
    visibility: hidden;
    clip-path: inset(0 0 100% 0);
  }
}

@keyframes intro-mark {
  from { opacity: 0; transform: scale(0.82); }
  55% { opacity: 1; }
  to { opacity: 0; transform: scale(1.08); }
}

.scroll-progress {
  position: fixed;
  z-index: 160;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--rose-deep), var(--gold), var(--teal));
  box-shadow: 0 0 16px rgb(214 173 87 / 50%);
  transform: scaleX(var(--page-progress, 0));
  transform-origin: left;
  transition: transform 80ms linear;
}

::selection {
  color: var(--white);
  background: var(--teal);
}

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

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

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

button {
  color: inherit;
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  font-size: clamp(4rem, 10vw, 9rem);
}

h2 {
  margin-bottom: 0.75em;
  font-size: clamp(3rem, 6vw, 6.8rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.55em;
  font-size: clamp(1.75rem, 2.5vw, 2.6rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: clamp(7rem, 13vw, 13rem);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal-deep);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.eyebrow {
  margin-bottom: 1.4rem;
  color: var(--bronze);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  min-height: 52px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.button {
  position: relative;
  padding: 0.15rem 1.7rem;
  border: 1px solid transparent;
  border-radius: 999px;
  overflow: hidden;
  transition: color 350ms ease, background 350ms ease, border 350ms ease, transform 350ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding-inline: 1.35rem;
  font-size: 0.68rem;
}

.button--header,
.button--dark {
  color: var(--white);
  background: var(--teal-deep);
}

.button--header:hover,
.button--dark:hover {
  background: var(--rose-deep);
}

.button--light {
  color: var(--teal-deep);
  background: var(--white);
}

.button--light:hover {
  color: var(--white);
  background: transparent;
  border-color: rgb(255 255 255 / 50%);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.2rem 2.2rem;
}

.text-link {
  min-height: 34px;
  border-bottom: 1px solid currentColor;
  transition: gap 300ms var(--ease-out), color 300ms ease;
}

.text-link:hover {
  gap: 1.05em;
  color: var(--rose-deep);
}

.text-link--light:hover {
  color: var(--cream);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background 400ms ease, border-color 400ms ease, box-shadow 400ms ease;
}

.site-header.is-scrolled,
.site-header:has(.mobile-menu.is-open) {
  border-color: rgb(39 62 55 / 8%);
  background: rgb(251 247 240 / 88%);
  box-shadow: 0 8px 30px rgb(39 62 55 / 6%);
  backdrop-filter: blur(18px);
}

.site-header:has(.mobile-menu.is-open) {
  backdrop-filter: none;
}

.site-header__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  min-height: var(--header-height);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  color: var(--bronze);
  font-family: var(--serif);
  line-height: 1;
}

.wordmark__a {
  margin-right: 0.38em;
  font-size: 1.28rem;
}

.wordmark__rest {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3.6rem);
}

.nav-link {
  position: relative;
  padding-block: 0.7rem;
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.nav-link::after {
  position: absolute;
  bottom: 0.35rem;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--bronze);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease-out);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 0.75rem;
}

.language-switcher {
  position: relative;
}

.language-switcher__button,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.language-switcher__button {
  gap: 0.2rem;
  font-size: 0.7rem;
  font-weight: 600;
}

.language-switcher__button .icon {
  width: 0.9rem;
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 200px;
  padding: 1rem 1.15rem;
  border: 1px solid rgb(39 62 55 / 8%);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.language-switcher__menu span,
.language-switcher__menu small {
  display: block;
}

.language-switcher__menu span {
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.language-switcher__menu small {
  color: var(--ink-soft);
}

.motion-toggle {
  width: 100%;
  margin-top: 0.7rem;
  padding: 0.7rem 0 0;
  border: 0;
  border-top: 1px solid rgba(18, 63, 58, 0.14);
  background: transparent;
  color: var(--forest);
  font: 600 0.67rem/1.2 var(--sans);
  letter-spacing: 0.11em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: 140svh;
  min-height: 900px;
  background: var(--blush);
}

.hero__stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
}

.hero__watercolour,
.hero__wash,
.hero__lines {
  position: absolute;
  will-change: transform;
}

.hero__watercolour {
  inset: -10%;
  background-image: linear-gradient(90deg, rgb(238 193 183 / 30%), transparent 45%, rgb(255 255 255 / 14%)), url("../assets/watercolour-wide.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.82) contrast(0.98);
  transform: translate3d(calc(var(--pointer-x, 0) * -16px), calc(var(--hero-progress, 0) * 72px + var(--pointer-y, 0) * -12px), 0) scale(calc(1.04 + var(--hero-progress, 0) * 0.12));
  transform-origin: center;
}

.hero__watercolour::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(255 250 244 / 10%), rgb(197 125 94 / 12%));
  content: "";
}

.hero__wash {
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.55;
  transition: translate 180ms linear;
}

.hero__wash--one {
  top: 15%;
  left: -12%;
  width: 45vw;
  height: 40vw;
  background: radial-gradient(circle, rgb(255 243 219 / 85%), transparent 66%);
}

.hero__wash--two {
  right: -8%;
  bottom: 4%;
  width: 42vw;
  height: 42vw;
  background: radial-gradient(circle, rgb(123 165 155 / 32%), transparent 68%);
}

.gold-lines {
  pointer-events: none;
}

.gold-lines path {
  fill: none;
  stroke: var(--gold);
  stroke-dasharray: 1;
  stroke-dashoffset: var(--line-offset, 0.4);
  stroke-linecap: round;
  stroke-width: 1.1;
  vector-effect: non-scaling-stroke;
  opacity: 0.46;
}

.hero__lines {
  z-index: 1;
  right: -12%;
  bottom: -4%;
  width: 76vw;
  height: 50vh;
  opacity: calc(0.34 + var(--line-progress, 0) * 0.46);
  transform: translate3d(calc(var(--hero-progress, 0) * -7vw), calc(var(--hero-progress, 0) * -3vh), 0) rotate(calc(-8deg + var(--hero-progress, 0) * 10deg)) scale(calc(1 + var(--hero-progress, 0) * 0.14));
  transform-origin: center;
}

.hero__halo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(43vw, 590px);
  aspect-ratio: 1;
  border: 1px solid rgb(214 173 87 / 35%);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgb(255 250 235 / 5%), 0 0 0 104px rgb(214 173 87 / 4%);
  opacity: calc(0.45 - var(--hero-progress, 0) * 0.3);
  transform: translate3d(calc(-50% + var(--pointer-x, 0) * 22px), calc(-50% + var(--pointer-y, 0) * 18px + var(--hero-progress, 0) * -80px), 0) scale(calc(0.92 + var(--hero-progress, 0) * 0.28));
  animation: halo-breathe 5.5s ease-in-out infinite alternate;
}

@keyframes halo-breathe {
  from { box-shadow: 0 0 0 42px rgb(255 250 235 / 4%), 0 0 0 90px rgb(214 173 87 / 3%); }
  to { box-shadow: 0 0 0 62px rgb(255 250 235 / 7%), 0 0 0 124px rgb(214 173 87 / 5%); }
}

.hero__content {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding-block: calc(var(--header-height) + 2rem) 8rem;
  opacity: calc(1 - var(--hero-progress, 0) * 0.28);
  transform: translateY(calc(var(--hero-progress, 0) * -2.3rem)) scale(calc(1 - var(--hero-progress, 0) * 0.045));
  transform-origin: center;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  color: var(--bronze);
  font-size: clamp(3.8rem, 7.8vw, 7.8rem);
  letter-spacing: -0.045em;
  line-height: 0.91;
  text-align: center;
  scale: calc(1 + var(--hero-progress, 0) * 0.12);
  transform-origin: center;
  transition: scale 120ms linear;
}

.hero-logo span {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: hero-word 1.1s var(--ease-out) forwards;
  transition: translate 120ms linear;
}

.hero-logo span:nth-child(odd) {
  translate: 0 0;
}

.hero-logo span:nth-child(even) {
  translate: 0 0;
}

.hero-logo span:nth-child(2) { animation-delay: 100ms; }
.hero-logo span:nth-child(3) { animation-delay: 200ms; }
.hero-logo span:nth-child(4) { animation-delay: 300ms; }
.hero-logo span:nth-child(5) { animation-delay: 400ms; }

@keyframes hero-word {
  to { opacity: 1; transform: translateY(0); }
}

.hero__side {
  max-width: 14rem;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2.25rem);
  line-height: 1.15;
  text-shadow: 0 2px 20px rgb(108 62 45 / 18%);
}

.hero__side--left {
  justify-self: end;
  margin-right: clamp(3rem, 7vw, 8rem);
  text-align: right;
  translate: calc(var(--hero-progress, 0) * -10vw) calc(var(--hero-progress, 0) * 4vh);
}

.hero__side--right {
  margin-left: clamp(3rem, 7vw, 8rem);
  translate: calc(var(--hero-progress, 0) * 10vw) calc(var(--hero-progress, 0) * -4vh);
}

.hero__bottom {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 2.5rem;
  left: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  opacity: calc(1 - var(--hero-progress, 0) * 1.15);
}

.hero__bottom > p {
  max-width: 22rem;
  margin-bottom: 0;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 1px;
  height: 48px;
  background: rgb(39 62 55 / 24%);
  overflow: hidden;
}

.scroll-cue i::after {
  position: absolute;
  top: -70%;
  left: 0;
  width: 1px;
  height: 65%;
  background: var(--teal-deep);
  content: "";
  animation: scroll-cue 2.2s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% { transform: translateY(0); }
  100% { transform: translateY(260%); }
}

.think-section {
  --section-progress: 0;
  background: var(--paper);
}

.think-section::before {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 180px;
  background: linear-gradient(180deg, rgb(237 201 189 / 72%), transparent);
  content: "";
  opacity: calc(0.7 - var(--section-progress) * 0.65);
  pointer-events: none;
}

.think-grid,
.closing-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(380px, 0.92fr);
  align-items: center;
  gap: clamp(3rem, 5vw, 6rem);
}

.think-section .shell,
.closing-section .shell,
.work-story .shell,
.offers-section .shell {
  width: min(94vw, 1540px);
}

.think-art,
.closing-art {
  position: relative;
  min-height: 0;
  aspect-ratio: 1;
}

.think-art__frame {
  position: absolute;
  inset: 4% 0 0 0;
  clip-path: inset(0);
  box-shadow: 0 40px 100px rgb(49 60 53 / 15%);
  will-change: transform;
}

.think-art__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 50%, rgb(199 139 107 / 22%));
  content: "";
}

.think-art__frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(calc(1.1 - var(--section-progress, 0) * 0.08));
  transition: transform 100ms linear, filter 1.2s ease;
}

.think-art__circle {
  position: absolute;
  border: 1px solid rgb(214 173 87 / 55%);
  border-radius: 50%;
}

.think-art__circle--one {
  top: 0;
  right: -7%;
  width: 48%;
  aspect-ratio: 1;
}

.think-art__circle--two {
  right: 4%;
  bottom: -3%;
  width: 20%;
  aspect-ratio: 1;
}

.editorial-copy {
  position: relative;
  z-index: 2;
  max-width: 41rem;
}

.editorial-copy h2 {
  max-width: 10ch;
}

.editorial-copy > p:not(.eyebrow) {
  max-width: 38rem;
  margin-bottom: 1.3rem;
  color: var(--ink-soft);
}

.editorial-copy .text-link,
.editorial-copy .button {
  margin-top: 1.3rem;
}

.work-story {
  --story-progress: 0;
  position: relative;
  min-height: 220svh;
  color: var(--white);
  background: var(--rose-deep);
}

.work-story__stage {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding-block: calc(var(--header-height) + 3rem) 5rem;
  overflow: hidden;
  background: linear-gradient(115deg, #a56c51, #bd8b6e 58%, #d3a690);
}

.work-story__colour {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 15% 30%, rgb(233 206 168 / 28%), transparent 40%), radial-gradient(circle at 88% 80%, rgb(38 96 94 / 20%), transparent 35%);
  transform: translate3d(calc(var(--story-progress) * 5vw), calc(var(--story-progress) * -5vh), 0) scale(calc(1.03 + var(--story-progress) * 0.12));
  transform-origin: center;
}

.work-story__lines {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 70vw;
  height: 65vh;
  opacity: calc(0.2 + var(--story-progress) * 0.56);
  transform: translate3d(calc(var(--story-progress) * -9vw), calc(var(--story-progress) * 7vh), 0) rotate(calc(var(--story-progress) * -7deg));
}

.work-story__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(480px, 1.12fr) minmax(400px, 0.88fr);
  align-items: center;
  gap: clamp(3rem, 5vw, 6rem);
}

.work-story__art {
  position: relative;
}

.work-story__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 40px 100px rgb(76 38 29 / 26%);
  transition: scale 140ms linear;
  will-change: transform;
}

.vertical-note {
  position: absolute;
  right: auto;
  bottom: -2.4rem;
  left: 50%;
  margin: 0;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.editorial-copy--light .eyebrow,
.editorial-copy--light > p:not(.eyebrow) {
  color: rgb(255 253 249 / 78%);
}

.editorial-copy--light h2 {
  color: var(--white);
}

.work-story__service {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-block: 1rem;
  border-top: 1px solid rgb(255 255 255 / 25%);
  border-bottom: 1px solid rgb(255 255 255 / 25%);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.offers-section {
  --section-progress: 0;
  background: linear-gradient(125deg, #f5e5b8 0%, #f0d7bd 48%, #e1c0b7 100%);
  overflow: hidden;
}

.offers-section::before {
  position: absolute;
  top: -18vw;
  right: -15vw;
  width: 55vw;
  aspect-ratio: 1;
  border: 1px solid rgb(214 173 87 / 26%);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgb(255 255 255 / 5%), 0 0 0 120px rgb(255 255 255 / 4%);
  content: "";
  transform: rotate(calc(var(--section-progress) * 28deg)) scale(calc(0.86 + var(--section-progress) * 0.3));
  transition: transform 120ms linear;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 50rem;
  margin: 0 auto clamp(5rem, 9vw, 9rem);
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 0.35em;
}

.section-heading > p:last-child {
  max-width: 34rem;
  margin-inline: auto;
  color: var(--ink-soft);
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading--left > p:last-child {
  margin-inline: 0;
}

.featured-therapies {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 2.5vw, 3rem);
}

.therapy-card {
  position: relative;
}

.therapy-card__image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1;
  margin-bottom: 2.2rem;
}

.therapy-card__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 25px 60px rgb(67 62 45 / 16%);
  transition: border-radius 700ms var(--ease-out), transform 700ms var(--ease-out), box-shadow 700ms ease;
}

.therapy-card__orbit {
  position: absolute;
  z-index: 1;
  inset: -4%;
  border: 1px solid rgb(155 106 63 / 40%);
  border-radius: 50%;
  transition: transform 900ms var(--ease-out);
}

.therapy-card__orbit::after {
  position: absolute;
  top: 18%;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgb(214 173 87 / 12%);
  content: "";
}

.therapy-card__image-wrap:hover .therapy-card__image {
  border-radius: 50% 50% 18% 50%;
  box-shadow: 0 35px 80px rgb(67 62 45 / 23%);
  transform: scale(1.018);
}

.therapy-card__image-wrap:hover .therapy-card__orbit {
  transform: rotate(38deg) scale(1.04);
}

.therapy-card__meta {
  margin-bottom: 0.7rem;
  color: var(--bronze);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.therapy-card__content > p:not(.therapy-card__meta) {
  color: var(--ink-soft);
}

.therapy-card__content .text-link {
  margin-top: 0.6rem;
}

.therapy-card--compact {
  text-align: center;
}

.therapy-card--compact .therapy-card__content > p:not(.therapy-card__meta),
.therapy-card--compact .text-link {
  display: none;
}

.therapy-card--compact h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
}

.offers-section__all {
  margin-top: clamp(4rem, 8vw, 8rem);
  text-align: center;
}

.closing-section {
  --section-progress: 0;
  background: var(--white);
  overflow: hidden;
}

.closing-section__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 30%, rgb(238 201 189 / 25%)), url("../assets/watercolour-wide.jpg") center / cover;
  opacity: calc(0.12 + var(--section-progress) * 0.18);
  transform: translate3d(calc(var(--section-progress) * -5vw), 0, 0) scale(calc(1.05 + var(--section-progress) * 0.08));
  transform-origin: center;
}

.closing-art {
  min-height: 0;
}

.closing-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 48% 48% 8% 48%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  transform: scale(calc(1.09 - var(--section-progress) * 0.08));
  transition: transform 120ms linear;
  will-change: transform;
}

.booking-cta {
  position: relative;
  display: grid;
  min-height: 72svh;
  color: var(--white);
  background: radial-gradient(circle at 50% 40%, #3a7672, var(--teal-deep) 67%);
  place-items: center;
  overflow: hidden;
}

.booking-cta__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 760px);
  aspect-ratio: 1;
  border: 1px solid rgb(214 173 87 / 30%);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgb(214 173 87 / 5%), 0 0 0 140px rgb(214 173 87 / 4%), 0 0 0 210px rgb(214 173 87 / 3%);
  transform: translate(-50%, -50%);
  animation: booking-halo 6s ease-in-out infinite alternate;
}

@keyframes booking-halo {
  from { transform: translate(-50%, -50%) scale(0.92); opacity: 0.62; }
  to { transform: translate(-50%, -50%) scale(1.08); opacity: 1; }
}

.booking-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-block: 7rem;
  text-align: center;
}

.booking-cta .eyebrow {
  color: var(--cream);
}

.booking-cta h2 {
  margin-bottom: 0.35em;
}

.booking-cta__inner > p:not(.eyebrow) {
  max-width: 33rem;
  margin: 0 auto 2.4rem;
  color: rgb(255 253 249 / 74%);
}

.site-footer {
  color: var(--ink);
  background: #d5a88e;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) 1.4fr 0.8fr;
  gap: 4rem;
  padding-block: 6rem;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.footer-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  flex: 0 0 auto;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 0.9;
}

.footer-portrait {
  width: clamp(132px, 12.5vw, 148px);
  aspect-ratio: 3 / 4;
  overflow: hidden;
  flex: 0 0 auto;
  margin: 0;
  border: 1px solid rgb(157 103 61 / 34%);
  border-radius: 2px;
  box-shadow: 0 16px 34px rgb(62 44 35 / 15%);
}

.footer-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  filter: saturate(0.82) contrast(0.96);
}

.site-footer__contact,
.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 0.5rem;
  font-family: var(--serif);
  font-size: 1.6rem;
}

.footer-location {
  margin-top: 0.35rem;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer__contact a,
.site-footer__links a {
  transition: opacity 200ms ease;
}

.site-footer__contact a:hover,
.site-footer__links a:hover {
  opacity: 0.58;
}

.muted {
  opacity: 0.62;
}

.site-footer__base {
  display: flex;
  justify-content: space-between;
  padding-block: 1.5rem 2rem;
  border-top: 1px solid rgb(39 62 55 / 14%);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.floating-book {
  position: fixed;
  z-index: 90;
  right: 1rem;
  bottom: 1rem;
  display: none;
  align-items: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0.2rem 1.1rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--teal-deep);
  box-shadow: 0 12px 34px rgb(23 62 60 / 30%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Therapy overview */
.page-hero {
  position: relative;
  display: grid;
  min-height: 96svh;
  padding-top: var(--header-height);
  background: #e7d3b1;
  place-items: center;
  overflow: hidden;
}

.page-hero__texture,
.detail-hero__texture {
  position: absolute;
  inset: -10%;
  background-image: linear-gradient(90deg, rgb(245 229 200 / 86%), rgb(222 188 161 / 50%)), url("../assets/watercolour-wide.jpg");
  background-position: center;
  background-size: cover;
  will-change: transform;
}

.page-hero__lines {
  position: absolute;
  z-index: 2;
  right: -10%;
  bottom: 0;
  width: 80vw;
  height: 55vh;
}

.page-hero__art {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 4vw;
  width: min(60vw, 800px);
  opacity: 0.82;
  transform: translateY(-45%);
  will-change: transform;
}

.page-hero__content {
  position: relative;
  z-index: 3;
  padding-right: 45%;
}

.page-hero__content h1 {
  margin-bottom: 0.2em;
}

.page-hero__content > p:not(.eyebrow) {
  max-width: 27rem;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.25;
}

.page-hero__content .scroll-cue {
  margin-top: 3rem;
}

.therapy-list {
  padding-block: clamp(4.5rem, 7vw, 7rem);
  background: var(--paper);
}

.therapy-list .section-heading {
  width: 48%;
  max-width: 44rem;
  margin-bottom: 0;
}

.therapy-list__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(-19rem, -18vw, -12rem);
}

.therapy-list__grid::before {
  position: absolute;
  top: 3%;
  bottom: 3%;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgb(155 106 63 / 22%) 8%,
    rgb(155 106 63 / 22%) 92%,
    transparent
  );
  content: "";
}

.therapy-list__grid .therapy-card {
  z-index: 1;
  width: min(47%, 520px);
  margin-top: 0;
}

.therapy-list__grid .therapy-card:nth-child(n + 2) {
  margin-top: clamp(-21rem, -20vw, -16rem);
}

.therapy-list__grid .therapy-card:nth-child(odd) {
  justify-self: end;
}

.therapy-list__grid .therapy-card:nth-child(even) {
  justify-self: start;
}

.therapy-list__grid .therapy-card__image-wrap {
  max-width: 520px;
}

/* Therapy detail */
.detail-hero {
  position: relative;
  min-height: 100svh;
  padding-block: calc(var(--header-height) + 5rem) 7rem;
  background: #ead8ba;
  overflow: hidden;
}

.therapy-detail--cream .detail-hero { background: #efe1bf; }
.therapy-detail--sage .detail-hero { background: #d4ded1; }
.therapy-detail--gold .detail-hero { background: #e3c9a4; }
.therapy-detail--forest .detail-hero { color: var(--white); background: var(--teal-deep); }

.therapy-detail--forest .detail-hero__texture {
  background-image: radial-gradient(circle at 20% 30%, rgb(213 173 87 / 22%), transparent 45%), linear-gradient(110deg, #173e3c, #3c716b);
}

.detail-hero__lines {
  position: absolute;
  z-index: 1;
  right: -10%;
  bottom: -5%;
  width: 75vw;
  height: 60vh;
}

.back-link {
  position: absolute;
  z-index: 4;
  top: calc(var(--header-height) + 1rem);
  left: 6vw;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.back-link .icon {
  transform: rotate(180deg);
}

.detail-hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(350px, 0.82fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(4rem, 7vw, 8rem);
  min-height: calc(100svh - var(--header-height) - 12rem);
}

.detail-hero__copy h1 {
  margin-bottom: 0.25em;
  font-size: clamp(4.4rem, 7vw, 7.7rem);
}

.therapy-detail--forest .site-header:not(.is-scrolled) {
  color: var(--white);
}

.therapy-detail--forest .site-header:not(.is-scrolled) .wordmark {
  color: var(--cream);
}

.therapy-detail--forest .site-header:not(.is-scrolled) .nav-link,
.therapy-detail--forest .site-header:not(.is-scrolled) .language-switcher__button {
  color: var(--white);
}

.therapy-detail--forest .site-header:not(.is-scrolled) .button--header {
  color: var(--teal-deep);
  background: var(--white);
}

.detail-hero__copy > p:not(.eyebrow) {
  max-width: 35rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.therapy-detail--forest .detail-hero__copy > p:not(.eyebrow),
.therapy-detail--forest .detail-hero .eyebrow {
  color: rgb(255 253 249 / 72%);
}

.therapy-detail--forest .detail-hero .button--dark {
  color: var(--teal-deep);
  background: var(--white);
}

.detail-hero__meta {
  display: flex;
  gap: 3rem;
  margin: 2.3rem 0 2rem;
  padding-block: 1rem;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 1.25rem;
  opacity: 0.8;
}

.detail-hero__art-wrap {
  position: relative;
  width: 100%;
  max-width: 690px;
  aspect-ratio: 1;
}

.detail-hero__art {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 12% 50%;
  object-fit: cover;
  box-shadow: 0 40px 100px rgb(51 62 54 / 18%);
  will-change: transform;
}

.detail-hero__orbit {
  position: absolute;
  inset: -4%;
  border: 1px solid rgb(214 173 87 / 55%);
  border-radius: 50%;
}

.detail-hero__orbit::before,
.detail-hero__orbit::after {
  position: absolute;
  border: 1px solid rgb(214 173 87 / 28%);
  border-radius: 50%;
  content: "";
}

.detail-hero__orbit::before { inset: -5%; }
.detail-hero__orbit::after { inset: -10%; }

.detail-body {
  background: var(--paper);
}

.detail-body__intro {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 4rem;
  max-width: 1040px;
  margin-bottom: clamp(7rem, 12vw, 12rem);
}

.detail-body__intro .lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1.2;
}

.detail-body__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.detail-body__grid article {
  padding-top: 1.5rem;
  border-top: 1px solid rgb(39 62 55 / 20%);
}

.detail-body__grid article > span {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.detail-body__grid h2 {
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.detail-body__grid p {
  color: var(--ink-soft);
}

.session-note {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 4rem;
  max-width: 1040px;
  margin-top: clamp(7rem, 12vw, 12rem);
  padding: clamp(2.5rem, 5vw, 5rem);
  background: #eee1d1;
}

.session-note > p:last-child {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.3rem);
  line-height: 1.35;
}

.next-therapy {
  background: var(--white);
}

.next-therapy__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 3rem;
  padding-block: 4rem;
}

.next-therapy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5.5rem);
}

.next-therapy__image {
  width: 120px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.next-therapy__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.next-therapy__arrow {
  display: grid;
  width: 64px;
  aspect-ratio: 1;
  border: 1px solid rgb(39 62 55 / 20%);
  border-radius: 50%;
  place-items: center;
  transition: color 300ms ease, background 300ms ease, transform 300ms var(--ease-out);
}

.next-therapy__inner:hover .next-therapy__image img {
  transform: scale(1.08);
}

.next-therapy__inner:hover .next-therapy__arrow {
  color: var(--white);
  background: var(--teal-deep);
  transform: translateX(6px);
}

.not-found {
  display: grid;
  min-height: 78svh;
  padding-top: var(--header-height);
  background: linear-gradient(135deg, var(--blush), var(--cream));
  place-items: center;
  text-align: center;
}

.not-found h1 {
  max-width: 10ch;
  margin-inline: auto;
  font-size: clamp(4rem, 9vw, 8rem);
}

/* Reveal and scroll state */
.js [data-reveal] {
  opacity: 0;
  filter: blur(14px);
  transition:
    opacity 1050ms var(--ease-out) var(--delay, 0ms),
    filter 1200ms var(--ease-out) var(--delay, 0ms),
    transform 1350ms var(--ease-out) var(--delay, 0ms),
    clip-path 1450ms var(--ease-out) var(--delay, 0ms);
  will-change: opacity, filter, transform, clip-path;
}

.js [data-reveal="up"] {
  transform: translate3d(0, 88px, 0) scale(0.965);
}

.js [data-reveal="left"] {
  transform: translate3d(-110px, 25px, 0) scale(0.95);
}

.js [data-reveal="clip"] {
  clip-path: inset(0 100% 0 0 round 2px);
  filter: blur(8px) saturate(0.72);
  transform: scale(0.94);
  transform-origin: left center;
}

.js [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0) saturate(1);
  clip-path: inset(0 0 0 0 round 0);
  transform: translate3d(0, 0, 0) scale(1);
}

.js .editorial-copy[data-reveal] > *,
.js .section-heading[data-reveal] > *,
.js .booking-cta__inner[data-reveal] > * {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition: opacity 850ms var(--ease-out), transform 1050ms var(--ease-out);
}

.js .editorial-copy[data-reveal].is-visible > *,
.js .section-heading[data-reveal].is-visible > *,
.js .booking-cta__inner[data-reveal].is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.js .editorial-copy[data-reveal].is-visible > :nth-child(1),
.js .section-heading[data-reveal].is-visible > :nth-child(1),
.js .booking-cta__inner[data-reveal].is-visible > :nth-child(1) { transition-delay: 120ms; }

.js .editorial-copy[data-reveal].is-visible > :nth-child(2),
.js .section-heading[data-reveal].is-visible > :nth-child(2),
.js .booking-cta__inner[data-reveal].is-visible > :nth-child(2) { transition-delay: 220ms; }

.js .editorial-copy[data-reveal].is-visible > :nth-child(3),
.js .section-heading[data-reveal].is-visible > :nth-child(3),
.js .booking-cta__inner[data-reveal].is-visible > :nth-child(3) { transition-delay: 320ms; }

.js .editorial-copy[data-reveal].is-visible > :nth-child(4),
.js .section-heading[data-reveal].is-visible > :nth-child(4),
.js .booking-cta__inner[data-reveal].is-visible > :nth-child(4) { transition-delay: 420ms; }

.js .editorial-copy[data-reveal].is-visible > :nth-child(n + 5),
.js .section-heading[data-reveal].is-visible > :nth-child(n + 5),
.js .booking-cta__inner[data-reveal].is-visible > :nth-child(n + 5) { transition-delay: 520ms; }

.js .therapy-card[data-reveal] .therapy-card__image-wrap {
  clip-path: circle(8% at 50% 50%);
  filter: saturate(0.65) blur(5px);
  transform: scale(0.9) rotate(-3deg);
  transition: clip-path 1400ms var(--ease-out) 140ms, filter 1200ms ease 140ms, transform 1400ms var(--ease-out) 140ms;
}

.js .therapy-card[data-reveal].is-visible .therapy-card__image-wrap {
  clip-path: circle(72% at 50% 50%);
  filter: saturate(1) blur(0);
  transform: scale(1) rotate(0);
}

.js .therapy-card[data-reveal] .therapy-card__content {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 850ms var(--ease-out) 420ms, transform 1050ms var(--ease-out) 420ms;
}

.js .therapy-card[data-reveal].is-visible .therapy-card__content {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(90vw, 1080px);
  }

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

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle__close {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__open {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle__close {
    display: inline-flex;
  }

  .mobile-menu {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: calc(var(--header-height) + 2rem) 5vw 3rem;
    visibility: hidden;
    background: rgb(251 247 240 / 98%);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 450ms ease, transform 650ms var(--ease-out), visibility 0s 650ms;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 450ms ease, transform 650ms var(--ease-out), visibility 0s;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mobile-menu nav a {
    font-family: var(--serif);
    font-size: clamp(2.7rem, 7vw, 5rem);
    line-height: 1.3;
  }

  .mobile-menu__phone {
    border-bottom: 1px solid currentColor;
    font-size: 0.82rem;
  }

  .detail-hero__grid {
    grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1fr);
  }
}

@media (max-width: 800px) {
  :root {
    --header-height: 68px;
    --shell: min(88vw, 720px);
  }

  body {
    font-size: 15px;
  }

  .section {
    padding-block: 7rem;
  }

  .wordmark__a {
    font-size: 1.75rem;
  }

  .wordmark__rest,
  .button--header,
  .language-switcher {
    display: none;
  }

  .hero {
    height: 115svh;
    min-height: 720px;
  }

  .hero__stage {
    min-height: 620px;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 7rem 9rem;
  }

  .hero-logo {
    order: 1;
    font-size: clamp(4.2rem, 17vw, 7rem);
  }

  .hero__side {
    position: absolute;
    font-size: 1.25rem;
  }

  .hero__side--left {
    top: 30%;
    left: 0;
    margin: 0;
    text-align: left;
  }

  .hero__side--right {
    right: 0;
    bottom: 29%;
    margin: 0;
    text-align: right;
  }

  .hero__bottom > p {
    display: none;
  }

  .hero__bottom {
    justify-content: flex-start;
  }

  .think-grid,
  .closing-grid,
  .work-story__grid,
  .detail-hero__grid {
    grid-template-columns: 1fr;
  }

  .think-grid,
  .closing-grid {
    gap: 5rem;
  }

  .think-art,
  .closing-art {
    min-height: 82vw;
  }

  .editorial-copy h2 {
    max-width: 12ch;
  }

  .work-story__stage {
    position: relative;
    padding-block: 8rem;
  }

  .work-story {
    min-height: auto;
  }

  .work-story__grid {
    gap: 5rem;
  }

  .work-story__art {
    width: min(92%, 540px);
  }

  .vertical-note {
    right: auto;
    bottom: -2.2rem;
  }

  .featured-therapies {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .therapy-card--compact {
    display: grid;
    grid-template-columns: minmax(150px, 0.8fr) 1fr;
    align-items: center;
    gap: 2rem;
    text-align: left;
  }

  .therapy-card--compact .therapy-card__image-wrap {
    margin-bottom: 0;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem 2.5rem;
  }

  .site-footer__links {
    grid-column: 2;
  }

  .floating-book {
    display: inline-flex;
  }

  .menu-open .floating-book {
    pointer-events: none;
    opacity: 0;
  }

  .page-hero {
    min-height: 90svh;
    padding-bottom: 4rem;
    place-items: end center;
  }

  .page-hero__art {
    top: 43%;
    right: -23vw;
    width: 100vw;
    opacity: 0.58;
  }

  .page-hero__content {
    padding-right: 25%;
  }

  .therapy-list__grid {
    grid-template-columns: 1fr;
    gap: 3.25rem;
    margin-top: 0;
  }

  .therapy-list .section-heading {
    width: 100%;
  }

  .therapy-list__grid .therapy-card {
    width: min(78%, 520px);
    margin-top: 0;
  }

  .therapy-list__grid .therapy-card:nth-child(n + 2) {
    margin-top: 0;
  }

  .detail-hero {
    padding-block: calc(var(--header-height) + 6rem) 6rem;
  }

  .back-link {
    top: calc(var(--header-height) + 1rem);
  }

  .detail-hero__grid {
    gap: 5rem;
  }

  .detail-hero__art-wrap {
    width: 90%;
    margin-inline: auto;
  }

  .detail-body__intro,
  .session-note {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .detail-body__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
}

@media (max-width: 520px) {
  h2 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .header-actions {
    gap: 0;
  }

  .hero__bottom {
    bottom: 1.3rem;
  }

  .hero__side {
    font-size: 1.05rem;
  }

  .hero__side--left {
    top: 24%;
  }

  .hero__side--right {
    bottom: 22%;
  }

  .think-art,
  .closing-art {
    min-height: 98vw;
  }

  .work-story__service {
    flex-direction: column;
    gap: 0.25rem;
  }

  .therapy-card--compact {
    display: block;
    text-align: center;
  }

  .therapy-card--compact .therapy-card__image-wrap {
    margin-bottom: 2rem;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-block: 4.5rem;
  }

  .site-footer__links {
    grid-column: auto;
  }

  .site-footer__base {
    flex-direction: column;
    gap: 0.4rem;
    padding-bottom: 6rem;
  }

  .page-hero__content {
    padding-right: 0;
  }

  .page-hero__content h1 {
    font-size: clamp(4.8rem, 25vw, 7rem);
  }

  .page-hero__art {
    top: 38%;
    right: -35vw;
    width: 125vw;
    opacity: 0.42;
  }

  .therapy-list {
    padding-block: 4.5rem;
  }

  .therapy-list .section-heading {
    margin-bottom: 2.75rem;
  }

  .therapy-list__grid {
    gap: 2.75rem;
  }

  .therapy-list__grid::before {
    display: none;
  }

  .therapy-list__grid .therapy-card {
    width: 100%;
    justify-self: stretch;
  }

  .detail-hero__copy h1 {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .detail-hero__meta {
    gap: 1.6rem;
  }

  .detail-hero__art-wrap {
    width: 100%;
  }

  .session-note {
    width: 100%;
  }

  .next-therapy__inner {
    grid-template-columns: 1fr auto;
    gap: 1.2rem;
  }

  .next-therapy__image {
    display: none;
  }

  .next-therapy__arrow {
    width: 50px;
  }

  .floating-book {
    right: 0.7rem;
    bottom: 0.7rem;
  }
}

html[data-motion="reduced"] {
  scroll-behavior: auto;
}

html[data-motion="reduced"] *,
html[data-motion="reduced"] *::before,
html[data-motion="reduced"] *::after {
  scroll-behavior: auto !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}

html[data-motion="reduced"] [data-reveal] {
  opacity: 1;
  clip-path: none;
  filter: none;
  transform: none;
}

html[data-motion="reduced"] [data-parallax] {
  translate: none !important;
  transform: none !important;
}

html[data-motion="reduced"] .hero__watercolour,
html[data-motion="reduced"] .hero-logo span,
html[data-motion="reduced"] .hero__side,
html[data-motion="reduced"] .therapy-card__image img {
  transform: none !important;
}

html[data-motion="reduced"] .page-intro {
  display: none;
}

html[data-motion="reduced"] .scroll-progress i {
  transition: none;
}
