:root {
  --ink: #0e0c0a;
  --ink-2: #16130f;
  --ink-3: #201b16;
  --bone: #efe6d8;
  --bone-dim: #b9ae9d;
  --muted: #7d7365;
  --brass: #c9a063;
  --brass-hi: #e4c48d;
  --red: #b3322b;
  --line: rgba(239, 230, 216, 0.14);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Manrope", system-ui, sans-serif;
  --gutter: clamp(16px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .1, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font: 400 17px/1.6 var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 500; line-height: 1.05; }
p { margin: 0; }
em { font-style: italic; color: var(--brass); }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }

.wrap { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: clamp(80px, 12vw, 160px) 0; }
.section__head { margin-bottom: clamp(40px, 6vw, 72px); }
.section__title { font-size: clamp(40px, 6.4vw, 88px); letter-spacing: -0.02em; }
.eyebrow {
  font: 600 12px/1 var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }

/* split-text wrappers created by JS */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.split .w > span { display: inline-block; will-change: transform; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 26px;
  border-radius: 999px;
  font: 600 14px/1 var(--sans);
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--brass { background: var(--brass); color: var(--ink); }
.btn--brass:hover { background: var(--brass-hi); }
.btn--ghost { border-color: var(--line); color: var(--bone); }
.btn--ghost:hover { border-color: var(--brass); color: var(--brass); }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: grid; place-content: center; justify-items: center; gap: 22px;
}
.loader__pole { width: 26px; height: 120px; border-radius: 13px; overflow: hidden; border: 2px solid var(--brass); }
.loader__pole span {
  display: block; height: 200%;
  background: repeating-linear-gradient(-45deg, var(--red) 0 10px, var(--bone) 10px 20px, #2a4a8a 20px 30px, var(--bone) 30px 40px);
  animation: pole 1s linear infinite;
}
@keyframes pole { to { transform: translateY(-56.5px); } }
.loader__count { font: 500 14px/1 var(--sans); letter-spacing: .2em; color: var(--bone-dim); }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 18px var(--gutter);
  transition: background .4s, padding .4s, transform .5s var(--ease);
}
.nav.is-scrolled { background: rgba(14, 12, 10, 0.82); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding-top: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.nav.is-hidden { transform: translateY(-100%); }
.nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font: 600 20px/1 var(--serif); letter-spacing: .01em; }
.nav__logo svg { width: 32px; height: 32px; color: var(--brass); }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { text-decoration: none; font-size: 14px; color: var(--bone-dim); position: relative; transition: color .3s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 1px; background: var(--brass); transform: scaleX(0); transform-origin: right; transition: transform .4s var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--bone); }
.nav__links a:hover::after, .nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { padding: 12px 20px; }
.nav__toggle { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; margin-left: auto; }
.nav__toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--bone); transition: transform .4s var(--ease); }
.nav__toggle span:first-child { top: 17px; }
.nav__toggle span:last-child { top: 25px; }
.nav.is-open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; height: 100vh; height: 100svh; }
.hero__stage { position: relative; height: 100vh; height: 100svh; overflow: hidden; }
#frames { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__grain {
  position: absolute; inset: -50%; pointer-events: none; opacity: .07;
  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='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1s steps(4) infinite;
}
@keyframes grain { 25% { transform: translate(-3%, 2%); } 50% { transform: translate(2%, -3%); } 75% { transform: translate(-1%, 3%); } }
.hero__copy {
  position: absolute; left: var(--gutter); bottom: clamp(80px, 11vh, 130px);
  max-width: 620px; z-index: 2;
}
.hero__title { font-size: clamp(52px, min(10vw, 12vh), 160px); font-weight: 300; line-height: .88; letter-spacing: -0.035em; margin-bottom: 28px; }
.hero__title .line { display: block; overflow: hidden; padding-bottom: .06em; }
.hero__title .line > span { display: inline-block; }
.hero__title .line:nth-child(odd) { font-weight: 700; }
.hero__lede { max-width: 440px; color: var(--bone-dim); font-size: 17px; margin-bottom: 32px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__second {
  position: absolute; left: var(--gutter); top: 0; bottom: 0;
  display: flex; flex-direction: column; justify-content: center;
  z-index: 2; opacity: 0; visibility: hidden; max-width: 700px; pointer-events: none;
}
.hero__big { font: 300 clamp(44px, 7vw, 104px)/.95 var(--serif); letter-spacing: -0.03em; }
.hero__hud {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: 28px; z-index: 2;
  display: flex; align-items: center; gap: 18px;
  font: 500 11px/1 var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--muted);
}
.hero__hud b { color: var(--bone); font-weight: 600; font-variant-numeric: tabular-nums; }
.hero__bar { flex: 1; height: 1px; background: var(--line); position: relative; overflow: hidden; }
.hero__bar i { position: absolute; inset: 0; background: var(--brass); transform-origin: left; transform: scaleX(0); }
.hero__cue { display: flex; align-items: center; gap: 8px; }
.hero__cue::after { content: ""; width: 1px; height: 22px; background: linear-gradient(var(--brass), transparent); animation: cue 1.6s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 22px 0; background: var(--ink-2); }
.marquee__track { display: flex; width: max-content; align-items: center; }
.marquee__track > * { margin-right: 36px; }
.marquee__track span { font: 400 clamp(28px, 4vw, 52px)/1 var(--serif); font-style: italic; white-space: nowrap; }
.marquee__track i { font-style: normal; color: var(--brass); font-size: 22px; }

