/* =========================================================================
   King's Krown Barbershop
   Palette and motion taken from the shop's crown mark: obsidian, gold, crimson.
   ========================================================================= */

/* ---------- tokens ---------- */
:root {
  --ink:        #0B0B0C;
  --ink-2:      #101012;
  --ink-3:      #17171A;
  --ink-4:      #1F1F23;

  --gold-1:     #F7E7A6;
  --gold-2:     #E4C464;
  --gold-3:     #B8892C;
  --gold-4:     #8A6418;

  --crimson:    #8E1B1B;
  --crimson-2:  #B22222;

  --cream:      #F2EDE3;
  --muted:      rgba(242, 237, 227, .62);
  --faint:      rgba(242, 237, 227, .38);
  --hair:       rgba(228, 196, 100, .18);

  --gold-sheen: linear-gradient(160deg, var(--gold-1) 0%, var(--gold-2) 26%, var(--gold-3) 52%, var(--gold-1) 72%, var(--gold-4) 100%);

  --f-display:  "Cinzel", "Trajan Pro", "Times New Roman", serif;
  --f-body:     "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --wrap:       1200px;
  --gut:        clamp(1.25rem, 4vw, 3rem);

  --ease:       cubic-bezier(.16, 1, .3, 1);
  --ease-io:    cubic-bezier(.65, 0, .35, 1);

  --nav-h:      74px;
}

/* ---------- fonts ---------- */
@font-face { font-family: "Cinzel"; src: url("/assets/fonts/cinzel-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Cinzel"; src: url("/assets/fonts/cinzel-900.woff2") format("woff2"); font-weight: 900; font-display: swap; }
@font-face { font-family: "Inter";  src: url("/assets/fonts/inter-400.woff2")  format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter";  src: url("/assets/fonts/inter-500.woff2")  format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Inter";  src: url("/assets/fonts/inter-600.woff2")  format("woff2"); font-weight: 600; font-display: swap; }

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: clamp(1rem, .96rem + .2vw, 1.0625rem);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
/* picture defaults to display:inline, which collapses percentage heights on the
   child img and quietly disables object-fit. display:contents removes the
   wrapper from layout so the img sizes against the real container. */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { margin: 0; font-weight: 700; line-height: 1.12; letter-spacing: .01em; }
p, ul, table, figure, blockquote { margin: 0; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--gold-3); color: var(--ink); }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 200; padding: .75rem 1.25rem; background: var(--gold-2); color: var(--ink);
  font-weight: 600; border-radius: 0 0 4px 4px; transition: top .2s var(--ease);
}
.skip:focus { top: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

/* ---------- shared type ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-2);
  display: flex; align-items: center; gap: .7rem;
}
.eyebrow .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--crimson-2); flex: none; }

.h2 {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.1rem);
  letter-spacing: .005em;
  margin-top: .85rem;
}

/* ornamental rule */
.rule { display: flex; align-items: center; gap: .85rem; margin: 1.4rem auto 1.5rem; width: min(360px, 70%); }
.rule span { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold-3), transparent); }
.rule i {
  width: 9px; height: 9px; flex: none; rotate: 45deg;
  background: var(--gold-sheen);
  box-shadow: 0 0 14px rgba(228, 196, 100, .45);
}
.rule--left { margin-inline: 0; width: 200px; }
.rule--left span { background: linear-gradient(90deg, var(--gold-3), transparent); }

/* ---------- buttons ---------- */
.btn {
  --bh: 52px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: var(--bh); padding: 0 1.65rem;
  font-family: var(--f-body); font-size: .82rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; white-space: nowrap;
  border-radius: 2px; overflow: hidden; isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), color .35s var(--ease);
}
.btn--sm { --bh: 40px; padding: 0 1.05rem; font-size: .74rem; letter-spacing: .1em; }

.btn--gold { background: var(--gold-sheen); color: #24190A; box-shadow: 0 8px 26px -12px rgba(228, 196, 100, .75); }
.btn--gold::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, .55) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .9s var(--ease);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(228, 196, 100, .9); }
.btn--gold:hover::after { transform: translateX(120%); }

