/* ==========================================================================
   Scissorhands Barbershop
   ========================================================================== */

:root {
  --bg: #0b0b0d;
  --bg-2: #111115;
  --surface: #17171c;
  --surface-2: #1e1e24;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --red: #e11d2e;
  --red-bright: #ff3345;
  --red-deep: #9e0d1b;
  --gold: #e2b04a;
  --blue: #2554d6;

  --text: #f4f1ec;
  --muted: #a7a3a0;
  --paper: #f4efe7;
  --paper-2: #ebe4d8;
  --ink: #141414;
  --ink-muted: #5d5853;

  --font-display: "Anton", Impact, "Arial Narrow Bold", sans-serif;
  --font-label: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 14px;
  --radius-lg: 22px;
  --container: 1200px;
  --header-h: 76px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.1; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
[hidden] { display: none !important; }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.text-red { color: var(--red); }
.muted { color: var(--muted); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 16px; border-radius: 8px;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.icon { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px;
  font-family: var(--font-label); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px; border: 2px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lg { padding: 16px 30px; font-size: 1.12rem; }
.btn--block { width: 100%; }

.btn--red { background: var(--red); color: #fff; box-shadow: 0 10px 30px -10px rgba(225, 29, 46, 0.7); }
.btn--red:hover { background: var(--red-bright); box-shadow: 0 16px 36px -10px rgba(225, 29, 46, 0.85); }
.btn--ghost { border-color: var(--line-strong); color: var(--text); background: rgba(255, 255, 255, 0.03); }
.btn--ghost:hover { border-color: var(--text); background: rgba(255, 255, 255, 0.08); }
.btn--outline { border-color: var(--line-strong); color: var(--text); }
.btn--outline:hover { border-color: var(--red); background: var(--red); }
.btn--dark { background: var(--ink); color: var(--paper); }
.btn--dark:hover { background: var(--red); }
.btn--white { background: #fff; color: var(--red-deep); }
.btn--white:hover { background: var(--ink); color: #fff; }
.btn--ghost-light { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--red-deep); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  font-family: var(--font-label); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.9rem;
  background: rgba(226, 176, 74, 0.12); color: var(--gold); border: 1px solid rgba(226, 176, 74, 0.35);
}
.pill--small { font-size: 0.8rem; padding: 4px 12px; }

.stars { color: var(--gold); letter-spacing: 2px; }
.stars--lg { font-size: 1.6rem; letter-spacing: 4px; }

/* ---------- Eyebrows & titles ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-label); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow__line { width: 36px; height: 2px; background: var(--red); display: inline-block; }
.eyebrow--dark { color: var(--red-deep); }

.section { padding: clamp(80px, 11vw, 140px) 0; position: relative; }
.section__head { max-width: 680px; margin-bottom: clamp(40px, 6vw, 64px); }
.section__head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.section__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.02;
  text-transform: uppercase; letter-spacing: 0.01em;
  margin-bottom: 20px;
}
.section__lead { color: var(--muted); font-size: 1.1rem; max-width: 580px; }

/* ---------- Barber-pole stripe ---------- */
.pole-stripe {
  height: 10px;
  background: repeating-linear-gradient(-45deg,
    var(--red) 0 14px, #f4f1ec 14px 28px, var(--blue) 28px 42px, #f4f1ec 42px 56px);
  background-size: 79.2px 100%;
  animation: pole 3s linear infinite;
}
.pole-stripe--thin { height: 5px; }
@keyframes pole { to { background-position: 79.2px 0; } }

/* ==========================================================================
   Top bar & header
   ========================================================================== */
.topbar {
  background: #050506; border-bottom: 1px solid var(--line);
  font-size: 0.86rem; color: var(--muted);
}
.topbar__inner { display: flex; align-items: center; gap: 28px; min-height: 40px; }
.topbar__inner .status { margin-right: auto; }
.topbar__link { display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s; }
.topbar__link:hover { color: var(--text); }
.topbar__link .icon { color: var(--red); }

.status { display: inline-flex; align-items: center; gap: 9px; font-weight: 500; }
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); position: relative; }
.status.is-open .status__dot { background: #2fd26b; box-shadow: 0 0 0 0 rgba(47, 210, 107, 0.6); animation: ping 2s infinite; }
.status.is-open .status__text { color: #7ee8a5; }
.status.is-closed .status__dot { background: var(--red); }
@keyframes ping { 70% { box-shadow: 0 0 0 8px rgba(47, 210, 107, 0); } 100% { box-shadow: 0 0 0 0 rgba(47, 210, 107, 0); } }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 11, 13, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.header.is-scrolled { background: rgba(8, 8, 10, 0.92); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(225, 29, 46, 0.6); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 1.55rem; letter-spacing: 0.04em; text-transform: uppercase; }
.brand__sub { font-family: var(--font-label); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.42em; text-transform: uppercase; color: var(--red); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-family: var(--font-label); font-weight: 600; font-size: 1.05rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted);
  position: relative; padding: 6px 0; transition: color 0.2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--text); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { padding: 11px 22px; }

.menu-toggle {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--surface); border: 1px solid var(--line);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.menu-toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; isolation: isolate;
  min-height: min(calc(100vh - 40px - var(--header-h)), 860px);
  display: flex; align-items: center;
  padding: 64px 0 84px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroZoom 18s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 60% 70% at 78% 50%, rgba(225, 29, 46, 0.28), transparent 70%),
    linear-gradient(90deg, rgba(8, 8, 10, 0.97) 0%, rgba(8, 8, 10, 0.9) 40%, rgba(8, 8, 10, 0.62) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 30%);
}
.hero::after {
  /* subtle film grain */
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.08; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 48px; }
.hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3.4rem, 8.4vw, 7rem); line-height: 0.95;
  text-transform: uppercase; letter-spacing: 0.005em;
  margin-bottom: 26px;
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.5);
}
.hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: #cfcac4; max-width: 540px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero__rating { display: flex; align-items: center; gap: 10px; margin: 0; color: #cfcac4; font-size: 0.95rem; }
.hero__rating strong { color: var(--text); }

