/* Black Velvet homepage concept v2.1
   Palette taken from the salon itself: black shopfront, gold lettering,
   gilt mirrors, cream reception, a pink neon room.
   v2: Fraunces replaces Bodoni Moda for sturdier strokes; larger, higher-contrast body text. */

:root {
  --velvet: #0e0b0c;
  --velvet-2: #161112;
  --velvet-3: #201819;
  --gilt: #c8a25a;
  --gilt-hi: #e6cc8f;
  --gilt-ink: #7a5d28;          /* gilt that passes AA as small text on cream */
  --cream: #f4eee5;
  --cream-2: #e9e0d2;
  --ink: #1b1516;
  --ink-soft: #4d423f;
  --blush: #e8b4b8;
  --on-dark: #efe7dc;
  --on-dark-soft: #cfc4b9;
  --line-dark: rgba(200, 162, 90, 0.22);
  --line-light: rgba(27, 21, 22, 0.14);

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  /* spacing scale */
  --s-1: 0.25rem;
  --s0: 0.5rem;
  --s1: 1rem;
  --s2: 1.5rem;
  --s3: 2rem;
  --s4: 3rem;
  --s5: 4.5rem;
  --s6: 7rem;

  --wrap: 1240px;
  --gutter: 16px;
  --header-h: 64px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (min-width: 768px) { :root { --gutter: 32px; --header-h: 76px; } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--velvet);
  color: var(--on-dark);
  font-family: var(--f-body);
  font-size: 1.125rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; }
p { margin: 0 0 var(--s1); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; }
em { font-style: italic; }
address { font-style: normal; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.vh { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }

.skip { position: absolute; left: var(--s1); top: -100px; z-index: 100; background: var(--gilt); color: var(--velvet); padding: var(--s0) var(--s1); }
.skip:focus { top: var(--s1); }

:focus-visible { outline: 2px solid var(--gilt-hi); outline-offset: 3px; }

/* ---------- type ---------- */
h1, h2, .wordmark, .svc h3, .specialisms li, .ig-handle, .sign-words,
.tile-label, .fact-k, .before-title, .before-list .num, .svc-price, .visit address,
.member-name, .member-photo::before {
  font-family: var(--f-display);
  font-optical-sizing: auto;
  /* soft terminals, no wonky glyphs: warm but calm */
  font-variation-settings: "SOFT" 50, "WONK" 0;
}

h1 {
  font-size: clamp(2.9rem, 10vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
}
h1 em { color: var(--gilt); font-weight: 400; }

h2 {
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-weight: 400;
}
h2 em { font-weight: 400; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gilt);
  margin-bottom: var(--s2);
}
.eyebrow-ink { color: var(--gilt-ink); }

.lede { font-size: clamp(1.125rem, 1.7vw, 1.3125rem); color: var(--on-dark); max-width: 38ch; }
.fine { font-size: 0.9375rem; color: var(--on-dark-soft); max-width: 44ch; }

/* Google rating: count always visible, no review text */
.rating { margin: var(--s2) 0 0; }
.rating a {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 0.2em 0.6em; min-height: 44px;
  font-size: 0.9375rem; text-decoration: none; color: var(--on-dark);
}
.rating .stars { color: var(--gilt); letter-spacing: 0.14em; font-size: 1rem; }
.rating strong { font-weight: 600; }
.rating a:hover span:not(.stars) { text-decoration: underline; text-underline-offset: 3px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 var(--s2);
  font-family: var(--f-body); font-size: 0.9375rem; font-weight: 600; letter-spacing: 0.02em;
  text-decoration: none; border-radius: 999px; border: 1px solid transparent;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-sm { min-height: 44px; padding: 0 var(--s1); font-size: 0.875rem; }
.btn-gilt { background: var(--gilt); color: var(--velvet); }
.btn-gilt:hover { background: var(--gilt-hi); }
.btn-ghost { border-color: var(--line-dark); color: var(--on-dark); }
.btn-ghost:hover { border-color: var(--gilt); color: var(--gilt-hi); }

.btn-text {
  display: inline-flex; align-items: center; min-height: 44px;
  font-weight: 600; font-size: 0.9375rem; text-decoration: none;
  border-bottom: 1px solid var(--line-dark); color: var(--on-dark);
}
.btn-text:hover { color: var(--gilt-hi); border-color: var(--gilt); }
.btn-text-ink { color: var(--ink); border-color: var(--line-light); }
.btn-text-ink:hover { color: var(--gilt-ink); border-color: var(--gilt-ink); }

.cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s1) var(--s2); margin: var(--s3) 0 var(--s1); }

