/* ═══════════════════════════════════════════════════════════════════════════
   MR CUT — BARBERSHOP & BEAUTY SUPPLY · shared design system
   ---------------------------------------------------------------------------
   Everything here is sampled off the building at 2441 Jamacha Rd. The shop has
   no logo file and no brand guide — what it has is a parapet with three things
   bolted to it, and those three things ARE the palette:

     · MR CUT      — 3D channel letters, watermelon red face over a darker red
                     return. That return is why every red surface on this site
                     casts a hard offset shadow instead of a soft one: it is a
                     literal copy of how the sign is built.
     · barber pole — red / white / blue on chrome. Used as a rule, a section
                     edge, and the header mark. It is the only mark they own.
     · Beauty Supply — a royal blue panel with white letters. Blue is not an
                     accent invented to go with the red; it is the second half
                     of their sign, and it carries the retail side of the shop.

   Ground is CREAM, not black. The stucco is cream, the shop is a bright walk-in
   room off a strip-mall parking lot, and $15 haircuts seven days a week is not a
   luxury proposition. Align Hair Studio (sites/align) is black and gold because
   that IS what Align is; the two sites are shown by the same salesperson in the
   same town, so they had better not read as one template twice.

   No build step (house convention): this file is shared by every page and the
   header/footer markup is duplicated per page.
   ═══════════════════════════════════════════════════════════════════════════ */

