:root {
  --paper: #f6f1e7;
  --ink: #1e1712;
  --ink-soft: #6b5c4e;
  --dark: #14100e;
  --gold: #c9974a;
  --header-bg: #10201f;
  --header-bg-deep: #0a1716;
  --header-cream: #fffaf0;
  --header-gold: #ddb86f;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-ui: "Avenir Next", Avenir, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container-editorial: 75rem;
  --container-wide: 82rem;
  --container-cinematic: 72rem;
  --container-max: var(--container-editorial);
  color-scheme: light;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-ui);
  line-height: 1.5;
}

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

html {
  min-width: 20rem;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
}

button {
  font: inherit;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 0.1875rem solid var(--header-gold);
  outline-offset: 0.1875rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container-max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--header-bg-deep);
  background: var(--header-gold);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-200%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  color: var(--header-cream);
  background: linear-gradient(115deg, rgb(221 184 111 / 7%), transparent 42%), linear-gradient(180deg, var(--header-bg), var(--header-bg-deep));
  border-bottom: 1px solid rgb(221 184 111 / 50%);
  box-shadow: 0 0.375rem 1.5rem rgb(10 23 22 / 16%);
}

/* Base architecture: mobile first, designed for 360–430px. */
.header-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding-block: 0.75rem;
}

.brand {
  display: flex;
  order: 1;
  flex: 1 1 auto;
  align-items: center;
  gap: 0.5rem;
  width: auto;
  min-width: 0;
  max-width: calc(100% - 3.75rem);
  color: var(--header-gold);
  text-decoration: none;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 3rem;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 5.5vw, 1.5rem);
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-signature {
  margin-top: 0.1875rem;
  color: var(--header-cream);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.header-actions {
  display: flex;
  order: 2;
  flex: 0 0 auto;
  align-items: center;
}

.menu-toggle {
  display: inline-flex;
  flex: 0 0 2.75rem;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgb(221 184 111 / 82%);
  border-radius: var(--radius-md);
  padding: 0;
  color: var(--header-cream);
  background: rgb(255 250 240 / 6%);
  cursor: pointer;
}

.menu-icon {
  display: grid;
  gap: 0.28125rem;
  width: 1.25rem;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: currentcolor;
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-icon span:first-child {
  transform: translateY(0.40625rem) rotate(45deg);
}

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

.menu-toggle[aria-expanded="true"] .menu-icon span:last-child {
  transform: translateY(-0.40625rem) rotate(-45deg);
}

.primary-nav {
  position: absolute;
  z-index: 20;
  top: 100%;
  right: 0;
  left: 0;
  order: 3;
  flex: 0 0 100%;
  width: 100%;
  max-height: calc(100svh - 5rem);
  overflow-y: auto;
  border: 1px solid rgb(221 184 111 / 38%);
  border-radius: var(--radius-lg);
  padding: 0 0.5rem 0.75rem;
  background: rgb(10 23 22 / 74%);
  box-shadow: 0 1.25rem 2.5rem rgb(10 23 22 / 28%);
  -webkit-backdrop-filter: blur(10px) saturate(115%);
  backdrop-filter: blur(10px) saturate(115%);
}

.primary-nav[hidden] {
  display: none;
}

.nav-list {
  display: grid;
  gap: 0.125rem;
  margin: 0;
  padding: 0.75rem 0 0;
  list-style: none;
}

.nav-list a,
.nav-list span {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding-inline: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-list a {
  color: var(--header-cream);
}

.nav-list a[aria-current="page"] {
  color: var(--header-gold);
  background: rgb(255 250 240 / 4%);
  border-left: 2px solid currentcolor;
  border-radius: var(--radius-sm);
}

.nav-list span[aria-disabled="true"] {
  color: rgb(255 250 240 / 66%);
}

.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--header-gold);
  border-radius: var(--radius-md);
  padding: 0.6875rem 1rem;
  color: var(--header-bg-deep);
  background: linear-gradient(135deg, var(--header-gold), #cfa255);
  box-shadow: 0 0.25rem 0.875rem rgb(201 151 74 / 16%);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.82;
}

.desktop-booking {
  display: none;
}

.desktop-booking,
.desktop-booking:visited,
.desktop-booking:hover,
.desktop-booking:focus,
.desktop-booking:focus-visible,
.desktop-booking:active,
.mobile-booking,
.mobile-booking:visited,
.mobile-booking:hover,
.mobile-booking:focus,
.mobile-booking:focus-visible,
.mobile-booking:active {
  text-decoration: none;
}

.mobile-booking-item {
  padding-top: 0.625rem;
}

.mobile-booking {
  width: 100%;
}

main {
  min-height: 1px;
}

.hero {
  color: var(--header-cream);
  background: var(--header-bg-deep);
}

.hero-track {
  position: relative;
}

.hero-slide {
  position: relative;
  display: flex;
  min-height: clamp(38rem, calc(100svh - 4.25rem), 44rem);
  align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  bottom: 0;
  height: 100%;
  z-index: -2;
}

.hero-media::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(10 23 22 / 8%) 20%, rgb(10 23 22 / 54%) 55%, rgb(10 23 22 / 96%) 100%),
    linear-gradient(90deg, rgb(10 23 22 / 44%), transparent 82%);
  content: "";
}

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

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 11rem 2.5rem;
}

