/* =========================================================
   ROOTS CLASSIC BARBERSHOP — Mockup
   Design language: industrial chrome on near-black,
   hex-light ceiling motif, barber-pole red as sole accent.
   ========================================================= */

/* --- Tokens ------------------------------------------------ */
:root {
  /* Surfaces */
  --ink-0:   #050505;
  --ink-1:   #0c0c0c;
  --ink-2:   #131313;
  --ink-3:   #1a1a1a;
  --ink-4:   #262626;
  --ink-5:   #404040;

  /* Type */
  --bone:    #f4f1eb;
  --bone-dim:#cdc9c1;
  --ash:     #8a8780;
  --ash-dim: #5a5854;

  /* Brand accents — barber pole */
  --pole-red:   #c8102e;
  --pole-red-2: #9a0a23;
  --pole-blue:  #1f3a8a;
  --pole-white: #f4f1eb;

  /* Stars */
  --gold: #f4c430;

  /* Chrome */
  --chrome: linear-gradient(
    180deg,
    #f6f4ee 0%,
    #d8d4cb 28%,
    #6f6c66 49%,
    #2a2825 51%,
    #5e5b55 65%,
    #cfc9bf 85%,
    #ece8de 100%
  );

  /* Type system */
  --f-display: "Big Shoulders Display", "Arial Black", sans-serif;
  --f-italic:  "Cormorant Garamond", "Georgia", serif;
  --f-body:    "Hanken Grotesk", system-ui, sans-serif;

  /* Spacing rhythm */
  --gutter: clamp(1.25rem, 3vw, 2rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  /* Shadows */
  --glow: 0 0 0 1px rgba(244, 241, 235, 0.06),
          0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

/* --- Reset ------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink-0);
  color: var(--bone);
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* Subtle film grain over the whole page — adds warmth to dark theme */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* --- Containers & rhythm ---------------------------------- */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 0.4em 0.9em;
  border: 1px solid var(--ink-4);
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "◆";
  margin-right: 0.7em;
  color: var(--pole-red);
  font-size: 0.7em;
  vertical-align: middle;
}

.section__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5.4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0 0 1rem;
  color: var(--bone);
}

.italic-accent {
  font-family: var(--f-italic);
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  letter-spacing: -0.01em;
  color: var(--bone-dim);
}

.section__sub {
  font-size: 1.05rem;
  color: var(--ash);
  max-width: 56ch;
  margin: 0;
}

.section__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__head .section__sub { margin-inline: auto; }

/* --- Chrome text ------------------------------------------- */
.chrome {
  background: var(--chrome);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  text-shadow: 0 1px 0 rgba(255,255,255,0.04);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.55));
}

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1em 1.6em;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: transform 0.18s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--pole-red);
  color: var(--bone);
  position: relative;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    0 12px 30px -12px var(--pole-red);
}
.btn--primary:hover {
  background: var(--pole-red-2);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--ink-5);
}
.btn--ghost:hover {
  border-color: var(--bone);
  color: var(--bone);
}

.btn--chrome {
  background: var(--chrome);
  color: var(--ink-0);
  border: none;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.5) inset,
    0 -1px 0 rgba(0,0,0,0.4) inset,
    0 16px 30px -12px rgba(0,0,0,0.6);
}
.btn--chrome:hover { transform: translateY(-1px); }

.btn .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* --- Barber pole stripe divider ---------------------------- */
.pole-stripe {
  height: 6px;
  background: repeating-linear-gradient(
    -50deg,
    var(--pole-red)   0  16px,
    var(--pole-white) 16px 30px,
    var(--pole-blue)  30px 46px,
    var(--pole-white) 46px 60px
  );
  position: relative;
  overflow: hidden;
}
.pole-stripe::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
}

/* --- Hex shape (flat-top) ---------------------------------- */
.hex {
  --size: 200px;
  width: var(--size);
  aspect-ratio: 1 / 0.866;
  clip-path: polygon(25% 1%, 75% 1%, 99% 50%, 75% 99%, 25% 99%, 1% 50%);
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 0.9rem var(--gutter);
  background: linear-gradient(180deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.75) 70%, rgba(5,5,5,0) 100%);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(5,5,5,0.92);
  border-bottom-color: var(--ink-3);
}

