:root {
  color-scheme: dark;
  --ink: #f7efe3;
  --muted: #d9d1c6;
  --dim: #aca195;
  --surface: #07111f;
  --surface-2: #101b2b;
  --surface-3: #18263a;
  --line: rgba(247, 239, 227, 0.15);
  --cream: #f4ead8;
  --cream-accent: #fff7ea;
  --tan: #fff2dc;
  --sand: #f6ead9;
  --navy-ink: #07111f;
  --clay: #b86f55;
  --clay-dark: #874936;
  --clay-soft: #e8b8a4;
  --sage: #7d9a8d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --radius: 8px;
  --content-max: 1440px;
  --measure: 68ch;
  --measure-narrow: 56ch;
  --font-sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --font-script: "Allura", cursive;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

section {
  scroll-margin-top: 88px;
}

#service-menu {
  scroll-margin-top: 88px;
}

.service-menu-anchor {
  display: block;
  height: 0;
  overflow: hidden;
}

body {
  margin: 0;
  background: #07111f;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clay-soft);
  outline-offset: 4px;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  background: rgba(7, 17, 31, 0.96);
  border-bottom: 1px solid rgba(232, 184, 164, 0.32);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

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

.brand {
  gap: 10px;
  font-weight: 700;
}

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

.brand-lockup {
  display: block;
  width: clamp(110px, 10vw, 132px);
  height: auto;
}

.footer-brand {
  width: fit-content;
  justify-self: start;
}

nav {
  gap: clamp(14px, 3vw, 34px);
  color: rgba(247, 239, 227, 0.82);
  font-size: 0.92rem;
}

nav a:hover {
  color: var(--clay-soft);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(247, 239, 227, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 247, 234, 0.06);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px clamp(24px, 7vw, 96px) 72px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(14, 12, 10, 0.86), rgba(14, 12, 10, 0.4) 45%, rgba(14, 12, 10, 0.15)),
    linear-gradient(0deg, var(--surface), rgba(7, 17, 31, 0) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  display: block;
  width: clamp(144px, 14vw, 208px);
  height: auto;
  margin: 0 auto 16px;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.28));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--clay-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.script-accent {
  display: block;
  margin: 0 0 10px;
  color: var(--cream-accent);
  font-family: var(--font-script);
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.18;
}

.script-accent.small {
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 2.2rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.14;
  text-wrap: balance;
  overflow-wrap: normal;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 400;
}

h1 {
  font-size: clamp(3.6rem, 7.4vw, 7.4rem);
  line-height: 1.08;
  max-width: 8.8ch;
}

.hero-content h1 {
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.5rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2.2rem);
}

h4 {
  margin: 0;
  color: var(--navy-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(247, 239, 227, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.62;
}

p,
dd,
dt,
label,
legend,
.button,
.step-pill,
.booking-service,
.service-card,
.summary-note,
.fine-print {
  text-wrap: pretty;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.hero-actions {
  justify-content: center;
}

.form-actions {
  position: sticky;
  bottom: 16px;
  z-index: 8;
  width: 100%;
  margin-top: 34px;
  border: 1px solid rgba(135, 73, 54, 0.18);
  border-radius: var(--radius);
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.94), rgba(255, 246, 234, 0.88)),
    #fff6ea;
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.16);
}

.booking-action-hint {
  flex: 1 1 100%;
  margin: 0;
  color: rgba(7, 17, 31, 0.66);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-action-hint.is-error {
  border: 1px solid rgba(135, 73, 54, 0.24);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(135, 73, 54, 0.12);
  color: var(--clay-dark);
}

.button {
  display: inline-flex;
  min-height: 46px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--clay);
  color: #fffaf4;
}

.button.secondary,
.button.ghost {
  border-color: rgba(232, 184, 164, 0.38);
  background: rgba(247, 239, 227, 0.08);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

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

.intro,
.services-section,
.session-guide,
.booking-shell,
.faq-section,
.visit,
.site-footer {
  position: relative;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.intro::before,
.services-section::before,
.session-guide::before,
.booking-shell::before,
.faq-section::before,
.visit::before,
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(20px, 5vw, 72px);
  right: clamp(20px, 5vw, 72px);
  height: 1px;
  background: currentColor;
  opacity: 0.12;
}

.intro > *,
.entry-stack > *,
.services-section > *,
.session-guide > *,
.booking-shell > *,
.faq-section > *,
.visit > *,
.service-card,
.booking-service,
.booking-summary,
.booking-panel,
.field-group,
.review-line,
.site-footer > * {
  min-width: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
  gap: 0;
  align-items: center;
  min-height: clamp(300px, 34vw, 460px);
  background:
    radial-gradient(circle at 86% 18%, rgba(135, 73, 54, 0.08), transparent 28%),
    linear-gradient(135deg, #fff8ef 0%, #eadcc9 100%);
  color: var(--navy-ink);
  border-bottom: 1px solid rgba(7, 17, 31, 0.12);
}

.intro-heading {
  display: grid;
  gap: 20px;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid rgba(7, 17, 31, 0.16);
  border-bottom: 1px solid rgba(7, 17, 31, 0.16);
  padding: clamp(34px, 5vw, 56px) 0;
}

.intro-heading p,
.visit p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-heading p {
  max-width: 32rem;
  margin: 0;
  color: rgba(7, 17, 31, 0.72);
  line-height: 1.7;
}

.intro-details {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(7, 17, 31, 0.16);
}

.intro-details article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 5px 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.16);
}

.intro-details span {
  grid-row: 1 / span 2;
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.intro-details strong {
  color: var(--navy-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 400;
  line-height: 1.18;
}

.intro-details p {
  max-width: 42rem;
  margin: 0;
  color: rgba(7, 17, 31, 0.66);
  line-height: 1.62;
}

.services-section {
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  background: #07111f;
  color: var(--ink);
}

.services-section::before {
  display: none;
}

.entry-stack {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 12%, rgba(184, 111, 85, 0.16), transparent 28%),
    radial-gradient(circle at 14% 78%, rgba(210, 156, 83, 0.18), transparent 32%),
    linear-gradient(135deg, #fff8e8 0%, #f0d7aa 48%, #d8a866 100%);
  color: var(--navy-ink);
}

.entry-title {
  display: grid;
  justify-items: center;
  width: min(100%, 980px);
  margin: 0 auto clamp(28px, 4vw, 46px);
  text-align: center;
}

.entry-title h2 {
  max-width: 12ch;
  color: var(--navy-ink);
  font-size: clamp(2.2rem, 5vw, 5rem);
  line-height: 1.04;
  text-wrap: balance;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1180px;
  min-height: clamp(300px, 30vw, 400px);
  margin: 0 auto;
  border: 1px solid rgba(82, 48, 25, 0.16);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 78px rgba(82, 48, 25, 0.16);
}

.entry-panel {
  display: grid;
  min-width: 0;
  align-content: center;
  justify-items: center;
  padding: clamp(32px, 4.8vw, 64px);
  text-align: center;
}

.entry-panel h2 {
  width: min(100%, 18ch);
  font-family: var(--font-sans);
  font-size: clamp(1.28rem, 1.65vw, 1.85rem);
  font-weight: 800;
  line-height: 1.18;
  text-wrap: balance;
  overflow-wrap: normal;
}

.entry-panel-dark h2 {
  width: min(100%, 19ch);
  font-size: clamp(1.36rem, 1.85vw, 2.05rem);
}

.entry-panel-light {
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.5), rgba(255, 246, 224, 0.18));
  color: var(--navy-ink);
}

.entry-panel-light + .entry-panel-dark,
.entry-panel-dark + .entry-panel-light {
  border-left: 1px solid rgba(7, 17, 31, 0.12);
}

.entry-panel-dark {
  background:
    radial-gradient(circle at 86% 10%, rgba(232, 184, 164, 0.14), transparent 34%),
    linear-gradient(135deg, #07111f 0%, #12375c 100%);
  color: var(--cream-accent);
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  margin: 0;
  padding: clamp(56px, 7vw, 88px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 16%, rgba(232, 184, 164, 0.12), transparent 28%),
    linear-gradient(135deg, #07111f 0%, #101b2b 58%, #07111f 100%);
  color: var(--ink);
}

.services-intro .eyebrow {
  color: var(--clay-soft);
}

.services-intro h2 {
  color: var(--cream-accent);
}

.services-intro .section-copy {
  color: rgba(247, 239, 227, 0.76);
}

.service-pathways {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(7, 17, 31, 0.16);
}

.service-pathways article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 5px 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.16);
}

.service-pathways span {
  grid-row: 1 / span 2;
  color: var(--clay-dark);
  font-weight: 800;
}

.service-pathways h3 {
  color: var(--navy-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  font-weight: 400;
}

.service-pathways p {
  max-width: var(--measure-narrow);
  margin: 0;
  color: rgba(7, 17, 31, 0.68);
  line-height: 1.62;
}

.menu-band {
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.9), rgba(234, 220, 201, 0.95));
  color: var(--navy-ink);
  padding: clamp(60px, 7vw, 104px) clamp(20px, 5vw, 72px);
}

.menu-intro {
  display: grid;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid rgba(7, 17, 31, 0.16);
  border-bottom: 1px solid rgba(7, 17, 31, 0.16);
  padding: clamp(34px, 5vw, 56px) 0;
  text-align: center;
}

.menu-intro h2 {
  color: var(--navy-ink);
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 780px;
  margin-bottom: 34px;
}

.services-intro .section-heading {
  margin-bottom: 0;
}

.section-copy {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.group-kicker {
  display: inline-flex;
  width: fit-content;
  justify-content: center;
  margin: 0 auto;
  border: 0;
  border-bottom: 1px solid rgba(232, 184, 164, 0.42);
  border-radius: 0;
  padding: 0 14px 7px;
  background: transparent;
  color: var(--clay-soft);
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.service-groups-band {
  background:
    radial-gradient(circle at 90% 4%, rgba(255, 247, 234, 0.08), transparent 26%),
    linear-gradient(180deg, #07111f 0%, #0c1625 54%, #07111f 100%);
  padding: clamp(72px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.service-groups {
  display: grid;
  max-width: var(--content-max);
  gap: clamp(32px, 5vw, 56px);
  margin: 0 auto;
}

.service-group {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: clamp(24px, 4vw, 42px);
  padding: clamp(44px, 5vw, 68px);
  border: 1px solid rgba(255, 247, 234, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 0%, rgba(232, 184, 164, 0.07), transparent 30%),
    linear-gradient(135deg, rgba(255, 247, 234, 0.052), rgba(255, 247, 234, 0.018));
  color: var(--ink);
}

.service-group:nth-child(even) {
  border-color: rgba(82, 48, 25, 0.18);
  background:
    radial-gradient(circle at 82% 10%, rgba(184, 111, 85, 0.14), transparent 28%),
    radial-gradient(circle at 12% 78%, rgba(210, 156, 83, 0.16), transparent 34%),
    linear-gradient(135deg, #fff8e8 0%, #f0d7aa 52%, #d8a866 100%);
  color: var(--navy-ink);
}

.group-heading {
  justify-self: center;
  display: grid;
  min-width: 0;
  width: min(100%, 760px);
  max-width: 760px;
  justify-items: center;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid rgba(232, 184, 164, 0.24);
  border-radius: 0;
  padding: 0 0 clamp(24px, 3vw, 34px);
  background: transparent;
  text-align: center;
}

.service-group:nth-child(even) .group-heading {
  border-bottom-color: rgba(82, 48, 25, 0.2);
  background: transparent;
}

.group-heading h3 {
  color: var(--clay-soft);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 3.25rem);
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: normal;
}

.group-heading p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  text-align: center;
}

.service-group:nth-child(even) .group-kicker {
  color: var(--clay-dark);
  border-bottom-color: rgba(135, 73, 54, 0.38);
}

.service-group:nth-child(even) .group-heading h3 {
  color: var(--clay-dark);
}

.service-group:nth-child(even) .group-heading p {
  color: rgba(7, 17, 31, 0.68);
}

.service-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.service-grid > .service-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

.review-card,
.booking-summary,
.booking-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.service-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 2.4vw, 32px);
  border: 1px solid rgba(232, 184, 164, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.07), rgba(255, 247, 234, 0.022)),
    rgba(255, 255, 255, 0.015);
  box-shadow: inset 0 1px 0 rgba(255, 247, 234, 0.05);
}

.service-group:nth-child(even) .service-card {
  border-color: rgba(82, 48, 25, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 252, 244, 0.68), rgba(255, 246, 224, 0.34)),
    rgba(255, 250, 244, 0.72);
}

.service-card-body {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 0;
}

.service-card-body > * {
  max-width: 100%;
  min-width: 0;
}

.service-card h3,
.booking-service h3 {
  font-family: var(--font-serif);
  font-weight: 700;
}

