/* ============================================================
   BAAS BARBERS — Kova showroomdemo
   Dark, premium barbershop design system
   ============================================================ */

:root {
  /* Core palette */
  --ink: #0d0c0f;          /* near-black background */
  --ink-2: #141217;        /* raised surface */
  --ink-3: #1c1922;        /* cards */
  --ink-4: #322a35;        /* hover / borders */
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);

  --paper: #f5f0e8;        /* warm white text */
  --muted: #b5ad9f;        /* muted text */
  --muted-2: #726b62;

  --brass: #c8a24b;        /* primary accent — brass/gold */
  --brass-2: #e0c073;      /* light brass */
  --brass-deep: #9a7a2f;
  --oxblood: #7c2f2f;      /* barber red-brown */
  --barber-red: #b23b3b;
  --barber-blue: #2f5b8c;

  /* Type */
  --display: "Bebas Neue", "Oswald", sans-serif;
  --head: "Oswald", "Inter", sans-serif;
  --body: "Inter", system-ui, sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.7);
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Spacing baseline — consistent 8px-multiple scale used for
     section rhythm, grid gaps and structural gutters. */
  --sp-1: 16px;
  --sp-2: 24px;
  --sp-3: 32px;
  --sp-4: 48px;
  --sp-5: 64px;
  --sp-6: 96px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle film-grain texture over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ============================================================
   BRAND PHOTO GRADE
   Consistent duotone/grading treatment applied to all photographic
   imagery (hero, cta, team, gallery) so stock photography reads as
   one art-directed, brand-tinted set rather than random stock.
   ============================================================ */
.photo-grade {
  filter: grayscale(0.55) sepia(0.22) saturate(1.35) brightness(0.92) contrast(1.08) hue-rotate(-6deg);
}

h1, h2, h3, h4 { margin: 0; font-weight: 500; line-height: 1.05; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 600;
  color: var(--brass);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--brass);
  opacity: 0.7;
}

.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}

.h-xl { font-size: clamp(3.2rem, 9vw, 7rem); }
.h-lg { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.h-md { font-size: clamp(2rem, 4vw, 3rem); }

h2.section-title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

.lede { color: var(--muted); font-size: 1.05rem; max-width: 56ch; }

.section { padding: clamp(var(--sp-5), 11vw, 144px) 0; position: relative; }
.section.tight { padding: clamp(var(--sp-4), 8vw, var(--sp-6)) 0; }
.section-heading { max-width: 640px; margin-bottom: var(--sp-6); }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); margin: 18px 0 0; }

/* ---------- Barber pole motif divider ---------- */
.pole-strip {
  height: 6px;
  background: repeating-linear-gradient(
    45deg,
    var(--barber-red) 0 14px,
    var(--paper) 14px 28px,
    var(--barber-blue) 28px 42px,
    var(--paper) 42px 56px
  );
  opacity: 0.9;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  font-size: 13px;
  padding: 16px 30px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn.primary {
  background: var(--brass);
  color: #1a1408;
  border-color: var(--brass);
}
.btn.primary:hover { background: var(--brass-2); border-color: var(--brass-2); }

.btn.ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-strong);
}
.btn.ghost:hover { border-color: var(--brass); color: var(--brass-2); }