.btn--ghost { color: var(--cream); border: 1px solid rgba(228, 196, 100, .42); background: rgba(11, 11, 12, .3); backdrop-filter: blur(6px); }
.btn--ghost:hover { transform: translateY(-2px); border-color: var(--gold-2); color: var(--gold-1); box-shadow: 0 14px 30px -18px rgba(0, 0, 0, .9); }

.ico { width: 15px; height: 15px; fill: currentColor; flex: none; }

/* ---------- crown mark ---------- */
.crown { filter: drop-shadow(0 3px 10px rgba(184, 137, 44, .38)); }
.crown--sm { width: 26px; }
.crown--md { width: 44px; }
.crown--lg { width: clamp(58px, 7vw, 86px); margin-inline: auto; }

/* ---------- status pill ---------- */
.status {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .38rem .85rem;
  font-size: .72rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  border: 1px solid var(--hair); border-radius: 100px;
  background: rgba(255, 255, 255, .03);
  color: var(--muted);
}
.status__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); flex: none; }
.status.is-open  { color: #9FE6B0; border-color: rgba(80, 200, 120, .3); }
.status.is-open  .status__dot { background: #52D67F; box-shadow: 0 0 0 0 rgba(82, 214, 127, .6); animation: pulse 2.4s infinite; }
.status.is-shut  { color: rgba(242, 237, 227, .72); }
.status.is-shut  .status__dot { background: var(--crimson-2); }
.status--hero, .status--block { margin-top: 1.6rem; }
/* the nav pill gets the short form so it never wraps and squeezes the call button */
.status--nav { white-space: nowrap; flex: none; }
@keyframes pulse {
  70%  { box-shadow: 0 0 0 9px rgba(82, 214, 127, 0); }
  100% { box-shadow: 0 0 0 0 rgba(82, 214, 127, 0); }
}

/* =========================================================================
   NAV
   ========================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .5s var(--ease), border-color .5s var(--ease), backdrop-filter .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(11, 11, 12, .86);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--hair);
}
.nav__in {
  max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut);
  height: var(--nav-h); display: flex; align-items: center; gap: 1.5rem;
}
.nav__brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.nav__name {
  font-family: var(--f-display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: .09em; text-transform: uppercase;
  background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  position: relative; font-size: .78rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  transition: color .35s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px;
  background: var(--gold-2); transform: scaleX(0); transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav__links a:hover { color: var(--gold-1); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__right { display: flex; align-items: center; gap: 1rem; }

.burger { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; align-items: center; gap: 5px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--gold-2); transition: transform .4s var(--ease), opacity .3s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile[hidden] { display: none; }
.mobile {
  display: none; flex-direction: column; gap: .25rem;
  padding: .5rem var(--gut) 1.5rem;
  background: rgba(11, 11, 12, .97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
}
.mobile a {
  padding: .9rem 0; font-size: .82rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}
.mobile__call { color: var(--gold-1) !important; border-bottom: 0 !important; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; isolation: isolate;
  min-height: 100svh; display: grid; place-items: center;
  padding: calc(var(--nav-h) + 4rem) var(--gut) 6rem;
  text-align: center; overflow: hidden;
}
/* Layer with positive z-index rather than negative. A negative-z-index layer that
   is also GPU promoted (will-change) can paint over in-flow content in some
   compositing paths, which hid the hero copy entirely. */
.hero__media { position: absolute; inset: -8% 0 -4%; z-index: 0; will-change: transform; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 42%, rgba(11, 11, 12, .18) 0%, rgba(11, 11, 12, .82) 62%, var(--ink) 100%),
    linear-gradient(180deg, rgba(11, 11, 12, .9) 0%, rgba(11, 11, 12, .34) 34%, rgba(11, 11, 12, .96) 100%);
}
.hero__grain {
  position: absolute; inset: 0; z-index: 2; opacity: .05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__in { position: relative; z-index: 3; max-width: 880px; }
.hero .eyebrow { justify-content: center; margin-top: 1.6rem; }

.wordmark { display: grid; gap: .1rem; margin: 1.1rem 0 1.6rem; font-family: var(--f-display); }
.wordmark__a, .wordmark__b {
  font-weight: 900; line-height: .94; text-transform: uppercase;
  background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, .7));
}
.wordmark__a { font-size: clamp(2.6rem, 1.1rem + 7.4vw, 6.2rem); letter-spacing: .04em; }
.wordmark__b { font-size: clamp(3.5rem, 1.2rem + 10.6vw, 8.8rem); letter-spacing: .02em; }
.wordmark__c {
  font-family: var(--f-body); font-size: clamp(.68rem, .6rem + .4vw, .84rem); font-weight: 500;
  letter-spacing: .58em; text-transform: uppercase; color: var(--muted);
  margin-top: .9rem; padding-left: .58em;
}