/* ---------- concept label (always on) + notes tools (?notes only) ---------- */
.concept-strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s0) var(--s1);
  padding: 7px var(--gutter);
  background: var(--velvet-2); color: var(--on-dark-soft);
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.8125rem; line-height: 1.4; letter-spacing: 0.02em; text-align: center;
}
.concept-strip p { margin: 0; }
.concept-actions { display: none; gap: var(--s0); flex-wrap: wrap; }
body.notes-mode .concept-strip { justify-content: space-between; background: var(--blush); color: var(--ink); }
body.notes-mode .concept-actions { display: flex; }
.concept-btn {
  font: 600 0.75rem/1 var(--f-body); letter-spacing: 0.04em;
  min-height: 44px; padding: 0 14px; border-radius: 999px;
  background: transparent; color: inherit; border: 1px solid rgba(27,21,22,.35); cursor: pointer;
}
.concept-btn:hover { background: rgba(27,21,22,.08); }
@media (max-width: 480px) { .concept-by { display: none; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  height: var(--header-h);
  background: rgba(14, 11, 12, 0.72);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.scrolled { border-color: var(--line-dark); background: rgba(14, 11, 12, 0.9); }
.header-inner {
  height: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; gap: var(--s1);
}

.wordmark {
  display: inline-flex; align-items: baseline; gap: 0.35em;
  text-decoration: none; color: var(--on-dark); line-height: 1; margin: 0;
}
.wm-black {
  font-family: var(--f-display); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase;
}
.wm-velvet { font-family: var(--f-display); font-style: italic; font-size: 1.6rem; color: var(--gilt); }
.wordmark-lg .wm-black { font-size: 1rem; }
.wordmark-lg .wm-velvet { font-size: 2.4rem; }

.header-inner .wordmark { padding-block: 9px; }
/* real logo, supplied by the salon via Ste; proportions untouched */
.brand { display: inline-flex; align-items: center; min-height: 44px; flex-shrink: 0; }
.logo { display: block; height: 38px; width: auto; }
@media (min-width: 768px) { .logo { height: 50px; } }
.footer-logo { margin: 0; }
.footer-logo .logo-lg { height: auto; width: min(300px, 78vw); }
.sign-logo { display: block; }
.sign-logo img { display: block; width: 86%; max-width: 300px; height: auto; margin: var(--s2) auto 0; }
.nav { margin-left: auto; position: relative; }
.nav ul { display: none; }
.nav-toggle {
  min-height: 44px; padding: 0 var(--s1);
  background: none; border: 1px solid var(--line-dark); border-radius: 999px;
  color: var(--on-dark); font: 600 0.875rem var(--f-body); cursor: pointer;
}
.nav.open ul {
  display: block; position: absolute; right: 0; top: calc(100% + 10px);
  min-width: 220px; padding: var(--s0);
  background: var(--velvet-2); border: 1px solid var(--line-dark); border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}
.nav.open a { display: flex; align-items: center; min-height: 48px; padding: 0 var(--s1); text-decoration: none; border-radius: 12px; }
.nav.open a:hover { background: var(--velvet-3); color: var(--gilt-hi); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav ul, .nav.open ul {
    display: flex; gap: var(--s2); position: static; padding: 0; background: none; border: 0; box-shadow: none; min-width: 0;
  }
  .nav a, .nav.open a {
    display: inline-flex; align-items: center; min-height: 44px; padding: 0;
    font-size: 0.9375rem; text-decoration: none; color: var(--on-dark-soft); border-radius: 0;
    transition: color .2s var(--ease);
  }
  .nav a:hover, .nav.open a:hover { color: var(--gilt-hi); background: none; }
  .site-header .btn-sm { margin-left: var(--s2); }
}

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  padding: var(--s4) 0 var(--s5);
  background:
    radial-gradient(90% 70% at 78% 18%, #2b1f21 0%, rgba(43,31,33,0) 60%),
    radial-gradient(60% 50% at 10% 100%, #1d1516 0%, rgba(29,21,22,0) 70%),
    var(--velvet);
}
/* the "velvet": a slow sheen drifting across fine pile */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(112deg, transparent 38%, rgba(230,204,143,0.07) 50%, transparent 62%);
  background-size: 260% 100%;
  animation: sheen 16s ease-in-out infinite alternate;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.16; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .55 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@keyframes sheen { from { background-position: 100% 0; } to { background-position: 0% 0; } }

.hero-grid { display: grid; gap: var(--s4); align-items: center; }
.hero-copy h1 { margin-bottom: var(--s2); }
.hero-media { margin: 0; justify-self: center; width: min(100%, 420px); }

@media (min-width: 960px) {
  .hero { padding: var(--s5) 0 var(--s6); }
  .hero-grid { grid-template-columns: 7fr 5fr; gap: var(--s5); }
  .hero-media { justify-self: end; width: 100%; max-width: 440px; }
}

/* arch frames, after the rounded mirrors at the stations */
.arch-frame {
  position: relative; padding: 10px;
  border: 1px solid var(--gilt);
  border-radius: 999px 999px 6px 6px;
}
.arch-frame::after {
  content: ""; position: absolute; inset: -7px; pointer-events: none;
  border: 1px solid var(--line-dark);
  border-radius: 999px 999px 10px 10px;
}
.arch {
  aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: 999px 999px 2px 2px;
  background: var(--velvet-3);
}
.arch img { width: 100%; height: 100%; object-fit: cover; }

.media-tag {
  margin-top: var(--s1); text-align: center;
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--on-dark-soft);
}
.media-tag-ink { color: var(--ink-soft); }

/* image slot states, set by main.js */
.arch, .tile-img, .sign-img { position: relative; }
.temp-badge {
  position: absolute; left: 10px; bottom: 10px; z-index: 2;
  padding: 3px 9px; border-radius: 999px;
  background: rgba(14, 11, 12, 0.8); color: var(--on-dark);
  font: 600 0.6875rem/1.4 var(--f-body); letter-spacing: .1em; text-transform: uppercase;
}
.arch .temp-badge { left: 50%; transform: translateX(-50%); white-space: nowrap; }
img.is-stock { filter: saturate(0.9); }
.media-missing {
  display: grid; place-items: center; text-align: center; padding: var(--s1);
  width: 100%; height: 100%; min-height: 160px;
  background: repeating-linear-gradient(135deg, var(--velvet-3) 0 12px, var(--velvet-2) 12px 24px);
  color: var(--on-dark-soft); font-size: 0.75rem; letter-spacing: .12em; text-transform: uppercase;
}

/* ---------- specialisms ---------- */
.specialisms { background: var(--velvet-2); border-block: 1px solid var(--line-dark); }
.specialisms ul {
  display: grid; grid-template-columns: repeat(2, 1fr);
  padding-block: var(--s2);
}
.specialisms li {
  position: relative; text-align: center;
  font-size: clamp(1.35rem, 3.4vw, 2.1rem); font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gilt);
  padding: var(--s0) 0;
}
@media (min-width: 720px) {
  .specialisms ul { grid-template-columns: repeat(4, 1fr); }
  .specialisms li + li::before {
    content: ""; position: absolute; left: 0; top: 50%;
    width: 7px; height: 7px; transform: translate(-50%, -50%) rotate(45deg);
    background: var(--gilt);
  }
}

/* ---------- section heads ---------- */
.section-head { max-width: 640px; margin-bottom: var(--s4); }
.section-head h2 { margin-bottom: var(--s2); }
.section-sub { color: var(--ink-soft); max-width: 52ch; }
.section-head-dark .section-sub { color: var(--on-dark-soft); }

/* ---------- work ---------- */
.work { background: var(--cream); color: var(--ink); padding: var(--s5) 0 var(--s4); }
.work h2 em { color: var(--gilt-ink); }

.gallery-scroller {
  overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  padding: 0 var(--gutter) var(--s2);
  scroll-padding-inline: var(--gutter);
}
.gallery-scroller::-webkit-scrollbar { display: none; }
.gallery-scroller:focus-visible { outline-offset: -4px; }
.gallery { display: grid; grid-auto-flow: column; grid-auto-columns: 72%; gap: var(--s1); }
.tile { scroll-snap-align: start; }
.tile a { display: block; text-decoration: none; color: var(--ink); }
.tile-img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--cream-2); border-radius: 2px; }
.tile-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile a:hover .tile-img img, .tile a:focus-visible .tile-img img { transform: scale(1.035); }
.tile-label {
  margin: var(--s1) 0 2px;
  font-style: italic; font-size: 1.3rem; line-height: 1.25; font-weight: 450;
}
.tile-meta {
  display: inline-flex; gap: 0.4em; min-height: 32px; align-items: center; margin: 0;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.04em; color: var(--gilt-ink);
}