.nav__brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.nav__logo  { width: 38px; height: auto; }
.nav__brand-text {
  font-family: var(--f-display);
  font-weight: 800;
  letter-spacing: 0.22em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.nav__links {
  display: none;
  gap: 2rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.nav__links a {
  color: var(--bone-dim);
  transition: color 0.18s ease;
  position: relative;
}
.nav__links a:hover { color: var(--bone); }
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--pole-red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.22s ease;
}
.nav__links a:hover::after { transform: scaleX(1); }

@media (min-width: 900px) {
  .nav { grid-template-columns: auto 1fr auto; }
  .nav__links { display: flex; justify-content: center; }
}

.nav__cta { padding: 0.75em 1.2em; font-size: 0.78rem; }

/* Rose · Beauty Studio — sister-brand link */
.nav__rose {
  display: none;
  align-items: baseline;
  gap: 0.45em;
  line-height: 1;
  padding: 0.5em 1em;
  border-left: 1px solid var(--ink-4);
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav__rose:hover { opacity: 0.85; transform: translateY(-1px); }
.nav__rose-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c98985;
}
.nav__rose-tag {
  font-family: "Allura", "Brush Script MT", cursive;
  font-size: 1.1rem;
  color: var(--bone-dim);
  letter-spacing: 0;
}
@media (min-width: 1080px) {
  .nav { grid-template-columns: auto 1fr auto auto; }
  .nav__rose { display: inline-flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding-top: 120px;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(0.25) brightness(0.55) contrast(1.05);
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 100%, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 60%, rgba(5,5,5,0.85) 100%),
    linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.05) 35%, rgba(5,5,5,0.7) 75%, rgba(5,5,5,1) 100%);
}

/* Hex pattern overlay for hero */
.hero__hex {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: screen;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='190' viewBox='0 0 220 190'><g fill='none' stroke='%23ffffff' stroke-width='0.6' opacity='0.18'><polygon points='55,2 165,2 218,95 165,188 55,188 2,95'/><polygon points='165,2 220,95 220,-93' transform='translate(0)'/></g></svg>");
  background-size: 220px 190px;
  animation: hex-drift 70s linear infinite;
}
@keyframes hex-drift {
  from { background-position: 0 0; }
  to   { background-position: 1320px 950px; }
}

.hero__content {
  position: relative;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  z-index: 1;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: rise 0.9s 0.1s ease forwards;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ash));
}
.hero__eyebrow::after { background: linear-gradient(90deg, var(--ash), transparent); }

@media (max-width: 540px) {
  .hero__eyebrow {
    letter-spacing: 0.22em;
    font-size: 0.72rem;
  }
  .hero__eyebrow::before,
  .hero__eyebrow::after { display: none; }
}

.hero__title {
  margin: 0 0 1.4rem;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3rem, 11vw, 9rem);
  line-height: 0.86;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}
.hero__title-line {
  display: block;
  opacity: 0;
  animation: rise 1s ease forwards;
}
.hero__title-line:nth-child(1) { animation-delay: 0.25s; }
.hero__title-line:nth-child(2) { animation-delay: 0.45s; }
.hero__title-line:nth-child(3) { animation-delay: 0.65s; }

.hero__title-classic {
  font-family: var(--f-italic);
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  font-size: 0.78em;
  color: var(--pole-red);
  letter-spacing: -0.01em;
  display: inline-block;
  transform: translateY(-0.06em);
}

.hero__sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 38ch;
  color: var(--bone-dim);
  margin: 0 0 2.2rem;
  opacity: 0;
  animation: rise 0.9s 0.85s ease forwards;
}

.hero__ctas {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  opacity: 0;
  animation: rise 0.9s 1.05s ease forwards;
}

.hero__badges {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: rise 0.9s 1.25s ease forwards;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.55em 1em;
  border: 1px solid var(--ink-4);
  border-radius: 999px;
  color: var(--bone-dim);
  background: rgba(5,5,5,0.5);
  backdrop-filter: blur(6px);
}
.badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pole-red);
  box-shadow: 0 0 10px var(--pole-red);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

