:root {
  --bg: #f7f1eb;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #fffdf9;
  --text: #171311;
  --muted: #6f625b;
  --line: rgba(23, 19, 17, 0.12);
  --accent: #171311;
  --accent-soft: #ead9ca;
  --shadow: 0 24px 60px rgba(23, 19, 17, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 18%, rgba(248, 196, 159, 0.4), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(184, 74, 20, 0.12), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fff6ee 48%, #f4dccd 100%);
  font-family: "Manrope", sans-serif;
  animation: page-enter 260ms ease both;
}

body.is-leaving {
  animation: page-leave 180ms ease both;
}

body.studio-page {
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 18%, rgba(248, 196, 159, 0.4), transparent 28%),
    radial-gradient(circle at 14% 82%, rgba(184, 74, 20, 0.12), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #fff6ee 48%, #f4dccd 100%);
}

body.modal-open {
  overflow: hidden;
}

@keyframes page-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-leave {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  body.is-leaving {
    animation: none;
  }
}

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

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

.site-shell {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 40px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 24px));
}

.brand {
  width: 112px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

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

.site-nav .is-active {
  color: var(--text);
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

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

.button-solid {
  color: #fff;
  background: var(--accent);
}

.button-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.studio-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(18px, 4vw, 54px) 0 clamp(34px, 6vw, 76px);
}

.studio-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: min(760px, calc(100svh - 36px));
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  padding: clamp(24px, 5vw, 64px);
  border: 1px solid rgba(139, 63, 25, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(255, 241, 229, 0.74)),
    rgba(255, 252, 247, 0.74);
  box-shadow: 0 34px 100px rgba(139, 63, 25, 0.14);
}

.studio-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(169, 78, 29, 0.1);
  border-radius: 22px;
  pointer-events: none;
}

.studio-hero__brand {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border: 1px solid rgba(169, 78, 29, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(255, 214, 179, 0.56), rgba(255, 247, 239, 0.84) 52%, rgba(255, 253, 248, 0.92) 100%);
}

.studio-hero__content {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 52px);
}

.studio-logo {
  width: min(520px, 86%);
  height: auto;
  filter: drop-shadow(0 22px 58px rgba(176, 71, 18, 0.18));
}

.studio-hero__copy {
  max-width: 640px;
}

.studio-hero__copy h1,
.studio-section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: #8b3f19;
  line-height: 0.98;
  text-wrap: balance;
}

.studio-hero__copy h1 {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
}

.studio-hero__copy p:last-child {
  max-width: 48ch;
  margin: 22px 0 0;
  color: #7d5d4b;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.85;
}

.studio-hero__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.studio-hero__details span {
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(169, 78, 29, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: #8b3f19;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-experiences {
  padding-top: clamp(30px, 5vw, 72px);
}

.studio-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid rgba(139, 63, 25, 0.22);
}

.studio-section-heading h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.studio-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 18px;
  margin-top: 28px;
}

.studio-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 300px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(139, 63, 25, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 241, 229, 0.74)),
    rgba(255, 252, 247, 0.72);
  box-shadow: 0 24px 70px rgba(139, 63, 25, 0.12);
  backdrop-filter: blur(18px);
}

.studio-card::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 1px;
  background: rgba(169, 78, 29, 0.34);
}

.studio-card__eyebrow {
  margin: 0;
  color: #a94e1d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.studio-card h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #8b3f19;
}

.studio-card p {
  margin: 0;
  color: #7d5d4b;
  line-height: 1.75;
}

.studio-card .button {
  width: fit-content;
  margin-top: auto;
  background: #a94e1d;
  box-shadow: 0 14px 32px rgba(169, 78, 29, 0.22);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 72svh;
  margin-top: 20px;
  border-radius: 36px;
  box-shadow: var(--shadow);
  background: #d4c2b6;
}