:root{
  /* ground — stucco, paper, and the white of the barber pole */
  --paper:    #FBF6EC;
  --paper-2:  #F4EBDB;   /* alternating sections */
  --card:     #FFFFFF;
  --stucco:   #EFE3CF;
  --rule:     #E3D6C0;   /* hairlines */
  --rule-2:   #CDBB9C;
  --ink-box:  #171310;   /* the one dark surface: footer + the pole's mount */

  /* the sign */
  --red:      #E8455F;
  --red-d:    #B02A45;   /* the letter return — every hard offset shadow */
  --red-dd:   #7C1930;
  --red-l:    #FF7186;
  --red-wash: #FDEBEE;

  --blue:     #2F4FB5;
  --blue-d:   #1B347F;
  --blue-l:   #5C79D8;
  --blue-wash:#EAEEFA;

  /* chrome — the pole housing and its end caps */
  --chrome-grad: linear-gradient(160deg,#FFFFFF 0%,#DFE3E8 26%,#9AA0A8 52%,#F1F3F6 74%,#B4BAC2 100%);
  --red-grad:    linear-gradient(150deg,#FF7186 0%,#E8455F 42%,#C22F49 100%);
  /* the pole itself, as a fill: a 45° repeat that reads as a twist at any width */
  --pole: repeating-linear-gradient(58deg,
            #E8455F 0 14px, #FBF6EC 14px 27px, #2F4FB5 27px 41px, #FBF6EC 41px 54px);

  /* type */
  --ink:      #191512;
  --ink-2:    #4C433A;
  --mute:     #857A6B;

  --display: 'Anton', 'Haettenschweiler', 'Arial Narrow Bold', ui-sans-serif, sans-serif;
  --sans:    'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --cond:    'Barlow Condensed', 'Barlow', system-ui, sans-serif;

  --wrap: 1200px;
  --nav-h: 84px;
  --gut: 28px;
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  background:var(--paper);color:var(--ink);
  font-family:var(--sans);font-size:17px;line-height:1.66;font-weight:400;
  -webkit-font-smoothing:antialiased;overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
::selection{background:var(--red);color:#fff}
:focus-visible{outline:3px solid var(--blue);outline-offset:2px}

.wrap{max-width:var(--wrap);margin:0 auto;padding:0 var(--gut)}
.narrow{max-width:820px}

/* ── the two brand type treatments ──────────────────────────────────────────
   `.hot` is the sign: red face, hard offset return, no gradient. A gradient was
   tried and is wrong — the letters on the building are flat paint with a shadow,
   and a gradient made them look like a 2009 web button.
   `.chrome` is the pole housing, and IS a gradient, because chrome is. */
.hot{
  color:var(--red);
  text-shadow:.055em .055em 0 var(--red-d), .09em .09em 0 rgba(124,25,48,.35);
}
.chrome{
  background:var(--chrome-grad);-webkit-background-clip:text;background-clip:text;
  -webkit-text-fill-color:transparent;color:#A9AFB7;
  /* chrome on cream needs an edge or it dissolves into the page */
  filter:drop-shadow(0 1px 0 rgba(0,0,0,.28));
}
.blue{color:var(--blue)}

h1,h2,h3,h4{font-family:var(--display);font-weight:400;line-height:1.02;letter-spacing:.005em}
h1{font-size:clamp(2.9rem,7vw,5.6rem);text-transform:uppercase}
h2{font-size:clamp(2.1rem,4.4vw,3.4rem);text-transform:uppercase}
h3{font-size:1.6rem;text-transform:uppercase}

/* the strip of services on the window decal, set as a tracked condensed caps line */
.eyebrow{
  font-family:var(--cond);font-size:.86rem;font-weight:700;
  letter-spacing:.3em;text-transform:uppercase;color:var(--blue);
  display:block;margin-bottom:16px;
}
.eyebrow.dim{color:var(--mute)}
.lede{color:var(--ink-2);font-size:1.1rem;max-width:62ch}
.small{font-size:.92rem;color:var(--mute)}

/* ── the barber pole, as a rule ────────────────────────────────────────────
   Replaces Align's gold-hairline-with-a-diamond. Same job, their mark instead
   of somebody else's. */
.divider{display:flex;align-items:center;gap:0;margin:26px 0;height:10px}
.divider::before{content:"";flex:1;height:10px;background:var(--pole);
  border-top:1px solid var(--rule-2);border-bottom:1px solid var(--rule-2)}
.divider i{display:none}
.divider.left::before{flex:0 0 120px}
.pdiv{max-width:240px;margin:24px auto}

/* ── buttons ───────────────────────────────────────────────────────────────
   The sign's construction, as a control: a flat red face sitting on a hard
   offset in the darker return colour. Pressing it moves the face down onto the
   shadow, which is the whole of the interaction and needs no other affordance. */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--cond);font-size:1rem;font-weight:700;
  letter-spacing:.16em;text-transform:uppercase;
  padding:15px 32px;border:0;cursor:pointer;position:relative;
  transition:transform .13s cubic-bezier(.2,.8,.3,1),box-shadow .13s,color .2s,background .2s;
  white-space:nowrap;line-height:1.15;
}
.btn-red{background:var(--red);color:#fff;box-shadow:4px 4px 0 var(--red-d)}
.btn-red:hover{transform:translate(2px,2px);box-shadow:2px 2px 0 var(--red-d)}
.btn-red:active{transform:translate(4px,4px);box-shadow:0 0 0 var(--red-d)}
.btn-blue{background:var(--blue);color:#fff;box-shadow:4px 4px 0 var(--blue-d)}
.btn-blue:hover{transform:translate(2px,2px);box-shadow:2px 2px 0 var(--blue-d)}
.btn-ghost{color:var(--ink);background:transparent;box-shadow:inset 0 0 0 2px var(--ink)}
.btn-ghost:hover{background:var(--ink);color:var(--paper)}
.btn-sm{padding:11px 20px;font-size:.9rem;letter-spacing:.13em}
.btn:disabled{opacity:.34;cursor:not-allowed;transform:none;box-shadow:none}
.btn-red:disabled,.btn-blue:disabled{box-shadow:none}

/* ── header ────────────────────────────────────────────────────────────────
   Opaque cream with the pole as its bottom edge. Not translucent: on a light
   page a translucent bar lets the content read straight through it and the
   header stops looking like a header at all. */
header{position:sticky;top:0;z-index:200;background:var(--paper);border-bottom:1px solid var(--rule)}
header::after{content:"";position:absolute;left:0;right:0;bottom:-7px;height:7px;background:var(--pole)}
nav{display:flex;align-items:center;justify-content:space-between;height:var(--nav-h);gap:26px}
.brand{display:flex;align-items:center;gap:12px;flex:none}
/* the pole mark is taller than it is wide — height drives, width follows */
.brand img{width:auto;height:48px}
.brand .bt{line-height:1}
.brand .bn{font-family:var(--display);font-size:1.5rem;letter-spacing:.02em;text-transform:uppercase;
  display:block;color:var(--red);text-shadow:2px 2px 0 var(--red-d)}
.brand .bs{font-family:var(--cond);font-size:.68rem;font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;color:var(--blue);margin-top:4px;display:block}
.navlinks{display:flex;gap:34px;align-items:center}
.navlinks a{
  font-family:var(--cond);font-size:1rem;font-weight:600;letter-spacing:.14em;
  text-transform:uppercase;color:var(--ink-2);position:relative;padding:6px 0;transition:color .2s;
}
.navlinks a:hover,.navlinks a[aria-current="page"]{color:var(--ink)}
.navlinks a::after{content:"";position:absolute;left:0;bottom:0;height:3px;width:0;
  background:var(--red);transition:width .24s cubic-bezier(.2,.8,.3,1)}
.navlinks a:hover::after,.navlinks a[aria-current="page"]::after{width:100%}
/* initNav() clones the header's Book button into the nav list so the OPEN MOBILE MENU
   has a way to book (the header button is hidden under 1000px). On desktop that clone
   is a duplicate of a button sitting 200px to its right, so it stays hidden until the
   viewport that needs it. */
.navlinks .navbook{display:none}
.navtoggle{display:none;background:none;border:0;color:var(--ink);
  width:44px;height:44px;cursor:pointer;align-items:center;justify-content:center}
@media(max-width:1000px){
  .navlinks{
    position:fixed;inset:var(--nav-h) 0 auto 0;background:var(--paper);
    flex-direction:column;gap:0;padding:0 0 10px;border-bottom:1px solid var(--rule);
    transform:translateY(-120%);transition:transform .3s cubic-bezier(.2,.8,.3,1);
  }
  .navlinks.open{transform:translateY(0)}
  .navlinks a::after{display:none}
  .navtoggle{display:inline-flex}
  header .btn{display:none}
}

/* ── sections ──────────────────────────────────────────────────────────── */
section{padding:clamp(66px,9vw,116px) 0;position:relative}
.sec-head{margin-bottom:52px;max-width:70ch}
.sec-head.split{display:flex;justify-content:space-between;align-items:flex-end;gap:40px;max-width:none;flex-wrap:wrap}
.alt{background:var(--paper-2)}

/* Align paints marble here; the equivalent surface on this building is stucco.
   Two SVG-free layers: a wide soft mottle and a fine speckle, both at very low
   opacity, so a full-bleed cream section has a texture instead of being a
   flat fill the eye reads as "unstyled". */
.veined{position:relative;overflow:hidden}
.veined::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.6;
  background:
    radial-gradient(ellipse 55% 42% at 86% 8%,  rgba(232,69,95,.07), transparent 62%),
    radial-gradient(ellipse 48% 55% at 6% 92%,  rgba(47,79,181,.06), transparent 64%);
}

/* ── hero ──────────────────────────────────────────────────────────────── */
.hero{
  min-height:calc(100svh - var(--nav-h));display:grid;place-items:center;
  text-align:left;padding:clamp(44px,6vw,80px) 0;position:relative;overflow:hidden;
  background:linear-gradient(180deg,var(--paper) 0%,var(--stucco) 100%);
}
.hero::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 62% 50% at 78% 30%, rgba(232,69,95,.10), transparent 68%),
    radial-gradient(ellipse 40% 34% at 8% 86%,  rgba(47,79,181,.08), transparent 70%);
}
.hero .wrap{position:relative;z-index:1}
.hero-mark{
  width:clamp(52px,7vw,74px);height:auto;margin:0 0 22px;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.18));
  animation:markIn 1s cubic-bezier(.2,.8,.3,1) both;
}
@keyframes markIn{from{opacity:0;transform:translateY(18px) scale(.94)}to{opacity:1;transform:none}}
.hero h1{margin-bottom:6px}
.hero .tagline{
  font-family:var(--cond);font-size:clamp(1rem,1.7vw,1.3rem);font-weight:700;
  letter-spacing:.34em;text-transform:uppercase;color:var(--blue);margin:18px 0 0;
}
.hero .lede{margin:24px 0 0}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap;margin-top:34px}
.scrollcue{
  position:absolute;bottom:24px;left:50%;transform:translateX(-50%);
  font-family:var(--cond);font-size:.8rem;font-weight:600;letter-spacing:.24em;
  text-transform:uppercase;color:var(--mute);
  display:flex;flex-direction:column;align-items:center;gap:9px;
}
.scrollcue::after{content:"";width:2px;height:34px;
  background:linear-gradient(180deg,var(--red),transparent);animation:cue 2.2s ease-in-out infinite}