@media (min-width: 560px) { .gallery { grid-auto-columns: 44%; } }
@media (min-width: 960px) {
  .gallery-scroller { overflow: visible; padding: 0; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
  .gallery { grid-auto-flow: row; grid-template-columns: repeat(4, 1fr); gap: var(--s4) var(--s2); }
  .tile:nth-child(even) { transform: translateY(var(--s4)); }
  .work { padding-bottom: var(--s6); }
}
.work-foot { margin-top: var(--s3); }

/* the reveal: images wipe up into place as they arrive */
.js .reveal .tile-img { clip-path: inset(100% 0 0 0); transition: clip-path 1s var(--ease); }
.js .reveal.in .tile-img { clip-path: inset(0 0 0 0); }
.js .reveal:nth-child(4n+2) .tile-img { transition-delay: .08s; }
.js .reveal:nth-child(4n+3) .tile-img { transition-delay: .16s; }
.js .reveal:nth-child(4n+4) .tile-img { transition-delay: .24s; }

/* ---------- menu ---------- */
.menu { padding: var(--s5) 0; background: var(--velvet); }
.menu h2 em { color: var(--gilt); }
.menu-grid { display: grid; gap: var(--s4); }
.menu-preview { display: none; margin: 0; }

.svc {
  display: grid; grid-template-columns: 64px 1fr auto; grid-template-areas: "thumb body body" "thumb price book";
  column-gap: var(--s1); row-gap: var(--s1); align-items: center;
  padding: var(--s2) 0; border-top: 1px solid var(--line-dark);
  transition: background-color .3s var(--ease);
}
.svc:last-child { border-bottom: 1px solid var(--line-dark); }
.svc-thumb { grid-area: thumb; align-self: start; width: 64px; height: 80px; object-fit: cover; border-radius: 999px 999px 2px 2px; background: var(--velvet-3); }
.thumb-note {
  grid-area: thumb; align-self: end; justify-self: center;
  padding: 1px 6px; border-radius: 999px; border: 1px solid var(--line-dark);
  font: 600 0.5625rem/1.5 var(--f-body); letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-soft);
}
.svc-body { grid-area: body; min-width: 0; }
.svc-price, .svc-book { align-self: center; }
.svc h3 { font-size: clamp(1.45rem, 3vw, 1.9rem); line-height: 1.1; margin-bottom: var(--s0); }
.svc-body p { color: var(--on-dark-soft); font-size: 1rem; margin-bottom: var(--s0); max-width: 48ch; }
.svc-body .svc-eg { font-size: 0.875rem; color: var(--on-dark-soft); letter-spacing: 0.01em; margin: 0; }
.svc-price {
  grid-area: price; justify-self: start; margin: 0; white-space: nowrap;
  font-style: italic; font-size: 1.5rem; line-height: 1; color: var(--gilt);
}
.svc-price span { font-family: var(--f-body); font-style: normal; font-size: 0.75rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-soft); margin-right: 4px; }
.svc-book {
  grid-area: book; justify-self: end;
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; min-width: 76px; padding: 0 var(--s1);
  font-size: 0.875rem; font-weight: 600; text-decoration: none;
  border: 1px solid var(--line-dark); border-radius: 999px; color: var(--on-dark);
  transition: all .25s var(--ease);
}
.svc-book:hover, .svc-book:focus-visible { background: var(--gilt); color: var(--velvet); border-color: var(--gilt); }
.svc.active .svc-book { border-color: var(--gilt); color: var(--gilt-hi); }
.svc:target { background: linear-gradient(90deg, rgba(200,162,90,.10), rgba(200,162,90,0) 70%); }

