/* ============================================================
   Bleach Hair Addiction — Redesign
   styles/styles.css
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --c-bg: #0d0d0d;
  --c-bg-soft: #161616;
  --c-surface: #f5f1ec;
  --c-surface-dim: #ebe5db;
  --c-ink: #0a0a0a;
  --c-ink-soft: #2a2a2a;
  --c-muted: #6f6a64;
  --c-line: rgba(10, 10, 10, 0.12);
  --c-line-dark: rgba(245, 241, 236, 0.12);
  --c-red: #c0252b;
  --c-red-deep: #951a1f;
  --c-gold: #b9985a;

  --f-display: "Anton", "Bebas Neue", "Arial Narrow", sans-serif;
  --f-editorial: "Playfair Display", "Times New Roman", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --container: 1320px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  --nav-h: 84px;
  --nav-h-shrunk: 64px;

  --radius: 4px;
  --radius-lg: 14px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h-shrunk); }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; letter-spacing: -0.01em; }
p { margin: 0; }

::selection { background: var(--c-red); color: #fff; }

/* ---------- Layout helpers ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 600;
  margin-bottom: 1rem;
}
.h2 {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-weight: 400;
}
.h2 em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--c-red);
  letter-spacing: -0.02em;
  line-height: 1;
}
/* Breathing room between a heading and the paragraph that follows it */
.h2 + .lede,
.h2 + p { margin-top: clamp(0.9rem, 2vw, 1.4rem); }
.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.55;
  color: var(--c-ink-soft);
  max-width: 60ch;
}

.section-head { margin-bottom: clamp(2rem, 5vw, 4rem); max-width: 760px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__note { margin-top: 1rem; color: var(--c-muted); font-size: 0.95rem; }

/* ---------- Buttons ---------- */
.btn {
  --pad-y: 0.85rem;
  --pad-x: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform .35s var(--ease), background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
  will-change: transform;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--c-red); color: #fff; }
.btn--primary:hover { background: var(--c-red-deep); box-shadow: 0 12px 30px -10px rgba(192, 37, 43, 0.55); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover { background: #fff; color: var(--c-ink); border-color: #fff; }
.btn--lg { --pad-y: 1.05rem; --pad-x: 1.9rem; font-size: 0.98rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(13,13,13,0.85), rgba(13,13,13,0));
  transition: background-color .35s var(--ease), height .35s var(--ease), backdrop-filter .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  height: var(--nav-h-shrunk);
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--c-line-dark);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__logo { display: flex; align-items: center; }
.nav__logo img {
  height: 46px;
  width: auto;
  transition: height .35s var(--ease);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.nav.is-stuck .nav__logo img { height: 36px; }

.nav__links {
  margin-left: auto;
  display: flex;
  gap: 2rem;
}
.nav__links a {
  position: relative;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.4rem 0;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--c-red);
  transition: width .35s var(--ease), left .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; left: 0; }

.nav__cta { margin-left: 0.5rem; }

.nav__burger {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
body.menu-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
}
.drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 380px);
  background: var(--c-bg);
  color: #fff;
  padding: 2rem 1.75rem;
  transform: translateX(100%);
  transition: transform .45s var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
body.menu-open .drawer { pointer-events: auto; }
body.menu-open .drawer__backdrop { opacity: 1; }
body.menu-open .drawer__panel { transform: translateX(0); }

.drawer__close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
}
.drawer__links {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.drawer__links a {
  font-family: var(--f-display);
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--c-line-dark);
  transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.drawer__links a:hover { color: var(--c-red); padding-left: 0.5rem; }
.drawer__cta { align-self: flex-start; }
.drawer__contact {
  margin-top: auto;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid var(--c-line-dark);
  padding-top: 1rem;
}
.drawer__contact a { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  background: #0a0a0a;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% center;
  transform: scale(1.06);
  animation: heroZoom 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroZoom {
  from { transform: scale(1.02) translateY(0); }
  to   { transform: scale(1.1) translateY(-2%); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.7) 30%, rgba(10,10,10,0.15) 55%, transparent 75%),
    linear-gradient(to bottom, rgba(10,10,10,0.25) 0%, transparent 30%, rgba(10,10,10,0.55) 100%);
}
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 75% 35%, rgba(143, 201, 73, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(192, 37, 43, 0.28), transparent 65%);
  mix-blend-mode: screen;
  animation: glowDrift 16s ease-in-out infinite alternate;
}
@keyframes glowDrift {
  from { transform: translate(0,0); opacity: 0.85; }
  to   { transform: translate(-2%, 1%); opacity: 1; }
}

