/* =========================================================
   Magic Fingers Barbershop — design system (forked from 080)
   ========================================================= */
:root {
  --bg:        #1a1a1a;
  --bg-alt:    #141414;
  --bg-deep:   #0a0a0a;
  --bg-card:   #161616;
  --ink:       #f5f5f5;
  --muted:     #a8a39b;
  --muted-2:   #6e6a64;
  --gold:      #d4af37;
  --gold-soft: #b8932c;
  --line:      rgba(245,245,245,0.10);
  --line-gold: rgba(212,175,55,0.28);

  --display: 'Barlow Condensed', 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --hero:    'Barlow Condensed', 'Inter Tight', sans-serif;
  --body:    'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --container: 1240px;
  --section-y: clamp(5rem, 11vw, 9rem);
  --gap:       clamp(1.5rem, 3vw, 3rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

/* =========================================================
   Typography
   ========================================================= */
.display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: none;
}
.display--center { text-align: center; }
.display--sm { font-size: clamp(2rem, 4.5vw, 3.25rem); }

.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .25em;
  text-transform: uppercase;
  font-size: .78rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow--center { display: flex; justify-content: center; }

.lead { font-size: clamp(1.25rem, 1.8vw, 1.6rem); font-weight: 400; color: var(--ink); margin-bottom: 1.5rem; line-height: 1.45; }

.muted { color: var(--muted); }

/* =========================================================
   Brand mark (used in nav + footer)
   ========================================================= */
.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line-gold);
  background: var(--bg-deep);
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(212,175,55,0.06), 0 8px 24px rgba(212,175,55,0.05);
}
.brand-icon--lg { width: 64px; height: 64px; border-radius: 14px; }
.brand-icon__text {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -.02em;
  color: var(--gold);
}
.brand-icon--lg .brand-icon__text { font-size: 1.85rem; }

.brand-word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .12em;
  color: var(--ink);
  text-transform: uppercase;
}
.brand-word__accent {
  color: var(--gold);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .12em;
  margin-left: .25em;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: none;
  padding: 0.95em 2em;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--gold); color: #1a1a1a; }
.btn--primary:hover { background: transparent; color: var(--gold); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #1a1a1a; }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  font-family: var(--hero);
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
}
.btn--outline:hover { background: var(--gold); color: #1a1a1a; }
.btn--large { padding: 1.15em 2.8em; font-size: 1.05rem; }

/* =========================================================
   Watermark headers (signature Wayward move)
   ========================================================= */
.watermark {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(8rem, 22vw, 22rem);
  line-height: .8;
  text-transform: uppercase;
  color: rgba(245,245,245,0.04);
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}
.watermark--left  { left: -2vw; }
.watermark--right { right: -2vw; }

/* =========================================================
   NAV — floating pill
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  pointer-events: none;
  padding: clamp(2.25rem, 4vw, 3.25rem) clamp(1rem, 2.5vw, 2.5rem) clamp(1rem, 1.8vw, 1.5rem);
  transition: padding .35s cubic-bezier(.4, 0, .2, 1);
}
.nav__pill {
  pointer-events: auto;
  max-width: 1320px;
  margin: 0 auto;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.65rem 0.7rem 0.65rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  transition:
    background .35s cubic-bezier(.4, 0, .2, 1),
    border-color .35s cubic-bezier(.4, 0, .2, 1),
    backdrop-filter .35s cubic-bezier(.4, 0, .2, 1),
    -webkit-backdrop-filter .35s cubic-bezier(.4, 0, .2, 1),
    box-shadow .35s cubic-bezier(.4, 0, .2, 1);
}
.nav.scrolled {
  padding-top: clamp(0.75rem, 1.2vw, 1rem);
  padding-bottom: clamp(0.75rem, 1.2vw, 1rem);
}
.nav.scrolled .nav__pill {
  background: rgba(10, 10, 10, 0.78);
  border-color: var(--line);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-8px);
  pointer-events: none;
  transition: opacity .35s cubic-bezier(.4, 0, .2, 1), transform .35s cubic-bezier(.4, 0, .2, 1);
}
.nav.scrolled .nav__brand {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.nav__brand-mark {
  width: 30px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}
.nav__brand:hover .nav__brand-mark { transform: rotate(-4deg) scale(1.05); }

.nav__brand-rule {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, transparent, var(--line-gold) 30%, var(--line-gold) 70%, transparent);
  flex-shrink: 0;
}

.nav__brand-stack {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  line-height: 1;
}
.nav__brand-line {
  font-family: var(--display);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .28em;
  color: var(--ink);
  text-transform: uppercase;
}
.nav__brand-line--accent {
  font-weight: 600;
  font-size: .65rem;
  letter-spacing: .42em;
  color: var(--gold);
}

.nav__links {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  font-family: var(--display);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .22em;
  color: var(--muted);
}
.nav__links a {
  color: var(--muted);
  transition: color .2s ease;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--ink); }

.nav__cta {
  background: var(--gold);
  color: #111 !important;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .18em;
  font-size: .92rem;
  padding: 0.8em 1.6em;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
  opacity: 0;
  transform: scale(.85);
  pointer-events: none;
  transition: opacity .35s cubic-bezier(.4, 0, .2, 1), transform .35s cubic-bezier(.4, 0, .2, 1), background .25s ease;
}
.nav__cta:hover { background: #e6c14a; }
.nav.scrolled .nav__cta {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* "BOEK NU" as inline link (initial state, hidden when scrolled) */
.nav__links-book {
  color: var(--ink) !important;
  font-weight: 700 !important;
  transition: opacity .35s cubic-bezier(.4, 0, .2, 1), transform .35s cubic-bezier(.4, 0, .2, 1), color .2s ease;
}
.nav__links-book:hover { color: var(--gold) !important; }
.nav.scrolled .nav__links-book {
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  width: 0;
  margin: 0;
  overflow: hidden;
}

.nav__burger {
  display: none;
  background: none;
  border: 0;
  width: 40px;
  height: 32px;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px auto;
  transition: all .25s ease;
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.97);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  flex-direction: column;
  z-index: 110;
  pointer-events: auto;
}
.nav__mobile.is-open { display: flex; }

