/* ==========================================================================
   The Beauty Spot — Bathgate
   "Making you glow, from head to toe."
   Design system: editorial monochrome glam
   Palette: warm greige/nude · soft black · champagne metallic accent
   Type: Bodoni Moda (Didone display) + Jost (geometric sans)
   Committed single light theme.
   ========================================================================== */

:root {
  /* Ground + neutrals (blush nude — sampled from the logo) */
  --bg:        #f5e9df;   /* page ground — soft blush nude */
  --bg-2:      #ead5c5;   /* logo blush-nude — panels */
  --card:      #fbf5ef;   /* card */
  --paper:     #ffffff;
  --nude:      #e4cab5;
  --nude-deep: #d7b79f;

  /* Soft black + ink */
  --black:     #16130f;   /* solid black blocks */
  --ink:       #211d18;   /* body text — warm near-black */
  --muted:     #7c7167;   /* secondary */
  --faint:     #a89d90;

  /* Champagne metallic accent — used sparingly */
  --gold:      #b3946a;
  --gold-deep: #97794f;

  /* Lines + shadow */
  --line:      rgba(33, 29, 24, .14);
  --line-2:    rgba(33, 29, 24, .08);
  --shadow-sm: 0 1px 2px rgba(33,29,24,.05), 0 8px 24px rgba(33,29,24,.06);
  --shadow-md: 0 10px 34px rgba(33,29,24,.11), 0 3px 8px rgba(33,29,24,.05);

  /* Type */
  --display: "Bodoni Moda", "Didot", "Playfair Display", Georgia, serif;
  --body: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Scale (fluid) */
  --step--1: clamp(0.8rem, 0.77rem + 0.14vw, 0.88rem);
  --step-0:  clamp(1rem, 0.97rem + 0.18vw, 1.1rem);
  --step-1:  clamp(1.18rem, 1.1rem + 0.38vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.32rem + 0.85vw, 2.05rem);
  --step-3:  clamp(2rem, 1.66rem + 1.6vw, 3.05rem);
  --step-4:  clamp(2.5rem, 1.9rem + 3vw, 4.4rem);
  --step-5:  clamp(3rem, 2rem + 5.2vw, 6.2rem);

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --gutter: clamp(1.15rem, 5vw, 3.2rem);
  --radius: 3px;
  --radius-lg: 6px;
}

/* ---- Reset-ish ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  font-family: var(--body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--gold-deep); text-decoration-color: rgba(151,121,79,.4); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }
h1, h2, h3, h4 { font-family: var(--display); color: var(--black); font-weight: 500; line-height: 1.1; margin: 0; text-wrap: balance; letter-spacing: 0; }
p { margin: 0; }
ul, ol { margin: 0; }
:focus-visible { outline: 2.5px solid var(--gold-deep); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--nude-deep); color: var(--black); }

/* ---- Helpers ------------------------------------------------------------ */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--wrap-narrow); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2rem, 4vw, 3rem); }
.flow > * + * { margin-top: 1.1em; }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 200;
  background: var(--black); color: #fff; padding: .6rem 1rem;
  border-radius: var(--radius); transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* Eyebrow — editorial letter-spaced label */
.eyebrow {
  font-family: var(--body);
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  margin: 0;
}
.eyebrow::before {
  content: ""; width: 2rem; height: 1px; background: var(--gold); display: inline-block;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: ""; width: 2rem; height: 1px; background: var(--gold); display: inline-block;
}

.lede { font-size: var(--step-1); line-height: 1.55; color: var(--ink); font-weight: 300; }
.muted { color: var(--muted); }

/* ---- Buttons — squared editorial ---------------------------------------- */
.btn {
  --btn-bg: var(--black);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--body); font-weight: 500; font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .16em;
  padding: 1.05rem 2rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background .2s ease, box-shadow .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: #000; border-color: #000; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--gold { --btn-bg: var(--gold); --btn-fg: #fff; }
.btn--gold:hover { background: var(--gold-deep); border-color: var(--gold-deep); }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--black);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--black); color: #fff; border-color: var(--black); }
.btn--sm { padding: .7rem 1.3rem; }
.btn svg { width: 1.05em; height: 1.05em; }

.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; }
.btn-row--center { justify-content: center; }