.hero-eyebrow {
  margin: 0 0 0.875rem;
  color: var(--header-gold);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-title,
.about-title,
.services-title {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero-title {
  max-width: 8.5ch;
  margin: 0;
  font-size: clamp(3rem, 14vw, 4rem);
  line-height: 0.88;
  text-wrap: balance;
}

.hero-title em {
  color: var(--header-gold);
  font-weight: 500;
}

.hero-copy {
  max-width: 34rem;
  margin: 1.25rem 0 0;
  color: rgb(255 250 240 / 90%);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.hero-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-cta {
  min-height: 3rem;
  text-decoration: none;
}

.hero-cta--primary {
  color: var(--header-bg-deep);
  background: linear-gradient(135deg, var(--header-gold), #cfa255);
}

.hero-cta--secondary {
  color: var(--header-cream);
  background: rgb(10 23 22 / 24%);
  border-color: rgb(221 184 111 / 76%);
  box-shadow: none;
}

.about {
  position: relative;
  padding-block: 4.5rem;
  background: var(--paper);
}

.about-layout {
  display: grid;
  gap: 3.5rem;
}

.about-media {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-main-media {
  position: relative;
  grid-column: 1 / -1;
  margin-bottom: 1.75rem;
}

.about-video,
.about-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 1rem 2.5rem rgb(30 23 18 / 13%);
}

.about-video {
  aspect-ratio: 3 / 4;
  object-position: center;
  background: #d8c2a9;
}

.about-image {
  aspect-ratio: 4 / 5;
}

.about-image--atmosphere {
  object-position: center 62%;
}

.about-image--facial {
  object-position: 48% center;
}

.about-image--personal {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
  object-position: center 28%;
}

.care-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  bottom: auto;
  display: grid;
  width: 5.25rem;
  height: 5.25rem;
  margin: 0;
  place-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--header-bg);
  background: var(--paper);
  box-shadow: 0 0.75rem 1.75rem rgb(30 23 18 / 14%);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
}

.care-badge span {
  display: block;
}

.about-content {
  min-width: 0;
}

.section-eyebrow {
  margin: 0 0 0.875rem;
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-title {
  max-width: 13ch;
  margin: 0;
  color: var(--header-bg-deep);
  font-size: clamp(2.5rem, 11vw, 3.25rem);
  line-height: 0.95;
  text-wrap: balance;
}

.about-title::after {
  display: block;
  width: 3rem;
  height: 1px;
  margin-top: 1.25rem;
  background: var(--gold);
  content: "";
}

.about-copy {
  max-width: 40rem;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.75rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.about-value {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 0.625rem;
  align-items: center;
  min-width: 0;
  padding-top: 0.875rem;
  border-top: 1px solid rgb(201 151 74 / 28%);
}

.value-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgb(201 151 74 / 45%);
  border-radius: 50%;
  color: var(--gold);
}

.value-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.about-value strong,
.about-value small {
  display: block;
}

.about-value strong {
  color: var(--ink);
  font-size: 0.8125rem;
  line-height: 1.25;
}

.about-value small {
  margin-top: 0.1875rem;
  color: var(--ink-soft);
  font-size: 0.6875rem;
  line-height: 1.35;
}

.about-cta {
  width: 100%;
  margin-top: 2rem;
  color: var(--header-cream);
  background: var(--header-bg);
  border-color: var(--header-bg);
  box-shadow: 0 0.5rem 1.25rem rgb(16 32 31 / 16%);
  text-decoration: none;
}

.services-preview {
  padding-block: 4.5rem;
  background:
    radial-gradient(circle at 100% 0%, rgb(221 184 111 / 11%), transparent 22rem),
    #eee6d9;
  border-top: 1px solid rgb(201 151 74 / 18%);
}

.services-intro {
  max-width: 42rem;
}

.services-title {
  max-width: 12ch;
  margin: 0;
  color: var(--header-bg-deep);
  font-size: clamp(2.5rem, 11vw, 3.25rem);
  line-height: 0.95;
  text-wrap: balance;
}

.services-copy {
  max-width: 38rem;
  margin: 1.25rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.service-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.75rem;
}

.service-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgb(107 92 78 / 16%);
  border-radius: var(--radius-lg);
  background: rgb(246 241 231 / 86%);
  box-shadow: 0 1rem 2.5rem rgb(30 23 18 / 8%);
}

.service-card--featured {
  border-color: rgb(201 151 74 / 58%);
  box-shadow: 0 1rem 2.75rem rgb(16 32 31 / 12%);
}

.service-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #d8c2a9;
}

.service-card-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgb(10 23 22 / 44%));
  content: "";
}

.service-card-media > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card[data-service-category="physical-therapy"] .service-card-media > img:first-child {
  object-position: center 48%;
}

.service-card[data-service-category="massage"] .service-card-media > img:first-child {
  object-position: center 42%;
}

.service-card[data-service-category="waxing"] .service-card-media > img:first-child {
  object-position: center 58%;
}

.service-card-logo {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 0.75rem;
  display: block;
  width: 3rem;
  height: auto;
  padding: 0.125rem;
  border-radius: 50%;
  background: rgb(255 250 240 / 14%);
  filter: drop-shadow(0 0.1875rem 0.375rem rgb(10 23 22 / 32%));
}

.service-card[data-service-category="nails"] .service-card-logo,
.service-card[data-service-category="facials"] .service-card-logo {
  right: 0.75rem;
  left: auto;
}

.service-number {
  position: absolute;
  z-index: 1;
  right: 1rem;
  bottom: 0.75rem;
  color: var(--header-cream);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 0.125rem 0.75rem rgb(10 23 22 / 45%);
}

.service-card--featured .service-number {
  color: var(--header-gold);
}

.service-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
}

