/* ============================================================
   HIGH QUALITY CUTS — v3
   Quiet gold on warm black. Editorial restraint, Alirko craft.
   Gradient gold is reserved for CTAs + the one accent phrase;
   everything else is solid gold or cream. Light Cormorant
   display, mono labels, softened glows.
   ============================================================ */

:root {
  /* palette */
  --black: #0b0a08;
  --coal: #131110;
  --surface: #1a1714;
  --line: rgba(255, 198, 41, 0.16);
  --line-soft: rgba(245, 240, 230, 0.08);
  --gold: #ffc629;
  --gold-deep: #e2a611;
  --champagne: #ffde7a;
  --cream: #f5f0e6;
  --muted: #a59c8c;

  /* gradient gold — CTAs + the single hero accent phrase ONLY */
  --grad-gold: linear-gradient(105deg, #ffde7a 0%, #ffc629 42%, #e2a611 70%, #ffde7a 100%);

  /* type */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', monospace;

  /* motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.45, 0, 0.15, 1);

  --radius: 14px;
  --nav-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-loading,
body.menu-open { overflow: hidden; }

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* ------------------------------------------------------------
   PRELOADER
   ------------------------------------------------------------ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s var(--ease-soft), visibility 0s 0.7s;
}

.loader-inner { text-align: center; }

.loader-logo {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 22px;
  animation: loaderPulse 1.4s var(--ease-soft) infinite alternate;
}

@keyframes loaderPulse {
  from { opacity: 0.65; transform: scale(0.97); }
  to   { opacity: 1;    transform: scale(1); }
}

.loader-line {
  width: 148px;
  height: 1px;
  margin: 0 auto;
  background: var(--line);
  overflow: hidden;
}

.loader-line span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--grad-gold);
  transform: translateX(-100%);
  animation: loaderFill 1s var(--ease-soft) forwards;
}

@keyframes loaderFill {
  to { transform: translateX(0); }
}

body:not(.is-loading) .loader {
  transform: translateY(-100%);
  visibility: hidden;
}

/* ------------------------------------------------------------
   SCROLL PROGRESS
   ------------------------------------------------------------ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 100%;
  z-index: 150;
  background: var(--grad-gold);
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 100px;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}

.btn span { position: relative; z-index: 1; }

.btn-lg { padding: 17px 38px; font-size: 0.74rem; }

.btn-gold {
  background: var(--grad-gold);
  color: #181408;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* sheen sweep */
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-22deg);
  transition: left 0.6s var(--ease-soft);
}

.btn-gold:hover::after { left: 130%; }

.btn-ghost {
  border: 1px solid rgba(245, 240, 230, 0.28);
  color: var(--cream);
  background: rgba(245, 240, 230, 0.02);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--champagne);
  background: rgba(255, 198, 41, 0.06);
}

.btn-dark {
  background: var(--black);
  color: var(--champagne);
}

.btn-dark:hover { box-shadow: 0 14px 34px rgba(0,0,0,0.35); }

/* ------------------------------------------------------------
   NAV
   ------------------------------------------------------------ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}

/* keep nav (logo + burger) above the open mobile menu */
body.menu-open .nav {
  z-index: 130;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}

.nav.scrolled {
  background: rgba(11, 10, 8, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line-soft);
}

.nav-inner {
  width: min(1240px, 94vw);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.nav-logo img {
  height: 46px;
  width: 46px;
  object-fit: contain;
}

.nav-wordmark {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.nav-wordmark em {
  font-style: italic;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.72);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav-links a:hover { color: var(--champagne); }
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta { padding: 11px 24px; }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 44px; height: 44px;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 130;
}

.nav-burger span {
  display: block;
  width: 26px; height: 1.5px;
  margin: 0 auto;
  background: var(--cream);
  transition: transform 0.35s var(--ease-out), opacity 0.3s;
}

.nav-burger.open span:first-child { transform: translateY(4.25px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-4.25px) rotate(-45deg); }

/* ------------------------------------------------------------
   MOBILE MENU
   ------------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(11, 10, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: calc(var(--nav-h) + 24px) 8vw 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-soft), visibility 0s 0.45s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.45s var(--ease-soft);
}

.mobile-menu-links { display: flex; flex-direction: column; gap: 6px; }

.mobile-menu-links a {
  font-family: var(--serif);
  font-size: clamp(2rem, 9vw, 2.9rem);
  font-weight: 600;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.3s;
}

.mobile-menu.open .mobile-menu-links a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.06s + var(--i) * 0.06s);
}

.mobile-menu-links a:active { color: var(--champagne); }

.mobile-menu-book {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.mobile-menu-foot {
  font-size: 0.85rem;
  color: var(--muted);
  display: grid;
  gap: 4px;
}

.mobile-menu-social { display: flex; gap: 10px; margin-top: 8px; }
.mobile-menu-social a { color: var(--champagne); }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: -6% 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* cinematic grade: darker, denser, slightly muted — also hides photo compression */
  filter: brightness(0.68) contrast(1.1) saturate(0.88);
  transform: scale(1.12);
  animation: heroZoom 2.2s var(--ease-soft) 0.3s forwards;
}