.nav__mobile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.nav__mobile-brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink);
}
.nav__mobile-brand img {
  width: 28px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
}
.nav__mobile-brand span {
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav__mobile-close {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}
.nav__mobile-close svg { width: 18px; height: 18px; }
.nav__mobile-close:hover { border-color: var(--gold); color: var(--gold); }

.nav__mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: .18em;
  padding: 2rem 1.5rem;
}
.nav__mobile-links a { color: var(--ink); }
.nav__mobile-links a:hover { color: var(--gold); }
.nav__mobile-cta {
  background: var(--gold);
  color: #111 !important;
  padding: 0.8em 2em;
  border-radius: 999px;
  margin-top: 1rem;
}

/* =========================================================
   Hero (multi-video rotator)
   ========================================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-bottom: clamp(6rem, 16vh, 12rem);
}
.hero__videos { overflow: hidden; }
.hero__videos { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(.85);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero__video.is-active { opacity: 1; }

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(26,26,26,0.40), rgba(26,26,26,0.85)),
    linear-gradient(to bottom, rgba(26,26,26,0.55) 0%, rgba(26,26,26,0.20) 35%, rgba(26,26,26,0.85) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
}
/* Hero eyebrow above title */
.hero__eyebrow {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(.74rem, 1vw, .86rem);
  letter-spacing: .42em;
  text-indent: .42em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.25rem;
}

/* Title rows */
/* B monogram — sized to balance the wordmark, sits just above */
.hero__logo {
  width: clamp(150px, 16vw, 240px);
  height: auto;
  margin: -1em auto -2.4em;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.5));
}

/* BARBERSHOP wordmark — Wayward "WAYWARD" treatment */
.hero__title-main {
  font-family: var(--hero);
  font-weight: 700;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
  display: block;
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
}

/* Gold descriptor — letter-spaced subtitle below the wordmark */
.hero__title-sub {
  font-family: var(--hero);
  font-weight: 600;
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  letter-spacing: .55em;
  text-indent: .55em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin: 0 0 clamp(2.5rem, 5vw, 3.75rem);
  display: block;
}

.hero__location {
  font-family: var(--body);
  font-weight: 500;
  font-size: clamp(.78rem, 1.1vw, .95rem);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1.25rem 0 2rem;
}
.hero__sub {
  margin-top: 2rem;
  font-size: .95rem;
  color: var(--muted);
  letter-spacing: .05em;
}
.hero__sub .dot { color: var(--gold); margin: 0 .5em; }