@media (max-width: 420px) {
  .svc { grid-template-columns: 52px 1fr auto; column-gap: 14px; }
  .svc-thumb { width: 52px; height: 66px; }
}

@media (min-width: 960px) {
  .menu { padding: var(--s6) 0; }
  .menu-grid { grid-template-columns: 5fr 7fr; gap: var(--s5); align-items: start; }
  .menu-preview { display: block; position: sticky; top: calc(var(--header-h) + var(--s3)); max-width: 400px; }
  .menu-preview img { transition: opacity .35s var(--ease); }
  .menu-preview img.swap { opacity: 0; }
  .svc { grid-template-columns: 1fr auto auto; grid-template-areas: "body price book"; column-gap: var(--s3); padding: var(--s2) var(--s1); }
  .svc-price { justify-self: end; }
  .svc-thumb, .thumb-note { display: none; }
  .svc-book { align-self: center; }
  .svc.active { background: rgba(200,162,90,.06); }
}

/* before you book */
.before { margin-top: var(--s5); padding-top: var(--s4); border-top: 1px solid var(--line-dark); }
.before-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: var(--s3); }
.before-list { display: grid; gap: var(--s3); }
.before-list li { position: relative; }
.before-list .num { display: block; font-style: italic; font-size: 1.1rem; color: var(--gilt); margin-bottom: var(--s0); }
.before-list h4 { font-size: 1.125rem; font-weight: 600; margin-bottom: var(--s0); }
.before-list p { color: var(--on-dark-soft); font-size: 1rem; max-width: 40ch; }
.before-list a { color: var(--gilt-hi); }
@media (min-width: 820px) { .before-list { grid-template-columns: repeat(3, 1fr); gap: var(--s4); } }