/* Text link with arrow */
.arrow-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--body); font-weight: 500; font-size: var(--step--1);
  text-transform: uppercase; letter-spacing: .14em;
  text-decoration: none; color: var(--black);
  border-bottom: 1px solid var(--gold); padding-bottom: 3px;
  transition: gap .2s ease, color .2s ease, border-color .2s ease;
}
.arrow-link::after { content: "\2192"; transition: transform .2s ease; }
.arrow-link:hover { color: var(--gold-deep); }
.arrow-link:hover::after { transform: translateX(4px); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,239,232,.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 22px rgba(33,29,24,.06); }
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 80px;
}
.brand {
  display: inline-flex; flex-direction: column; align-items: flex-start; gap: 2px;
  text-decoration: none; color: var(--black); line-height: 1;
}
/* Wordmark — reproduces the "BEAUTY SPOT" logo: heavy BEAUTY + light SPOT */
.brand__name {
  font-family: var(--display); font-size: 1.5rem; line-height: 1;
  text-transform: uppercase; letter-spacing: .04em; font-weight: 300;
  color: var(--black); white-space: nowrap;
}
.brand__name b { font-weight: 700; letter-spacing: .02em; }
.brand__tag {
  display: block; font-family: var(--body); font-size: .54rem; letter-spacing: .42em;
  text-transform: uppercase; color: var(--muted); font-weight: 400; margin-top: 3px; padding-left: 2px;
}
.site-footer .brand__name { color: #fff; }
.site-footer .brand__tag { color: rgba(255,255,255,.55); }

.nav__links {
  display: flex; align-items: center; gap: clamp(.5rem, 1.5vw, 1.7rem);
  list-style: none; padding: 0; margin: 0;
}
.nav__links a {
  font-family: var(--body); font-weight: 400; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink); text-decoration: none; padding: .4rem 0;
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--black); }

.nav__cta { display: flex; align-items: center; gap: .8rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: .4rem; font-weight: 500;
  text-decoration: none; color: var(--black); font-size: .84rem; white-space: nowrap;
  letter-spacing: .06em;
}
.nav__phone svg { width: 1em; height: 1em; color: var(--gold-deep); }

.nav__toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  background: var(--card); border-radius: var(--radius); cursor: pointer;
  align-items: center; justify-content: center; color: var(--black);
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* The in-list phone belongs to the mobile dropdown only */
@media (min-width: 801px) { .nav__links .nav__phone { display: none; } }
@media (max-width: 800px) { .nav__phone--header { display: none; } }
@media (max-width: 800px) {
  .nav__toggle { display: inline-flex; }
  .nav__links {
    position: fixed; inset: 80px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform .22s ease, opacity .22s ease;
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 1rem .2rem; border-bottom: 1px solid var(--line-2); font-size: .95rem; }
  .nav__links a::after { display: none; }
  .nav__links .nav__phone { padding: 1rem .2rem; }
  .nav__cta .btn { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--bg); }
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(3rem, 7vw, 6rem);
}
.hero__content { position: relative; z-index: 2; }
.hero h1 {
  font-size: var(--step-5);
  font-weight: 500;
  margin-top: 1.4rem;
  line-height: 1;
}
.hero h1 em { font-style: italic; }
.hero__lede { margin-top: 1.6rem; max-width: 42ch; }
.hero__actions { margin-top: 2.2rem; }
.hero__meta {
  margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.6rem; align-items: center;
}
.hero__meta div { display: flex; flex-direction: column; gap: .15rem; }
.hero__meta dt { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .2em; color: var(--muted); font-weight: 500; }
.hero__meta dd { margin: 0; font-family: var(--display); font-size: 1.15rem; color: var(--black); }

/* Rating chip */
.rating-chip {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  padding: .5rem .95rem; font-size: var(--step--1); color: var(--ink);
}
.rating-chip .stars { color: var(--gold); letter-spacing: .1em; }
.rating-chip b { color: var(--black); font-weight: 600; }

/* Hero visual — editorial monochrome panel */
.hero__visual { position: relative; z-index: 1; }
.hero__card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow-md);
  background:
    linear-gradient(155deg, #2a251f 0%, var(--black) 60%, #000 100%);
  display: grid; place-items: center;
  border: 1px solid var(--line);
}
.hero__card::after {
  content: ""; position: absolute; inset: 14px; border: 1px solid rgba(179,148,106,.5);
  border-radius: 3px; pointer-events: none;
}
.hero__card svg { width: 72%; height: auto; }
.hero__badge {
  position: absolute; z-index: 3; bottom: -18px; left: -18px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: .9rem 1.3rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .8rem;
  font-family: var(--display); color: var(--black); font-size: 1.05rem;
}
.hero__badge .num { font-size: 1.7rem; color: var(--gold-deep); line-height: 1; }
.hero__badge small { display:block; font-family: var(--body); font-size: .68rem; letter-spacing:.14em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 800px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__visual { order: -1; max-width: 420px; }
  .hero__badge { bottom: -14px; left: auto; right: -6px; }
}