.badge {
  display: inline-block;
  padding: .3em .85em;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
}
.badge--open    { color: #7fdb8c; }
.badge--closed  { color: #d97a7a; }
.badge--unknown { color: var(--muted); }

/* =========================================================
   Sections
   ========================================================= */
.section {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
}
.section--alt { background: var(--bg-alt); }

.grid { display: grid; gap: var(--gap); }
.grid--about { grid-template-columns: 1fr 1.2fr; align-items: start; }
.grid--visit { grid-template-columns: 1fr 1fr; }

.about__intro { padding-top: .25rem; }
.about__body p + p { margin-top: 1.25rem; }

/* =========================================================
   Image break (full bleed)
   ========================================================= */
.image-break {
  width: 100%;
  height: clamp(320px, 50vh, 560px);
  overflow: hidden;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05) brightness(.85);
}

/* =========================================================
   Services
   ========================================================= */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.service {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service__icon {
  width: 56px; height: 56px;
  color: var(--gold);
  margin: 0 auto 1.5rem;
}
.service__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.65rem;
  text-transform: none;
  letter-spacing: -.025em;
  margin-bottom: 1rem;
  line-height: 1.1;
}
.service__sub {
  display: block;
  font-family: var(--body);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .22em;
  color: var(--gold);
  margin-top: .65rem;
  text-transform: uppercase;
  line-height: 1.1;
}
.service__body {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: .98rem;
}
.service__price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink);
  letter-spacing: .05em;
}

.services__note {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  color: var(--muted);
  line-height: 1.9;
}
.services__note strong { color: var(--gold); font-weight: 700; }

/* Price list */
.pricelist {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  gap: 0;
}
.priceitem {
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.priceitem:first-child { border-top: 1px solid var(--line); }
.priceitem__main { flex: 1; min-width: 0; }
.priceitem__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.priceitem__sub {
  color: var(--muted);
  font-size: .92rem;
  margin-top: .3rem;
}
.priceitem__time {
  flex-shrink: 0;
  font-family: var(--body);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: right;
  min-width: 5.5rem;
}
.priceitem__price {
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: .03em;
  text-align: right;
  min-width: 5rem;
}
@media (max-width: 560px) {
  .priceitem { flex-wrap: wrap; gap: .3rem 1rem; }
  .priceitem__main { flex-basis: 100%; }
  .priceitem__time { min-width: 0; text-align: left; flex: 1; }
}

.visit__hours-note {
  margin-top: 1rem;
  font-size: .9rem;
  line-height: 1.6;
}

/* =========================================================
   Gallery — editorial horizontal scroll
   ========================================================= */
.gallery {
  background: #0e0e0e;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
}
.gallery__head {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.gallery__rail {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-padding-left: clamp(1.5rem, 4vw, 4rem);
  padding-bottom: 1rem;
}
.gallery__rail::-webkit-scrollbar { display: none; }
.gallery__track {
  display: flex;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
}
.gallery__item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(260px, 32vw, 420px);
  height: clamp(360px, 50vw, 580px);
  overflow: hidden;
  border-radius: 4px;
  background: #1a1a1a;
}
.gallery__item--tall {
  width: clamp(280px, 36vw, 480px);
  height: clamp(420px, 60vw, 680px);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05) brightness(.92);
  transition: filter .4s ease, transform .8s cubic-bezier(.2, .7, .3, 1);
}
.gallery__item:hover img {
  filter: saturate(1.05) contrast(1.05) brightness(1);
  transform: scale(1.04);
}

.gallery__controls {
  display: flex;
  justify-content: flex-end;
  gap: .75rem;
  margin-top: 1.5rem;
}
.gallery__btn {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}
.gallery__btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.05);
}
.gallery__btn svg { width: 22px; height: 22px; }
.gallery__btn:disabled { opacity: .35; cursor: not-allowed; }

/* =========================================================
   Haircuts gallery — editorial mosaic
   ========================================================= */
.haircuts {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--bg);
  overflow: hidden;
}
.haircuts__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  position: relative;
  z-index: 2;
}
.haircuts__head .eyebrow { display: inline-flex; justify-content: center; }
.haircuts__lead {
  max-width: 560px;
  margin: 1.25rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
}
.haircuts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(180px, 22vw, 280px);
  gap: clamp(.65rem, 1vw, 1rem);
  position: relative;
  z-index: 2;
}
.haircuts__item {
  overflow: hidden;
  border-radius: 4px;
  background: #1a1a1a;
}
.haircuts__item--lg {
  grid-row: span 2;
}
.haircuts__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05) brightness(.92);
  transition: filter .4s ease, transform .8s cubic-bezier(.2, .7, .3, 1);
}
.haircuts__item:hover img {
  filter: saturate(1.05) contrast(1.05) brightness(1);
  transform: scale(1.04);
}