@keyframes heroZoom {
  to { transform: scale(1.03); }
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    /* warm gold grade, top-left light */
    linear-gradient(160deg, rgba(255, 198, 41, 0.07) 0%, transparent 36%),
    /* main vertical scrim — heavier than before */
    linear-gradient(180deg, rgba(11,10,8,0.62) 0%, rgba(11,10,8,0.34) 36%, rgba(11,10,8,0.74) 68%, rgba(11,10,8,0.98) 100%),
    /* anchor behind the headline block */
    radial-gradient(130% 80% at 22% 72%, rgba(11,10,8,0.66) 0%, transparent 62%),
    /* edge vignette */
    radial-gradient(ellipse at 50% 42%, transparent 52%, rgba(0,0,0,0.42) 100%);
}

/* film grain — makes the photo feel graded, not compressed */
.hero-scrim::after {
  content: '';
  position: absolute;
  inset: 0;
  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='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.07;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding-bottom: clamp(96px, 16vh, 170px);
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 28px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.85), 0 2px 26px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.4rem, 9.6vw, 7.4rem);
  line-height: 1.0;
  letter-spacing: 0;
  margin-bottom: 28px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7), 0 8px 44px rgba(0, 0, 0, 0.55);
}

/* gradient-clipped text can't carry text-shadow — give the gold line its own glow */
.hero-title .gold-italic {
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.8)) drop-shadow(0 6px 34px rgba(0, 0, 0, 0.5));
}

.hero-title .gold-italic {
  font-style: italic;
  font-weight: 500;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 470px;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  color: #f5f0e6;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9), 0 3px 22px rgba(0, 0, 0, 0.65);
  margin-bottom: 42px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* masked line reveals */
.mask {
  display: block;
  overflow: hidden;
}

.mask > span {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}

body:not(.is-loading) .mask > span { transform: translateY(0); }
body:not(.is-loading) .hero-eyebrow.mask > span     { transition-delay: 0.15s; }
body:not(.is-loading) .hero-title .mask:nth-child(1) > span { transition-delay: 0.28s; }
body:not(.is-loading) .hero-title .mask:nth-child(2) > span { transition-delay: 0.4s; }
body:not(.is-loading) .hero-sub.mask > span         { transition-delay: 0.55s; }

.hero-actions {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s var(--ease-out) 0.72s, transform 0.9s var(--ease-out) 0.72s;
}

body:not(.is-loading) .hero-actions { opacity: 1; transform: translateY(0); }

.hero-foot {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  opacity: 0;
  transition: opacity 1s 1.4s;
}

body:not(.is-loading) .hero-foot { opacity: 1; }

.hero-foot p {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}

.hero-scrollcue {
  width: 1px;
  height: 44px;
  margin: 0 auto;
  background: var(--line-soft);
  overflow: hidden;
}

.hero-scrollcue span {
  display: block;
  width: 100%;
  height: 45%;
  background: var(--grad-gold);
  animation: scrollCue 2s var(--ease-soft) infinite;
}

@keyframes scrollCue {
  0%   { transform: translateY(-110%); }
  60%, 100% { transform: translateY(240%); }
}

/* ------------------------------------------------------------
   CREED BAND — the restrained framed promise (replaces marquee)
   ------------------------------------------------------------ */
.creed {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--coal);
}

.creed-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 30px 0;
  text-align: center;
}

.creed-mark {
  color: var(--gold);
  font-size: 0.72rem;
  flex-shrink: 0;
}

.creed-line {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(245, 240, 230, 0.88);
  text-wrap: balance;
}