/* ==========================================================================
   Marquee / brand strip
   ========================================================================== */
.logostrip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.2rem, 4vw, 3rem); list-style: none; padding: 0; margin: 0;
}
.logostrip li {
  font-family: var(--display); font-size: clamp(1rem, 2vw, 1.35rem); font-style: italic;
  color: var(--ink); letter-spacing: .02em; opacity: .85;
}
.logostrip li::first-letter { color: var(--gold-deep); }

/* ==========================================================================
   Section headers
   ========================================================================== */
.section-head { max-width: 640px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: var(--step-3); margin-top: 1rem; }
.section-head p { margin-top: 1.1rem; color: var(--muted); font-size: var(--step-1); line-height: 1.55; font-weight: 300; }

/* ==========================================================================
   Cards / grids
   ========================================================================== */
.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.6rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.1rem);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--nude-deep); }
.card__icon {
  width: 46px; height: 46px; display: grid; place-items: center;
  color: var(--gold-deep); margin-bottom: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: var(--step-1); }
.card p { margin-top: .6rem; color: var(--muted); font-size: var(--step-0); font-weight: 300; }
.card__link { margin-top: 1.2rem; }
.service-card { position: relative; display: flex; flex-direction: column; }
.service-card p { flex: 1; }

/* Signature feature card (dark) */
.signature {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.4rem);
}
@media (max-width: 720px) { .signature { grid-template-columns: 1fr; } }
.sig-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  background: var(--black); color: #efe7db; padding: clamp(1.8rem, 3.5vw, 2.6rem);
  min-height: 260px; display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--black);
}
.sig-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 85% 0%, rgba(179,148,106,.28), transparent 55%);
}
.sig-card > * { position: relative; z-index: 1; }
.sig-card .tag { font-family: var(--body); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .24em; color: var(--gold); }
.sig-card h3 { color: #fff; font-size: var(--step-2); margin-top: .6rem; }
.sig-card p { color: rgba(255,255,255,.78); margin-top: .7rem; font-weight: 300; }
.sig-card .arrow-link { color: #fff; border-color: var(--gold); margin-top: 1.3rem; align-self: flex-start; }
.sig-card .arrow-link:hover { color: var(--gold); }

/* ==========================================================================
   Treatment menu (editorial list)
   ========================================================================== */
.menu-group { margin-top: clamp(2rem, 4vw, 3.2rem); }
.menu-group__head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--black); flex-wrap: wrap;
}
.menu-group__head h3 { font-size: var(--step-2); }
.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: .3rem 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line);
}
.menu-item__name { font-family: var(--display); font-size: var(--step-1); color: var(--black); }
.menu-item__price {
  font-family: var(--body); font-size: var(--step-0); color: var(--gold-deep); white-space: nowrap;
  font-variant-numeric: tabular-nums; font-weight: 500; letter-spacing: .04em;
  text-transform: uppercase;
}
.menu-item__desc { grid-column: 1 / -1; color: var(--muted); font-size: var(--step--1); margin-top: .3rem; max-width: 64ch; font-weight: 300; }

