:root {
  --ink: #20241d;
  --soft-ink: #3a4035;
  --muted: #687061;
  --paper: #fffdf8;
  --ivory: #f5efe4;
  --mist: #eef3eb;
  --forest: #21381d;
  --forest-2: #101f0e;
  --sage: #718061;
  --clay: #93644a;
  --gold: #cfa73a;
  --line: #ded4c2;
  --white: #ffffff;
  --shadow: 0 30px 90px rgba(27, 37, 23, 0.17);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 98px;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.72;
  letter-spacing: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 24px;
  font-size: clamp(3.55rem, 7vw, 6.7rem);
  line-height: 0.94;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.3vw, 4.65rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.62rem;
  line-height: 1.1;
}

p {
  color: var(--muted);
}

ul {
  color: var(--muted);
}

.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;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 14px 5vw;
  color: var(--white);
  background: rgba(22, 35, 19, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, #7b679a, var(--gold), var(--sage));
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 6px 14px 6px 7px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.brand:hover,
.brand:focus-visible {
  background: rgba(255, 253, 248, 0.13);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.brand-mark-frame {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  place-items: center;
  padding: 2px;
  background:
    linear-gradient(rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.88)),
    radial-gradient(circle at 35% 25%, rgba(207, 167, 58, 0.7), rgba(113, 128, 97, 0.42) 58%, rgba(33, 56, 29, 0.36));
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  box-shadow: 0 9px 24px rgba(10, 20, 9, 0.22);
}

.brand-mark {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-text strong {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 0.92;
}

.brand-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.64rem;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 260ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
  transform-origin: left center;
}

.site-nav a[href="#book"] {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
}

.site-nav a[href="#book"]::after {
  right: 16px;
  left: 16px;
  bottom: 7px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  padding: 150px 6vw 88px;
  overflow: hidden;
  color: var(--ink);
  background: var(--ivory);
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.96) 0%, rgba(255, 253, 248, 0.82) 36%, rgba(255, 253, 248, 0.22) 72%, rgba(255, 253, 248, 0.04) 100%),
    linear-gradient(0deg, rgba(255, 253, 248, 0.36) 0%, rgba(255, 253, 248, 0) 44%);
}

.hero-media {
  position: absolute;
  inset: -8vh 0;
}

.hero-media img {
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: center 48%;
  opacity: 1;
  transform: translate3d(0, var(--hero-shift, 0px), 0) scale(1.06);
  transform-origin: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  max-width: 860px;
}

.eyebrow,
.hero-name {
  margin-bottom: 12px;
  color: var(--clay);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.86rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  text-transform: none;
}

.hero .eyebrow,
.hero-name {
  color: #5f4a7d;
}

.hero-name {
  margin-bottom: 18px;
  color: var(--forest);
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 14px;
  color: #5f4a7d;
  font-size: 1.38rem;
  font-style: italic;
}

.hero-support {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--soft-ink);
  font-size: 1.02rem;
}

.hero-modalities {
  max-width: 760px;
  margin-bottom: 30px;
  color: #5f4a7d;
  font-size: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .button {
  min-width: 176px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 4px;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.92rem;
  font-weight: 500;
  text-transform: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button-primary {
  background: var(--gold);
  color: #1d261b;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ddb95a;
}

.button-secondary {
  color: var(--forest);
  border: 1px solid rgba(33, 56, 29, 0.34);
  background: rgba(255, 253, 248, 0.34);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 253, 248, 0.72);
}

.booking-ribbon {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.booking-ribbon a {
  min-height: 116px;
  padding: 28px 6vw;
  border-right: 1px solid var(--line);
  transition: background 180ms ease, transform 180ms ease;
}

.booking-ribbon a:last-child {
  border-right: 0;
}

.booking-ribbon a:hover,
.booking-ribbon a:focus-visible {
  background: var(--mist);
}

.booking-ribbon span,
.book-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--clay);
  font-size: 0.86rem;
  font-weight: 400;
  text-transform: none;
}

.booking-ribbon strong {
  display: block;
  max-width: 360px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.66rem;
  font-weight: 600;
  line-height: 1.08;
}

.section-pad {
  padding: 110px 6vw;
  scroll-margin-top: 96px;
}