.hero__lede {
  max-width: 44ch; margin-inline: auto;
  font-size: clamp(1.02rem, .96rem + .42vw, 1.26rem); color: rgba(242, 237, 227, .8);
}
.hero__promise { margin-top: 1rem; color: var(--muted); font-size: .98rem; }
.hero__promise strong { color: var(--gold-1); font-weight: 600; }

.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; justify-content: center; margin-top: 2.3rem; }

.hero__scroll { position: absolute; z-index: 3; bottom: 2.2rem; left: 50%; translate: -50% 0; width: 24px; height: 54px; display: grid; place-items: center; }
.hero__scrollline { width: 1px; height: 46px; background: linear-gradient(180deg, transparent, var(--gold-3)); position: relative; overflow: hidden; }
.hero__scrollline::after {
  content: ""; position: absolute; inset: 0; background: var(--gold-1);
  animation: scrolldot 2.6s var(--ease-io) infinite;
}
@keyframes scrolldot {
  0%       { transform: translateY(-100%); }
  60%,100% { transform: translateY(100%); }
}

/* =========================================================================
   SECTIONS
   ========================================================================= */
.sec { position: relative; padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.sec--services { background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%); }
.sec--story    { background: var(--ink-2); }
.sec--hours    { background: linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%); }

.sec--story::before, .sec--hours::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair) 25%, var(--hair) 75%, transparent);
}

.sechead { text-align: center; max-width: 760px; margin: 0 auto clamp(2.8rem, 5vw, 4.5rem); }
.sechead .eyebrow { justify-content: center; }
.sechead__sub { color: var(--muted); max-width: 56ch; margin-inline: auto; }

.note {
  margin-top: 3rem; text-align: center; font-size: .9rem; color: var(--faint);
  letter-spacing: .04em;
}

/* ---------- service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  position: relative; overflow: hidden; border-radius: 3px;
  background: var(--ink-3); border: 1px solid rgba(255, 255, 255, .05);
  transition: transform .6s var(--ease), border-color .6s var(--ease), box-shadow .6s var(--ease);
}
.card::before {
  content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  border: 1px solid transparent; border-radius: 3px;
  background: linear-gradient(135deg, var(--gold-2), transparent 38%, transparent 62%, var(--gold-3)) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .6s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: 0 28px 50px -30px rgba(0, 0, 0, .95); }
.card:hover::before { opacity: 1; }

.card__img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--ink-4); }
.card__img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, .1) 30%, rgba(23, 23, 26, .95) 100%);
}
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease), filter .8s var(--ease); filter: saturate(.85); }
.card:hover .card__img img { transform: scale(1.07); filter: saturate(1); }

.card__body { padding: 1.5rem 1.5rem 1.75rem; }
.card__title {
  font-family: var(--f-display); font-size: 1.18rem; letter-spacing: .03em;
  background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.card__body p { margin-top: .6rem; font-size: .92rem; color: var(--muted); }

/* ---------- story ---------- */
.story { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: center; }
.story__media { position: relative; }
.story__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 2px; filter: saturate(.9) contrast(1.05); }
.story__frame {
  position: absolute; inset: 14px -14px -14px 14px; z-index: -1;
  border: 1px solid var(--gold-3); border-radius: 2px; opacity: .55;
}
.story__text > * + * { margin-top: 1.05rem; }
.story__text p { color: var(--muted); }

