:root {
  --ink: #0b0b0c; --ink-2: #131316; --ink-3: #1c1c21;
  --gold: #c8a45c; --gold-soft: #e0c690;
  --bone: #f2efe9; --bone-dim: #a7a29a; --danger: #d9534f;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1120px;
  --s1: .5rem; --s2: 1rem; --s3: 1.5rem; --s4: 2.5rem; --s5: 4rem; --s6: 6rem;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--ink); color: var(--bone);
  font-family: var(--font-ui); font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.75rem, 8vw, 5.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--s3); }
section { padding: var(--s6) 0; }

/* The mark is a monochrome alpha mask, coloured here — one file, any colour. */
.logo, .crown {
  background: var(--gold);
  -webkit-mask: center / contain no-repeat;
  mask: center / contain no-repeat;
}
.logo { -webkit-mask-image: url(assets/logo-mask.png); mask-image: url(assets/logo-mask.png); }
.crown { -webkit-mask-image: url(assets/crown-mask.png); mask-image: url(assets/crown-mask.png); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.skip:not(:focus) { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---- Self-hosted fonts (no Google Fonts CDN request at runtime) ---- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/cormorant-garamond-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-600.woff2') format('woff2');
}

/* ---- Global page behaviour ---- */
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
main { display: block; }

/* ---- Skip link (visible only on keyboard focus) ---- */
.skip {
  position: fixed;
  top: var(--s1);
  left: var(--s1);
  z-index: 1000;
  background: var(--gold);
  color: var(--ink);
  padding: var(--s1) var(--s2);
  border-radius: 2px;
  text-decoration: none;
  font-weight: 600;
}

/* ---- Header / nav / hamburger ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--ink-3);
}
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s2) 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s1);
  color: var(--bone);
  text-decoration: none;
}
.brand .logo {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}
.brand .wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: .01em;
  white-space: nowrap;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: 1px solid var(--ink-3);
  border-radius: 2px;
  cursor: pointer;
}
.hamburger-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--bone);
  transition: transform .2s ease, opacity .2s ease;
}
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav {
  display: flex;
  align-items: center;
  gap: var(--s4);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: var(--s3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: var(--bone);
  text-decoration: none;
  font-size: .95rem;
}
.nav-list a:hover { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.lang-select {
  background: var(--ink-2);
  color: var(--bone);
  border: 1px solid var(--ink-3);
  border-radius: 2px;
  padding: .35rem .5rem;
  font-family: var(--font-ui);
  font-size: .85rem;
}
.nav-actions .btn {
  padding: .5rem var(--s2);
  font-size: .9rem;
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s3);
    background: var(--ink-2);
    border-bottom: 1px solid var(--ink-3);
    padding: var(--s3);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height .25s ease, opacity .2s ease;
  }
  .nav.is-open {
    max-height: 32rem;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s2);
    width: 100%;
  }
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--s2);
    width: 100%;
  }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: var(--s1) var(--s3);
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--bone-dim);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--s6) 0;
  background: var(--ink);
}
/* Full-bleed portfolio photo behind the copy: dimmed to 25% opacity and
   cross-faded bottom-to-top into --ink so the CTAs at the bottom of the
   stack never lose contrast, however the photo's own tones fall. */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ink) 15%, transparent 90%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 46rem;
}
.hero-logo {
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: var(--s3);
}
.eyebrow {
  margin: 0 0 var(--s2);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .85rem;
}
.hero-sub {
  margin: var(--s3) 0 0;
  color: var(--bone-dim);
  font-size: 1.15rem;
  max-width: 34rem;
}
.hero-rating-row {
  display: flex;
  align-items: baseline;
  gap: var(--s1);
  margin: var(--s2) 0 0;
}
.hero-stars {
  color: var(--gold);
  letter-spacing: .1em;
  font-size: .95rem;
}
.hero-rating {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 600;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s4);
}

/* ---- Services ---- */
.services-note {
  margin: var(--s2) 0 0;
  color: var(--bone-dim);
  font-size: .9rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: var(--s3);
  margin-top: var(--s4);
}
.service-card {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding: var(--s3);
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 4px;
}
.service-card h3 {
  font-size: 1.35rem;
}
.service-desc {
  margin: 0;
  color: var(--bone-dim);
  font-size: .95rem;
  flex: 1;
}
.service-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s2);
}
.service-price {
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 1.1rem;
}
.service-price em {
  color: var(--bone-dim);
  font-style: normal;
  font-weight: 400;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: .2rem;
}
.service-dur {
  color: var(--bone-dim);
  font-size: .85rem;
  white-space: nowrap;
}
.service-card .btn {
  align-self: flex-start;
  margin-top: var(--s1);
}
/* VIP is by-approval-only: a gold accent sets it apart, and its own CTA
   (wired in services.js) opens Instagram instead of the booking wizard. */