.section-pad,
.booking-ribbon {
  position: relative;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.surface-section,
.compact-section,
.book {
  background: var(--paper);
}

.preview-section,
.contact {
  background: var(--ivory);
}

.about-preview,
.onsite {
  background: var(--mist);
}

.about {
  background:
    radial-gradient(circle at 90% 10%, rgba(207, 167, 58, 0.14), transparent 34%),
    var(--ivory);
}

.copy-stack,
.section-heading {
  max-width: 780px;
}

.long-copy,
.contact-copy {
  max-width: 680px;
}

.copy-stack p,
.section-heading p {
  max-width: 680px;
}

.long-copy p,
.contact-copy p {
  max-width: 660px;
}

.image-panel {
  min-height: 360px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  clip-path: inset(9% 9% round 8px);
  transform: translate3d(0, var(--section-shift, 0px), 0);
  transition:
    clip-path 1000ms cubic-bezier(0.19, 1, 0.22, 1),
    transform 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}

.image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.image-panel.is-visible img {
  transform: scale(1);
}

.image-panel.is-visible {
  clip-path: inset(0% 0% round 8px);
}

.portrait-panel {
  aspect-ratio: 4 / 5;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-centered p {
  margin-right: auto;
  margin-left: auto;
}

.studio-grid,
.book-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.studio-grid article,
.book-grid article {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  padding: 34px;
  background: rgba(255, 253, 248, 0.94);
  transform: translate3d(0, var(--card-shift, 0px), 0);
  transition: transform 600ms ease, box-shadow 220ms ease;
}

.partner-logo-wrap {
  display: flex;
  width: min(100%, 270px);
  height: 96px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
  padding: 12px 16px;
  background: rgba(245, 239, 228, 0.74);
  border: 1px solid rgba(222, 212, 194, 0.78);
  border-radius: 8px;
}

.partner-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 68px;
  object-fit: contain;
}

.partner-logo-wrap-lavender {
  background: #4f4166;
  border-color: rgba(79, 65, 102, 0.42);
}

.partner-logo-lavender {
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.25));
}

.partner-logo-blue {
  max-height: 72px;
}

.partner-logo-wrap-onsite {
  overflow: hidden;
  padding: 0;
}

.partner-logo-onsite {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.studio-grid article:hover,
.book-grid article:hover,
.modality-grid article:hover,
.onsite-layout article:hover {
  box-shadow: 0 18px 48px rgba(27, 37, 23, 0.1);
}

.book-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote-panel {
  display: grid;
  min-height: 360px;
  align-items: center;
  padding: clamp(34px, 6vw, 72px);
  color: var(--white);
  background:
    linear-gradient(rgba(33, 56, 29, 0.82), rgba(33, 56, 29, 0.82)),
    url("assets/flower-hands.jpg") center / cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translate3d(0, var(--section-shift, 0px), 0);
}

.quote-panel p {
  margin: 0;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--forest);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  border-bottom: 2px solid var(--gold);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--clay);
}

.long-copy {
  display: grid;
  gap: 8px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.08rem;
  line-height: 1.78;
}

.approach {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.approach::before {
  position: absolute;
  inset: auto -12vw -22vw auto;
  width: 48vw;
  height: 48vw;
  min-width: 360px;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
  transform: translateY(var(--orb-shift, 0px));
}

.approach .eyebrow,
.approach p,
.approach ul {
  color: rgba(255, 255, 255, 0.76);
}

.approach h2 {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.approach-copy {
  position: relative;
  z-index: 1;
}

.modalities {
  background: var(--paper);
}

.modality-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.modality-grid article {
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper);
  transform: translate3d(0, var(--card-shift, 0px), 0);
  transition: transform 600ms ease, box-shadow 220ms ease;
}

.modality-grid h3 {
  margin-bottom: 9px;
}

.modality-grid article p {
  margin-bottom: 18px;
}

.modality-note {
  color: var(--clay);
  font-size: 0.94rem;
  font-style: italic;
  line-height: 1.55;
}

.modality-media {
  position: relative;
  float: left;
  width: 156px;
  height: 156px;
  margin-right: 24px;
  margin-bottom: 12px;
  margin-left: 0;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid rgba(222, 212, 194, 0.82);
  border-radius: 8px;
}

.modality-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modality-grid article::after {
  display: block;
  clear: both;
  content: "";
}

.modality-book-link {
  clear: both;
  margin-top: 8px;
}

.modality-grid article p:last-child,
.onsite-layout article p:last-child {
  margin-bottom: 0;
}

.onsite-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr 0.85fr;
  gap: 1px;
  overflow: hidden;
  background: rgba(33, 56, 29, 0.2);
  border: 1px solid rgba(33, 56, 29, 0.2);
  border-radius: 8px;
}