.amenities {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
  border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(24, 24, 29, 0.78), rgba(12, 12, 15, 0.78));
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
}
.amenity { position: relative; display: flex; align-items: center; gap: 14px; padding: 22px 24px; }
.amenity + .amenity::before { content: ""; position: absolute; left: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line-strong); }
.amenity__icon {
  flex: none; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  color: var(--red-bright); background: rgba(225, 29, 46, 0.08); border: 1px solid rgba(225, 29, 46, 0.5);
}
.amenity__icon svg, .feature__icon svg {
  width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.amenity__text { display: flex; flex-direction: column; line-height: 1.25; }
.amenity__text strong { font-family: var(--font-label); font-weight: 700; font-size: 1.02rem; letter-spacing: 0.09em; text-transform: uppercase; }
.amenity__text small { color: var(--muted); font-size: 0.85rem; margin-top: 2px; }

.hero__emblem { position: relative; display: grid; place-items: center; }
.emblem { position: relative; width: min(100%, 420px); aspect-ratio: 1; }
.emblem__logo {
  position: absolute; inset: 7%; width: 86%; height: 86%;
  border-radius: 50%; object-fit: cover;
  box-shadow: 0 30px 80px -20px rgba(225, 29, 46, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: float 6s ease-in-out infinite;
}
.emblem__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px dashed rgba(226, 176, 74, 0.35);
  animation: spin 40s linear infinite;
}
.emblem__ring::before {
  content: ""; position: absolute; inset: -18px; border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float { 50% { transform: translateY(-10px); } }


/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee {
  background: var(--red); color: #fff; overflow: hidden;
  border-block: 1px solid rgba(0, 0, 0, 0.3);
  transform: rotate(-1.2deg) scale(1.02); margin: -18px 0 0; position: relative; z-index: 2;
  box-shadow: 0 20px 40px -20px rgba(225, 29, 46, 0.6);
}
.marquee__track { display: flex; align-items: center; gap: 28px; width: max-content; padding: 16px 0; animation: marquee 38s linear infinite; }
.marquee span { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.9rem); text-transform: uppercase; letter-spacing: 0.04em; white-space: nowrap; }
.marquee i { font-style: normal; opacity: 0.7; font-size: 1.3rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================================
   Stats
   ========================================================================== */
.stats { padding: 80px 0 20px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(180deg, var(--surface), var(--bg-2)); overflow: hidden; }
.stat { padding: 34px 26px; text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: 0; top: 24%; bottom: 24%; width: 1px; background: var(--line); }
.stat__num { display: block; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 3.8rem); line-height: 1; color: var(--text); }
.stat__unit { color: var(--red); margin-left: 2px; }
.stat__label { display: block; margin-top: 10px; font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.92rem; color: var(--muted); }

/* ==========================================================================
   About
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.about__media { position: relative; padding: 0 12% 14% 0; }
.about__photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.9); }
.about__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.about__photo:hover img { transform: scale(1.04); }
.about__photo--main { aspect-ratio: 4 / 5; }
.about__photo--inset {
  position: absolute; right: 0; bottom: 0; width: 58%; aspect-ratio: 16 / 10;
  border: 6px solid var(--bg);
}
.about__media::before {
  content: ""; position: absolute; top: -22px; left: -22px; width: 44%; height: 44%;
  border-top: 3px solid var(--red); border-left: 3px solid var(--red); border-top-left-radius: 28px;
}
.about__stamp {
  position: absolute; top: 28px; right: 4%;
  width: 124px; height: 124px; border-radius: 50%;
  background: var(--red); color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; line-height: 1.05; transform: rotate(-10deg);
  box-shadow: 0 20px 40px -12px rgba(225, 29, 46, 0.7), inset 0 0 0 5px rgba(255, 255, 255, 0.15);
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; font-weight: 600;
}
.about__stamp strong { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.04em; font-weight: 400; margin: 2px 0; }

.about__content > p { color: #c9c4be; font-size: 1.05rem; }
.about__content em { color: var(--text); font-style: normal; font-weight: 600; }

.features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 34px; }
.feature {
  display: flex; gap: 14px; padding: 20px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.feature:hover { border-color: rgba(225, 29, 46, 0.5); transform: translateY(-3px); }
.feature__icon { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(225, 29, 46, 0.14); color: var(--red); }
.feature h3 { font-size: 1rem; margin-bottom: 4px; }
.feature p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.5; }

/* ==========================================================================
   Services (light "menu board" section)
   ========================================================================== */
.services {
  background:
    radial-gradient(circle at 12% 0%, rgba(225, 29, 46, 0.07), transparent 40%),
    var(--paper);
  color: var(--ink);
  padding-top: 0;
}
.services > .container { padding-top: clamp(80px, 11vw, 130px); }
.services .section__lead { color: var(--ink-muted); }

.menu-tabs { display: inline-flex; flex-wrap: wrap; gap: 6px; padding: 6px; border-radius: 999px; background: var(--paper-2); margin-bottom: 40px; }
.menu-tab {
  border: 0; background: transparent; padding: 10px 22px; border-radius: 999px;
  font-family: var(--font-label); font-weight: 700; font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted);
  transition: background 0.25s, color 0.25s;
}
.menu-tab:hover { color: var(--ink); }
.menu-tab.is-active { background: var(--ink); color: #fff; }

.menu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.menu__group {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 30px 24px;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 30px 60px -40px rgba(20, 10, 10, 0.35);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.menu__group.is-hidden { display: none; }
.menu__group-head { display: flex; align-items: baseline; gap: 14px; padding-bottom: 18px; margin-bottom: 8px; border-bottom: 2px solid var(--ink); }
.menu__group-num { font-family: var(--font-display); color: var(--red); font-size: 1.3rem; }
.menu__group-head h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; text-transform: uppercase; letter-spacing: 0.02em; }

.menu__item { padding: 16px 0; border-bottom: 1px dashed rgba(0, 0, 0, 0.12); }
.menu__item:last-child { border-bottom: 0; }
.menu__row { display: flex; align-items: baseline; gap: 10px; }
.menu__name { font-weight: 700; font-size: 1rem; }
.menu__name small { font-weight: 500; color: var(--ink-muted); font-size: 0.82rem; white-space: nowrap; }
.menu__dots { flex: 1; border-bottom: 2px dotted rgba(0, 0, 0, 0.2); transform: translateY(-4px); min-width: 16px; }
.menu__price { font-family: var(--font-display); font-size: 1.35rem; color: var(--red-deep); letter-spacing: 0.02em; }
.menu__price--ask { font-family: var(--font-label); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.menu__desc { margin: 4px 0 0; color: var(--ink-muted); font-size: 0.88rem; line-height: 1.5; }
.menu__item--featured .menu__name::after {
  content: "Popular"; margin-left: 8px; padding: 2px 8px; border-radius: 999px;
  font-family: var(--font-label); font-weight: 700; font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--red); color: #fff; vertical-align: 2px;
}

/* When one tab is picked, lay its list out wider */
.menu.is-filtered { grid-template-columns: 1fr; max-width: 820px; }
.menu.is-filtered .menu__list { columns: 2; column-gap: 40px; }
.menu.is-filtered .menu__item { break-inside: avoid; }

.holiday {
  margin-top: 28px; display: grid; grid-template-columns: 1fr 1.5fr; gap: 32px; align-items: center;
  padding: 34px; border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(225, 29, 46, 0.35), transparent 50%),
    var(--ink);
  color: var(--text);
  position: relative; overflow: hidden;
}
.holiday::after {
  content: "✂"; position: absolute; right: -10px; bottom: -40px; font-size: 180px; line-height: 1;
  color: rgba(255, 255, 255, 0.04); transform: rotate(-20deg); pointer-events: none;
}
.holiday__tag { display: inline-block; padding: 5px 12px; border-radius: 999px; background: var(--gold); color: var(--ink); font-family: var(--font-label); font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 14px; }
.holiday__intro h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; text-transform: uppercase; margin-bottom: 10px; }
.holiday__intro p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.holiday__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; position: relative; z-index: 1; }
.holiday__item { padding: 20px; border-radius: var(--radius); background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; }
.holiday__label { font-weight: 600; font-size: 0.92rem; }
.holiday__price { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold); }
.holiday__price em { font-style: normal; color: var(--muted); font-size: 1.2rem; }
.holiday__item small { color: var(--muted); font-size: 0.8rem; }