.hero__content {
  position: relative;
  max-width: var(--container);
  width: 100%;
  margin-inline: auto;
  padding: calc(var(--nav-h) + 2rem) var(--gutter) clamp(4rem, 10vh, 8rem);
}
.hero__content .eyebrow { color: #fff; opacity: 0.8; }

.hero__title {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 11vw, 9rem);
  line-height: 0.88;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 1.75rem;
  max-width: 14ch;
}
.hero__line { display: block; }
.hero__line em {
  font-family: var(--f-editorial);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: #fff;
  letter-spacing: -0.02em;
  opacity: 0.9;
}
.hero__line--accent { color: var(--c-red); }

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 48ch;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.25rem;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.7), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

/* ============================================================
   PRESS MARQUEE
   ============================================================ */
.press {
  background: var(--c-bg);
  color: var(--c-surface);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--c-line-dark);
  border-bottom: 1px solid var(--c-line-dark);
  overflow: hidden;
}
.press__label {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(245,241,236,0.55);
  margin-bottom: 1.5rem;
}
.press__marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.press__track {
  display: inline-flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 55s linear infinite;
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  color: var(--c-surface);
}
.press__track span:nth-child(even) { color: var(--c-red); font-style: normal; }
.press:hover .press__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   INTRO / ABOUT
   ============================================================ */
.intro {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-surface);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}
.intro__stats {
  display: grid;
  gap: 1.25rem;
}
.stat {
  background: var(--c-bg);
  color: var(--c-surface);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
  transition: transform .4s var(--ease), background-color .4s var(--ease);
}
.stat:hover { transform: translateX(-6px); background: var(--c-red); }
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1;
}
.stat__label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,241,236,0.7);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-bg);
  color: var(--c-surface);
}
.services .eyebrow { color: var(--c-red); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.service {
  background: var(--c-bg-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
}
.service__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(60%) contrast(1.05);
  transform: scale(1.02);
  transition: transform .9s var(--ease-out), filter .6s var(--ease);
}
.service:hover .service__media img {
  transform: scale(1.08);
  filter: grayscale(0%);
}
.service__body {
  padding: 1.5rem 1.5rem 1.75rem;
}
.service__body h3 {
  font-family: var(--f-display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.service__body p {
  font-size: 0.95rem;
  color: rgba(245,241,236,0.7);
  line-height: 1.55;
}

/* ============================================================
   GALLERY (masonry)
   ============================================================ */
.gallery {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-surface);
}
.gallery--alt {
  background: var(--c-surface-dim);
}
.masonry {
  column-count: 3;
  column-gap: 0.85rem;
}
.masonry__item {
  break-inside: avoid;
  margin: 0 0 0.85rem;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: zoom-in;
  position: relative;
  background: #111;
}
.masonry__item img {
  width: 100%;
  height: auto;
  transition: transform .8s var(--ease-out), filter .5s var(--ease);
  display: block;
}
.masonry__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.25), transparent 40%);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.masonry__item:hover img { transform: scale(1.05); }
.masonry__item:hover::after { opacity: 1; }

/* ============================================================
   BARBER (split-screen)
   ============================================================ */
.barber {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--c-bg);
  color: var(--c-surface);
  min-height: 80vh;
}
.barber__media {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}
.barber__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(0.9);
  transform: scale(1.04);
  transition: transform 1s var(--ease-out), filter 1s var(--ease);
}
.barber__media:hover img { transform: scale(1.1); filter: grayscale(0%) brightness(1); }
.barber__body {
  padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 6vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}