.btn.dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--line-strong);
}
.btn.dark:hover { background: #000; border-color: var(--brass); }

.btn.block { width: 100%; justify-content: center; }
.btn.lg { padding: 19px 38px; font-size: 14px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 48px);
  transition: background 0.35s, padding 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 10, 13, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 26px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.brand .mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  border: 1.5px solid var(--brass);
  color: var(--brass);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 17px;
  flex: none;
}
.brand small {
  display: block;
  font-family: var(--head);
  font-size: 8.5px;
  letter-spacing: 0.42em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: auto;
}
.nav a {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--brass);
  transition: width 0.28s var(--ease);
}
.nav a:hover, .nav a.active { color: var(--paper); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-family: var(--head);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-phone:hover { color: var(--brass-2); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  z-index: 1200;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 140px clamp(20px, 4vw, 48px) clamp(48px, 7vw, 90px);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 18s ease-out forwards;
  filter: grayscale(0.55) sepia(0.22) saturate(1.35) brightness(0.92) contrast(1.08) hue-rotate(-6deg);
}
@keyframes heroZoom { to { transform: scale(1.14); } }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,10,13,0.55) 0%, rgba(11,10,13,0.2) 35%, rgba(11,10,13,0.86) 82%, var(--ink) 100%),
    radial-gradient(120% 80% at 15% 100%, rgba(11,10,13,0.75), transparent 60%);
}
.hero-inner { width: 100%; max-width: var(--maxw); margin: 0 auto; }
.hero .eyebrow { color: var(--brass-2); }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.8rem, 13vw, 11rem);
  text-transform: uppercase;
  line-height: 0.86;
  letter-spacing: 0.01em;
  margin: 0 0 24px;
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--brass-2);
}
.hero-sub { font-size: 1.15rem; color: var(--paper); max-width: 48ch; opacity: 0.9; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.hero-meta {
  position: absolute;
  right: clamp(20px, 4vw, 48px);
  bottom: clamp(48px, 7vw, 90px);
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}
.hero-meta .rating { display: flex; align-items: center; gap: 10px; font-family: var(--head); letter-spacing: 0.08em; font-size: 14px; }
.hero-meta .stars { color: var(--brass); letter-spacing: 2px; }
.hero-scroll {
  font-family: var(--head);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero-scroll::after { content: ""; width: 1px; height: 46px; background: linear-gradient(var(--brass), transparent); }

/* ============================================================
   MARQUEE / TRUST BAR
   ============================================================ */
.marquee {
  background: var(--brass);
  color: #1a1408;
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid rgba(0,0,0,0.15);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  animation: marquee 84s linear infinite;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 14px;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
.marquee-track span::after { content: "✂"; opacity: 0.5; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   INTRO / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); width: 100%; object-fit: cover; box-shadow: var(--shadow); filter: grayscale(0.55) sepia(0.22) saturate(1.35) brightness(0.92) contrast(1.08) hue-rotate(-6deg); }
.split-media .stamp {
  position: absolute;
  bottom: -26px; right: -18px;
  width: 128px; height: 128px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 2px solid var(--brass);
  outline: 1px solid rgba(200, 162, 75, 0.35);
  outline-offset: 4px;
  color: var(--brass-2);
  display: grid; place-items: center;
  text-align: center;
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  line-height: 1.4;
  box-shadow: var(--shadow);
}
.split-media .stamp b { display: block; font-family: var(--display); font-size: 30px; color: var(--paper); letter-spacing: 0.02em; }
.split-body h2 { margin-bottom: 22px; }
.split-body p { color: var(--muted); margin: 0 0 18px; }
.split-body .signature { font-family: var(--display); font-size: 30px; color: var(--brass-2); margin-top: 8px; letter-spacing: 0.04em; }

.stat-row { display: flex; gap: var(--sp-4); flex-wrap: wrap; margin-top: var(--sp-3); }
.stat b { font-family: var(--display); font-size: 46px; color: var(--paper); display: block; line-height: 1; }
.stat span { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.12em; font-size: 11px; color: var(--muted); }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.svc-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.svc-card {
  position: relative;
  background: var(--ink-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 34px 30px 30px;
  overflow: hidden;
  box-shadow: 0 14px 34px -18px rgba(0, 0, 0, 0.75);
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
}
.svc-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brass);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); border-color: rgba(200,162,75,0.45); background: var(--ink-4); box-shadow: var(--shadow); }
.svc-card:hover::before { transform: scaleY(1); }
.svc-num { font-family: var(--display); font-size: 15px; color: var(--brass); letter-spacing: 0.1em; margin-bottom: 20px; }
.svc-icon { font-size: 30px; margin-bottom: 16px; line-height: 1; }
.svc-card h3 { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.35rem; margin-bottom: 12px; }
.svc-card p { color: var(--muted); font-size: 0.96rem; margin: 0 0 24px; flex: 1; }
.svc-foot { display: flex; align-items: baseline; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 16px; }
.svc-price { font-family: var(--display); font-size: 30px; color: var(--brass-2); letter-spacing: 0.02em; }
.svc-dur { font-family: var(--head); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.svc-book { font-family: var(--head); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brass); opacity: 0; transform: translateY(6px); transition: opacity 0.3s, transform 0.3s; }
.svc-card:hover .svc-book { opacity: 1; transform: translateY(0); }

