/*! Static site styles. Edit this file directly; no build step is required. */

:root {
  --blue: #003aa3;
  --blue-deep: #06174a;
  --blue-ink: #071126;
  --paper: #f1eadf;
  --paper-light: #fff9ef;
  --paper-muted: #e1d4c3;
  --paper-card: #f7efe2;
  --paper-card-rgb: 247 239 226;
  --sand: #c6ae96;
  --clay: #9b5e45;
  --clay-dark: #6e3f31;
  --ink: #241d18;
  --ink-soft: #493e35;
  --muted: #776b61;
  --line: #cbbba7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 249, 239, 0.88), transparent 34rem),
    linear-gradient(90deg, rgba(36, 29, 24, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 92px 100%, auto;
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::selection {
  background: var(--blue);
  color: var(--paper-light);
}

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

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

button {
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(4rem, 8.2vw, 8.4rem);
  line-height: 0.88;
  margin-bottom: 26px;
  max-width: 940px;
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5.25rem);
  line-height: 0.98;
  margin-bottom: 24px;
  max-width: 880px;
}

h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.7rem);
  line-height: 1.08;
}

.site-header {
  align-items: center;
  background: rgba(241, 234, 223, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(36, 29, 24, 0.12);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  font-family: "Fraunces", Georgia, serif;
  gap: 11px;
  min-width: max-content;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1.05;
}

.brand-copy > span:first-child {
  font-size: 1.08rem;
  font-weight: 650;
}

.brand-subtitle {
  color: var(--muted);
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.brand-mark {
  height: 38px;
  object-fit: contain;
  width: 38px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(14px, 2.6vw, 34px);
  justify-content: center;
}

.nav-toggle {
  display: none;
}

.site-nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.header-cta,
.button {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 1px;
  display: inline-flex;
  font-size: 0.98rem;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease,
    transform 180ms ease;
}

.header-cta,
.button-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--paper-light);
}

.header-cta:hover,
.button-primary:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 249, 239, 0.66);
  border-color: var(--ink);
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--ink);
  color: var(--paper-light);
  transform: translateY(-1px);
}

.button-light {
  background: var(--paper-light);
  border-color: var(--paper-light);
  color: var(--blue-deep);
}

.button-light:hover {
  background: transparent;
  color: var(--paper-light);
  transform: translateY(-1px);
}

.hero {
  background:
    linear-gradient(90deg, rgba(255, 249, 239, 0.6), transparent 34%),
    var(--paper);
  display: grid;
  min-height: clamp(740px, 88svh, 930px);
  overflow: hidden;
  padding: 118px clamp(20px, 5vw, 72px) 72px;
  position: relative;
}

.hero::before {
  display: none;
}

.hero::after {
  background: var(--clay);
  bottom: 0;
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  width: 42vw;
}

.hero-image {
  bottom: 0;
  height: calc(100% - 78px);
  max-height: none;
  object-fit: cover;
  object-position: center;
  position: absolute;
  inset: 78px clamp(18px, 5vw, 72px) 0 auto;
  width: min(43vw, 650px);
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(241, 234, 223, 0.32) 0%, rgba(241, 234, 223, 0.16) 48%, transparent 74%),
    linear-gradient(0deg, rgba(241, 234, 223, 0.12), transparent 34%);
  inset: 78px 0 0;
  position: absolute;
  z-index: 1;
}

.hero-content {
  align-self: center;
  color: var(--ink);
  margin-left: clamp(34px, 5vw, 76px);
  max-width: 820px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--clay);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero-name {
  color: var(--clay);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-lead {
  color: var(--ink-soft);
  font-size: clamp(1.2rem, 2vw, 1.58rem);
  line-height: 1.45;
  max-width: 590px;
}

.hero-slogan {
  color: var(--blue-deep);
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.14rem, 1.8vw, 1.45rem);
  line-height: 1.32;
  margin: 28px 0 32px;
  max-width: 540px;
  padding-left: 0;
  position: relative;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section {
  padding: clamp(82px, 10vw, 138px) clamp(20px, 5vw, 64px);
  scroll-margin-top: 120px;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
}

.split,
.contact-grid {
  align-items: start;
  display: grid;
  gap: clamp(34px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.split p,
.section-heading p,
.therapy-lab-copy p,
.principles p,
.faq-list p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
}

.therapy-lab {
  background: var(--paper-light);
  position: relative;
}

.therapy-lab-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.5fr);
  position: relative;
}