.barber .eyebrow { color: var(--c-red); }
.barber .h2 em { color: var(--c-red); }
.barber .lede { color: rgba(245,241,236,0.75); }
.barber__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0 1.5rem;
  border-top: 1px solid var(--c-line-dark);
  padding-top: 1.25rem;
}
.barber__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px dashed var(--c-line-dark);
  font-size: 0.98rem;
}
.barber__list li span:last-child {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--c-red);
}
.barber__body .btn { align-self: flex-start; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-surface);
  position: relative;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.price-card {
  padding: 2rem 1.75rem 2.25rem;
  background: #fff;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.18);
  border-color: rgba(192,37,43,0.3);
}
.price-card h3 {
  font-family: var(--f-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--c-red);
}
.price-card__sub {
  font-family: var(--f-editorial);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--c-muted);
  text-transform: none;
  letter-spacing: 0;
  margin-left: 0.4rem;
}
.price-list { display: flex; flex-direction: column; gap: 0.65rem; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.96rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed var(--c-line);
}
.price-list li:last-child { border-bottom: 0; }
.price-list li em { color: var(--c-muted); font-style: italic; }
.price-list li span:last-child {
  font-weight: 600;
  white-space: nowrap;
  color: var(--c-ink);
}
.pricing__cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

/* ============================================================
   VISIT
   ============================================================ */
.visit {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--c-bg);
  color: var(--c-surface);
}
.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}
.visit .eyebrow { color: var(--c-red); }
.visit .h2 { margin-bottom: 2rem; }
.visit .h2 em { color: var(--c-red); }
.visit__block { margin-top: 2rem; }
.visit__block h4 {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,241,236,0.5);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.visit__block p, .hours li {
  font-size: 1.02rem;
  color: rgba(245,241,236,0.92);
}
.visit__block a {
  text-decoration: none;
  border-bottom: 1px solid var(--c-red);
  transition: color .3s var(--ease);
}
.visit__block a:hover { color: var(--c-red); }
.hours {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 360px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  border-bottom: 1px dashed var(--c-line-dark);
}
.visit__social {
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
}
.visit__social a {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c-red);
  transition: color .3s var(--ease), transform .3s var(--ease);
}
.visit__social a:hover { color: var(--c-red); transform: translateY(-2px); }