.service-card-content h3 {
  margin: 0;
  color: var(--header-bg-deep);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.service-card-content p {
  margin: 0.875rem 0 1.5rem;
  color: var(--ink-soft);
  font-size: 0.875rem;
  line-height: 1.65;
}

.service-card-link {
  display: inline-flex;
  align-self: flex-start;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: auto;
  border: 1px solid #b7863c;
  border-radius: var(--radius-md);
  padding: 0.6875rem 1rem;
  color: var(--header-bg-deep);
  background: linear-gradient(135deg, var(--header-gold), #cfa255);
  box-shadow: 0 0.25rem 0.75rem rgb(201 151 74 / 18%);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card-link span {
  color: #164f45;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.service-card-link:hover {
  background: linear-gradient(135deg, #e4c37f, var(--header-gold));
  box-shadow: 0 0.375rem 0.875rem rgb(16 32 31 / 16%);
}

.service-card-link:focus-visible {
  box-shadow: 0 0 0 0.1875rem var(--paper), 0 0 0 0.375rem #164f45;
}

.service-card-link:active {
  transform: translateY(1px);
  box-shadow: 0 0.125rem 0.375rem rgb(16 32 31 / 18%);
}

.services-action {
  display: flex;
  margin-top: 2.5rem;
}

/* Homepage video gallery: temporary surfaces until Emmy supplies original footage. */
.video-gallery {
  position: relative;
  border-top: 1px solid rgb(221 184 111 / 34%);
  padding-block: 4.5rem;
  color: var(--header-cream);
  background:
    radial-gradient(circle at 12% 8%, rgb(201 151 74 / 13%), transparent 22rem),
    radial-gradient(circle at 92% 88%, rgb(30 73 67 / 28%), transparent 25rem),
    var(--header-bg-deep);
}

.video-gallery-intro {
  max-width: 38rem;
}

.video-gallery .section-eyebrow {
  color: var(--header-gold);
}

.video-gallery-title {
  margin: 0;
  color: var(--header-cream);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 13vw, 3.75rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.video-gallery-copy {
  max-width: 32rem;
  margin: 1.125rem 0 0;
  color: rgb(255 250 240 / 78%);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.video-slider {
  --video-slide-index: 0;

  max-width: 64rem;
  margin-top: 2.5rem;
}

.video-slider-viewport {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.video-slider-viewport::-webkit-scrollbar {
  display: none;
}

.video-slider-track {
  display: flex;
  min-width: 0;
}

.video-slide {
  min-width: 0;
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.video-media-slot {
  position: relative;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgb(221 184 111 / 30%);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgb(255 250 240 / 7%), transparent 48%),
    radial-gradient(circle at 68% 32%, rgb(201 151 74 / 20%), transparent 34%),
    #10201f;
  box-shadow: 0 1.25rem 3rem rgb(0 0 0 / 23%);
  isolation: isolate;
}

.video-media-slot::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, transparent 20%, rgb(255 250 240 / 5%) 20.5%, transparent 21%),
    linear-gradient(315deg, rgb(5 13 12 / 8%), rgb(5 13 12 / 56%));
  content: "";
  pointer-events: none;
}

.video-media-slot::after {
  position: absolute;
  z-index: 2;
  inset: 0.5rem;
  border: 1px solid rgb(255 250 240 / 8%);
  border-radius: var(--radius-md);
  content: "";
  pointer-events: none;
}

.gallery-video {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0d1a19;
  border-radius: inherit;
}

.video-slide:nth-child(2) .video-media-slot {
  background:
    linear-gradient(160deg, rgb(221 184 111 / 9%), transparent 52%),
    radial-gradient(circle at 30% 72%, rgb(72 111 101 / 27%), transparent 38%),
    #111d1c;
}

.video-slide:nth-child(3) .video-media-slot {
  background:
    radial-gradient(circle at 72% 74%, rgb(201 151 74 / 18%), transparent 32%),
    linear-gradient(125deg, #142724, #0a1514);
}

.video-slide:nth-child(4) .video-media-slot {
  background:
    linear-gradient(140deg, rgb(255 250 240 / 6%), transparent 38%),
    radial-gradient(circle at 24% 28%, rgb(174 126 66 / 19%), transparent 31%),
    #0d1b1a;
}

.video-placeholder-art {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(3.75rem, 18vw, 5.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgb(221 184 111 / 40%);
  border-radius: 50%;
  background: rgb(10 23 22 / 24%);
  box-shadow: inset 0 0 1.5rem rgb(221 184 111 / 7%);
  transform: translate(-50%, -50%);
}

.video-placeholder-art::before,
.video-placeholder-art::after,
.video-placeholder-art span {
  position: absolute;
  background: rgb(221 184 111 / 54%);
  content: "";
}

.video-placeholder-art::before {
  width: 1px;
  height: 42%;
}

.video-placeholder-art::after {
  width: 42%;
  height: 1px;
}

.video-placeholder-art span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  box-shadow: 0 0 1rem rgb(221 184 111 / 50%);
}

.video-slider-controls {
  display: none;
  justify-items: center;
  gap: 0.125rem;
  margin-top: 0.75rem;
}

.video-slider-primary-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.video-slider.is-enhanced .video-slider-viewport {
  overflow: hidden;
  scroll-snap-type: none;
  touch-action: pan-y;
}

.video-slider.is-enhanced .video-slider-track {
  transform: translate3d(calc(var(--video-slide-index) * -100%), 0, 0);
  transition: transform 420ms ease;
}

.video-slider.is-enhanced .video-slider-controls {
  display: grid;
}

.video-slider-arrow,
.video-slider-rotation,
.video-slider-indicators button {
  display: inline-flex;
  width: 2.75rem;
  min-width: 2.75rem;
  height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(221 184 111 / 42%);
  color: var(--header-gold);
  background: rgb(255 250 240 / 4%);
  cursor: pointer;
}

.video-slider-arrow {
  border-radius: 50%;
}

.video-slider-rotation {
  border-radius: 50%;
}

.video-slider-arrow svg,
.video-slider-rotation svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.video-rotation-icon--pause {
  display: none;
}

.video-rotation-icon--play {
  display: block;
}

.video-slider-rotation[aria-pressed="true"] .video-rotation-icon--pause {
  display: block;
}

.video-slider-rotation[aria-pressed="true"] .video-rotation-icon--play {
  display: none;
}

.video-slider-arrow:hover,
.video-slider-rotation:hover,
.video-slider-indicators button:hover {
  border-color: rgb(221 184 111 / 72%);
  background: rgb(221 184 111 / 9%);
}

.video-slider-arrow:active,
.video-slider-rotation:active,
.video-slider-indicators button:active {
  transform: translateY(1px);
}

.video-slider-indicators {
  display: flex;
  align-items: center;
}

.video-slider-indicators button {
  border-color: transparent;
  border-radius: var(--radius-sm);
  padding: 0;
}

.video-slider-indicators span {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: rgb(255 250 240 / 38%);
  transition: width 180ms ease, background-color 180ms ease;
}

.video-slider-indicators button[aria-current="true"] span {
  width: 1.125rem;
  border-radius: 999px;
  background: var(--header-gold);
}

.why-emmy {
  border-top: 1px solid rgb(201 151 74 / 18%);
  padding-block: 3.5rem;
  background:
    radial-gradient(circle at 0% 100%, rgb(221 184 111 / 10%), transparent 18rem),
    var(--paper);
}

.why-emmy-title {
  margin-bottom: 1.5rem;
}

.why-emmy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid rgb(107 92 78 / 14%);
  border-bottom: 1px solid rgb(107 92 78 / 14%);
  padding: 0;
  list-style: none;
}

.why-emmy-item {
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 0.875rem;
  padding: 1rem 0.75rem 1.125rem;
}

.why-emmy-item:nth-child(even) {
  border-left: 1px solid rgb(107 92 78 / 10%);
}

.why-emmy-item:nth-child(n + 3) {
  border-top: 1px solid rgb(107 92 78 / 10%);
}

.why-emmy-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgb(201 151 74 / 42%);
  border-radius: var(--radius-md);
  color: var(--gold);
  background: rgb(255 255 255 / 22%);
}

.why-emmy-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.why-emmy-item h3 {
  margin: 0;
  color: var(--header-bg-deep);
  font-size: 0.875rem;
  line-height: 1.25;
}

.why-emmy-item p {
  margin: 0.375rem 0 0;
  color: #594b40;
  font-size: 0.8125rem;
  line-height: 1.55;
}

.final-booking-cta {
  border-top: 1px solid rgb(221 184 111 / 28%);
  padding-block: 4rem;
  color: var(--header-cream);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgb(201 151 74 / 14%), transparent 22rem),
    linear-gradient(145deg, var(--header-bg), var(--header-bg-deep));
}

.final-booking-content {
  max-width: 44rem;
}

.final-booking-cta .section-eyebrow {
  color: var(--header-gold);
}

.final-booking-title {
  margin: 0;
  color: var(--header-cream);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 12vw, 3.75rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.final-booking-copy {
  max-width: 34rem;
  margin: 1.125rem auto 0;
  color: rgb(255 250 240 / 80%);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.final-booking-action {
  min-width: 10.5rem;
  margin-top: 1.5rem;
  text-decoration: none;
}

.final-booking-action:hover {
  background: linear-gradient(135deg, #e4c37f, var(--header-gold));
  box-shadow: 0 0.5rem 1.25rem rgb(201 151 74 / 20%);
}

.final-booking-action:focus-visible {
  box-shadow: 0 0 0 0.1875rem var(--header-bg-deep), 0 0 0 0.375rem var(--header-gold);
}

.final-booking-action:active {
  transform: translateY(1px);
  box-shadow: 0 0.125rem 0.375rem rgb(0 0 0 / 24%);
}

.site-footer {
  color: var(--header-cream);
  background: var(--header-bg-deep);
  border-top: 1px solid rgb(221 184 111 / 34%);
}

.site-footer-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
  padding-block: 2.25rem 1.75rem;
}

.footer-brand {
  grid-column: 1 / -1;
  max-width: 31rem;
}

.footer-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--header-gold);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.footer-logo {
  display: block;
  width: 3.75rem;
  height: auto;
  object-fit: contain;
}

.footer-brand p {
  max-width: 29rem;
  margin: 0.75rem 0 0;
  color: rgb(255 250 240 / 74%);
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer-nav h2 {
  margin: 0 0 0.625rem;
  color: var(--header-gold);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: rgb(255 250 240 / 78%);
  font-size: 0.8125rem;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-brand-link:hover,
.footer-nav a:hover {
  color: var(--header-gold);
}

.site-footer-bottom {
  border-top: 1px solid rgb(255 250 240 / 10%);
}

.site-footer-bottom p {
  margin: 0;
  padding-block: 0.75rem;
  color: rgb(255 250 240 / 62%);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

/* Booking page foundation: static structure until later Phase 2 behavior checkpoints. */
.booking-page-body {
  background: #eee6d9;
}

.booking-intro {
  border-bottom: 1px solid rgb(221 184 111 / 30%);
  padding-block: 3.75rem 3.25rem;
  color: var(--header-cream);
  background:
    radial-gradient(circle at 90% 12%, rgb(221 184 111 / 12%), transparent 20rem),
    var(--header-bg-deep);
}

.booking-intro-content {
  max-width: 49rem;
}

.booking-intro .section-eyebrow {
  color: var(--header-gold);
}

.booking-page-title {
  max-width: 12ch;
  margin: 0;
  color: var(--header-cream);
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 12vw, 3.75rem);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.booking-page-copy {
  max-width: 39rem;
  margin: 1.125rem 0 0;
  color: rgb(255 250 240 / 82%);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.booking-request-note {
  max-width: 41rem;
  margin: 1.25rem 0 0;
  border-left: 2px solid var(--header-gold);
  padding-left: 0.875rem;
  color: rgb(255 250 240 / 72%);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.booking-progress {
  border-bottom: 1px solid rgb(107 92 78 / 14%);
  background: var(--paper);
}

.booking-progress ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-block: 0;
  padding-block: 0.875rem;
  list-style: none;
}

.booking-progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.375rem;
  color: var(--ink-soft);
  font-size: 0.6875rem;
  line-height: 1.2;
  text-align: center;
}

.booking-progress li + li::before {
  position: absolute;
  top: 1rem;
  right: 50%;
  width: 100%;
  height: 1px;
  background: rgb(107 92 78 / 20%);
  content: "";
  transform: translateY(-50%);
}

.booking-progress li span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgb(107 92 78 / 28%);
  border-radius: 50%;
  background: var(--paper);
  font-weight: 700;
}

.booking-progress li[aria-current="step"] {
  color: var(--header-bg-deep);
}

.booking-progress li[aria-current="step"] span {
  border-color: var(--header-gold);
  color: var(--header-bg-deep);
  background: var(--header-gold);
}

.booking-experience {
  padding-block: 3rem 4.5rem;
}

.booking-form-shell {
  max-width: 68rem;
}

.booking-form {
  display: grid;
  gap: 1.25rem;
}

.booking-panel {
  min-width: 0;
  margin: 0;
  border: 1px solid rgb(107 92 78 / 16%);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  background: rgb(246 241 231 / 88%);
  box-shadow: 0 1rem 2.5rem rgb(30 23 18 / 7%);
}

.booking-panel legend,
.booking-panel-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--header-bg-deep);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
}

.booking-panel legend {
  max-width: 100%;
  padding: 0 0.25rem;
}

.booking-panel-heading h2 {
  margin: 0;
  font: inherit;
}

.booking-step-number {
  display: grid;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid rgb(201 151 74 / 55%);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.6875rem;
  font-weight: 700;
}

.booking-panel-intro {
  max-width: 44rem;
  margin: 0.875rem 0 1.25rem;
  color: var(--ink-soft);
  font-size: 0.875rem;
  line-height: 1.65;
}

.booking-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

.booking-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
  width: 100%;
}

.booking-choice {
  display: flex;
  box-sizing: border-box;
  min-width: 0;
  min-height: 3rem;
  align-items: center;
  gap: 0.625rem;
  border: 1px solid rgb(107 92 78 / 22%);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.75rem;
  color: var(--ink);
  background: rgb(255 255 255 / 28%);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.25;
  cursor: pointer;
}

.booking-choice span {
  flex: 1 1 auto;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: normal;
  white-space: normal;
}

.booking-choice:has(input:focus-visible) {
  outline: 0.1875rem solid var(--header-gold);
  outline-offset: 0.1875rem;
}

.booking-choice:has(input:checked) {
  border-color: rgb(201 151 74 / 72%);
  background: rgb(201 151 74 / 12%);
}

.booking-choice:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.58;
}

.booking-choice input {
  flex: 0 0 1.125rem;
  width: 1.125rem;
  min-width: 1.125rem;
  max-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  accent-color: var(--gold);
}

.booking-service-selection {
  min-height: 6rem;
  margin-top: 1.25rem;
  border: 1px dashed rgb(107 92 78 / 30%);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  color: var(--ink-soft);
  background: rgb(255 255 255 / 20%);
}

.booking-service-selection p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.booking-service-selection[data-catalog-state="loading"] {
  border-style: solid;
}

.booking-service-selection[data-catalog-state="error"] {
  border-style: solid;
  border-color: rgb(166 75 60 / 42%);
  color: #702c22;
  background: #fff1ed;
}

.catalog-retry {
  min-width: 7rem;
  margin-top: 0.875rem;
}

.catalog-retry[hidden] {
  display: none;
}

.booking-service-group {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.booking-service-group + .booking-service-group {
  margin-top: 1.25rem;
  border-top: 1px solid rgb(107 92 78 / 18%);
  padding-top: 1.25rem;
}

.booking-panel .booking-service-group legend {
  display: block;
  max-width: 100%;
  padding: 0;
  color: var(--header-bg-deep);
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.1;
}

.booking-service-options {
  display: grid;
  gap: 0.625rem;
  margin-top: 0.75rem;
}

.booking-service-choice {
  display: flex;
  min-width: 0;
  min-height: 3rem;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid rgb(107 92 78 / 20%);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  color: var(--ink);
  background: rgb(255 255 255 / 36%);
  cursor: pointer;
}

.booking-service-choice:has(input:checked) {
  border-color: rgb(201 151 74 / 68%);
  background: rgb(201 151 74 / 12%);
}

.booking-service-choice:has(input:focus-visible) {
  outline: 0.1875rem solid var(--header-gold);
  outline-offset: 0.1875rem;
}

.booking-service-choice:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.52;
}

.booking-service-choice input {
  flex: 0 0 auto;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0.125rem 0 0;
  accent-color: var(--gold);
}

.booking-service-copy {
  display: grid;
  min-width: 0;
  gap: 0.25rem;
}

.booking-service-copy strong {
  font-size: 0.8125rem;
  line-height: 1.35;
}

.booking-service-copy small,
.booking-service-selection .booking-service-empty {
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.5;
}

.booking-service-selection .booking-validation {
  margin: 0.75rem 0 0;
  border-left: 2px solid #a64b3c;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.625rem 0.75rem;
  color: #702c22;
  background: #fff1ed;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
}

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

.selected-services-summary {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  padding: 1rem;
  color: var(--header-cream);
  background: var(--header-bg);
}

.selected-services-summary h3,
.selected-services-summary p {
  margin: 0;
}

.selected-services-summary h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.selected-services-summary p {
  margin-top: 0.25rem;
  color: rgb(255 250 240 / 68%);
  font-size: 0.75rem;
}

[data-selected-services] {
  display: grid;
  gap: 0.875rem;
  margin-top: 1rem;
  border-top: 1px solid rgb(255 250 240 / 14%);
  padding-top: 0.875rem;
}

[data-selected-services][hidden] {
  display: none;
}

[data-selected-services] h4 {
  margin: 0;
  color: var(--header-gold);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

[data-selected-services] ul {
  margin: 0.375rem 0 0;
  padding-left: 1rem;
  color: rgb(255 250 240 / 78%);
  font-size: 0.75rem;
  line-height: 1.55;
}

.selected-services-summary .selection-limit-note {
  margin-top: 0.875rem;
  border-top: 1px solid rgb(221 184 111 / 24%);
  padding-top: 0.75rem;
  color: var(--header-cream);
}

.selection-limit-note[hidden] {
  display: none;
}

.booking-stage-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.booking-stage-actions--forward {
  justify-content: flex-end;
}

.booking-continue {
  width: 100%;
}

.booking-stage-forward {
  width: 100%;
}

.booking-back {
  min-height: 2.75rem;
  border: 1px solid rgb(107 92 78 / 30%);
  border-radius: var(--radius-md);
  padding: 0.6875rem 1rem;
  color: var(--header-bg-deep);
  background: transparent;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
}

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

.booking-details-grid {
  display: grid;
  gap: 1rem;
}

.booking-field {
  display: grid;
  gap: 0.4375rem;
  min-width: 0;
}

.booking-field label {
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
}

.booking-field input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"]) {
  width: 100%;
  min-width: 0;
  min-height: 3rem;
  border: 1px solid rgb(107 92 78 / 30%);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  color: var(--ink);
  background: rgb(255 255 255 / 52%);
  font: inherit;
}

.booking-field input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"])::placeholder {
  color: rgb(107 92 78 / 66%);
}

.booking-field input:not([type="radio"]):not([type="checkbox"]):not([type="hidden"])[readonly] {
  color: var(--header-bg-deep);
  background: rgb(201 151 74 / 10%);
  cursor: default;
}

.booking-field small {
  color: var(--ink-soft);
  font-size: 0.6875rem;
}

.booking-field .booking-field-error {
  color: #7a2e25;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.45;
}

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

.booking-time-picker {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
  border: 1px solid rgb(107 92 78 / 30%);
  border-radius: var(--radius-md);
  padding: 0.875rem;
  background: rgb(255 255 255 / 52%);
}

.booking-time-picker[aria-invalid="true"] {
  border-color: #9b3f34;
  background: #fff4f1;
}

.booking-time-instruction,
.booking-time-loading,
.booking-time-empty {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.5;
}

.booking-time-options {
  display: grid;
  min-width: 0;
}

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

.booking-time-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.625rem;
}