/* =========================================================
   Barbers — Wayward-style team grid
   ========================================================= */
.barbers__head {
  max-width: 720px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.barbers__lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--muted);
  line-height: 1.6;
  margin-top: 1rem;
  max-width: 560px;
}
.barbers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.75rem, 3vw, 3rem);
}
.barber {
  display: flex;
  flex-direction: column;
}
.barber__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: #1a1a1a;
  margin-bottom: 1.5rem;
}
.barber__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05) brightness(.9);
  transition: filter .5s ease, transform 1s cubic-bezier(.2, .7, .3, 1);
}
.barber:hover .barber__photo img {
  filter: saturate(1.05) contrast(1.05) brightness(1);
  transform: scale(1.03);
}
.barber__role {
  font-family: var(--body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .65rem;
}
.barber__name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 2.6vw, 2.4rem);
  letter-spacing: -.025em;
  color: var(--ink);
  margin-bottom: .85rem;
  line-height: 1;
}
.barber__bio {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.65;
}

/* =========================================================
   Meet the barber — single-barber feature block
   ========================================================= */
.meet { position: relative; padding: var(--section-y) 0; overflow: hidden; }
.meet__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 2;
}
.meet__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 6px;
  background: #1a1a1a;
  border: 1px solid var(--line);
}
.meet__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.05) brightness(.9);
}
.meet__photo-fallback {
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  background: linear-gradient(160deg, #1a1a1a, #0d0d0d);
  text-align: center;
  padding: 2rem;
}
.meet__photo-fallback span {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  letter-spacing: -.03em;
  color: var(--gold);
}
.meet__photo-fallback small {
  font-family: var(--body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.meet__role {
  font-family: var(--body);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.meet__bio {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.meet__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
@media (max-width: 900px) {
  .meet__grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* =========================================================
   Visit — info column + map card
   ========================================================= */
.visit {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 4.5vw, 4.5rem);
  align-items: start;
  position: relative;
  z-index: 2;
}

.visit__addr { font-size: 1.15rem; line-height: 1.55; margin-bottom: 2rem; }

.visit__contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 2.25rem;
}
.visit__label {
  font-family: var(--body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: .4rem;
}
.visit__contact-link {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .02em;
  color: var(--ink);
  word-break: break-word;
}
.visit__contact-link:hover { color: var(--gold); }

.visit__eyebrow-spaced { margin-top: .5rem; }
.visit__cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.02rem;
}
.hours th, .hours td {
  text-align: left;
  padding: .8em 0;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.hours th { font-family: var(--body); font-weight: 600; text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; }
.hours td { color: var(--muted); text-align: right; }
.hours tr.is-today th { color: var(--gold); }
.hours tr.is-today td { color: var(--ink); }

/* Map card — compact, framed, gold accents */
.visit__map-card {
  margin-top: 2.25rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6);
}

.visit__hours-col { padding-top: .25rem; }
.visit__hours-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.75rem;
}
.visit__map-frame-wrap {
  position: relative;
  height: clamp(260px, 32vw, 360px);
  background: #1a1a1a;
}
.visit__map-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(0.7) contrast(1.05) brightness(.85);
  transition: filter .5s ease;
}
.visit__map-card:hover .visit__map-frame { filter: grayscale(0) contrast(1) brightness(1); }

.visit__map-corner {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--display);
  font-weight: 900;
  font-size: .72rem;
  letter-spacing: .35em;
  color: var(--gold);
  background: rgba(10,10,10,0.85);
  border: 1px solid var(--line-gold);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: .55em .9em;
  border-radius: 999px;
  text-transform: uppercase;
  pointer-events: none;
}

.visit__map-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(212,175,55,0.04), transparent);
}
.visit__map-addr {
  font-family: var(--display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .02em;
  color: var(--ink);
  line-height: 1.4;
}
.visit__map-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  transition: gap .25s ease, color .2s ease;
}
.visit__map-cta svg { width: 18px; height: 18px; transition: transform .25s ease; }
.visit__map-cta:hover { color: var(--ink); gap: .85rem; }
.visit__map-cta:hover svg { transform: translateX(3px); }

/* =========================================================
   CTA strip
   ========================================================= */