.hero__scroll {
  position: absolute;
  bottom: 1.8rem;
  right: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ash);
  opacity: 0;
  animation: rise 0.9s 1.5s ease forwards;
}
.hero__scroll::before {
  content: "";
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--ash));
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   THE RECEIPTS — social proof
   ========================================================= */
.proof {
  background: var(--ink-0);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
}
.proof::before {
  /* Subtle hex backdrop */
  content: "";
  position: absolute;
  inset: -10% 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='208'><polygon points='60,4 180,4 238,104 180,204 60,204 2,104' fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.06'/></svg>");
  background-size: 200px 174px;
  pointer-events: none;
  opacity: 0.6;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.proof__head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }

.proof__stats {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 760px) {
  .proof__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
}

.stat-card {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  transition: transform 0.25s ease;
  border: 1px solid var(--ink-3);
  background: linear-gradient(180deg, var(--ink-1) 0%, var(--ink-0) 100%);
}
@media (min-width: 760px) {
  .stat-card { border-right: 1px solid var(--ink-3); }
  .stat-card:last-child { border-right: 1px solid var(--ink-3); }
}
.stat-card:hover { transform: translateY(-4px); }

.stat-card__hex {
  --size: 160px;
  width: var(--size);
  aspect-ratio: 1 / 0.866;
  display: grid;
  place-items: center;
  position: relative;
  margin-bottom: 1.2rem;
  background: var(--chrome);
  clip-path: polygon(25% 1%, 75% 1%, 99% 50%, 75% 99%, 25% 99%, 1% 50%);
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.5));
}
.stat-card__hex::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: linear-gradient(180deg, var(--ink-1) 0%, var(--ink-0) 100%);
  clip-path: polygon(25% 1%, 75% 1%, 99% 50%, 75% 99%, 25% 99%, 1% 50%);
}
.stat-card__number {
  position: relative;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 3.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--chrome);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.stat-card__number-suffix { font-size: 0.55em; vertical-align: 0.18em; }

.stat-card__stars {
  letter-spacing: 0.2em;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  text-shadow: 0 0 18px rgba(244,196,48,0.25);
}
.stat-card__label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 0.3rem;
}
.stat-card__rating {
  font-size: 0.85rem;
  color: var(--ash);
  letter-spacing: 0.04em;
}

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--ink-0); }
.about__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .about__grid { grid-template-columns: 0.95fr 1fr; }
}

.about__copy p {
  color: var(--bone-dim);
  font-size: 1.05rem;
  margin: 0 0 1.1rem;
  max-width: 50ch;
}
.about__copy p:first-of-type { font-size: 1.15rem; color: var(--bone); }

.about__meta {
  display: flex;
  gap: clamp(1rem, 4vw, 2.4rem);
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--ink-3);
}
.about__meta div {
  display: flex;
  flex-direction: column;
  font-family: var(--f-display);
}
.about__meta strong {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.01em;
  background: var(--chrome);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}
.about__meta span {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 0.4rem;
  font-weight: 600;
}

.about__media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  box-shadow: var(--glow);
}
.about__img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.about__media:hover .about__img { transform: scale(1.1); }
.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 60%, rgba(5,5,5,0.5) 100%);
  pointer-events: none;
}

/* Decorative corner ticks on photo */
.about__media::before {
  content: "";
  position: absolute;
  top: 14px; left: 14px;
  width: 28px; height: 28px;
  border-top: 1px solid var(--bone);
  border-left: 1px solid var(--bone);
  z-index: 1;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: linear-gradient(180deg, var(--ink-0) 0%, var(--ink-1) 100%);
  position: relative;
}

.services__grid {
  display: grid;
  gap: 1px;
  background: var(--ink-3);
  border: 1px solid var(--ink-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

.service {
  background: var(--ink-1);
  padding: 2.4rem 1.8rem;
  position: relative;
  transition: background 0.25s ease;
}
.service:hover { background: var(--ink-2); }
.service:hover .service__hex { transform: rotate(-6deg); }

.service__hex {
  --size: 56px;
  width: var(--size);
  aspect-ratio: 1 / 0.866;
  background: var(--chrome);
  clip-path: polygon(25% 1%, 75% 1%, 99% 50%, 75% 99%, 25% 99%, 1% 50%);
  display: grid;
  place-items: center;
  margin-bottom: 1.4rem;
  position: relative;
  transition: transform 0.4s ease;
}
.service__hex::before {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--ink-1);
  clip-path: polygon(25% 1%, 75% 1%, 99% 50%, 75% 99%, 25% 99%, 1% 50%);
}
.service__hex svg {
  position: relative;
  width: 22px; height: 22px;
  color: var(--bone);
}

.service__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
  color: var(--bone);
}
.service__honorific {
  display: block;
  font-family: var(--f-italic);
  font-style: italic;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--pole-red);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.service__copy {
  font-size: 0.95rem;
  color: var(--ash);
  margin: 0;
  max-width: 32ch;
}