.service-card--vip {
  border-color: var(--gold);
  box-shadow: inset 0 2px 0 var(--gold);
}

/* ---- Work / portfolio ---- */
.work-sub {
  margin: var(--s2) 0 0;
  color: var(--bone-dim);
  font-size: 1.05rem;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--s2);
  margin-top: var(--s4);
}
/* Square tiles regardless of a given photo's native dimensions: aspect-ratio
   plus object-fit: cover on the <img> means the box never depends on the
   image having loaded, so the grid can't shift as photos arrive. */
.shot {
  display: block;
  padding: 0;
  border: 1px solid var(--ink-3);
  border-radius: 2px;
  background: var(--ink-2);
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .15s ease, outline-color .15s ease;
}
.shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shot:hover,
.shot:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}
.work-more {
  display: block;
  margin: var(--s4) auto 0;
}
.work-more[hidden] { display: none; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  max-width: min(90vw, 60rem);
  max-height: 90vh;
  margin: auto;
  padding: var(--s3);
  background: var(--ink-2);
  color: var(--bone);
  border: 1px solid var(--ink-3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox:not([open]) { display: none; }
.lightbox::backdrop {
  background: var(--ink);
  opacity: .9;
}
#lightbox-img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - var(--s6));
  object-fit: contain;
  border-radius: 2px;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: var(--ink-2);
  color: var(--bone);
  border: 1px solid var(--ink-3);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color .15s ease, color .15s ease;
}
.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.lightbox-close {
  top: var(--s2);
  right: var(--s2);
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-prev { left: var(--s2); }
.lightbox-next { right: var(--s2); }

@media (max-width: 640px) {
  .lightbox { max-width: 100vw; max-height: 100vh; border-radius: 0; padding: var(--s2); }
  .lightbox-close, .lightbox-nav { width: 2.25rem; height: 2.25rem; font-size: 1.25rem; }
}

/* ---- About / amenities ---- */
.about-body {
  margin: var(--s3) 0 0;
  max-width: 42rem;
  color: var(--bone-dim);
  font-size: 1.05rem;
}
.about-amenities-title {
  margin: var(--s4) 0 0;
  font-size: 1.3rem;
}
.amenity-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: var(--s1) var(--s3);
  margin: var(--s2) 0 0;
  padding: 0;
  list-style: none;
}
.amenity-list li {
  padding: var(--s1) 0;
  border-bottom: 1px solid var(--ink-3);
  color: var(--bone-dim);
  font-size: .95rem;
}

/* ---- Reviews ---- */
.reviews-summary {
  margin: var(--s3) 0 0;
  color: var(--gold-soft);
  font-weight: 600;
  font-size: 1.2rem;
}
.reviews-source {
  margin: var(--s1) 0 0;
  color: var(--bone-dim);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: var(--s3);
  margin: var(--s4) 0 0;
  padding: 0;
  list-style: none;
}
.review {
  padding: var(--s3);
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 4px;
}
.review-text {
  margin: 0;
  color: var(--bone);
  font-size: 1rem;
  line-height: 1.5;
}
.review-text::before { content: '“'; }
.review-text::after { content: '”'; }
.review-name {
  margin: var(--s2) 0 0;
  color: var(--gold-soft);
  font-size: .85rem;
  font-weight: 600;
}

/* ---- Visit: hours, address, map ---- */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: var(--s5);
  margin-top: var(--s4);
}
.visit-hours h3,
.visit-location h3 {
  font-size: 1.3rem;
  margin-bottom: var(--s2);
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid var(--ink-3);
}
.hours-table th,
.hours-table td {
  padding: var(--s1) 0;
  text-align: left;
  font-weight: 400;
  color: var(--bone-dim);
  font-size: .95rem;
}
.hours-table th {
  color: var(--bone);
  font-weight: 600;
}
.hours-table td {
  text-align: right;
}
/* Today's row gets picked out in gold so a walk-in can find it at a glance. */
.hours-table tr.is-today th,
.hours-table tr.is-today td {
  color: var(--gold-soft);
  font-weight: 600;
}
.vip-note {
  margin: var(--s2) 0 0;
  color: var(--bone-dim);
  font-size: .85rem;
  font-style: italic;
}
.address {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin: 0 0 var(--s2);
  color: var(--bone-dim);
  font-size: .95rem;
}
.directions-link {
  display: inline-block;
  margin-bottom: var(--s3);
}
.map {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--ink-3);
  border-radius: 4px;
  overflow: hidden;
}
.map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Visual separation between the shell's section shells. */
main > section + section { border-top: 1px solid var(--ink-3); }