.therapy-lab-copy {
  max-width: 760px;
  padding-top: 34px;
}

.therapy-lab-copy h2 {
  max-width: 720px;
}

.therapy-lab-copy > p {
  max-width: 590px;
}

.therapy-note {
  align-self: center;
  background: var(--paper-muted);
  min-height: 390px;
  overflow: hidden;
  padding: clamp(10px, 1.4vw, 18px);
}

.therapy-note img {
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.therapy-path {
  grid-column: 1 / -1;
}

.therapy-path ul {
  display: grid;
  gap: clamp(16px, 2vw, 26px);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.therapy-path li {
  background: rgb(var(--paper-card-rgb) / 0.88);
  color: var(--ink);
  display: grid;
  gap: 16px;
  grid-template-columns: 62px minmax(0, 1fr);
  min-height: 250px;
  padding: clamp(24px, 4vw, 38px);
  position: relative;
}

.therapy-path li:nth-child(even) {
  transform: translateY(34px);
}

.therapy-number {
  color: var(--clay);
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.therapy-path li strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 2.3vw, 2.15rem);
  font-weight: 600;
  line-height: 1.04;
}

.therapy-path li p {
  color: var(--muted);
  font-size: 1rem;
  grid-column: 2;
  line-height: 1.55;
  margin: 0;
}

.section-heading {
  margin-bottom: clamp(38px, 6vw, 70px);
  max-width: 790px;
}

.section-heading.narrow {
  max-width: 700px;
}

.text-link {
  color: var(--blue);
  display: inline-flex;
  font-weight: 800;
  position: relative;
}

.text-link::after {
  background: currentColor;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0.48);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.approach {
  background:
    linear-gradient(90deg, var(--paper-muted) 0 37%, var(--paper) 37%),
    var(--paper-muted);
  overflow: hidden;
  position: relative;
}

.approach::after {
  color: rgba(6, 23, 74, 0.08);
  content: "GESTALT";
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(5rem, 14vw, 15rem);
  font-weight: 700;
  left: 2vw;
  line-height: 0.8;
  position: absolute;
  top: 8%;
  transform: rotate(180deg);
  writing-mode: vertical-lr;
}

.approach-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 7vw, 98px);
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  position: relative;
  z-index: 1;
}

.image-panel {
  background: var(--blue-deep);
  padding: clamp(10px, 1.4vw, 18px);
}