.services__cta {
  text-align: center;
  margin-top: 3rem;
}

/* =========================================================
   TEAM — barber spotlights (index)
   ========================================================= */
.team { background: var(--ink-0); position: relative; }

.team__grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .team__grid { grid-template-columns: repeat(3, 1fr); } }

.barber-card {
  position: relative;
  background: var(--ink-1);
  border: 1px solid var(--ink-3);
  padding: 1.4rem 1.4rem 1.6rem;
  display: grid;
  gap: 1.1rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  overflow: hidden;
  isolation: isolate;
}
.barber-card:hover {
  transform: translateY(-4px);
  border-color: var(--ink-5);
  background: var(--ink-2);
}
.barber-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(200,16,46,0.10) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.barber-card:hover::before { opacity: 1; }

.barber-card__photo {
  position: relative;
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.barber-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.barber-card:hover .barber-card__photo img { transform: scale(1.05); }

.barber-card__initials {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--chrome);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

.barber-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.barber-card__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  color: var(--bone);
}
.barber-card__num {
  font-family: var(--f-display);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  color: var(--ash-dim);
}

.barber-card__tags {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
}
.tag {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--ink-4);
  padding: 0.35em 0.75em;
  border-radius: 2px;
}
.tag--accent { color: var(--bone); border-color: var(--pole-red); }

.barber-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone);
  padding-top: 0.5rem;
  border-top: 1px solid var(--ink-4);
  margin-top: 0.2rem;
}
.barber-card__cta .arrow { transition: transform 0.2s ease; }
.barber-card:hover .barber-card__cta .arrow { transform: translateX(6px); }

/* =========================================================
   QUOTES CAROUSEL — Straight from the chair
   ========================================================= */