.service-card h3 {
  color: var(--cream-accent);
  font-size: clamp(1.75rem, 2.05vw, 2.22rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  letter-spacing: 0;
}

.service-group:nth-child(even) .service-card h3 {
  color: var(--navy-ink);
}

.service-card .eyebrow {
  margin-bottom: 14px;
  color: var(--clay-soft);
  font-size: 0.7rem;
}

.service-group:nth-child(even) .service-card .eyebrow {
  color: var(--clay-dark);
}

.service-card p,
.booking-service p,
.fine-print {
  color: var(--muted);
  line-height: 1.62;
}

.service-group:nth-child(even) .service-card p {
  color: rgba(7, 17, 31, 0.72);
}

.service-card p {
  max-width: var(--measure-narrow);
}

.price-line,
.visit-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-fit {
  max-width: var(--measure-narrow);
  margin: 0;
  border-top: 1px solid rgba(232, 184, 164, 0.24);
  border-left: 0;
  padding-top: 16px;
  padding-left: 0;
  color: rgba(247, 239, 227, 0.76);
  font-size: 0.92rem;
  line-height: 1.58;
}

.service-group:nth-child(even) .service-fit {
  border-top-color: rgba(135, 73, 54, 0.28);
  color: rgba(7, 17, 31, 0.68);
}

.service-duration-options {
  margin-top: 16px;
  color: var(--clay-soft);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
}

.service-group:nth-child(even) .service-duration-options {
  color: var(--clay-dark);
}

.service-card .price-line {
  display: grid;
  width: fit-content;
  gap: 3px;
  margin-top: 20px;
  border-left: 0;
  padding-left: 0;
  color: #fff7ea;
  font-size: 1.48rem;
  line-height: 1.15;
}

.service-group:nth-child(even) .service-card .price-line {
  border-left-color: var(--clay-dark);
  color: var(--clay-dark);
}

.service-card .price-line span {
  color: var(--clay-soft);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-group:nth-child(even) .service-card .price-line span {
  color: rgba(7, 17, 31, 0.62);
}

.service-card-action {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  border: 1px solid rgba(232, 184, 164, 0.34);
  border-radius: var(--radius);
  padding: 11px 14px;
  background: rgba(184, 111, 85, 0.18);
  color: var(--cream-accent);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
}

.service-card-action:hover {
  border-color: var(--clay-soft);
  background: rgba(184, 111, 85, 0.28);
}

.service-group:nth-child(even) .service-card-action {
  border-color: rgba(135, 73, 54, 0.28);
  background: rgba(135, 73, 54, 0.1);
  color: var(--clay-dark);
}

.service-group:nth-child(even) .service-card-action:hover {
  border-color: var(--clay-dark);
  background: rgba(135, 73, 54, 0.16);
}

.session-guide {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 680px);
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(circle at 82% 18%, rgba(7, 17, 31, 0.08), transparent 28%),
    linear-gradient(135deg, #fff8ef, #eadcc9);
  color: var(--navy-ink);
}

.guide-heading {
  max-width: 620px;
}

.guide-heading .eyebrow {
  color: var(--clay-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.guide-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(7, 17, 31, 0.14);
}

.guide-list article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 6px 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(7, 17, 31, 0.14);
}

.guide-list span {
  grid-row: 1 / span 2;
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(135, 73, 54, 0.28);
  border-radius: 50%;
  background: rgba(135, 73, 54, 0.1);
  color: var(--clay-dark);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.guide-list h3 {
  color: var(--navy-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 400;
}

.guide-list p {
  max-width: var(--measure-narrow);
  margin: 0;
  color: rgba(7, 17, 31, 0.68);
}

.booking-shell {
  display: grid;
  grid-template-columns: minmax(320px, 380px) minmax(0, 920px);
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 247, 234, 0.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255, 242, 220, 0.1), transparent 26%),
    linear-gradient(135deg, #07111f 0%, #101b2b 58%, #07111f 100%);
  color: var(--ink);
}

.booking-summary {
  position: sticky;
  top: 88px;
  padding: clamp(24px, 2.6vw, 32px);
  border: 1px solid rgba(232, 184, 164, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.09), rgba(255, 247, 234, 0.035)),
    rgba(7, 17, 31, 0.82);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.booking-summary h2 {
  color: var(--cream-accent);
  font-size: clamp(1.9rem, 2.4vw, 2.45rem);
  line-height: 1.08;
  overflow-wrap: break-word;
}

.booking-summary .eyebrow {
  color: var(--clay-soft);
}

.booking-summary dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 28px 0 24px;
  border-top: 0;
}

.booking-summary dl div {
  display: grid;
  grid-template-columns: minmax(82px, 0.6fr) minmax(0, 1.4fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px 15px;
  border: 1px solid rgba(232, 184, 164, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.13), rgba(255, 247, 234, 0.06)),
    rgba(16, 27, 43, 0.38);
}

.booking-summary dl div:has(dd[data-status="selected"]) {
  border-color: rgba(232, 184, 164, 0.62);
  background:
    linear-gradient(180deg, rgba(184, 111, 85, 0.28), rgba(255, 247, 234, 0.08)),
    rgba(16, 27, 43, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 247, 234, 0.12);
}

dt {
  color: var(--dim);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.booking-shell dt {
  color: rgba(255, 247, 234, 0.72);
}

.booking-panel dd,
.booking-panel h2,
.booking-panel h3,
.booking-panel label,
.booking-panel legend {
  color: var(--navy-ink);
}

.booking-summary dd {
  color: var(--clay-soft);
  font-size: 1.05rem;
  line-height: 1.3;
  text-align: right;
}

.booking-summary dd[data-status="selected"] {
  color: #fff7ea;
  font-size: 1.12rem;
  font-weight: 800;
}

.booking-summary dd[data-status="pending"] {
  color: rgba(255, 247, 234, 0.58);
  font-weight: 700;
}

.booking-shell h2,
.booking-shell h3 {
  overflow-wrap: break-word;
}

.summary-note {
  color: var(--muted);
  font-size: 0.92rem;
  overflow-wrap: break-word;
}

.booking-summary .summary-note {
  border-left: 2px solid rgba(255, 247, 234, 0.34);
  padding-left: 14px;
  color: rgba(255, 247, 234, 0.72);
  line-height: 1.62;
}

.booking-panel .booking-service p,
.booking-panel .fine-print,
.booking-promise p {
  color: rgba(7, 17, 31, 0.68);
}

.booking-promise {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 247, 234, 0.13);
}

.booking-promise li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 2px 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 247, 234, 0.13);
}

.booking-promise span {
  grid-row: 1 / span 2;
  color: rgba(255, 247, 234, 0.44);
  font-size: 0.78rem;
  font-weight: 800;
}

.booking-promise strong {
  color: var(--cream-accent);
  font-family: var(--font-serif);
  font-weight: 400;
}

.booking-promise p {
  margin: 0;
  color: rgba(255, 247, 234, 0.66);
  font-size: 0.9rem;
}

.booking-panel {
  min-height: 0;
  padding: clamp(24px, 3.2vw, 40px);
  border: 1px solid rgba(135, 73, 54, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.38)),
    #fff6ea;
  color: var(--navy-ink);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.2);
}

.stepper {
  position: sticky;
  top: 88px;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  margin-bottom: 36px;
  padding: 6px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.96), rgba(255, 246, 234, 0.9)),
    #fff6ea;
  box-shadow: 0 14px 30px rgba(7, 17, 31, 0.12);
}

.step-pill {
  min-height: 40px;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: rgba(7, 17, 31, 0.68);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.step-pill:hover {
  border-color: rgba(7, 17, 31, 0.18);
  color: #07111f;
}

.step-pill.active {
  background: #07111f;
  border-color: var(--clay);
  color: var(--cream-accent);
  box-shadow: 0 8px 18px rgba(184, 111, 85, 0.18);
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.panel-heading {
  display: grid;
  gap: 8px;
  max-width: 700px;
  margin-bottom: 28px;
}

.panel-heading h3 {
  font-size: clamp(2rem, 2.8vw, 2.7rem);
}

.panel-heading h3:focus {
  outline: 0;
}

.service-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.service-selection-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  border: 1px solid rgba(7, 17, 31, 0.72);
  border-radius: var(--radius);
  padding: 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(232, 184, 164, 0.14), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #12375c 100%);
  color: var(--cream-accent);
  box-shadow: 0 18px 40px rgba(7, 17, 31, 0.18);
}

.service-selection-panel .eyebrow {
  margin-bottom: 8px;
  color: var(--clay-soft);
}

.booking-panel .service-selection-panel .eyebrow {
  color: var(--clay-soft);
}

.service-selection-panel p:last-child {
  margin: 8px 0 0;
  color: rgba(255, 247, 234, 0.78);
  font-weight: 800;
}

.service-selection-panel h4 {
  color: var(--cream-accent);
}

.service-selection-panel .button.primary {
  border-color: rgba(255, 247, 234, 0.18);
  background: var(--clay);
}

.service-list-toggle {
  width: 100%;
  min-height: 50px;
  margin: 0 0 12px;
  border: 1px solid rgba(7, 17, 31, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.78), rgba(255, 246, 234, 0.54)),
    rgba(7, 17, 31, 0.035);
  color: var(--navy-ink);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.service-list-toggle::after {
  content: "+";
  display: inline-grid;
  width: 24px;
  height: 24px;
  margin-left: 8px;
  place-items: center;
  border: 1px solid rgba(135, 73, 54, 0.24);
  border-radius: 6px;
  color: var(--clay-dark);
  font-size: 1rem;
  line-height: 1;
}

.service-list-open .service-list-toggle::after {
  content: "-";
}

.category-tab {
  border: 1px solid rgba(7, 17, 31, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(7, 17, 31, 0.72);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.category-tab:hover,
.category-tab.active {
  border-color: var(--clay-dark);
  background: var(--clay-dark);
  color: var(--cream-accent);
}

.booking-service-list,
.addon-grid,
.time-grid {
  display: grid;
  gap: 10px;
}

.booking-service-list {
  grid-template-columns: 1fr;
  gap: 12px;
  border-top: 0;
}

#booking-step-service.active ~ .form-actions {
  display: none;
}

.service-list-toggle {
  display: none;
}

.booking-service {
  min-height: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 24px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  color: inherit;
  background: rgba(255, 255, 255, 0.34);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.booking-service:hover {
  border-color: rgba(7, 17, 31, 0.24);
  background: rgba(255, 255, 255, 0.52);
  transform: translateY(-1px);
}

.booking-service h3,
.booking-service p {
  grid-column: 1;
}

.booking-service p {
  max-width: 38rem;
  margin: 0;
  min-width: 0;
}

.booking-service .price-line {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin-top: 0;
  white-space: normal;
  text-align: right;
  min-width: 90px;
}

.booking-service .service-duration-options {
  grid-column: 1;
  margin-top: 2px;
  color: var(--clay-dark);
}

.booking-service.selected {
  border-color: var(--clay-dark);
  box-shadow: 0 16px 34px rgba(7, 17, 31, 0.12);
  background: linear-gradient(135deg, rgba(184, 111, 85, 0.16), rgba(255, 255, 255, 0.62));
}

.price-line {
  margin-top: 14px;
  color: var(--cream);
  font-weight: 700;
}

.booking-panel .price-line,
.booking-panel .eyebrow {
  color: rgba(7, 17, 31, 0.72);
}

.booking-panel .button.primary {
  background: var(--clay-dark);
  color: #fffaf4;
}

.booking-panel .button.ghost {
  border-color: rgba(7, 17, 31, 0.28);
  background: rgba(7, 17, 31, 0.06);
  color: var(--navy-ink);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.address-fieldset {
  margin: 8px 0 16px;
  border: 1px solid rgba(135, 73, 54, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.28);
}

.address-fieldset legend {
  padding: 0 8px;
  font-size: 1rem;
  font-weight: 900;
}

.address-fieldset-note {
  max-width: 68ch;
  margin: 0 0 16px;
  color: rgba(7, 17, 31, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.5;
}

.address-fieldset .field-row:last-child .field-group {
  margin-bottom: 0;
}

.address-region-row {
  grid-template-columns: minmax(120px, 0.45fr) minmax(180px, 1fr);
}

.optional-label {
  color: rgba(7, 17, 31, 0.52);
  font-size: 0.76rem;
  font-weight: 700;
}

#booking-step-time > .field-row {
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
  align-items: start;
}

.party-size-field {
  align-self: start;
  justify-self: stretch;
}

.party-size-field select {
  min-height: 48px;
  height: 48px;
  align-self: start;
}

.selected-time-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(135, 73, 54, 0.24);
  border-radius: var(--radius);
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 184, 164, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(18, 55, 92, 0.94));
  color: var(--cream-accent);
  box-shadow: 0 18px 34px rgba(7, 17, 31, 0.14);
}

.selected-details-panel {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  border: 1px solid rgba(135, 73, 54, 0.22);
  border-radius: var(--radius);
  padding: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(232, 184, 164, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 250, 244, 0.94), rgba(255, 246, 234, 0.7));
  color: var(--navy-ink);
  box-shadow: 0 16px 30px rgba(7, 17, 31, 0.08);
}

.selected-details-panel .eyebrow {
  color: var(--clay-dark);
}

.selected-details-panel strong {
  color: var(--navy-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
}

.selected-details-panel span {
  color: rgba(7, 17, 31, 0.72);
  font-weight: 800;
  line-height: 1.45;
}

.selected-details-continue,
.selected-time-continue {
  width: fit-content;
  min-width: 210px;
  margin-top: 10px;
}

.selected-details-continue {
  background: var(--clay-dark);
}

.selected-time-continue {
  border-color: rgba(255, 247, 234, 0.2);
  background: var(--clay);
}

.selected-time-panel .eyebrow {
  color: var(--clay-soft);
}

.selected-time-panel strong {
  color: var(--cream-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
}

.selected-time-panel span {
  color: rgba(255, 247, 234, 0.76);
  font-weight: 700;
  line-height: 1.45;
}

.booking-step[data-step="1"] {
  container-type: inline-size;
}

label,
legend {
  color: rgba(247, 239, 227, 0.88);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #07111f;
  color: var(--ink);
  padding: 12px 13px;
  accent-color: #07111f;
}

.booking-shell input,
.booking-shell select,
.booking-shell textarea {
  border: 1px solid rgba(135, 73, 54, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  color: var(--navy-ink);
  min-height: 48px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.date-picker {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(135, 73, 54, 0.18);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.38);
}

.date-picker-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 8px;
  align-items: center;
}

.date-picker-header p {
  margin: 0;
  color: var(--navy-ink);
  font-weight: 900;
  text-align: center;
}

.date-nav {
  min-height: 40px;
  border: 1px solid rgba(7, 17, 31, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy-ink);
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 900;
}

.date-weekdays,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.date-weekdays span {
  color: rgba(7, 17, 31, 0.5);
  font-size: 0.68rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.date-button {
  min-width: 0;
  min-height: 42px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.055);
  color: rgba(7, 17, 31, 0.38);
  cursor: not-allowed;
  font-weight: 900;
}

.date-button.available {
  border-color: rgba(135, 73, 54, 0.32);
  background: #fffaf4;
  color: var(--navy-ink);
  cursor: pointer;
  box-shadow: inset 0 -3px 0 rgba(135, 73, 54, 0.16);
}

.date-button.selected {
  border-color: var(--clay-dark);
  background: var(--clay-dark);
  color: #fffaf4;
  box-shadow: 0 8px 18px rgba(135, 73, 54, 0.2);
}

.date-button:disabled {
  opacity: 0.58;
}

.date-placeholder {
  visibility: hidden;
  pointer-events: none;
}

.date-picker-note,
.date-picker-status {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(7, 17, 31, 0.64);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}

.date-picker-status {
  border: 1px solid rgba(135, 73, 54, 0.16);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.48);
}

.booking-shell select {
  appearance: none;
  padding-right: 48px;
  background-color: rgba(255, 255, 255, 0.82);
  background-image:
    linear-gradient(45deg, transparent 50%, #07111f 50%),
    linear-gradient(135deg, #07111f 50%, transparent 50%),
    linear-gradient(180deg, rgba(135, 73, 54, 0.16), rgba(135, 73, 54, 0.08));
  background-position:
    calc(100% - 25px) 50%,
    calc(100% - 17px) 50%,
    100% 0;
  background-repeat: no-repeat;
  background-size:
    8px 8px,
    8px 8px,
    44px 100%;
  cursor: pointer;
  font-weight: 700;
}

.booking-shell input:focus,
.booking-shell select:focus,
.booking-shell textarea:focus {
  outline: 0;
  border-color: var(--clay-dark);
  background: #fffaf4;
  box-shadow: 0 0 0 3px rgba(135, 73, 54, 0.16);
}

.booking-shell select:focus {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--clay-dark) 50%),
    linear-gradient(135deg, var(--clay-dark) 50%, transparent 50%),
    linear-gradient(180deg, rgba(135, 73, 54, 0.22), rgba(135, 73, 54, 0.12));
}

.booking-shell .field-error input,
.booking-shell .field-error select,
.booking-shell .field-error textarea,
.booking-shell .field-error.time-grid,
.booking-shell .field-error.date-picker {
  border-color: #07111f;
  background: rgba(7, 17, 31, 0.08);
}

.booking-shell .check-row.field-error {
  border-color: #07111f;
  background: rgba(7, 17, 31, 0.08);
}

.booking-shell a:focus-visible,
.booking-shell button:focus-visible,
.booking-shell input:focus-visible,
.booking-shell select:focus-visible,
.booking-shell textarea:focus-visible {
  outline-color: #07111f;
}

textarea {
  resize: vertical;
}

.choice-fieldset {
  margin: 0 0 16px;
  border: 1px solid rgba(135, 73, 54, 0.16);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.24);
}

.choice-fieldset legend {
  float: left;
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
  color: var(--navy-ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.choice-fieldset legend + * {
  clear: both;
}

.choice-fieldset-note {
  margin: -2px 0 14px;
  color: rgba(7, 17, 31, 0.62);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.segmented,
.addon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 0;
}

#booking-step-details .addon-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 12px;
}

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

.segmented {
  display: grid;
  gap: 8px;
}

.segmented label,
.addon-grid label,
.check-row {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--surface-2);
  cursor: pointer;
}

.booking-shell .addon-grid label,
.booking-shell .segmented label,
.booking-shell .check-row,
.payment-options label {
  min-width: 0;
}

#durationField,
#notesField {
  border: 1px solid rgba(135, 73, 54, 0.16);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.24);
}

