@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,300..800&family=Fraunces:ital,opsz,wght@1,9..144,400..600&family=Inter:wght@400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
sup { font-size: 0.55em; vertical-align: 0.55em; line-height: 0; }

:root {
  --paper:       #EFEBE0;
  --paper-2:     #E8E2D3;
  --paper-3:     #DFD8C6;
  --ink:         #0E0D0B;
  --ink-2:       #1A1815;
  --ink-soft:    rgba(14,13,11,0.68);
  --ink-muted:   rgba(14,13,11,0.42);
  --line:        rgba(14,13,11,0.14);
  --line-strong: rgba(14,13,11,0.26);

  --hot:         #C8623A;
  --hot-deep:    #9C4826;
  --steel:       #6D6862;

  --s1: 4px; --s2: 8px; --s3: 16px; --s4: 24px;
  --s5: 32px; --s6: 48px; --s7: 64px; --s8: 80px;
  --s10: 96px; --s12: 120px; --s14: 160px; --s16: 200px;

  --max:      1240px;
  --max-wide: 1440px;
  --pad-x:    clamp(24px, 5vw, 56px);

  --dur-fast: 200ms;
  --dur-base: 400ms;
  --dur-slow: 900ms;
  --ease-std: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);

  --font-display: 'Bricolage Grotesque', 'Helvetica Neue', system-ui, sans-serif;
  --font-italic:  'Fraunces', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.04 0 0 0 0 0.03 0 0 0 0.55 0'/></filter><rect width='240' height='240' filter='url(%23n)' opacity='0.7'/></svg>");
  opacity: 0.35;
  mix-blend-mode: multiply;
}
body > * { position: relative; z-index: 2; }

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

.ital {
  font-family: var(--font-italic);
  font-style: italic;
  font-weight: 500;
  color: var(--hot);
  letter-spacing: -0.02em;
}

.lab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
}
.lab--hot { color: var(--hot); }
.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--hot);
  border-radius: 50%;
  transform: translateY(-1px);
}

/* ── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 50;
  height: 68px;
  display: flex;
  align-items: center;
  transition: background-color var(--dur-base), box-shadow var(--dur-base);
}
.nav.scrolled {
  background: rgba(239, 235, 224, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  max-width: var(--max-wide);
  width: 100%;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s5);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: "wdth" 92;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s6);
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--dur-fast);
}
.nav-links a:hover { color: var(--hot); }
.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding-inline: 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  transition: background-color var(--dur-fast) var(--ease-out);
}
.cta-arrow { transition: transform var(--dur-fast) var(--ease-out); }
.nav-cta:hover { background: var(--hot); }
.nav-cta:hover .cta-arrow { transform: translateX(4px); }

/* ── Typographic Hero ────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 96px var(--pad-x) var(--s5);
  gap: var(--s5);
  position: relative;
}
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--s3);
  border-block: 1px solid var(--ink);
  gap: var(--s4);
  max-width: var(--max-wide);
  width: 100%;
  margin-inline: auto;
}
.hero-mark {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink);
}
.hero-mark-r { color: var(--ink-muted); }

.hero-word-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: var(--max-wide);
  width: 100%;
  margin-inline: auto;
  padding-block: var(--s7);
  position: relative;
}
.hero-word {
  font-family: var(--font-display);
  font-size: clamp(120px, 24vw, 380px);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.06em;
  color: var(--ink);
  text-align: center;
  display: flex;
  font-variation-settings: "wdth" 88, "opsz" 96;
}
.hl {
  display: inline-block;
  opacity: 0;
  filter: blur(18px);
  transform: translateY(20px);
  transition:
    opacity 900ms var(--ease-std),
    filter 900ms var(--ease-std),
    transform 900ms var(--ease-std);
}
.hl.in {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.hero-tag {
  margin-top: var(--s5);
  font-family: var(--font-italic);
  font-style: italic;
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--ink-soft);
  letter-spacing: -0.01em;
}

.hero-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  padding-top: var(--s4);
  border-top: 1px solid var(--ink);
  max-width: var(--max-wide);
  width: 100%;
  margin-inline: auto;
}
.hero-b-col .lab { margin-bottom: var(--s2); }
.hero-b-col--r { text-align: right; }
.hero-b-val {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
  font-variation-settings: "wdth" 95;
}
.hero-b-val--hot { color: var(--hot); }
.hero-b-cta {
  display: inline-block;
  margin-top: var(--s2);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 3px;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}
.hero-b-cta:hover { color: var(--hot); border-color: var(--hot); }

/* ── Cinematic chair ─────────────────────────────────────────── */
.chair {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.chair-photo {
  position: relative;
  aspect-ratio: 21/9;
  max-height: 780px;
  overflow: hidden;
}
.chair-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  will-change: transform;
  transition: transform 1200ms linear;
}
.chair-caption {
  display: flex;
  align-items: center;
  gap: var(--s5);
  padding: var(--s5) var(--pad-x);
  max-width: var(--max-wide);
  margin-inline: auto;
}
.chair-caption .lab { color: rgba(239, 235, 224, 0.65); }
.chair-caption .dot { background: var(--hot); }
.chair-text {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 20px;
  color: var(--paper);
  letter-spacing: -0.01em;
}