/* Price list (services page) */
.pricelist { display: grid; gap: 0; }
.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s var(--ease), background 0.3s;
}
.price-row:hover { background: rgba(200,162,75,0.04); padding-left: 16px; }
.price-row .pname { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.1rem; }
.price-row .pdots { border-bottom: 1px dotted var(--line-strong); transform: translateY(-5px); }
.price-row .pdesc { display: block; font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: 0.9rem; color: var(--muted); margin-top: 4px; }
.price-row .pprice { font-family: var(--display); font-size: 26px; color: var(--brass-2); white-space: nowrap; }
.price-row .pprice small { font-size: 13px; color: var(--muted); font-family: var(--head); }

/* ============================================================
   WHY / FEATURE GRID
   ============================================================ */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; background: var(--ink); border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 44px -24px rgba(0, 0, 0, 0.8); }
.feature {
  background: var(--ink-2);
  padding: var(--sp-4) 34px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: background 0.4s, box-shadow 0.4s;
}
.feature:hover { background: var(--ink-3); box-shadow: inset 0 0 0 1px rgba(200, 162, 75, 0.2); }
.feature .fnum { font-family: var(--display); font-size: 14px; color: var(--brass); letter-spacing: 0.14em; }
.feature h3 { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.2rem; margin: 18px 0 12px; }
.feature p { color: var(--muted); font-size: 0.95rem; margin: 0; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.barber {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink-3);
}
.barber img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), filter 0.5s; filter: grayscale(0.55) sepia(0.22) saturate(1.35) brightness(0.92) contrast(1.08) hue-rotate(-6deg); }
.barber:hover img { transform: scale(1.06); filter: grayscale(0.15) sepia(0.1) saturate(1.15) brightness(1) contrast(1.04) hue-rotate(-3deg); }
.barber::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(11,10,13,0.92) 100%); }
.barber-info { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px; z-index: 2; }
.barber-info .role { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px; color: var(--brass); margin-bottom: 6px; }
.barber-info h3 { font-family: var(--display); font-size: 2rem; letter-spacing: 0.03em; }
.barber-info .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height 0.5s var(--ease), opacity 0.4s, margin 0.4s; }
.barber:hover .barber-info .tags { max-height: 60px; opacity: 1; }
.barber-info .tags span { font-family: var(--head); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--paper); border: 1px solid var(--line-strong); border-radius: 999px; padding: 5px 11px; }
.barber-book { position: absolute; top: 18px; right: 18px; z-index: 3; width: 42px; height: 42px; border-radius: 50%; background: var(--brass); color: #1a1408; display: grid; place-items: center; font-size: 18px; opacity: 0; transform: scale(0.6); transition: opacity 0.3s, transform 0.3s var(--ease); }
.barber:hover .barber-book { opacity: 1; transform: scale(1); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-filter { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.gallery-filter button {
  font-family: var(--head);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s;
}
.gallery-filter button:hover { color: var(--paper); border-color: var(--paper); }
.gallery-filter button.active { background: var(--brass); border-color: var(--brass); color: #1a1408; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; grid-auto-flow: dense; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  grid-column: span 4;
  aspect-ratio: 1 / 1;
  background: var(--ink-3);
}
.gallery-item.wide { grid-column: span 6; aspect-ratio: 3 / 2; }
.gallery-item.tall { grid-column: span 4; aspect-ratio: 3 / 4; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease), filter 0.5s; filter: grayscale(0.55) sepia(0.22) saturate(1.35) brightness(0.92) contrast(1.08) hue-rotate(-6deg); }
.gallery-item:hover img { filter: grayscale(0.25) sepia(0.12) saturate(1.2) brightness(0.98) contrast(1.05) hue-rotate(-4deg); }
.gallery-item::after { content: "↗"; position: absolute; top: 14px; right: 16px; color: var(--paper); font-size: 20px; opacity: 0; transform: translateY(-6px); transition: opacity 0.3s, transform 0.3s; z-index: 2; }
.gallery-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,10,13,0.4), transparent 40%); opacity: 0; transition: opacity 0.3s; z-index: 1; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after, .gallery-item:hover::before { opacity: 1; transform: translateY(0); }
.gallery-item.hide { display: none; }
.gallery-tag { position: absolute; left: 14px; bottom: 14px; z-index: 2; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; color: var(--paper); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover .gallery-tag { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(6,5,8,0.94);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s;
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: min(92vw, 1000px); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox .lb-close { position: absolute; top: 26px; right: 32px; background: none; border: 0; color: var(--paper); font-size: 34px; cursor: pointer; line-height: 1; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.08); border: 1px solid var(--line-strong); color: var(--paper); width: 54px; height: 54px; border-radius: 50%; font-size: 22px; cursor: pointer; transition: background 0.2s; }
.lightbox .lb-nav:hover { background: var(--brass); color: #1a1408; }
.lightbox .lb-prev { left: 26px; }
.lightbox .lb-next { right: 26px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.review {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  position: relative;
}
.review .quote-mark { font-family: var(--display); font-size: 70px; color: var(--brass); opacity: 0.25; line-height: 0.5; position: absolute; top: 26px; right: 24px; }
.review .stars { color: var(--brass); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.review p { font-size: 1.05rem; margin: 0 0 22px; }
.review .who { display: flex; align-items: center; gap: 14px; }
.review .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--ink-4); display: grid; place-items: center; font-family: var(--display); font-size: 20px; color: var(--brass-2); flex: none; }
.review .who b { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 14px; display: block; }
.review .who span { font-size: 12px; color: var(--muted); }

/* ============================================================
   MEMBERSHIP / PRICING PLANS
   ============================================================ */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.plan {
  background: var(--ink-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}
.plan:hover { transform: translateY(-6px); }
.plan.featured { border-color: var(--brass); background: linear-gradient(180deg, rgba(200,162,75,0.08), var(--ink-3) 60%); }
.plan .badge { align-self: flex-start; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.14em; font-size: 10px; color: #1a1408; background: var(--brass); padding: 5px 12px; border-radius: 999px; margin-bottom: 18px; }
.plan h3 { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.05em; font-size: 1.3rem; margin-bottom: 8px; }
.plan .price { font-family: var(--display); font-size: 58px; color: var(--paper); line-height: 1; margin: 12px 0; }
.plan .price small { font-family: var(--head); font-size: 14px; color: var(--muted); letter-spacing: 0.06em; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 30px; display: grid; gap: 12px; flex: 1; }
.plan li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.95rem; }
.plan li::before { content: "✓"; color: var(--brass); font-weight: 700; flex: none; }

/* ============================================================
   HOURS / CONTACT
   ============================================================ */
.hours-table { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 16px 22px; border-bottom: 1px solid var(--line); font-family: var(--head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 14px; }
.hours-row:last-child { border-bottom: 0; }
.hours-row.today { background: rgba(200,162,75,0.08); color: var(--paper); }
.hours-row .day { color: var(--muted); }
.hours-row.today .day { color: var(--brass-2); }
.hours-row .closed { color: var(--muted-2); }
.open-badge { display: inline-flex; align-items: center; gap: 9px; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line-strong); }
.open-badge .dot { width: 9px; height: 9px; border-radius: 50%; }
.open-badge.open { color: #7bd88f; border-color: rgba(123,216,143,0.4); }
.open-badge.open .dot { background: #7bd88f; box-shadow: 0 0 0 0 rgba(123,216,143,0.6); animation: pulse 2s infinite; }
.open-badge.closed { color: #e08a8a; border-color: rgba(224,138,138,0.4); }
.open-badge.closed .dot { background: #e08a8a; }
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(123,216,143,0); } 100% { box-shadow: 0 0 0 0 rgba(123,216,143,0); } }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); align-items: start; }
.contact-cards { display: grid; gap: 16px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; }
.contact-card .ci { font-size: 22px; width: 46px; height: 46px; border-radius: 50%; background: var(--ink); display: grid; place-items: center; flex: none; border: 1px solid var(--line); }
.contact-card h4 { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.contact-card p, .contact-card a { margin: 0; font-size: 1.05rem; }
.contact-card a:hover { color: var(--brass-2); }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); filter: grayscale(0.4) contrast(1.05) brightness(0.85); }
.map-embed iframe { display: block; width: 100%; height: 100%; min-height: 340px; border: 0; }

/* ============================================================
   FORMS
   ============================================================ */
.field { display: block; margin-bottom: 18px; }
.field > span { display: block; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  color: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  padding: 14px 16px;
  transition: border-color 0.25s, background 0.25s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); background: var(--ink-2); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--muted-2); margin-top: 10px; }