.discount-code-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  border: 2px solid rgba(135, 73, 54, 0.48);
  border-radius: var(--radius);
  padding: 16px;
  background: linear-gradient(135deg, rgba(184, 111, 85, 0.14), rgba(255, 255, 255, 0.62));
  box-shadow: 0 10px 24px rgba(135, 73, 54, 0.09);
}

#booking-step-details #discountCodeField {
  border: 2px solid rgba(135, 73, 54, 0.48);
  background: linear-gradient(135deg, rgba(184, 111, 85, 0.14), rgba(255, 255, 255, 0.62));
}

.discount-code-kicker {
  margin: 0;
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.discount-code-field > label {
  color: var(--navy-ink);
  font-size: 0.9rem;
  font-weight: 900;
}

.discount-code-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.discount-code-control .button {
  min-width: 92px;
  border-color: rgba(135, 73, 54, 0.3);
  color: var(--clay-dark);
}

.discount-code-field p {
  margin: 0;
  color: rgba(7, 17, 31, 0.62);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
}

.discount-code-field.is-applied {
  border-color: rgba(79, 120, 96, 0.46);
  background: rgba(225, 241, 231, 0.46);
}

.discount-code-field.is-applied p {
  color: #315b43;
}

.discount-code-field.is-invalid {
  border-color: rgba(135, 73, 54, 0.42);
  background: rgba(184, 111, 85, 0.08);
}

.discount-code-field.is-invalid p {
  color: var(--clay-dark);
}

.booking-shell .segmented label,
.booking-shell .addon-grid label,
.booking-shell .check-row {
  border: 1px solid rgba(7, 17, 31, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.46);
  transition: border-color 160ms ease, background 160ms ease;
}

.booking-shell .segmented label,
.booking-shell .addon-grid label,
.booking-shell .check-row,
.payment-options label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  text-align: left;
}

#booking-step-details .addon-grid label,
.payment-options label {
  grid-template-columns: 22px minmax(0, 1fr) max-content;
  min-height: 62px;
}

.booking-shell .package-service-grid label {
  align-items: center;
  justify-content: flex-start;
  min-height: 56px;
  text-align: left;
}

.booking-shell .package-service-grid span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
}

.booking-shell .segmented label:hover,
.booking-shell .addon-grid label:hover,
.booking-shell .check-row:hover,
.booking-shell .time-button:hover {
  border-color: rgba(7, 17, 31, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.booking-shell .segmented label:has(input:checked),
.booking-shell .addon-grid label:has(input:checked),
.booking-shell .check-row:has(input:checked) {
  border-color: var(--clay-dark);
  background: linear-gradient(180deg, rgba(184, 111, 85, 0.16), rgba(255, 255, 255, 0.5));
}

.booking-shell .addon-grid label:has(input:disabled) {
  opacity: 0.42;
  cursor: not-allowed;
  background: rgba(7, 17, 31, 0.045);
}

#submitButton:disabled:not([aria-busy="true"]) {
  opacity: 1;
  cursor: default;
  border-color: rgba(79, 120, 96, 0.48);
  background: rgba(225, 241, 231, 0.76);
  color: #315b43;
  white-space: normal;
}

.segmented input,
.addon-grid input,
.check-row input {
  position: relative;
  appearance: none;
  flex: 0 0 auto;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(7, 17, 31, 0.42);
  border-radius: 4px;
  background: #fffaf4;
  box-shadow: none;
  cursor: pointer;
  justify-self: center;
}

.segmented input[type="radio"] {
  border-radius: 50%;
}

.segmented input:checked,
.addon-grid input:checked,
.check-row input:checked {
  border-color: var(--clay-dark);
  background: #fffaf4;
}

.addon-grid input[type="checkbox"]:checked::after,
.check-row input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--clay-dark);
  border-bottom: 2px solid var(--clay-dark);
  transform: rotate(42deg);
}

.segmented input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--clay-dark);
}

.segmented span,
.addon-grid span,
.check-row span {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
}

.choice-name {
  min-width: 0;
  flex: 1 1 auto;
  line-height: 1.26;
  overflow-wrap: normal;
  word-break: normal;
}

.choice-price {
  flex: 0 0 auto;
  color: var(--clay-dark);
  font-size: 0.92rem;
  font-weight: 900;
  justify-self: end;
  white-space: nowrap;
}

.payment-fieldset {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 246, 234, 0.76)),
    #fffaf4;
}

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-options label {
  border: 1px solid rgba(7, 17, 31, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.payment-options label:hover,
.payment-options label:has(input:checked) {
  border-color: var(--clay-dark);
  background: linear-gradient(180deg, rgba(184, 111, 85, 0.14), rgba(255, 255, 255, 0.72));
}

.payment-options input {
  position: relative;
  appearance: none;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  margin: 0;
  padding: 0;
  border: 2px solid rgba(7, 17, 31, 0.42);
  border-radius: 50%;
  background: #fffaf4;
  cursor: pointer;
  justify-self: center;
}

.payment-options input:checked {
  border-color: var(--clay-dark);
}

.payment-options input:checked::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--clay-dark);
}

.booking-protection {
  display: grid;
  gap: 16px;
  margin-top: 16px;
  border: 1px solid rgba(135, 73, 54, 0.24);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 250, 244, 0.96), rgba(244, 226, 211, 0.8)),
    #fffaf4;
  box-shadow: 0 16px 36px rgba(7, 17, 31, 0.08);
}

.booking-protection[hidden] {
  display: none;
}

.booking-protection-heading {
  display: grid;
  gap: 8px;
}

.booking-protection-heading h4,
.booking-protection-heading p,
.booking-protection-links {
  margin: 0;
}

.booking-protection-heading h4 {
  color: var(--navy-ink);
  font-family: var(--font-sans);
  font-size: 1.12rem;
  line-height: 1.3;
}