.cta-strip {
  background: var(--bg-alt);
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-strip__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.25rem, 5vw, 4rem);
  text-transform: none;
  letter-spacing: -.035em;
  margin-bottom: 1rem;
}
.cta-strip__sub {
  color: var(--muted);
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

/* =========================================================
   FOOTER (rich multi-column)
   ========================================================= */
.footer {
  background: var(--bg-deep);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--line);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold), transparent);
}
.footer__container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* Brand col */
.footer__brand-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.footer__brand-mark {
  width: 56px;
  height: auto;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.55));
  flex-shrink: 0;
}
.footer__brand-rule {
  width: 1px;
  align-self: stretch;
  min-height: 56px;
  background: linear-gradient(180deg, transparent, var(--line-gold) 25%, var(--line-gold) 75%, transparent);
  flex-shrink: 0;
}
.footer__brandname-sub {
  font-family: var(--display);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .42em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: .35rem;
  line-height: 1;
}
.footer__eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .25em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.footer__brandname {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: .12em;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1.05;
}
.footer__desc {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 420px;
}
.footer__line {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-bottom: .55rem;
  color: var(--ink);
  font-size: .98rem;
}
.footer__prefix {
  font-family: var(--display);
  font-weight: 800;
  color: var(--gold);
  width: 16px;
  font-size: .95rem;
  letter-spacing: .05em;
}
.footer__line a { color: var(--ink); }
.footer__line a:hover { color: var(--gold); }

/* Link cols */
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__col-head {
  font-family: var(--display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .25em;
  color: var(--gold);
  margin-bottom: .5rem;
  text-transform: uppercase;
}
.footer__col a {
  color: var(--muted);
  font-size: 1rem;
  transition: color .2s ease, transform .2s ease;
  width: fit-content;
}
.footer__col a:hover {
  color: var(--ink);
  transform: translateX(3px);
}

/* Follow col with social grid */
.footer__follow-col { display: flex; flex-direction: column; gap: 1.25rem; }

.footer__social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1em 0.6em;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.015);
  font-family: var(--display);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .2em;
  color: var(--muted) !important;
  text-transform: uppercase;
  transition: all .2s ease;
}
.footer__social:hover {
  border-color: var(--line-gold);
  color: var(--ink) !important;
  background: rgba(212,175,55,0.04);
}

.footer__reviews {
  display: block;
  margin-top: .5rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  text-align: center;
  background: linear-gradient(180deg, rgba(212,175,55,0.04), rgba(212,175,55,0.01));
  transition: background .25s ease, transform .25s ease;
}
.footer__reviews:hover { background: rgba(212,175,55,0.07); transform: translateY(-1px); }
.footer__stars {
  display: inline-flex;
  gap: 3px;
  margin-bottom: .4rem;
}
.footer__stars span {
  width: 14px; height: 14px;
  background: var(--gold);
  display: inline-block;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}
.footer__rating {
  font-family: var(--display);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1;
}
.footer__rating-sub {
  font-family: var(--display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--muted-2);
  margin-top: .35rem;
}

/* Footer bottom bar */
.footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p {
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--muted-2);
  text-transform: uppercase;
}
.footer__legal { color: var(--muted-2) !important; opacity: .7; }

/* =========================================================
   Booking modal
   ========================================================= */
.book {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2.5rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.book.is-open { opacity: 1; pointer-events: auto; }

.book__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.78);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.book__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: min(92vh, 820px);
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow:
    0 1px 0 rgba(212,175,55,0.08) inset,
    0 40px 80px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(212,175,55,0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(12px) scale(.98);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.book.is-open .book__panel { transform: none; }

.book__close {
  position: absolute;
  top: .8rem;
  right: .8rem;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
  z-index: 2;
}
.book__close:hover { border-color: var(--gold); color: var(--gold); }
.book__close svg { width: 16px; height: 16px; }

/* Head */
.book__head {
  padding: 1.75rem 1.75rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(212,175,55,0.04), transparent);
}
.book__eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.book__title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.6rem, 2.4vw, 1.95rem);
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.book__steps {
  display: flex;
  align-items: center;
  gap: .5rem;
  list-style: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.book__step {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  flex: 1;
  position: relative;
  transition: color .25s ease;
}
.book__step:not(:last-child)::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
  margin-left: .35rem;
}
.book__step span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  background: rgba(255,255,255,0.02);
  transition: all .25s ease;
}
.book__step.is-active { color: var(--gold); }
.book__step.is-active span {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}
.book__step.is-done { color: var(--ink); }
.book__step.is-done span {
  border-color: var(--gold);
  color: var(--gold);
}