/* ── Marquee ─────────────────────────────────────────────────── */
.strip {
  background: var(--paper);
  padding-block: var(--s4);
  border-block: 1px solid var(--ink);
  overflow: hidden;
}
.strip-track {
  display: flex;
  width: max-content;
  animation: strip-scroll 34s linear infinite;
}
@keyframes strip-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.strip-row {
  display: flex;
  align-items: center;
  gap: var(--s5);
  padding-inline: var(--s4);
  white-space: nowrap;
}
.strip-item {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 90;
  text-transform: uppercase;
}
.strip-mark {
  color: var(--hot);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
}

/* ── Services ────────────────────────────────────────────────── */
.services {
  padding: var(--s14) var(--pad-x);
  max-width: var(--max);
  margin-inline: auto;
}
.svc-head { max-width: 780px; margin-bottom: var(--s10); }
.svc-head .lab { margin-bottom: var(--s4); }
.svc-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.5vw, 108px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: var(--s4);
  font-variation-settings: "wdth" 88, "opsz" 96;
}
.svc-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52ch;
}
.svc-list {
  display: flex;
  flex-direction: column;
}
.svc-row {
  display: grid;
  grid-template-columns: 60px 1fr auto auto;
  gap: var(--s5);
  align-items: baseline;
  padding-block: var(--s6);
  border-top: 1px solid var(--ink);
  transition: background-color var(--dur-fast);
}
.svc-list li:last-child { border-bottom: 1px solid var(--ink); }
.svc-row:hover { background: rgba(200, 98, 58, 0.06); }
.svc-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--hot);
  font-variation-settings: "wdth" 92;
}
.svc-body { min-width: 0; }
.svc-name {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: var(--s3);
  font-variation-settings: "wdth" 90, "opsz" 72;
}
.svc-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 54ch;
}
.svc-dots {
  align-self: end;
  border-bottom: 1.5px dotted rgba(14,13,11,0.34);
  height: 0;
  min-width: 40px;
  margin-bottom: 14px;
}
.svc-price {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 92;
  white-space: nowrap;
}

/* ── The Shop ────────────────────────────────────────────────── */
.shop {
  background: var(--paper-2);
  padding: var(--s14) var(--pad-x);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.shop-head { max-width: var(--max); margin-inline: auto; margin-bottom: var(--s10); }
.shop-head .lab { margin-bottom: var(--s4); }
.shop-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 20ch;
  font-variation-settings: "wdth" 88, "opsz" 96;
}
.shop-grid {
  max-width: var(--max);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s5);
}
.shop-a { grid-column: 1; grid-row: 1; aspect-ratio: 3/2; }
.shop-b { grid-column: 2; grid-row: 1; aspect-ratio: 3/4; }
.shop-c { grid-column: 2; grid-row: 2; aspect-ratio: 3/2; }
.shop-copy {
  grid-column: 1;
  grid-row: 2;
  padding-top: var(--s5);
}
.shop-copy p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: var(--s4);
  max-width: 52ch;
}
.shop-grid figure {
  position: relative;
  overflow: hidden;
  background: var(--paper-3);
}
.shop-grid figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-std);
}
.shop-grid figure:hover img { transform: scale(1.04); }
.shop-grid figcaption {
  position: absolute;
  bottom: var(--s3);
  left: var(--s3);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239, 235, 224, 0.95);
  background: rgba(14, 13, 11, 0.42);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
}

/* ── Marcus / the barber ─────────────────────────────────────── */
.barber {
  padding: var(--s14) var(--pad-x);
  max-width: var(--max);
  margin-inline: auto;
}
.barber-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 8vw, 128px);
  align-items: start;
}
.barber-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-3);
}
.barber-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.barber-photo figcaption {
  position: absolute;
  bottom: var(--s3);
  left: var(--s3);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239, 235, 224, 0.95);
  background: rgba(14, 13, 11, 0.42);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
}
.barber-copy .lab { margin-bottom: var(--s4); }
.barber-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 84px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: var(--s3);
  font-variation-settings: "wdth" 90, "opsz" 96;
}
.barber-attr {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: var(--s6);
}
.barber-body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: var(--s4);
  max-width: 54ch;
}
.barber-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-top: var(--s7);
  padding-top: var(--s5);
  border-top: 1px solid var(--ink);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 64px);
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-variation-settings: "wdth" 88, "opsz" 96;
}
.stat-num sup { color: var(--hot); font-weight: 700; }
.stat-lab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: var(--s3);
}

