:root {
  --font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", "Segoe UI", system-ui, sans-serif;
  --ink: #f3ead8;
  --ink-soft: #cbbfae;
  --gold: #c9a36a;
  --void: #080607;
  --line: rgba(243, 234, 216, 0.14);
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --text-xs: clamp(0.72rem, 0.68rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.76rem + 0.28vw, 0.9375rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --text-lg: clamp(1.1rem, 1rem + 0.45vw, 1.3rem);
  --text-hero: clamp(1.7rem, 1.15rem + 1.7vw, 2.85rem);
  --pad-x: clamp(1.25rem, 4vw, 5rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; color-scheme: dark; }
html, body { margin: 0; padding: 0; }
html, body.is-stage {
  height: 100%;
  overflow: hidden;
}
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.55;
  color: var(--ink);
  background: var(--void);
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ink); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
h1, h2, h3 {
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
}

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) var(--pad-x);
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }
.brand-cluster {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  min-width: 0;
}
.brand img { width: clamp(8.25rem, 12vw, 11.5rem); height: auto; }
.places {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.35rem 0.7rem;
  font-family: inherit;
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  cursor: pointer;
}
.nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.2rem 1rem;
  align-items: center;
}
.nav a {
  color: var(--ink-soft);
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.nav a:hover, .nav a.is-active { color: var(--gold); }

.stage, .hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  display: grid;
  align-items: center;
  padding: 5.25rem var(--pad-x) 3.4rem;
  overflow: hidden;
}
.stage-photo, .hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 92% 42%;
  z-index: 0;
  transition: object-position 0.7s ease;
}
.stage-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.stage-svc .stage-photo {
  opacity: 0;
  transition: opacity 0.7s ease, object-position 0.7s ease;
}
.stage-svc .stage-photo.is-on { opacity: 1; }
.stage-scrim, .hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(8, 6, 7, 0.78) 0%,
    rgba(8, 6, 7, 0.42) 36%,
    rgba(8, 6, 7, 0.08) 62%,
    rgba(8, 6, 7, 0) 100%
  );
}
.stage-panel, .hero-slides, .hero-copy {
  position: relative;
  z-index: 2;
  width: min(34rem, 44vw);
  max-height: calc(100dvh - 8.6rem);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  padding-right: 0.4rem;
}
.stage-panel h1, .hero h1 { font-size: var(--text-hero); }
.stage-panel h1 {
  font-size: clamp(1.55rem, 1.1rem + 1.35vw, 2.4rem);
  text-shadow: 0 1px 18px rgba(8, 6, 7, 0.55);
}
.stage-panel .lede, .stage-panel p, .hero p {
  text-shadow: 0 1px 14px rgba(8, 6, 7, 0.4);
}
.hero .hero-slides h1 { font-size: var(--text-hero); }
.stage-body { display: grid; gap: var(--space-md); }
.lede, .hero p, .stage-panel p { color: var(--ink-soft); }
.lede { margin: 0 0 var(--space-sm); }
.rule {
  display: block;
  width: 3.25rem;
  height: 1px;
  margin: 0 0 var(--space-md);
  background: var(--gold);
}
.section-kicker {
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-xs);
}
.hero-slide[hidden] { display: none; }
.hero-slide.is-on { display: block; }
.hero-dots {
  display: flex;
  gap: 0.45rem;
  margin-top: var(--space-lg);
}
.hero-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
}
.hero-dots button[aria-current="true"] { background: var(--gold); }

.actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: 0.15rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--gold);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-solid { background: var(--gold); color: var(--void); }
.btn-solid:hover { background: var(--ink); color: var(--void); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--gold); color: var(--void); }

.prose { display: grid; gap: 0.85rem; }
.prose p { margin: 0; color: var(--ink-soft); }
.prose p + p { margin-top: 0; }

.acc { display: grid; gap: 0; border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary {
  list-style: none;
  cursor: pointer;
  padding: 0.7rem 0;
  font-size: var(--text-sm);
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.acc details[open] summary::after { transform: rotate(225deg); }
.acc summary:hover { color: var(--gold); }
.service-list {
  display: grid;
  gap: 0.15rem;
  margin: 0 0 0.85rem;
  padding: 0 0 0.2rem;
  list-style: none;
}
.service-list a { color: var(--ink-soft); font-size: var(--text-sm); }
.service-list a:hover { color: var(--gold); }
.service-list a[aria-current="true"] { color: var(--gold); }
.salon-pick { border-top: 1px solid var(--line); margin: 0; }
.salon-pick li { border-bottom: 1px solid var(--line); padding: 0.65rem 0; }

.stage-svc {
  align-items: start;
}
.stage-svc .stage-scrim {
  background: linear-gradient(
    90deg,
    rgba(8, 6, 7, 0.82) 0%,
    rgba(8, 6, 7, 0.55) 38%,
    rgba(8, 6, 7, 0.12) 68%,
    rgba(8, 6, 7, 0) 100%
  );
}
.svc {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(14rem, 20rem) minmax(18rem, 30rem);
  gap: clamp(1.25rem, 3vw, 2.75rem);
  width: min(54rem, 76vw);
  height: calc(100dvh - 8.6rem);
  max-height: calc(100dvh - 8.6rem);
  align-self: start;
  align-items: stretch;
}
.svc-nav,
.svc-view {
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
  padding-right: 0.35rem;
}
.svc-view {
  display: grid;
  align-content: start;
  gap: var(--space-sm);
}
.svc-view h1 {
  font-size: clamp(1.45rem, 1.05rem + 1.2vw, 2.2rem);
  text-shadow: 0 1px 18px rgba(8, 6, 7, 0.55);
}
.svc-nav .section-kicker { margin-bottom: var(--space-sm); }

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 4.4rem);
  gap: 0.4rem;
  margin-top: 0.35rem;
}
.thumbs button {
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(8, 6, 7, 0.92);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 1rem;
}
.lightbox[hidden] { display: none !important; }
.lightbox img {
  max-width: min(96vw, 1400px);
  max-height: 94vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.deck-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  margin: 0.15rem 0 var(--space-md);
}
.deck-nav button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0.45;
  filter: grayscale(0.4);
  transition: opacity 0.2s ease;
}
.deck-nav button[aria-current="true"] { opacity: 1; filter: none; }
.deck-nav img { max-height: 2.4rem; width: auto; }
.deck-tabs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}
.deck-tabs button {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-family: inherit;
  font-size: var(--text-xs);
  letter-spacing: 0.04em;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
}
.deck-tabs button[aria-current="true"] {
  border-color: var(--gold);
  color: var(--gold);
}
.deck-pane[hidden] { display: none; }

