/* Bladez Barbers demo — palette and type taken from the shop's lit fascia and window at night. */

@font-face { font-family: "Holtwood"; src: url("../fonts/HoltwoodOneSC.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Anybody"; src: url("../fonts/Anybody-normal.woff2") format("woff2"); font-weight: 100 900; font-stretch: 50% 150%; font-style: normal; font-display: swap; }
@font-face { font-family: "Anybody"; src: url("../fonts/Anybody-italic.woff2") format("woff2"); font-weight: 100 900; font-stretch: 50% 150%; font-style: italic; font-display: swap; }
@font-face { font-family: "Schibsted"; src: url("../fonts/SchibstedGrotesk-normal.woff2") format("woff2"); font-weight: 400 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Schibsted"; src: url("../fonts/SchibstedGrotesk-italic.woff2") format("woff2"); font-weight: 400 900; font-style: italic; font-display: swap; }

:root {
  --night: #0b0b0d;      /* fascia black */
  --panel: #141317;
  --panel-2: #1c1a20;
  --line: #2b2830;
  --text: #f4efe6;       /* LED bulb white, used for text */
  --muted: #aaa39c;
  --gold: #f2b530;       /* lit letters */
  --gold-hi: #ffd978;
  --gold-lo: #9a6412;
  --neon: #ff3347;       /* OPEN letters */
  --neon-blue: #4f7dff;  /* neon tube + pole */
  --wa: #25d366;

  --f-sign: "Holtwood", "Rockwell Extra Bold", "Georgia", serif;
  --f-head: "Anybody", "Arial Narrow", system-ui, sans-serif;
  --f-body: "Schibsted", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gutter: clamp(16px, 4vw, 40px);
  --radius: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--night); color: var(--text);
  font: 400 1.0625rem/1.6 var(--f-body);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 800; line-height: 1.05; }
p { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--gold-hi); outline-offset: 3px; border-radius: 4px; }
[hidden] { display: none !important; }
.sr-only { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--gold); color: #1a1206; padding: 10px 14px; border-radius: 8px; font-weight: 700; }
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: 1240px; margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: clamp(56px, 8vw, 110px); }