.placeholder-text { color: var(--blush) !important; font-style: italic; }
.inside .placeholder-text, .work .placeholder-text { color: #9a4a52 !important; }

/* ---------- inside ---------- */
.inside { position: relative; overflow: hidden; background: var(--cream); color: var(--ink); padding: var(--s5) 0; }
.inside h2 em { color: var(--gilt-ink); }
.mural { position: absolute; inset: 0; width: 100%; height: 100%; color: var(--cream-2); z-index: 0; pointer-events: none; }
.inside-grid { position: relative; z-index: 1; display: grid; gap: var(--s4); align-items: center; }
.inside-copy h2 { margin-bottom: var(--s2); }
.inside-copy > p { color: var(--ink-soft); max-width: 46ch; }
.inside-media { margin: 0; justify-self: center; width: min(64vw, 300px); }

/* a gilt mirror: thick layered frame around the reel */
.mirror {
  position: relative; aspect-ratio: 9 / 16; overflow: hidden;
  border-radius: 999px 999px 8px 8px;
  background: var(--velvet);
  box-shadow:
    0 0 0 3px var(--gilt),
    0 0 0 8px var(--cream),
    0 0 0 9px var(--gilt-ink),
    0 30px 60px rgba(27, 21, 22, 0.28);
}
.mirror video, .mirror img { width: 100%; height: 100%; object-fit: cover; }
.video-toggle {
  position: absolute; right: 12px; bottom: 12px;
  min-height: 44px; min-width: 64px; padding: 0 14px; border-radius: 999px;
  background: rgba(14,11,12,.72); color: var(--on-dark); border: 1px solid var(--line-dark);
  font: 600 0.75rem var(--f-body); letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
}
.video-toggle[hidden] { display: none; }

.facts { display: grid; gap: 0; margin-top: var(--s3); border-top: 1px solid var(--line-light); }
.facts li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s0) var(--s2); padding: var(--s1) 0; border-bottom: 1px solid var(--line-light); }
.fact-k { font-style: italic; font-size: 1.2rem; }
.fact-v { color: var(--ink-soft); font-size: 1rem; }

@media (min-width: 960px) {
  .inside { padding: var(--s6) 0; }
  .inside-grid { grid-template-columns: 5fr 7fr; gap: var(--s6); }
  .inside-media { width: 100%; max-width: 360px; justify-self: end; }
}

/* ---------- team (placeholder cards until the salon confirms details) ---------- */
.team { padding: var(--s5) 0; background: var(--velvet-2); border-top: 1px solid var(--line-dark); }
.team h2 em { color: var(--gilt); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s3) var(--s1); }
.member-photo {
  position: relative; display: grid; place-items: end center; aspect-ratio: 4 / 5;
  padding-bottom: var(--s1);
  border: 1px dashed rgba(200, 162, 90, 0.5); border-radius: 999px 999px 4px 4px;
  background: radial-gradient(80% 60% at 50% 30%, var(--velvet-3), var(--velvet-2));
}
.member-photo::before {
  content: "V"; position: absolute; top: 34%; left: 50%; transform: translate(-50%, -50%);
  font-style: italic; font-size: clamp(2.5rem, 7vw, 3.5rem); line-height: 1; color: var(--gilt); opacity: 0.35;
}
.member-photo span { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--on-dark-soft); }
.member-name { margin: var(--s1) 0 2px; font-style: italic; font-size: 1.3rem; line-height: 1.25; color: var(--on-dark-soft); }
.member-role { margin: 0; font-size: 0.9375rem; color: var(--on-dark-soft); }
@media (min-width: 960px) {
  .team { padding: var(--s6) 0; }
  .team-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s2); }
}