.services__cta { margin-top: 48px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; text-align: center; }
.services__cta p { margin: 0; color: var(--ink-muted); font-size: 0.9rem; }

/* ==========================================================================
   The Craft (video)
   ========================================================================== */
.craft { background: var(--bg-2); overflow: hidden; }
.craft__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 7vw, 96px); align-items: center; }
.craft__lead { color: #c9c4be; font-size: 1.08rem; max-width: 520px; }
.craft__steps { list-style: none; margin: 30px 0 36px; padding: 0; display: grid; gap: 4px; }
.craft__step { display: flex; gap: 20px; align-items: flex-start; padding: 18px 0; border-top: 1px solid var(--line); }
.craft__step:last-child { border-bottom: 1px solid var(--line); }
.craft__num { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; color: var(--red); min-width: 40px; }
.craft__step h3 { font-family: var(--font-label); font-weight: 700; font-size: 1.15rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; }
.craft__step p { margin: 0; color: var(--muted); font-size: 0.95rem; }
.craft__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.craft__media { position: relative; display: grid; place-items: center; }
.craft__media::before {
  content: ""; position: absolute; width: 120%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 29, 46, 0.32), transparent 62%);
  pointer-events: none;
}
.craft__media::after {
  content: ""; position: absolute; width: 92%; aspect-ratio: 1; border-radius: 50%;
  border: 2px dashed rgba(226, 176, 74, 0.25); pointer-events: none;
}
.phone {
  position: relative; z-index: 1; width: min(100%, 340px); aspect-ratio: 9 / 16;
  padding: 10px; border-radius: 42px;
  background: linear-gradient(160deg, #2a2a31, #0d0d10);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1), 0 50px 100px -30px rgba(0, 0, 0, 0.95), 0 30px 80px -40px rgba(225, 29, 46, 0.6);
  transform: rotate(3deg);
}
.phone__video { width: 100%; height: 100%; object-fit: cover; border-radius: 32px; display: block; background: #000; }
.phone__badge {
  position: absolute; left: -28px; bottom: 56px; display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: 999px; background: rgba(12, 12, 15, 0.9); border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  font-family: var(--font-label); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.1em; text-transform: uppercase;
  transform: rotate(-3deg); box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.9);
}
.phone__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.25); }