.quote {
  margin-top: 1.8rem !important; padding: 1.15rem 0 1.15rem 1.5rem;
  border-left: 2px solid var(--gold-3);
}
.quote p {
  font-family: var(--f-display); font-size: clamp(1.08rem, 1rem + .6vw, 1.34rem);
  line-height: 1.45; color: var(--cream) !important;
}
.quote cite { display: block; margin-top: .8rem; font-family: var(--f-body); font-style: normal; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.4rem !important; padding-top: 2rem; border-top: 1px solid var(--hair); }
.stats__n {
  display: block; font-family: var(--f-display); font-size: clamp(1.9rem, 1.4rem + 1.9vw, 2.9rem); line-height: 1;
  background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats__l { display: block; margin-top: .5rem; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; color: var(--faint); }

/* ---------- hours + visit ---------- */
.hv { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 5rem); }

.hours { width: 100%; border-collapse: collapse; margin-top: 2rem; }
.hours tr { border-bottom: 1px solid rgba(255, 255, 255, .06); transition: background .4s var(--ease); }
.hours th, .hours td { padding: .95rem .25rem; text-align: left; font-weight: 400; }
.hours th { font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.hours td { text-align: right; color: rgba(242, 237, 227, .82); font-variant-numeric: tabular-nums; }
.hours tr[data-closed] td { color: var(--faint); }
.hours tr.is-today { background: linear-gradient(90deg, rgba(228, 196, 100, .07), transparent); }
.hours tr.is-today th { color: var(--gold-1); font-weight: 600; }
.hours tr.is-today td { color: var(--gold-1); }
.hours tr.is-today th::before { content: ""; display: inline-block; width: 5px; height: 5px; rotate: 45deg; background: var(--gold-2); margin-right: .7rem; vertical-align: middle; }

.facts { margin-top: 2rem; display: grid; gap: .8rem; }
.facts li { position: relative; padding-left: 1.5rem; font-size: .92rem; color: var(--muted); }
.facts li::before { content: ""; position: absolute; left: 0; top: .62em; width: 6px; height: 6px; rotate: 45deg; background: var(--crimson-2); }
.facts strong { color: var(--cream); font-weight: 600; }

.addr { display: grid; gap: .25rem; margin-top: 2rem; font-style: normal; font-size: 1.06rem; color: rgba(242, 237, 227, .86); }
.addr--sm { margin-top: .9rem; font-size: .9rem; gap: .15rem; }
.addr--sm a { color: var(--gold-2); }
.addr--sm a:hover { color: var(--gold-1); }

.visit__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.visit__note { margin-top: 2rem; font-size: .92rem; color: var(--muted); max-width: 42ch; }

/* barber pole accent */
.pole {
  margin-top: 2.6rem; width: 100%; max-width: 260px; height: 10px;
  border-radius: 100px; overflow: hidden;
  border: 1px solid rgba(228, 196, 100, .28);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .6);
}
.pole span {
  display: block; height: 100%; width: 300%;
  background: repeating-linear-gradient(115deg,
    var(--crimson) 0 14px,
    #EFE7D8 14px 28px,
    var(--gold-3) 28px 42px,
    #EFE7D8 42px 56px);
  animation: pole 4s linear infinite;
}
@keyframes pole { to { transform: translateX(-56px); } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.foot { background: var(--ink); border-top: 1px solid var(--hair); padding-top: clamp(3rem, 6vw, 5rem); }
.foot__in { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 2.5rem; padding-bottom: 3rem; }
.foot__brand .crown { margin-bottom: 1rem; }
.foot__name { font-family: var(--f-display); font-size: 1.06rem; letter-spacing: .07em; text-transform: uppercase; background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; color: transparent; }
.foot__tag { margin-top: .35rem; font-size: .84rem; color: var(--faint); }
.foot__h { font-size: .72rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-2); }
.foot__hours { margin-top: .9rem; font-size: .9rem; color: var(--muted); line-height: 1.9; }

.foot__base {
  display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; justify-content: space-between; align-items: center;
  padding-block: 1.6rem; border-top: 1px solid rgba(255, 255, 255, .06);
  font-size: .78rem; color: var(--faint);
}
.foot__credit a { color: var(--gold-3); transition: color .3s var(--ease); }
.foot__credit a:hover { color: var(--gold-1); }

/* =========================================================================
   REVEAL MOTION
   ========================================================================= */
.reveal, .reveal-group > * {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .95s var(--ease), transform .95s var(--ease);
}
.reveal.is-in, .reveal-group.is-in > * { opacity: 1; transform: none; }
.reveal-group.is-in > *:nth-child(1) { transition-delay: .04s; }
.reveal-group.is-in > *:nth-child(2) { transition-delay: .12s; }
.reveal-group.is-in > *:nth-child(3) { transition-delay: .20s; }
.reveal-group.is-in > *:nth-child(4) { transition-delay: .28s; }
.reveal-group.is-in > *:nth-child(5) { transition-delay: .36s; }
.reveal-group.is-in > *:nth-child(6) { transition-delay: .44s; }
.reveal-group.is-in > *:nth-child(7) { transition-delay: .52s; }
.reveal-group.is-in > *:nth-child(8) { transition-delay: .60s; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1000px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .story { grid-template-columns: 1fr; }
  .story__media { max-width: 560px; }
  .foot__in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .burger { display: flex; }
  /* :not([hidden]) so the hidden attribute still wins. A bare
     `.mobile { display: flex }` outranks the UA [hidden] rule and pins it open. */
  .mobile:not([hidden]) { display: flex; }
}

@media (max-width: 820px) {
  .nav__right .status { display: none; }
  .hv { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --nav-h: 64px; }
  .cards { grid-template-columns: 1fr; }
  .foot__in { grid-template-columns: 1fr; gap: 2rem; }
  .nav__right .btn span { display: none; }
  .nav__right .btn { padding: 0 .9rem; }
  .hero__cta .btn { width: 100%; }
  .stats { grid-template-columns: 1fr; text-align: left; gap: 1.4rem; }
  .story__frame { inset: 10px -10px -10px 10px; }
}

/* =========================================================================
   REDUCED MOTION
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal, .reveal-group > * { opacity: 1; transform: none; }
  .hero__media { transform: none !important; }
}

/* ---------- print ---------- */
@media print {
  .nav, .hero__scroll, .mobile, .btn, .pole { display: none !important; }
  body { background: #fff; color: #000; }
  .sec { padding: 1rem 0; }
}

/* =========================================================================
   SERVICES AND PRICES
   ========================================================================= */
.svc { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: center; }

.svc__media { position: relative; }
.svc__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 2px; filter: saturate(.9) contrast(1.04); }
.svc__frame { position: absolute; inset: 16px -16px -16px 16px; z-index: -1; border: 1px solid var(--gold-3); border-radius: 2px; opacity: .5; }

.price { display: grid; }
.price__row {
  display: flex; align-items: baseline; gap: .75rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  transition: background .4s var(--ease);
}
.price__row:first-child { border-top: 1px solid rgba(255, 255, 255, .06); }
.price__main { display: grid; gap: .18rem; }
.price__name { font-family: var(--f-display); font-size: 1.08rem; letter-spacing: .03em; color: var(--cream); }
.price__desc { font-size: .84rem; color: var(--faint); line-height: 1.5; }
.price__lead { flex: 1; min-width: 1.5rem; border-bottom: 1px dotted rgba(228, 196, 100, .28); transform: translateY(-4px); }
.price__amt {
  font-family: var(--f-display); font-size: 1.42rem; letter-spacing: .02em; font-variant-numeric: tabular-nums;
  background: var(--gold-sheen); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.facts--tight { margin-top: 1.9rem; }

/* =========================================================================
   BARBER ROTA
   ========================================================================= */
.sec--team { background: var(--ink-2); }
.sec--team::before { content: ""; position: absolute; inset: 0 0 auto; height: 1px; background: linear-gradient(90deg, transparent, var(--hair) 25%, var(--hair) 75%, transparent); }

.rota { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.rota__day {
  position: relative; overflow: hidden;
  padding: 1.4rem 1.25rem 1.5rem; border-radius: 3px;
  background: var(--ink-3); border: 1px solid rgba(255, 255, 255, .05);
  transition: transform .55s var(--ease), border-color .55s var(--ease), background .55s var(--ease);
}
.rota__day:hover { transform: translateY(-5px); border-color: rgba(228, 196, 100, .28); }
.rota__day.is-today {
  background: linear-gradient(170deg, rgba(228, 196, 100, .1), rgba(23, 23, 26, .9) 62%);
  border-color: rgba(228, 196, 100, .45);
  box-shadow: 0 22px 44px -30px rgba(228, 196, 100, .6);
}
.rota__day.is-today::after {
  content: "Today"; position: absolute; top: 0; right: 0;
  padding: .28rem .6rem; font-size: .6rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: #24190A; background: var(--gold-sheen); border-radius: 0 0 0 3px;
}

.rota__head { padding-bottom: .9rem; margin-bottom: .9rem; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.rota__name { font-family: var(--f-display); font-size: 1.02rem; letter-spacing: .05em; color: var(--gold-1); }
.rota__time { margin-top: .3rem; font-size: .72rem; letter-spacing: .06em; color: var(--faint); font-variant-numeric: tabular-nums; }

.rota__who { display: grid; gap: .5rem; }
.rota__who li { position: relative; padding-left: 1rem; font-size: .93rem; color: var(--muted); }
.rota__who li::before { content: ""; position: absolute; left: 0; top: .58em; width: 4px; height: 4px; rotate: 45deg; background: rgba(242, 237, 227, .3); }
.rota__who li.is-late { color: var(--cream); }
.rota__who li.is-late::before { background: var(--gold-2); box-shadow: 0 0 8px rgba(228, 196, 100, .7); }

.legend { display: inline-block; width: 5px; height: 5px; rotate: 45deg; background: var(--gold-2); box-shadow: 0 0 8px rgba(228, 196, 100, .7); margin-right: .6rem; vertical-align: middle; }

@media (max-width: 1000px) {
  .svc { grid-template-columns: 1fr; }
  .svc__media { max-width: 460px; }
  .rota { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .rota { grid-template-columns: 1fr; }
  .price__row { flex-wrap: wrap; }
  .price__lead { display: none; }
  .price__amt { margin-left: auto; }
}

/* =========================================================================
   REAL LOGO BADGE
   ========================================================================= */
.nav__mark { width: 34px; height: auto; flex: none; filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .7)); }
.foot__mark { width: 74px; height: auto; margin-bottom: 1rem; filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .7)); }

.hero__logo {
  position: relative;
  width: clamp(228px, 30vw, 392px);
  margin: 0 auto .4rem;
}
/* Glow sits behind the badge as a plain gradient. Chained drop-shadow filters on
   an image this large with alpha stopped it compositing at all in some paths,
   so the badge itself carries no filter. */
.hero__logo::before {
  content: ""; position: absolute; z-index: -1;
  inset: -14%;
  background: radial-gradient(closest-side, rgba(184, 137, 44, .3), rgba(184, 137, 44, .09) 55%, transparent 78%);
  pointer-events: none;
}
.hero__logo img {
  width: 100%; height: auto;
  animation: badgeIn 1.5s var(--ease) both;
}
@keyframes badgeIn {
  from { opacity: 0; transform: translateY(16px) scale(.94); }
  to   { opacity: 1; transform: none; }
}

/* the badge carries the name, so the hero eyebrow sits under it as a caption */
.hero .eyebrow { margin-top: 1.1rem; }
.hero__lede { margin-top: 1.5rem; }

@media (prefers-reduced-motion: reduce) {
  .hero__logo img { animation: none; }
}

/* On narrow phones the wordmark beside the badge wrapped to two lines and
   broke the bar height. The badge already carries the name, so drop the text. */
@media (max-width: 430px) {
  .nav__name { display: none; }
  .nav__mark { width: 40px; }
  .nav__in { gap: .75rem; }
  /* the eyebrow wrapped around its separator dot, so stack it instead */
  .hero .eyebrow { flex-direction: column; gap: .3rem; }
  .hero .eyebrow .dot { display: none; }
}