/* ============================================================
   BOOKING WIDGET (functional, multi-step)
   ============================================================ */
.booking-shell { max-width: 860px; margin: 0 auto; background: var(--ink-3); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.booking-progress { display: flex; border-bottom: 1px solid var(--line); background: var(--ink-2); }
.booking-progress .step { flex: 1; padding: 18px 10px; text-align: center; font-family: var(--head); text-transform: uppercase; letter-spacing: 0.1em; font-size: 11px; color: var(--muted-2); position: relative; transition: color 0.3s; }
.booking-progress .step .n { display: inline-grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line-strong); margin-right: 8px; font-size: 12px; transition: all 0.3s; }
.booking-progress .step.active { color: var(--paper); }
.booking-progress .step.active .n { background: var(--brass); border-color: var(--brass); color: #1a1408; }
.booking-progress .step.done .n { background: var(--brass-deep); border-color: var(--brass-deep); color: var(--paper); }
.booking-body { padding: clamp(26px, 4vw, 44px); }
.booking-step { display: none; animation: fadeStep 0.4s var(--ease); }
.booking-step.active { display: block; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.booking-step h3 { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.04em; font-size: 1.4rem; margin-bottom: 6px; }
.booking-step > p.hint { color: var(--muted); margin: 0 0 26px; font-size: 0.95rem; }

.choice-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.choice {
  display: flex; align-items: center; gap: 14px;
  text-align: left;
  background: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 16px 18px;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  font-family: inherit;
  color: var(--paper);
  width: 100%;
}
.choice:hover { border-color: var(--brass); transform: translateY(-2px); }
.choice.selected { border-color: var(--brass); background: rgba(200,162,75,0.1); }
.choice .ci { font-size: 24px; flex: none; }
.choice .ctxt { flex: 1; }
.choice .ctxt b { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.03em; font-size: 1rem; display: block; }
.choice .ctxt small { color: var(--muted); font-size: 0.85rem; }
.choice .cprice { font-family: var(--display); font-size: 22px; color: var(--brass-2); }
.choice .cav { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex: none; }
.choice .cav.placeholder { display: grid; place-items: center; background: var(--ink-4); color: var(--brass-2); font-family: var(--display); font-size: 20px; }

.date-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 12px; margin-bottom: 24px; scrollbar-width: thin; }
.date-pill { flex: none; width: 74px; text-align: center; background: var(--ink); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 12px 6px; cursor: pointer; transition: all 0.25s; }
.date-pill:hover { border-color: var(--brass); }
.date-pill.selected { background: var(--brass); border-color: var(--brass); color: #1a1408; }
.date-pill.disabled { opacity: 0.3; pointer-events: none; }
.date-pill .dow { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.08em; font-size: 10px; display: block; }
.date-pill .dnum { font-family: var(--display); font-size: 26px; line-height: 1.1; }
.date-pill .dmon { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); display: block; }
.date-pill.selected .dmon { color: #1a1408; }

.slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(86px, 1fr)); gap: 10px; }
.slot { font-family: var(--head); letter-spacing: 0.04em; background: var(--ink); border: 1px solid var(--line-strong); border-radius: var(--radius); padding: 12px 6px; cursor: pointer; text-align: center; transition: all 0.22s; color: var(--paper); }
.slot:hover { border-color: var(--brass); }
.slot.selected { background: var(--brass); border-color: var(--brass); color: #1a1408; }
.slot.taken { opacity: 0.28; text-decoration: line-through; pointer-events: none; }

.booking-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 32px; }
.booking-nav .btn.text { background: none; border: 0; color: var(--muted); padding-left: 0; }
.booking-nav .btn.text:hover { color: var(--paper); }
.booking-summary { background: var(--ink); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; margin-bottom: 24px; }
.booking-summary .srow { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.booking-summary .srow:last-child { border-bottom: 0; }
.booking-summary .srow span { color: var(--muted); font-family: var(--head); text-transform: uppercase; letter-spacing: 0.06em; font-size: 12px; }
.booking-summary .srow b { text-align: right; }
.booking-summary .total { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line-strong); }
.booking-summary .total b { font-family: var(--display); font-size: 24px; color: var(--brass-2); }