/* ==========================================================================
   Barbers
   ========================================================================== */
.barbers { background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(225, 29, 46, 0.1), transparent 70%); }
.barbers .section__head { text-align: center; margin-inline: auto; }
.barbers .section__lead { margin-inline: auto; }
.barbers__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }

.barber {
  position: relative; display: flex; flex-direction: column;
  padding: 32px 28px 28px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  overflow: hidden;
}
.barber::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px;
  background: repeating-linear-gradient(-45deg, var(--red) 0 10px, #f4f1ec 10px 20px, var(--blue) 20px 30px, #f4f1ec 30px 40px);
  opacity: 0; transition: opacity 0.35s;
}
.barber:hover { transform: translateY(-6px); border-color: rgba(225, 29, 46, 0.45); box-shadow: 0 40px 70px -40px rgba(225, 29, 46, 0.55); }
.barber:hover::before { opacity: 1; }
.barber--highlight { border-color: rgba(226, 176, 74, 0.3); }

.barber__photo {
  position: relative; margin: -32px -28px 24px; aspect-ratio: 5 / 4; overflow: hidden; background: var(--surface);
}
.barber__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.barber:hover .barber__photo img { transform: scale(1.05); }
.barber__photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(23, 23, 28, 0.95) 0%, rgba(23, 23, 28, 0.2) 38%, transparent 60%); pointer-events: none; }
.barber::before { z-index: 2; }
.barber__years {
  position: absolute; left: 20px; bottom: 16px; z-index: 1; display: flex; align-items: center; gap: 10px;
  padding: 8px 14px 8px 12px; border-radius: 14px; background: rgba(12, 12, 15, 0.82); border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.barber__years strong { font-family: var(--font-display); font-weight: 400; font-size: 2rem; line-height: 1; color: var(--gold); }
.barber__years span { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; color: var(--muted); line-height: 1.2; }

.barber__name { font-family: var(--font-display); font-weight: 400; font-size: 2rem; text-transform: uppercase; letter-spacing: 0.02em; }
.barber__alias { color: var(--red); font-size: 1.3rem; }
.barber__role { font-family: var(--font-label); font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--red); font-size: 0.92rem; margin: 6px 0 10px; }
.barber__rating { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; font-weight: 600; margin-bottom: 16px; min-height: 28px; }
.barber__bio { color: #c4bfb9; font-size: 0.95rem; flex: 1; }
.barber__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 24px; }
.barber__tags li { padding: 5px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); font-size: 0.8rem; color: #d7d2cc; }
.barber__actions { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.barber__phone { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
.barber__phone:hover { color: var(--text); }

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery { background: var(--bg-2); border-top: 1px solid var(--line); }
.gallery__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "a a b c"
    "a a d e"
    "f f g g";
  grid-auto-rows: 250px; gap: 16px;
}
.gallery__grid > :nth-child(1) { grid-area: a; }
.gallery__grid > :nth-child(2) { grid-area: b; }
.gallery__grid > :nth-child(3) { grid-area: c; }
.gallery__grid > :nth-child(4) { grid-area: d; }
.gallery__grid > :nth-child(5) { grid-area: e; }
.gallery__grid > :nth-child(6) { grid-area: f; }
.gallery__grid > :nth-child(7) { grid-area: g; }

/* Kids' before & after */
.before-after { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border-radius: var(--radius); overflow: hidden; background: var(--red); }
.before-after__half { position: relative; padding: 0; border: 0; overflow: hidden; background: var(--surface); cursor: zoom-in; }
.before-after__half img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 40%; transition: transform 0.7s var(--ease); }
.before-after__half:hover img { transform: scale(1.05); }
.before-after::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 42%);
}
.before-after__tag {
  position: absolute; top: 12px; left: 12px; z-index: 1; padding: 5px 12px; border-radius: 999px;
  background: rgba(12, 12, 15, 0.85); border: 1px solid var(--line-strong);
  font-family: var(--font-label); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.before-after__tag--after { background: var(--red); border-color: var(--red); }
.before-after__label { z-index: 2; pointer-events: none; }

/* Recent work grid */
.cuts { margin-top: clamp(64px, 8vw, 96px); padding-top: clamp(40px, 5vw, 56px); border-top: 1px solid var(--line); }
.cuts__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 28px; }
.cuts__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.9rem, 3.4vw, 2.6rem); text-transform: uppercase; letter-spacing: 0.02em; }
.cuts__filters { display: flex; flex-wrap: wrap; gap: 8px; }
.cuts__filter {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line-strong); background: transparent;
  font-family: var(--font-label); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.cuts__filter:hover { color: var(--text); border-color: var(--text); }