/* ---------- visit (light, so the dark sign panel reads like the shopfront) ---------- */
.visit { position: relative; padding: var(--s5) 0; background: var(--cream); color: var(--ink); }
.visit h2 em { color: var(--gilt-ink); }
.visit-grid { display: grid; gap: var(--s4); align-items: center; }
.visit address { font-size: 1.3rem; line-height: 1.5; margin: var(--s3) 0 var(--s2); }
.hours { margin: 0 0 var(--s2); display: grid; gap: 0; max-width: 440px; }
.hours div { display: flex; justify-content: space-between; align-items: center; gap: var(--s2); min-height: 48px; border-bottom: 1px solid var(--line-light); }
.hours dt { color: var(--ink-soft); font-size: 1rem; }
.hours dd { margin: 0; font-weight: 600; }
.hours a { display: inline-flex; align-items: center; min-height: 44px; color: var(--ink); text-underline-offset: 3px; }
.wayfind { color: var(--ink-soft); font-size: 1rem; }
.btn-ghost-ink { border-color: var(--line-light); color: var(--ink); }
.btn-ghost-ink:hover { border-color: var(--gilt-ink); color: var(--gilt-ink); }
.before-list a[href^="tel"] { white-space: nowrap; }

/* the leopard room, rendered in gilt */
.visit-sign { margin: 0; }
.sign {
  position: relative; display: grid; grid-template-columns: 1fr; overflow: hidden;
  border: 1px solid var(--line-dark); border-radius: 4px;
  background-color: var(--velvet-2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='none' stroke='%23c8a25a' stroke-width='3.2' stroke-linecap='round' opacity='.34'%3E%3Cpath d='M18 22c4-7 13-8 18-3'/%3E%3Cpath d='M40 26c3 6 0 13-6 15'/%3E%3Cpath d='M26 44c-7 1-12-5-10-12'/%3E%3Cpath d='M86 12c5-5 14-3 16 3'/%3E%3Cpath d='M105 22c1 7-5 12-11 11'/%3E%3Cpath d='M84 30c-5-2-6-9-2-13'/%3E%3Cpath d='M58 66c3-7 12-9 17-4'/%3E%3Cpath d='M80 70c2 6-2 13-9 14'/%3E%3Cpath d='M63 86c-7 0-11-7-8-13'/%3E%3Cpath d='M110 74c5-6 13-5 16 1'/%3E%3Cpath d='M129 83c0 6-6 11-12 9'/%3E%3Cpath d='M108 92c-5-3-5-9-1-13'/%3E%3Cpath d='M16 96c4-6 12-7 17-2'/%3E%3Cpath d='M36 102c2 7-3 12-9 12'/%3E%3Cpath d='M18 118c-6-1-9-8-5-13'/%3E%3Cpath d='M78 118c4-6 12-6 16-1'/%3E%3Cpath d='M97 126c-1 6-8 9-13 6'/%3E%3C/g%3E%3Cg fill='%23c8a25a' opacity='.16'%3E%3Ccircle cx='52' cy='40' r='3'/%3E%3Ccircle cx='122' cy='48' r='2.5'/%3E%3Ccircle cx='38' cy='76' r='2.5'/%3E%3Ccircle cx='96' cy='100' r='3'/%3E%3Ccircle cx='60' cy='126' r='2.5'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 140px 140px;
  padding: var(--s3);
}
.sign-img { width: 58%; max-width: 230px; aspect-ratio: 9 / 14; overflow: hidden; border-radius: 999px 999px 2px 2px; border: 1px solid var(--gilt); justify-self: center; background: var(--velvet-3); }
.sign-img img { width: 100%; height: 100%; object-fit: cover; }
.sign-words {
  margin: var(--s2) 0 0; text-align: center; color: var(--gilt);
  display: flex; flex-direction: column; align-items: center; gap: 2px; line-height: 1;
}
.sign-words span:first-child { font-size: 1rem; letter-spacing: .42em; text-transform: uppercase; font-weight: 600; padding-left: .42em; }
.sign-words span:last-child { font-size: 2.6rem; font-style: italic; }

@media (min-width: 960px) {
  .visit { padding: var(--s6) 0; }
  .visit-grid { grid-template-columns: 6fr 5fr; gap: var(--s6); }
  .sign { padding: var(--s4); }
}

/* ---------- instagram band ---------- */
.ig-band { background: var(--velvet-2); border-top: 1px solid var(--line-dark); padding: var(--s4) 0; }
.ig-inner { display: grid; gap: var(--s0); }
.ig-handle { margin: 0; font-size: clamp(1.7rem, 6vw, 3.4rem); font-style: italic; line-height: 1.1; overflow-wrap: anywhere; }
.ig-handle a { text-decoration: none; color: var(--gilt); background: linear-gradient(var(--gilt), var(--gilt)) 0 100% / 0 1px no-repeat; transition: background-size .5s var(--ease); }
.ig-handle a:hover { background-size: 100% 1px; }
.ig-copy { color: var(--on-dark-soft); margin: 0; }
@media (min-width: 960px) { .ig-inner { grid-template-columns: auto 1fr; align-items: end; gap: var(--s4); } .ig-copy { max-width: 32ch; } }

/* ---------- footer ---------- */
.site-footer { padding: var(--s5) 0 calc(var(--s3) + 80px); background: var(--velvet); border-top: 1px solid var(--line-dark); font-size: 0.9375rem; color: var(--on-dark-soft); }
.footer-grid { display: grid; gap: var(--s3); }
.footer-spec { margin-top: var(--s1); letter-spacing: .12em; text-transform: uppercase; font-size: 0.75rem; color: var(--gilt); }
.footer-h { color: var(--on-dark); font-weight: 600; margin-bottom: var(--s0); }
.footer-links li a { display: inline-flex; align-items: center; min-height: 44px; }
.footer-note { margin-top: var(--s4); font-size: 0.875rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } .site-footer { padding-bottom: var(--s3); } }