/* ── Signature (Hot Towel Shave) ─────────────────────────────── */
.signature {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}
.sig-bg {
  position: absolute;
  inset: 0;
}
.sig-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}
.sig-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin-inline: auto;
  padding: var(--s10) var(--pad-x);
  width: 100%;
}
.sig-content .lab { margin-bottom: var(--s4); color: var(--hot); }
.sig-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: var(--paper);
  margin-bottom: var(--s5);
  font-variation-settings: "wdth" 88, "opsz" 144;
  max-width: 12ch;
}
.sig-title .ital { color: var(--hot); }
.sig-body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.72;
  color: rgba(239, 235, 224, 0.86);
  max-width: 52ch;
  margin-bottom: var(--s6);
}
.sig-actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
}
.sig-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: rgba(239, 235, 224, 0.72);
  letter-spacing: 0.02em;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding-inline: 30px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast), transform var(--dur-fast);
}
.btn--hot {
  background: var(--hot);
  color: var(--paper);
}
.btn--hot:hover { background: var(--paper); color: var(--ink); }
.btn--big { height: 64px; padding-inline: 40px; font-size: 13px; }

/* ── Regulars ────────────────────────────────────────────────── */
.regulars {
  padding: var(--s14) var(--pad-x);
  max-width: var(--max-wide);
  margin-inline: auto;
}
.reg-head { max-width: 900px; margin-bottom: var(--s10); }
.reg-head .lab { margin-bottom: var(--s4); }
.reg-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variation-settings: "wdth" 88, "opsz" 96;
  max-width: 20ch;
}
.reg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  padding-top: var(--s6);
  border-top: 1px solid var(--ink);
}
.reg-quote {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  padding-right: var(--s3);
}
.reg-quote p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.reg-quote footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reg-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  font-variation-settings: "wdth" 92;
}
.reg-src {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--hot);
}

/* ── Book ────────────────────────────────────────────────────── */
.book {
  background: var(--ink);
  color: var(--paper);
  padding: var(--s14) 0;
  border-top: 1px solid var(--hot);
}
.book-inner {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: var(--pad-x);
  text-align: center;
}
.book-inner .lab { margin-bottom: var(--s5); }
.book-title {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 132px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--paper);
  margin-bottom: var(--s5);
  font-variation-settings: "wdth" 88, "opsz" 144;
}
.book-title .ital { color: var(--hot); }
.book-body {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 22px;
  color: rgba(239, 235, 224, 0.82);
  max-width: 44ch;
  margin-inline: auto;
  margin-bottom: var(--s10);
}
.book-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
  padding: var(--s6) 0;
  border-block: 1px solid rgba(239, 235, 224, 0.14);
  margin-bottom: var(--s7);
  text-align: left;
}
.info-lab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hot);
  margin-bottom: var(--s3);
}
.info-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1.55;
  font-variation-settings: "wdth" 95;
}
.book-cta { display: flex; justify-content: center; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(239, 235, 224, 0.42);
  padding: var(--s8) var(--pad-x) var(--s5);
  border-top: 1px solid rgba(239, 235, 224, 0.14);
}
.footer-inner {
  max-width: var(--max-wide);
  margin-inline: auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s4);
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(239, 235, 224, 0.12);
  margin-bottom: var(--s4);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--paper);
  letter-spacing: -0.02em;
  font-variation-settings: "wdth" 92;
}
.footer-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hot);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--s4);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: rgba(239, 235, 224, 0.42);
}
.footer-bottom a {
  color: var(--hot);
  transition: color var(--dur-fast);
}
.footer-bottom a:hover { color: var(--paper); }

/* ── Reveals (rich choreographed) ────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-std), transform var(--dur-slow) var(--ease-std);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-delay="1"] { transition-delay: 120ms; }
[data-delay="2"] { transition-delay: 240ms; }
[data-delay="3"] { transition-delay: 360ms; }
[data-delay="4"] { transition-delay: 480ms; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .barber-grid { grid-template-columns: 1fr; }
  .reg-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid {
    grid-template-columns: 1fr;
  }
  .shop-a, .shop-b, .shop-c, .shop-copy {
    grid-column: 1; grid-row: auto;
  }
  .shop-b { aspect-ratio: 3/2; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .hero-bottom { grid-template-columns: 1fr 1fr; }
  .hero-b-col--r { grid-column: span 2; text-align: left; }
  .svc-row {
    grid-template-columns: 40px 1fr auto;
    row-gap: var(--s3);
    padding-block: var(--s5);
  }
  .svc-dots { display: none; }
  .svc-body { grid-column: 2 / 4; }
  .svc-price { grid-column: 2 / 4; }
  .barber-stats { gap: var(--s4); }
  .stat-num { font-size: 34px; }
  .reg-grid { grid-template-columns: 1fr; }
  .book-info { grid-template-columns: 1fr; gap: var(--s5); }
  .footer-top { flex-direction: column; align-items: flex-start; gap: var(--s2); }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: var(--s2); }
  .chair-caption { flex-direction: column; align-items: flex-start; gap: var(--s3); }
  .hero-top { flex-direction: column; align-items: flex-start; gap: var(--s2); border-bottom: none; }
}
@media (max-width: 640px) {
  .strip-item { font-size: 20px; }
  .strip-mark { font-size: 20px; }
  .svc-row { grid-template-columns: 32px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hl { opacity: 1 !important; filter: none !important; transform: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