@keyframes cue{0%,100%{opacity:.3;transform:scaleY(.6);transform-origin:top}50%{opacity:1;transform:scaleY(1)}}
@media(max-width:700px){.scrollcue{display:none}}

/* the window-decal service line, as a strip between sections */
.strip{background:var(--ink-box);color:#EFE7DA;padding:18px 0;overflow:hidden;position:relative}
.strip::before,.strip::after{content:"";position:absolute;left:0;right:0;height:7px;background:var(--pole)}
.strip::before{top:0}.strip::after{bottom:0}
.strip .row{display:flex;justify-content:center;flex-wrap:wrap;
  font-family:var(--cond);font-size:1rem;font-weight:600;letter-spacing:.28em;text-transform:uppercase}
.strip .row span{padding:0 22px;position:relative}
.strip .row span+span::before{content:"";position:absolute;left:0;top:50%;width:6px;height:6px;
  background:var(--red);transform:translateY(-50%) rotate(45deg)}

/* ── cards ─────────────────────────────────────────────────────────────── */
.grid{display:grid;gap:24px}
.g2{grid-template-columns:repeat(auto-fit,minmax(320px,1fr))}
.g3{grid-template-columns:repeat(auto-fit,minmax(290px,1fr))}
.card{
  background:var(--card);border:2px solid var(--ink);padding:32px 28px;position:relative;
  box-shadow:6px 6px 0 var(--stucco);
  transition:transform .2s cubic-bezier(.2,.8,.3,1),box-shadow .2s;
}
.card:hover{transform:translate(-2px,-2px);box-shadow:9px 9px 0 var(--red)}
.card .num{font-family:var(--display);font-size:1.3rem;color:var(--red);display:block;margin-bottom:12px}

/* ── barber cards ──────────────────────────────────────────────────────── */
.barber{
  background:var(--card);border:2px solid var(--ink);display:flex;flex-direction:column;
  box-shadow:6px 6px 0 var(--stucco);
  transition:transform .22s cubic-bezier(.2,.8,.3,1),box-shadow .22s;
}
.barber:hover{transform:translate(-2px,-2px);box-shadow:9px 9px 0 var(--red)}
.barber .photo{
  aspect-ratio:4/3;background:var(--blue-wash);
  display:grid;place-items:center;position:relative;overflow:hidden;border-bottom:2px solid var(--ink);
  /* ONE definition of the disc, shared by the image and the ring so they cannot
     disagree. Sized off WIDTH — a percentage HEIGHT on a centred grid item has no
     definite basis to resolve against. (Inherited from Align, where that exact bug
     produced a photo and a ring at two different sizes.) */
  --disc:min(70%,208px);
}
.barber .photo img{
  width:var(--disc);height:auto;aspect-ratio:1;object-fit:cover;
  clip-path:circle(50% at 50% 50%);position:relative;z-index:1;
}
/* the ring: a solid 3px red circle in FRONT of the photo. No blur and no tint —
   nothing is allowed to wash out a face. */
.barber .photo::after{
  content:"";position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:var(--disc);aspect-ratio:1;border-radius:50%;pointer-events:none;z-index:2;
  border:3px solid var(--red);
}
.barber .photo.no-photo{aspect-ratio:4/3;background:var(--red-wash)}
/* The ring above frames a PHOTOGRAPH. With no photo the monogram draws its own ring
   (below) and the two rendered as concentric red circles — a bullseye, not a portrait
   placeholder. Only one ring is ever correct. */
.barber .photo.no-photo::after{display:none}
.barber .photo .mono{
  font-family:var(--display);font-size:clamp(2.4rem,5vw,3.4rem);color:var(--red);
  position:relative;z-index:1;
}
.barber .photo.no-photo .mono::after{
  content:"";position:absolute;left:50%;top:50%;width:2.6em;height:2.6em;
  transform:translate(-50%,-50%);border:3px solid var(--red);border-radius:50%;
}
.barber .body{padding:22px 22px 24px;display:flex;flex-direction:column;gap:9px;flex:1}
.barber h3{font-size:1.5rem;margin:0}
.barber .barber-name{font-size:2rem;margin:0;text-transform:uppercase}
.barber .role{font-family:var(--cond);font-size:.88rem;font-weight:700;letter-spacing:.2em;
  text-transform:uppercase;color:var(--blue)}
.barber .bio{font-size:.95rem;color:var(--ink-2);flex:1}
.barber .meta{font-family:var(--cond);font-size:1rem;color:var(--mute);padding-top:12px;
  border-top:2px solid var(--rule)}
.barber .meta b{color:var(--ink);font-weight:700}
.barber .meta .cats{display:block}
.barber .acts{display:flex;gap:12px;align-items:center;margin-top:6px}

/* ── service menu ──────────────────────────────────────────────────────────
   A wall price list, so it is set like one: condensed, tight, leader dots. */
.menu-cat{margin-bottom:46px}
.menu-cat h3{color:var(--blue);font-family:var(--cond);font-size:1rem;font-weight:700;
  letter-spacing:.26em;margin-bottom:16px}
.menu-row{display:flex;flex-wrap:wrap;gap:4px 16px;align-items:baseline;
  padding:15px 0;border-bottom:1px solid var(--rule)}
.menu-row .nm{flex:0 1 auto;min-width:0;font-family:var(--display);font-size:1.35rem;text-transform:uppercase}
.menu-row .fill{flex:1;border-bottom:2px dotted var(--rule-2);transform:translateY(-6px);min-width:20px}
.menu-row .pr{font-family:var(--display);font-size:1.35rem;color:var(--red);white-space:nowrap;text-align:right}
.menu-row .by{display:block;font-family:var(--cond);font-size:.9rem;font-weight:600;letter-spacing:.1em;
  color:var(--mute);text-transform:uppercase;margin-top:2px}
.menu-row .desc{flex-basis:100%;font-size:.92rem;color:var(--mute);margin-top:-2px}

/* ── footer ────────────────────────────────────────────────────────────────
   The one dark surface on the site. It is the mount the pole is bolted to, and
   it gives the cream somewhere to stop. */
footer{background:var(--ink-box);color:#C9BFB0;padding:64px 0 30px;font-size:.95rem;position:relative}
footer::before{content:"";position:absolute;left:0;right:0;top:0;height:8px;background:var(--pole)}
.foot-grid{display:grid;grid-template-columns:1.6fr 1fr 1.1fr 1fr .8fr;gap:42px}
@media(max-width:900px){.foot-grid{grid-template-columns:1fr 1fr;gap:32px}}
footer h4{font-family:var(--cond);font-size:.95rem;font-weight:700;letter-spacing:.24em;
  color:var(--red-l);margin-bottom:14px}
footer a:hover{color:#fff}
footer ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.foot-bottom{margin-top:46px;padding-top:22px;border-top:1px solid rgba(255,255,255,.13);
  display:flex;justify-content:space-between;gap:20px;flex-wrap:wrap;font-size:.85rem;color:#8D8375}

/* ── hours ─────────────────────────────────────────────────────────────── */
.hours-row{display:flex;justify-content:space-between;gap:16px;padding:11px 0;
  border-bottom:1px solid var(--rule);font-size:.97rem}
.hours-row .d{color:var(--mute)}
footer .hours-row{border-bottom-color:rgba(255,255,255,.1)}
footer .hours-row .d{color:#8D8375}
.hours-row.today{color:var(--ink);font-weight:600}
footer .hours-row.today{color:#fff}
.hours-row.today .d{color:var(--red)}
footer .hours-row.today .d{color:var(--red-l)}

/* ── reveal on scroll ──────────────────────────────────────────────────── */
.reveal{opacity:0;transform:translateY(22px);transition:opacity .7s cubic-bezier(.2,.8,.3,1),transform .7s cubic-bezier(.2,.8,.3,1)}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  .hero-mark{animation:none}
  .scrollcue::after{animation:none}
  html{scroll-behavior:auto}
}

/* ── page header (inner pages) ─────────────────────────────────────────── */
.pagehead{padding:clamp(56px,8vw,104px) 0 clamp(34px,4.5vw,56px);text-align:center;
  position:relative;overflow:hidden;background:linear-gradient(180deg,var(--paper),var(--stucco))}
.pagehead::before{content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 60% 70% at 50% 0%, rgba(232,69,95,.09), transparent 70%)}
.pagehead .wrap{position:relative;z-index:1}
.crumb{font-family:var(--cond);font-size:.92rem;font-weight:600;letter-spacing:.18em;
  text-transform:uppercase;color:var(--mute);margin-bottom:16px}
.crumb a:hover{color:var(--red)}

/* ── review proof ─────────────────────────────────────────────────────────
   Visible content only, never schema aggregateRating: Google's structured-data
   policy forbids a business marking up an aggregate rating it pulled from a
   third party, and doing it risks a manual action. The stars still do their job
   where it counts — on the page. */
.rating{display:flex;align-items:center;gap:11px;margin-top:22px;
  font-size:.92rem;color:var(--ink-2);flex-wrap:wrap}
.rating .stars{color:var(--red);letter-spacing:.12em;font-size:1.05rem}
.rating b{color:var(--ink);font-weight:700}

/* ── work photo ───────────────────────────────────────────────────────── */
.workgrid{display:grid;grid-template-columns:1fr 1fr;gap:52px;align-items:center}
@media(max-width:860px){.workgrid{grid-template-columns:1fr;gap:32px}}
.workshot{position:relative;border:2px solid var(--ink);overflow:hidden;box-shadow:8px 8px 0 var(--red)}
.workshot img{width:100%;height:auto;display:block}

/* ── the wordmark catches the light once, on load ─────────────────────────
   Only .chrome animates: it is a gradient and has something to sweep. .hot is
   flat paint with a shadow — sweeping it would be sweeping nothing. */
.hero h1 .chrome{background-size:220% 100%;animation:sheen 2.2s cubic-bezier(.3,.7,.3,1) .3s both}
@keyframes sheen{from{background-position:120% 0}to{background-position:0 0}}

/* ── social proof band ────────────────────────────────────────────────────── */
.proof{border-bottom:1px solid var(--rule);background:var(--card)}
.proofrow{display:grid;grid-template-columns:repeat(4,1fr);gap:0;text-align:center}
.proofrow > div{padding:32px 14px;position:relative}
.proofrow > div + div::before{content:"";position:absolute;left:0;top:22%;height:56%;width:2px;background:var(--rule)}
.proofrow b{display:block;font-family:var(--display);font-size:clamp(1.9rem,3vw,2.8rem);
  line-height:1;color:var(--red)}
.proofrow span{display:block;margin-top:8px;font-family:var(--cond);font-size:.92rem;font-weight:600;
  letter-spacing:.16em;text-transform:uppercase;color:var(--mute)}
@media(max-width:760px){.proofrow{grid-template-columns:1fr 1fr}
  .proofrow > div:nth-child(3)::before{display:none}}

/* ── the service finder ───────────────────────────────────────────────────── */
.svcfilter{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:44px;justify-content:center}
.fchip{background:var(--card);border:2px solid var(--ink);color:var(--ink);
  padding:9px 18px;font-family:var(--cond);font-size:.95rem;font-weight:700;letter-spacing:.14em;
  text-transform:uppercase;cursor:pointer;transition:all .16s}
.fchip:hover{background:var(--stucco)}
.fchip.on{background:var(--red);border-color:var(--red);color:#fff;box-shadow:3px 3px 0 var(--red-d)}

.svccat{font-family:var(--cond);font-size:1rem;font-weight:700;letter-spacing:.26em;
  text-transform:uppercase;color:var(--blue);margin:0 0 18px;display:flex;align-items:center;gap:14px}
.svccat::after{content:"";flex:1;height:2px;background:var(--rule)}
.svcblock{margin-bottom:50px}
.svcblock[hidden]{display:none}

.svcitem{border:2px solid var(--ink);background:var(--card);padding:24px 24px 22px;margin-bottom:14px;
  box-shadow:5px 5px 0 var(--stucco);transition:box-shadow .2s}
.svcitem:hover{box-shadow:5px 5px 0 var(--red)}
.svchead{display:flex;justify-content:space-between;align-items:baseline;gap:18px;flex-wrap:wrap}
.svcitem h3{font-size:1.7rem;margin:0}
.svcfrom{font-family:var(--cond);font-size:.95rem;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--mute);white-space:nowrap}
.svcfrom b{font-family:var(--display);font-size:1.4rem;color:var(--red);letter-spacing:0}
.svcdesc{color:var(--ink-2);font-size:.97rem;margin-top:8px;max-width:64ch}
.svcwho{font-family:var(--cond);font-size:.95rem;font-weight:600;letter-spacing:.18em;
  text-transform:uppercase;color:var(--mute);margin:18px 0 10px}

/* one row per barber who does it — their face, their price, a direct booking link */
.offers{display:grid;grid-template-columns:repeat(auto-fill,minmax(232px,1fr));gap:9px}
.offer{display:flex;align-items:center;gap:12px;padding:10px 13px;
  border:2px solid var(--rule-2);background:var(--paper);transition:all .16s}
.offer:hover{border-color:var(--red);background:#fff;transform:translate(-1px,-1px);box-shadow:3px 3px 0 var(--red)}
.offer .oav{width:40px;height:40px;border-radius:50%;overflow:hidden;flex:none;
  background:var(--blue-wash);display:grid;place-items:center;
  font-family:var(--display);font-size:.95rem;color:var(--red);box-shadow:0 0 0 2px var(--rule-2)}
.offer .oav img{width:100%;height:100%;object-fit:cover;transform:scale(1.06)}
.offer .oinfo{flex:1;min-width:0;line-height:1.25}
.offer .onm{display:block;font-size:.98rem;font-weight:600}
.offer .odur{display:block;font-family:var(--cond);font-size:.85rem;letter-spacing:.1em;
  text-transform:uppercase;color:var(--mute)}
.offer .opr{font-family:var(--display);font-size:1.25rem;color:var(--red);flex:none}

/* ── skeletons ────────────────────────────────────────────────────────────
   The shape of the thing arriving, not the words "Loading…". On a slow phone
   this is most of the perceived speed. */
.skel{border:2px solid var(--rule);background:var(--card)}
.skel .sk{background:linear-gradient(90deg,var(--stucco) 25%,#F8F1E5 37%,var(--stucco) 63%);
  background-size:400% 100%;animation:shimmer 1.5s ease-in-out infinite}
.skel .sk-photo{aspect-ratio:4/3}
.skel .sk-body{padding:24px}
.skel .sk-line{height:12px;margin-bottom:11px}
.skel .sk-line.w60{width:60%}.skel .sk-line.w40{width:40%}.skel .sk-line.w85{width:85%}
@keyframes shimmer{from{background-position:100% 0}to{background-position:-100% 0}}
@media(prefers-reduced-motion:reduce){.skel .sk{animation:none}.hero h1 .chrome{animation:none}}

/* ── sticky mobile book bar ───────────────────────────────────────────────
   The header CTA is hidden under 1000px (the nav collapses), which leaves phones
   with no persistent way to book. Highest-leverage element on a barbershop site:
   most traffic is a phone and the goal is one tap. Behaviour (start down, rise
   only after the in-page CTA scrolls up and out) is in initStickyBook(). */
.mbook{display:none}
@media(max-width:1000px){
  .mbook{
    display:block;position:fixed;left:0;right:0;bottom:0;z-index:300;
    background:var(--red);color:#fff;text-align:center;
    padding:16px 16px calc(16px + env(safe-area-inset-bottom));
    font-family:var(--cond);font-size:1.05rem;font-weight:700;letter-spacing:.16em;text-transform:uppercase;
    box-shadow:0 -10px 30px rgba(0,0,0,.22);
    border-top:5px solid var(--red-d);
    transform:translateY(115%);
    transition:transform .3s cubic-bezier(.2,.8,.3,1);
  }
  .mbook.is-up{transform:none}
  /* carries the bar's colour past the bottom of the LAYOUT viewport. A fixed
     element at bottom:0 is anchored to the small viewport; when iOS Safari's
     toolbar collapses, the visual viewport grows and the page scrolls through
     the strip that opens underneath. */
  .mbook::after{
    content:"";position:absolute;left:0;right:0;top:100%;
    height:100vh;height:100lvh;background:var(--red);pointer-events:none;
  }
  /* the Arcbay video bubble is fixed to the same corner this bar owns; it reads
     this variable through the shadow boundary, so lifting it is a variable rather
     than a fork of the shared embed */
  :root{--arcbay-bubble-bottom-mobile:88px}
  body{padding-bottom:74px}
  /* the booking page has its own submit button; a duplicate CTA there is noise */
  body[data-page="book"] .mbook{display:none}
  body[data-page="book"]{padding-bottom:0}
}
@media(prefers-reduced-motion:reduce){.mbook{transition:none}}

.barber .photo img{transition:transform .5s cubic-bezier(.2,.8,.3,1)}
.barber:hover .photo img{transform:scale(1.04)}

@media(prefers-reduced-motion:no-preference){@view-transition{navigation:auto}}

/* ═══════════════════════════════════════════════════════════════════════════
   THE STOREFRONT PHOTOGRAPH
   The only picture of this shop that exists is one frame off a phone video of
   the parapet. That is genuinely all there is, and it is worth more than any
   stock barbershop interior: it is the thing a customer looks for from the
   Jamacha Rd parking lot. It gets the hero panel and nothing else pretends to
   be a photo library.
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-split{
  display:grid;grid-template-columns:1.05fr .95fr;
  gap:clamp(30px,5vw,68px);align-items:center;width:100%;
}
.hero-copy{max-width:34rem;text-align:left}
.hero-copy .hero-mark{margin-left:0}
.hero-copy .lede{margin-left:0;text-align:left}
.hero-copy .hero-cta{justify-content:flex-start}
.hero-copy .rating{justify-content:flex-start}
.hero-copy h1{font-size:clamp(3.1rem,5.4vw,5.4rem);letter-spacing:.01em}

/* Text first, photo second — the name and the reason to book get read before
   the picture, and the picture is what you look at while deciding. */
.hero-shot{order:2}
.hero-shot{
  margin:0;position:relative;overflow:hidden;
  border:3px solid var(--ink);box-shadow:12px 12px 0 var(--red);
}
.hero-shot img{
  display:block;width:100%;height:auto;
  aspect-ratio:4/5;object-fit:cover;object-position:50% 38%;
}
/* the source is a video frame in overcast light. A touch of warmth and contrast
   on top of what ImageMagick already did, so it sits on cream rather than on a
   grey card of its own. */
.hero-shot::after{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(200deg,rgba(255,180,120,.10),transparent 46%);
}

@media (max-width:900px){
  .hero-split{grid-template-columns:1fr;gap:28px}
  .hero-shot{order:-1;max-width:none}
  .hero-shot img{aspect-ratio:16/11;object-position:50% 34%}
  .hero-copy{max-width:none}
  .hero-copy .eyebrow{letter-spacing:.24em}
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE PASS
   Ported wholesale from sites/align/styles.css, which was measured at
   390x844 / DPR 3 / touch against a live phone. The findings are about layout,
   not palette — 44px tap targets, a hero that fits one screen, a roster that is
   a comparison rather than a scroll — so they transfer intact, and re-deriving
   them on a different cream site would be re-doing solved work.
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width:760px){
  /* hero: copy first, photo as a band under it. Photo-first spent the whole of
     screen one on branding and pushed the wordmark and the Book button off it. */
  .hero{min-height:0;padding:24px 0 38px}
  .hero-split{grid-template-columns:1fr;gap:24px}
  .hero-shot{order:2;max-width:none;margin-top:4px}
  .hero-shot img{aspect-ratio:3/2;object-position:50% 32%}
  .hero-shot{box-shadow:8px 8px 0 var(--red)}

  /* the nav bar already shows the pole AND the name 60px above this */
  .hero-copy .hero-mark{display:none}
  .hero-copy h1{font-size:clamp(2.3rem,11vw,3.1rem)}
  .hero-copy .lede{margin-top:14px;font-size:1.02rem}
  .hero-copy .hero-cta{margin-top:18px}
  .hero .scrollcue{display:none}

  /* tap targets: 44px minimum. Padding, not font-size — nothing about the type
     changes. The barber name is the link that matters most on this site and was
     the easiest to mis-tap at 32px. */
  .barber h3 a,
  .navlinks a,
  footer a{display:inline-block;min-height:44px;line-height:44px}
  .crumb a{display:inline-block;min-height:44px;line-height:44px;padding-right:4px}
  .fchip{min-height:44px;padding-top:0;padding-bottom:0}
  .btn-sm{padding:13px 20px}
  a[href^="tel:"],a[href^="mailto:"]{display:inline-block;min-height:44px;line-height:44px}

  /* Barber cards stay STACKED here (the 2-up rework is at 560px below). Only the
     bio drops: on a roster where nobody has written one it rendered as an empty
     gap pushing the price and the Book button down. */
  .barber .bio{display:none}

  .sec-head{margin-bottom:26px}
  section{padding:42px 0}
  footer{padding:44px 0 26px}

  .pagehead{padding:28px 0 22px}
  .pagehead h1{font-size:clamp(2.1rem,11vw,3rem)}
  .pagehead .pdiv{margin:14px auto;max-width:180px}
  .pagehead .lede{font-size:1rem}

  /* the service finder was 8.4 screens for sixteen services — dense, correct
     information dressed at desktop scale. Tighten the frame, not the content. */
  .svcfilter{margin-bottom:20px;gap:8px}
  .fchip{padding-left:14px;padding-right:14px}
  .svcblock{margin-bottom:26px}
  .svccat{margin-bottom:12px;gap:10px}
  .svcitem{padding:14px 13px 13px;margin-bottom:9px}
  .svcitem h3{font-size:1.3rem}
  .svchead{gap:5px 12px}
  .svcdesc{font-size:.93rem;margin-top:5px}
  .svcwho{margin:11px 0 7px}
  .offers{gap:7px}
  .offer{padding:8px 11px;gap:10px}
  .offer .oav{width:36px;height:36px}
}

/* ── the team preview as a swipeable rail on a phone ─────────────────────
   Five stacked cards are three full screens. A rail keeps ALL FIVE — nobody gets
   cut for being fifth, which is the whole point — inside one. */
@media (max-width:760px){
  #teamPreview.grid{
    display:grid;grid-auto-flow:column;grid-auto-columns:80vw;gap:14px;
    overflow-x:auto;scroll-snap-type:x mandatory;-webkit-overflow-scrolling:touch;
    margin-inline:calc(-1 * var(--gut));padding-inline:var(--gut);
    padding-block:6px 12px;                /* room for the 6px card shadow */
    scrollbar-width:none;
  }
  #teamPreview.grid::-webkit-scrollbar{display:none}
  #teamPreview .barber{scroll-snap-align:center}
  #teamPreview .barber .photo{--disc:min(58%,150px)}
}

/* ── mobile header ─────────────────────────────────────────────────────── */
@media (max-width:1000px){
  :root{--nav-h:64px}
  .brand img{height:40px}
  .brand .bn{font-size:1.25rem}
  .brand .bs{font-size:.6rem;margin-top:3px}
  .brand{min-height:44px}

  /* the burger, drawn: three rules from one element plus its two pseudo-elements,
     so the lines cannot drift apart. 19px of glyph inside a 44px target — the
     target belongs to the finger, the glyph to the eye. */
  .navtoggle{
    display:inline-flex;align-items:center;justify-content:center;position:relative;
    width:44px;height:44px;padding:0;background:none;border:0;
    color:var(--ink);cursor:pointer;-webkit-tap-highlight-color:transparent;
  }
  .navtoggle:hover,.navtoggle[aria-expanded="true"]{color:var(--red)}
  .burger,.burger::before,.burger::after{
    content:"";position:absolute;left:50%;width:20px;height:2.5px;margin-left:-10px;
    border-radius:1px;background:currentColor;
    transition:transform .26s cubic-bezier(.2,.8,.3,1),top .26s cubic-bezier(.2,.8,.3,1),background .2s;
  }
  .burger{top:50%;margin-top:-1.25px}
  .burger::before{left:0;margin-left:0;top:-6.5px}
  .burger::after{left:0;margin-left:0;top:6.5px}
  /* open: the middle line goes, the outer two cross. The button that opened it is
     the button that closes it, and it has to look like it. */
  .navtoggle[aria-expanded="true"] .burger{background:transparent}
  .navtoggle[aria-expanded="true"] .burger::before{top:0;transform:rotate(45deg)}
  .navtoggle[aria-expanded="true"] .burger::after{top:0;transform:rotate(-45deg)}

  /* the panel: a list below the bar, hairline-separated, 48px rows. Deliberately
     not a full-screen overlay — five links behind a modal is something you have
     to get out of. */
  .navlinks{box-shadow:0 22px 34px rgba(0,0,0,.14)}
  .navlinks a{
    display:flex;align-items:center;min-height:48px;line-height:1.2;
    padding:0 24px;width:100%;font-size:1.05rem;letter-spacing:.14em;
    border-top:1px solid var(--rule);color:var(--ink);
  }
  .navlinks a:first-child{border-top:0}
  .navlinks a[aria-current="page"]{color:var(--red)}
  /* the Book row cloned in by initNav() — a control among destinations, so it
     looks like one */
  .navlinks .navbook{
    display:flex;border-top:0;margin:10px 24px 4px;padding:15px;text-align:center;
    justify-content:center;width:auto;min-height:0;line-height:1.2;
    background:var(--red);color:#fff;box-shadow:4px 4px 0 var(--red-d);
    font-family:var(--cond);font-weight:700;letter-spacing:.16em;text-transform:uppercase;font-size:1.05rem;
  }
  .navlinks .navbook::after{display:none}
}
@media (prefers-reduced-motion:reduce){
  .burger,.burger::before,.burger::after{transition:none}
}

/* ═══════════════════════════════════════════════════════════════════════════
   THE ROSTER ON A PHONE — 2-up, composed like /book's step 1
   Five stacked cards measured 2685px, almost all of it frame: a full-width 4:3
   photo band whose actual content is a 208px circle, five times over. /book had
   already solved this — a round avatar centred over the name, two per row, so
   four people are on screen at once and choosing is a comparison instead of a
   scroll.
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width:560px){
  /* minmax(0,…) not 1fr: grid items default to min-width:auto, which is what
     pushed this page 79px wider than the phone the first time. */
  #teamGrid.grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}
  #teamGrid .barber{position:relative;padding:16px 10px 13px;align-items:center;text-align:center}
  #teamGrid .barber:hover{transform:none;box-shadow:6px 6px 0 var(--stucco)}

  /* the photo frame IS the disc now — no band, no bottom rule, no 4:3 void */
  #teamGrid .barber .photo,
  #teamGrid .barber .photo.no-photo{
    width:96px;aspect-ratio:1;border-radius:50%;border-bottom:0;
    margin:0 auto 11px;--disc:100%;
    /* the whole card is the link (see the ::after below); this anchor must not
       also take the tap, or the card sometimes navigates and sometimes doesn't */
    pointer-events:none;
  }
  #teamGrid .barber .photo .mono{font-size:1.85rem}
  #teamGrid .barber .body{padding:0;gap:4px;align-items:center;width:100%;flex:1}
  #teamGrid .barber h3{font-size:1.1rem;line-height:1.12}
  /* the 44px target moves from the name to the whole card, so the name goes back
     to being type rather than a 44px band of empty line-height */
  #teamGrid .barber h3 a{min-height:0;line-height:1.12;display:inline}
  #teamGrid .barber .role{font-size:.78rem;letter-spacing:.12em}
  #teamGrid .barber .meta{width:100%;font-size:.95rem;padding-top:8px;margin-top:2px;line-height:1.35}
  /* "Cuts · Beard · Shave" wraps to three lines in 141px and buries the price.
     It is on the barber's own page, one tap away, in full. */
  #teamGrid .barber .meta .cats{display:none}

  #teamGrid .barber .acts{width:100%;margin-top:10px;gap:8px}
  /* the ghost button was a third link to the profile the card already opens */
  #teamGrid .barber .acts .btn-ghost{display:none}
  #teamGrid .barber .acts .btn-red{
    flex:1;padding:12px 8px;font-size:.92rem;letter-spacing:.1em;
    position:relative;z-index:2;box-shadow:3px 3px 0 var(--red-d);
  }
  /* tap the card → that barber's menu and hours. Tap the red button → straight
     into booking them. */
  #teamGrid .barber h3 a::after{content:"";position:absolute;inset:0;z-index:1}

  /* An odd roster leaves the last barber alone beside an empty cell — the exact
     hole this layout exists to close. The orphan spans the row and recomposes
     sideways instead. */
  #teamGrid .barber:last-child:nth-child(odd){
    grid-column:1/-1;flex-direction:row;align-items:center;text-align:left;padding:14px;gap:16px;
  }
  #teamGrid .barber:last-child:nth-child(odd) .photo{margin:0;flex:none}
  #teamGrid .barber:last-child:nth-child(odd) .body{align-items:flex-start;min-width:0}
  #teamGrid .barber:last-child:nth-child(odd) .meta{border-top:0;padding-top:0;margin-top:0}
  #teamGrid .barber:last-child:nth-child(odd) .acts{margin-top:9px;width:auto}
  #teamGrid .barber:last-child:nth-child(odd) .acts .btn-red{flex:none;padding:12px 30px}
}

/* ── the footer on a phone ───────────────────────────────────────────────── */
@media (max-width:560px){
  .foot-grid{grid-template-columns:1fr 1fr;gap:20px 18px}
  /* the brand blurb spans the row; everything after it pairs cleanly */
  .foot-grid > :first-child{grid-column:1/-1}
  footer h4{margin-bottom:6px}
  /* `footer a` is an inline-block with line-height:44px, so each <li> carries a
     line box of its own around it — the inline-block descender gap, doubled by
     the 44px line-height, rendered the rows 88px apart. Making the row itself
     the flex line removes the second box; the 44px minimum is untouched. */
  footer ul{gap:0}
  footer li{display:flex}
  /* display:flex beats the [hidden] attribute's display:none, which un-hid the
     email row applyBusiness() hides when the shop has no email on file — the
     dangling em-dash that code exists to prevent. */
  footer li[hidden]{display:none}
  footer ul a{display:flex;align-items:center;line-height:1.25;width:100%}
  /* "Mon – Sat" and "9am – 7pm" do not fit one 157px line and wrapped into four */
  .hours-row{flex-direction:column;align-items:flex-start;gap:1px;padding:8px 0;font-size:.92rem}
  .foot-bottom{margin-top:22px;padding-top:15px}
}

/* ═══════════════════════════════════════════════════════════════════════════
   THE BEAUTY SUPPLY COUNTER
   The blue half of the sign, and the thing that makes this shop not just another
   barbershop: you can walk out with the pomade the barber just used on you. It
   gets the blue treatment everywhere so the two halves of the business are
   colour-coded on sight.
   ═══════════════════════════════════════════════════════════════════════════ */
.supply{background:var(--blue);color:#fff;position:relative;overflow:hidden}
.supply::before{content:"";position:absolute;inset:0;pointer-events:none;
  background:radial-gradient(ellipse 60% 60% at 82% 14%,rgba(255,255,255,.12),transparent 66%)}
.supply .wrap{position:relative;z-index:1}
.supply .eyebrow{color:#BECAF0}
.supply h2{color:#fff}
.supply .lede{color:#D6DEF6}
.supply .btn-ghost{color:#fff;box-shadow:inset 0 0 0 2px #fff}
.supply .btn-ghost:hover{background:#fff;color:var(--blue)}
.shelf{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:16px;margin-top:40px}
.shelfitem{background:rgba(255,255,255,.09);border:2px solid rgba(255,255,255,.24);padding:20px 18px}
.shelfitem h4{font-family:var(--display);font-size:1.2rem;text-transform:uppercase;
  color:#fff;margin-bottom:6px}
.shelfitem p{font-size:.93rem;color:#C6D1F0;line-height:1.5}

/* Owner pull-quote. One real, attributable review rather than a carousel of five:
   a single line a visitor could go and verify reads as true; a wall of them reads
   as marketing. */
.ownerquote{margin:34px 0 0;padding:22px 26px;border-left:5px solid var(--red);
  background:var(--card);max-width:62ch;box-shadow:5px 5px 0 var(--stucco)}
.ownerquote blockquote{margin:0;font-family:var(--sans);font-size:1.15rem;font-weight:500;
  color:var(--ink);line-height:1.55}
.ownerquote figcaption{margin-top:12px;font-family:var(--cond);font-size:.92rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--mute)}

.ownerhead{display:flex;align-items:center;gap:24px;flex-wrap:wrap}
.ownerhead img{width:140px;height:140px;flex:none;object-fit:cover;border-radius:50%;
  border:3px solid var(--red)}
/* min-width:0 is load-bearing: without it the display heading's min-content width
   keeps the text column wider than the row and wraps the portrait onto its own
   line at every viewport. */
.ownerhead>div{flex:1 1 340px;min-width:0}
.ownerhead h2{margin-top:6px}
.ownerbody p+p{margin-top:16px}
@media(max-width:560px){.ownerhead{gap:16px}.ownerhead img{width:96px;height:96px}}

/* ── full-bleed photograph ───────────────────────────────────────────────────
   Edge to edge, between two sections. The pole rules top and bottom tie it to the
   page instead of letting it read as a gap where the layout stopped. Height is
   capped in vh so a wide photo does not become a full screen of ceiling tiles on a
   tall monitor. */
.bleed{margin:0;position:relative;overflow:hidden;background:var(--ink-box)}
.bleed::before,.bleed::after{content:"";position:absolute;left:0;right:0;height:7px;
  background:var(--pole);z-index:1}
.bleed::before{top:0}.bleed::after{bottom:0}
.bleed img{display:block;width:100%;height:auto;max-height:56vh;object-fit:cover;object-position:50% 46%}
@media(max-width:760px){.bleed img{max-height:none;aspect-ratio:16/9}}

/* the retail wall, inside the blue section — a white keyline rather than the ink
   border used on cream, because ink on royal blue disappears */
.supplyshot{margin:38px 0 0;overflow:hidden;border:3px solid rgba(255,255,255,.55);
  box-shadow:10px 10px 0 rgba(0,0,0,.22)}
.supplyshot img{display:block;width:100%;height:auto;aspect-ratio:16/9;object-fit:cover;object-position:50% 45%}
@media(max-width:760px){.supplyshot{box-shadow:6px 6px 0 rgba(0,0,0,.22)}.supplyshot img{aspect-ratio:4/3}}

/* their own wall board, photographed. It is the menu, so it sits beside the menu —
   proof that the prices on this page are the prices in the room. */
.boardshot{margin:0;border:3px solid var(--ink);box-shadow:10px 10px 0 var(--blue);
  overflow:hidden;background:#111}
.boardshot img{display:block;width:100%;height:auto}
.boardnote{font-size:.92rem;color:var(--mute);margin-top:16px}

/* ── info rows used on the Visit page ──────────────────────────────────── */
.inforow{display:flex;gap:14px;align-items:flex-start;padding:16px 0;border-bottom:1px solid var(--rule)}
.inforow .k{font-family:var(--cond);font-size:.95rem;font-weight:700;letter-spacing:.18em;
  text-transform:uppercase;color:var(--mute);flex:0 0 108px}
.inforow .v{flex:1;min-width:0}