/* ---------- mobile booking bar ---------- */
.book-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: flex; gap: var(--s0);
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(14, 11, 12, 0.94); border-top: 1px solid var(--line-dark);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  transform: translateY(110%); transition: transform .35s var(--ease);
}
.book-bar .btn-gilt { flex: 1; }
.book-bar.show { transform: translateY(0); }
@media (min-width: 768px) { .book-bar { display: none; } }

/* ---------- concept notes ---------- */
body.notes-on [data-verify] { outline: 1px dashed rgba(232, 180, 184, 0.9); outline-offset: 4px; position: relative; }
body.notes-on [data-verify]::after {
  content: "Verify"; position: absolute; top: -10px; right: -6px; z-index: 5;
  padding: 2px 7px; border-radius: 999px;
  background: var(--blush); color: var(--ink);
  font: 700 0.625rem/1.4 var(--f-body); letter-spacing: .12em; text-transform: uppercase;
  pointer-events: none;
}
body.notes-on address[data-verify]::after, body.notes-on dl[data-verify]::after { top: -14px; }

.notes-drawer {
  position: fixed; z-index: 60; right: 0; top: 0; bottom: 0; width: min(440px, 100%);
  overflow-y: auto; padding: var(--s2);
  background: var(--cream); color: var(--ink);
  box-shadow: -20px 0 50px rgba(0,0,0,.4);
  font-size: 0.9375rem;
}
.notes-head { display: flex; justify-content: space-between; align-items: flex-start; gap: var(--s1); margin-bottom: var(--s2); }
.notes-head p { margin: 0; }
#notesList { list-style: decimal; padding-left: 1.3em; display: grid; gap: var(--s1); }
#notesList li { padding-left: 4px; }
#notesList button { margin-top: 4px; font: 600 0.8125rem var(--f-body); background: none; border: 0; padding: 0; color: var(--gilt-ink); text-decoration: underline; cursor: pointer; min-height: 32px; }

/* ---------- motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  .hero::before { animation: none; }
  .js .reveal .tile-img { clip-path: none; transition: none; }
  .tile-img img, .menu-preview img, .book-bar { transition: none; }
}