.booking-protection-heading p,
.booking-protection li,
.booking-protection-links {
  color: rgba(7, 17, 31, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.secure-badge {
  width: fit-content;
  border: 1px solid rgba(7, 17, 31, 0.16);
  border-radius: 999px;
  padding: 5px 9px;
  background: #07111f;
  color: #fff7ea;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-protection ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}

.booking-shell .booking-protection-consent {
  background: rgba(255, 255, 255, 0.68);
}

.booking-protection-links a {
  color: var(--clay-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

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

.time-button {
  min-height: 46px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.time-grid-status {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(135, 73, 54, 0.16);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.48);
  color: rgba(7, 17, 31, 0.68);
  font-weight: 800;
  text-align: center;
}

.booking-shell .time-button {
  border: 1px solid rgba(7, 17, 31, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.48);
  color: var(--navy-ink);
  transition: border-color 160ms ease, background 160ms ease;
}

.time-button.selected {
  border-color: var(--cream);
  background: rgba(255, 247, 234, 0.16);
}

.booking-shell .time-button.selected {
  border-color: var(--clay-dark);
  background: rgba(184, 111, 85, 0.18);
  font-weight: 800;
}

.review-card {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 20px;
  background: #fffaf4;
}

.booking-shell .review-card {
  border-color: rgba(135, 73, 54, 0.24);
  background: #fffaf4;
  color: var(--navy-ink);
}

.review-line {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.booking-shell .review-line {
  border-bottom-color: rgba(135, 73, 54, 0.18);
}

.review-line strong {
  min-width: 0;
  color: var(--navy-ink);
  text-align: right;
  overflow-wrap: normal;
  word-break: normal;
}

.review-line span {
  min-width: 0;
  color: rgba(7, 17, 31, 0.66);
  font-weight: 800;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: min(420px, calc(100vw - 36px));
  border: 1px solid rgba(255, 247, 234, 0.5);
  border-radius: var(--radius);
  padding: 16px;
  background: #0d1b24;
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow-wrap: anywhere;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 10% 0%, rgba(232, 184, 164, 0.12), transparent 30%),
    linear-gradient(135deg, #07111f, #101b2b 62%, #07111f);
}

.admin-shell {
  display: grid;
  gap: 24px;
  width: min(100% - 48px, 1680px);
  margin: 0 auto;
  padding: 32px 0;
}

.admin-view-tabs {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  border: 1px solid rgba(255, 247, 234, 0.16);
  border-radius: var(--radius);
  padding: 6px;
  background: rgba(9, 22, 38, 0.96);
  box-shadow: 0 16px 42px rgba(2, 8, 16, 0.32);
  backdrop-filter: blur(18px);
}

.admin-view-tabs button {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  padding: 10px 16px;
  background: transparent;
  color: rgba(255, 247, 234, 0.66);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.admin-view-tabs button:hover,
.admin-view-tabs button:focus-visible {
  background: rgba(255, 247, 234, 0.07);
  color: var(--cream-accent);
}

.admin-view-tabs button[aria-selected="true"] {
  background: var(--cream-accent);
  color: var(--navy-ink);
}

.admin-view-tabs button:focus-visible {
  outline: 3px solid rgba(232, 184, 164, 0.46);
  outline-offset: 2px;
}

.admin-tab-count {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  padding: 0 6px;
  background: var(--clay-dark);
  color: #fffaf4;
  font-size: 0.72rem;
  line-height: 1;
}

.admin-view-panel {
  min-width: 0;
}

.admin-panel {
  border: 1px solid rgba(232, 184, 164, 0.18);
  border-radius: 0;
  padding: clamp(22px, 3vw, 40px);
  background:
    linear-gradient(180deg, rgba(255, 247, 234, 0.08), rgba(255, 247, 234, 0.035)),
    rgba(7, 17, 31, 0.82);
  box-shadow: var(--shadow);
}

.admin-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}

.admin-heading-title,
.admin-heading-copy {
  display: grid;
  gap: 10px;
}

.admin-heading h1,
.admin-heading h2 {
  max-width: 12ch;
  color: var(--cream-accent);
}

.admin-open .admin-heading h1 {
  max-width: none;
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  font-weight: 800;
  line-height: 1.08;
}

.admin-open .admin-panel:first-child .admin-heading {
  margin-bottom: 10px;
}

.admin-heading p:not(.eyebrow) {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 247, 234, 0.72);
}

.admin-view-panel > .admin-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 24px;
}

.admin-view-panel > .admin-heading h2 {
  max-width: none;
  color: var(--cream-accent);
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 2.5vw, 2.35rem);
  letter-spacing: 0;
  line-height: 1.15;
}

.admin-heading .request-email-status {
  width: fit-content;
  max-width: 72ch;
  border: 1px solid rgba(232, 184, 164, 0.2);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(232, 184, 164, 0.08);
  color: var(--clay-soft);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
}

.admin-heading .request-email-status[data-configured="true"] {
  border-color: rgba(169, 201, 183, 0.24);
  background: rgba(169, 201, 183, 0.08);
  color: #a9c9b7;
}

.admin-site-link {
  width: fit-content;
  min-width: 150px;
  justify-self: start;
  text-align: center;
}

.admin-login,
.admin-schedule,
.admin-defaults {
  display: grid;
  gap: 16px;
}

.admin-schedule {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.38fr);
  align-items: start;
  gap: 24px;
}

.calendar-toolbar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  gap: 14px;
  align-items: center;
  margin-top: 0;
  margin-bottom: 4px;
}

.calendar-toolbar-heading {
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.calendar-jump {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(180px, 240px) auto;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.calendar-jump label {
  color: rgba(255, 247, 234, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
}

.calendar-jump input,
.calendar-jump .button {
  min-height: 44px;
}

.calendar-jump input {
  width: 100%;
}

.calendar-jump .button {
  padding: 10px 16px;
}

.calendar-toolbar h2 {
  max-width: none;
  color: var(--cream-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.3vw, 2.7rem);
}

.calendar-nav {
  width: 48px;
  min-height: 48px;
  border: 1px solid rgba(255, 247, 234, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 247, 234, 0.08);
  color: var(--cream-accent);
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 900;
}

.owner-calendar {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 247, 234, 0.16);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 247, 234, 0.055);
}

.calendar-weekdays,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.calendar-weekdays span {
  color: rgba(255, 247, 234, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  min-width: 0;
  min-height: 80px;
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
  border: 1px solid rgba(255, 247, 234, 0.14);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 247, 234, 0.055);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.calendar-day:hover,
.calendar-day.selected {
  border-color: rgba(232, 184, 164, 0.72);
  background: rgba(255, 247, 234, 0.12);
}

.calendar-day.is-muted {
  opacity: 0.52;
}

.calendar-day.is-open {
  box-shadow: inset 0 0 0 1px rgba(125, 154, 141, 0.32);
}

.calendar-day.is-custom {
  background: linear-gradient(180deg, rgba(232, 184, 164, 0.16), rgba(255, 247, 234, 0.065));
  box-shadow: inset 0 0 0 1px rgba(232, 184, 164, 0.32);
}

.calendar-day.is-blocked {
  background: rgba(135, 73, 54, 0.18);
}

.calendar-day.is-today .calendar-day-number {
  background: var(--clay);
  color: #fffaf4;
}

.calendar-day-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--cream-accent);
  font-weight: 900;
}

.calendar-day-status,
.calendar-day-count {
  border-radius: 999px;
  padding: 5px 8px;
  background: rgba(255, 247, 234, 0.1);
  color: var(--cream-accent);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-day-time {
  display: none;
}

.calendar-editor {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  border: 1px solid rgba(232, 184, 164, 0.2);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 247, 234, 0.09), rgba(232, 184, 164, 0.07)),
    rgba(255, 247, 234, 0.04);
}

.calendar-editor-heading {
  display: grid;
  align-content: start;
  gap: 10px;
}

.calendar-editor-heading h2 {
  max-width: 12ch;
  color: var(--cream-accent);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
}

.calendar-editor-heading p:not(.eyebrow) {
  margin: 0;
  color: rgba(255, 247, 234, 0.7);
}

.date-availability-form {
  display: grid;
  gap: 14px;
}

.date-time-editor {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 247, 234, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 247, 234, 0.04);
}

.date-time-heading {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  justify-content: space-between;
}

.date-time-heading h3,
.date-time-heading p {
  margin: 0;
}

.day-timeline-shell,
.date-booking-rhythm {
  overflow: hidden;
  border: 1px solid rgba(255, 247, 234, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 21, 38, 0.34);
}

.day-timeline-heading,
.date-exact-heading,
.date-booking-rhythm-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.day-timeline-heading,
.date-booking-rhythm-heading {
  padding: 14px;
}

.day-timeline-heading h4,
.day-timeline-heading p,
.date-exact-heading h4,
.date-exact-heading p,
.date-booking-rhythm-heading h4,
.date-booking-rhythm-heading p {
  margin: 0;
}

.day-timeline-heading h4,
.date-exact-heading h4,
.date-booking-rhythm-heading h4 {
  color: var(--cream-accent);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.day-timeline-heading p,
.date-exact-heading p,
.date-booking-rhythm-heading p {
  margin-top: 4px;
  color: rgba(255, 247, 234, 0.64);
  font-size: 0.72rem;
  line-height: 1.4;
}

.day-timeline-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  justify-content: flex-end;
  color: rgba(255, 247, 234, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
}

.day-timeline-legend span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.day-timeline-legend i {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: 3px;
  background: rgba(255, 247, 234, 0.06);
}

.day-timeline-legend i.is-available {
  border-color: rgba(232, 184, 164, 0.72);
  background: var(--clay-dark);
}

.day-timeline {
  max-height: 506px;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 247, 234, 0.12);
  overscroll-behavior: contain;
  scrollbar-color: rgba(232, 184, 164, 0.46) rgba(255, 247, 234, 0.05);
}

.day-timeline-row {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  min-height: 44px;
}

.day-timeline-time {
  border-right: 1px solid rgba(255, 247, 234, 0.1);
  padding: 7px 8px 0 0;
  color: rgba(255, 247, 234, 0.58);
  font-size: 0.62rem;
  font-weight: 800;
  text-align: right;
}

.day-timeline-segment {
  position: relative;
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid rgba(255, 247, 234, 0.08);
  padding: 0 12px;
  background: rgba(255, 247, 234, 0.025);
  color: var(--cream-accent);
  cursor: pointer;
  font: 800 0.68rem/1 var(--font-sans);
  text-align: left;
}

.day-timeline-row:nth-child(2n + 1) .day-timeline-segment {
  border-top: 1px solid rgba(255, 247, 234, 0.13);
}

.day-timeline-segment:hover,
.day-timeline-segment:focus-visible {
  background: rgba(232, 184, 164, 0.12);
}

.day-timeline-segment.is-available {
  border-bottom-color: rgba(255, 247, 234, 0.15);
  background: linear-gradient(90deg, rgba(135, 73, 54, 0.94), rgba(166, 94, 72, 0.88));
}

.day-timeline-segment.is-partial {
  background: repeating-linear-gradient(135deg, rgba(135, 73, 54, 0.62) 0 8px, rgba(232, 184, 164, 0.24) 8px 16px);
}

.date-exact-heading .button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 12px;
}

.date-booking-rhythm .field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border-top: 1px solid rgba(255, 247, 234, 0.12);
  padding: 14px;
}

.date-booking-rhythm .field-group {
  min-width: 0;
}

.date-time-heading h3 {
  color: var(--cream-accent);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.date-time-heading p {
  margin-top: 4px;
  color: rgba(255, 247, 234, 0.7);
  font-size: 0.8rem;
  line-height: 1.4;
}

.date-window-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.date-window-actions .button {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
}

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

.date-window-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
  border: 1px solid rgba(255, 247, 234, 0.12);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 247, 234, 0.045);
}

.date-window-row label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.date-window-row label span {
  color: rgba(255, 247, 234, 0.7);
  font-size: 0.72rem;
  font-weight: 800;
}

.date-window-row input,
.date-window-remove {
  min-height: 44px;
}

.date-window-row input {
  width: 100%;
  min-width: 0;
}

.date-window-remove {
  border: 1px solid rgba(255, 247, 234, 0.2);
  border-radius: var(--radius);
  padding: 8px 12px;
  background: rgba(255, 247, 234, 0.06);
  color: var(--cream-accent);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
}

.date-window-remove:hover,
.date-window-remove:focus-visible {
  border-color: var(--clay-soft);
  background: rgba(232, 184, 164, 0.12);
}

.date-time-editor .form-error {
  margin: 0;
  border-left: 3px solid var(--clay);
  padding: 10px 12px;
  background: rgba(135, 73, 54, 0.16);
  color: var(--cream-accent);
  font-size: 0.82rem;
  font-weight: 700;
}

.date-mode-fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  border: 1px solid rgba(255, 247, 234, 0.14);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 247, 234, 0.04);
}

.date-mode-fieldset legend {
  padding: 0 6px;
  color: var(--cream-accent);
}

.date-mode-fieldset label {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(255, 247, 234, 0.12);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 247, 234, 0.045);
}

.date-mode-fieldset input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--clay);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.admin-actions .button {
  min-width: 180px;
}

.date-save-note {
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 247, 234, 0.7);
  font-size: 0.82rem;
  line-height: 1.45;
}

.calendar-sync {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  border: 1px solid rgba(255, 247, 234, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(125, 154, 141, 0.12), rgba(255, 247, 234, 0.04)),
    rgba(255, 247, 234, 0.04);
}

.calendar-sync h2,
.calendar-sync p {
  margin: 0;
}

.calendar-sync h2 {
  margin-top: 4px;
  color: var(--cream-accent);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.calendar-sync p:not(.eyebrow) {
  max-width: 64ch;
  margin-top: 8px;
  color: rgba(255, 247, 234, 0.72);
}

.calendar-sync-actions {
  display: grid;
  gap: 10px;
  justify-items: stretch;
  min-width: 240px;
}

.calendar-sync-status {
  color: var(--clay-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.calendar-sync-status.connected {
  color: #a9c9b7;
}

.admin-body .button.ghost {
  border: 1px solid rgba(255, 247, 234, 0.22);
  background: rgba(255, 247, 234, 0.06);
  color: var(--cream-accent);
}

.muted {
  opacity: 0.58;
}

.admin-days,
.admin-requests {
  display: grid;
  gap: 12px;
}

.payment-policy-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(232, 184, 164, 0.28);
  border-radius: var(--radius);
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(232, 184, 164, 0.1), transparent 62%),
    rgba(255, 247, 234, 0.05);
}

.payment-policy-heading {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.payment-policy-heading h3,
.payment-policy-heading p,
.payment-policy-note {
  margin: 0;
}

.payment-policy-heading h3 {
  margin-top: 4px;
  color: var(--cream-accent);
  font-family: var(--font-sans);
  font-size: 1.2rem;
}

.payment-policy-heading p:not(.eyebrow),
.payment-policy-note {
  margin-top: 6px;
  color: rgba(255, 247, 234, 0.62);
  font-size: 0.78rem;
  line-height: 1.45;
}

.admin-policy-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 44px;
  border: 1px solid rgba(255, 247, 234, 0.2);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--cream-accent);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
}