.creed-line em {
  font-style: italic;
  color: var(--gold);
}

.creed-meta {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   SECTIONS — shared
   ------------------------------------------------------------ */
.section { padding: clamp(90px, 13vh, 150px) 0; }

.section-head {
  max-width: 640px;
  margin-bottom: clamp(48px, 7vw, 76px);
}

.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}

.section-sub {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 480px;
}

/* scroll reveals */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out) var(--d, 0s), transform 0.9s var(--ease-out) var(--d, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------------------------------------------------------
   STATS
   ------------------------------------------------------------ */
.stats {
  padding: clamp(60px, 8vw, 90px) 0;
  background: var(--coal);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  position: relative;
}

.stat:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  height: 58%;
  width: 1px;
  background: var(--line-soft);
}

.stat-num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 5.6vw, 4.2rem);
  line-height: 1;
  color: var(--cream);
}

.stat-num sup {
  font-size: 0.38em;
  font-weight: 500;
  vertical-align: super;
  color: var(--gold);
}

.stat-label {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ------------------------------------------------------------
   SERVICE MENU
   ------------------------------------------------------------ */
.menu-section { background: var(--black); }

.menu-table {
  border-top: 1px solid var(--line);
}

.menu-head {
  display: grid;
  grid-template-columns: 1fr 110px 110px;
  gap: 18px;
  padding: 18px 6px 14px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.menu-head .gold { color: var(--gold); }
.menu-head-price { text-align: right; }

.menu-row {
  display: grid;
  grid-template-columns: 1fr 110px 110px;
  gap: 18px;
  align-items: baseline;
  padding: 22px 6px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  transition: background 0.3s, padding-left 0.35s var(--ease-out);
}

.menu-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0;
  height: 100%;
  width: 2px;
  background: var(--grad-gold);
  transform: scaleY(0);
  transition: transform 0.35s var(--ease-out);
}

.menu-row:hover {
  background: rgba(255, 198, 41, 0.045);
  padding-left: 18px;
}

.menu-row:hover::before { transform: scaleY(1); }

.menu-name {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
}

.menu-name small {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.menu-price {
  text-align: right;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(245, 240, 230, 0.82);
  font-variant-numeric: tabular-nums;
}

.menu-price.gold {
  color: var(--gold);
}

.menu-note {
  margin-top: 26px;
  font-size: 0.85rem;
  color: var(--muted);
}

.menu-note a {
  color: var(--champagne);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s;
}

.menu-note a:hover { border-color: var(--gold); }

/* ------------------------------------------------------------
   ABOUT
   ------------------------------------------------------------ */
.about-section { background: var(--coal); }

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.about-media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  aspect-ratio: 4 / 5;
}

.about-media-frame img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.16);
}

.about-caption {
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-copy p:not(.section-eyebrow) {
  color: rgba(245, 240, 230, 0.78);
  margin-bottom: 18px;
  max-width: 460px;
}

.about-copy .section-title { margin-bottom: 26px; }

.about-copy strong { font-weight: 600; color: var(--champagne); }

.about-list {
  list-style: none;
  margin: 10px 0 34px;
  display: grid;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(245, 240, 230, 0.85);
}

.about-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

/* ------------------------------------------------------------
   TEAM
   ------------------------------------------------------------ */
.team-section { background: var(--black); overflow: hidden; }

.team-rail-wrap {
  width: min(1240px, 96vw);
  margin: 0 auto;
}

.team-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.barber-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 24px 28px;
  text-align: center;
  transition: transform 0.45s var(--ease-out), border-color 0.35s, box-shadow 0.45s;
}

.barber-card:hover {
  transform: translateY(-8px);
  border-color: var(--line);
  box-shadow: 0 26px 54px rgba(0,0,0,0.45);
}

.barber-card--owner {
  border-color: rgba(255, 198, 41, 0.42);
  background: var(--surface);
}

.barber-index {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(255, 198, 41, 0.5);
}

.barber-plate {
  width: 86px;
  height: 86px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 32% 28%, rgba(212,175,55,0.16), transparent 64%), var(--coal);
  transition: transform 0.45s var(--ease-out), border-color 0.3s;
}

.barber-card:hover .barber-plate {
  transform: scale(1.06) rotate(-3deg);
  border-color: var(--gold);
}