.cuts__filter.is-active { background: var(--red); border-color: var(--red); color: #fff; }

.cuts__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cut { aspect-ratio: 4 / 3; animation: cutIn 0.5s var(--ease) both; }
.cut .shot__label { font-size: 0.85rem; }
.cuts__grid .is-hidden,
.cuts__grid:not(.is-expanded) .is-extra { display: none; }
.cuts__grid.is-filtered .cuts__ig { display: none; }
@keyframes cutIn { from { opacity: 0; transform: translateY(14px); } }

.cuts__ig {
  aspect-ratio: 4 / 3; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px; padding: 22px 24px; position: relative;
  border-radius: var(--radius); border: 1px solid var(--line-strong);
  background: radial-gradient(circle at 100% 0%, rgba(225, 29, 46, 0.3), transparent 55%), var(--surface);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.cuts__ig:hover { border-color: var(--red); transform: translateY(-3px); }
.cuts__ig-icon { flex: none; width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, #f9ce34, #ee2a7b 50%, #6228d7); color: #fff; }
.cuts__ig-icon .icon { width: 28px; height: 28px; }
.cuts__ig strong { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; text-transform: uppercase; line-height: 1.05; }
.cuts__ig small { color: var(--muted); font-size: 0.95rem; }
.cuts__ig-arrow { position: absolute; right: 22px; bottom: 16px; font-size: 1.8rem; color: var(--red); transition: transform 0.3s var(--ease); }
.cuts__ig:hover .cuts__ig-arrow { transform: translateX(6px); }

.cuts__more { display: flex; justify-content: center; margin-top: 32px; }

.gallery__cta {
  position: relative; overflow: hidden; border-radius: var(--radius);
  padding: 28px 34px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 14px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 45%),
    linear-gradient(135deg, var(--red-deep), var(--red));
}
.gallery__cta::after {
  content: "✂"; position: absolute; right: -6px; bottom: -56px; font-size: 210px; line-height: 1;
  color: rgba(0, 0, 0, 0.13); transform: rotate(-25deg); pointer-events: none;
}
.gallery__cta > * { position: relative; z-index: 1; }
.gallery__cta p { margin: 0; font-family: var(--font-label); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); }
.gallery__cta h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1; text-transform: uppercase; }
.shot {
  position: relative; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); cursor: zoom-in;
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.5s; }
.shot::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 45%);
  opacity: 0.75; transition: opacity 0.4s;
}
.shot:hover img { transform: scale(1.06); }

