:root {
  --ink: #11110f;
  --paper: #f2eee5;
  --cream: #e8e0d2;
  --gold: #d99b1c;
  --gold-bright: #e7aa25;
  --muted: #6d685e;
  --line: rgba(17, 17, 15, .16);
  --pad: clamp(22px, 5vw, 78px);
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); font-size: 16px; line-height: 1.55; overflow-x: hidden; }
body, button, a { -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; width: 100%; }
::selection { background: var(--gold); color: var(--ink); }

.noise { position: fixed; inset: 0; pointer-events: none; opacity: .035; z-index: 100; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E"); mix-blend-mode: multiply; }

.site-header { position: fixed; z-index: 90; top: 0; left: 0; right: 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; min-height: 92px; padding: 18px var(--pad); color: #fff; border-bottom: 1px solid rgba(255,255,255,.18); background: rgba(17,17,15,0); transition: min-height .45s var(--ease), padding .45s var(--ease), background-color .45s ease, border-color .45s ease, box-shadow .45s ease, backdrop-filter .45s ease; }
.site-header.is-scrolled { min-height: 72px; padding-top: 10px; padding-bottom: 10px; background: rgba(17,17,15,.88); border-bottom-color: rgba(255,255,255,.11); box-shadow: 0 12px 38px rgba(0,0,0,.16); -webkit-backdrop-filter: blur(18px) saturate(1.15); backdrop-filter: blur(18px) saturate(1.15); }
.site-header.is-scrolled .brand-top { font-size: 22px; }
.site-header.is-scrolled .brand-bottom { opacity: .58; }
.site-header.is-scrolled .book-link--header { background: var(--gold); border-color: var(--gold); color: #14120d; }
.site-header.is-scrolled .book-link--header:hover { background: var(--gold-bright); color: #14120d; }
.brand { display: inline-flex; width: max-content; flex-direction: column; text-decoration: none; line-height: 1; }
.brand-top { font-family: var(--serif); font-size: 25px; letter-spacing: .05em; }
.brand-bottom { margin-top: 7px; font-size: 8px; letter-spacing: .24em; opacity: .76; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 2.7vw, 42px); }
.desktop-nav a { position: relative; text-decoration: none; font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right .4s var(--ease); }
.desktop-nav a:hover::after { right: 0; }
.book-link { text-decoration: none; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; font-weight: 600; }
.book-link--header { justify-self: end; padding: 13px 18px; border: 1px solid rgba(255,255,255,.5); transition: background .35s ease, color .35s ease, transform .35s var(--ease); }
.book-link--header:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }

.hero { --hero-media-y: 0px; --hero-y: 0px; min-height: 100svh; position: relative; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: #151514; }
.hero-photo { position: absolute; inset: -4% 0; background-image: url('images/hero-cinematic-beard-flipped.png'); background-size: cover; background-position: 54% center; transform: translate3d(0,var(--hero-media-y),0) scale(1.09); animation: heroSettle 2.1s var(--ease-out-expo) both; will-change: transform; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.50) 47%, rgba(0,0,0,.13) 78%), linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.08) 53%); }
.hero-copy { position: relative; z-index: 2; width: min(1020px, 88vw); padding: 0 var(--pad) clamp(152px, 18vh, 210px); transform: translate3d(0,var(--hero-y),0); }
.eyebrow, .section-kicker { margin: 0 0 18px; font-size: 10px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; }
.hero h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.025em; }
.hero h1 { margin: 0; max-width: 980px; font-size: clamp(58px, 8.7vw, 138px); line-height: .84; }
.hero h1 em { font-style: italic; color: #e9b954; }
.hero-line { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero-line > span { display: block; transform: translateY(115%); animation: titleRise 1.2s var(--ease-out-expo) forwards; }
.hero-line:nth-child(2) > span { animation-delay: .13s; }
.hero-intro { max-width: 680px; margin: 30px 0 0; font-size: clamp(16px, 1.4vw, 20px); color: rgba(255,255,255,.82); }
.hero-intro-motion { opacity: 0; transform: translateY(26px); animation: heroFade .9s .36s var(--ease-out-expo) forwards; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-actions-motion { opacity: 0; transform: translateY(28px); animation: heroFade .9s .5s var(--ease-out-expo) forwards; }
.cta-primary, .cta-secondary { position: relative; overflow: hidden; display: inline-flex; min-height: 56px; align-items: center; justify-content: center; padding: 0 24px; text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .025em; transition: transform .35s var(--ease-out-expo), background .35s ease, color .35s ease, box-shadow .35s ease; }
.cta-primary { background: var(--gold); color: #14120d; }
.cta-primary::before { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.2); transform: translateX(-105%) skewX(-14deg); transition: transform .7s var(--ease-out-expo); }
.cta-primary:hover { transform: translateY(-3px); background: var(--gold-bright); box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.cta-primary:hover::before { transform: translateX(105%) skewX(-14deg); }
.cta-secondary { color: #fff; border: 1px solid rgba(255,255,255,.5); }
.cta-secondary:hover { background: #fff; color: var(--ink); transform: translateY(-3px); }
.hero-meta { position: absolute; z-index: 2; left: var(--pad); right: var(--pad); bottom: 34px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.23); }
.hero-meta-motion { opacity: 0; animation: heroMeta .9s .66s var(--ease-out-expo) forwards; }
.hero-meta div { padding: 20px 28px 0 0; }
.hero-meta div + div { padding-left: 28px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-meta span { display: block; margin-bottom: 6px; font-size: 8px; letter-spacing: .2em; opacity: .55; }
.hero-meta strong { font-size: 13px; font-weight: 500; }

.intro { padding: clamp(100px, 12vw, 184px) var(--pad); background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(330px, .65fr); gap: clamp(50px, 9vw, 160px); align-items: start; }
.intro h2 { margin: 0; font-size: clamp(48px, 6.3vw, 96px); line-height: .95; }
.intro-copy { padding-top: 8px; font-size: clamp(16px, 1.25vw, 19px); }
.intro-copy p { margin: 0 0 22px; }
.text-link { position: relative; display: inline-block; margin-top: 10px; text-decoration: none; font-weight: 600; padding-bottom: 6px; }
.text-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: currentColor; transform-origin: right; transition: transform .45s var(--ease); }
.text-link:hover::after { transform: scaleX(.35); }
.text-link--light { color: #fff; }

.work { background: var(--ink); color: #f6f2e9; padding: clamp(104px, 12vw, 180px) var(--pad) clamp(110px, 12vw, 174px); }
.work-head { display: grid; grid-template-columns: 1.2fr .58fr; gap: clamp(50px, 9vw, 150px); align-items: end; margin-bottom: clamp(70px, 9vw, 130px); }
.work h2 { margin: 0; max-width: 750px; font-size: clamp(58px, 7.4vw, 112px); line-height: .91; }
.work-head-copy { max-width: 530px; color: rgba(255,255,255,.65); }
.work-head-copy p { margin: 0; }
.social-links { display: flex; gap: 26px; margin-top: 28px; }
.social-links a { text-decoration: none; font-size: 13px; font-weight: 600; border-bottom: 1px solid currentColor; padding-bottom: 4px; }
.social-links--light { color: #fff; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(12px, 1.35vw, 22px); align-items: stretch; }
.gallery-item { margin: 0; position: relative; overflow: hidden; aspect-ratio: 5 / 6; background: #24231f; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; transform: scale(1.055); filter: saturate(.86) contrast(1.075) brightness(.97) sepia(.025); transition: filter .65s ease, transform .8s var(--ease-out-expo); will-change: transform; }
.gallery-item:nth-child(3n + 2) img { object-position: 50% 20%; }
.gallery-item:nth-child(3n) img { object-position: 50% 27%; }
.gallery-item::before { content: ""; position: absolute; z-index: 1; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(255,235,199,.035), rgba(0,0,0,.025) 58%, rgba(0,0,0,.16)); mix-blend-mode: soft-light; }
.gallery-item::after { content: ""; position: absolute; z-index: 2; inset: 0; border: 1px solid rgba(255,255,255,.10); pointer-events: none; }
.gallery-item:hover img { filter: saturate(.92) contrast(1.085) brightness(.995) sepia(.015); transform: scale(1.08); }
.gallery-item figcaption { position: absolute; z-index: 2; left: 18px; bottom: 14px; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.78); text-shadow: 0 1px 20px rgba(0,0,0,.5); }
.work-footer { display: flex; justify-content: space-between; align-items: center; gap: 36px; margin-top: clamp(72px, 9vw, 132px); padding-top: 32px; border-top: 1px solid rgba(255,255,255,.18); }
.work-footer p { max-width: 650px; margin: 0; color: rgba(255,255,255,.68); font-size: clamp(17px, 1.5vw, 21px); }

.prices { padding: clamp(110px, 13vw, 190px) var(--pad); background: var(--gold); }
.prices-head { display: grid; grid-template-columns: .75fr 1.15fr .72fr; gap: clamp(28px, 5vw, 76px); align-items: start; margin-bottom: clamp(72px, 8vw, 118px); }
.prices-head .section-kicker { margin-top: 13px; }
.prices h2 { margin: 0; font-size: clamp(58px, 7vw, 108px); line-height: .92; }
.prices-head > p:last-child { margin: 14px 0 0; max-width: 470px; font-size: 17px; }
.price-list { border-top: 1px solid rgba(17,17,15,.43); }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; min-height: 118px; padding: 26px 0; border-bottom: 1px solid rgba(17,17,15,.43); text-decoration: none; transition: padding .45s var(--ease-out-expo), background-color .45s ease; }
.price-row:hover { padding-left: 18px; padding-right: 18px; background: rgba(255,255,255,.12); }
.price-service strong { display: block; font-family: var(--serif); font-weight: 400; font-size: clamp(27px, 3.3vw, 52px); line-height: 1; }
.price-service small { display: block; margin-top: 8px; color: rgba(17,17,15,.67); font-size: 12px; }
.price-value { font-family: var(--serif); font-size: clamp(36px, 4.5vw, 68px); line-height: 1; }
.price-cta { display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-top: 50px; }
.price-cta p { margin: 0; font-family: var(--serif); font-size: 28px; }
.cta-primary--dark { background: var(--ink); color: #fff; }
.cta-primary--dark:hover { background: #2a2925; }

.barbers { display: grid; grid-template-columns: .9fr 1.1fr; min-height: 720px; background: #151513; color: #fff; }
.barbers-copy { padding: clamp(90px, 10vw, 150px) var(--pad); display: flex; flex-direction: column; justify-content: center; }
.barbers-copy h2 { margin: 0 0 34px; font-size: clamp(54px, 6.4vw, 98px); line-height: .92; }
.barbers-copy > p:not(.section-kicker) { max-width: 570px; margin: 0; color: rgba(255,255,255,.65); font-size: 17px; }
.barbers-copy .text-link { width: max-content; margin-top: 30px; }
.barber-list { display: flex; flex-direction: column; justify-content: center; padding: clamp(70px, 8vw, 120px) var(--pad) clamp(70px, 8vw, 120px) 0; }
.barber-row { display: flex; justify-content: space-between; align-items: baseline; gap: 24px; padding: 31px 0; border-top: 1px solid rgba(255,255,255,.18); }
.barber-row:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.barber-row span { font-family: var(--serif); font-size: clamp(42px, 5.4vw, 82px); line-height: 1; }
.barber-row small { color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .14em; font-size: 8px; }

.craft { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 760px; background: var(--cream); overflow: hidden; }
.craft-image { overflow: hidden; min-height: 720px; }
.craft-image img { height: calc(100% + 50px); object-fit: cover; object-position: center; transform: translate3d(0,var(--photo-y,0px),0) scale(1.035); }
.craft-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(78px, 9vw, 140px) var(--pad); }
.craft-copy h2 { margin: 0 0 36px; font-size: clamp(48px, 5.8vw, 88px); line-height: .94; }
.craft-copy p:not(.section-kicker) { max-width: 660px; margin: 0 0 22px; font-size: 17px; color: #3a3833; }

.reviews { padding: clamp(110px, 13vw, 190px) var(--pad); background: var(--paper); }
.reviews-head { display: grid; grid-template-columns: 1.15fr .55fr; gap: clamp(54px, 9vw, 150px); align-items: end; }
.reviews h2 { margin: 0; font-size: clamp(56px, 7.4vw, 112px); line-height: .91; }
.reviews-head > p { max-width: 520px; margin: 0 0 10px; font-size: 18px; color: #4c4942; }
.review-sources { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: clamp(62px, 7vw, 96px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.review-sources a { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: baseline; min-height: 104px; padding: 30px 0; text-decoration: none; transition: padding .45s var(--ease-out-expo), background-color .35s ease; }
.review-sources a + a { padding-left: clamp(28px, 4vw, 64px); border-left: 1px solid var(--line); }
.review-sources a:hover { padding-left: 14px; padding-right: 14px; background: rgba(17,17,15,.035); }
.review-sources a + a:hover { padding-left: calc(clamp(28px, 4vw, 64px) + 14px); }
.review-sources span { font-size: 9px; font-weight: 600; letter-spacing: .2em; }
.review-sources strong { font-family: var(--serif); font-size: clamp(31px, 3.5vw, 52px); font-weight: 400; line-height: 1; }
.review-sources small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.review-stream { margin-top: clamp(58px, 6vw, 88px); border-top: 1px solid var(--line); }
.review-quote { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 34px 0; border-bottom: 1px solid var(--line); }
.review-quote blockquote { margin: 0; font-family: var(--serif); font-size: clamp(34px, 4.7vw, 72px); line-height: 1; }
.review-quote p { margin: 0; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); text-align: right; }
.reviews-link { display: flex; flex-wrap: wrap; gap: 18px 34px; margin-top: 38px; }

.visit { min-height: 760px; display: grid; grid-template-columns: 1.12fr .88fr; background: #121210; color: #fff; overflow: hidden; }
.visit-copy { padding: clamp(90px, 10vw, 150px) var(--pad); }
.visit h2 { max-width: 850px; margin: 0 0 48px; font-size: clamp(56px, 7.4vw, 112px); line-height: .91; }
.address { margin: 0 0 44px; font-family: var(--serif); font-size: clamp(25px, 2.7vw, 42px); line-height: 1.2; }
.hours { max-width: 650px; border-top: 1px solid rgba(255,255,255,.18); }
.hours div { display: flex; justify-content: space-between; gap: 30px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-size: 13px; }
.hours strong { font-weight: 500; }
.walkins { max-width: 610px; margin: 28px 0 0; color: rgba(255,255,255,.62); }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 38px; }
.cta-secondary--light { color: #fff; }
.visit-mark { --visit-logo-y: 0px; display: flex; align-items: center; justify-content: center; position: relative; background: radial-gradient(circle at center, #342e20 0, #191813 55%, #111 100%); }
.visit-mark::before { content: ""; position: absolute; inset: 10%; border: 1px solid rgba(255,255,255,.08); border-radius: 50%; transform: scale(.9); }
.visit-mark img { width: min(62%, 420px); height: auto; transform: translate3d(0,var(--visit-logo-y),0); filter: drop-shadow(0 24px 50px rgba(0,0,0,.42)); }

.social-close { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(50px, 8vw, 130px); padding: clamp(105px, 12vw, 180px) var(--pad); background: #d8d0c2; }
.social-close h2 { margin: 0; font-size: clamp(54px, 6.6vw, 100px); line-height: .92; }
.social-close-copy > p:last-child { max-width: 580px; margin: 30px 0 0; font-size: 17px; }
.social-close-links { align-self: end; border-top: 1px solid var(--line); }
.social-close-links a { display: flex; justify-content: space-between; gap: 28px; align-items: baseline; padding: 27px 0; border-bottom: 1px solid var(--line); text-decoration: none; transition: padding .45s var(--ease-out-expo); }
.social-close-links a:hover { padding-left: 12px; padding-right: 12px; }
.social-close-links span { font-family: var(--serif); font-size: clamp(30px, 3.5vw, 52px); }
.social-close-links small { color: var(--muted); }

.closing-cta { padding: clamp(100px, 12vw, 180px) var(--pad); background: var(--gold); text-align: center; overflow: hidden; }
.closing-cta p { margin: 0 0 15px; font-size: 10px; text-transform: uppercase; letter-spacing: .25em; }
.closing-cta h2 { margin: 0 auto; max-width: 1100px; font-size: clamp(64px, 9vw, 142px); line-height: .85; }
.closing-cta a { display: inline-flex; margin-top: 42px; min-height: 58px; align-items: center; padding: 0 27px; background: var(--ink); color: #fff; text-decoration: none; font-weight: 600; transition: transform .35s var(--ease-out-expo), background .35s ease; }
.closing-cta a:hover { transform: translateY(-4px) scale(1.015); background: #292824; }

.footer { display: grid; grid-template-columns: 1fr auto auto; gap: 38px; align-items: center; padding: 36px var(--pad); background: #0b0b0a; color: #ece7dd; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; }
.footer-brand { font-family: var(--serif); font-size: 18px; }
.footer-links { display: flex; gap: 22px; }
.footer a { text-decoration: none; }
.footer p { margin: 0; opacity: .6; }
.mobile-book { display: none; }

/* Entrance motion */
.reveal { opacity: 0; transform: translate3d(0, 62px, 0); transition: opacity .95s var(--ease-out-expo), transform 1.15s var(--ease-out-expo); }
.reveal.reveal-scale { transform: translate3d(0, 48px, 0) scale(.965); transition-duration: 1.2s; }
.reveal.is-visible { opacity: 1; transform: translate3d(0,0,0) scale(1); }
.price-row.reveal, .barber-row.reveal, .review-quote.reveal { transform: translate3d(44px,0,0); }
.price-row.reveal.is-visible, .barber-row.reveal.is-visible, .review-quote.reveal.is-visible { transform: translate3d(0,0,0); }

@keyframes titleRise { to { transform: translateY(0); } }
@keyframes heroFade { to { opacity: 1; transform: translateY(0); } }
@keyframes heroMeta { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heroSettle { from { transform: translate3d(0,-22px,0) scale(1.15); filter: brightness(.86); } to { transform: translate3d(0,var(--hero-media-y),0) scale(1.09); filter: brightness(1); } }

@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .hero-copy { width: 95vw; }
  .intro-grid, .work-head, .reviews-head, .social-close { grid-template-columns: 1fr; }
  .intro-copy, .work-head-copy, .reviews-head > p { max-width: 720px; }
  .prices-head { grid-template-columns: 1fr; gap: 24px; }
  .prices-head .section-kicker { margin-top: 0; }
  .barbers { grid-template-columns: 1fr; min-height: auto; }
  .barber-list { padding: 0 var(--pad) 100px; }
  .craft { grid-template-columns: 1fr; }
  .craft-image { min-height: 68vw; max-height: 760px; }
  .visit { grid-template-columns: 1fr; }
  .visit-mark { min-height: 620px; }
  .social-close-links { margin-top: 10px; }
  .footer { grid-template-columns: 1fr auto; }
  .footer p { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --pad: 20px; }
  body { padding-bottom: 78px; }
  .noise { opacity: .022; }
  .site-header { min-height: 76px; padding-top: 14px; padding-bottom: 14px; }
  .brand-top { font-size: 21px; }
  .brand-bottom { font-size: 7px; }
  .book-link--header { display: none; }
  .hero { min-height: 820px; }
  .hero-photo { background-position: 58% center; }
  .hero-copy { padding-bottom: 205px; }
  .hero h1 { font-size: clamp(54px, 17vw, 84px); }
  .hero-intro { margin-top: 24px; font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; max-width: 360px; }
  .hero-meta { grid-template-columns: 1fr; bottom: 18px; }
  .hero-meta div { display: flex; justify-content: space-between; gap: 20px; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.14); }
  .hero-meta div + div { padding-left: 0; border-left: 0; }
  .hero-meta span { margin: 0; }
  .intro h2, .work h2, .prices h2, .barbers-copy h2, .craft-copy h2, .reviews h2, .visit h2, .social-close h2 { font-size: clamp(48px, 14.3vw, 72px); }
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .work { padding-left: 0; padding-right: 0; }
  .work-head, .work-footer { margin-left: var(--pad); margin-right: var(--pad); }
  .gallery { display: flex; gap: 12px; overflow-x: auto; padding: 0 var(--pad) 16px; scroll-snap-type: x mandatory; scrollbar-width: none; overscroll-behavior-inline: contain; }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery-item { flex: 0 0 min(82vw, 430px); width: min(82vw, 430px); aspect-ratio: 5 / 6; scroll-snap-align: center; }
  .work-footer { align-items: stretch; flex-direction: column; }
  .prices-head { margin-bottom: 58px; }
  .price-row { min-height: 108px; }
  .price-service strong { font-size: 28px; }
  .price-value { font-size: 37px; }
  .price-cta { align-items: stretch; flex-direction: column; }
  .barbers-copy { padding-bottom: 58px; }
  .barber-list { padding-bottom: 90px; }
  .barber-row { align-items: flex-end; }
  .barber-row span { font-size: 48px; }
  .craft-image { min-height: 86vw; }
  .review-sources { grid-template-columns: 1fr; }
  .review-sources a { grid-template-columns: 1fr auto; gap: 8px 20px; min-height: 0; padding: 24px 0; }
  .review-sources a + a { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .review-sources a:hover, .review-sources a + a:hover { padding-left: 8px; padding-right: 8px; }
  .review-sources span { grid-column: 1 / -1; }
  .review-sources small { align-self: end; }
  .review-quote { grid-template-columns: 1fr; gap: 13px; }
  .review-quote p { text-align: left; }
  .visit-mark { min-height: 440px; }
  .social-close-links a { align-items: flex-start; flex-direction: column; gap: 2px; }
  .footer { grid-template-columns: 1fr; gap: 20px; }
  .footer-links { flex-wrap: wrap; }
  .footer p { grid-column: auto; }
  .mobile-book { position: fixed; z-index: 50; display: flex; justify-content: center; align-items: center; left: 12px; right: 12px; bottom: 12px; height: 56px; background: var(--gold); color: #111; font-weight: 700; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,.24); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero-photo, .hero-copy, .visit-mark img, .gallery-item img, .craft-image img { transform: none !important; }
  .hero-line > span, .hero-intro-motion, .hero-actions-motion, .hero-meta-motion, .reveal { opacity: 1 !important; transform: none !important; }
}


/* Fixed navigation + portfolio polish */
section[id] { scroll-margin-top: 90px; }
@media (max-width: 700px) {
  .site-header.is-scrolled { min-height: 64px; padding-top: 8px; padding-bottom: 8px; }
  .site-header.is-scrolled .brand-top { font-size: 20px; }
  section[id] { scroll-margin-top: 72px; }
}

/* V7 conversion utility */
.decision { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(54px, 9vw, 150px); padding: clamp(105px, 12vw, 180px) var(--pad); background: #d9d0c1; }
.decision-copy h2 { margin: 0; font-size: clamp(52px, 6.4vw, 98px); line-height: .92; }
.decision-copy > p:not(.section-kicker) { max-width: 560px; margin: 30px 0 0; color: #47433d; font-size: 17px; }
.decision-copy .decision-note { padding-top: 26px; border-top: 1px solid var(--line); font-size: 12px !important; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.service-finder { align-self: center; }
.finder-label { margin: 0 0 20px; font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.finder-options { display: flex; flex-wrap: wrap; gap: 0 28px; border-top: 1px solid rgba(17,17,15,.28); border-bottom: 1px solid rgba(17,17,15,.28); }
.finder-options button { appearance: none; border: 0; border-bottom: 3px solid transparent; background: none; padding: 22px 0 18px; color: rgba(17,17,15,.55); font: 500 13px/1 var(--sans); cursor: pointer; transition: color .3s ease, border-color .3s ease; }
.finder-options button:hover, .finder-options button.is-active { color: var(--ink); border-bottom-color: var(--ink); }
.finder-options button:focus-visible { outline: 2px solid var(--ink); outline-offset: 5px; }
.finder-result { display: grid; grid-template-columns: 1fr auto; gap: clamp(28px, 5vw, 70px); align-items: end; padding-top: clamp(44px, 5vw, 72px); }
.finder-result-label { display: block; margin-bottom: 12px; font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.finder-result h3 { margin: 0; font-family: var(--serif); font-size: clamp(42px, 5.6vw, 82px); font-weight: 400; line-height: .95; }
.finder-result p { max-width: 600px; margin: 18px 0 0; color: #514d45; font-size: 16px; }
.finder-action { min-width: 190px; text-align: right; }
.finder-action strong { display: block; margin-bottom: 20px; font-family: var(--serif); font-size: clamp(48px, 5vw, 72px); font-weight: 400; line-height: 1; }
.finder-action .cta-primary { white-space: nowrap; }

.gallery-item { cursor: zoom-in; }
.gallery-item:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
.work-dialog { width: min(1180px, calc(100vw - 40px)); max-height: calc(100svh - 40px); padding: 0; border: 0; background: #11110f; color: #fff; box-shadow: 0 40px 120px rgba(0,0,0,.45); overflow: hidden; }
.work-dialog::backdrop { background: rgba(0,0,0,.76); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.work-dialog[open] { display: grid; grid-template-columns: 1.05fr .75fr; }
.work-dialog-media { min-height: min(78svh, 760px); background: #222; overflow: hidden; }
.work-dialog-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 24%; filter: saturate(.9) contrast(1.07) brightness(.98) sepia(.02); }
.work-dialog-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 82px); }
.work-dialog-copy h2 { margin: 0; font-size: clamp(46px, 5.7vw, 82px); line-height: .92; }
.work-dialog-copy > p:not(.section-kicker) { margin: 28px 0 34px; color: rgba(255,255,255,.68); }
.work-dialog-copy .cta-primary { align-self: flex-start; }
.work-dialog-close { position: absolute; z-index: 4; top: 16px; right: 16px; border: 1px solid rgba(255,255,255,.45); background: rgba(17,17,15,.66); color: #fff; padding: 10px 14px; font: 600 10px/1 var(--sans); letter-spacing: .12em; text-transform: uppercase; cursor: pointer; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }

.faq { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(54px, 9vw, 150px); padding: clamp(110px, 13vw, 190px) var(--pad); background: #e6ded1; }
.faq-copy h2 { margin: 0; max-width: 720px; font-size: clamp(52px, 6.4vw, 98px); line-height: .92; }
.faq-copy > p:not(.section-kicker) { max-width: 520px; margin: 30px 0 0; color: #4c4841; font-size: 17px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; list-style: none; cursor: pointer; padding: 28px 46px 28px 0; font-family: var(--serif); font-size: clamp(25px, 2.5vw, 38px); line-height: 1.1; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-family: var(--sans); font-size: 22px; font-weight: 400; transition: transform .35s var(--ease); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { max-width: 760px; margin: -4px 54px 28px 0; color: #4b4740; font-size: 16px; }
.visit-call { display: inline-flex; align-items: center; padding: 0 6px; color: rgba(255,255,255,.74); text-decoration: none; font-size: 13px; font-weight: 600; }
.visit-call:hover { color: #fff; }

@media (max-width: 1180px) {
  .desktop-nav { gap: 18px; }
  .desktop-nav a { font-size: 10px; }
}
@media (max-width: 1040px) {
  .decision, .faq { grid-template-columns: 1fr; }
  .service-finder, .faq-list { max-width: 820px; }
}
@media (max-width: 760px) {
  .decision, .faq { padding-left: var(--pad); padding-right: var(--pad); }
  .finder-options { display: grid; grid-template-columns: 1fr 1fr; column-gap: 22px; }
  .finder-result { grid-template-columns: 1fr; }
  .finder-action { text-align: left; }
  .finder-action strong { margin-bottom: 18px; }
  .work-dialog { width: calc(100vw - 20px); max-height: calc(100svh - 20px); }
  .work-dialog[open] { grid-template-columns: 1fr; overflow-y: auto; }
  .work-dialog-media { min-height: 56svh; }
  .work-dialog-copy { padding: 34px 24px 40px; }
  .faq-list summary { font-size: 27px; }
  .visit-actions { flex-direction: column; align-items: stretch; }
  .visit-call { min-height: 44px; padding: 0; }
}

/* V8 readability pass — body copy is intentionally generous for real-world viewing */
body { font-size: 18px; line-height: 1.62; }

/* Navigation + controls */
.brand-bottom { font-size: 9px; }
.desktop-nav a { font-size: 13px; }
.book-link { font-size: 13px; }
.cta-primary, .cta-secondary { min-height: 58px; padding-left: 26px; padding-right: 26px; font-size: 14px; }

/* Editorial labels: still compact, but no longer micro-type */
.eyebrow, .section-kicker { font-size: 12px; line-height: 1.35; }
.hero-meta span { font-size: 11px; line-height: 1.3; }
.hero-meta strong { font-size: 15px; }
.gallery-item figcaption { font-size: 11px; }
.review-sources span { font-size: 11px; }
.review-sources small { font-size: 13px; }
.review-quote p { font-size: 12px; line-height: 1.45; }
.barber-row small { font-size: 11px; }
.closing-cta p { font-size: 12px; }

/* Main reading copy */
.hero-intro { font-size: clamp(18px, 1.45vw, 22px); line-height: 1.55; }
.intro-copy { font-size: clamp(18px, 1.35vw, 21px); line-height: 1.65; }
.work-head-copy { font-size: 18px; line-height: 1.65; }
.social-links a { font-size: 14px; }
.work-footer p { font-size: clamp(18px, 1.55vw, 22px); line-height: 1.6; }
.prices-head > p:last-child { font-size: 19px; line-height: 1.6; }
.price-service small { font-size: 14px; line-height: 1.45; }
.barbers-copy > p:not(.section-kicker) { font-size: 19px; line-height: 1.65; }
.craft-copy p:not(.section-kicker) { font-size: 19px; line-height: 1.65; }
.reviews-head > p { font-size: 19px; line-height: 1.6; }
.hours div { font-size: 15px; line-height: 1.45; }
.social-close-copy > p:last-child { font-size: 19px; line-height: 1.65; }
.footer { font-size: 14px; line-height: 1.55; }
.footer-brand { font-size: 20px; }

/* Conversion sections */
.decision-copy > p:not(.section-kicker) { font-size: 19px; line-height: 1.65; }
.decision-copy .decision-note { font-size: 13px !important; line-height: 1.55; }
.finder-label { font-size: 12px; }
.finder-options button { font-size: 15px; line-height: 1.25; }
.finder-result-label { font-size: 12px; }
.finder-result p { font-size: 18px; line-height: 1.65; }
.work-dialog-copy > p:not(.section-kicker) { font-size: 18px; line-height: 1.65; }
.work-dialog-close { font-size: 12px; }
.faq-copy > p:not(.section-kicker) { font-size: 19px; line-height: 1.65; }
.faq-list details p { font-size: 18px; line-height: 1.65; }
.visit-call { font-size: 14px; }

@media (max-width: 1180px) {
  .desktop-nav a { font-size: 12px; }
}

@media (max-width: 760px) {
  body { font-size: 18px; line-height: 1.62; }
  .brand-bottom { font-size: 9px; }
  .hero-intro { font-size: 18px; line-height: 1.6; }
  .hero-meta span { font-size: 11px; }
  .hero-meta strong { font-size: 15px; }
  .intro-copy,
  .work-head-copy,
  .prices-head > p:last-child,
  .barbers-copy > p:not(.section-kicker),
  .craft-copy p:not(.section-kicker),
  .reviews-head > p,
  .social-close-copy > p:last-child,
  .decision-copy > p:not(.section-kicker),
  .faq-copy > p:not(.section-kicker) { font-size: 18px; line-height: 1.65; }
  .finder-options button { font-size: 15px; padding-top: 20px; padding-bottom: 17px; }
  .finder-result p,
  .faq-list details p,
  .work-dialog-copy > p:not(.section-kicker) { font-size: 18px; line-height: 1.65; }
  .price-service small { font-size: 14px; }
  .hours div { font-size: 15px; }
  .footer { font-size: 14px; }
  .mobile-book { font-size: 15px; }
}

/* V9 — shorter, clearer conversion flow */

/* A tighter overall rhythm: fewer sections, more purpose per section. */
.decision { padding-top: clamp(82px, 8vw, 126px); padding-bottom: clamp(82px, 8vw, 126px); }
.decision-copy h2 { font-size: clamp(50px, 5.8vw, 88px); }
.decision-copy > p:not(.section-kicker) { margin-top: 24px; }
.decision-copy .decision-note { margin-top: 28px !important; }

/* Pricing now lives inside the service finder instead of repeating as a full section. */
.menu-details { margin-top: 34px; border-top: 1px solid rgba(17,17,15,.28); border-bottom: 1px solid rgba(17,17,15,.28); }
.menu-details summary { position: relative; list-style: none; cursor: pointer; padding: 22px 42px 22px 0; font-weight: 600; font-size: 16px; }
.menu-details summary::-webkit-details-marker { display: none; }
.menu-details summary::after { content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; transition: transform .35s var(--ease); }
.menu-details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.compact-menu { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(30px,5vw,70px); padding: 2px 0 12px; }
.compact-menu div { display: flex; justify-content: space-between; gap: 24px; padding: 15px 0; border-top: 1px solid rgba(17,17,15,.14); }
.compact-menu span { font-size: 16px; }
.compact-menu strong { flex: 0 0 auto; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.menu-details > p { margin: 8px 0 24px; color: #5b574f; font-size: 14px; }

/* Work becomes one calm horizontal lookbook instead of a tall photo wall. */
.work { padding-top: clamp(84px, 8vw, 126px); padding-bottom: clamp(84px, 8vw, 126px); }
.work-head { margin-bottom: clamp(42px, 5vw, 72px); }
.work h2 { font-size: clamp(54px, 6.6vw, 98px); }
.gallery { display: flex; gap: clamp(12px, 1.35vw, 22px); overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.28) transparent; }
.gallery::-webkit-scrollbar { height: 5px; }
.gallery::-webkit-scrollbar-track { background: transparent; }
.gallery::-webkit-scrollbar-thumb { background: rgba(255,255,255,.28); border-radius: 99px; }
.gallery-item { flex: 0 0 clamp(260px, 27vw, 410px); width: clamp(260px, 27vw, 410px); aspect-ratio: 5 / 6; scroll-snap-align: start; }
.work-footer { margin-top: clamp(36px, 4vw, 58px); }

/* Craft + barber choice are one section now. */
.barbers-compact { min-height: 0; display: grid; grid-template-columns: minmax(340px,.9fr) minmax(0,1.1fr); background: #151513; }
.barbers-image { min-height: 660px; overflow: hidden; background: #24231f; }
.barbers-image img { width: 100%; height: calc(100% + 34px); object-fit: cover; object-position: 52% center; transform: translate3d(0,var(--photo-y,0px),0) scale(1.03); filter: saturate(.84) contrast(1.06) brightness(.92); }
.barbers-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(72px, 7vw, 112px) var(--pad); }
.barbers-content h2 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(50px, 5.8vw, 88px); font-weight: 400; line-height: .92; }
.barbers-content > p:not(.section-kicker) { max-width: 680px; margin: 0; color: rgba(255,255,255,.68); font-size: 19px; line-height: 1.65; }
.barber-list--compact { display: block; padding: 0; margin: 36px 0 18px; }
.barber-list--compact .barber-row { padding: 20px 0; }
.barber-list--compact .barber-row:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.barber-list--compact .barber-row span { font-size: clamp(26px, 2.5vw, 36px); }
.barber-list--compact .barber-row small { font-size: 13px; }
.barbers-content .text-link { width: max-content; margin-top: 12px; }

/* Reviews are proof, not another long article. */
.reviews { padding-top: clamp(84px, 8vw, 128px); padding-bottom: clamp(84px, 8vw, 128px); }
.reviews h2 { font-size: clamp(52px, 6.4vw, 96px); }
.review-sources { margin-top: clamp(40px, 5vw, 66px); }
.review-sources a { min-height: 82px; padding: 22px 0; }
.review-stream { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(22px, 3vw, 48px); margin-top: clamp(42px, 5vw, 68px); }
.review-quote { display: block; padding: 0; border: 0; }
.review-quote blockquote { margin-bottom: 20px; font-size: clamp(28px, 2.8vw, 42px); line-height: 1.06; }
.review-quote p { font-size: 14px; }
.reviews-link { margin-top: 32px; }

/* Keep the FAQ—high utility, moderate footprint. */
.faq { padding-top: clamp(86px, 8vw, 132px); padding-bottom: clamp(86px, 8vw, 132px); }
.faq-copy h2 { font-size: clamp(50px, 5.8vw, 88px); }
.faq-list summary { padding-top: 24px; padding-bottom: 24px; }

/* One final section now handles location, hours, directions, trust and booking. */
.visit-compact { min-height: 0; grid-template-columns: 1.05fr .95fr; background: #11110f; }
.visit-compact .visit-copy { padding: clamp(78px, 8vw, 124px) var(--pad); }
.visit-compact .visit-copy h2 { margin-bottom: 34px; font-size: clamp(52px, 6vw, 92px); }
.visit-compact .address { margin-bottom: 30px; font-size: clamp(20px, 1.7vw, 24px); }
.visit-links { display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 30px; }
.visit-book { display: flex; flex-direction: column; justify-content: center; padding: clamp(76px, 8vw, 124px) var(--pad); background: var(--gold); color: var(--ink); }
.visit-book h2 { margin: 0; max-width: 700px; font-size: clamp(58px, 7vw, 108px); line-height: .88; }
.visit-book > p:not(.section-kicker) { max-width: 550px; margin: 28px 0 32px; font-size: 19px; line-height: 1.6; }
.visit-book .cta-primary--dark { align-self: flex-start; background: var(--ink); color: #fff; }
.visit-proof { display: flex; gap: 28px; margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(17,17,15,.24); font-size: 14px; }
.visit-proof strong { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-right: 5px; }

/* No large social/closing sections: social is supporting navigation in the footer. */
.footer { padding-top: 30px; padding-bottom: 30px; }

@media (max-width: 1040px) {
  .barbers-compact, .visit-compact { grid-template-columns: 1fr; }
  .barbers-image { min-height: 560px; max-height: 72svh; }
  .review-stream { grid-template-columns: 1fr 1fr; }
  .review-quote:last-child { grid-column: 1 / -1; max-width: 680px; }
}

@media (max-width: 760px) {
  .decision { gap: 46px; padding-top: 78px; padding-bottom: 78px; }
  .decision-copy h2, .barbers-content h2, .faq-copy h2 { font-size: clamp(46px, 13.2vw, 68px); }
  .finder-result { padding-top: 34px; }
  .compact-menu { grid-template-columns: 1fr; }
  .compact-menu div:nth-child(odd) { border-top: 1px solid rgba(17,17,15,.14); }
  .menu-details > p { font-size: 14px; line-height: 1.55; }

  .work { padding-top: 78px; padding-bottom: 78px; }
  .work-head { margin-bottom: 38px; }
  .gallery { padding-left: var(--pad); padding-right: var(--pad); }
  .gallery-item { flex-basis: min(78vw, 360px); width: min(78vw, 360px); }
  .work-footer { margin-top: 34px; }

  .barbers-image { min-height: 470px; }
  .barbers-content { padding-top: 72px; padding-bottom: 72px; }
  .barbers-content > p:not(.section-kicker) { font-size: 18px; }
  .barber-list--compact .barber-row span { font-size: 28px; }

  .reviews { padding-top: 78px; padding-bottom: 78px; }
  .review-stream { grid-template-columns: 1fr; gap: 38px; }
  .review-quote:last-child { grid-column: auto; }

  .faq { padding-top: 78px; padding-bottom: 78px; }

  .visit-compact .visit-copy, .visit-book { padding-top: 72px; padding-bottom: 72px; }
  .visit-book h2 { font-size: clamp(54px, 14vw, 76px); }
  .visit-links { flex-direction: column; align-items: flex-start; }
  .visit-proof { flex-wrap: wrap; }
}

/* V10 — more personal shop impression without adding another section */
.shop-life-media {
  min-height: 660px;
  display: grid;
  grid-template-rows: minmax(0, 1.55fr) minmax(170px, .72fr);
  background: #24231f;
  overflow: hidden;
}
.shop-life-media figure { margin: 0; min-width: 0; min-height: 0; overflow: hidden; background: #26241f; }
.shop-life-main { border-bottom: 1px solid rgba(255,255,255,.12); }
.shop-life-row { display: grid; grid-template-columns: 1fr 1fr; min-height: 0; }
.shop-life-row figure + figure { border-left: 1px solid rgba(255,255,255,.12); }
.shop-life-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.07) brightness(.91) sepia(.025);
  transition: transform 1.1s var(--ease-out-expo), filter .6s var(--ease);
}
.shop-life-main img { object-position: 52% center; transform: scale(1.025); }
.shop-life-row figure:first-child img { object-position: 50% 45%; }
.shop-life-row figure:last-child img { object-position: 50% 46%; }
.shop-life-media:hover .shop-life-main img { transform: scale(1.045); }
.shop-life-row figure:hover img { transform: scale(1.035); filter: saturate(.88) contrast(1.06) brightness(.95) sepia(.015); }
.shop-life-note {
  margin-top: 22px !important;
  max-width: 620px !important;
  color: rgba(255,255,255,.86) !important;
  font-family: var(--serif);
  font-size: clamp(23px, 2vw, 30px) !important;
  line-height: 1.18 !important;
}

@media (max-width: 1040px) {
  .shop-life-media { min-height: 610px; grid-template-rows: minmax(360px, 1.5fr) minmax(170px, .7fr); }
}

@media (max-width: 760px) {
  .shop-life-media { min-height: 0; grid-template-rows: 390px 155px; }
  .shop-life-note { font-size: 24px !important; }
}

@media (prefers-reduced-motion: reduce) {
  .shop-life-media img { transition: none; transform: none !important; }
}


/* V11 — shop section refined to feel more editorial and less stuffed */
.barbers-compact { grid-template-columns: minmax(400px, 1.02fr) minmax(0, .98fr); }
.shop-life-media { min-height: 700px; grid-template-rows: minmax(0, 1.7fr) minmax(180px, .72fr); background: #211f1c; }
.shop-life-main { border-bottom: 1px solid rgba(255,255,255,.10); }
.shop-life-row figure + figure { border-left: 1px solid rgba(255,255,255,.10); }
.shop-life-media img { filter: saturate(.74) contrast(1.05) brightness(.93) sepia(.02); }
.shop-life-main img { object-position: center center; transform: scale(1.02); }
.shop-life-row figure:first-child img { object-position: 50% 54%; }
.shop-life-row figure:last-child img { object-position: 50% 48%; }
.barbers-content { padding-left: clamp(52px, 5.2vw, 84px); }
.barbers-content h2 { max-width: 12ch; margin-bottom: 24px; }
.barbers-content > p:not(.section-kicker) { max-width: 620px; }
.shop-life-note { max-width: 520px !important; margin-top: 18px !important; }
.barber-list--compact { margin-top: 30px; }

@media (max-width: 1040px) {
  .barbers-compact { grid-template-columns: 1fr; }
  .shop-life-media { min-height: 620px; grid-template-rows: minmax(360px, 1.65fr) minmax(165px, .75fr); }
  .barbers-content { padding-left: var(--pad); }
}

@media (max-width: 760px) {
  .shop-life-media { grid-template-rows: 360px 150px; }
}


/* V12 — curated inside/outside shop section using provided photos */
.barbers-compact { grid-template-columns: minmax(380px, 1.08fr) minmax(0, .92fr); align-items: stretch; }
.shop-life-media { min-height: 720px; display: grid; grid-template-rows: minmax(0, 1.65fr) minmax(190px, .78fr); gap: 0; background: #211f1c; }
.shop-life-main { border-bottom: 1px solid rgba(255,255,255,.10); }
.shop-life-row { display: grid; grid-template-columns: 1fr 1fr; }
.shop-life-row figure + figure { border-left: 1px solid rgba(255,255,255,.10); }
.shop-life-media figure { position: relative; overflow: hidden; background: #26231f; }
.shop-life-media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(.86) contrast(1.06) brightness(.92) sepia(.018); transition: transform 1.2s var(--ease-out-expo), filter .6s var(--ease); }
.shop-life-main img { object-position: center center; }
.shop-life-row figure:first-child img { object-position: center 28%; }
.shop-life-row figure:last-child img { object-position: center 50%; }
.shop-life-media:hover .shop-life-main img { transform: scale(1.03); }
.shop-life-row figure:hover img { transform: scale(1.035); filter: saturate(.92) contrast(1.05) brightness(.95) sepia(.012); }
.barbers-content { padding: clamp(76px, 7vw, 112px) clamp(34px, 5vw, 86px); }
.barbers-content h2 { max-width: 11ch; margin-bottom: 24px; }
.barbers-content > p:not(.section-kicker) { max-width: 620px; }
.shop-life-note { max-width: 600px !important; margin-top: 18px !important; }

@media (max-width: 1040px) {
  .barbers-compact { grid-template-columns: 1fr; }
  .shop-life-media { min-height: 620px; grid-template-rows: minmax(360px, 1.55fr) minmax(180px, .8fr); }
}

@media (max-width: 760px) {
  .shop-life-media { min-height: 0; grid-template-rows: 320px 160px; }
  .shop-life-row { grid-template-columns: 1fr 1fr; }
}


/* V13 — final luxury pass */
:root { --pad: clamp(24px, 5vw, 84px); }
body { background: #f3efe7; }
.hero-copy { width: min(960px, 86vw); }
.hero-kicker { margin-bottom: 24px; color: rgba(255,255,255,.72); }
.hero-intro { max-width: 620px; }
.hero-actions { margin-top: 38px; gap: 14px; }
.cta-primary, .cta-secondary { letter-spacing: .035em; }
.hero-meta { bottom: 30px; }
.hero-meta div { padding-top: 24px; }
.hero-meta strong { font-size: 16px; }

.site-header { border-bottom-color: rgba(255,255,255,.12); }
.site-header.is-scrolled { background: rgba(17,17,15,.84); box-shadow: 0 12px 42px rgba(0,0,0,.18); }
.brand-top { letter-spacing: .04em; }
.book-link--header { padding-left: 20px; padding-right: 20px; }

.decision { gap: clamp(44px, 6vw, 88px); background: linear-gradient(180deg, #f3efe7 0%, #f7f3eb 100%); }
.decision-copy h2 { max-width: 11ch; }
.decision-copy > p:not(.section-kicker) { max-width: 620px; color: #403c36; }
.decision-note { color: #6a645a !important; text-transform: uppercase; letter-spacing: .08em; }
.service-finder { max-width: 860px; }
.finder-options { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 30px; }
.finder-options button { text-align: left; padding-top: 24px; padding-bottom: 20px; color: rgba(17,17,15,.58); }
.finder-options button:hover, .finder-options button.is-active { color: var(--ink); border-bottom-color: #15130f; }
.finder-result { padding-top: clamp(48px, 5vw, 76px); border-top: 1px solid rgba(17,17,15,.16); }
.finder-result h3 { max-width: 10ch; }
.finder-action strong { display:block; margin-bottom: 16px; }
.menu-details summary { font-size: 17px; }

.work-head { grid-template-columns: 1fr .52fr; align-items: end; }
.work-head-copy { max-width: 420px; }
.social-links { display: none; }
.gallery { gap: clamp(14px, 1.45vw, 24px); }
.gallery-item { background: #1e1d1a; }
.gallery-item::after { border-color: rgba(255,255,255,.08); }
.work-footer { align-items: end; }
.work-footer p { max-width: 720px; }

.barbers-compact { grid-template-columns: minmax(420px, 1.08fr) minmax(0, .92fr); }
.barbers-content h2 { max-width: 10ch; }
.barbers-content > p:not(.section-kicker) { color: rgba(255,255,255,.72); }
.shop-life-note { color: rgba(255,255,255,.9) !important; }

.reviews { background: #f6f1e8; }
.reviews-head { align-items: end; }
.reviews h2 { max-width: 10ch; }
.reviews-head > p { max-width: 480px; color: #585248; }
.review-sources { margin-top: clamp(34px, 4vw, 54px); }
.review-sources a { min-height: 92px; }
.review-stream { border-top: 0; }
.review-quote blockquote { letter-spacing: -.02em; line-height: 1.03; }
.review-quote p { color: #6b665c; }
.reviews-link { margin-top: 38px; }

.faq { display: grid; grid-template-columns: minmax(280px,.78fr) minmax(0,1.22fr); gap: clamp(40px, 7vw, 96px); align-items: start; }
.faq-copy { position: sticky; top: 108px; }
.faq-copy h2 { max-width: 8ch; }
.faq-list summary { padding-top: 26px; padding-bottom: 26px; }

.visit-compact .visit-copy { background: #141412; }
.visit-book { background: linear-gradient(180deg, #d9a33a 0%, #c98f1d 100%); }
.visit-book h2 { max-width: 8ch; }
.visit-proof { font-size: 15px; }
.visit-proof strong { font-size: 30px; }

.footer { display:flex; align-items:center; justify-content:space-between; gap: 20px 34px; flex-wrap:wrap; padding-top: 24px; padding-bottom: 24px; background: #0f0f0d; color: rgba(255,255,255,.8); }
.footer p { margin: 0; }
.footer-links { gap: 22px; }

@media (max-width: 1040px) {
  .faq { grid-template-columns: 1fr; }
  .faq-copy { position: static; }
  .barbers-compact { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .hero-copy { width: min(100%, 100vw); }
  .hero-kicker { margin-bottom: 20px; }
  .finder-options { grid-template-columns: 1fr; }
  .faq { display: block; }
  .footer { align-items:flex-start; }
}


/* V14 — cinematic hero using AI-enhanced beard lineup still */
.hero { min-height: 100svh; }
.hero-photo {
  inset: -6% -2%;
  background-position: 62% center;
  transform: translate3d(0,var(--hero-media-y),0) scale(1.13);
  filter: saturate(.88) contrast(1.08) brightness(.78) sepia(.03);
  animation: heroSettleLuxury 2.6s var(--ease-out-expo) both;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(0,0,0,.80) 0%, rgba(0,0,0,.48) 47%, rgba(0,0,0,.16) 78%),
    linear-gradient(0deg, rgba(0,0,0,.74) 0%, rgba(0,0,0,.18) 54%),
    radial-gradient(circle at 76% 38%, rgba(234,184,84,.18), transparent 26%);
}
.hero-copy { padding-bottom: clamp(164px, 19vh, 224px); }
.hero h1 { max-width: 8.2ch; }
.hero-intro { max-width: 610px; color: rgba(255,255,255,.84); }
.hero-meta { border-top-color: rgba(255,255,255,.2); }
.hero-meta div + div { border-left-color: rgba(255,255,255,.14); }

@keyframes heroSettleLuxury {
  0% { transform: translate3d(0,16px,0) scale(1.18); filter: saturate(.82) contrast(1.03) brightness(.68) sepia(.035); }
  100% { transform: translate3d(0,var(--hero-media-y),0) scale(1.13); filter: saturate(.88) contrast(1.08) brightness(.78) sepia(.03); }
}

@media (max-width: 760px) {
  .hero-photo { background-position: 67% center; transform: translate3d(0,var(--hero-media-y),0) scale(1.16); }
  .hero-copy { padding-bottom: 188px; }
  .hero h1 { max-width: 8.6ch; }
}


/* V15 — hero framing + controlled work lookbook */
.hero-photo { background-position: 54% center; }

.gallery-shell { position: relative; }
.gallery { scrollbar-width: none !important; -ms-overflow-style: none; scroll-padding-left: 0; scroll-padding-right: 0; }
.gallery::-webkit-scrollbar { display: none !important; }
.gallery-nav {
  position: absolute;
  top: calc(50% - 24px);
  z-index: 5;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(17,17,15,.72);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  backdrop-filter: blur(14px) saturate(1.1);
  transition: transform .35s var(--ease), background-color .35s ease, border-color .35s ease, opacity .35s ease;
}
.gallery-nav span { font-size: 30px; line-height: 1; transform: translateY(-1px); }
.gallery-nav:hover { transform: translateY(-2px) scale(1.03); background: rgba(32,30,27,.88); border-color: rgba(255,255,255,.4); }
.gallery-nav:disabled { opacity: .32; cursor: default; transform: none; }
.gallery-nav--prev { left: -18px; }
.gallery-nav--next { right: -18px; }
.gallery-item:first-child::after { border-color: rgba(231,170,37,.44); }
.gallery-item:first-child figcaption { color: rgba(255,231,190,.92); }

@media (max-width: 1040px) {
  .gallery-nav { width: 48px; height: 48px; }
  .gallery-nav--prev { left: -12px; }
  .gallery-nav--next { right: -12px; }
}

@media (max-width: 760px) {
  .hero-photo { background-position: 58% center; }
  .gallery-nav { top: auto; bottom: -66px; width: 44px; height: 44px; }
  .gallery-nav--prev { left: 0; }
  .gallery-nav--next { left: 56px; right: auto; }
  .work-footer { margin-top: 84px; }
}


/* V16 — cleaner hero negative space + gallery face-centered crops */
.hero-photo { background-position: 42% center; }

.gallery-item { aspect-ratio: 4 / 5; }
.gallery-item img { object-position: 50% 17%; transform: scale(1.018); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:nth-child(1) img { object-position: 50% 16%; }
.gallery-item:nth-child(2) img { object-position: 50% 15%; }
.gallery-item:nth-child(3) img { object-position: 50% 14%; }
.gallery-item:nth-child(4) img { object-position: 50% 18%; }
.gallery-item:nth-child(5) img { object-position: 50% 17%; }
.gallery-item:nth-child(6) img { object-position: 50% 16%; }
.gallery-item figcaption { left: 16px; bottom: 12px; }
.gallery-item:first-child::after { border-color: rgba(231,170,37,.52); }
.gallery-item:first-child figcaption { color: rgba(255,234,196,.96); }

@media (max-width: 760px) {
  .hero-photo { background-position: 47% center; }
  .gallery-item { aspect-ratio: 5 / 6; }
  .gallery-item img { object-position: 50% 15%; }
}


/* V17 — corrected hero image placement + cleaned brand + calmer gallery crops */
.brand { display: flex; flex-direction: column; justify-content: center; gap: 3px; line-height: 1; }
.brand-top { font-size: 23px; letter-spacing: .045em; }
.brand-bottom { margin-top: 0; font-size: 9px; letter-spacing: .16em; opacity: .82; }
.site-header { align-items: center; }

.hero-photo { background-position: 72% center !important; }
.hero-copy { padding-top: 140px; }
.hero-intro { max-width: 620px; }
.hero-kicker { display: none !important; }

.gallery-item { aspect-ratio: 5 / 6; }
.gallery-item img { object-position: 50% 22%; transform: scale(1.0); }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item:nth-child(1) img { object-position: 50% 20%; }
.gallery-item:nth-child(2) img { object-position: 50% 22%; }
.gallery-item:nth-child(3) img { object-position: 50% 24%; }
.gallery-item:nth-child(4) img { object-position: 50% 23%; }
.gallery-item:nth-child(5) img { object-position: 50% 22%; }
.gallery-item:nth-child(6) img { object-position: 50% 24%; }

@media (max-width: 760px) {
  .brand-top { font-size: 20px; }
  .brand-bottom { font-size: 8px; letter-spacing: .14em; }
  .hero-photo { background-position: 76% center !important; }
}


/* V18 — show gallery images more fully so faces/beards are not annoyingly cut off */
.gallery-shell { overflow: visible; }
.gallery { align-items: stretch; }
.gallery-item {
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, #171512 0%, #11100d 100%);
  border-radius: 18px;
  overflow: hidden;
}
.gallery-item::after { border-color: rgba(255,255,255,.06); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 18px 18px 52px;
  box-sizing: border-box;
  transform: none !important;
  filter: saturate(.9) contrast(1.04) brightness(.98) sepia(.018);
  background: linear-gradient(180deg, rgba(255,255,255,.02) 0%, rgba(255,255,255,0) 100%);
}
.gallery-item:hover img { transform: scale(1.01) !important; }
.gallery-item figcaption {
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(17,17,15,.7);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.gallery-item:first-child figcaption { color: rgba(255,241,214,.96); }

@media (max-width: 760px) {
  .gallery-item { aspect-ratio: 5 / 6; }
  .gallery-item img { padding: 14px 14px 46px; }
}


/* V19 — quality-over-quantity portfolio cleanup */
.gallery {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 30px);
  overflow: visible !important;
}
.gallery-item {
  width: auto !important;
  flex: none !important;
  aspect-ratio: 4 / 5;
}
.gallery-nav { display: none !important; }
.gallery-item img {
  object-fit: cover !important;
  object-position: 50% 18% !important;
  padding: 0 !important;
  transform: scale(1.015) !important;
}
.gallery-item:hover img { transform: scale(1.035) !important; }
.gallery-item:nth-child(1) img { object-position: 50% 17% !important; }
.gallery-item:nth-child(2) img { object-position: 50% 20% !important; }
.gallery-item:nth-child(3) img { object-position: 50% 18% !important; }

@media (max-width: 900px) {
  .gallery {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .gallery::-webkit-scrollbar { display: none; }
  .gallery-item {
    flex: 0 0 min(78vw, 390px) !important;
    width: min(78vw, 390px) !important;
    scroll-snap-align: start;
  }
}


/* V20 — gallery uses only provided photos, locally packaged and edited */
.gallery-shell { overflow: visible; }
.gallery { gap: 22px; }
.gallery-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  background: #171512;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  background: none !important;
  transform: none !important;
  filter: none !important;
}
.gallery-item:hover img { transform: scale(1.018) !important; }
.gallery-item figcaption { left: 16px; bottom: 14px; }
@media (max-width: 760px) {
  .gallery-item { aspect-ratio: 5 / 6; }
}

/* V21 — consistent gallery scale */
.gallery-item {
  flex: 0 0 clamp(280px, 27vw, 410px) !important;
  width: clamp(280px, 27vw, 410px) !important;
  aspect-ratio: 4 / 5 !important;
}
.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  transform: none !important;
}
.gallery-item:hover img { transform: scale(1.018) !important; }

@media (max-width: 760px) {
  .gallery-item {
    flex-basis: min(78vw, 360px) !important;
    width: min(78vw, 360px) !important;
    aspect-ratio: 4 / 5 !important;
  }
}


/* V22 — even five-up gallery on larger screens to remove leftover blank space */
.gallery {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.2vw, 20px) !important;
  align-items: stretch;
  overflow: visible !important;
}
.gallery-item {
  width: auto !important;
  flex: none !important;
  min-width: 0;
  aspect-ratio: 4 / 5 !important;
}

@media (max-width: 1280px) {
  .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
}

@media (max-width: 900px) {
  .gallery {
    display: flex !important;
    grid-template-columns: none !important;
    overflow-x: auto !important;
    gap: 18px !important;
  }
}


/* V23 — editorial social-proof redesign */
.reviews-luxe {
  padding: clamp(96px, 10vw, 156px) var(--pad);
  background: #121210;
  color: #f7f2e8;
  overflow: hidden;
}
.reviews-luxe .section-kicker { color: rgba(255,255,255,.5); }
.reviews-luxe-top {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .62fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: end;
  padding-bottom: clamp(46px, 5vw, 70px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.reviews-luxe h2 {
  margin: 0;
  max-width: 9ch;
  font-family: var(--serif);
  font-size: clamp(58px, 7.1vw, 108px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: -.025em;
}
.reviews-luxe-ratings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.reviews-luxe-ratings a {
  min-height: 122px;
  padding: 22px 20px 20px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 5px 16px;
  color: inherit;
  text-decoration: none;
}
.reviews-luxe-ratings a + a {
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.reviews-luxe-ratings span {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  color: rgba(255,255,255,.5);
}
.reviews-luxe-ratings strong {
  font-family: var(--serif);
  font-size: clamp(44px, 4.2vw, 66px);
  font-weight: 400;
  line-height: .9;
}
.reviews-luxe-ratings small {
  align-self: end;
  padding-bottom: 4px;
  font-size: 13px;
  color: rgba(255,255,255,.52);
}
.reviews-feature {
  position: relative;
  padding: clamp(72px, 8vw, 124px) 0 clamp(64px, 7vw, 104px);
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.reviews-feature::before {
  content: '“';
  position: absolute;
  top: 18px;
  right: 0;
  font-family: var(--serif);
  font-size: clamp(170px, 20vw, 330px);
  line-height: 1;
  color: rgba(217,155,28,.14);
  pointer-events: none;
}
.reviews-feature-label {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  color: rgba(255,255,255,.46);
}
.reviews-feature blockquote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 1180px;
  font-family: var(--serif);
  font-size: clamp(46px, 6vw, 92px);
  line-height: .98;
  letter-spacing: -.025em;
}
.reviews-feature-byline {
  margin: 30px 0 0;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.reviews-supporting {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(220px,.72fr);
  gap: 0;
  align-items: stretch;
}
.reviews-supporting article {
  min-height: 210px;
  padding: 34px 34px 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.reviews-supporting article + article {
  padding-left: 34px;
  border-left: 1px solid rgba(255,255,255,.14);
}
.reviews-supporting blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: 1.07;
}
.reviews-supporting article p {
  margin: 28px 0 0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.reviews-actions {
  border-left: 1px solid rgba(255,255,255,.14);
  padding: 34px 0 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 18px;
}
.reviews-actions .text-link { margin-top: 0; }

@media (max-width: 1000px) {
  .reviews-luxe-top { grid-template-columns: 1fr; }
  .reviews-luxe-ratings { max-width: 620px; }
  .reviews-supporting { grid-template-columns: 1fr 1fr; }
  .reviews-actions { grid-column: 1 / -1; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); padding-left: 0; flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 700px) {
  .reviews-luxe { padding-top: 82px; padding-bottom: 82px; }
  .reviews-luxe h2 { font-size: clamp(50px, 14vw, 74px); }
  .reviews-luxe-ratings { grid-template-columns: 1fr; }
  .reviews-luxe-ratings a { min-height: 100px; }
  .reviews-luxe-ratings a + a { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .reviews-feature { padding-top: 64px; }
  .reviews-feature blockquote { font-size: clamp(40px, 11vw, 62px); }
  .reviews-feature::before { font-size: 180px; top: 28px; }
  .reviews-supporting { grid-template-columns: 1fr; }
  .reviews-supporting article { min-height: 0; padding: 30px 0; }
  .reviews-supporting article + article { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.14); }
  .reviews-actions { grid-column: auto; flex-direction: column; padding-top: 28px; }
}


/* V24 — review names use Mill Creek logo gold */
.review-name {
  color: #d9a33a;
}
.reviews-feature-byline .review-name {
  font-weight: 600;
  letter-spacing: .04em;
}
.reviews-supporting article p .review-name {
  font-weight: 600;
}


/* V25 — individual barber booking links */
.barber-name-link {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: inherit;
  text-decoration: none;
}
.barber-name-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right .4s var(--ease);
}
.barber-name-link:hover::after,
.barber-name-link:focus-visible::after { right: 0; }
.barber-name-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 8px; }

.finder-mobile,
.finder-mobile-price { display: none; }
.footer-identity { max-width: 460px; }
.footer-identity p {
  margin: 7px 0 0;
  max-width: 43ch;
  opacity: .68;
  line-height: 1.5;
}
.footer address {
  margin: 0;
  opacity: .68;
  font-style: normal;
  line-height: 1.55;
}


/* V26 — mobile quality audit */
@media (max-width: 900px) {
  :root { --pad: clamp(20px, 5.6vw, 32px); }

  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .hero {
    min-height: max(760px, 100svh);
  }

  .hero-photo {
    inset: 0;
    background-position: 72% center !important;
    animation: none;
    transform: translate3d(0, var(--hero-media-y), 0) scale(1.06);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.56) 60%, rgba(0,0,0,.18) 100%),
      linear-gradient(0deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.20) 58%),
      radial-gradient(circle at 74% 34%, rgba(234,184,84,.13), transparent 30%);
  }

  .gallery {
    scroll-padding-inline: var(--pad);
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  .gallery-item {
    flex-basis: min(80vw, 390px) !important;
    width: min(80vw, 390px) !important;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  h1, h2, .reviews-feature blockquote, .faq-list summary {
    text-wrap: balance;
  }

  .site-header,
  .site-header.is-scrolled {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .site-header {
    min-height: 72px;
  }

  .site-header.is-scrolled {
    min-height: 62px;
    background: rgba(17,17,15,.92);
  }

  .brand { gap: 4px; }
  .brand-top { font-size: clamp(19px, 5.4vw, 22px); }
  .brand-bottom { font-size: 8px; letter-spacing: .13em; }

  .hero {
    min-height: max(780px, 100svh);
  }

  .hero-copy {
    width: 100%;
    padding-top: 112px;
    padding-bottom: 214px;
  }

  .hero h1 {
    max-width: 8.7ch;
    font-size: clamp(49px, 15.4vw, 68px);
    line-height: .88;
  }

  .hero-intro {
    max-width: 34ch;
    margin-top: 22px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    max-width: 390px;
    margin-top: 28px;
  }

  .hero-actions .cta-primary,
  .hero-actions .cta-secondary {
    width: 100%;
  }

  .hero-meta {
    bottom: 16px;
  }

  .hero-meta div {
    min-height: 43px;
    align-items: center;
    padding: 8px 0;
  }

  .hero-meta strong {
    text-align: right;
  }

  .decision,
  .work,
  .barbers-content,
  .reviews-luxe,
  .faq,
  .visit-compact .visit-copy,
  .visit-book {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .decision { gap: 40px; }

  .decision-copy h2,
  .barbers-content h2,
  .faq-copy h2 {
    font-size: clamp(43px, 12.8vw, 60px);
    line-height: .94;
  }

  .decision-copy > p:not(.section-kicker),
  .barbers-content > p:not(.section-kicker),
  .faq-copy > p:not(.section-kicker) {
    font-size: 17px;
    line-height: 1.62;
  }

  .finder-options button {
    display: flex;
    min-height: 54px;
    align-items: center;
    width: 100%;
    padding: 14px 0 12px;
    text-align: left;
    line-height: 1.35;
  }

  .finder-result {
    gap: 26px;
    padding-top: 32px;
  }

  .finder-result h3 {
    font-size: clamp(39px, 11vw, 50px);
    line-height: .98;
  }

  .finder-result p {
    font-size: 17px;
    line-height: 1.6;
  }

  .finder-action {
    width: 100%;
    min-width: 0;
  }

  .finder-action .cta-primary {
    width: 100%;
    white-space: normal;
  }

  .menu-details { margin-top: 30px; }

  .menu-details summary {
    display: flex;
    min-height: 56px;
    align-items: center;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .compact-menu div {
    min-height: 52px;
    align-items: center;
  }

  .work-head {
    gap: 22px;
    margin-bottom: 34px;
  }

  .work h2 {
    max-width: 8ch;
    font-size: clamp(48px, 13.6vw, 64px);
    line-height: .93;
  }

  .work-head-copy {
    max-width: 34ch;
    font-size: 17px;
    line-height: 1.6;
  }

  .gallery-item {
    flex-basis: min(82vw, 360px) !important;
    width: min(82vw, 360px) !important;
    border-radius: 14px;
  }

  .work-footer {
    gap: 26px;
    margin-top: 36px;
    padding-top: 28px;
  }

  .work-footer p {
    font-size: 17px;
    line-height: 1.58;
  }

  .work-footer .cta-primary {
    width: 100%;
  }

  .shop-life-media {
    min-height: 0;
    grid-template-rows: auto auto;
  }

  .shop-life-main {
    aspect-ratio: 16 / 10;
  }

  .shop-life-row {
    min-height: 0;
  }

  .shop-life-row figure {
    aspect-ratio: 4 / 3;
  }

  .shop-life-media img {
    position: absolute;
    inset: 0;
  }

  .shop-life-main img { object-position: 50% 52%; }
  .shop-life-row figure:first-child img { object-position: 50% 42%; }
  .shop-life-row figure:last-child img { object-position: 50% 50%; }

  .barbers-content {
    padding-left: var(--pad);
    padding-right: var(--pad);
  }

  .shop-life-note {
    max-width: 26ch !important;
    font-size: clamp(22px, 6.4vw, 27px) !important;
    line-height: 1.2 !important;
  }

  .barber-list--compact { margin-top: 28px; }

  .barber-list--compact .barber-row {
    min-height: 70px;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
  }

  .barber-list--compact .barber-row span {
    font-size: clamp(28px, 8vw, 34px);
  }

  .barber-list--compact .barber-row small {
    max-width: 10ch;
    text-align: right;
    line-height: 1.35;
  }

  .reviews-luxe-top {
    gap: 34px;
    padding-bottom: 42px;
  }

  .reviews-luxe h2 {
    max-width: 9ch;
    font-size: clamp(46px, 13vw, 62px);
    line-height: .94;
  }

  .reviews-luxe-ratings {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-luxe-ratings a {
    min-height: 126px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 3px;
    padding: 18px 14px 18px 0;
  }

  .reviews-luxe-ratings a + a {
    padding-left: 18px;
    border-top: 0;
    border-left: 1px solid rgba(255,255,255,.14);
  }

  .reviews-luxe-ratings strong {
    font-size: 45px;
  }

  .reviews-luxe-ratings small {
    align-self: auto;
    padding-bottom: 0;
  }

  .reviews-feature {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .reviews-feature blockquote {
    max-width: 10ch;
    font-size: clamp(38px, 10.5vw, 50px);
    line-height: 1.02;
  }

  .reviews-feature::before {
    top: 22px;
    font-size: 155px;
  }

  .reviews-supporting article {
    padding: 26px 0;
  }

  .reviews-actions {
    gap: 14px;
    padding-top: 24px;
  }

  .faq-copy { margin-bottom: 38px; }

  .faq-list summary {
    display: flex;
    min-height: 72px;
    align-items: center;
    padding: 20px 42px 20px 0;
    font-size: clamp(25px, 7vw, 31px);
    line-height: 1.12;
  }

  .faq-list details p {
    margin-right: 0;
    font-size: 17px;
    line-height: 1.62;
  }

  .visit-compact .visit-copy h2,
  .visit-book h2 {
    font-size: clamp(46px, 13vw, 62px);
    line-height: .92;
  }

  .visit-compact .address {
    font-size: 21px;
    line-height: 1.28;
  }

  .hours div {
    min-height: 50px;
    align-items: center;
    font-size: 15px;
  }

  .visit-links .text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    margin-top: 0;
  }

  .visit-book > p:not(.section-kicker) {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.6;
  }

  .visit-book .cta-primary--dark {
    width: 100%;
  }

  .visit-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .footer {
    gap: 18px;
    padding-top: 30px;
    padding-bottom: 34px;
  }

  .footer-links {
    width: 100%;
    gap: 12px 22px;
  }

  .footer-links a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
  }

  .mobile-book {
    left: 50%;
    right: auto;
    bottom: calc(10px + env(safe-area-inset-bottom));
    width: min(calc(100% - 24px), 460px);
    height: 58px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    background: linear-gradient(180deg, #e1aa3a 0%, #d09419 100%);
    box-shadow: 0 14px 42px rgba(0,0,0,.34);
    transform: translateX(-50%);
  }

  .work-dialog {
    width: calc(100vw - 16px);
    max-height: calc(100svh - 16px);
    border-radius: 16px;
  }

  .work-dialog-media {
    min-height: min(54svh, 520px);
  }

  .work-dialog-copy .cta-primary {
    width: 100%;
  }
}

@media (max-width: 380px) {
  :root { --pad: 18px; }

  .brand-top { font-size: 19px; }
  .brand-bottom { font-size: 7.5px; letter-spacing: .11em; }

  .hero h1 { font-size: 47px; }
  .hero-copy { padding-bottom: 218px; }
  .hero-meta { left: 18px; right: 18px; }
  .hero-meta strong { font-size: 14px; }

  .reviews-luxe-ratings a { padding-right: 10px; }
  .reviews-luxe-ratings a + a { padding-left: 14px; }

  .hours div { gap: 16px; }
}

@media (hover: none) and (pointer: coarse) {
  .gallery-item:hover img,
  .shop-life-media:hover .shop-life-main img,
  .shop-life-row figure:hover img {
    transform: none !important;
  }
}

/* V27 — focused phone booking flow and genuinely swipeable photo strip */
@media (min-width: 701px) and (max-width: 900px) {
  .gallery-item {
    flex: 0 0 min(58vw, 360px) !important;
    width: min(58vw, 360px) !important;
  }
}

@media (max-width: 700px) {
  body { padding-bottom: 0; }
  .hero { min-height: max(720px, 100svh); }
  .hero-copy { padding-bottom: 82px; }
  .hero-meta { display: none; }

  .decision { padding-top: 64px; gap: 30px; }
  .decision-copy > p:not(.section-kicker) { margin-top: 19px; }
  .decision-copy .decision-note { margin-top: 21px !important; padding-top: 18px; }

  .service-finder { width: 100%; min-width: 0; }
  .finder-label { display: none; }
  .finder-options { display: none; }
  .finder-mobile { display: block; }
  .finder-mobile label {
    display: block;
    margin-bottom: 9px;
    font-size: 14px;
    font-weight: 600;
  }
  .finder-mobile select {
    width: 100%;
    min-height: 56px;
    padding: 12px 46px 12px 16px;
    border: 1px solid #8a8175;
    border-radius: 8px;
    background: #fffaf2;
    color: var(--ink);
    font: 600 16px/1.4 var(--sans);
  }
  .finder-mobile select:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
  .finder-result {
    display: block;
    margin-top: 14px;
    padding: 22px 20px 20px;
    border: 1px solid #d7cbb9;
    border-radius: 12px;
    background: #f0e9dc;
  }
  .finder-result > div:first-child { position: relative; padding-right: 69px; }
  .finder-result-label { margin-bottom: 8px; }
  .finder-mobile-price {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 400;
    line-height: 1;
  }
  .finder-result h3 { max-width: none; font-size: clamp(34px, 10vw, 44px); }
  .finder-result p { margin-top: 12px; font-size: 16px; line-height: 1.5; }
  .finder-action { margin-top: 20px; }
  .finder-action strong { display: none; }
  .finder-action .cta-primary { min-height: 54px; }
  .menu-details { display: none; }

  .gallery-shell { width: 100%; min-width: 0; }
  .gallery {
    display: flex !important;
    flex-flow: row nowrap !important;
    width: 100%;
    max-width: 100vw;
    min-width: 0;
    gap: 12px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    padding: 0 var(--pad) 12px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--pad);
    touch-action: auto;
    -webkit-overflow-scrolling: touch;
  }
  .gallery-item {
    display: block;
    flex: 0 0 min(72vw, 300px) !important;
    width: min(72vw, 300px) !important;
    max-width: min(72vw, 300px) !important;
    min-width: 0 !important;
    aspect-ratio: 4 / 5 !important;
    scroll-snap-align: start;
  }
  .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
  .work-footer { margin-top: 40px; }

  .footer { display: grid; grid-template-columns: 1fr; }
  .footer-identity, .footer-links, .footer address { width: 100%; }
  .footer address { font-size: 14px; }
}

/* V28 — a plain price menu and a contained photo grid at small sizes */
.service-menu { min-width: 0; align-self: center; }
.service-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(17,17,15,.32);
}
.service-menu-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17,17,15,.22);
}
.service-menu-list span,
.service-menu-list strong {
  font-family: var(--serif);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 400;
  line-height: 1.1;
}
.service-menu-list strong { white-space: nowrap; }
.service-menu > p { margin: 24px 0 22px; color: #575046; font-size: 15px; }
.service-menu .cta-primary { min-width: 220px; }

@media (max-width: 900px) {
  html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
  }
  main { min-width: 0; max-width: 100%; overflow-x: clip; }
  #work .gallery-shell { min-width: 0; max-width: 100%; }
  #work .gallery {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 14px !important;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 0 var(--pad);
    overflow: visible !important;
    scroll-snap-type: none;
  }
  #work .gallery-item {
    display: block;
    min-width: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 4 / 5 !important;
    scroll-snap-align: none;
  }
  #work .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 700px) {
  .hero-actions .cta-secondary { display: none; }
  .hero-actions { max-width: 390px; }
  .decision { gap: 26px; }
  .decision-copy h2 { max-width: none; }
  .decision-copy > p:not(.section-kicker) { max-width: 32ch; }
  .service-menu-list li { min-height: 58px; padding: 12px 0; }
  .service-menu-list span,
  .service-menu-list strong { font-size: clamp(22px, 6vw, 27px); }
  .service-menu > p { margin: 20px 0; font-size: 14px; line-height: 1.5; }
  .service-menu .cta-primary { width: 100%; }

  #work .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 12px !important; }
  #work .gallery-item:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 12px) / 2) !important;
    justify-self: center;
  }
  .work-dialog-media { min-height: 0; height: min(58svh, 530px); }
  .work-dialog-media img { object-fit: contain; object-position: center; }
}

/* V29 — consistent spacing and reliable, lighter scroll reveals */
.reveal,
.reveal.reveal-scale,
.price-row.reveal,
.barber-row.reveal,
.review-quote.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .62s ease, transform .76s var(--ease-out-expo);
  transition-delay: 0s;
}
.reveal.will-reveal { opacity: 0; transform: translate3d(0, 28px, 0); }
.reveal.reveal-scale.will-reveal { transform: translate3d(0, 24px, 0) scale(.985); }
.reveal.will-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 700px) {
  /* Relative offsets do not move the booking button below them. */
  .hero h1,
  .hero-intro { position: relative; top: -34px; }
  .hero-photo { will-change: auto; }

  .work { padding-top: 40px; }
  .work-head { gap: 16px; margin-bottom: 30px; }
  .decision { padding-top: 58px; }
  .barbers-content,
  .reviews-luxe,
  .faq,
  .visit-compact .visit-copy,
  .visit-book { padding-top: 62px; }

  .section-kicker { margin-bottom: 12px; }
  .decision-copy > p:not(.section-kicker),
  .faq-copy > p:not(.section-kicker) { margin-top: 16px; }
  .barbers-content h2,
  .visit-compact .visit-copy h2 { margin-bottom: 18px; }
  .visit-book > p:not(.section-kicker) { margin-top: 18px; }
  .reviews-luxe-top { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal.will-reveal,
  .reveal.reveal-scale.will-reveal { opacity: 1 !important; transform: none !important; }
}

/* V30 — a quieter, coordinated motion language for touch screens. */
@media (max-width: 700px) and (prefers-reduced-motion: no-preference) {
  .hero-photo {
    animation: mobilePhotoSettle 1.85s var(--ease-out-expo) both;
  }
  .hero-line > span {
    animation: mobileTypeRise 1.02s .12s var(--ease-out-expo) both;
  }
  .hero-line:nth-child(2) > span { animation-delay: .27s; }
  .hero-intro-motion {
    animation: mobileCopyEnter .78s .43s var(--ease-out-expo) both;
  }
  .hero .hero-actions-motion {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .hero .hero-actions-motion > .cta-primary {
    animation: mobileButtonEnter .88s .43s var(--ease-out-expo) backwards;
  }

  .reveal.will-reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity .7s ease, transform .86s var(--ease-out-expo);
  }
  .reveal.reveal-scale.will-reveal {
    transform: translate3d(0, 16px, 0) scale(.99);
  }
  .reveal.will-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  /* The menu and photo grid enter in place, so their columns never shift. */
  .service-menu.reveal.will-reveal,
  .gallery-shell.reveal.will-reveal {
    opacity: 1;
    transform: none;
  }
  .service-menu.will-reveal .service-menu-list li,
  .gallery-shell.will-reveal .gallery-item {
    opacity: 0;
    transform: translate3d(0, 15px, 0);
    transition: opacity .55s ease, transform .75s var(--ease-out-expo);
    transition-delay: calc(var(--motion-order, 0) * 70ms);
  }
  .service-menu.will-reveal.is-visible .service-menu-list li,
  .gallery-shell.will-reveal.is-visible .gallery-item {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .service-menu-list li:nth-child(2),
  .gallery-item:nth-child(2) { --motion-order: 1; }
  .service-menu-list li:nth-child(3),
  .gallery-item:nth-child(3) { --motion-order: 2; }
  .service-menu-list li:nth-child(4),
  .gallery-item:nth-child(4) { --motion-order: 3; }
  .service-menu-list li:nth-child(5),
  .gallery-item:nth-child(5) { --motion-order: 4; }
  .service-menu-list li:nth-child(6) { --motion-order: 5; }
  .service-menu.will-reveal > p,
  .service-menu.will-reveal > .cta-primary {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
    transition: opacity .55s ease, transform .72s var(--ease-out-expo);
    transition-delay: .32s;
  }
  .service-menu.will-reveal.is-visible > p,
  .service-menu.will-reveal.is-visible > .cta-primary {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes mobilePhotoSettle {
  from { opacity: .72; transform: translate3d(0, 0, 0) scale(1.11); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1.06); }
}
@keyframes mobileTypeRise {
  from { transform: translate3d(0, 108%, 0); }
  to { transform: translate3d(0, 0, 0); }
}
@keyframes mobileCopyEnter {
  from { opacity: 0; transform: translate3d(0, 13px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes mobileButtonEnter {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