.barber-plate span {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 2.3rem;
  color: var(--gold);
}

.barber-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.barber-role {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
  min-height: 2.4em;
}

.barber-price {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
}

.barber-price strong {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--champagne);
  margin-left: 2px;
}

.barber-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champagne);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s, color 0.25s;
}

.barber-book span { transition: transform 0.3s var(--ease-out); }

.barber-book:hover { border-color: var(--gold); color: var(--gold); }
.barber-book:hover span { transform: translateX(4px); }

/* ------------------------------------------------------------
   GALLERY
   ------------------------------------------------------------ */
.gallery-section { background: var(--coal); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  border: 1px solid var(--line);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.55);
  transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 198, 41, 0.4);
  box-shadow: 0 26px 64px rgba(0,0,0,0.65);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: contrast(1.08) saturate(1.22) brightness(1.04);
  transition: transform 0.7s var(--ease-out);
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 48px 20px 16px;
  background: linear-gradient(transparent, rgba(11,10,8,0.85));
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--champagne);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s var(--ease-out);
}

.gallery-item:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-cta {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery-cta a {
  color: var(--champagne);
  border-bottom: 1px solid var(--line);
  transition: border-color 0.25s;
}

.gallery-cta a:hover { border-color: var(--gold); }

/* ------------------------------------------------------------
   REVIEWS
   ------------------------------------------------------------ */
.reviews-section { background: var(--black); }

.reviews-carousel {
  position: relative;
  max-width: 760px;
  min-height: 270px;
}

.review {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--ease-soft), transform 0.7s var(--ease-soft);
  pointer-events: none;
}

.review.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.3em;
  margin-bottom: 22px;
  font-size: 0.95rem;
}

.review p {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: rgba(245, 240, 230, 0.92);
  margin-bottom: 24px;
  text-wrap: balance;
}

.review footer {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.review-dots {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 10px;
}

.review-dots button {
  width: 26px;
  height: 2px;
  border: 0;
  background: var(--line-soft);
  cursor: pointer;
  transition: background 0.3s;
}

.review-dots button.is-active { background: var(--gold); }

/* ------------------------------------------------------------
   VISIT
   ------------------------------------------------------------ */
.visit-section { background: var(--coal); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: stretch;
}

.visit-card address {
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1.5;
  margin: 26px 0;
  color: var(--champagne);
}

.hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 34px;
}

.hours td {
  padding: 11px 4px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line-soft);
  color: rgba(245, 240, 230, 0.82);
}

.hours td:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.hours tr.closed td { color: var(--muted); }

.hours tr.today td {
  color: var(--champagne);
  font-weight: 500;
}

.hours tr.today td:first-child::after {
  content: '· today';
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.visit-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.9) brightness(0.9) sepia(0.18);
}

/* ------------------------------------------------------------
   CTA BAND
   ------------------------------------------------------------ */
.cta-band {
  background: var(--grad-gold);
  padding: clamp(70px, 10vw, 110px) 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  color: #181408;
  letter-spacing: 0;
}

.cta-band h2 em { font-style: italic; font-weight: 500; }

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--line-soft);
  padding: clamp(60px, 8vw, 90px) 0 30px;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  margin-bottom: 56px;
}

.footer-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.footer-label {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 0.9rem;
  color: rgba(245, 240, 230, 0.72);
  margin-bottom: 6px;
}

.footer-col a {
  transition: color 0.25s;
  border-bottom: 1px solid transparent;
}

.footer-col a:hover { color: var(--champagne); }

.footer-bar {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-bar a {
  color: var(--champagne);
  transition: color 0.25s;
}

.footer-bar a:hover { color: var(--gold); }

/* ------------------------------------------------------------
   MOBILE STICKY CTA
   ------------------------------------------------------------ */
.mobile-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 10px 10px 20px;
  border-radius: 100px;
  background: rgba(19, 17, 16, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55);
  transform: translateY(130%);
  opacity: 0;
  transition: transform 0.5s var(--ease-out), opacity 0.4s var(--ease-soft);
}

.mobile-cta.show {
  transform: translateY(0);
  opacity: 1;
}

.mobile-cta .btn { padding: 12px 24px; font-size: 0.72rem; }

.mobile-cta-status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(245, 240, 230, 0.85);
  white-space: nowrap;
}