.onsite-layout article {
  padding: 32px;
  background: rgba(255, 253, 248, 0.78);
  transform: translate3d(0, var(--card-shift, 0px), 0);
  transition: transform 600ms ease, box-shadow 220ms ease;
}

.onsite-layout ul,
.contact-copy ul {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
}

.section-action {
  margin-top: 28px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.78fr);
  align-items: start;
  gap: clamp(44px, 7vw, 96px);
}

.contact-copy h3 {
  margin-top: 30px;
}

.response-note {
  margin-top: 24px;
  color: var(--forest);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 18px;
  position: relative;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(27, 37, 23, 0.12);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
}

.contact-form__honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 1rem;
  text-transform: none;
}

.contact-form input {
  min-height: 48px;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(113, 128, 97, 0.45);
  outline-offset: 2px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.92rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 34px 6vw;
  background: var(--ink);
  color: var(--white);
}

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

.footer-logo {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  transform: scale(1.08);
}

.footer-copy {
  display: grid;
  gap: 4px;
}

.site-footer span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer .footer-tagline {
  font-style: italic;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

.js [data-reveal] {
  opacity: 0.48;
  transform: translate3d(0, 34px, 0) scale(0.99);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--delay, 0ms);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.js .studio-grid article[data-reveal],
.js .book-grid article[data-reveal],
.js .modality-grid article[data-reveal],
.js .onsite-layout article[data-reveal],
.js .contact-form[data-reveal] {
  clip-path: inset(4% 0 8% 0 round 8px);
  transform: translate3d(0, 40px, 0);
  transition:
    opacity 620ms ease,
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1),
    clip-path 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.js .studio-grid article[data-reveal].is-visible,
.js .book-grid article[data-reveal].is-visible,
.js .modality-grid article[data-reveal].is-visible,
.js .onsite-layout article[data-reveal].is-visible,
.js .contact-form[data-reveal].is-visible {
  clip-path: inset(0 0 0 0 round 8px);
  transform: translate3d(0, 0, 0);
}

.js .site-nav a.is-active {
  color: var(--white);
}

.js .site-nav a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 15px;
  }

  .split-section,
  .contact {
    grid-template-columns: 1fr;
  }

  .book-grid,
  .onsite-layout {
    grid-template-columns: 1fr;
  }
}

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

  body {
    font-size: 17px;
  }

  .site-header {
    min-height: 72px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand {
    max-width: calc(100% - 74px);
    padding: 5px 10px 5px 6px;
    gap: 9px;
  }

  .brand-mark-frame {
    width: 42px;
    height: 42px;
    padding: 2px;
  }

  .brand-text strong {
    font-size: 1.02rem;
  }

  .brand-text span {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid transparent;
    border-radius: 8px;
    box-shadow: none;
    transition: max-height 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  }

  .site-nav a,
  .site-nav a[href="#book"] {
    padding: 15px 18px;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

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

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--forest);
  }

  .site-nav.is-open {
    max-height: 520px;
    border-color: var(--line);
    box-shadow: var(--shadow);
  }

  .hero {
    min-height: 100vh;
    padding: 132px 18px 62px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(255, 253, 248, 0.94) 0%, rgba(255, 253, 248, 0.74) 64%, rgba(255, 253, 248, 0.34) 100%),
      linear-gradient(0deg, rgba(255, 253, 248, 0.34) 0%, rgba(255, 253, 248, 0) 46%);
  }

  .hero-media img {
    object-position: 54% center;
  }

  .section-pad {
    padding: 76px 18px;
    scroll-margin-top: 88px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .booking-ribbon,
  .studio-grid,
  .modality-grid {
    grid-template-columns: 1fr;
  }

  .booking-ribbon a {
    min-height: 96px;
    padding: 24px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-ribbon a:last-child {
    border-bottom: 0;
  }

  .image-panel {
    min-height: 280px;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
    padding-right: 18px;
    padding-left: 18px;
  }

  .footer-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

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

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  h3 {
    font-size: 1.38rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-lede {
    font-size: 1.12rem;
  }

  .hero-support,
  .hero-modalities {
    font-size: 1rem;
  }

  .long-copy {
    gap: 10px;
    font-size: 1.02rem;
    line-height: 1.74;
  }

  .studio-grid article,
  .book-grid article,
  .onsite-layout article,
  .contact-form {
    padding: 24px;
  }

  .modality-media {
    float: none;
    width: 100%;
    height: clamp(210px, 62vw, 260px);
    margin-right: 0;
    margin-bottom: 20px;
  }
}

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

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

  .hero-media img {
    transform: none;
  }
}