.admin-policy-toggle input {
  width: 20px;
  height: 20px;
  accent-color: var(--clay);
}

.payment-policy-fields {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.payment-policy-fields .field-group {
  margin: 0;
}

.currency-field,
.suffix-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(255, 247, 234, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 247, 234, 0.06);
}

.suffix-field {
  grid-template-columns: minmax(0, 1fr) auto;
}

.currency-field span,
.suffix-field span {
  padding: 0 12px;
  color: rgba(255, 247, 234, 0.62);
  font-weight: 800;
}

.currency-field input,
.suffix-field input {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.payment-card-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 247, 234, 0.16);
  border-radius: 999px;
  padding: 5px 9px;
  color: rgba(255, 247, 234, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-card-status.is-secured {
  border-color: rgba(169, 201, 183, 0.38);
  background: rgba(125, 154, 141, 0.14);
  color: #c7e1d3;
}

.payment-card-status.is-attention {
  border-color: rgba(232, 184, 164, 0.4);
  color: var(--clay-soft);
}

.admin-request-actions .charge-fee {
  border-color: rgba(169, 201, 183, 0.46);
  background: rgba(125, 154, 141, 0.16);
  color: #d9eee3;
}

.admin-request {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 247, 234, 0.14);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 247, 234, 0.05);
}

.admin-request.is-pending {
  border-color: rgba(232, 184, 164, 0.3);
}

.admin-request-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
}

.admin-request-status,
.admin-customer-history,
.admin-request-appointment,
.admin-request-total,
.admin-request-footer p {
  margin: 0;
}

.admin-request-status {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--clay-soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-request-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.admin-customer-history {
  width: fit-content;
  border: 1px solid rgba(255, 247, 234, 0.18);
  border-radius: 999px;
  padding: 4px 9px;
  background: rgba(255, 247, 234, 0.06);
  color: rgba(255, 247, 234, 0.66);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.admin-customer-history.is-returning {
  border-color: rgba(169, 201, 183, 0.38);
  background: rgba(125, 154, 141, 0.14);
  color: #c7e1d3;
}

.admin-intake-status {
  width: fit-content;
  margin: 0;
  border: 1px solid rgba(232, 184, 164, 0.38);
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--clay-soft);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.admin-intake-status.is-submitted {
  border-color: rgba(169, 201, 183, 0.42);
  background: rgba(125, 154, 141, 0.14);
  color: #c7e1d3;
}

.admin-request-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clay-soft);
}

.admin-request.is-confirmed .admin-request-status {
  color: #a9c9b7;
}

.admin-request.is-confirmed .admin-request-status span {
  background: #7d9a8d;
}

.admin-request.is-declined .admin-request-status {
  color: rgba(255, 247, 234, 0.56);
}

.admin-request.is-declined .admin-request-status span {
  background: rgba(255, 247, 234, 0.34);
}

.admin-request-header h3 {
  margin: 7px 0 5px;
  color: var(--cream-accent);
  font-family: var(--font-sans);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.admin-request-appointment {
  color: rgba(255, 247, 234, 0.72);
  line-height: 1.5;
}

.admin-request-total {
  display: grid;
  gap: 3px;
  justify-items: end;
  color: var(--cream-accent);
  font-size: 1.25rem;
  font-weight: 900;
  text-align: right;
}

.admin-request-total span {
  color: rgba(255, 247, 234, 0.5);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.admin-request-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 247, 234, 0.12);
  border-bottom: 1px solid rgba(255, 247, 234, 0.12);
}

.admin-request-details div {
  min-width: 0;
  padding: 14px 16px;
  border-right: 1px solid rgba(255, 247, 234, 0.1);
}

.admin-request-details div:first-child {
  padding-left: 0;
}

.admin-request-details div:last-child {
  border-right: 0;
  padding-right: 0;
}

.admin-request-details dt,
.admin-request-details dd {
  min-width: 0;
  margin: 0;
}