.booking-time-option {
  display: flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(107 92 78 / 28%);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.5rem;
  color: var(--ink);
  background: rgb(255 255 255 / 62%);
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.booking-time-option:has(input:focus-visible) {
  outline: 0.1875rem solid var(--header-gold);
  outline-offset: 0.1875rem;
}

.booking-time-option--selected {
  border: 2px solid #6a4322;
  background: linear-gradient(135deg, rgb(201 151 74 / 18%), rgb(255 255 255 / 80%));
  box-shadow: 0 0 0 0.125rem rgb(201 151 74 / 28%);
}

.booking-time-option--selected::after {
  content: "Selected";
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.125rem 0.375rem;
  background: #6a4322;
  color: #fff;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.booking-time-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.booking-time-option span {
  display: grid;
  gap: 0.125rem;
  min-width: 0;
}

.booking-time-option strong {
  font-size: 0.75rem;
  line-height: 1.2;
}

.booking-time-option small {
  color: var(--ink-soft);
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-time-option--available {
  border-color: rgb(201 151 74 / 52%);
  background: rgb(201 151 74 / 12%);
}

.booking-time-option--available:hover {
  border-color: rgb(201 151 74 / 72%);
  transform: translateY(-1px);
}

.booking-time-option--available input:checked + span {
  color: var(--header-bg-deep);
}

.booking-time-option--selected small {
  color: var(--header-bg-deep);
  font-weight: 700;
}

.booking-time-option--unavailable {
  border-style: dashed;
  border-color: rgb(107 92 78 / 22%);
  color: var(--ink-soft);
  background: rgb(107 92 78 / 6%);
  cursor: not-allowed;
  opacity: 0.72;
}

.booking-time-option--unavailable small {
  color: var(--ink-soft);
}

.booking-time-retry {
  width: 100%;
}

.booking-time-picker .booking-field-error {
  margin-top: 0.25rem;
}

.booking-field > input[aria-invalid="true"],
.booking-field:has(.phone-field input[aria-invalid="true"]) .phone-field {
  border-color: #9b3f34;
  background: #fff4f1;
}

.phone-field,
.locked-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgb(107 92 78 / 30%);
  border-radius: var(--radius-md);
  background: rgb(255 255 255 / 52%);
}

.phone-field:focus-within,
.locked-field:focus-within {
  outline: 0.1875rem solid var(--header-gold);
  outline-offset: 0.1875rem;
}

.phone-field > span {
  padding-inline: 0.875rem;
  color: var(--header-bg-deep);
  font-size: 0.875rem;
  font-weight: 700;
}

.phone-field input,
.locked-field input {
  border: 0;
  border-left: 1px solid rgb(107 92 78 / 24%);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: transparent;
  outline: 0;
}

.locked-field {
  grid-template-columns: minmax(0, 1fr) auto;
  background: rgb(201 151 74 / 10%);
}

.locked-field input {
  border-left: 0;
}

.locked-field svg {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.875rem;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.booking-review-grid {
  display: grid;
  gap: 0.75rem;
}

.booking-review-grid > section {
  min-width: 0;
  border-top: 1px solid rgb(107 92 78 / 18%);
  padding-top: 0.875rem;
}

.booking-review-grid h3,
.booking-review-grid p {
  margin: 0;
}

.booking-review-grid h3 {
  color: var(--ink);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.booking-review-grid p {
  margin-top: 0.375rem;
  color: var(--ink-soft);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.booking-review-services,
.booking-review-details {
  margin-top: 0.625rem;
}

.booking-review-services section + section {
  margin-top: 0.75rem;
}

.booking-review-services h4,
.booking-review-services ul,
.booking-review-details,
.booking-review-details dd {
  margin: 0;
}

.booking-review-services h4,
.booking-review-details dt {
  color: var(--ink-soft);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-review-services ul {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.375rem;
  padding-left: 1.125rem;
  color: var(--ink);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.booking-review-details {
  display: grid;
  gap: 0.625rem;
}

.booking-review-details dd {
  margin-top: 0.1875rem;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.booking-submit-area {
  margin-top: 1.5rem;
  border-top: 1px solid rgb(201 151 74 / 28%);
  padding-top: 1.25rem;
}

.booking-submit-area > p {
  max-width: 42rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.75rem;
  line-height: 1.55;
}

.booking-turnstile-container {
  display: flex;
  justify-content: flex-start;
  min-height: 4.0625rem;
  margin-bottom: 0.875rem;
}

.booking-submit {
  width: 100%;
  margin-top: 1rem;
}

.booking-submission-status {
  margin-top: 0.875rem;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
}

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

.booking-submission-status--error {
  border: 1px solid #a64b3c;
  color: #702c22;
  background: #fff1ed;
}

.booking-submission-status--info {
  border: 1px solid rgb(201 151 74 / 42%);
  color: var(--header-bg-deep);
  background: rgb(201 151 74 / 12%);
}

.booking-success {
  max-width: 48rem;
  margin-inline: auto;
  border: 1px solid rgb(201 151 74 / 42%);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  color: var(--header-cream);
  background: var(--header-bg);
  text-align: center;
}

.booking-success h2 {
  margin: 0;
  color: var(--header-gold);
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1;
}

.booking-success p {
  margin: 1rem auto 0;
  color: rgb(255 250 240 / 78%);
  font-size: 0.875rem;
  line-height: 1.65;
}

.booking-alert {
  margin-bottom: 1rem;
  border: 1px solid #a64b3c;
  border-radius: var(--radius-md);
  padding: 1rem;
  color: #702c22;
  background: #fff1ed;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Dedicated services page */
.services-page-body {
  background: var(--paper);
}

.services-page-intro {
  padding-block: 4.5rem 3.25rem;
  color: var(--header-cream);
  background:
    radial-gradient(circle at 88% 12%, rgb(201 151 74 / 16%), transparent 34%),
    linear-gradient(145deg, var(--header-bg-deep), var(--header-bg));
}

.services-page-intro-content {
  max-width: 48rem;
}

.services-page-title,
.service-category h2,
.services-final-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.services-page-title {
  max-width: 10ch;
  margin-top: 0.75rem;
  font-size: clamp(3rem, 14vw, 4.5rem);
  line-height: 0.9;
}

.services-page-intro-copy {
  max-width: 39rem;
  margin: 1.75rem 0 0;
  color: var(--header-cream);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.service-category-nav {
  position: relative;
  z-index: 2;
  border-bottom: 1px solid rgb(107 92 78 / 20%);
  background: rgb(246 241 231 / 96%);
}

.category-nav-scroll {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.category-nav-scroll::-webkit-scrollbar {
  display: none;
}

.service-category-nav ul {
  display: flex;
  width: max-content;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-category-nav li {
  flex: 0 0 auto;
}

.service-category-nav a {
  display: inline-flex;
  min-height: 3.5rem;
  flex: 0 0 auto;
  align-items: center;
  border-bottom: 2px solid transparent;
  padding-inline: 1.125rem;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-category-nav a:hover,
.service-category-nav a:focus-visible {
  border-bottom-color: var(--gold);
  color: var(--ink);
}

.service-category {
  scroll-margin-top: 1rem;
  padding-block: 4.5rem;
}

.service-category:nth-child(even) {
  background: #eee6d9;
}

.service-category-layout {
  display: grid;
  gap: 2.25rem;
  min-width: 0;
}

.service-category-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 2;
  background: var(--dark);
}

.service-category-media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-category[data-service-category="physical-therapy"] .service-category-media > img:first-child {
  object-position: 54% center;
}

.service-category[data-service-category="massage"] .service-category-media > img:first-child {
  object-position: 58% center;
}

.service-category[data-service-category="waxing"] .service-category-media > img:first-child {
  object-position: 62% center;
}

.service-category[data-service-category="nails"] .service-card-logo,
.service-category[data-service-category="facials"] .service-card-logo {
  right: 0.875rem;
  left: auto;
}

.service-category-number {
  position: absolute;
  right: 0.875rem;
  bottom: 0.75rem;
  color: rgb(255 249 237 / 86%);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 1px 0 rgb(0 0 0 / 36%);
}

.service-category-content {
  min-width: 0;
}

.service-category h2 {
  color: var(--ink);
  font-size: clamp(2.5rem, 12vw, 3.5rem);
  line-height: 0.95;
}

.service-category-copy {
  max-width: 43rem;
  margin: 1rem 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.service-list {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  min-height: 3.5rem;
  align-items: center;
  border-bottom: 1px solid rgb(107 92 78 / 24%);
  color: var(--ink);
  line-height: 1.35;
}

.service-list li > span:first-child {
  color: #a97831;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-list li > span:last-child {
  color: #164f45;
  font-size: 1.125rem;
}

.service-category-booking {
  width: 100%;
  margin-top: 2rem;
  text-decoration: none;
}

.services-final-booking {
  text-decoration: none;
}

.service-availability-note {
  margin: 2rem 0 0;
  border-left: 2px solid var(--gold);
  padding: 1rem 1.125rem;
  color: var(--ink-soft);
  background: rgb(255 255 255 / 36%);
  font-style: italic;
  line-height: 1.6;
}

.services-final-cta {
  padding-block: 4.5rem;
  color: var(--header-cream);
  text-align: center;
  background:
    linear-gradient(135deg, rgb(201 151 74 / 12%), transparent 45%),
    var(--header-bg-deep);
}

.services-final-cta .section-eyebrow {
  color: var(--header-gold);
}

.services-final-title {
  max-width: 12ch;
  margin: 0.75rem auto 0;
  font-size: clamp(2.75rem, 13vw, 4.25rem);
  line-height: 0.94;
}

.services-final-copy {
  max-width: 36rem;
  margin: 1.25rem auto 0;
  color: var(--header-cream);
  line-height: 1.7;
}

.services-final-cta .button {
  margin-top: 1.75rem;
}

.services-all-link {
  width: 100%;
  min-height: 3rem;
  color: var(--header-cream);
  background: var(--header-bg);
  border-color: var(--header-bg);
  box-shadow: 0 0.5rem 1.25rem rgb(16 32 31 / 16%);
  text-decoration: none;
}

/* Tablet enhancement: keep the intentional collapsible mobile navigation. */
@media (min-width: 37.5rem) {
  .container {
    width: min(calc(100% - 3rem), var(--container-max));
  }

  .header-inner {
    padding-block: 0.875rem;
  }

  .brand-logo {
    width: 3.5rem;
  }

  .brand-name {
    font-size: 1.625rem;
  }

  .brand-signature {
    font-size: 0.75rem;
  }

  .hero-slide {
    min-height: clamp(42rem, calc(100svh - 5rem), 46rem);
  }

  .hero-media {
    bottom: 0;
    height: 100%;
  }

  .hero-media::after {
    background:
      linear-gradient(180deg, rgb(10 23 22 / 14%) 15%, rgb(10 23 22 / 88%) 82%),
      linear-gradient(90deg, rgb(10 23 22 / 48%), transparent 76%);
  }

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

  .hero-content {
    padding-block: 10rem 3.5rem;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-cta {
    min-width: 10rem;
  }

  .about {
    padding-block: 6rem;
  }

  .about-media {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(12, 3.25rem);
    gap: 0.75rem;
  }

  .about-main-media {
    grid-column: 1 / 9;
    grid-row: 1 / 12;
    margin-bottom: 0;
  }

  .about-video {
    aspect-ratio: auto;
  }

  .about-image {
    aspect-ratio: auto;
  }

  .about-image--atmosphere {
    grid-column: 9 / 13;
    grid-row: 1 / 5;
  }

  .about-image--facial {
    grid-column: 8 / 13;
    grid-row: 5 / 9;
  }

  .about-image--personal {
    grid-column: 9 / 13;
    grid-row: 9 / 13;
    object-position: center;
  }

  .care-badge {
    top: 0.75rem;
    right: 0.75rem;
    bottom: auto;
    width: 6rem;
    height: 6rem;
    font-size: 0.9375rem;
  }

  .about-title {
    font-size: 3.75rem;
  }

  .about-copy {
    font-size: 1rem;
  }

  .about-values {
    gap: 1.25rem 1.5rem;
  }

  .about-cta {
    width: auto;
    min-width: 11rem;
  }

  .services-preview {
    padding-block: 6rem;
  }

  .services-title {
    font-size: 3.75rem;
  }

  .services-copy {
    font-size: 1rem;
  }

  .service-card-logo {
    width: 3.25rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 3.5rem;
  }

  .services-all-link {
    width: auto;
    min-width: 12rem;
  }

  .video-gallery {
    padding-block: 5.5rem;
  }

  .video-gallery-title {
    font-size: 4.25rem;
  }

  .video-slider {
    margin-top: 3rem;
  }

  .video-media-slot {
    aspect-ratio: 16 / 9;
  }

  .why-emmy {
    padding-block: 4.25rem;
  }

  .why-emmy-title {
    margin-bottom: 1.75rem;
  }

  .why-emmy-item {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1.25rem;
  }

  .why-emmy-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .why-emmy-item h3 {
    font-size: 0.9375rem;
  }

  .why-emmy-item p {
    max-width: 14rem;
    font-size: 0.8125rem;
  }

  .final-booking-cta {
    padding-block: 4.75rem;
  }

  .final-booking-title {
    font-size: 4.25rem;
  }

  .final-booking-copy {
    font-size: 1rem;
  }

  .site-footer-main {
    grid-template-columns: minmax(0, 1.5fr) repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding-block: 3.25rem 2.75rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand p {
    margin-top: 1rem;
  }

  .site-footer-bottom p {
    padding-block: 1rem;
    text-align: left;
  }

  .booking-intro {
    padding-block: 4.75rem 4.25rem;
  }

  .booking-page-title {
    font-size: 4.5rem;
  }

  .booking-page-copy {
    font-size: 1rem;
  }

  .booking-progress ol {
    max-width: 42rem;
    padding-block: 1rem;
  }

  .booking-experience {
    padding-block: 4.5rem 6rem;
  }

  .booking-form {
    gap: 1.5rem;
  }

  .booking-panel {
    padding: 1.75rem;
  }

  .booking-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
  }

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

  .booking-continue {
    width: auto;
    min-width: 12rem;
  }

  .booking-stage-actions {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .booking-stage-forward {
    width: auto;
    min-width: 12rem;
  }

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

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

  .booking-submit {
    width: auto;
    min-width: 13rem;
  }

  .services-page-intro {
    padding-block: 5.5rem 4.5rem;
  }

  .services-page-intro-copy {
    margin-top: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
  }

  .category-nav-scroll {
    scrollbar-width: thin;
  }

  .category-nav-scroll::-webkit-scrollbar {
    display: initial;
  }

  .service-category-nav ul {
    min-width: 100%;
  }

  .service-category-nav a {
    min-height: 3.25rem;
    padding-inline: 0.9rem;
    font-size: 0.6875rem;
  }

  .services-page-title {
    font-size: 4.75rem;
  }

  .service-category {
    padding-block: 5.5rem;
  }

  .service-category h2 {
    font-size: 3.75rem;
  }

  .service-category-booking {
    width: auto;
    min-width: 11rem;
  }
}

/* Desktop enhancement: inline navigation starts only when its content fits. */
@media (min-width: 56rem) {
  .header-inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 2rem;
    min-height: 5.25rem;
    padding-block: 0.75rem;
  }

  .brand {
    max-width: none;
  }

  .brand-logo {
    width: 4.25rem;
  }

  .primary-nav,
  .primary-nav[hidden] {
    display: block;
    position: static;
    grid-column: 2;
    grid-row: 1;
    width: auto;
    max-height: none;
    overflow: visible;
    border-top: 0;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    padding: 0;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.5rem, 1.8vw, 1.5rem);
    padding: 0;
  }

  .nav-list a,
  .nav-list span {
    min-height: 2.75rem;
    padding-inline: 0.25rem;
    font-size: 0.6875rem;
    letter-spacing: 0.09em;
  }

  .nav-list a[aria-current="page"] {
    position: relative;
    background: transparent;
    border-left: 0;
    border-radius: 0;
  }

  .nav-list a[aria-current="page"]::after {
    position: absolute;
    right: 0.25rem;
    bottom: 0.25rem;
    left: 0.25rem;
    height: 1px;
    background: currentcolor;
    content: "";
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
  }

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

  .desktop-booking {
    display: inline-flex;
  }

  .hero-slide {
    min-height: min(46rem, calc(100vh - 5.25rem));
    align-items: center;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgb(10 23 22 / 92%) 0%, rgb(10 23 22 / 62%) 42%, rgb(10 23 22 / 12%) 76%),
      linear-gradient(180deg, rgb(10 23 22 / 18%), rgb(10 23 22 / 36%));
  }

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

  .hero-content {
    padding-block: 5.5rem;
  }

  .hero-eyebrow {
    font-size: 0.75rem;
  }

  .hero-title {
    max-width: 9ch;
    font-size: clamp(4.75rem, 7vw, 6rem);
  }

  .hero-copy {
    max-width: 31rem;
    font-size: 1.0625rem;
  }

  .hero-actions {
    margin-top: 2rem;
  }

  .about {
    padding-block: 7.5rem;
  }

  .about-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(4rem, 7vw, 7rem);
    align-items: center;
  }

  .about-media {
    grid-template-rows: repeat(12, 3.5rem);
  }

  .about-main-media {
    grid-column: 1 / 9;
    grid-row: 1 / 13;
  }

  .about-image--facial {
    grid-column: 8 / 13;
  }

  .care-badge {
    top: auto;
    right: -2.625rem;
    bottom: 2.5rem;
  }

  .about-title {
    max-width: 12ch;
    font-size: clamp(3.75rem, 5vw, 5rem);
  }

  .about-values {
    margin-top: 2.5rem;
  }

  .services-preview {
    padding-block: 7.5rem;
  }

  .services-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
    column-gap: 4rem;
    max-width: none;
    align-items: end;
  }

  .services-intro .section-eyebrow {
    grid-column: 1 / -1;
  }

  .services-title {
    max-width: 11ch;
    font-size: clamp(3.75rem, 5vw, 5rem);
  }

  .services-copy {
    margin-bottom: 0.375rem;
  }

  .service-card-logo {
    width: 3.5rem;
  }

  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-top: 4rem;
  }

  .services-action {
    justify-content: center;
    margin-top: 3rem;
  }

  .video-gallery {
    padding-block: 7rem;
  }

  .video-gallery-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr);
    column-gap: 4rem;
    max-width: none;
    align-items: end;
  }

  .video-gallery-intro .section-eyebrow {
    grid-column: 1 / -1;
  }

  .video-gallery-title {
    font-size: clamp(4.5rem, 6vw, 5.5rem);
  }

  .video-gallery-copy {
    margin-bottom: 0.375rem;
  }

  .video-slider {
    margin: 4rem auto 0;
  }

  .video-placeholder-art {
    width: 5.5rem;
  }

  .video-slider-controls {
    margin-top: 1rem;
  }

  .why-emmy {
    padding-block: 4.5rem;
  }

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

  .why-emmy-item,
  .why-emmy-item:nth-child(even),
  .why-emmy-item:nth-child(n + 3) {
    border-top: 0;
    border-left: 0;
  }

  .why-emmy-item + .why-emmy-item {
    border-left: 1px solid rgb(107 92 78 / 10%);
  }

  .why-emmy-item {
    padding: 1.5rem clamp(1rem, 2vw, 1.75rem);
  }

  .final-booking-cta {
    padding-block: 5.5rem;
  }

  .final-booking-title {
    font-size: 5rem;
  }

  .final-booking-action {
    margin-top: 1.75rem;
  }

  .booking-intro {
    padding-block: 5.5rem 4.75rem;
  }

  .booking-page-title {
    font-size: 5rem;
  }

  .booking-panel {
    padding: 2rem;
  }

  .services-page-intro {
    padding-block: 6.5rem 5rem;
  }

  .services-page-intro-content {
    max-width: var(--container-max);
    text-align: center;
  }

  .services-page-title {
    max-width: none;
    margin-inline: auto;
    font-size: 5.5rem;
    text-wrap: balance;
  }

  .services-page-intro-copy {
    max-width: 39rem;
    margin-inline: auto;
  }

  .service-category-nav ul {
    width: 100%;
    justify-content: center;
  }

  .service-category {
    padding-block: 6.5rem;
  }

  .service-category-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
  }

  .service-category:nth-child(even) .service-category-media {
    grid-column: 2;
    grid-row: 1;
  }

  .service-category:nth-child(even) .service-category-content {
    grid-column: 1;
    grid-row: 1;
  }

  .service-category-media {
    position: sticky;
    top: 2rem;
    aspect-ratio: 4 / 5;
  }

  .service-category h2 {
    font-size: clamp(3.75rem, 5vw, 4.75rem);
  }

  .services-final-cta {
    padding-block: 6.5rem;
  }

  .services-final-title {
    font-size: 4.75rem;
  }
}

@media (min-width: 70rem) {
  .header-inner,
  .hero-content,
  .services-preview > .container,
  .video-gallery > .container,
  .site-footer-main {
    width: min(calc(100% - 3rem), var(--container-wide));
  }

  .services-intro {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(2.5rem, 4vw, 4rem);
  }

  .services-title {
    grid-column: 1 / 8;
  }

  .services-copy {
    grid-column: 8 / 13;
    margin: 0 0 0.375rem;
  }

  .service-grid {
    gap: clamp(1.75rem, 2.25vw, 2.25rem);
  }

  .video-gallery-intro {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(2.5rem, 4vw, 4rem);
  }

  .video-gallery-title {
    grid-column: 1 / 9;
  }

  .video-gallery-copy {
    grid-column: 9 / 13;
    margin: 0 0 0.375rem;
  }

  .video-slider {
    max-width: var(--container-cinematic);
  }

  .site-footer-main {
    column-gap: clamp(3rem, 6vw, 6rem);
  }
}

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

  .menu-icon span {
    transition: none;
  }

  .video-slider.is-enhanced .video-slider-track,
  .video-slider-indicators span {
    transition: none;
  }
}