/* ==========================================================================
   Split / feature band
   ========================================================================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 2.4rem; }
  .split--reverse .split__media { order: 0; }
}
.split__media {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5 / 6;
  background: linear-gradient(160deg, var(--bg-2), var(--nude) 120%);
  display: grid; place-items: center; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  position: relative;
}
.split__media::after { content: ""; position: absolute; inset: 12px; border: 1px solid var(--gold); opacity: .45; border-radius: 3px; }
.split__media svg { width: 58%; color: var(--gold-deep); opacity: .8; }
.split__media.is-photo { aspect-ratio: 5 / 6; }

/* Band — soft black */
.band { background: var(--black); color: #e8ddce; }
.band h2, .band h3 { color: #fff; }
.band .eyebrow { color: var(--gold); }
.band .eyebrow::before, .band .eyebrow::after { background: var(--gold); }
.band p { color: rgba(255,255,255,.8); }
.band a:not(.btn) { color: #fff; }
.band .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.5); }
.band .btn--ghost:hover { background: #fff; color: var(--black); border-color: #fff; }
.band .split__media { background: linear-gradient(160deg, #2a251f, #16130f); }
.band .split__media svg { color: var(--gold); opacity: .85; }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.7rem, 1.6vw, 1rem); }
@media (max-width: 720px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery__item {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; border: 1px solid var(--line);
  background: linear-gradient(155deg, var(--bg-2), var(--nude));
  display: grid; place-items: center; color: var(--gold-deep);
}
.gallery__item svg { width: 40%; opacity: .5; }
.gallery__note {
  position: absolute; inset: auto 0 0 0; padding: .6rem .8rem;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); text-align: center; background: rgba(250,246,240,.75);
}

/* ==========================================================================
   Reviews / testimonials
   ========================================================================== */
.rating-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 5vw, 4rem); text-align: center;
}
.rating-banner .stat { display: flex; flex-direction: column; gap: .2rem; }
.rating-banner .stat b { font-family: var(--display); font-size: var(--step-3); color: var(--black); line-height: 1; }
.rating-banner .stat span { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .16em; color: var(--muted); }
.rating-banner .stars { color: var(--gold); font-size: 1.3rem; letter-spacing: .15em; }

.quote-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem); position: relative;
}
.quote-card__stars { color: var(--gold); letter-spacing: .15em; font-size: 1.05rem; }
.quote-card blockquote {
  margin: .9rem 0 0; font-family: var(--display); font-size: var(--step-1);
  line-height: 1.45; color: var(--black); font-style: italic;
}
.quote-card figcaption { margin-top: 1.2rem; font-weight: 500; color: var(--gold-deep); font-size: var(--step--1); letter-spacing: .1em; text-transform: uppercase; }
.quote-card figcaption span { display: block; font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; font-family: var(--body); margin-top: .2rem; }

.notice {
  border: 1px solid var(--line); border-left: 3px solid var(--gold);
  background: var(--card);
  border-radius: var(--radius); padding: 1.2rem 1.4rem; color: var(--ink);
  font-size: var(--step--1); font-weight: 300;
}
.notice strong { color: var(--black); font-weight: 600; }

/* ==========================================================================
   Info / contact
   ========================================================================== */
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }

.detail-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.4rem; }
.detail-list li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.detail-list .detail__icon {
  width: 46px; height: 46px; border-radius: var(--radius); border: 1px solid var(--line); color: var(--gold-deep);
  display: grid; place-items: center; flex: none;
}
.detail-list .detail__icon svg { width: 22px; height: 22px; }
.detail__k { font-size: var(--step--1); text-transform: uppercase; letter-spacing: .18em; color: var(--muted); font-weight: 500; }
.detail-list a { color: var(--black); font-weight: 500; text-decoration: none; font-size: var(--step-1); font-family: var(--display); }
.detail-list a:hover { color: var(--gold-deep); }
.detail__v { font-family: var(--display); color: var(--black); font-size: var(--step-1); }

/* Hours table */
.hours { width: 100%; border-collapse: collapse; font-size: var(--step-0); }
.hours caption { text-align: left; font-family: var(--display); font-size: var(--step-2); color: var(--black); margin-bottom: 1rem; }
.hours th, .hours td { text-align: left; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 400; color: var(--ink); font-family: var(--body); letter-spacing: .04em; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--black); font-weight: 500; }
.hours tr.is-today th, .hours tr.is-today td { color: var(--gold-deep); }
.hours tr.is-today th::after {
  content: "Today"; margin-left: .6rem; font-size: .6rem; letter-spacing: .16em;
  text-transform: uppercase; background: var(--gold); color: #fff; padding: .14rem .55rem;
  border-radius: 999px; vertical-align: middle;
}
.hours td.closed { color: var(--faint); font-weight: 400; }

/* Map */
.map-frame {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); background: var(--bg-2);
}
.map-frame iframe { width: 100%; height: 360px; border: 0; display: block; filter: grayscale(.25); }

/* ==========================================================================
   Form
   ========================================================================== */