/* ---- Booking wizard ---- */
.book-steps {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s3);
  margin: var(--s3) 0 0;
  padding: 0;
  list-style: none;
}
.book-step {
  color: var(--bone-dim);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding-bottom: var(--s1);
  border-bottom: 2px solid transparent;
}
.book-step.is-done { color: var(--bone); }
.book-step.is-current {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.book-panel {
  margin-top: var(--s4);
  max-width: 40rem;
}
.book-step-panel h3 {
  font-size: 1.3rem;
  margin-bottom: var(--s3);
}
.book-nav {
  display: flex;
  gap: var(--s2);
  margin-top: var(--s4);
}

/* Step 1: service radiogroup */
.service-radiogroup {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
.service-radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding: var(--s2) var(--s3);
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color .15s ease;
}
.service-radio:hover { border-color: var(--gold-soft); }
.service-radio.is-selected {
  border-color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.service-radio-name { color: var(--bone); font-weight: 600; }
.service-radio-meta {
  display: flex;
  align-items: baseline;
  gap: var(--s2);
  flex: 0 0 auto;
}
.service-radio-price { color: var(--gold-soft); font-weight: 600; }
.service-radio-dur { color: var(--bone-dim); font-size: .85rem; white-space: nowrap; }

/* Step 2: date list */
.date-list { display: flex; flex-direction: column; gap: var(--s2); }
.date-month {
  margin: var(--s3) 0 0;
  color: var(--bone-dim);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.date-month-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(2.75rem, 1fr));
  gap: var(--s1);
}
.date-btn {
  padding: var(--s1) 0;
  background: var(--ink-2);
  color: var(--bone);
  border: 1px solid var(--ink-3);
  border-radius: 2px;
  cursor: pointer;
}
.date-btn:hover { border-color: var(--gold-soft); }
.date-btn.is-selected {
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}
.date-btn.is-disabled,
.date-btn:disabled {
  color: var(--bone-dim);
  border-color: var(--ink-3);
  background: transparent;
  cursor: not-allowed;
  opacity: .5;
}

/* Step 3: time slots */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5rem, 1fr));
  gap: var(--s1);
}
.slot-btn {
  padding: var(--s1) var(--s2);
  background: var(--ink-2);
  color: var(--bone);
  border: 1px solid var(--ink-3);
  border-radius: 2px;
  cursor: pointer;
}
.slot-btn:hover { border-color: var(--gold-soft); }
.slot-btn.is-selected {
  border-color: var(--gold);
  color: var(--gold);
  font-weight: 600;
}
.book-status { color: var(--bone-dim); }
.book-note {
  margin: var(--s2) 0 0;
  color: var(--bone-dim);
  font-size: .9rem;
}

/* Step 4: form, summary, notices */
.book-summary {
  color: var(--gold-soft);
  font-weight: 600;
  margin: 0 0 var(--s3);
}
.book-mock-notice {
  padding: var(--s2) var(--s3);
  margin: 0 0 var(--s3);
  background: var(--ink-2);
  border: 1px solid var(--gold);
  border-radius: 4px;
  color: var(--gold-soft);
  font-size: .9rem;
}
.book-error-banner {
  padding: var(--s2) var(--s3);
  margin: 0 0 var(--s3);
  background: var(--ink-2);
  border: 1px solid var(--danger);
  border-radius: 4px;
  color: var(--danger);
  font-size: .9rem;
}
.book-form {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.book-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.book-field label {
  color: var(--bone);
  font-size: .9rem;
  font-weight: 600;
}
.book-field input,
.book-field textarea {
  padding: var(--s1) var(--s2);
  background: var(--ink-2);
  color: var(--bone);
  border: 1px solid var(--ink-3);
  border-radius: 2px;
  font-family: var(--font-ui);
  font-size: 1rem;
}
.book-field input:focus-visible,
.book-field textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}
.book-field input[aria-invalid="true"],
.book-field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}
.book-field-error {
  margin: 0;
  color: var(--danger);
  font-size: .85rem;
}
.book-field-error[hidden] { display: none; }

/* ---- Footer ---- */
.site-footer {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-3);
  padding: var(--s5) 0 var(--s4);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.footer-brand .logo {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
}
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
}
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s1);
}
.footer-follow {
  margin: 0;
  color: var(--bone-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.social-list {
  display: flex;
  gap: var(--s3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.social-list a {
  color: var(--bone);
  text-decoration: none;
  font-size: .9rem;
  border-bottom: 1px solid transparent;
}
.social-list a:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-copyright {
  margin: 0;
  padding-top: var(--s3);
  border-top: 1px solid var(--ink-3);
  color: var(--bone-dim);
  font-size: .8rem;
  text-align: center;
}