.links { display: grid; gap: 0.2rem; margin: 0 0 var(--space-sm); }
.links a { font-size: var(--text-sm); }
.map { grid-column: 1 / -1; max-width: 28rem; }
.map iframe { width: 100%; height: 12.5rem; border: 0; display: block; }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 0.85rem;
  max-width: none;
}
.form .full, .form .actions { grid-column: 1 / -1; }
.form button {
  grid-column: 1 / -1;
  justify-self: start;
  width: auto;
}
.form p { grid-column: 1 / -1; margin: 0; }
label { font-size: var(--text-xs); color: var(--ink-soft); display: block; }
.check {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-sm);
  color: var(--ink);
}
.check input { width: auto; margin: 0; height: auto; }
.checks {
  display: grid;
  gap: 0.35rem;
  max-height: 7.2rem;
  overflow-y: auto;
  padding: 0.15rem 0;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
input, textarea, select {
  width: 100%;
  margin-top: 0.28rem;
  height: 2.45rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  background: rgba(8, 6, 7, 0.55);
  color: var(--ink);
  font-family: inherit;
  font-size: var(--text-sm);
  border-radius: 0;
  appearance: none;
}
textarea {
  height: 5rem;
  min-height: 5rem;
  padding: 0.55rem 0.75rem;
  resize: none;
}
.notice, .alert {
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--gold);
  color: var(--ink-soft);
  font-size: var(--text-sm);
  margin: 0;
}
.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  max-height: 18rem;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.slot {
  display: inline-flex;
  cursor: pointer;
  margin: 0;
}
.slot.is-busy { cursor: not-allowed; opacity: 0.45; }
.slot input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.slot.is-busy input { pointer-events: none; }
.slot span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 0.7rem;
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: var(--text-xs);
}
.slot.is-busy span { text-decoration: line-through; background: #ece8e2; }
.slot input:checked + span {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--void);
}

.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 12;
  border: 0;
  background: transparent;
  padding: 0 var(--pad-x) max(0.85rem, env(safe-area-inset-bottom));
  color: var(--ink-soft);
  font-size: var(--text-xs);
}
.site-footer p { margin: 0; }

body.has-nav-fill .site-header {
  background: var(--nav-fill, #080607);
}
body.has-footer-fill .site-footer {
  background: var(--footer-fill, #080607);
  padding-top: 0.75rem;
}

@media (max-width: 1200px) {
  .places { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: absolute;
    top: 100%;
    right: var(--pad-x);
    left: auto;
    min-width: 14rem;
    background: var(--void);
    border: 1px solid var(--line);
    padding: var(--space-md);
  }
  .stage-panel, .hero-slides, .hero-copy { width: min(34rem, 58vw); }
  .svc { width: min(54rem, 88vw); }
}

@media (max-width: 900px) {
  .stage-panel, .hero-slides, .hero-copy { width: 100%; max-width: none; }
  .stage, .hero { align-items: end; padding-top: 5.5rem; padding-bottom: 3.6rem; }
  .stage-photo, .hero-photo { object-position: 78% 38%; }
  .stage-scrim, .hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(8, 6, 7, 0.08) 0%,
      rgba(8, 6, 7, 0.18) 38%,
      rgba(8, 6, 7, 0.72) 100%
    );
  }
  .form { grid-template-columns: 1fr; }
  .svc {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 40%) minmax(0, 1fr);
    width: 100%;
    max-height: calc(100dvh - 8.6rem);
    gap: 0.75rem;
  }
  .stage-svc { align-items: start; }
  .stage-svc .stage-scrim {
    background: linear-gradient(
      180deg,
      rgba(8, 6, 7, 0.08) 0%,
      rgba(8, 6, 7, 0.22) 36%,
      rgba(8, 6, 7, 0.78) 100%
    );
  }
  .svc-nav {
    max-height: none;
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.45rem;
  }
  .svc-view { max-height: none; }
  .acc summary { padding: 0.55rem 0; }
}

@media (min-width: 1600px) {
  :root {
    --text-hero: clamp(2.1rem, 1.3rem + 1.6vw, 3.2rem);
    --pad-x: clamp(3rem, 6vw, 7.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