.image-panel img {
  aspect-ratio: 0.86 / 1;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.approach-content {
  background: rgba(241, 234, 223, 0.9);
  padding: clamp(28px, 5vw, 64px);
}

.principles {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.principles article {
  background: rgba(255, 249, 239, 0.5);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  padding: clamp(18px, 3vw, 28px);
  width: 100%;
}

.principles article:nth-child(1) {
  transform: none;
}

.principles article:nth-child(2) {
  transform: translateX(clamp(28px, 3vw, 44px));
}

.principles article:nth-child(3) {
  transform: translateX(clamp(56px, 5vw, 72px));
}

.principles h3,
.principles p {
  margin-bottom: 0;
  min-width: 0;
}

.credentials {
  background: var(--blue-deep);
  color: var(--paper-light);
  overflow: hidden;
  position: relative;
}

.credentials .section-inner {
  position: relative;
  z-index: 1;
}

.credentials .split {
  align-items: center;
  gap: clamp(42px, 6vw, 78px);
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
}

.credentials .credentials-eyebrow {
  color: var(--sand);
}

.contact-section .eyebrow {
  color: var(--sand);
}

.credentials-heading {
  min-width: 0;
  position: relative;
}

.credentials-heading h2 {
  overflow-wrap: break-word;
}

.credentials-image {
  border: 1px solid rgba(255, 249, 239, 0.16);
  margin: clamp(28px, 4vw, 46px) 0 0;
  max-width: 560px;
  overflow: hidden;
}

.credentials-image img {
  aspect-ratio: 16 / 7;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  opacity: 0.88;
  width: 100%;
}

.credentials .rich-text p {
  color: rgba(255, 249, 239, 0.78);
}

.rich-text {
  background: rgba(255, 249, 239, 0.06);
  display: grid;
  gap: 28px;
  min-width: 0;
  padding: clamp(28px, 5vw, 50px);
}

.credential-item {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.credential-item h3 {
  color: var(--paper-light);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  margin-bottom: 0;
}

.credential-item p {
  margin-bottom: 0;
}

.testimonials {
  background:
    linear-gradient(180deg, var(--paper) 0 54%, var(--paper-light) 54%),
    var(--paper);
  overflow: hidden;
}

.testimonial-heading {
  margin-left: clamp(0px, 8vw, 120px);
}

.testimonial-row {
  display: grid;
  gap: clamp(18px, 4vw, 46px);
  grid-template-columns: 0.92fr 1.12fr 0.92fr;
}

blockquote {
  display: grid;
  gap: 28px;
  grid-template-rows: 1fr auto;
  margin: 0;
  min-height: 360px;
  padding: clamp(26px, 4vw, 42px);
  position: relative;
}

blockquote:nth-child(1) {
  background: rgba(255, 249, 239, 0.86);
  transform: translateY(42px);
}

blockquote:nth-child(2) {
  background: rgba(0, 58, 163, 0.9);
  color: var(--paper-light);
}

blockquote:nth-child(3) {
  background: rgba(225, 212, 195, 0.82);
  transform: translateY(72px);
}

blockquote::before {
  content: "“";
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(4.6rem, 8vw, 8rem);
  left: 18px;
  line-height: 0.7;
  opacity: 0.22;
  position: absolute;
  top: 26px;
}

blockquote p {
  color: inherit;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1rem, 1.32vw, 1.22rem);
  line-height: 1.48;
  margin-bottom: 0;
  position: relative;
}

cite {
  align-items: center;
  align-self: end;
  display: inline-grid;
  gap: 8px;
  grid-template-columns: 32px minmax(0, 1fr);
  font-style: normal;
  position: relative;
}

.testimonial-person-icon {
  color: var(--clay);
  font-size: 1.6rem;
  line-height: 1;
}

.testimonial-author {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.testimonial-name {
  color: var(--blue-deep);
  display: block;
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.1;
}

.testimonial-service {
  color: var(--clay);
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

blockquote:nth-child(2) .testimonial-name,
blockquote:nth-child(2) .testimonial-service,
blockquote:nth-child(2) .testimonial-person-icon {
  color: var(--paper-light);
}

blockquote:nth-child(2) .testimonial-service {
  opacity: 0.78;
}

.reviews-link {
  margin-top: 12px;
}

.faq {
  background: var(--paper-light);
  position: relative;
}

.faq::before {
  background: var(--clay);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: clamp(8px, 1.2vw, 18px);
}

.faq .section-inner {
  display: grid;
  gap: clamp(32px, 6vw, 82px);
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
}

.faq .section-heading {
  margin-bottom: 0;
  position: sticky;
  top: 118px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  background: rgba(241, 234, 223, 0.62);
  padding: 0;
}

summary {
  color: var(--ink);
  cursor: pointer;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.12rem, 2vw, 1.58rem);
  font-weight: 600;
  line-height: 1.18;
  list-style: none;
  padding: 24px 56px 24px 26px;
  position: relative;
}

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

summary::after {
  color: var(--blue);
  content: "+";
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  position: absolute;
  right: 24px;
  top: 23px;
  transition: transform 180ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 820px;
  padding: 0 26px 26px;
}

.contact-section {
  background: var(--blue-deep);
  color: var(--paper-light);
  overflow: hidden;
  padding: clamp(82px, 10vw, 132px) clamp(20px, 5vw, 64px);
  scroll-margin-top: 120px;
}

.contact-section h2 {
  max-width: 640px;
}

.contact-section p {
  color: rgba(255, 249, 239, 0.78);
  max-width: 620px;
}

.contact-section .contact-actions {
  margin-top: 28px;
}

.contact-section .contact-grid {
  align-items: center;
}

.contact-details {
  background: rgba(255, 249, 239, 0.86);
  color: var(--blue-ink);
  display: grid;
  font-style: normal;
  gap: 22px;
  padding: clamp(28px, 5vw, 48px);
}

.contact-item {
  align-items: center;
  border-bottom: 1px solid rgba(6, 23, 74, 0.18);
  display: grid;
  gap: 16px;
  grid-template-columns: 32px minmax(0, 1fr);
  padding-bottom: 22px;
}

.contact-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-address {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  color: var(--blue);
  height: 24px;
  width: 24px;
}

.contact-details span {
  color: var(--clay-dark);
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  color: var(--blue-ink);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 700;
  margin: 0;
  overflow-wrap: anywhere;
  padding: 6px 0 18px;
}

.contact-address p {
  padding-bottom: 0;
}

.contact-map {
  border: 1px solid rgba(6, 23, 74, 0.18);
  min-height: 210px;
  overflow: hidden;
}

.contact-map iframe {
  border: 0;
  display: block;
  height: 210px;
  width: 100%;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 249, 239, 0.74);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 64px);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: rgba(255, 249, 239, 0.78);
}

.site-footer a:hover {
  color: var(--paper-light);
}

.reveal {
  animation: riseIn 640ms ease both;
}

@keyframes riseIn {
  from {
    transform: translateY(14px);
  }
  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (min-width: 981px) and (max-width: 1360px) {
  .hero-content {
    max-width: min(43vw, 560px);
  }

  .hero h1 {
    font-size: clamp(4.2rem, 6.3vw, 6.6rem);
    max-width: 6.5ch;
  }

  .hero-lead,
  .hero-slogan {
    max-width: 440px;
  }
}

@media (min-width: 1361px) and (max-width: 1600px) {
  .hero-content {
    margin-left: clamp(10px, 2.5vw, 40px);
    max-width: min(46vw, 650px);
  }

  .hero h1 {
    max-width: 7ch;
  }

  .hero-lead,
  .hero-slogan {
    max-width: 500px;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    min-height: auto;
  }

  .site-nav {
    order: 3;
    overflow-x: auto;
    padding-bottom: 4px;
    width: 100%;
  }

  .header-cta {
    min-height: 42px;
    padding: 10px 14px;
  }

  .hero {
    background: var(--paper);
    display: grid;
    gap: 34px;
    min-height: auto;
    overflow: visible;
    padding: 146px clamp(28px, 6vw, 54px) 76px;
  }

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

  .hero-image {
    aspect-ratio: 16 / 9;
    height: clamp(300px, 42vw, 400px);
    inset: auto;
    object-position: center;
    position: relative;
    width: 100%;
  }

  .hero-wash {
    display: none;
  }

  .hero-content {
    align-self: start;
    margin-left: 0;
    max-width: 760px;
  }

  .split,
  .contact-grid,
  .therapy-lab-grid,
  .approach-grid,
  .faq .section-inner {
    grid-template-columns: 1fr;
  }

  .credentials .split {
    align-items: start;
    gap: 32px;
    grid-template-columns: 1fr;
  }

  .therapy-path ul,
  .testimonial-row {
    grid-template-columns: 1fr;
  }

  .therapy-path li:nth-child(even),
  blockquote:nth-child(1),
  blockquote:nth-child(2),
  blockquote:nth-child(3),
  .contact-details {
    transform: none;
  }

  .therapy-path li:nth-child(even) {
    transform: none;
  }

  .approach {
    background: var(--paper-muted);
  }

  .principles article,
  .principles article:nth-child(1),
  .principles article:nth-child(2),
  .principles article:nth-child(3) {
    transform: none;
  }

  .faq .section-heading {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    background-size: 64px 100%;
  }

  .site-header {
    align-items: center;
    flex-wrap: nowrap;
    padding: 12px 16px;
  }

  .brand {
    gap: 9px;
  }

  .brand-copy > span:first-child {
    font-size: 0.98rem;
  }

  .brand-subtitle {
    font-size: 0.72rem;
  }

  .brand-mark {
    height: 34px;
    width: 34px;
  }

  .nav-toggle {
    align-items: center;
    border: 0;
    color: var(--ink);
    display: inline-grid;
    height: 42px;
    justify-content: center;
    margin-left: auto;
    outline: 0;
    padding: 0;
    position: relative;
    width: 42px;
  }

  .nav-toggle:focus-visible {
    background: rgba(36, 29, 24, 0.06);
  }

  .nav-icon {
    grid-area: 1 / 1;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-icon-close {
    opacity: 0;
    transform: scale(0.82);
  }

  .site-header.nav-open .nav-icon-menu {
    opacity: 0;
    transform: scale(0.82);
  }

  .site-header.nav-open .nav-icon-close {
    opacity: 1;
    transform: scale(1);
  }

  .site-nav {
    background: rgba(255, 249, 239, 0.98);
    border-top: 1px solid rgba(36, 29, 24, 0.1);
    display: grid;
    gap: 0;
    justify-content: stretch;
    justify-items: stretch;
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 16px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transition: max-height 180ms ease, opacity 180ms ease, padding 180ms ease;
    width: 100%;
  }

  .site-nav a {
    border-bottom: 1px solid rgba(36, 29, 24, 0.1);
    font-size: 1.04rem;
    min-height: 48px;
    padding: 12px 0;
    text-align: left;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav > * {
    min-height: 0;
  }

  .site-header.nav-open .site-nav {
    max-height: 320px;
    opacity: 1;
    padding-bottom: 8px;
    padding-top: 8px;
    pointer-events: auto;
  }

  .header-cta {
    display: none;
    font-size: 0.9rem;
  }

  .hero {
    align-content: start;
    background: var(--paper);
    display: grid;
    gap: 20px;
    grid-template-rows: auto auto;
    min-height: 920px;
    padding: 100px 18px 24px;
  }

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

  .hero-image {
    aspect-ratio: 16 / 9;
    height: auto;
    inset: auto;
    margin: 0;
    object-position: center;
    position: relative;
    width: 100%;
  }

  .hero-wash {
    display: none;
  }

  .hero-content {
    align-self: stretch;
    margin-left: 0;
    max-width: none;
    min-height: 0;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 3.9rem);
    line-height: 0.92;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 0;
  }

  h2 {
    font-size: clamp(2.18rem, 12vw, 3.35rem);
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .section {
    padding: 72px 18px;
  }

  .credentials {
    padding-bottom: 76px;
    padding-top: 76px;
  }

  .credentials .split {
    gap: 26px;
  }

  .credentials-heading h2 {
    font-size: clamp(2.1rem, 10.5vw, 3rem);
    line-height: 1;
    margin-bottom: 0;
  }

  .credentials-image {
    margin-top: 26px;
    max-width: none;
  }

  .credentials-image img {
    aspect-ratio: 16 / 8;
  }

  .credentials .credentials-eyebrow {
    margin-bottom: 14px;
  }

  .therapy-lab {
    background: var(--paper-light);
  }

  .therapy-lab-copy {
    padding-top: 28px;
  }

  .therapy-note {
    min-height: 300px;
  }

  .therapy-note img {
    aspect-ratio: 1.25 / 1;
    min-height: 0;
  }

  .therapy-path li {
    gap: 10px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px;
  }

  .therapy-path li + li {
    border-top: 1px solid rgba(36, 29, 24, 0.14);
  }

  .therapy-path li p {
    grid-column: auto;
  }

  .approach::after {
    display: none;
  }

  .image-panel {
    padding: 8px;
    transform: none;
  }

  .approach-content {
    padding: 0;
    background: transparent;
  }

  .principles {
    margin-top: 30px;
  }

  .principles article {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .rich-text {
    background: transparent;
    border-top: 1px solid rgba(255, 249, 239, 0.28);
    gap: 22px;
    padding: 24px 0 0;
  }

  .credential-item {
    gap: 8px;
  }

  .credential-item h3 {
    font-size: 1.2rem;
    line-height: 1.12;
  }

  .credentials .rich-text p {
    font-size: 1rem;
    line-height: 1.58;
  }

  .testimonial-heading {
    margin-left: 0;
  }

  blockquote,
  blockquote:nth-child(1),
  blockquote:nth-child(2),
  blockquote:nth-child(3) {
    min-height: 300px;
    padding: 24px;
    transform: none;
  }

  .reviews-link {
    margin-top: 12px;
  }

  .faq::before {
    display: none;
  }

  summary {
    padding: 22px 52px 22px 20px;
  }

  summary::after {
    right: 20px;
  }

  details p {
    padding: 0 20px 22px;
  }

  .contact-section {
    background: var(--blue-deep);
    padding: 72px 18px;
  }

  .contact-details {
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