/* Body */
.book__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.75rem;
  scrollbar-width: thin;
}
.book__pane { display: none; }
.book__pane.is-active { display: block; animation: bookFade .35s ease; }
.book__pane-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: .02em;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

@keyframes bookFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* Services */
.book__services { display: flex; flex-direction: column; gap: .65rem; }
.book__service {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: .25rem 1rem;
  align-items: center;
  text-align: left;
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,0.015);
  cursor: pointer;
  font-family: inherit;
  color: var(--ink);
  transition: all .2s ease;
}
.book__service:hover { border-color: var(--line-gold); background: rgba(212,175,55,0.04); }
.book__service.is-active {
  border-color: var(--gold);
  background: rgba(212,175,55,0.07);
  box-shadow: 0 0 0 1px var(--gold);
}
.book__service-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.01em;
  grid-column: 1;
  grid-row: 1;
}
.book__service-sub {
  font-size: .82rem;
  color: var(--muted);
  grid-column: 1;
  grid-row: 2;
}
.book__service-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--gold);
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
}

/* Dates */
.book__dates {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(82px, 1fr));
  gap: .55rem;
}
.book__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  padding: .85rem .5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,0.015);
  color: var(--ink);
  cursor: pointer;
  font-family: inherit;
  transition: all .2s ease;
}
.book__date:hover:not(:disabled) { border-color: var(--line-gold); background: rgba(212,175,55,0.04); }
.book__date.is-active {
  border-color: var(--gold);
  background: rgba(212,175,55,0.08);
  box-shadow: 0 0 0 1px var(--gold);
}
.book__date:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.book__date-day {
  font-family: var(--body);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.book__date-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -.02em;
  line-height: 1;
}
.book__date-mon {
  font-family: var(--body);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.book__date.is-active .book__date-day,
.book__date.is-active .book__date-mon { color: var(--gold); }

.book__hint {
  margin-top: 1rem;
  font-size: .8rem;
  color: var(--muted-2);
  text-align: center;
}

/* Barbers */
.book__barber-pick { margin-bottom: 1.25rem; }
.book__label {
  font-family: var(--body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: .65rem;
}
.book__label-opt { color: var(--muted-2); font-weight: 500; letter-spacing: .15em; text-transform: none; font-size: .76rem; }
.book__barbers { display: flex; flex-wrap: wrap; gap: .5rem; }
.book__barber {
  padding: .55em 1em;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s ease;
}
.book__barber:hover { border-color: var(--line-gold); color: var(--ink); }
.book__barber.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}

/* Time slots */
.book__times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: .5rem;
}
.book__time {
  padding: .75em .5em;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,0.015);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s ease;
}
.book__time:hover:not(:disabled) { border-color: var(--line-gold); background: rgba(212,175,55,0.05); }
.book__time.is-active {
  border-color: var(--gold);
  background: rgba(212,175,55,0.1);
  box-shadow: 0 0 0 1px var(--gold);
  color: var(--gold);
}
.book__time:disabled {
  opacity: .25;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Form */
.book__form { display: flex; flex-direction: column; gap: 1rem; }
.book__field { display: flex; flex-direction: column; gap: .4rem; }
.book__field > span {
  font-family: var(--body);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.book__field input[type="text"],
.book__field input[type="email"],
.book__field input[type="tel"] {
  padding: .85em 1em;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .2s ease, background .2s ease;
}
.book__field input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(212,175,55,0.04);
}
.book__field--check { flex-direction: row; align-items: center; gap: .65rem; cursor: pointer; }
.book__field--check input { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }
.book__field--check span {
  font-family: var(--body);
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--muted);
}

/* Confirmation */
.book__pane--confirm.is-active {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem .5rem;
}
.book__check {
  width: 88px;
  height: 88px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 4px 18px rgba(212,175,55,0.3));
}
.book__check svg {
  width: 100%;
  height: 100%;
  animation: bookCheck .6s cubic-bezier(.2,.7,.2,1);
}
@keyframes bookCheck {
  from { opacity: 0; transform: scale(.6) rotate(-8deg); }
  to   { opacity: 1; transform: none; }
}
.book__confirm-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -.02em;
  margin-bottom: .65rem;
}
.book__confirm-sub {
  color: var(--muted);
  font-size: .98rem;
  margin-bottom: 1.5rem;
  max-width: 360px;
}
.book__confirm-sub strong { color: var(--ink); font-weight: 600; }