/* ---------- about ---------- */
.about__statement {
  font: 400 clamp(28px, 3.9vw, 54px)/1.18 var(--serif);
  letter-spacing: -0.015em;
  max-width: 1100px;
  margin-bottom: clamp(60px, 9vw, 120px);
}
.about__statement .word { opacity: .14; transition: none; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.stat { padding: 32px 24px 0 0; }
.stat + .stat { padding-left: 24px; border-left: 1px solid var(--line); }
.stat b { display: block; font: 300 clamp(44px, 5.4vw, 76px)/1 var(--serif); color: var(--brass); margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.stat span { font-size: 14px; color: var(--bone-dim); }

/* ---------- services ---------- */
.services { background: var(--ink-2); }
.tabs { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--line); border-radius: 999px; margin-bottom: 40px; }
.tabs button { background: none; border: 0; padding: 10px 20px; border-radius: 999px; font-size: 14px; font-weight: 600; color: var(--bone-dim); transition: background .3s, color .3s; }
.tabs button[aria-selected="true"] { background: var(--bone); color: var(--ink); }
.menu { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.menu__item {
  display: grid; grid-template-columns: 1fr auto auto; gap: 24px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid var(--line);
  position: relative; transition: padding .4s var(--ease);
}
.menu__item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(201,160,99,.1), transparent 70%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.menu__item:hover { padding-left: 16px; }
.menu__item:hover::before { opacity: 1; }
.menu__item h3 { font-size: clamp(22px, 2.4vw, 30px); margin-bottom: 6px; }
.menu__item p { color: var(--bone-dim); font-size: 15px; }
.menu__time { font-size: 13px; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.menu__price { font: 500 clamp(22px, 2.4vw, 30px)/1 var(--serif); color: var(--brass); min-width: 90px; text-align: right; }

/* ---------- ritual (horizontal pin) ---------- */
.ritual { position: relative; overflow: hidden; }
.ritual__pin { width: max-content; height: 100vh; height: 100svh; display: flex; align-items: center; gap: clamp(40px, 6vw, 100px); padding-left: var(--gutter); }
.ritual__intro { flex: 0 0 min(360px, 32vw); }
.ritual__progress { margin-top: 40px; height: 2px; background: var(--line); width: 160px; }
.ritual__progress i { display: block; height: 100%; background: var(--brass); transform-origin: left; transform: scaleX(0); }
.ritual__track { display: flex; gap: 24px; padding-right: var(--gutter); }
.step {
  flex: 0 0 clamp(300px, 34vw, 440px);
  min-height: 460px;
  padding: 40px 36px;
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: 20px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.step::after { content: ""; position: absolute; width: 280px; height: 280px; right: -120px; top: -120px; border-radius: 50%; background: radial-gradient(circle, rgba(201,160,99,.18), transparent 70%); }
.step__num { font: 300 96px/1 var(--serif); color: transparent; -webkit-text-stroke: 1px var(--brass); margin-bottom: auto; }
.step__icon { width: 56px; height: 56px; fill: none; stroke: var(--brass); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin: 40px 0 24px; }
.step h3 { font-size: 36px; margin-bottom: 12px; }
.step p { color: var(--bone-dim); font-size: 15px; }

/* ---------- barbers ---------- */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.barber__portrait {
  aspect-ratio: 3 / 4; border-radius: 16px; margin-bottom: 20px; overflow: hidden; position: relative;
  background:
    radial-gradient(ellipse 50% 38% at 50% 38%, hsl(var(--hue) 30% 32%), transparent 72%),
    radial-gradient(ellipse 80% 60% at 50% 110%, hsl(var(--hue) 25% 22%), transparent 70%),
    linear-gradient(160deg, var(--ink-3), var(--ink));
  display: grid; place-items: center;
  transition: transform .6s var(--ease);
}
.barber__portrait::before {
  content: ""; position: absolute; width: 42%; aspect-ratio: 1; border-radius: 50%; top: 22%;
  background: linear-gradient(160deg, hsl(var(--hue) 20% 40%), hsl(var(--hue) 20% 16%));
  box-shadow: 0 170px 0 60px hsl(var(--hue) 18% 18%);
  opacity: .8;
}
.barber__portrait span { position: relative; font: 700 64px/1 var(--serif); color: var(--bone); mix-blend-mode: overlay; opacity: .9; }
.barber:hover .barber__portrait { transform: translateY(-8px); }
.barber h3 { font-size: 26px; margin-bottom: 4px; }
.barber__role { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--brass); margin-bottom: 8px; }
.barber__spec { font-size: 15px; color: var(--bone-dim); }

/* ---------- gallery ---------- */
.gallery { overflow: hidden; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 0 var(--gutter); max-width: 1400px; margin: 0 auto; }
.gallery__col { display: flex; flex-direction: column; gap: 20px; will-change: transform; }
.tile {
  margin: 0; aspect-ratio: 4 / 3; border-radius: 16px; position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(115deg, rgba(255,255,255,.03) 0 2px, transparent 2px 9px),
    radial-gradient(ellipse at 30% 20%, var(--b), transparent 65%),
    linear-gradient(160deg, var(--a), #0b0a08);
}
.tile--tall { aspect-ratio: 3 / 4; }
.gallery__grid { counter-reset: tile; }
.tile::before {
  counter-increment: tile; content: "0" counter(tile);
  position: absolute; top: 14px; right: 18px;
  font: 300 clamp(44px, 5vw, 72px)/1 var(--serif);
  color: transparent; -webkit-text-stroke: 1px rgba(239, 230, 216, .3);
}
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(9, 8, 7, .75));
}
.tile figcaption { z-index: 1; }
.tile figcaption {
  position: absolute; left: 18px; bottom: 16px; right: 18px;
  font: 500 20px/1 var(--serif); display: flex; justify-content: space-between; align-items: end;
}
.tile figcaption::after { content: "↗"; font-family: var(--sans); font-size: 16px; color: var(--brass); opacity: 0; transform: translate(-6px, 6px); transition: .4s var(--ease); }
.tile:hover figcaption::after { opacity: 1; transform: none; }

/* ---------- membership ---------- */
.membership { background: var(--ink-2); }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan { padding: 40px 32px; border: 1px solid var(--line); border-radius: 20px; display: flex; flex-direction: column; position: relative; background: var(--ink); }
.plan--featured { border-color: var(--brass); background: linear-gradient(180deg, rgba(201,160,99,.09), var(--ink) 60%); }
.plan__tag { position: absolute; top: -12px; left: 32px; background: var(--brass); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; }
.plan h3 { font-size: 30px; margin-bottom: 16px; }
.plan__price { color: var(--bone-dim); margin-bottom: 28px; }
.plan__price b { font: 300 56px/1 var(--serif); color: var(--bone); }
.plan ul { list-style: none; padding: 0; margin: 0 0 36px; flex: 1; }
.plan li { padding: 10px 0 10px 26px; border-top: 1px solid var(--line); position: relative; font-size: 15px; color: var(--bone-dim); }
.plan li::before { content: "✦"; position: absolute; left: 0; color: var(--brass); font-size: 12px; top: 13px; }

/* ---------- reviews ---------- */
.reviews { text-align: left; }
.reviews__stage { display: grid; min-height: 260px; }
.quote { grid-area: 1 / 1; margin: 0; opacity: 0; visibility: hidden; }
.quote.is-active { opacity: 1; visibility: visible; }
.quote p { font: 300 clamp(30px, 4.4vw, 62px)/1.12 var(--serif); letter-spacing: -0.02em; max-width: 1050px; margin-bottom: 28px; }
.quote cite { font-style: normal; color: var(--brass); font-size: 15px; letter-spacing: .06em; }
.reviews__nav { display: flex; gap: 10px; margin-top: 40px; }
.dot { width: 36px; height: 4px; border-radius: 2px; border: 0; background: var(--line); padding: 0; position: relative; overflow: hidden; }
.dot::after { content: ""; position: absolute; inset: 0; background: var(--brass); transform: scaleX(0); transform-origin: left; }
.dot.is-active::after { animation: dotfill 6s linear forwards; }
@keyframes dotfill { to { transform: scaleX(1); } }

/* ---------- booking ---------- */
.book { background: var(--ink-2); }
.book__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: start; }
.book__lede { color: var(--bone-dim); margin: 28px 0 20px; max-width: 440px; }
.book__phone { color: var(--bone-dim); }
.book__phone a { color: var(--brass); }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: clamp(24px, 4vw, 40px); border: 1px solid var(--line); border-radius: 20px; background: var(--ink); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.field input, .field select {
  font: 500 16px/1.2 var(--sans); color: var(--bone);
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px; width: 100%; min-width: 0; appearance: none; -webkit-appearance: none;
  transition: border-color .3s;
  color-scheme: dark;
}
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--brass) 50%), linear-gradient(-45deg, transparent 50%, var(--brass) 50%); background-position: calc(100% - 20px) 50%, calc(100% - 15px) 50%; background-size: 5px 5px; background-repeat: no-repeat; padding-right: 36px; }
.field input:focus, .field select:focus { outline: none; border-color: var(--brass); }
.field.is-invalid input, .field.is-invalid select { border-color: var(--red); }
.form__submit { grid-column: 1 / -1; margin-top: 8px; padding: 18px; }
.form__msg { grid-column: 1 / -1; font-size: 15px; min-height: 1.6em; color: var(--brass); }
.form__msg.is-error { color: #e0695f; }

/* ---------- visit ---------- */
.visit__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.visit__addr { color: var(--bone-dim); margin: 24px 0 32px; }
.hours { border-collapse: collapse; width: 100%; max-width: 420px; }
.hours th, .hours td { text-align: left; padding: 14px 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.hours th { color: var(--bone-dim); font-weight: 400; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.visit__open { margin-top: 22px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.visit__open::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.visit__open.is-open::before { background: #5ec27a; box-shadow: 0 0 0 4px rgba(94,194,122,.2); }
.map { border: 1px solid var(--line); border-radius: 20px; overflow: hidden; background: var(--ink-3); aspect-ratio: 4 / 3; }
.map svg { width: 100%; height: 100%; }
.map__streets path { stroke: var(--line); stroke-width: 14; fill: none; }
.map__labels text { fill: var(--muted); font: 600 10px var(--sans); letter-spacing: .12em; text-transform: uppercase; }
.map__pin { fill: var(--brass); stroke: var(--ink); stroke-width: 3; }
.map__ping { fill: var(--brass); opacity: .4; transform-origin: 270px 160px; animation: ping 2s var(--ease) infinite; }
@keyframes ping { from { transform: scale(1); opacity: .5; } to { transform: scale(4); opacity: 0; } }

/* ---------- faq ---------- */
.faq__wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: clamp(40px, 7vw, 110px); }
.faq__list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; padding: 26px 40px 26px 0; font: 500 clamp(20px, 2vw, 24px)/1.3 var(--serif); position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font: 300 28px/1 var(--sans); color: var(--brass); transition: transform .4s var(--ease); }
details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
details p { color: var(--bone-dim); padding: 0 40px 26px 0; }

/* ---------- footer ---------- */
.footer { padding-top: 90px; border-top: 1px solid var(--line); overflow: hidden; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer h3 { font-size: 28px; margin-bottom: 14px; }
.footer p, .footer a { color: var(--bone-dim); font-size: 15px; text-decoration: none; }
.footer a:hover { color: var(--brass); }
.footer__links, .footer__social { display: flex; flex-direction: column; gap: 10px; }
.footer .footer__word { font: 900 clamp(48px, 14.5vw, 240px)/.8 var(--serif); letter-spacing: -0.05em; text-align: center; margin: 60px 0 0; white-space: nowrap; color: transparent; background: linear-gradient(180deg, #3a3026, var(--ink) 92%); -webkit-background-clip: text; background-clip: text; }
.footer__legal { padding-top: 24px; padding-bottom: 28px; font-size: 13px; color: var(--muted); }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .nav__links {
    /* sized explicitly: the nav's transform/backdrop-filter would otherwise trap a fixed child */
    position: absolute; top: 0; left: 0; width: 100vw; height: 100vh; height: 100dvh; z-index: -1;
    flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px;
    padding: 0 var(--gutter);
    background: var(--ink);
    clip-path: circle(0 at calc(100% - 40px) 40px);
    transition: clip-path .7s var(--ease);
  }
  .nav__links a { font: 400 clamp(34px, 8vw, 52px)/1.1 var(--serif); color: var(--bone); }
  .nav.is-open .nav__links { clip-path: circle(150% at calc(100% - 40px) 40px); }
  .nav__toggle { display: block; margin-left: auto; }
  .nav__cta { margin-left: 0; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { padding-top: 32px; }
}
@media (max-width: 820px) {
  .ritual__pin { width: auto; height: auto; flex-direction: column; align-items: stretch; padding: 100px var(--gutter); }
  .ritual__intro { flex: none; }
  .ritual__progress { display: none; }
  .ritual__track { flex-direction: column; padding-right: 0; }
  .step { flex: none; min-height: 0; }
  .step__num { margin-bottom: 0; font-size: 72px; }
  .plans, .book__grid, .visit__grid, .faq__wrap { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__col:nth-child(3) { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__top > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav { gap: 12px; }
  .nav__logo span { display: none; }
  .nav__cta { padding: 10px 16px; font-size: 13px; margin-left: auto; }
  .nav__toggle { margin-left: 0; }
  .hero__copy { right: var(--gutter); bottom: 80px; }
  .hero__second { right: var(--gutter); justify-content: flex-end; padding-bottom: 96px; }
  .hero__lede { font-size: 15px; }
  .team { gap: 16px; }
  .barber h3 { font-size: 20px; }
  .barber__portrait span { font-size: 44px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding-right: 12px; }
  .stat + .stat { padding-left: 12px; }
  .stat:nth-child(3) { padding-left: 0; }
  .menu__item { grid-template-columns: 1fr auto; gap: 6px 16px; }
  .menu__time { grid-row: 2; }
  .menu__price { grid-row: 1; grid-column: 2; min-width: 0; }
  .form { grid-template-columns: 1fr; }
  .gallery__grid { gap: 12px; }
  .gallery__col { gap: 12px; }
  .tile figcaption { font-size: 15px; left: 12px; bottom: 12px; }
  .footer__top { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .about__statement .word { opacity: 1; }
}

/* =========================================================
   Trim It content additions (same design language)
   ========================================================= */
.hero__lede strong { color: var(--bone); font-weight: 600; }
.hero__lede a { color: var(--brass); text-decoration: none; font-weight: 600; white-space: nowrap; }
.hero__lede a:hover { color: var(--brass-hi); }

/* three stats instead of four */
.stats--3 { grid-template-columns: repeat(3, 1fr); }
.stats--3 .stat:nth-child(n) { padding-top: 32px; }
.stats--3 .stat + .stat { padding-left: 24px; border-left: 1px solid var(--line); }

/* note under the service menu */
.menu__note { margin-top: 32px; color: var(--bone-dim); font-size: 15px; }
.menu__note a { color: var(--brass); text-decoration: none; border-bottom: 1px solid rgba(201, 160, 99, .35); }
.menu__note a:hover { color: var(--brass-hi); }

/* two team cards, kept at the original card size */
.team--duo { grid-template-columns: repeat(2, minmax(0, 300px)); }

/* highlight tiles are not links, so no hover arrow; allow longer captions */
.tile figcaption { font-size: clamp(18px, 1.7vw, 24px); line-height: 1.2; }
.tile figcaption::after { content: none; }

/* live map, tinted to sit in the dark palette */
.map iframe {
  display: block; width: 100%; height: 100%; border: 0;
  filter: grayscale(.2) invert(.9) hue-rotate(180deg) contrast(.92) brightness(.95);
}
.hours a { color: var(--brass); text-decoration: none; }
.hours a:hover { color: var(--brass-hi); }
.visit__open::before { background: var(--brass); box-shadow: 0 0 0 4px rgba(201, 160, 99, .18); }

/* notes field in the booking form */
.field--full { grid-column: 1 / -1; }
.field textarea {
  font: 500 16px/1.4 var(--sans); color: var(--bone);
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px; width: 100%; resize: vertical; min-height: 96px;
  transition: border-color .3s;
}
.field textarea:focus { outline: none; border-color: var(--brass); }

@media (max-width: 560px) {
  .hide-sm { display: none; }
  .stats--3 .stat + .stat { padding-left: 12px; }
  .stats--3 .stat b { font-size: 40px; }
  .team--duo { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