.visit__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 460px;
  border: 1px solid var(--c-line-dark);
}
.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  color: var(--c-surface);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  border-top: 1px solid var(--c-line-dark);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.footer__logo img { height: 64px; width: auto; }
.footer__tag {
  font-family: var(--f-editorial);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  color: rgba(245,241,236,0.75);
}
.footer__tag em { color: var(--c-red); }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}
.footer__links a {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,241,236,0.7);
  transition: color .3s var(--ease);
}
.footer__links a:hover { color: var(--c-red); }
.footer__small {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(245,241,236,0.45);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,5,5,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
body.lightbox-open .nav { opacity: 0; pointer-events: none; transition: opacity .25s var(--ease); }
.lightbox__figure {
  margin: 0;
  max-width: 90vw;
  max-height: 86vh;
  transform: scale(0.96);
  transition: transform .45s var(--ease-out);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }
.lightbox__figure img {
  max-width: 90vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox__close,
.lightbox__nav {
  position: absolute;
  color: #fff;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__nav--prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--c-red); }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-4px); }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(4px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children of certain containers */
.hero__content .reveal:nth-child(1) { --reveal-delay: 100ms; }
.hero__content .reveal:nth-child(2) { --reveal-delay: 200ms; }
.hero__content .reveal:nth-child(3) { --reveal-delay: 400ms; }
.hero__content .reveal:nth-child(4) { --reveal-delay: 550ms; }
.intro__stats .stat:nth-child(1) { --reveal-delay: 100ms; }
.intro__stats .stat:nth-child(2) { --reveal-delay: 220ms; }
.intro__stats .stat:nth-child(3) { --reveal-delay: 340ms; }
.barber__list li:nth-child(1) { --reveal-delay: 80ms; }
.barber__list li:nth-child(2) { --reveal-delay: 160ms; }
.barber__list li:nth-child(3) { --reveal-delay: 240ms; }
.barber__list li:nth-child(4) { --reveal-delay: 320ms; }
.barber__list li:nth-child(5) { --reveal-delay: 400ms; }
.barber__list li:nth-child(6) { --reveal-delay: 480ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav__links { gap: 1.3rem; }
  .nav__links a { font-size: 0.78rem; letter-spacing: 0.12em; }
}

@media (max-width: 960px) {
  :root { --nav-h: 64px; --nav-h-shrunk: 56px; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .intro__grid { grid-template-columns: 1fr; gap: 2rem; }
  .barber { grid-template-columns: 1fr; min-height: 0; }
  .barber__media { min-height: 0; aspect-ratio: 4 / 3; }
  .barber__media img { aspect-ratio: 4 / 3; }
  .visit__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .visit__map { min-height: 280px; }
  .visit__map iframe { min-height: 280px; }
  .masonry { column-count: 2; column-gap: 0.5rem; }
  .masonry__item { margin-bottom: 0.5rem; }

  .hero__img { object-position: 68% center; }
  .hero__veil {
    background:
      linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 35%, rgba(10,10,10,0.85) 100%),
      linear-gradient(105deg, rgba(10,10,10,0.55), transparent 60%);
  }

  /* Tighten vertical rhythm of all major sections */
  .hero { min-height: 92svh; }
  .intro,
  .services,
  .gallery,
  .pricing,
  .visit { padding: 3.5rem 0; }
  .barber__body { padding: 3rem 1.5rem; gap: 1rem; }
  .section-head { margin-bottom: 1.75rem; }
  .footer { padding: 2.5rem 0 1.5rem; }
  .press { padding: 2rem 0; }

  /* Hero copy tighter */
  .hero__title { margin-bottom: 1.25rem; }
  .hero__sub { margin-bottom: 1.5rem; }
  /* Hide scroll indicator on mobile so it doesn't collide with CTAs */
  .hero__scroll { display: none; }

  /* Services: 2-up grid, shorter cards, side-by-side layout */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .service__media { aspect-ratio: 3 / 4; }
  .service__body { padding: 1rem 1rem 1.15rem; }
  .service__body h3 { font-size: 1.1rem; margin-bottom: 0.35rem; }
  .service__body p { font-size: 0.85rem; line-height: 1.45; }

  /* Pricing: 2-up grid, compact cards */
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .price-card { padding: 1.25rem 1rem 1.5rem; border-radius: 10px; }
  .price-card h3 { font-size: 1.15rem; margin-bottom: 0.85rem; padding-bottom: 0.5rem; }
  .price-card__sub { display: block; margin-left: 0; font-size: 0.78rem; }
  .price-list { gap: 0.45rem; }
  .price-list li { font-size: 0.85rem; padding-bottom: 0.4rem; gap: 0.5rem; }
  .pricing__cta { margin-top: 2rem; }

  /* Barber list tighter */
  .barber__list { gap: 0.45rem; margin: 0.75rem 0 1rem; padding-top: 0.75rem; }
  .barber__list li { font-size: 0.92rem; padding-bottom: 0.4rem; }
  .barber__list li span:last-child { font-size: 1.05rem; }

  /* Intro stats stacked tighter */
  .intro__stats { gap: 0.75rem; }
  .stat { padding: 1rem 1.15rem; }
  .stat__num { font-size: 1.85rem; }
  .stat__label { font-size: 0.75rem; }

  /* Visit blocks tighter */
  .visit__block { margin-top: 1.25rem; }
}

@media (max-width: 640px) {
  .hero__img { object-position: 70% center; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .hero__cta .btn { width: 100%; }
  .footer__links { gap: 0.9rem 1.25rem; }

  /* Single column for visit map below, keep services/pricing 2-up for density */
  .visit__map { min-height: 240px; }
  .visit__map iframe { min-height: 240px; }
}

@media (max-width: 420px) {
  /* On the very smallest screens, keep 2-up grids but shrink type slightly more */
  .service__body h3 { font-size: 1rem; }
  .price-card h3 { font-size: 1rem; }
  .price-list li { font-size: 0.8rem; }
}

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