.mobile-cta-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #58c472;
  box-shadow: 0 0 10px rgba(88, 196, 114, 0.8);
  animation: pulseDot 2s infinite;
}

.mobile-cta-dot.closed {
  background: var(--gold-deep);
  box-shadow: 0 0 10px rgba(226, 166, 17, 0.6);
  animation: none;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.7; }
}

/* ------------------------------------------------------------
   LIGHTBOX
   ------------------------------------------------------------ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 160;
  background: rgba(11, 10, 8, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0s 0.35s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.35s;
}

.lightbox figure {
  max-width: min(86vw, 760px);
  max-height: 84vh;
  transform: scale(0.96);
  transition: transform 0.4s var(--ease-out);
}

.lightbox.open figure { transform: scale(1); }

.lightbox img {
  max-width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
}

.lightbox figcaption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--champagne);
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  background: none;
  border: 1px solid var(--line);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(255, 198, 41, 0.08);
}

.lightbox-close { top: 24px; right: 24px; font-size: 1.5rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* ------------------------------------------------------------
   REDUCED MOTION
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
/* Mobile/tablet: stacked rows — all five barbers visible, no slider */
@media (max-width: 1024px) {
  .team-rail-wrap { width: min(640px, 92vw); }

  .team-rail {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .barber-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "plate name  book"
      "plate role  book"
      "plate price book";
    align-items: center;
    column-gap: 18px;
    text-align: left;
    padding: 18px 20px;
  }

  .barber-card:hover { transform: none; }

  .barber-index { display: none; }

  .barber-plate {
    grid-area: plate;
    width: 60px;
    height: 60px;
    margin: 0;
  }

  .barber-plate span { font-size: 1.5rem; }

  .barber-name {
    grid-area: name;
    font-size: 1.2rem;
    margin: 0;
    align-self: end;
  }

  .barber-role {
    grid-area: role;
    margin: 2px 0 0;
    min-height: 0;
  }

  .barber-price {
    grid-area: price;
    margin: 4px 0 0;
    font-size: 0.78rem;
    align-self: start;
  }

  .barber-price strong { font-size: 1.02rem; }

  .barber-book {
    grid-area: book;
    justify-self: end;
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .barber-book {
    font-size: 0;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .barber-book span { font-size: 1rem; }
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 520px; }

  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 320px; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  .cta-band-inner { justify-content: center; text-align: center; }
}

@media (max-width: 680px) {
  :root { --nav-h: 64px; }

  .nav-logo img { height: 40px; width: 40px; }
  .nav-wordmark { font-size: 0.92rem; }

  .hero-content { padding-bottom: 120px; }
  .hero-actions .btn { flex: 1 1 100%; justify-content: center; }

  /* phones: text sits over the busiest part of the photo — darken harder */
  .hero-media img { filter: brightness(0.6) contrast(1.1) saturate(0.85); }
  .hero-scrim {
    background:
      linear-gradient(160deg, rgba(255, 198, 41, 0.06) 0%, transparent 34%),
      linear-gradient(180deg, rgba(11,10,8,0.68) 0%, rgba(11,10,8,0.46) 34%, rgba(11,10,8,0.82) 66%, rgba(11,10,8,0.99) 100%),
      radial-gradient(ellipse at 50% 40%, transparent 46%, rgba(0,0,0,0.5) 100%);
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 12px;
  }
  .stat:nth-child(3)::before { display: none; }

  .menu-head { display: none; }
  .menu-row {
    grid-template-columns: 1fr auto;
    grid-template-areas: "name price" "name gold";
    row-gap: 2px;
  }
  .menu-row .menu-name { grid-area: name; padding-right: 12px; }
  .menu-row .menu-price:not(.gold) { grid-area: price; }
  .menu-row .menu-price.gold { grid-area: gold; font-size: 0.92rem; }
  .menu-row .menu-price.gold::before {
    content: 'w/ Ricky ';
    font-family: var(--sans);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    -webkit-text-fill-color: var(--muted);
  }

  .gallery-grid { gap: 10px; }

  /* creed band: stack calmly, drop the redundant location tag */
  .creed-inner { flex-direction: column; gap: 14px; padding: 26px 0; }
  .creed-meta { display: none; }

  .reviews-carousel { min-height: 330px; }

  .mobile-cta { display: flex; }

  .footer-bar { justify-content: center; text-align: center; }

  .lightbox-arrow { display: none; }
}