.hero-backdrop,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-backdrop {
  background-image:
    url("https://43476039d54887c26aa1.cdn6.editmysite.com/uploads/b/43476039d54887c26aa189d3aeedaaf81b019aa9b596da6ff6acd8780975262c/Colored_Logo_upscaled_upscaled_1738400482.jpeg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.95);
  transform: scale(1.04);
}

.hero-overlay {
  background:
    linear-gradient(125deg, rgba(18, 13, 10, 0.78), rgba(18, 13, 10, 0.22) 58%),
    linear-gradient(180deg, rgba(18, 13, 10, 0.12), rgba(18, 13, 10, 0.68));
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 72svh;
  max-width: 620px;
  padding: clamp(28px, 6vw, 72px);
  color: #fff7f1;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.consult-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 0.96;
}

.hero h1 {
  font-size: clamp(3.6rem, 10vw, 7.6rem);
  text-wrap: balance;
}

.hero-text {
  max-width: 48ch;
  margin: 22px 0 0;
  color: rgba(255, 247, 241, 0.84);
  font-size: 1.02rem;
  line-height: 1.75;
}

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

.home-intro {
  position: relative;
  max-width: 920px;
  margin: 34px auto 0;
  padding: 34px clamp(18px, 4vw, 54px) 10px;
  text-align: center;
}

.home-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(160px, 40vw);
  height: 1px;
  background: rgba(23, 19, 17, 0.24);
  transform: translateX(-50%);
}

.home-intro h2 {
  max-width: 760px;
  margin: 0 auto 18px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  text-wrap: balance;
}

.home-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.85;
}

.home-intro .eyebrow {
  margin-bottom: 14px;
  color: var(--text);
}

.section {
  padding: 84px 0 0;
}

.page-section-tight {
  padding-top: 24px;
}

.page-hero {
  padding: 72px 0 0;
}

.page-hero h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 8vw, 5.6rem);
  line-height: 0.96;
}

.page-hero p:last-child {
  color: var(--muted);
  line-height: 1.8;
  max-width: 52ch;
}

.appointment-tabs {
  position: relative;
  z-index: 15;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.appointment-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.appointment-tab:hover,
.appointment-tab:focus-visible,
.appointment-tab.is-active {
  border-color: rgba(23, 19, 17, 0.16);
  background: var(--accent);
  color: #fff;
}

.appointment-tab-link {
  margin-left: auto;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
}

.section-heading h2,
.consult-copy h2 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
}

.section-heading p:last-child,
.consult-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.service-grid,
.location-grid {
  display: grid;
  gap: 18px;
}

.service-status {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.page-card,
.info-card,
.map-card,
.consult-copy,
.consult-media {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
  padding: 24px;
}

.service-card h3,
.page-card h3,
.info-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

.service-card p,
.info-card p,
.map-card span {
  margin: 0;
  line-height: 1.7;
  color: var(--muted);
}

.service-meta {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}

.service-toggle {
  width: fit-content;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.page-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 220px;
  padding: 24px;
  color: inherit;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.results-grid img,
.consult-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.results-grid img {
  aspect-ratio: 0.74;
}

.consult {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 22px;
  align-items: start;
}

.booking-stack {
  display: grid;
  gap: 22px;
}

.booking-layout > *,
.booking-stack,
.booking-panel {
  min-width: 0;
}

@media (min-width: 1025px) {
  .booking-stack {
    grid-column: 1 / -1;
  }
}

.booking-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.booking-panel--secondary {
  background: rgba(255, 253, 249, 0.92);
}

.booking-step {
  position: relative;
}

.booking-step.is-locked {
  opacity: 0.62;
}

.booking-step.is-locked::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 250, 245, 0.38);
  pointer-events: none;
}

.booking-panel__intro h2,
.booking-form h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.98;
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.booking-status {
  margin: 14px 0 0;
  line-height: 1.7;
}

.booking-status[data-tone="muted"] {
  color: var(--muted);
}

.booking-status[data-tone="warning"] {
  color: #8d4f1d;
}