.confirm-hero { text-align: center; padding: 20px 0 10px; }
.confirm-hero .tick { width: 84px; height: 84px; border-radius: 50%; background: rgba(123,216,143,0.12); border: 1px solid rgba(123,216,143,0.5); color: #7bd88f; display: grid; place-items: center; font-size: 42px; margin: 0 auto 24px; animation: pop 0.5s var(--ease); }
@keyframes pop { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.confirm-hero h3 { font-family: var(--display); font-size: 2.4rem; letter-spacing: 0.03em; margin-bottom: 8px; }
.confirm-hero p { color: var(--muted); }
.confirm-ref { display: inline-block; font-family: var(--head); letter-spacing: 0.2em; font-size: 20px; color: var(--brass-2); border: 1px dashed var(--brass); border-radius: var(--radius); padding: 12px 22px; margin: 20px 0; }

.field-error { border-color: var(--barber-red) !important; }
.err-msg { color: #e08a8a; font-size: 12px; margin-top: 6px; display: none; }
.err-msg.show { display: block; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--paper); font-family: var(--head); text-transform: uppercase; letter-spacing: 0.03em; font-size: 1.15rem; padding: 24px 40px 24px 0; cursor: pointer; position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 26px; color: var(--brass); transition: transform 0.3s; font-family: var(--body); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { color: var(--muted); margin: 0 0 24px; padding-right: 40px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; padding: clamp(70px, 10vw, 130px) 0; text-align: center; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; filter: grayscale(0.55) sepia(0.22) saturate(1.35) brightness(0.92) contrast(1.08) hue-rotate(-6deg); }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(11,10,13,0.82), rgba(11,10,13,0.92)); }
.cta-band h2 { font-family: var(--display); font-size: clamp(2.6rem, 7vw, 5rem); text-transform: uppercase; line-height: 0.92; margin-bottom: 20px; }
.cta-band p { color: var(--muted); max-width: 50ch; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #0a090c; border-top: 1px solid var(--line); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--sp-4); padding-bottom: var(--sp-6); }
.footer-brand p { color: var(--muted); font-size: 0.95rem; max-width: 34ch; margin: 18px 0 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--muted); transition: all 0.25s; font-size: 15px; }
.footer-social a:hover { background: var(--brass); color: #1a1408; border-color: var(--brass); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--head); text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px; color: var(--brass); margin-bottom: 20px; }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 0.95rem; margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { border-top: 1px solid var(--line); padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--muted-2); }
.footer-bottom a:hover { color: var(--brass-2); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%; background: var(--brass); color: #1a1408; border: 0; font-size: 20px; cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s var(--ease); z-index: 900; box-shadow: var(--shadow); }
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--brass-2); transform: translateY(-3px); }

.mobile-book-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 950; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: rgba(11,10,13,0.92); backdrop-filter: blur(12px); border-top: 1px solid var(--line); display: none; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { animation: none; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-media .stamp { width: 100px; height: 100px; right: 12px; }
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
  .gallery-item, .gallery-item.wide, .gallery-item.tall { grid-column: span 6; aspect-ratio: 1/1; }
  .svc-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: var(--sp-2);
    background: rgba(9, 8, 11, 0.97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    margin: 0;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav a { font-size: 22px; color: var(--paper); }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header-phone { display: none; }
  .site-header .header-cta { display: none; }
  .hero-meta { display: none; }
  .hero { align-items: center; }
  .hero-actions .btn { flex: 1; justify-content: center; }
  .stat-row { gap: var(--sp-2); }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item, .gallery-item.wide, .gallery-item.tall { grid-column: auto; }
  .svc-grid.cols-4 { grid-template-columns: 1fr; }
  .booking-progress .step span.lbl { display: none; }
  .booking-progress .step .n { margin-right: 0; }
  .mobile-book-bar { display: block; }
  body { padding-bottom: 72px; }
  .to-top { bottom: 84px; }
  .split-media .stamp { display: none; }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