/* Empty spot waiting for a new photo */
.photo-slot { background: var(--surface); border: 1px dashed var(--line-strong); cursor: default; }
.shot.photo-slot::after { display: none; }
.shot:hover::after { opacity: 1; }
.shot__label {
  position: absolute; left: 16px; bottom: 14px; z-index: 1;
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
}
.shot__label::before { content: ""; width: 18px; height: 2px; background: var(--red); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(5, 5, 6, 0.94);
  display: flex; align-items: center; justify-content: center; padding: 60px 70px;
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } }
.lightbox__figure { margin: 0; max-width: 1100px; max-height: 100%; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox__figure img { max-height: calc(100vh - 150px); width: auto; border-radius: 12px; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); }
.lightbox__figure figcaption { color: var(--muted); font-size: 0.95rem; text-align: center; }
.lightbox__close, .lightbox__nav {
  position: absolute; border: 1px solid var(--line-strong); background: rgba(255, 255, 255, 0.06);
  color: #fff; width: 50px; height: 50px; border-radius: 50%; font-size: 1.8rem; line-height: 1;
  display: grid; place-items: center; transition: background 0.2s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--red); border-color: var(--red); }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__nav--prev { left: 14px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 14px; top: 50%; transform: translateY(-50%); }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.14), transparent 40%),
    linear-gradient(120deg, var(--red-deep), var(--red) 60%, #c3121f);
}
.cta-band::after {
  content: "✂"; position: absolute; right: 4%; top: 50%; transform: translateY(-50%) rotate(-25deg);
  font-size: 320px; line-height: 1; color: rgba(0, 0, 0, 0.1); pointer-events: none;
}
.cta-band__inner { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr; gap: clamp(32px, 6vw, 90px); align-items: center; padding: clamp(60px, 8vw, 96px) 0; }
.cta-band__rating { display: flex; align-items: center; gap: 22px; padding-right: clamp(32px, 6vw, 90px); border-right: 1px solid rgba(255, 255, 255, 0.25); }
.cta-band__score { font-family: var(--font-display); font-size: clamp(5rem, 11vw, 8rem); line-height: 0.85; color: #fff; }
.cta-band__rating .stars { color: #ffd978; }
.cta-band__rating p { margin: 6px 0 8px; color: rgba(255, 255, 255, 0.88); }
.link-arrow { font-family: var(--font-label); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.95rem; border-bottom: 2px solid rgba(255, 255, 255, 0.5); padding-bottom: 2px; transition: border-color 0.2s; }
.link-arrow:hover { border-color: #fff; }
.cta-band__text h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.4rem, 5vw, 3.8rem); text-transform: uppercase; margin-bottom: 10px; }
.cta-band__text p { color: rgba(255, 255, 255, 0.9); font-size: 1.1rem; margin-bottom: 26px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ==========================================================================
   Visit
   ========================================================================== */
.visit__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 24px; align-items: stretch; }
.info-card { height: 100%; padding: 34px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--line); display: flex; flex-direction: column; gap: 26px; }
.info-card__row { display: flex; gap: 16px; }
.info-card__icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(225, 29, 46, 0.14); color: var(--red); }
.info-card__icon svg { width: 22px; height: 22px; fill: currentColor; }
.info-card h3 { font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.9rem; color: var(--gold); margin-bottom: 6px; }
.info-card p { margin: 0; font-size: 1.05rem; }
.info-card p.muted { font-size: 0.9rem; margin-top: 4px; }
.info-card a:hover { color: var(--red); }