.booking-status[data-tone="success"] {
  color: #245b33;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.availability-slot {
  min-height: 56px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.availability-slot:hover,
.availability-slot:focus-visible,
.availability-slot.is-selected {
  transform: translateY(-1px);
  border-color: rgba(23, 19, 17, 0.34);
  background: #fffdf9;
}

.booking-form {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.booking-form--standalone {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.booking-step__content {
  margin-top: 18px;
}

.waiver-copy {
  color: var(--muted);
  line-height: 1.8;
}

.consent-document {
  display: grid;
  gap: 18px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
}

.consent-document__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.consent-document__header strong {
  font-size: 1.05rem;
}

.consent-document__header span {
  color: var(--muted);
  font-size: 0.9rem;
}

.consent-section {
  display: grid;
  gap: 10px;
}

.consent-section h3 {
  margin: 0;
  font-size: 1rem;
}

.consent-section p,
.consent-section ul {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.consent-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 18px;
  padding-left: 20px;
}

.consent-checklist {
  display: grid;
  gap: 12px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.82);
}

.consent-checklist__title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.consent-checklist .checkbox-field {
  margin-top: 0;
}

.waiver-name-field {
  margin-top: 20px;
}

.signature-pad {
  width: 100%;
  aspect-ratio: 3 / 1;
  min-height: 180px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(transparent calc(100% - 48px), rgba(23, 19, 17, 0.08) calc(100% - 47px), transparent calc(100% - 46px)),
    rgba(255, 255, 255, 0.84);
}

.signature-pad canvas {
  display: block;
  width: 100%;
  height: 100%;
  touch-action: none;
  cursor: crosshair;
}

.checkbox-field {
  display: flex;
  gap: 12px;
  align-items: start;
  margin-top: 20px;
  color: var(--text);
}

.checkbox-field input {
  margin-top: 4px;
}

.consult-copy,
.info-card,
.map-card {
  padding: 28px;
}

.consult-media {
  overflow: hidden;
  min-height: 620px;
}

.location-grid {
  grid-template-columns: 1fr 1fr 1.2fr;
}

.map-card {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(23, 19, 17, 0.68)),
    linear-gradient(135deg, #ead9ca, #cbb3a4);
  color: #fff;
}

.map-card span {
  color: rgba(255, 255, 255, 0.74);
}

.map-card strong {
  max-width: 18ch;
  margin-top: 12px;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  line-height: 1.05;
  font-family: "Playfair Display", serif;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding: 22px 24px;
  border-top: 1px solid rgba(23, 19, 17, 0.18);
  border-bottom: 1px solid rgba(23, 19, 17, 0.18);
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer p {
  margin: 0;
}

.service-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.service-modal[hidden] {
  display: none;
}

.service-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 13, 11, 0.42);
  backdrop-filter: blur(14px);
}

.service-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(80vh, 760px);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 32px;
  background: rgba(255, 250, 245, 0.94);
  box-shadow: 0 28px 80px rgba(16, 12, 10, 0.26);
}

.service-modal__dialog::-webkit-scrollbar {
  display: none;
}

.service-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 19, 17, 0.08);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.service-modal__eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.service-modal__dialog h2 {
  margin: 0;
  padding-right: 52px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.98;
}

.service-modal__meta {
  margin: 14px 0 0;
  color: var(--text);
  font-weight: 700;
}

.service-modal__body {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
  white-space: pre-wrap;
}

@media (max-width: 1024px) {
  .service-grid,
  .page-grid,
  .results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consult,
  .booking-layout,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .consult-media {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 20px, 1200px);
  }

  .studio-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .studio-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 18px;
    border-radius: 24px;
  }

  .studio-hero::before {
    inset: 10px;
    border-radius: 18px;
  }

  .studio-hero__brand {
    aspect-ratio: 1.25;
    border-radius: 20px;
  }

  .studio-logo {
    width: min(440px, 92%);
  }

  .studio-hero__copy {
    text-align: center;
  }

  .studio-hero__copy p:last-child {
    margin-right: auto;
    margin-left: auto;
  }

  .studio-hero__details {
    justify-content: center;
  }

  .studio-section-heading {
    justify-content: center;
    text-align: center;
  }

  .site-header {
    top: 10px;
    flex-wrap: wrap;
    padding: 12px 14px;
    border-radius: 24px;
  }

  .site-nav {
    order: 3;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;
    justify-content: center;
    padding-top: 8px;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 86px;
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    font-size: 0.86rem;
    text-align: center;
  }

  .site-nav .is-active {
    background: var(--accent);
    color: #fff;
  }

  .appointment-tabs {
    border-radius: 24px;
  }

  .appointment-tab {
    flex: 1 1 calc(50% - 8px);
  }

  .appointment-tab-link {
    margin-left: 0;
  }

  .consent-document__header {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-section ul {
    grid-template-columns: 1fr;
  }

  .brand {
    width: 88px;
  }

  .site-header .button {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-copy {
    min-height: 78svh;
    padding: 24px;
  }

  .section {
    padding-top: 64px;
  }

  .page-section-tight {
    padding-top: 18px;
  }

  .service-grid,
  .page-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .booking-fields,
  .availability-grid {
    grid-template-columns: 1fr;
  }

  .booking-layout,
  .booking-stack {
    gap: 16px;
  }

  .booking-panel {
    padding: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