.book__summary {
  width: 100%;
  border: 1px solid var(--line-gold);
  border-radius: 8px;
  background: rgba(212,175,55,0.04);
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.5rem;
  text-align: left;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem 1.25rem;
  font-size: .92rem;
}
.book__summary dt {
  font-family: var(--body);
  font-weight: 600;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  align-self: center;
}
.book__summary dd {
  color: var(--ink);
  font-weight: 500;
}

.book__confirm-actions { display: flex; flex-wrap: wrap; gap: .65rem; justify-content: center; }

/* Footer */
.book__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.25);
}
.book__foot.is-hidden { display: none; }
.book__back, .book__next {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .7em 1.2em;
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.book__back svg, .book__next svg { width: 14px; height: 14px; }
.book__back:hover { border-color: var(--ink); color: var(--ink); }
.book__back:disabled, .book__back.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.book__next {
  background: var(--gold);
  border-color: var(--gold);
  color: #111;
}
.book__next:hover:not(:disabled) { background: #e6c14a; border-color: #e6c14a; }
.book__next:disabled { opacity: .35; cursor: not-allowed; }

.book__summary-mini {
  flex: 1;
  text-align: center;
  font-size: .78rem;
  color: var(--muted-2);
  letter-spacing: .04em;
}
.book__summary-mini strong { color: var(--gold); font-weight: 700; }

/* Floating book launcher (mobile only — extra reachable CTA) */
@media (max-width: 760px) {
  .book__panel { max-height: 96vh; border-radius: 8px; }
  .book__head { padding: 1.25rem 1.25rem 1rem; }
  .book__body { padding: 1.25rem; }
  .book__foot { padding: .85rem 1.25rem; }
  .book__step { font-size: .58rem; gap: .35rem; }
  .book__step span { width: 20px; height: 20px; font-size: .65rem; }
  .book__step:not(:last-child)::after { display: none; }
}

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .grid--about, .grid--visit { grid-template-columns: 1fr; }
  .visit { grid-template-columns: 1fr; gap: 2.5rem; }
  .services { grid-template-columns: 1fr; }
  .barbers__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .haircuts__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: clamp(180px, 38vw, 260px);
  }
  .haircuts__item--lg { grid-row: span 2; }
}

@media (max-width: 540px) {
  .visit__contact-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .visit__map-foot { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; margin-left: auto; }
  .nav__pill { padding: 0.55rem 0.85rem 0.55rem 1rem; }

  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__title-main { font-size: clamp(2rem, 9vw, 3rem); letter-spacing: .03em; }
  .hero__title-sub { font-size: clamp(.85rem, 2.4vw, 1rem); letter-spacing: .45em; }
  .hero__logo { width: clamp(110px, 26vw, 160px); }

  .image-break { height: 280px; }
  .watermark { font-size: clamp(6rem, 28vw, 14rem); }

  .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__bottom { justify-content: flex-start; }
}

/* =========================================================
   Reviews
   ========================================================= */
.reviews { background: var(--bg-alt); }
.reviews__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.reviews__head .eyebrow { display: inline-flex; }