/* ---------- type ---------- */
.sign-type {
  font-family: var(--f-sign); font-weight: 400; letter-spacing: .01em; line-height: .92;
  background: linear-gradient(180deg, var(--gold-hi) 0%, var(--gold) 48%, #c98516 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  /* drop-shadow (not text-shadow) so the bevel sits behind the gradient fill, like the lit fascia letters */
  filter: drop-shadow(0 .035em 0 #a86a12) drop-shadow(0 .035em 0 #5e3a0a) drop-shadow(0 0 .28em rgba(242, 181, 48, .35));
  padding-bottom: .06em;
}
.h2 { font-family: var(--f-head); font-style: italic; font-weight: 800; font-stretch: 85%; font-size: clamp(2rem, 4.2vw, 3.4rem); letter-spacing: -.01em; line-height: 1.05; }
.h3 { font-family: var(--f-head); font-style: italic; font-weight: 750; font-stretch: 90%; font-size: 1.35rem; line-height: 1.15; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em; margin-bottom: 1rem;
  font: 650 .78rem/1 var(--f-head); font-stretch: 75%; letter-spacing: .16em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; }
.lede { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--text); max-width: 60ch; }
.muted { color: var(--muted); }
.fine { font-size: .9rem; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  --b: var(--gold); display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  min-height: 50px; padding: .8em 1.4em; border-radius: 999px; border: 2px solid var(--b);
  background: var(--b); color: #1a1206; text-decoration: none; cursor: pointer;
  font: italic 750 1.02rem/1 var(--f-head); font-stretch: 95%; letter-spacing: .01em;
  transition: transform .2s var(--ease), background-color .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(242, 181, 48, .6); }
.btn-ghost { background: transparent; color: var(--text); --b: #4a4650; }
.btn-ghost:hover { --b: var(--gold); box-shadow: none; }
.btn-wa { background: transparent; color: var(--text); --b: #2f6b46; }
.btn-wa svg { color: var(--wa); }
.btn-wa:hover { --b: var(--wa); box-shadow: 0 10px 30px -12px rgba(37, 211, 102, .5); }
.btn-sm { min-height: 40px; padding: .55em 1.05em; font-size: .92rem; }
.btn[disabled] { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.link-arrow { font: italic 700 1rem/1 var(--f-head); color: var(--gold); text-decoration: none; display: inline-flex; gap: .4em; align-items: center; }
.link-arrow:hover { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- demo notes (honest labels for the owner) ---------- */
.demo-note {
  display: flex; gap: .75rem; align-items: flex-start; padding: .85rem 1rem; border-radius: 10px;
  border: 1px dashed rgba(242, 181, 48, .55); background: rgba(242, 181, 48, .06);
  font-size: .92rem; color: #e9dcc0; line-height: 1.45;
}
.demo-note b { font: 700 .7rem/1.6 var(--f-head); letter-spacing: .14em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 13, .82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.site-header .wrap { display: flex; align-items: center; gap: 1.25rem; min-height: 70px; }
.brand { display: inline-flex; align-items: baseline; gap: .45rem; text-decoration: none; margin-right: auto; }
.brand .sign-type { font-size: 1.55rem; filter: drop-shadow(0 1px 0 #8a5510) drop-shadow(0 1px 0 #5b370a); }
.brand small { font: italic 700 .72rem/1 var(--f-head); font-stretch: 120%; letter-spacing: .28em; color: var(--text); }
.nav { display: flex; gap: .2rem; }
.nav a {
  padding: .55rem .75rem; border-radius: 8px; text-decoration: none; color: var(--muted);
  font: 600 .95rem/1 var(--f-body);
}
.nav a:hover { color: var(--text); }
.nav a[aria-current="page"] { color: var(--gold); }
.status-pill {
  display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .8rem; border-radius: 999px;
  border: 1px solid var(--line); font: 600 .82rem/1 var(--f-body); color: var(--muted); white-space: nowrap; text-decoration: none;
}
.status-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #5a5560; }
.status-pill.is-open { color: var(--text); border-color: rgba(255, 51, 71, .45); }
.status-pill.is-open .dot { background: var(--neon); box-shadow: 0 0 0 3px rgba(255, 51, 71, .2), 0 0 10px var(--neon); }
.menu-btn { display: none; width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--line); background: var(--panel); cursor: pointer; }
.menu-btn span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--text); transition: transform .25s var(--ease), opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .site-header .nav, .site-header .head-book { display: none; }
  .menu-btn { display: block; flex: none; }
}

/* full-screen mobile menu (sibling of the header, see site.js) */
.mobile-menu {
  position: fixed; inset: 0; z-index: 45; display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
  padding: 92px var(--gutter) calc(24px + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle, #fffaf0 0 2.2px, rgba(255, 244, 220, .3) 3px, transparent 4px) left top 76px / 18px 14px repeat-x,
    radial-gradient(120% 60% at 0% 0%, rgba(242, 181, 48, .12), transparent 60%),
    var(--night);
  overflow-y: auto; overscroll-behavior: contain;
}
.mobile-menu nav { display: grid; }
.mobile-menu nav a {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 56px; padding: 10px 0;
  border-bottom: 1px solid var(--line); text-decoration: none; color: var(--text);
  font: italic 800 clamp(1.6rem, 7.5vw, 2.2rem)/1.1 var(--f-head); font-stretch: 88%;
}
.mobile-menu nav a::after { content: "→"; font: 400 .8em/1 var(--f-body); color: var(--muted); }
.mobile-menu nav a[aria-current="page"], .mobile-menu nav a[aria-current="page"]::after { color: var(--gold); }
.mobile-menu .status-pill { align-self: flex-start; }
.mobile-menu .status-pill .label-long { display: inline; }
.mm-foot { display: grid; gap: 14px; justify-items: start; }
.mm-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
.mm-actions .btn:first-child { grid-column: 1 / -1; }
.mm-foot .fine { margin: 0; }
.menu-lock, .menu-lock body { overflow: hidden; }
.mobile-menu:not([hidden]) { animation: mm-fade .25s ease both; }
.mobile-menu:not([hidden]) nav a { animation: mm-link .45s var(--ease) both; animation-delay: calc(var(--i) * 45ms + 60ms); }
@keyframes mm-fade { from { opacity: 0; } }
@keyframes mm-link { from { opacity: 0; transform: translateX(-14px); } }
@media (min-width: 981px) { .mobile-menu { display: none !important; } }
@media (max-height: 560px) { .mobile-menu { justify-content: flex-start; } .mobile-menu nav a { min-height: 48px; font-size: 1.4rem; } }
@media (max-width: 520px) {
  .status-pill .label-long { display: none; }
  .site-header .wrap { gap: .6rem; }
  .brand small { display: none; }
}

/* ---------- mobile action bar ---------- */
.action-bar { display: none; }
@media (max-width: 760px) {
  .action-bar {
    display: grid; grid-template-columns: 1fr 1fr 1.3fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: rgba(11, 11, 13, .94); border-top: 1px solid var(--line);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  }
  .action-bar .btn { min-height: 46px; padding-inline: .6em; font-size: .92rem; }
  body { padding-bottom: 76px; }
  body .wa-float { display: none; }
  .towel-media .tag { right: 12px; }
}
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 40; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: var(--wa); color: #06220f; box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .7);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- the neon window sign (signature) ---------- */
.neon {
  --tube: var(--neon-blue); --glow: 1;
  display: inline-grid; justify-items: center; gap: .1em; padding: .5em .9em .55em; border-radius: 12px;
  border: 3px solid var(--tube); background: rgba(5, 5, 10, .88);
  box-shadow: 0 0 calc(14px * var(--glow)) rgba(79, 125, 255, calc(.75 * var(--glow))), inset 0 0 calc(12px * var(--glow)) rgba(79, 125, 255, calc(.5 * var(--glow)));
  font-size: 1rem; text-decoration: none; transition: box-shadow .4s, border-color .4s;
}
.neon .word {
  font: 800 2.3em/1 var(--f-head); font-stretch: 110%; letter-spacing: .06em; color: #ffe3e6;
  text-shadow: 0 0 4px #fff, 0 0 10px var(--neon), 0 0 22px var(--neon), 0 0 38px rgba(255, 51, 71, .6);
}
.neon .sub { font: italic 700 1.05em/1 var(--f-body); color: #ffd1d6; text-shadow: 0 0 8px var(--neon); }
.neon .when { margin-top: .35em; font: 600 .78em/1.2 var(--f-body); color: var(--text); opacity: .9; text-align: center; }
.neon.is-closed { --tube: #2d2f3f; --glow: 0; }
.neon.is-closed .word { color: #6b5b5e; text-shadow: none; }
.neon.is-closed .sub { color: #6b5b5e; text-shadow: none; }
.js .neon.is-open.flicker { animation: neon-on 1.6s steps(1, end) .9s both; }
@keyframes neon-on {
  0% { opacity: .15; } 8% { opacity: 1; } 12% { opacity: .2; } 20% { opacity: 1; } 26% { opacity: .35; } 34%, 100% { opacity: 1; }
}

/* ---------- LED bulb frame (from the window lights) ---------- */
.bulbs { position: relative; isolation: isolate; }
.bulbs::before {
  content: ""; position: absolute; inset: -14px; z-index: -1; border-radius: 6px; pointer-events: none;
  --d: radial-gradient(circle, #fffaf0 0 2.4px, rgba(255, 244, 220, .35) 3.2px, transparent 4.2px);
  background:
    var(--d) top left / 16px 14px repeat-x,
    var(--d) bottom left / 16px 14px repeat-x,
    var(--d) top left / 14px 16px repeat-y,
    var(--d) top right / 14px 16px repeat-y;
  filter: drop-shadow(0 0 3px rgba(255, 240, 210, .9)) drop-shadow(0 0 10px rgba(255, 220, 160, .35));
}
.js .bulbs.light-up::before { animation: bulbs-on 1.2s var(--ease) .15s both; }
@keyframes bulbs-on { from { opacity: 0; filter: none; } to { opacity: 1; } }
.bulb-rule {
  height: 14px; border: 0; margin: 0;
  background: radial-gradient(circle, #fffaf0 0 2.2px, rgba(255, 244, 220, .3) 3px, transparent 4px) center / 18px 14px repeat-x;
  filter: drop-shadow(0 0 4px rgba(255, 230, 190, .7)); opacity: .75;
}

/* ---------- home hero ---------- */
.hero { padding-block: clamp(28px, 5vw, 72px) clamp(56px, 7vw, 96px); position: relative; overflow: hidden; }
.hero::after { /* warm spill of light from the fascia */
  content: ""; position: absolute; inset: -20% 30% auto -20%; height: 70%; z-index: -1;
  background: radial-gradient(closest-side, rgba(242, 181, 48, .14), transparent);
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero-copy { container-type: inline-size; }
.hero-meta { font: 650 .8rem/1.4 var(--f-head); font-stretch: 80%; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.4rem; }
.hero-meta b { color: var(--gold); font-weight: 700; }
.wordmark-xl { display: block; font-size: 17.2cqi; }
.wordmark-sub {
  display: flex; align-items: center; gap: .8rem; margin-top: .5rem;
  font: italic 800 max(1.1rem, 4.4cqi)/1 var(--f-head); font-stretch: 125%; letter-spacing: .42em; text-transform: uppercase; color: var(--text);
}
.wordmark-sub::after { content: ""; flex: 1; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero-services {
  margin: 1.6rem 0 1.4rem; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .25rem .4rem;
  font: italic 700 clamp(1rem, 1.7vw, 1.2rem)/1.3 var(--f-head); font-stretch: 95%;
}
.hero-services li:not(:last-child)::after { content: "·"; margin-left: .4rem; color: var(--gold); }
.hero-lede { color: var(--muted); max-width: 46ch; margin-bottom: 1.8rem; }
.hero-lede strong { color: var(--text); font-weight: 600; }
.cta-row { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-window { position: relative; margin: 14px 14px 36px; }
.hero-window img { width: 100%; aspect-ratio: 4 / 3.2; object-fit: cover; object-position: 62% 50%; border-radius: 4px; }
.hero-window .neon { position: absolute; left: -26px; bottom: -40px; font-size: clamp(.85rem, 1.3vw, 1.05rem); }
.hero-window figcaption { position: absolute; right: 0; bottom: -34px; font-size: .8rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-window { order: 2; margin-inline: 14px; }
  .hero-window .neon { left: 8px; bottom: -44px; }
  .hero-window figcaption { display: none; }
}

/* ---------- proof marquee ---------- */
.proof { border-block: 1px solid var(--line); background: var(--panel); padding-block: 0; }
.proof .wrap { display: flex; align-items: center; gap: 1.5rem; padding-block: 18px; }
.proof-score { display: flex; align-items: center; gap: .7rem; flex: none; text-decoration: none; }
.proof-score .num { font: 400 2rem/1 var(--f-sign); color: var(--gold); }
.stars { color: var(--gold); letter-spacing: .1em; font-size: 1rem; }
.proof-score small { display: block; font-size: .8rem; color: var(--muted); }
.marquee { position: relative; overflow: hidden; flex: 1; mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee-track { display: flex; gap: 2.5rem; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee-track q { font: italic 600 1rem/1.3 var(--f-body); white-space: nowrap; color: var(--text); quotes: "“" "”"; }
.marquee-track cite { font-style: normal; color: var(--muted); font-size: .85rem; margin-left: .5rem; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (max-width: 700px) { .proof .wrap { flex-direction: column; align-items: flex-start; gap: .8rem; } .marquee { width: 100%; } }

/* ---------- section heads ---------- */
.sec-head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; margin-bottom: clamp(28px, 4vw, 48px); flex-wrap: wrap; }
.sec-head p { max-width: 52ch; color: var(--muted); margin: .8rem 0 0; }

/* ---------- cut cards ---------- */
.cuts { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cut { position: relative; margin: 0; border-radius: 10px; overflow: hidden; background: var(--panel); }
.cut img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .6s var(--ease); }
.cut:hover img { transform: scale(1.04); }
.cut figcaption {
  position: absolute; left: 10px; bottom: 10px; padding: .35em .65em; border-radius: 6px;
  background: rgba(11, 11, 13, .8); font: italic 700 .82rem/1 var(--f-head); font-stretch: 90%;
}
.cuts .cut:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.cuts .cut:nth-child(1) img { height: 100%; }
@media (max-width: 900px) { .cuts { grid-template-columns: repeat(2, 1fr); } .cuts .cut:nth-child(1) { grid-column: span 2; grid-row: auto; } .cuts .cut:nth-child(1) img { aspect-ratio: 4 / 3.4; } }

/* ---------- price tickets ---------- */
.tickets { display: grid; gap: 0; border-top: 1px solid var(--line); }
.ticket { display: grid; grid-template-columns: 1fr auto; gap: .2rem 1.5rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.ticket h3 { font: italic 750 1.3rem/1.15 var(--f-head); font-stretch: 90%; display: flex; align-items: baseline; gap: .8rem; }
.ticket h3::after { content: ""; flex: 1; border-bottom: 2px dotted #4a4650; transform: translateY(-.25em); min-width: 1.5rem; }
.ticket .price { font: 800 1.45rem/1 var(--f-head); font-stretch: 80%; color: var(--gold); font-variant-numeric: tabular-nums; text-align: right; }
.ticket .price small { display: block; font: 600 .68rem/1.6 var(--f-head); letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.ticket p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .95rem; max-width: 62ch; }
.ticket .mins { color: var(--text); font-weight: 600; }
.ticket .book-it { grid-column: 1 / -1; justify-self: start; margin-top: .5rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.split.wide-left { grid-template-columns: 1.1fr .9fr; }
@media (max-width: 860px) { .split, .split.wide-left { grid-template-columns: 1fr; } }

/* ---------- hot towel feature ---------- */
.towel { background: linear-gradient(180deg, var(--night), #121015 40%, var(--night)); }
.towel-media { position: relative; }
.towel-media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 12px; }
.towel-media .tag {
  position: absolute; right: -10px; top: 24px; transform: rotate(4deg); padding: .7em 1em; border-radius: 8px;
  background: var(--gold); color: #1a1206; font: italic 800 1.1rem/1 var(--f-head); box-shadow: 0 12px 30px -10px #000;
}
.facts { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .9rem; }
.facts li { display: grid; grid-template-columns: 28px 1fr; gap: .8rem; align-items: start; }
.facts svg { width: 24px; height: 24px; color: var(--gold); margin-top: 2px; }
.facts b { display: block; font-weight: 650; }
.facts span { color: var(--muted); font-size: .95rem; }

/* ---------- loyalty card ---------- */
.loyalty-card {
  position: relative; max-width: 520px; padding: 26px 26px 22px; border-radius: 18px;
  background: radial-gradient(120% 90% at 0% 0%, #2a2112, transparent 60%), linear-gradient(145deg, #19171c, #0e0d10);
  border: 1px solid #3a3226; box-shadow: 0 30px 60px -30px #000, inset 0 1px 0 rgba(255, 255, 255, .06);
}
.loyalty-card header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; }
.loyalty-card header .sign-type { font-size: 1.7rem; }
.loyalty-card header span { font: italic 700 .8rem/1 var(--f-head); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.stamps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; list-style: none; margin: 0; padding: 0; }
.stamps li {
  aspect-ratio: 1; border-radius: 50%; border: 2px dashed #4a4336; display: grid; place-items: center;
  font: 800 .95rem/1 var(--f-head); color: #5c5445; transition: background-color .3s, border-color .3s, transform .3s var(--ease);
}
.stamps li.on { border: 2px solid var(--gold); background: radial-gradient(circle at 35% 30%, var(--gold-hi), var(--gold) 55%, #b77a17); color: #2a1a04; }
.stamps li.on.pop { animation: pop .45s var(--ease); }
.stamps li.free { border-style: solid; border-color: var(--neon); color: var(--neon); font-size: .7rem; text-align: center; line-height: 1.05; }
.stamps li.free.on { background: var(--neon); color: #fff; border-color: var(--neon); }
@keyframes pop { 0% { transform: scale(.6); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }
.loyalty-card footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 18px; flex-wrap: wrap; }
.loyalty-card footer p { margin: 0; font-size: .9rem; color: var(--muted); }

/* ---------- hours ---------- */
.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours th, .hours td { text-align: left; padding: .7rem 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.hours td { text-align: right; color: var(--muted); }
.hours tr.today th, .hours tr.today td { color: var(--gold); font-weight: 700; }
.hours tr.today th::after { content: "Today"; margin-left: .6rem; font: 700 .65rem/1 var(--f-head); letter-spacing: .12em; text-transform: uppercase; padding: .3em .5em; border-radius: 4px; background: rgba(242, 181, 48, .15); vertical-align: middle; }

.visit-card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(20px, 3vw, 34px); }
.addr { font-style: normal; font-size: 1.15rem; line-height: 1.5; margin-bottom: 1.2rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 1.4rem; display: grid; gap: .5rem; }
.contact-list a { color: var(--text); text-decoration: none; font-weight: 600; }
.contact-list a:hover { color: var(--gold); }

/* ---------- page head ---------- */
.page-head { padding-block: clamp(40px, 7vw, 96px) clamp(24px, 4vw, 44px); position: relative; }
.page-head h1 { font-size: clamp(2.5rem, 8.5vw, 6.2rem); margin-bottom: 1.2rem; }
.page-head .lede { color: var(--muted); }
.page-head + section { padding-top: clamp(16px, 3vw, 32px); }

/* ---------- gallery ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 28px; }
.chip {
  min-height: 42px; padding: .5em 1.05em; border-radius: 999px; border: 1px solid var(--line); background: var(--panel);
  font: italic 700 .95rem/1 var(--f-head); font-stretch: 92%; cursor: pointer; transition: background-color .2s, border-color .2s, color .2s;
}
.chip:hover { border-color: var(--gold); }
.chip[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: #1a1206; }
.chip .n { font-style: normal; font-weight: 600; opacity: .6; margin-left: .35em; font-size: .8em; }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery .cut { cursor: zoom-in; }
.gallery .cut button { all: unset; display: block; cursor: zoom-in; }
.gallery .cut button:focus-visible { outline: 3px solid var(--gold-hi); outline-offset: -3px; }
.gallery .cut.is-hidden { display: none; }
.js .gallery .cut.enter { animation: cut-in .5s var(--ease) both; }
@keyframes cut-in { from { opacity: 0; transform: translateY(12px) scale(.98); } }
@media (max-width: 1000px) { .gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.gallery-count { color: var(--muted); font-size: .95rem; margin: -12px 0 20px; }

.lightbox { width: min(92vw, 760px); max-height: 92vh; padding: 0; border: 0; border-radius: 14px; background: var(--panel); color: var(--text); overflow: hidden; }
.lightbox::backdrop { background: rgba(0, 0, 0, .85); }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; background: #000; }
.lightbox .lb-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 12px 14px; }
.lightbox .lb-bar p { margin: 0; font: italic 700 1rem/1.2 var(--f-head); }
.lightbox .lb-nav { display: flex; gap: .4rem; }
.icon-btn { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: var(--panel-2); cursor: pointer; display: grid; place-items: center; }
.icon-btn:hover { border-color: var(--gold); }
.icon-btn svg { width: 20px; height: 20px; }

/* ---------- reviews ---------- */
.score-hero { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 5vw, 72px); align-items: center; }
.big-307 { font-size: clamp(6rem, 20vw, 15rem); line-height: .85; font-variant-numeric: tabular-nums; }
.score-hero .stars { font-size: 1.6rem; }
@media (max-width: 760px) { .score-hero { grid-template-columns: 1fr; } }
.themes { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.themes li { display: grid; grid-template-columns: 11rem 1fr 2.5rem; gap: 1rem; align-items: center; }
.themes .bar { height: 12px; border-radius: 99px; background: var(--panel-2); overflow: hidden; }
.themes .bar i { display: block; height: 100%; width: var(--w); border-radius: inherit; background: linear-gradient(90deg, var(--gold-lo), var(--gold)); transform-origin: left; }
.js .themes.animate .bar i { animation: grow 1.1s var(--ease) both; animation-delay: calc(var(--i) * 90ms); }
@keyframes grow { from { transform: scaleX(0); } }
.themes .n { font: 800 1.05rem/1 var(--f-head); color: var(--gold); text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 560px) { .themes li { grid-template-columns: 1fr 2.2rem; } .themes .bar { grid-column: 1 / -1; grid-row: 2; } }
.wall { columns: 3 300px; column-gap: 16px; }
.quote {
  break-inside: avoid; margin: 0 0 16px; padding: 22px 22px 18px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line);
}
.quote blockquote { margin: 0 0 14px; font: italic 650 clamp(1.1rem, 1.6vw, 1.35rem)/1.3 var(--f-head); font-stretch: 92%; }
.quote blockquote::before { content: "“"; color: var(--gold); margin-right: .05em; }
.quote blockquote::after { content: "”"; color: var(--gold); }
.quote figcaption { display: flex; justify-content: space-between; gap: 1rem; font-size: .88rem; color: var(--muted); }
.quote figcaption b { color: var(--text); font-weight: 650; }
.quote.gold { background: var(--gold); color: #1a1206; border-color: var(--gold); }
.quote.gold blockquote::before, .quote.gold blockquote::after { color: #1a1206; }
.quote.gold figcaption, .quote.gold figcaption b { color: #3a2a0a; }

/* ---------- team / shop ---------- */
.chairs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.chair { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.chair .mono {
  width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 18px;
  border: 2px solid var(--gold); font: 400 1.9rem/1 var(--f-sign); color: var(--gold);
}
.chair h3 { font: italic 800 1.8rem/1 var(--f-head); font-stretch: 90%; margin-bottom: .4rem; }
.chair .role { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.chair blockquote { margin: 0 0 .6rem; padding-left: 14px; border-left: 2px solid var(--gold); font-style: italic; }
.chair blockquote cite { display: block; font-style: normal; color: var(--muted); font-size: .85rem; margin-top: .2rem; }
@media (max-width: 760px) { .chairs { grid-template-columns: 1fr; } }
.then-now { display: grid; grid-template-columns: 1fr 1.25fr; gap: 16px; align-items: end; }
.then-now figure { margin: 0; }
.then-now figure.bulbs { margin: 14px; }
.then-now img { width: 100%; border-radius: 10px; aspect-ratio: 4 / 3; object-fit: cover; }
.then-now figcaption { margin-top: .6rem; font-size: .9rem; color: var(--muted); }
.then-now figcaption b { color: var(--text); font: italic 750 1rem/1 var(--f-head); margin-right: .4rem; }
@media (max-width: 700px) { .then-now { grid-template-columns: 1fr; } }
.perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.perk { padding: 22px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); }
.perk svg { width: 28px; height: 28px; color: var(--gold); margin-bottom: 14px; }
.perk h3 { font: italic 750 1.2rem/1.15 var(--f-head); margin-bottom: .4rem; }
.perk p { color: var(--muted); font-size: .95rem; margin: 0; }
@media (max-width: 860px) { .perks { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .perks { grid-template-columns: 1fr; } }

/* ---------- booking ---------- */
.booking { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: clamp(24px, 4vw, 48px); align-items: start; }
@media (max-width: 960px) { .booking { grid-template-columns: minmax(0, 1fr); } } /* minmax(0,…) so the 14-day strip scrolls instead of widening the page */
.steps-bar { display: flex; gap: 6px; margin-bottom: 28px; list-style: none; padding: 0; }
.steps-bar li { flex: 1; }
.steps-bar li span { display: block; height: 4px; border-radius: 4px; background: var(--line); transition: background-color .3s; }
.steps-bar li.done span, .steps-bar li.current span { background: var(--gold); }
.steps-bar li small { display: block; margin-top: .5rem; font: 650 .72rem/1.2 var(--f-head); letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.steps-bar li.current small { color: var(--gold); }
@media (max-width: 600px) { .steps-bar li small { display: none; } .steps-bar li.current small { display: block; position: absolute; } .steps-bar { position: relative; padding-bottom: 1.2rem; } }
.step { border: 0; margin: 0; padding: 0; min-width: 0; }
.step[hidden] { display: none; }
.step legend { padding: 0; margin-bottom: .4rem; font: italic 800 clamp(1.7rem, 3vw, 2.3rem)/1.1 var(--f-head); font-stretch: 88%; }
.step legend .k { color: var(--gold); margin-right: .35em; }
.step-hint { color: var(--muted); margin-bottom: 1.4rem; }
.options { display: grid; gap: 10px; }
.options.cols-2 { grid-template-columns: repeat(2, 1fr); }
.options.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 640px) { .options.cols-2, .options.cols-3 { grid-template-columns: 1fr; } }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.opt label {
  display: grid; grid-template-columns: 1fr auto; gap: .2rem 1rem; padding: 16px 18px; border-radius: 12px; cursor: pointer;
  border: 1px solid var(--line); background: var(--panel); transition: border-color .2s, background-color .2s;
}
.opt label:hover { border-color: #5b5560; }
.opt input:checked + label { border-color: var(--gold); background: #1e1a12; box-shadow: inset 0 0 0 1px var(--gold); }
.opt input:focus-visible + label { outline: 3px solid var(--gold-hi); outline-offset: 2px; }
.opt .t { font: italic 750 1.12rem/1.2 var(--f-head); font-stretch: 92%; }
.opt .p { font: 800 1.1rem/1.2 var(--f-head); color: var(--gold); text-align: right; }
.opt .d { grid-column: 1 / -1; color: var(--muted); font-size: .9rem; }
.opt .mono { width: 46px; height: 46px; border-radius: 50%; border: 2px solid var(--gold); display: grid; place-items: center; font: 400 1.1rem/1 var(--f-sign); color: var(--gold); grid-row: span 2; }
.opt.barber label { grid-template-columns: auto 1fr; align-items: center; }
.days { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 12px; scroll-snap-type: x mandatory; margin-bottom: 14px; }
.day {
  flex: none; width: 76px; padding: 10px 0; border-radius: 12px; border: 1px solid var(--line); background: var(--panel); cursor: pointer; text-align: center; scroll-snap-align: start;
}
.day b { display: block; font: 800 1.5rem/1.1 var(--f-head); }
.day small { display: block; font-size: .75rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.day[aria-pressed="true"] { background: var(--gold); border-color: var(--gold); color: #1a1206; }
.day[aria-pressed="true"] small { color: #3a2a0a; }
.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 8px; }
.slot { min-height: 46px; border-radius: 10px; border: 1px solid var(--line); background: var(--panel); cursor: pointer; font: 700 1rem/1 var(--f-head); font-variant-numeric: tabular-nums; }
.slot:hover { border-color: var(--gold); }
.slot[aria-pressed="true"] { background: var(--gold); color: #1a1206; border-color: var(--gold); }
.slot-group { margin-bottom: 16px; }
.slot-group h4 { margin: 0 0 8px; font: 650 .75rem/1 var(--f-head); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field { display: grid; gap: .4rem; margin-bottom: 16px; }
.field label { font-weight: 600; }
.field input, .field textarea {
  width: 100%; min-height: 50px; padding: .75rem .95rem; border-radius: 10px; border: 1px solid #3a3640; background: var(--panel); color: var(--text);
}
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold); outline: none; box-shadow: 0 0 0 3px rgba(242, 181, 48, .25); }
.field .err { color: #ff8a95; font-size: .88rem; }
.field input[aria-invalid="true"] { border-color: #ff6b78; }
.step-actions { display: flex; justify-content: space-between; gap: .75rem; margin-top: 26px; flex-wrap: wrap; }
.summary { position: sticky; top: 90px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.summary h2 { font: italic 800 1.3rem/1.1 var(--f-head); margin-bottom: 14px; }
.summary dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: .55rem 1rem; }
.summary dt { color: var(--muted); font-size: .9rem; }
.summary dd { margin: 0; text-align: right; font-weight: 600; }
.summary .total { margin-top: 14px; padding-top: 14px; border-top: 1px dashed #3a3640; display: flex; justify-content: space-between; font: 800 1.15rem/1 var(--f-head); }
.summary .total span:last-child { color: var(--gold); }
@media (max-width: 960px) { .summary { position: static; } }
.pay-box { padding: 20px; border-radius: 14px; border: 1px solid #3a3226; background: linear-gradient(160deg, #1b1812, #121114); margin-bottom: 16px; }
.pay-box .row { display: flex; justify-content: space-between; padding: .45rem 0; }
.pay-box .row.big { font: 800 1.3rem/1 var(--f-head); color: var(--gold); border-top: 1px dashed #3a3226; margin-top: .4rem; padding-top: .8rem; }
.confirm { text-align: center; max-width: 620px; margin: 0 auto; }
.confirm .tick { width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: var(--gold); color: #1a1206; }
.confirm .tick svg { width: 44px; height: 44px; }
.confirm .ref { font: 800 1.1rem/1 var(--f-head); letter-spacing: .12em; color: var(--gold); }
.confirm .cta-row { justify-content: center; margin-top: 1.4rem; }
.my-bookings { margin-top: 42px; }
.my-bookings ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.my-bookings li { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 14px 16px; border-radius: 12px; background: var(--panel); border: 1px solid var(--line); flex-wrap: wrap; }
.walkin-banner { display: flex; gap: 1rem; align-items: center; justify-content: space-between; flex-wrap: wrap; padding: 18px 20px; border-radius: 14px; background: var(--panel); border: 1px solid var(--line); margin-bottom: 30px; }
.walkin-banner p { margin: 0; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details { background: var(--night); border: 1px solid var(--line); border-radius: 12px; padding: 0 20px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; display: flex; justify-content: space-between; gap: 1rem; font: italic 750 1.15rem/1.25 var(--f-head); font-stretch: 92%; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); font: 700 1.5rem/1 var(--f-body); }
.faq details[open] summary::after { content: "–"; }
.faq p { color: var(--muted); padding-bottom: 18px; margin: 0; }
.faq a { color: var(--gold); }

/* ---------- map ---------- */
.map-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--panel); aspect-ratio: 4 / 3; }
.map-frame .map-fallback { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 20px; color: var(--muted); }
.map-frame .map-fallback a { color: var(--gold); font-weight: 600; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.4) contrast(1.05); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band .sign-type { font-size: clamp(2.4rem, 7vw, 5rem); display: block; margin-bottom: 1rem; }
.cta-band p { color: var(--muted); max-width: 48ch; margin: 0 auto 1.8rem; }
.cta-band .cta-row { justify-content: center; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: 56px 36px; background: #09090b; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 32px; }
.site-footer h2 { font: 650 .75rem/1 var(--f-head); letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .45rem; }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--text); }
.site-footer .brand .sign-type { font-size: 2rem; }
.foot-note { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; color: var(--muted); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .foot-grid { grid-template-columns: 1fr; } }

/* ---------- touch: every control at least 44px tall ---------- */
@media (pointer: coarse), (max-width: 760px) {
  .btn-sm { min-height: 44px; }
  .chip { min-height: 44px; }
  .link-arrow { min-height: 44px; }
  .status-pill { min-height: 40px; }
  .brand { padding-block: 8px; }
  .contact-list a, .site-footer li a { display: inline-flex; align-items: center; min-height: 44px; }
  .site-footer ul { gap: 0; }
  .site-footer li:not(:has(a)) { padding-block: .3rem; }
  .faq p a { display: inline-block; padding-block: 10px; }
}
@media (max-width: 350px) { .site-header .status-pill { display: none; } }

/* ---------- phone polish ---------- */
@media (max-width: 960px) {
  /* booking: keep Back / Continue under the thumb while the options scroll */
  .step-actions {
    position: sticky; bottom: 0; z-index: 5; margin-inline: calc(-1 * var(--gutter)); padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
    background: rgba(11, 11, 13, .94); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  }
  .step-actions .btn { flex: 1; }
}
@media (max-width: 520px) {
  .hero .cta-row .btn, .cta-band .cta-row .btn, .visit-card .cta-row .btn { flex: 1 1 100%; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .foot-grid > div:nth-child(-n+2) { grid-column: 1 / -1; }
}

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .marquee-track [aria-hidden="true"] { display: none; }
  .marquee-track q { white-space: normal; }
}