.hours { padding-top: 24px; border-top: 1px solid var(--line); }
.hours__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.hours__head h3 { margin: 0; }
.status--card { font-size: 0.85rem; padding: 5px 12px; border-radius: 999px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); }
.hours__list li { display: flex; justify-content: space-between; padding: 9px 12px; border-radius: 10px; font-size: 0.97rem; color: #cfcac4; }
.hours__list li:nth-child(odd) { background: rgba(255, 255, 255, 0.025); }
.hours__list li.is-today { background: rgba(225, 29, 46, 0.16); color: #fff; font-weight: 600; box-shadow: inset 3px 0 0 var(--red); }
.hours__list li.is-today span:first-child::after { content: "Today"; margin-left: 10px; font-family: var(--font-label); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-bright); }
.info-card__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: auto; }
.info-card__actions .btn { flex: 1; }

.visit__map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); min-height: 460px; background: var(--surface); position: relative; }
.visit__map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(0.92) contrast(0.88) brightness(0.95); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: #050506; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.3fr 0.8fr 1fr 1.4fr; gap: 40px; padding: 70px 0 50px; align-items: start; }
.footer__logo { width: 96px; height: 96px; border-radius: 50%; margin-bottom: 18px; box-shadow: 0 0 0 2px rgba(225, 29, 46, 0.5); }
.footer__brand p { color: var(--muted); max-width: 320px; font-size: 0.95rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.socials a:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; fill: currentColor; }
.footer__col h4 { font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.95rem; color: var(--text); margin-bottom: 18px; }
.footer__col li { color: var(--muted); font-size: 0.95rem; margin-bottom: 10px; line-height: 1.5; }
.footer__col a { transition: color 0.2s; }
.footer__col a:hover { color: var(--text); }
.hours-card {
  padding: 22px 20px 14px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
}
.hours-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0 4px 14px; margin-bottom: 6px; border-bottom: 1px solid var(--line); }
.hours-card__head h4 { margin: 0; }
.hours-card .status--card { font-size: 0.76rem; padding: 4px 10px; white-space: nowrap; }
.hours-card__list li {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  margin: 0; padding: 8px 10px; border-radius: 8px;
  font-size: 0.9rem; color: var(--muted); font-variant-numeric: tabular-nums;
}
.hours-card__list li span:last-child { color: #e4dfd9; font-weight: 500; }
.hours-card__list li.is-today { background: rgba(225, 29, 46, 0.14); color: #fff; font-weight: 600; box-shadow: inset 3px 0 0 var(--red); }
.hours-card__list li.is-today span:last-child { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 28px; border-top: 1px solid var(--line); color: #6f6b68; font-size: 0.85rem; }
.footer__bottom p { margin: 0; }

/* Mobile action bar */
.mobile-bar { display: none; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__emblem { display: none; }
  .menu { grid-template-columns: 1fr 1fr; }
  .menu__group[data-cat="grooming"] { grid-column: span 2; }
  .menu:not(.is-filtered) .menu__group[data-cat="grooming"] .menu__list { columns: 2; column-gap: 40px; }
  .menu__item { break-inside: avoid; }
  .holiday { grid-template-columns: 1fr; }
  .barbers__grid { grid-template-columns: 1fr 1fr; }
  .barbers__grid .barber:last-child { grid-column: span 2; max-width: 560px; justify-self: center; width: 100%; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .topbar__address { display: none; }
  .menu-toggle { display: flex; }
  .nav {
    /* the header's backdrop-filter makes it the containing block, so anchor to it */
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 12px 20px 24px; background: rgba(8, 8, 10, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform 0.3s var(--ease), opacity 0.3s, visibility 0.3s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__link { padding: 16px 4px; border-bottom: 1px solid var(--line); font-size: 1.2rem; }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 18px; padding: 15px; }

  .amenities { grid-template-columns: 1fr 1fr; }
  .amenity:nth-child(3)::before { display: none; }
  .amenity:nth-child(n+3) { border-top: 1px solid var(--line-strong); }

  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3)::before { display: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); }

  .about__grid { grid-template-columns: 1fr; }
  .craft__grid { grid-template-columns: 1fr; }
  .craft__media { order: -1; padding: 10px 0 20px; }
  .phone { width: min(78%, 300px); }
  .phone__badge { left: 50%; bottom: -18px; transform: translateX(-50%); white-space: nowrap; }
  .about__media { max-width: 560px; margin-inline: auto; width: 100%; }
  .visit__grid { grid-template-columns: 1fr; }
  .visit__map { min-height: 360px; }
  .cta-band__inner { grid-template-columns: 1fr; }
  .cta-band__rating { border-right: 0; padding-right: 0; padding-bottom: 32px; border-bottom: 1px solid rgba(255, 255, 255, 0.25); }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px;
    grid-template-areas: "a a" "b c" "d e" "f f" "g g";
  }
  .cuts__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 32px, var(--container)); }
  .topbar__inner { justify-content: space-between; gap: 12px; }
  .topbar__inner .status { margin-right: 0; }
  .brand__logo { width: 44px; height: 44px; }
  .brand__name { font-size: 1.3rem; }
  .brand__sub { font-size: 0.7rem; letter-spacing: 0.36em; }
  .hero { padding: 56px 0 90px; min-height: 0; }
  .hero .eyebrow { letter-spacing: 0.15em; font-size: 0.9rem; }
  .hero .eyebrow__line { display: none; }
  .hero__actions .btn { flex: 1 1 100%; }
  .amenity { flex-direction: column; text-align: center; gap: 10px; padding: 18px 10px; }
  .amenity__icon { width: 42px; height: 42px; }
  .amenity__text strong { font-size: 0.9rem; letter-spacing: 0.06em; }
  .amenity__text small { font-size: 0.78rem; }
  .features { grid-template-columns: 1fr; }
  .about__stamp { width: 96px; height: 96px; font-size: 0.66rem; top: 14px; }
  .about__stamp strong { font-size: 1.15rem; }
  .menu { grid-template-columns: 1fr; }
  .menu__group[data-cat="grooming"] { grid-column: auto; }
  .menu .menu__list, .menu.is-filtered .menu__list, .menu:not(.is-filtered) .menu__group[data-cat="grooming"] .menu__list { columns: 1; }
  .menu__group { padding: 26px 20px 18px; }
  .menu-tabs { display: flex; overflow-x: auto; flex-wrap: nowrap; border-radius: 16px; }
  .menu-tab { flex: none; padding: 9px 16px; }
  .holiday { padding: 26px 20px; }
  .holiday__items { grid-template-columns: 1fr; }
  .barbers__grid { grid-template-columns: 1fr; }
  .barbers__grid .barber:last-child { grid-column: auto; }
  .gallery__grid { grid-auto-rows: 170px; gap: 10px; }
  .shot__label { font-size: 0.8rem; left: 12px; bottom: 10px; }
  .gallery__grid .shot__label { font-size: 0.7rem; letter-spacing: 0.08em; white-space: nowrap; }
  .gallery__grid .shot__label::before { width: 12px; }
  .cuts__grid { gap: 10px; }
  .cut .shot__label { font-size: 0.68rem; letter-spacing: 0.08em; left: 10px; right: 8px; bottom: 8px; }
  .cut .shot__label::before { display: none; }
  .cuts__head { flex-direction: column; align-items: flex-start; }
  .cuts__filters { flex-wrap: nowrap; overflow-x: auto; max-width: 100%; padding-bottom: 4px; }
  .cuts__filter { flex: none; padding: 8px 14px; font-size: 0.85rem; }
  .cuts__ig { padding: 12px 14px; gap: 8px; }
  .cuts__ig-icon { width: 34px; height: 34px; border-radius: 10px; }
  .cuts__ig-icon .icon { width: 18px; height: 18px; }
  .cuts__ig strong { font-size: 1.05rem; }
  .cuts__ig small { font-size: 0.68rem; word-break: break-all; }
  .cuts__ig-arrow { right: 12px; bottom: 6px; font-size: 1.3rem; }
  .before-after__tag { top: 8px; left: 8px; font-size: 0.68rem; padding: 4px 9px; }
  .info-card { padding: 24px 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-top: 56px; }
  .lightbox { padding: 60px 12px; }
  .lightbox__nav { top: auto; bottom: 16px; transform: none; }
  .lightbox__nav--prev { left: calc(50% - 60px); }
  .lightbox__nav--next { right: calc(50% - 60px); }

  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1.4fr; gap: 8px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(8, 8, 10, 0.95); border-top: 1px solid var(--line);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  }
  .mobile-bar__btn {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    padding: 12px 8px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line);
    font-family: var(--font-label); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.95rem;
  }
  .mobile-bar__btn .icon { color: var(--red); }
  .mobile-bar__btn--primary { background: var(--red); border-color: var(--red); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