.form { display: grid; gap: 1.2rem; }
.form__row { display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: grid; gap: .45rem; }
.field label { font-weight: 500; font-size: var(--step--1); color: var(--black); letter-spacing: .08em; text-transform: uppercase; }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: var(--step-0); color: var(--ink);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .85rem .9rem; width: 100%; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(179,148,106,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.form__note { font-size: var(--step--1); color: var(--muted); font-weight: 300; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.3rem 2.5rem 1.3rem 0; position: relative;
  font-family: var(--display); font-size: var(--step-1); color: var(--black);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--gold-deep); line-height: 1; transition: transform .2s ease;
}
.faq details[open] summary::after { content: "\2013"; }
.faq details > p { padding: 0 0 1.4rem; color: var(--muted); max-width: 64ch; font-weight: 300; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { counter-reset: step; display: grid; gap: 1.6rem; }
.steps li { list-style: none; display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start; }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--display); font-size: 1.05rem; color: var(--gold-deep); border: 1px solid var(--line);
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; flex: none;
}
.steps h3 { font-size: var(--step-1); }
.steps p { color: var(--muted); margin-top: .3rem; font-weight: 300; }
.band .steps li::before { color: var(--gold); border-color: rgba(255,255,255,.3); }
.band .steps p { color: rgba(255,255,255,.75); }

/* ==========================================================================
   Pills
   ========================================================================== */
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill {
  font-size: var(--step--1); font-weight: 400; padding: .45rem 1rem; border-radius: 999px;
  background: transparent; color: var(--ink); border: 1px solid var(--line);
  letter-spacing: .04em;
}

/* ==========================================================================
   CTA final band
   ========================================================================== */
.cta-final { text-align: center; }
.cta-final h2 { font-size: var(--step-4); }
.cta-final p { margin-top: 1.1rem; font-size: var(--step-1); font-weight: 300; }
.cta-final .btn-row { margin-top: 2.2rem; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--black); color: rgba(255,255,255,.72); padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 3rem); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand__name { color: #fff; }
.site-footer .brand__mark { color: #fff; }
.footer-about { max-width: 34ch; margin-top: 1.2rem; font-size: var(--step--1); color: rgba(255,255,255,.62); line-height: 1.7; font-weight: 300; }
.footer-col h4 { color: #fff; font-family: var(--body); font-size: var(--step--1); text-transform: uppercase; letter-spacing: .2em; font-weight: 500; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }
.footer-col a { color: rgba(255,255,255,.72); text-decoration: none; font-size: var(--step-0); font-weight: 300; }
.footer-col a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-hours { display: grid; gap: .5rem; font-size: var(--step--1); font-weight: 300; }
.footer-hours div { display: flex; justify-content: space-between; gap: 1rem; }
.footer-hours span:last-child { color: rgba(255,255,255,.55); font-variant-numeric: tabular-nums; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.4rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.24);
  display: grid; place-items: center; color: #fff; transition: background .2s ease, border-color .2s ease;
}
.footer-social a:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; justify-content: space-between; align-items: center;
  font-size: var(--step--1); color: rgba(255,255,255,.55); font-weight: 300;
}
.footer-bottom a { color: rgba(255,255,255,.68); }

/* ==========================================================================
   Interior page hero + breadcrumb
   ========================================================================== */
.page-hero { background: linear-gradient(180deg, var(--bg-2), var(--bg)); padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: var(--step-4); margin-top: 1.1rem; }
.page-hero p { margin-top: 1.1rem; max-width: 58ch; color: var(--muted); font-size: var(--step-1); font-weight: 300; }
.breadcrumb { display: flex; gap: .5rem; font-size: var(--step--1); color: var(--muted); list-style: none; padding: 0; margin: 0 0 .4rem; flex-wrap: wrap; text-transform: uppercase; letter-spacing: .12em; }
.breadcrumb a { color: var(--gold-deep); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li::after { content: "/"; margin-left: .5rem; color: var(--faint); }
.breadcrumb li:last-child::after { content: ""; }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Prose */
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2.5rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8rem; }
.prose p, .prose li { color: var(--ink); font-weight: 300; }
.prose ul, .prose ol { padding-left: 1.3rem; display: grid; gap: .5rem; }
.prose li::marker { color: var(--gold); }
.prose blockquote {
  border-left: 2px solid var(--gold); margin: 1.6rem 0; padding: .3rem 0 .3rem 1.4rem;
  font-family: var(--display); font-style: italic; color: var(--black); font-size: var(--step-1);
}

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