.admin-request-details dt {
  margin-bottom: 5px;
  color: rgba(255, 247, 234, 0.5);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-request-details dd,
.admin-request-details a {
  color: var(--cream-accent);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.admin-request-details a {
  text-decoration-color: rgba(232, 184, 164, 0.5);
  text-underline-offset: 3px;
}

.admin-request-details .admin-request-location {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 247, 234, 0.1);
  border-right: 0;
  padding-right: 0;
  padding-left: 0;
}

.weekly-settings {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  border: 1px solid rgba(255, 247, 234, 0.16);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(255, 247, 234, 0.055);
}

.weekly-settings-heading {
  display: grid;
  gap: 5px;
  align-self: center;
}

.weekly-settings-heading h3,
.weekly-settings-heading p,
.weekly-save-bar p {
  margin: 0;
}

.weekly-settings-heading h3 {
  color: var(--cream-accent);
  font-family: var(--font-sans);
  font-size: 1.35rem;
}

.weekly-settings .field-row {
  align-items: end;
}

.weekly-settings .field-group {
  margin-bottom: 0;
}

.admin-day {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(340px, 1fr);
  gap: 28px;
  align-items: center;
  min-width: 0;
  border: 1px solid rgba(255, 247, 234, 0.15);
  border-radius: var(--radius);
  padding: 18px 20px;
  background: rgba(255, 247, 234, 0.055);
}

.admin-day.is-disabled {
  background: rgba(255, 247, 234, 0.025);
}

.admin-day-heading {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  min-width: 0;
}

.admin-day-name {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.admin-day-label {
  color: var(--clay-soft);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-day-name h3 {
  margin: 0;
  color: var(--cream-accent);
  font-family: var(--font-sans);
  font-size: 1.25rem;
  line-height: 1.2;
}

.admin-day-toggle {
  display: grid;
  grid-template-columns: 42px minmax(48px, auto);
  gap: 9px;
  align-items: center;
  cursor: pointer;
}

.admin-day-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.admin-switch {
  position: relative;
  width: 42px;
  height: 24px;
  border: 1px solid rgba(255, 247, 234, 0.3);
  border-radius: 999px;
  background: rgba(255, 247, 234, 0.09);
  transition: background 160ms ease, border-color 160ms ease;
}

.admin-switch span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 247, 234, 0.82);
  transition: transform 160ms ease, background 160ms ease;
}

.admin-day-toggle input:checked + .admin-switch {
  border-color: var(--clay-soft);
  background: var(--clay-dark);
}

.admin-day-toggle input:checked + .admin-switch span {
  background: #fffaf4;
  transform: translateX(18px);
}

.admin-day-toggle input:focus-visible + .admin-switch {
  outline: 3px solid rgba(232, 184, 164, 0.35);
  outline-offset: 3px;
}

.admin-day-state {
  color: rgba(255, 247, 234, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-day-times {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 12px;
  min-width: 0;
}

.admin-day-times label {
  display: grid;
  gap: 6px;
  min-width: 0;
  color: rgba(255, 247, 234, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-day-times input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
}

.admin-day-times input:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.weekly-save-bar {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 247, 234, 0.14);
  padding-top: 18px;
}

.weekly-save-bar p {
  color: rgba(255, 247, 234, 0.66);
  font-size: 0.82rem;
}

.admin-request-times {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 247, 234, 0.12);
}

.admin-request-activity {
  border: 0;
}

.admin-request-activity summary {
  width: fit-content;
  color: rgba(255, 247, 234, 0.72);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-request-activity[open] summary {
  color: var(--cream-accent);
}

.admin-intake-details {
  border: 1px solid rgba(169, 201, 183, 0.22);
  border-radius: var(--radius);
  background: rgba(125, 154, 141, 0.06);
}

.admin-intake-details summary {
  padding: 14px 16px;
  color: #c7e1d3;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 900;
}

.admin-intake-details[open] summary {
  border-bottom: 1px solid rgba(169, 201, 183, 0.18);
}

.admin-intake-content {
  display: grid;
  gap: 24px;
  padding: 18px 16px 22px;
}

.admin-intake-content section {
  scroll-margin-top: 0;
}

.admin-intake-content h4 {
  margin: 0 0 12px;
  color: var(--cream-accent);
  font-size: 0.9rem;
}

.admin-intake-content dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 247, 234, 0.1);
}

.admin-intake-content dl > div {
  min-width: 0;
  border-bottom: 1px solid rgba(255, 247, 234, 0.1);
  padding: 12px 14px 12px 0;
}

.admin-intake-content dt,
.admin-intake-content dd {
  margin: 0;
}

.admin-intake-content dt {
  margin-bottom: 4px;
  color: var(--clay-soft);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-intake-content dd {
  color: rgba(255, 247, 234, 0.78);
  font-size: 0.82rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.admin-request-footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.admin-request-footer > p {
  max-width: 58ch;
  color: rgba(255, 247, 234, 0.58);
  font-size: 0.78rem;
  line-height: 1.45;
}

.admin-request-times div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.admin-request-times dt,
.admin-request-times dd {
  min-width: 0;
  margin: 0;
  color: rgba(255, 247, 234, 0.7);
  font-size: 0.82rem;
  line-height: 1.35;
}

.admin-request-times dt {
  color: var(--clay-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.admin-request-times dd {
  overflow-wrap: normal;
  word-break: normal;
}

.admin-request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.request-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.request-filter {
  min-height: 42px;
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 247, 234, 0.06);
  color: rgba(255, 247, 234, 0.72);
  cursor: pointer;
  font-weight: 800;
}

.request-filter span {
  display: inline-grid;
  min-width: 1.35rem;
  min-height: 1.35rem;
  place-items: center;
  margin-left: 4px;
  border-radius: 999px;
  background: rgba(255, 247, 234, 0.12);
  font-size: 0.72rem;
}

.request-filter.is-active {
  border-color: var(--clay);
  background: var(--clay-dark);
  color: #fffaf4;
}

.admin-decline-note {
  display: grid;
  gap: 6px;
  width: 100%;
  color: var(--clay-soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-decline-note input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 247, 234, 0.08);
  color: var(--ink);
  font: inherit;
}

.admin-owner-note {
  margin: 0;
  color: var(--clay-soft);
}

.admin-request-actions button {
  min-height: 42px;
  border: 1px solid rgba(255, 247, 234, 0.22);
  border-radius: var(--radius);
  padding: 10px 14px;
  background: rgba(255, 247, 234, 0.08);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
}

.admin-request-actions button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.admin-request[aria-busy="true"] .admin-request-actions button:disabled {
  cursor: wait;
}

.admin-request-actions .confirm {
  border-color: var(--clay);
  background: var(--clay-dark);
  color: #fffaf4;
}

.admin-request-actions .decline {
  color: rgba(255, 247, 234, 0.72);
}

.admin-empty-state {
  display: grid;
  justify-items: start;
  gap: 8px;
  border-top: 1px solid rgba(255, 247, 234, 0.14);
  border-bottom: 1px solid rgba(255, 247, 234, 0.14);
  padding: 28px 0;
}

.admin-empty-state h3,
.admin-empty-state p {
  margin: 0;
}

.admin-empty-state h3 {
  color: var(--cream-accent);
  font-family: var(--font-sans);
  font-size: 1.15rem;
}

.admin-empty-state p {
  color: rgba(255, 247, 234, 0.62);
}

@media (max-width: 720px) {
  .admin-open .admin-intro-panel {
    border: 0;
    padding: 4px;
    background: transparent;
    box-shadow: none;
  }

  .admin-open .admin-intro-panel .admin-heading {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    margin: 0;
  }

  .admin-open .admin-intro-panel .admin-heading-copy {
    display: block;
  }

  .admin-open .admin-intro-panel .admin-heading-copy p {
    display: none;
  }

  .admin-open .admin-intro-panel .admin-heading h1 {
    font-size: 1.45rem;
  }

  .admin-open .admin-intro-panel .admin-site-link {
    min-width: 0;
    min-height: 44px;
    padding: 10px 12px;
    white-space: nowrap;
  }

  .admin-day,
  .admin-request,
  .admin-schedule,
  .calendar-editor {
    grid-template-columns: 1fr;
  }

  .admin-request {
    gap: 16px;
    padding: 16px;
  }

  .admin-request-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .admin-request-total {
    justify-items: start;
    text-align: left;
  }

  .admin-request-details {
    grid-template-columns: 1fr;
  }

  .admin-request-details div,
  .admin-request-details div:first-child,
  .admin-request-details div:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 247, 234, 0.1);
    padding: 12px 0;
  }

  .admin-request-details div:last-child {
    border-bottom: 0;
  }

  .admin-request-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-request-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-request-actions button:only-child {
    grid-column: 1 / -1;
  }

  .payment-policy-panel {
    padding: 16px;
  }

  .payment-policy-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .payment-policy-fields {
    grid-template-columns: 1fr;
  }

  .payment-policy-fields .button {
    width: 100%;
  }

  .discount-code-control {
    grid-template-columns: 1fr;
  }

  .discount-code-control .button {
    width: 100%;
  }

  .weekly-settings {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .weekly-settings .field-row {
    grid-template-columns: 1fr;
  }

  .admin-day {
    gap: 16px;
    padding: 16px;
  }

  .admin-day-heading {
    gap: 14px;
  }

  .admin-day-times {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weekly-save-bar {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .weekly-save-bar .button {
    width: 100%;
  }

  .admin-shell {
    width: min(100% - 24px, 560px);
    padding-top: 24px;
  }

  .admin-view-tabs {
    top: 0;
    gap: 2px;
    padding: 5px;
  }

  .admin-view-tabs button {
    min-height: 46px;
    padding: 8px 6px;
    font-size: 0.76rem;
  }

  .admin-tab-count {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    font-size: 0.64rem;
  }

  .admin-panel {
    padding: 18px;
  }

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

  .calendar-weekdays span {
    font-size: 0.62rem;
  }

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

  .calendar-editor {
    order: 3;
  }

  .owner-calendar {
    order: 2;
    gap: 8px;
    padding: 10px;
  }

  .calendar-toolbar {
    order: 1;
  }

  .calendar-jump {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .calendar-jump label {
    grid-column: 1 / -1;
    text-align: center;
  }

  .calendar-day.is-muted {
    display: grid;
    opacity: 0.34;
  }

  .calendar-day {
    min-height: 48px;
    aspect-ratio: 1;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    align-content: center;
    gap: 2px;
    border-radius: 6px;
    padding: 4px;
    text-align: center;
  }

  .calendar-day-number {
    width: 24px;
    height: 24px;
    font-size: 0.86rem;
  }

  .calendar-day-status {
    width: 6px;
    height: 6px;
    overflow: hidden;
    border-radius: 50%;
    padding: 0;
    color: transparent;
    background: rgba(255, 247, 234, 0.32);
  }

  .calendar-day.is-open .calendar-day-status {
    background: var(--sage);
  }

  .calendar-day.is-custom .calendar-day-status {
    background: var(--clay-soft);
  }

  .calendar-day.is-blocked .calendar-day-status {
    background: var(--clay-dark);
  }

  .calendar-day-time,
  .calendar-day-count {
    display: none;
  }

  .calendar-day.selected {
    background: rgba(232, 184, 164, 0.16);
    box-shadow: inset 0 0 0 2px rgba(232, 184, 164, 0.72);
  }

  .admin-actions .button {
    width: 100%;
  }

  .date-save-note {
    max-width: none;
    text-align: center;
  }

  .date-time-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .day-timeline-heading,
  .date-exact-heading,
  .date-booking-rhythm-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .day-timeline-legend {
    justify-content: flex-start;
  }

  .date-exact-heading .button {
    width: 100%;
  }

  .date-booking-rhythm .field-row {
    grid-template-columns: 1fr;
  }

  .day-timeline-row {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .date-window-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .date-window-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .date-window-remove {
    grid-column: 1 / -1;
  }

  .calendar-sync {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .calendar-sync-actions {
    min-width: 0;
  }
}

@media (min-width: 1101px) {
  .calendar-editor .date-window-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .calendar-editor .date-window-remove {
    grid-column: 1 / -1;
  }

  .calendar-editor .date-booking-rhythm .field-row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 721px) and (max-width: 1100px) {
  .admin-schedule {
    grid-template-columns: 1fr;
  }

  .calendar-day {
    padding: 8px;
  }

  .calendar-day-status,
  .calendar-day-count {
    padding: 5px 6px;
    font-size: 0.58rem;
  }

  .admin-request-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-request-details div:nth-child(2) {
    border-right: 0;
  }

  .admin-request-details div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 247, 234, 0.1);
  }
}

@media (min-width: 721px) {
  .admin-open .admin-shell {
    width: min(100% - 48px, 1760px);
    padding-top: 24px;
  }

  .admin-open .admin-panel {
    border: 0;
    padding-right: 0;
    padding-left: 0;
    background: transparent;
    box-shadow: none;
  }

  .admin-open .admin-intro-panel .admin-heading {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
    align-items: end;
    column-gap: 32px;
    margin-bottom: 0;
  }

  .admin-open .admin-intro-panel .admin-heading-title {
    grid-column: 1;
  }

  .admin-open .admin-intro-panel .admin-heading-copy {
    grid-column: 2;
    align-self: end;
    padding-bottom: 8px;
  }
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 760px);
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  background:
    radial-gradient(circle at 12% 18%, rgba(135, 73, 54, 0.08), transparent 28%),
    linear-gradient(135deg, #fff8ef 0%, #eadcc9 100%);
  color: var(--navy-ink);
}

.faq-heading {
  display: grid;
  gap: 10px;
  max-width: 360px;
}

.faq-heading .eyebrow {
  color: var(--clay-dark);
}

.faq-heading h2 {
  width: 100%;
  max-width: 100%;
  color: var(--navy-ink);
  font-size: clamp(1.85rem, 2.45vw, 2.7rem);
  line-height: 1.08;
  text-wrap: balance;
}

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

.faq-grid details {
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 42px rgba(7, 17, 31, 0.08);
}

.faq-grid details[open] {
  border-color: rgba(135, 73, 54, 0.26);
  background: rgba(255, 250, 244, 0.78);
}

.faq-grid summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  color: var(--navy-ink);
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.22;
  list-style: none;
}

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

.faq-grid summary::after {
  content: "+";
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(135, 73, 54, 0.28);
  border-radius: 6px;
  background: rgba(255, 250, 244, 0.62);
  color: var(--clay-dark);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 800;
}

.faq-grid details[open] summary::after {
  content: "-";
  background: rgba(135, 73, 54, 0.12);
}

.faq-grid p {
  max-width: 66ch;
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(7, 17, 31, 0.72);
  line-height: 1.68;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(260px, 480px);
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 247, 234, 0.14), transparent 28%),
    linear-gradient(135deg, #07111f, #101b2b 62%, #172238);
  border-top: 1px solid rgba(255, 247, 234, 0.24);
}

.visit-details {
  display: grid;
  gap: 18px;
  border-top: 1px solid rgba(232, 184, 164, 0.26);
  padding-top: 22px;
}

.visit-details p {
  max-width: var(--measure-narrow);
  margin: 0;
  color: rgba(247, 239, 227, 0.76);
  line-height: 1.68;
}

.visit h2 {
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(180px, 220px) minmax(180px, 220px);
  justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  padding-top: 44px;
  padding-bottom: 34px;
  background:
    radial-gradient(circle at 84% 0%, rgba(255, 247, 234, 0.1), transparent 24%),
    #07111f;
}

.footer-main {
  display: grid;
  gap: 18px;
}

.footer-main p {
  max-width: 440px;
  margin: 0;
  color: rgba(247, 239, 227, 0.68);
}

.footer-license {
  display: grid;
  width: fit-content;
  gap: 4px;
  border-left: 2px solid var(--clay-soft);
  padding: 3px 0 3px 14px;
  color: rgba(247, 239, 227, 0.78);
  line-height: 1.25;
}

.footer-license span:first-child {
  color: var(--clay-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-license strong {
  color: var(--cream-accent);
  font-size: 0.92rem;
}

.footer-license span:last-child {
  font-size: 0.82rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2 {
  color: var(--cream-accent);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-column a,
.footer-bottom {
  color: rgba(247, 239, 227, 0.72);
  font-size: 0.92rem;
}

.footer-column a:hover {
  color: var(--cream-accent);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid rgba(247, 239, 227, 0.14);
  padding-top: 22px;
}

.policy-page {
  min-height: 100svh;
  padding-top: 72px;
  background:
    radial-gradient(circle at 84% 10%, rgba(255, 247, 234, 0.12), transparent 28%),
    linear-gradient(135deg, #07111f, #101b2b 64%, #07111f);
}

.policy-hero,
.policy-content {
  width: min(100%, 980px);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(56px, 8vw, 96px) clamp(22px, 7vw, 104px);
}

.policy-hero {
  max-width: 980px;
}

.policy-hero h1 {
  font-size: clamp(3.4rem, 8vw, 7.5rem);
}

.policy-hero p {
  max-width: 660px;
  color: rgba(247, 239, 227, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.policy-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
  border-top: 1px solid rgba(255, 247, 234, 0.16);
}

.policy-content h2 {
  margin-top: 18px;
  color: var(--cream-accent);
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
}

.policy-content p {
  margin: 0;
  color: rgba(247, 239, 227, 0.76);
  line-height: 1.72;
}

/* Private massage intake form */
.intake-body {
  min-height: 100svh;
  background:
    radial-gradient(circle at 88% 4%, rgba(232, 184, 164, 0.22), transparent 26rem),
    linear-gradient(180deg, #f4ead8 0%, #fff7ea 36%, #f4ead8 100%);
  color: var(--navy-ink);
}

.intake-header {
  position: fixed;
}

.intake-header .brand {
  color: var(--ink);
}

.intake-home-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(247, 239, 227, 0.24);
  border-radius: var(--radius);
  padding: 8px 14px;
  color: rgba(247, 239, 227, 0.84);
  font-size: 0.86rem;
  font-weight: 800;
}

.intake-home-link:hover {
  border-color: rgba(232, 184, 164, 0.6);
  color: var(--cream-accent);
}

.intake-page {
  width: min(100%, 1366px);
  min-height: 100svh;
  margin: 0 auto;
  padding: 128px clamp(24px, 5vw, 72px) 80px;
}

.intake-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 48px;
  align-items: end;
  max-width: 1120px;
  margin: 0 auto 48px;
}

.intake-kicker {
  margin: 0 0 12px;
  color: var(--clay-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intake-intro h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-ink);
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 5.25rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.intake-intro > div:first-child > p:last-child {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(7, 17, 31, 0.7);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  line-height: 1.7;
}

.intake-privacy-note {
  display: grid;
  gap: 6px;
  border-left: 3px solid var(--clay-dark);
  padding: 4px 0 4px 20px;
  color: rgba(7, 17, 31, 0.66);
  font-size: 0.9rem;
  line-height: 1.55;
}

.intake-privacy-note strong {
  color: var(--navy-ink);
}

.intake-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.32fr) minmax(0, 0.68fr);
  gap: 24px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.intake-appointment {
  position: sticky;
  top: 104px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 12px;
  padding: 28px;
  background: #07111f;
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.16);
}

.intake-appointment .intake-kicker {
  color: var(--clay-soft);
}

.intake-appointment h2 {
  margin: 0 0 24px;
  color: var(--cream-accent);
  font-family: var(--font-serif);
  font-size: 1.75rem;
}

.intake-appointment dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.intake-appointment dl > div {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(247, 239, 227, 0.12);
  padding: 14px 0;
}

.intake-appointment dt {
  color: rgba(247, 239, 227, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.intake-appointment dd {
  margin: 0;
  color: var(--cream-accent);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.5;
}

.intake-appointment > p:last-child {
  margin: 20px 0 0;
  color: rgba(247, 239, 227, 0.66);
  font-size: 0.82rem;
  line-height: 1.55;
}

.intake-form {
  min-width: 0;
  border: 1px solid rgba(135, 73, 54, 0.2);
  border-radius: 12px;
  background: rgba(255, 250, 244, 0.94);
  box-shadow: 0 24px 64px rgba(7, 17, 31, 0.12);
  overflow: hidden;
}

.intake-section {
  display: grid;
  gap: 28px;
  border-bottom: 1px solid rgba(135, 73, 54, 0.18);
  padding: clamp(28px, 5vw, 48px);
}

.intake-section-heading {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.intake-section-heading > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(135, 73, 54, 0.28);
  border-radius: 50%;
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.intake-section-heading h2,
.intake-section-heading p {
  margin: 0;
}

.intake-section-heading h2 {
  color: var(--navy-ink);
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.2;
}

.intake-section-heading p {
  margin-top: 6px;
  color: rgba(7, 17, 31, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
}

.intake-fields {
  display: grid;
  gap: 20px;
}

.intake-fields.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.intake-field {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.intake-field.full-width {
  grid-column: 1 / -1;
}

.intake-field label,
.intake-choice-group legend {
  color: var(--navy-ink);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.4;
}

.intake-field label span,
.intake-choice-group legend span,
.intake-required-note span {
  color: var(--clay-dark);
}

.intake-form input[type="text"],
.intake-form input[type="email"],
.intake-form input[type="tel"],
.intake-form input[type="date"],
.intake-form textarea {
  min-height: 48px;
  border: 1px solid rgba(7, 17, 31, 0.18);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: #fffdf9;
  color: var(--navy-ink);
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(7, 17, 31, 0.03);
}

.intake-form textarea {
  min-height: 88px;
  line-height: 1.55;
}

.intake-form input:focus,
.intake-form textarea:focus {
  outline: 0;
  border-color: var(--clay-dark);
  background: #fffaf4;
  box-shadow: 0 0 0 3px rgba(135, 73, 54, 0.14);
}

.intake-choice-group {
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(7, 17, 31, 0.1);
  border-radius: var(--radius);
  padding: 20px;
  background: rgba(244, 234, 216, 0.32);
}

.intake-choice-group legend {
  padding: 0 8px;
  font-size: 0.94rem;
}

.intake-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.intake-check-grid label,
.intake-option-list label,
.intake-consent-check {
  min-width: 0;
  min-height: 44px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(7, 17, 31, 0.11);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(7, 17, 31, 0.78);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
}

.intake-check-grid label:hover,
.intake-option-list label:hover,
.intake-consent-check:hover {
  border-color: rgba(135, 73, 54, 0.4);
  background: #fffaf4;
}

.intake-check-grid label:has(input:checked),
.intake-option-list label:has(input:checked),
.intake-consent-check:has(input:checked) {
  border-color: var(--clay-dark);
  background: rgba(184, 111, 85, 0.1);
  color: var(--navy-ink);
}

.intake-form input[type="checkbox"],
.intake-form input[type="radio"] {
  position: relative;
  appearance: none;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  min-height: 20px;
  max-height: 20px;
  margin: 0;
  border: 2px solid rgba(7, 17, 31, 0.38);
  border-radius: 4px;
  padding: 0;
  background: #fffdf9;
  box-shadow: none;
  cursor: pointer;
}

.intake-form input[type="radio"] {
  border-radius: 50%;
}

.intake-form input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--clay-dark);
  border-bottom: 2px solid var(--clay-dark);
  transform: rotate(42deg);
}

.intake-form input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--clay-dark);
}

.intake-other-field {
  margin-top: 16px;
}

.intake-lifestyle-grid {
  align-items: start;
}

.intake-choice-group.compact {
  display: grid;
  gap: 16px;
}

.intake-option-list {
  display: grid;
  gap: 8px;
}

.intake-option-list.horizontal {
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
}

.intake-choice-group.compact-inline {
  display: grid;
  gap: 16px;
}

.intake-field-note {
  margin: 0 0 12px;
  color: rgba(7, 17, 31, 0.6);
  font-size: 0.82rem;
}

.intake-scale {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
}

.intake-scale label {
  min-width: 0;
  display: grid;
  gap: 6px;
  justify-items: center;
  border: 1px solid rgba(7, 17, 31, 0.11);
  border-radius: var(--radius);
  padding: 10px 4px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--navy-ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.intake-scale label:has(input:checked) {
  border-color: var(--clay-dark);
  background: rgba(184, 111, 85, 0.1);
}

.consent-copy {
  display: grid;
  gap: 16px;
  border-left: 3px solid rgba(135, 73, 54, 0.42);
  padding-left: 20px;
}

.consent-copy p,
.consent-copy h3 {
  margin: 0;
}

.consent-copy p {
  max-width: 72ch;
  color: rgba(7, 17, 31, 0.74);
  font-size: 0.9rem;
  line-height: 1.72;
}

.consent-copy h3 {
  color: var(--navy-ink);
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.intake-consent-check {
  min-height: 56px;
  padding: 14px 16px;
  font-size: 0.88rem;
  font-weight: 850;
}

.intake-acknowledgments {
  display: grid;
  gap: 10px;
}

.intake-acknowledgments > p {
  margin: 0 0 4px;
  color: var(--navy-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.intake-acknowledgments {
  display: grid;
  gap: 10px;
}

.intake-acknowledgments > p {
  margin: 0 0 4px;
  color: var(--navy-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.initials-field {
  width: min(100%, 220px);
}

.policy-copy {
  margin-top: 8px;
}

.intake-signature {
  display: grid;
  gap: 16px;
  border-top: 1px solid rgba(135, 73, 54, 0.2);
  padding-top: 24px;
}

.intake-signature > p {
  margin: 0;
  color: rgba(7, 17, 31, 0.64);
  font-size: 0.86rem;
  font-weight: 700;
}

.intake-submit-panel {
  display: grid;
  justify-items: start;
  gap: 12px;
  padding: 28px clamp(28px, 5vw, 48px) 36px;
  background: #07111f;
  color: var(--ink);
}

.intake-submit-panel p {
  margin: 0;
  color: rgba(247, 239, 227, 0.68);
  font-size: 0.8rem;
  line-height: 1.5;
}

.intake-submit-panel .button {
  min-width: min(100%, 280px);
}

.intake-submit-panel .button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.intake-required-note {
  font-weight: 800;
}

.intake-form-error {
  width: 100%;
  border: 1px solid rgba(232, 184, 164, 0.42);
  border-radius: var(--radius);
  padding: 12px 14px;
  background: rgba(232, 184, 164, 0.1);
  color: var(--cream-accent) !important;
  font-weight: 800;
}

.intake-status {
  max-width: 760px;
  min-height: 160px;
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 64px auto;
  border: 1px solid rgba(7, 17, 31, 0.12);
  border-radius: 12px;
  padding: 32px;
  background: rgba(255, 250, 244, 0.92);
  box-shadow: 0 20px 52px rgba(7, 17, 31, 0.1);
}

.intake-status h2,
.intake-status p {
  margin: 0;
}

.intake-status h2 {
  color: var(--navy-ink);
  font-family: var(--font-serif);
  font-size: 1.6rem;
}

.intake-status p {
  margin-top: 6px;
  color: rgba(7, 17, 31, 0.64);
  line-height: 1.55;
}

.intake-status.is-error {
  border-color: rgba(135, 73, 54, 0.35);
}

.intake-status.is-success {
  border-color: rgba(49, 91, 67, 0.32);
}

.intake-spinner {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border: 3px solid rgba(135, 73, 54, 0.16);
  border-top-color: var(--clay-dark);
  border-radius: 50%;
  animation: intake-spin 800ms linear infinite;
}

.intake-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@keyframes intake-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .intake-spinner { animation: none; }
}

@media (max-width: 900px) {
  .intake-intro,
  .intake-layout {
    grid-template-columns: 1fr;
  }

  .intake-intro {
    gap: 24px;
  }

  .intake-privacy-note {
    max-width: 620px;
  }

  .intake-appointment {
    position: static;
  }

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

  .intake-appointment dl > div {
    border-top: 0;
    border-left: 1px solid rgba(247, 239, 227, 0.12);
    padding: 0 0 0 16px;
  }
}

@media (max-width: 640px) {
  .intake-home-link {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .intake-page {
    padding: 112px 16px 48px;
  }

  .intake-intro {
    margin-bottom: 32px;
  }

  .intake-intro h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .intake-intro > div:first-child > p:last-child {
    margin-top: 16px;
    font-size: 0.96rem;
  }

  .intake-layout {
    gap: 16px;
  }

  .intake-appointment,
  .intake-section {
    padding: 24px 18px;
  }

  .intake-appointment dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intake-appointment dl > div:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }

  .intake-section {
    gap: 24px;
  }

  .intake-section-heading {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .intake-section-heading > span {
    width: 36px;
    height: 36px;
  }

  .intake-fields.two-column,
  .intake-check-grid {
    grid-template-columns: 1fr;
  }

  .intake-choice-group {
    padding: 16px 12px;
  }

  .intake-option-list.horizontal,
  .pressure-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intake-scale {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .consent-copy {
    padding-left: 14px;
  }

  .intake-submit-panel {
    justify-items: stretch;
    padding: 24px 18px 28px;
  }

  .intake-submit-panel .button {
    width: 100%;
  }

  .intake-status {
    align-items: flex-start;
    margin: 40px auto;
    padding: 24px 20px;
  }
}

@media (max-width: 1100px) {
  .intro,
  .entry-grid,
  .services-intro,
  .session-guide,
  .booking-shell,
  .faq-section,
  .visit {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
    display: none;
    order: 2;
  }

  .booking-shell.is-reviewing .booking-summary {
    display: block;
  }

  .booking-panel {
    order: 1;
  }

  .stepper {
    top: 88px;
  }

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

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

  .service-grid > .service-card:last-child:nth-child(2n + 1) {
    width: calc((100% - clamp(18px, 2vw, 24px)) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

  .booking-service-list {
    grid-template-columns: 1fr;
  }

  .entry-grid {
    min-height: 0;
  }

  .entry-panel-light + .entry-panel-dark,
  .entry-panel-dark + .entry-panel-light {
    border-top: 1px solid rgba(7, 17, 31, 0.12);
    border-left: 0;
  }

  .menu-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .faq-section {
    grid-template-columns: 1fr;
  }

  .faq-heading {
    justify-self: center;
    justify-items: center;
    max-width: min(860px, 100%);
    text-align: center;
  }

  .faq-heading h2 {
    max-width: 100%;
    text-align: center;
  }

  .faq-grid {
    width: min(100%, 900px);
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid > .service-card:last-child:nth-child(n) {
    width: auto;
    grid-column: auto;
  }
}

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

  section {
    scroll-margin-top: 88px;
  }

  .site-header {
    position: fixed;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
  }

  #primaryNav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: 18px;
    display: none;
    grid-template-columns: 1fr;
    gap: 8px;
    border: 1px solid rgba(232, 184, 164, 0.26);
    border-radius: var(--radius);
    padding: 10px;
    background:
      linear-gradient(180deg, rgba(13, 27, 43, 0.98), rgba(7, 17, 31, 0.98)),
      #07111f;
    box-shadow: 0 24px 58px rgba(0, 0, 0, 0.36);
  }

  .nav-open #primaryNav {
    display: grid;
  }

  #primaryNav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(247, 239, 227, 0.11);
    border-radius: var(--radius);
    padding: 12px 14px;
    background: rgba(255, 247, 234, 0.055);
    color: var(--cream-accent);
    font-size: 1rem;
    font-weight: 800;
    text-align: left;
  }

  #primaryNav a::after {
    content: "›";
    color: var(--clay-soft);
    font-size: 1.25rem;
    line-height: 1;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-toggle span {
    transition: transform 160ms ease, opacity 160ms ease;
  }

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

  .hero {
    min-height: 76svh;
    align-items: center;
    justify-items: center;
    text-align: center;
    padding-top: 180px;
    padding-right: 24px;
    padding-left: 24px;
    padding-bottom: 44px;
  }

  .hero-image {
    object-position: 45% center;
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.6rem);
    line-height: 1.08;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: clamp(2.35rem, 10.4vw, 3.25rem);
    text-align: center;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.6rem);
    line-height: 1.1;
  }

  h3 {
    font-size: clamp(1.28rem, 6vw, 2rem);
    line-height: 1.18;
  }

  .script-accent {
    font-size: clamp(2rem, 12vw, 3.2rem);
    line-height: 1;
  }

  .hero-logo {
    width: 152px;
    margin-bottom: 12px;
  }

  .script-accent.small {
    font-size: 2rem;
  }

  .intro,
  .services-section,
  .session-guide,
  .booking-shell,
  .faq-section,
  .visit,
  .site-footer {
    padding-top: 56px;
    padding-bottom: 56px;
    padding-right: 24px;
    padding-left: 24px;
    text-align: center;
  }

  .services-section {
    padding: 0;
  }

  .services-section::before {
    display: none;
  }

  .services-intro,
  .entry-stack,
  .menu-band,
  .service-groups-band {
    width: 100%;
    margin: 0;
    padding-right: 24px;
    padding-left: 24px;
  }

  .intro::before,
  .services-section::before,
  .session-guide::before,
  .booking-shell::before,
  .faq-section::before,
  .visit::before,
  .site-footer::before {
    left: 24px;
    right: 24px;
  }

  .hero-content,
  .entry-grid,
  .intro-heading,
  .intro-details,
  .section-heading,
  .section-copy,
  .service-group,
  .service-grid,
  .group-heading,
  .services-intro > *,
  .service-pathways,
  .menu-intro,
  .guide-heading,
  .guide-list,
  .faq-heading,
  .faq-grid,
  .booking-summary,
  .booking-panel,
  .visit > *,
  .site-footer > * {
    width: 100%;
    max-width: 430px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .group-heading h3 {
    font-size: clamp(1.15rem, 5.8vw, 2.1rem);
    line-height: 1.14;
  }

  .section-heading,
  .intro-details article,
  .service-pathways article,
  .guide-list article,
  .faq-heading,
  .booking-summary dl div,
  .panel-heading,
  .service-selection-panel,
  .field-group,
  .choice-fieldset {
    justify-items: center;
  }

  .booking-summary dl div {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
  }

  .booking-summary dd {
    text-align: center;
  }

  .hero-actions,
  .form-actions,
  .price-line,
  .service-category-tabs,
  .visit-details,
  .review-line {
    justify-content: center;
  }

  .review-line strong {
    text-align: center;
  }

  .review-line {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
  }

  .booking-shell,
  .service-grid,
  .booking-service-list,
  .service-pathways,
  .guide-list,
  .faq-grid,
  .field-row,
  .segmented,
  .addon-grid,
  .time-grid {
    justify-items: center;
  }

  .package-service-grid {
    grid-template-columns: 1fr;
  }

  .service-card-body,
  .service-card,
  .booking-service {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .service-group {
    padding: 28px 20px;
  }

  .intro-heading {
    border-left: 0;
    border-top: 2px solid rgba(135, 73, 54, 0.36);
    padding-top: 22px;
    padding-left: 0;
  }

  .intro-details article {
    grid-template-columns: 1fr;
  }

  .intro-details span {
    grid-row: auto;
  }

  .service-card h3 {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    line-height: 1.1;
  }

  .service-card {
    align-items: center;
    padding: 22px 20px;
    text-align: center;
  }

  .service-pathways article {
    grid-template-columns: 1fr;
  }

  .service-pathways span {
    grid-row: auto;
  }

  .booking-service {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px 12px;
    padding: 12px 14px;
    text-align: left;
  }

  .booking-service.selected {
    padding: 12px 14px;
    border: 1px solid #07111f;
    background: linear-gradient(180deg, rgba(7, 17, 31, 0.12), rgba(255, 255, 255, 0.4));
  }

  .booking-service .price-line {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    margin-top: 0;
    text-align: right;
    white-space: nowrap;
  }

  .booking-service h3,
  .booking-service p,
  .booking-service .service-duration-options {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .booking-service h3 {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-column: 1;
    font-size: clamp(1.08rem, 4.25vw, 1.32rem);
    line-height: 1.05;
    white-space: nowrap !important;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: nowrap;
  }

  .booking-service p {
    display: none;
  }

  .booking-service .service-duration-options {
    grid-column: 1;
    margin-top: 0;
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .service-category-tabs {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
    padding: 8px;
    border: 1px solid rgba(7, 17, 31, 0.14);
    border-radius: var(--radius);
    background: rgba(7, 17, 31, 0.045);
  }

  .category-tab {
    width: 100%;
    min-height: 44px;
    border-radius: var(--radius);
    border-color: rgba(7, 17, 31, 0.16);
    background: rgba(255, 255, 255, 0.56);
    color: rgba(7, 17, 31, 0.72);
    font-size: 0.86rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  }

  .category-tab.active {
    border-color: var(--clay-dark);
    background: var(--clay-dark);
    color: var(--cream-accent);
    box-shadow: 0 10px 22px rgba(135, 73, 54, 0.18);
  }

  .service-selection-panel {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
    padding: 18px 16px;
    text-align: center;
  }

  .service-selection-panel .button {
    width: 100%;
  }

  .service-card .price-line {
    border-left: 0;
    border-top: 0;
    padding-top: 0;
    padding-left: 0;
    text-align: center;
  }

  .service-group:nth-child(even) .service-card .price-line {
    border-top-color: var(--clay-dark);
  }

  .booking-service p,
  .service-card p,
  .summary-note {
    max-width: 34rem;
  }

  .service-card p,
  .service-card .eyebrow,
  .service-card h3,
  .service-card .service-fit,
  .service-card .service-duration-options {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .service-fit {
    border-top: 1px solid rgba(232, 184, 164, 0.32);
    padding-top: 14px;
  }

  .service-card-action {
    width: 100%;
  }

  .stepper,
  .booking-service-list {
    width: 100%;
  }

  .booking-service-list {
    display: none;
    max-height: none;
    overflow: visible;
    overscroll-behavior: contain;
    border: 1px solid rgba(7, 17, 31, 0.1);
    border-radius: var(--radius);
    padding: 8px;
    background: rgba(7, 17, 31, 0.035);
  }

  .service-list-toggle {
    display: block;
  }

  .service-list-open .booking-service-list {
    display: grid;
  }

  .segmented label,
  .addon-grid label,
  .check-row {
    justify-content: center;
    text-align: center;
  }

  input,
  select,
  textarea {
    text-align: center;
  }

  .form-actions {
    width: 100%;
    bottom: 10px;
    justify-content: center;
    padding: 10px;
  }

  .form-actions .button {
    flex: 1 1 150px;
  }

  .booking-action-hint {
    text-align: center;
  }

  .service-pathways,
  .booking-service-list,
  .stepper {
    grid-template-columns: 1fr;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: stretch;
    justify-items: stretch;
  }

  #booking-step-time > .field-row {
    grid-template-columns: 1fr;
  }

  .field-row > .field-group,
  .booking-step.active > .field-group {
    width: 100%;
    justify-items: stretch;
  }

  .segmented,
  .addon-grid,
  .time-grid {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    justify-items: stretch;
  }

  #booking-step-details .addon-grid,
  .package-service-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #booking-step-details .addon-grid label,
  .payment-options label {
    grid-template-columns: 24px minmax(0, 1fr) max-content;
  }

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

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

  .choice-fieldset,
  #durationField,
  #notesField {
    width: 100%;
    margin-bottom: 18px;
    padding: 20px 16px 16px;
  }

  #booking-step-details {
    display: none;
  }

  #booking-step-details.active {
    display: grid;
    gap: 2px;
  }

  .segmented label,
  .addon-grid label,
  .check-row,
  .booking-shell .time-button {
    min-height: 56px;
    justify-content: center;
    padding: 12px 14px;
    font-size: 0.92rem;
    line-height: 1.18;
    text-align: center;
  }

  .segmented label {
    font-size: 0.98rem;
  }

  .segmented label,
  .addon-grid label {
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
    text-align: left;
  }

  .addon-grid label {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) max-content;
    column-gap: 16px;
    align-items: center;
  }

  .package-service-grid label,
  .booking-shell .package-service-grid label {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    width: 100%;
    min-height: 56px;
    padding: 12px 16px;
    text-align: left;
  }

  .booking-shell .package-service-grid .choice-name {
    justify-self: start;
    width: 100%;
    font-size: 1rem;
    line-height: 1.22;
    text-align: left;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: pretty;
  }

  .segmented label {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 16px;
    align-items: center;
    justify-content: stretch;
    text-align: left;
  }

  .choice-name {
    text-align: left;
  }

  .choice-price {
    justify-self: end;
  }

  #booking-step-details .addon-grid label {
    min-height: 62px;
  }

  #booking-step-details .addon-grid .choice-name {
    font-size: 0.94rem;
    line-height: 1.22;
  }

  #booking-step-details .addon-grid .choice-price {
    font-size: 0.9rem;
  }

  .selected-details-continue,
  .selected-time-continue {
    width: 100%;
    min-width: 0;
  }

  .service-card {
    min-height: 0;
  }

  .booking-summary {
    padding: 24px;
  }

  .booking-summary h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .booking-summary dl {
    grid-template-columns: 1fr;
  }

  .booking-summary .summary-note {
    border-left: 0;
    border-top: 1px solid rgba(255, 247, 234, 0.18);
    padding-top: 16px;
    padding-left: 0;
  }

  .booking-panel {
    padding: 18px;
  }

  .panel-heading h3 {
    max-width: 100%;
    font-size: clamp(1.45rem, 7vw, 2.05rem);
    line-height: 1.12;
    text-wrap: balance;
  }

  .booking-promise li {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .booking-promise span {
    grid-row: auto;
  }

  .guide-list article {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
    padding: 34px 0;
  }

  .guide-list span {
    grid-row: auto;
    width: 56px;
    height: 56px;
    font-size: 1.08rem;
  }

  .faq-grid summary {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    gap: 14px;
    min-height: 68px;
    padding: 18px 18px;
    text-align: left;
    font-size: clamp(1.05rem, 5.2vw, 1.3rem);
  }

  .faq-grid summary::after {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border: 1px solid rgba(135, 73, 54, 0.28);
    border-radius: 6px;
    background: rgba(255, 250, 244, 0.62);
    color: var(--clay-dark);
    font-size: 1rem;
    line-height: 1;
    margin-top: 0;
  }

  .faq-grid p {
    padding-right: 18px;
    padding-left: 18px;
    text-align: left;
    font-size: 1rem;
    line-height: 1.62;
  }

  .faq-grid,
  .faq-grid details {
    width: 100%;
  }

  .faq-heading h2 {
    max-width: 12ch;
    font-size: clamp(1.75rem, 9.4vw, 2.25rem);
    line-height: 1.08;
    text-wrap: balance;
  }

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

  .footer-main,
  .footer-column,
  .footer-bottom {
    justify-content: center;
    justify-items: center;
    text-align: center;
  }

  .footer-brand {
    justify-self: center;
  }

  .footer-license {
    justify-items: center;
    border-left: 0;
    border-top: 2px solid var(--clay-soft);
    padding: 14px 10px 0;
    text-align: center;
  }

  .footer-column {
    width: min(100%, 360px);
    gap: 8px;
    border: 1px solid rgba(247, 239, 227, 0.12);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(255, 247, 234, 0.04);
  }

  .footer-column h2 {
    margin-bottom: 6px;
    color: var(--clay-soft);
    font-size: 0.78rem;
  }

  .footer-column a {
    position: relative;
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border: 1px solid rgba(247, 239, 227, 0.14);
    border-radius: var(--radius);
    padding: 12px 14px;
    background: rgba(255, 247, 234, 0.055);
    color: var(--cream-accent);
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
  }

  .footer-column a::after {
    content: "›";
    color: var(--clay-soft);
    font-size: 1.25rem;
    line-height: 1;
  }

  .footer-column a:hover {
    border-color: rgba(232, 184, 164, 0.42);
    background: rgba(232, 184, 164, 0.1);
  }

  .footer-bottom {
    display: grid;
  }

  .stepper {
    position: sticky;
    top: 84px;
    z-index: 12;
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 32px;
    border: 1px solid rgba(7, 17, 31, 0.12);
    border-radius: var(--radius);
    padding: 10px 10px 8px;
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(255, 246, 234, 0.94)),
      #fff6ea;
    box-shadow: 0 16px 32px rgba(7, 17, 31, 0.16);
    overflow: visible;
  }

  .stepper::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 36px;
    right: 36px;
    height: 1px;
    background: rgba(7, 17, 31, 0.18);
  }

  .step-pill {
    position: relative;
    z-index: 1;
    display: grid;
    width: 54px;
    min-width: 0;
    max-width: none;
    min-height: 48px;
    justify-items: center;
    gap: 6px;
    border: 0;
    border-radius: 0;
    padding: 32px 0 0;
    background: transparent;
    color: rgba(7, 17, 31, 0.58);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
    box-shadow: none;
  }

  .step-pill::before {
    content: "";
    position: absolute;
    top: 2px;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(135, 73, 54, 0.26);
    border-radius: 50%;
    background: #fffaf4;
    box-shadow: 0 0 0 4px #fff6ea;
  }

  .step-pill:hover {
    border-color: transparent;
    background: transparent;
    color: var(--navy-ink);
  }

  .step-pill.active {
    border-color: transparent;
    background: transparent;
    color: var(--navy-ink);
    box-shadow: none;
  }

  .step-pill.active::before {
    border-color: #07111f;
    background: var(--clay-dark);
    box-shadow: 0 0 0 4px #fff6ea, 0 8px 18px rgba(135, 73, 54, 0.24);
  }
}

@media (min-width: 560px) and (max-width: 720px) {
  .faq-heading {
    max-width: min(100%, 640px);
  }

  .faq-heading h2 {
    max-width: 100%;
    font-size: clamp(1.9rem, 5vw, 2.15rem);
  }
}

@media (max-width: 1100px) {
  .guide-heading .eyebrow,
  .faq-heading .eyebrow,
  .visit .eyebrow {
    margin-bottom: 14px;
    color: var(--clay-dark);
    font-family: var(--font-serif);
    font-size: clamp(2.05rem, 7vw, 3.15rem);
    font-weight: 700;
    line-height: 1.06;
    text-transform: none;
  }

  .visit .eyebrow {
    color: var(--clay-soft);
  }

  .guide-heading h2,
  .faq-heading h2,
  .visit h2 {
    max-width: 46rem;
    margin-right: auto;
    margin-left: auto;
    font-family: var(--font-sans);
    font-size: clamp(1.08rem, 3.6vw, 1.45rem);
    font-weight: 700;
    line-height: 1.42;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .guide-heading .eyebrow,
  .faq-heading .eyebrow,
  .visit .eyebrow {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
    text-align: center;
  }

  .guide-heading h2,
  .faq-heading h2,
  .visit h2 {
    max-width: 22rem;
    font-size: clamp(1.02rem, 4.6vw, 1.28rem);
  }
}