.reviews__layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.reviews__aggregate {
  position: sticky;
  top: 110px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  text-align: center;
}
.reviews__google-mark {
  display: flex;
  align-items: center;
  gap: .85rem;
  text-align: left;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
.reviews__aggregate-label {
  font-family: var(--body);
  font-size: .65rem;
  letter-spacing: .25em;
  color: var(--muted);
  margin-bottom: .15rem;
}
.reviews__aggregate-shop {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -.01em;
}
.reviews__score {
  font-family: var(--display);
  font-weight: 800;
  font-size: 4.5rem;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.03em;
}
.reviews__stars {
  font-size: 1.4rem;
  letter-spacing: .15em;
  color: var(--gold);
  margin: .5rem 0 .9rem;
}
.reviews__count {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.reviews__aggregate .btn { width: 100%; justify-content: center; }
.reviews__write {
  display: inline-block;
  margin-top: 1rem;
  font-size: .85rem;
  letter-spacing: .05em;
  color: var(--muted);
}
.reviews__write:hover { color: var(--gold); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.review {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease, transform .25s ease;
}
.review:hover { border-color: var(--line-gold); transform: translateY(-2px); }
.review__stars {
  color: var(--gold);
  letter-spacing: .12em;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.review__body {
  color: var(--ink);
  font-size: .98rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}
.review__foot {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.review__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #1a1a1a;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
}
.review__name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
  line-height: 1.2;
}
.review__meta {
  font-size: .78rem;
  color: var(--muted);
  margin-top: .15rem;
}

@media (max-width: 900px) {
  .reviews__layout { grid-template-columns: 1fr; }
  .reviews__aggregate { position: static; }
  .reviews__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   v3 mobile optimization
   Goals: stable hero on iOS, touch targets ≥44×44, no
   horizontal overflow from watermarks, tighter nav pill,
   readable type on phones, themed tap highlight.
   Desktop is untouched — every rule is gated by media query
   except the viewport-unit upgrade (which only takes effect
   on small viewports anyway via .hero rules elsewhere).
   ========================================================= */

/* Global: themed tap highlight + iOS Safari hero stability */
a, button, [role="button"], .btn, .nav__burger {
  -webkit-tap-highlight-color: rgba(193,154,50,0.18);
}
@supports (height: 100svh) {
  .hero { min-height: 100svh; }
}

@media (max-width: 760px) {
  /* Hide watermarks on phones — decorative only and overflow horizontally */
  .watermark { display: none; }

  /* Body slightly tighter line-height on phones */
  body { font-size: 15.5px; }

  /* Touch targets — Fitts floor 44×44 for tap surfaces */
  .nav__burger { min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .nav__mobile-close { min-width: 44px; min-height: 44px; }
  .gallery__btn { min-width: 44px; min-height: 44px; }
  .book__close { min-width: 44px; min-height: 44px; }
  .footer__col a { display: inline-block; padding: .35rem 0; }
  .footer__social { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }

  /* Nav pill tighten so brand + burger never collide */
  .nav__brand-line { font-size: .74rem; letter-spacing: .2em; }
  .nav__brand-line--accent { font-size: .56rem; letter-spacing: .3em; }
  .nav__brand-mark { width: 26px; }
  .nav__brand-rule { height: 22px; }

  /* Hero CTA: tap-friendly, no awkward wrap */
  .hero__content .btn--large { padding: 1rem 2.25rem; font-size: 1rem; white-space: nowrap; }

  /* Image break: shallower on phones (don't dominate scroll) */
  .image-break { height: clamp(180px, 32vh, 240px); }

  /* Visit map: better mobile aspect ratio */
  .visit__map-frame-wrap { height: clamp(220px, 55vw, 320px); }

  /* Services note: centered + breathing room */
  .services__note { text-align: center; padding: 0 .5rem; line-height: 1.55; }

  /* Footer brand: tidier vertical rhythm */
  .footer__brand-row { gap: .75rem; }
  .footer__brand-mark { width: 56px; height: 56px; }
  .footer__bottom { font-size: .78rem; line-height: 1.5; }
  .footer__legal { margin-top: .35rem; }

  /* Gallery rail: tighter so a tile shows fully on small phones */
  .gallery__item { flex-basis: 78vw; }
  .gallery__item--tall { flex-basis: 62vw; }

  /* Reveal motion: shorter distance on phones (less work, smoother) */
  .reveal { transform: translateY(16px); }
}

/* Very small phones — extra tightening */
@media (max-width: 420px) {
  .container { padding: 0 1rem; }
  .hero__content { padding: 0 1.25rem; }
  .hero__title-main { font-size: clamp(1.85rem, 10vw, 2.5rem); }
  .display { font-size: clamp(2rem, 9vw, 2.6rem); }
  .display--sm { font-size: clamp(1.55rem, 7vw, 2rem); }
  .eyebrow { font-size: .76rem; letter-spacing: .22em; margin-bottom: 1rem; }
  .lead { font-size: 1.05rem; }

  /* Booking modal: 2-col grids on tiny phones (was 3) */
  .book__dates { grid-template-columns: repeat(2, 1fr); }
  .book__times { grid-template-columns: repeat(2, 1fr); }
  .book__date { padding: .85rem .25rem; min-height: 56px; }

  /* CTA strip — never let title overflow */
  .cta-strip { padding: 2.5rem 1rem; }
  .cta-strip__title { font-size: clamp(1.75rem, 8vw, 2.4rem); }
  .cta-strip__sub { font-size: .95rem; }
}