.quotes {
  background: var(--ink-1);
  position: relative;
  overflow: hidden;
}
.quotes::before {
  content: """;
  position: absolute;
  top: -2rem;
  left: var(--gutter);
  font-family: var(--f-italic);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(14rem, 30vw, 24rem);
  line-height: 1;
  color: rgba(244,241,235,0.04);
  pointer-events: none;
  user-select: none;
}

.quotes__viewport {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  min-height: 280px;
  cursor: pointer;
  touch-action: pan-y;
}
@media (hover: none) {
  .quotes__viewport { cursor: default; }
}

.quote {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 1.4rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.quote.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.quote__stars {
  letter-spacing: 0.2em;
  color: var(--gold);
  font-size: 1.05rem;
}

.quote__body {
  font-family: var(--f-italic);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.4;
  color: var(--bone);
  max-width: 28ch;
  margin: 0;
}
.quote__body::before { content: "“"; color: var(--pole-red); margin-right: 0.05em; }
.quote__body::after  { content: "”"; color: var(--pole-red); margin-left: 0.05em; }

.quote__attr {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
}
.quote__attr strong { color: var(--bone); }
.quote__source {
  display: inline-block;
  margin-left: 0.8em;
  padding: 0.25em 0.7em;
  border: 1px solid var(--ink-4);
  border-radius: 999px;
  font-size: 0.66rem;
  color: var(--bone-dim);
}

.quotes__nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.8rem;
}
.quotes__dot {
  width: 26px;
  height: 6px;
  background: var(--ink-4);
  border: none;
  border-radius: 1px;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease, width 0.2s ease;
}
.quotes__dot.is-active {
  background: var(--pole-red);
  width: 44px;
}
.quotes__dot:hover { background: var(--ink-5); }
.quotes__dot.is-active:hover { background: var(--pole-red); }

.quotes__source-cta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.quotes__source-cta a {
  color: var(--bone-dim);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.2em;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.quotes__source-cta a:hover {
  color: var(--bone);
  border-bottom-color: var(--pole-red);
}

/* =========================================================
   VISIT
   ========================================================= */
.visit { background: var(--ink-0); }

.visit__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (min-width: 880px) {
  .visit__grid { grid-template-columns: 1fr 1.1fr; }
}

.visit__copy h2 { margin-bottom: 1.5rem; }

.visit__address {
  font-size: 1.25rem;
  color: var(--bone);
  line-height: 1.5;
  margin: 0 0 2rem;
}
.visit__address strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 0.4rem;
}

.visit__service-area {
  font-family: var(--f-italic);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ash);
  margin: 0 0 1.6rem;
  max-width: 42ch;
}

.hours {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 2rem;
  font-size: 0.95rem;
}
.hours th {
  text-align: left;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ash);
  padding: 0.6em 0;
  border-bottom: 1px solid var(--ink-4);
}
.hours td {
  padding: 0.6em 0;
  border-bottom: 1px solid var(--ink-3);
  color: var(--bone-dim);
}
.hours td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.hours tr.is-today td { color: var(--bone); }
.hours tr.is-today td:first-child {
  position: relative;
  padding-left: 1.2em;
}
.hours tr.is-today td:first-child::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pole-red);
  box-shadow: 0 0 8px var(--pole-red);
  transform: translateY(-50%);
  animation: pulse 1.6s ease-in-out infinite;
}

.visit__cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.visit__map {
  position: relative;
  aspect-ratio: 4/4.5;
  background: var(--ink-2);
  overflow: hidden;
  box-shadow: var(--glow);
  display: grid;
  place-items: center;
}
.visit__map iframe {
  width: 100%; height: 100%;
  border: 0;
  filter: grayscale(0.85) invert(0.92) hue-rotate(180deg) contrast(0.95);
}
.visit__map-fallback {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--ash);
}
.visit__map-fallback strong {
  display: block;
  font-family: var(--f-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--bone);
  margin-bottom: 0.5rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--ink-0);
  border-top: 1px solid var(--ink-3);
  padding-block: 3rem;
}
.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--bone-dim);
}
.footer__brand img { width: 34px; }
.footer__socials {
  display: flex;
  gap: 0.6rem;
}
.footer__socials a {
  --s: 38px;
  width: var(--s); height: var(--s);
  display: grid; place-items: center;
  border: 1px solid var(--ink-4);
  border-radius: 50%;
  color: var(--bone-dim);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.footer__socials a:hover { color: var(--bone); border-color: var(--pole-red); background: var(--ink-2); }
.footer__socials svg { width: 16px; height: 16px; }

.footer__legal {
  font-size: 0.78rem;
  color: var(--ash-dim);
  letter-spacing: 0.04em;
}

/* Rose · Beauty Studio — slim sub-row ribbon (visible under desktop breakpoint).
   Absolute-positioned just below the fixed nav so it scrolls away with the page
   while the main nav stays sticky. */
.rose-ribbon {
  display: none;
  position: absolute;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 51;
  align-items: baseline;
  justify-content: center;
  gap: 0.45em;
  padding: 0.6rem 1rem;
  background: var(--rose-paper, #f4ede4);
  border-top: 1px solid rgba(201, 137, 133, 0.18);
  border-bottom: 1px solid rgba(201, 137, 133, 0.4);
  box-shadow: 0 4px 14px -8px rgba(0, 0, 0, 0.55);
  line-height: 1;
  transition: opacity 0.2s ease;
}
.rose-ribbon:hover { opacity: 0.9; }
.rose-ribbon__name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c98985;
}
.rose-ribbon__tag {
  font-family: "Allura", "Brush Script MT", cursive;
  font-size: 1.05rem;
  color: #6f6c66;
}
.rose-ribbon__arrow {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 0.95rem;
  color: #c98985;
  margin-left: 0.15em;
  transition: transform 0.2s ease;
}
.rose-ribbon:hover .rose-ribbon__arrow { transform: translateX(3px); }

@media (max-width: 1079px) {
  .rose-ribbon { display: flex; }
}

/* Sister-brand Rose link in footer (mobile-discoverable) */
.footer__rose {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45em;
  line-height: 1;
  padding: 0.5em 0;
  transition: opacity 0.2s ease;
}
.footer__rose:hover { opacity: 0.85; }
.footer__rose-name {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c98985;
}
.footer__rose-tag {
  font-family: "Allura", "Brush Script MT", cursive;
  font-size: 1rem;
  color: var(--ash);
}

/* =========================================================
   BARBER SPOTLIGHT PAGE
   ========================================================= */
.spotlight-hero {
  position: relative;
  padding-top: 130px;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background: linear-gradient(180deg, var(--ink-1) 0%, var(--ink-0) 100%);
  overflow: hidden;
}
.spotlight-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='208'><polygon points='60,4 180,4 238,104 180,204 60,204 2,104' fill='none' stroke='%23ffffff' stroke-width='0.4' opacity='0.07'/></svg>");
  background-size: 200px 174px;
  mask-image: radial-gradient(ellipse at right top, black 0%, transparent 60%);
  pointer-events: none;
}

.spotlight-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
@media (min-width: 880px) {
  .spotlight-grid { grid-template-columns: 0.85fr 1fr; }
}

.spotlight-portrait {
  position: relative;
  aspect-ratio: 1 / 1.1;
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: grid;
  place-items: center;
  overflow: hidden;
  max-width: 460px;
  margin-inline: auto;
  width: 100%;
}
.spotlight-portrait img {
  width: 100%; height: 100%; object-fit: cover;
}
.spotlight-portrait__initials {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 11rem;
  line-height: 1;
  letter-spacing: -0.04em;
  background: var(--chrome);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
}

.spotlight-meta__crumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 1.5rem;
}
.spotlight-meta__crumbs a { color: var(--bone-dim); transition: color 0.2s; }
.spotlight-meta__crumbs a:hover { color: var(--bone); }
.spotlight-meta__crumbs span { color: var(--ash-dim); }

.spotlight-meta__name {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}
.spotlight-meta__honorific {
  display: block;
  font-family: var(--f-italic);
  font-weight: 500;
  font-style: italic;
  font-size: 0.32em;
  color: var(--pole-red);
  letter-spacing: 0.02em;
  text-transform: none;
  margin-bottom: 0.5rem;
}

.spotlight-meta__tags {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin: 1.4rem 0 1.8rem;
}

.spotlight-meta__bio {
  font-size: 1.1rem;
  color: var(--bone-dim);
  margin: 0 0 2rem;
  max-width: 50ch;
}

.spotlight-stats {
  display: flex;
  gap: 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--ink-4);
  border-bottom: 1px solid var(--ink-4);
  margin-bottom: 2rem;
}
.spotlight-stats div {
  display: flex; flex-direction: column;
}
.spotlight-stats strong {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.6rem;
  background: var(--chrome);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  line-height: 1;
}
.spotlight-stats span {
  font-family: var(--f-display);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 0.4rem;
}

/* Work grid */
.work {
  background: var(--ink-0);
  padding-block: var(--section-y);
}
.work__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.work__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
}
.work__count {
  font-family: var(--f-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ash);
}

.work__grid {
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .work__grid { grid-template-columns: repeat(3, 1fr); } }

.work__cell {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(160deg, var(--ink-3), var(--ink-2));
  overflow: hidden;
}
.work__cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.work__cell:hover img { transform: scale(1.05); }
.work__cell::before {
  content: counter(cell, decimal-leading-zero);
  counter-increment: cell;
  position: absolute;
  top: 0.8rem; left: 0.8rem;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  color: var(--bone);
  z-index: 1;
  background: rgba(5,5,5,0.6);
  padding: 0.3em 0.6em;
  backdrop-filter: blur(4px);
}
.work__grid { counter-reset: cell; }

.work__placeholder {
  display: grid;
  place-items: center;
  color: var(--ash-dim);
  font-family: var(--f-display);
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* Closing CTA on barber page */
.spotlight-cta {
  background: linear-gradient(180deg, var(--ink-0) 0%, var(--ink-1) 100%);
  padding-block: var(--section-y);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.spotlight-cta__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}
.spotlight-cta__title em {
  font-family: var(--f-italic);
  font-weight: 500;
  font-style: italic;
  text-transform: none;
  color: var(--pole-red);
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
