@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ─────────────────────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────────────────────── */
:root {
  color-scheme: dark;
  --ink:         #070605;
  --ink-2:       #0d0b09;
  --charcoal:    #141210;
  --panel:       #1c1814;
  --panel-2:     #231f1a;
  --ivory:       #f5ecdf;
  --muted:       #b0a08e;
  --muted-2:     #6e6256;
  --line:        rgba(245,236,223,0.08);
  --line-2:      rgba(245,236,223,0.16);
  --gold:        #c49140;
  --gold-b:      #deb96c;
  --gold-dim:    rgba(196,145,64,0.14);
  --white:       #fdf8ef;
  --shadow-sm:   0 4px 20px rgba(0,0,0,0.35);
  --shadow:      0 24px 80px rgba(0,0,0,0.55);
  --shadow-lg:   0 48px 120px rgba(0,0,0,0.65);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

/* ─────────────────────────────────────────────────────────────
   RESET + BASE
───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4,p { margin-top: 0; }

.serif {
  font-family: 'Cormorant Garamond', Georgia, serif;
  letter-spacing: -0.02em;
}

.eyebrow {
  color: var(--gold-b);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   REVEAL ANIMATIONS
───────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.07s; }
.d2 { transition-delay: 0.15s; }
.d3 { transition-delay: 0.23s; }
.d4 { transition-delay: 0.31s; }

@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────────────────────
   HEADER
───────────────────────────────────────────────────────────── */
.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  left: 0; right: 0; top: 0;
  padding: 20px clamp(20px, 5vw, 72px);
  position: fixed;
  z-index: 100;
  transition: background 320ms, border-color 320ms, backdrop-filter 320ms;
  border-bottom: 1px solid transparent;
}

.site-header[data-scrolled="true"] {
  background: rgba(7,6,5,0.88);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-color: var(--line);
}

.header-logo img { height: 38px; width: auto; }

.header-nav {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
}

.header-nav a {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 200ms;
}
.header-nav a:hover { color: var(--white); }

.header-cta {
  align-items: center;
  background: var(--gold);
  color: #0a0706 !important;
  display: flex;
  font-size: 0.7rem;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.14em;
  overflow: hidden;
  padding: 0 22px;
  position: relative;
  text-transform: uppercase;
  transition: background 200ms, transform 200ms, box-shadow 200ms;
}
.header-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 500ms;
}
.header-cta:hover::after { transform: translateX(100%); }
.header-cta:hover {
  background: var(--gold-b);
  box-shadow: 0 8px 28px rgba(196,145,64,0.4);
  transform: translateY(-1px);
}

/* ─────────────────────────────────────────────────────────────
   HERO — TRUE 50/50 SPLIT
───────────────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100svh;
}

.hero-left {
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px clamp(28px, 6vw, 88px) 72px;
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero-logo {
  max-width: min(380px, 72%);
  margin: 0 0 44px;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s 0.2s ease forwards;
}

.hero-eyebrow {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.7s 0.38s ease forwards;
}

.hero-h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 5.5vw, 6.4rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 640px;
  opacity: 0;
  transform: translateY(22px);
  animation: fadeUp 0.95s 0.52s ease forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-b);
}

.hero-copy {
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 300;
  line-height: 1.78;
  max-width: 500px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s 0.68s ease forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.75s 0.86s ease forwards;
}

.hero-badge {
  align-items: center;
  border-top: 1px solid var(--line-2);
  display: flex;
  gap: 22px;
  margin-top: 52px;
  padding-top: 28px;
  opacity: 0;
  transform: translateY(8px);
  animation: fadeUp 0.7s 1.05s ease forwards;
}

.hero-badge-item {
  display: grid;
  gap: 2px;
}

.hero-badge-item strong {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.hero-badge-item span {
  color: var(--muted-2);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-badge-divider {
  background: var(--line-2);
  height: 40px;
  width: 1px;
}

.hero-right {
  overflow: hidden;
  position: relative;
}

.hero-right img {
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
  transform: scale(1.06);
  transition: transform 9s cubic-bezier(0.25,0.46,0.45,0.94);
}

.hero-right img.loaded { transform: scale(1); }

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,6,5,0.45) 0%, transparent 60%);
  z-index: 1;
}

/* ─────────────────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────────────────── */
.btn {
  align-items: center;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 52px;
  overflow: hidden;
  padding: 0 28px;
  position: relative;
  text-transform: uppercase;
  transition: transform 200ms, background 200ms, box-shadow 200ms, color 200ms, border-color 200ms;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-110%);
  transition: transform 550ms;
}
.btn:hover::after { transform: translateX(110%); }
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: #0a0706;
  box-shadow: 0 6px 28px rgba(196,145,64,0.25);
}
.btn-gold:hover {
  background: var(--gold-b);
  box-shadow: 0 12px 40px rgba(196,145,64,0.44);
}

.btn-outline {
  border: 1px solid var(--line-2);
  color: var(--ivory);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-b);
}

.btn-full { width: 100%; }

/* ─────────────────────────────────────────────────────────────
   TICKER
───────────────────────────────────────────────────────────── */
.ticker {
  background: var(--gold);
  overflow: hidden;
  padding: 13px 0;
}
.ticker-track {
  animation: tickerScroll 30s linear infinite;
  display: flex;
  white-space: nowrap;
}
.ticker span {
  color: #0a0706;
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  padding: 0 22px;
  text-transform: uppercase;
}
.ticker .sep { color: rgba(0,0,0,0.28); }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────────
   SECTION WRAPPER
───────────────────────────────────────────────────────────── */
.section {
  padding: clamp(80px, 10vw, 148px) clamp(20px, 5.5vw, 88px);
}

.section-head {
  margin-bottom: clamp(44px, 6vw, 72px);
}

.section-head h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 5.6rem);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.022em;
  margin-bottom: 0;
  max-width: 840px;
}

/* ─────────────────────────────────────────────────────────────
   BARBERS
───────────────────────────────────────────────────────────── */
.barbers { background: var(--ink-2); }

.barber-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--line);
}

.barber-card {
  background: var(--charcoal);
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  transition: background 300ms;
}

.barber-card:hover { background: var(--panel); }

.barber-photo {
  overflow: hidden;
  position: relative;
}

.barber-photo img {
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  transition: transform 600ms ease;
}

.barber-card:hover .barber-photo img { transform: scale(1.05); }

.barber-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 36px;
}

.barber-num {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.5;
}

.barber-info h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.barber-specialty {
  color: var(--gold-b);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.barber-info p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.72;
  margin-bottom: 28px;
  max-width: 340px;
}

/* ─────────────────────────────────────────────────────────────
   SERVICES + PRICING
───────────────────────────────────────────────────────────── */
.services { background: var(--ink); }

.service-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
}

.service-card {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 36px 28px 32px;
  position: relative;
  transition: background 300ms;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-b));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms ease;
}

.service-card:hover { background: var(--panel); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 28px;
  opacity: 0.55;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-price {
  align-items: baseline;
  border-top: 1px solid var(--line-2);
  display: flex;
  gap: 8px;
  padding-top: 20px;
}

.service-price strong {
  color: var(--gold-b);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.service-price span {
  color: var(--muted-2);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   EXPERIENCE BAND (parallax split)
───────────────────────────────────────────────────────────── */
.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.experience-image {
  overflow: hidden;
  position: relative;
}

.experience-image img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  transition: transform 8s ease;
}

.experience-image:hover img { transform: scale(1.04); }

.experience-copy {
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 112px);
}

.experience-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.022em;
  margin-bottom: 24px;
  max-width: 520px;
}

.experience-copy h2 em {
  font-style: italic;
  color: var(--gold-b);
}

.experience-copy p {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.78;
  max-width: 460px;
  margin-bottom: 44px;
}

.stats-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.stat {
  display: grid;
  gap: 4px;
}

.stat strong {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
}

.stat span {
  color: var(--muted-2);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   GALLERY
───────────────────────────────────────────────────────────── */
.gallery { background: var(--ink-2); padding-bottom: 0; }

.gallery-grid {
  display: grid;
  gap: 2px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 380px 380px;
  margin-top: clamp(44px, 6vw, 72px);
}

.gallery-item {
  overflow: hidden;
  position: relative;
}

.gallery-item:first-child {
  grid-row: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: transform 600ms ease;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(7,6,5,0);
  transition: background 300ms;
}

.gallery-item:hover::after { background: rgba(7,6,5,0.3); }

/* ─────────────────────────────────────────────────────────────
   WALK-IN PROCESS
───────────────────────────────────────────────────────────── */
.walkin {
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.walkin-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
  margin-bottom: 56px;
}

.walkin-step {
  background: var(--charcoal);
  padding: 40px 28px 36px;
  position: relative;
  transition: background 300ms;
}

.walkin-step:hover { background: var(--panel); }

.walkin-step::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-b));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms ease;
}

.walkin-step:hover::after { transform: scaleX(1); }

.walkin-num {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.55;
}

.walkin-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.walkin-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.72;
  margin: 0;
}

.walkin-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─────────────────────────────────────────────────────────────
   FAQ
───────────────────────────────────────────────────────────── */
.faq { background: var(--ink); }

.faq-inner {
  display: grid;
  gap: clamp(48px, 7vw, 100px);
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: start;
}

.faq-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.022em;
  margin-bottom: 16px;
}

.faq-head p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
  max-width: 320px;
}

.faq-list {
  display: grid;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--line-2);
}

.faq-item:first-child {
  border-top: 1px solid var(--line-2);
}

.faq-q {
  align-items: center;
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  gap: 16px;
  justify-content: space-between;
  letter-spacing: -0.01em;
  padding: 22px 0;
  text-align: left;
  transition: color 200ms;
  width: 100%;
}

.faq-q:hover { color: var(--gold-b); }

.faq-icon {
  border: 1px solid var(--line-2);
  flex-shrink: 0;
  height: 28px;
  position: relative;
  transition: border-color 200ms, background 200ms;
  width: 28px;
}

.faq-icon::before,
.faq-icon::after {
  background: var(--gold-b);
  content: '';
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 280ms ease, opacity 200ms;
}

.faq-icon::before { height: 1.5px; width: 10px; }
.faq-icon::after  { height: 10px; width: 1.5px; }

.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--gold-dim);
  border-color: var(--gold);
}

.faq-q[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms ease, padding 280ms ease;
}

.faq-a.open {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-a p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.78;
  margin: 0;
  padding-right: 48px;
}

/* ─────────────────────────────────────────────────────────────
   PRODUCTS
───────────────────────────────────────────────────────────── */
.products { background: var(--ink); }

.product-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
}

.product-card {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 300ms;
}

.product-card:hover { background: var(--panel); }

.product-image {
  aspect-ratio: 4/3;
  background: var(--panel-2);
  overflow: hidden;
  position: relative;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  transition: transform 500ms ease;
}

.product-card:hover .product-image img { transform: scale(1.05); }

.product-image-placeholder {
  align-items: center;
  background: var(--panel-2);
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}

.product-image-placeholder span {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  opacity: 0.5;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 28px;
}

.product-tag {
  color: var(--gold-b);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.product-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.product-card p {
  color: var(--muted);
  flex: 1;
  font-size: 0.86rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-footer {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.product-price {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}

.btn-buy {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold-b);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 9px 16px;
  text-transform: uppercase;
  transition: background 200ms, color 200ms;
}

.btn-buy:hover {
  background: var(--gold);
  color: #0a0706;
}

/* ─────────────────────────────────────────────────────────────
   REVIEWS
───────────────────────────────────────────────────────────── */
.reviews {
  background:
    linear-gradient(rgba(7,6,5,0.88), rgba(7,6,5,0.95)),
    url("assets/barber-detail.jpg") center 42% / cover fixed;
  border-top: 1px solid var(--line);
}

.review-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, 1fr);
  background: var(--line);
}

.review-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(14,11,9,0.72);
  border: 1px solid var(--line);
  padding: 56px 44px 44px;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: 14px; left: 32px;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 9rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.13;
}

.review-stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.review-card blockquote {
  color: var(--white);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.65rem, 3vw, 2.8rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.14;
  margin: 0 0 24px;
  position: relative;
  z-index: 1;
}

.review-card figcaption {
  color: var(--gold-b);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─────────────────────────────────────────────────────────────
   VISIT
───────────────────────────────────────────────────────────── */
.visit { background: var(--ink-2); }

.visit-inner {
  display: grid;
  gap: clamp(40px, 7vw, 100px);
  grid-template-columns: 1fr minmax(300px, 460px);
  align-items: start;
}

.visit-copy h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.022em;
  margin-bottom: 22px;
}

.visit-copy p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
  line-height: 1.78;
  max-width: 460px;
}

.visit-panel {
  background: var(--charcoal);
  border: 1px solid var(--line-2);
  position: relative;
}

.visit-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-b), var(--gold));
}

.visit-address {
  border-bottom: 1px solid var(--line);
  padding: 32px 32px 28px;
}

.visit-address strong {
  color: var(--white);
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.visit-address span {
  color: var(--muted);
  display: block;
  font-size: 0.9rem;
  line-height: 1.8;
}

.visit-row {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 18px 32px;
}

.visit-row-label {
  color: var(--gold-b);
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.visit-row-value {
  color: var(--white);
  font-size: 0.92rem;
  text-align: right;
}

.visit-row-value a { color: var(--white); transition: color 200ms; }
.visit-row-value a:hover { color: var(--gold-b); }

.visit-panel .btn {
  display: flex;
  margin: 24px 32px 32px;
  width: calc(100% - 64px);
}

/* ─────────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 80px) clamp(20px, 5.5vw, 88px);
}

.footer-inner {
  display: grid;
  gap: 48px 60px;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  margin-bottom: 52px;
}

.footer-brand img {
  height: 38px;
  margin-bottom: 18px;
  opacity: 0.85;
}

.footer-brand p {
  color: var(--muted-2);
  font-size: 0.86rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  align-items: center;
  border: 1px solid var(--line-2);
  color: var(--muted);
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  height: 36px;
  justify-content: center;
  letter-spacing: 0.1em;
  min-width: 64px;
  padding: 0 10px;
  text-transform: uppercase;
  transition: border-color 200ms, color 200ms;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-b); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li a {
  color: var(--muted-2);
  font-size: 0.9rem;
  transition: color 200ms;
}
.footer-col li a:hover { color: var(--gold-b); }

.footer-col address {
  color: var(--muted-2);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.9;
}

.footer-col address a {
  color: var(--gold-b);
  display: block;
  font-weight: 700;
  margin-top: 8px;
  transition: color 200ms;
}
.footer-col address a:hover { color: var(--gold); }

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding-top: 28px;
}

.footer-bottom p {
  color: var(--muted-2);
  font-size: 0.78rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--muted-2);
  font-size: 0.78rem;
  transition: color 200ms;
}
.footer-bottom a:hover { color: var(--gold-b); }

/* ─────────────────────────────────────────────────────────────
   FLOATING CTA (mobile)
───────────────────────────────────────────────────────────── */
.float-cta {
  background: var(--gold);
  bottom: 24px;
  box-shadow: 0 8px 32px rgba(196,145,64,0.5);
  color: #0a0706 !important;
  display: none;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  padding: 0 28px;
  height: 52px;
  align-items: center;
  position: fixed;
  right: 20px;
  text-transform: uppercase;
  z-index: 50;
  transition: background 200ms, transform 200ms;
}
.float-cta:hover { background: var(--gold-b); transform: translateY(-2px); }

/* ─────────────────────────────────────────────────────────────
   HAMBURGER + MOBILE NAV
───────────────────────────────────────────────────────────── */
.menu-btn {
  background: none;
  border: 1px solid var(--line-2);
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  height: 42px;
  justify-content: center;
  padding: 0 12px;
  width: 48px;
}

.menu-btn span {
  background: var(--ivory);
  display: block;
  height: 1.5px;
  transition: transform 260ms ease, opacity 200ms ease, width 200ms ease;
  width: 22px;
}

.menu-btn.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; width: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  background: rgba(7,6,5,0.97);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-bottom: 1px solid var(--line-2);
  display: flex;
  flex-direction: column;
  gap: 0;
  inset: 0 0 auto 0;
  opacity: 0;
  padding: 88px 28px 40px;
  pointer-events: none;
  position: fixed;
  transform: translateY(-12px);
  transition: opacity 280ms ease, transform 280ms ease;
  z-index: 90;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: none;
}

.mobile-nav a {
  border-bottom: 1px solid var(--line);
  color: var(--ivory);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 18px 0;
  transition: color 200ms;
}

.mobile-nav a:hover { color: var(--gold-b); }

.mobile-nav .btn {
  margin-top: 28px;
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────── */
@media (max-width: 1280px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1100px) {
  .barber-card {
    grid-template-columns: 220px 1fr;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .header-nav { display: none; }
  .menu-btn { display: flex; }

  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    height: 52svh;
    order: -1;
  }
  /* Image is now above, reduce top padding */
  .hero-left {
    padding-top: 44px;
    padding-bottom: 52px;
  }
  .hero-left::after { display: none; }

  .experience, .booking-inner, .visit-inner {
    grid-template-columns: 1fr;
  }
  .experience-image { min-height: 400px; }

  .barber-grid {
    grid-template-columns: 1fr;
  }
  .barber-card {
    grid-template-columns: 200px 1fr;
  }

  .gallery-grid {
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-row: span 1; }
}

@media (max-width: 768px) {
  /* Keep 2 cols — 1 col wastes too much vertical space */
  .service-grid, .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Reviews full-width stacked */
  .review-grid {
    grid-template-columns: 1fr;
  }

  /* Barber cards: photo left, info right */
  .barber-card {
    grid-template-columns: 140px 1fr;
  }
  .barber-photo img { min-height: 220px; }
  .barber-info { padding: 24px 20px; }
  .barber-num { font-size: 2.2rem; margin-bottom: 10px; }
  .barber-info h3 { font-size: 1.7rem; }
  .barber-info p { display: none; } /* Hide bio on small screens */

  /* Gallery: 2-column grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 200px 200px 200px;
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .walkin-grid { grid-template-columns: repeat(2, 1fr); }

  .faq-inner { grid-template-columns: 1fr; }
  .faq-head p { max-width: 100%; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }

  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  .float-cta { display: flex; }

  .reviews { background-attachment: scroll; }

  .hero-badge { gap: 16px; }
  .hero-badge-item strong { font-size: 1.5rem; }

  /* Visit panel: tighter */
  .visit-address { padding: 24px 20px 20px; }
  .visit-row { padding: 16px 20px; }
  .visit-panel .btn { margin: 20px 20px 24px; width: calc(100% - 40px); }
}

@media (max-width: 540px) {
  /* Services & products go to 1 col on very small phones */
  .service-grid, .product-grid {
    grid-template-columns: 1fr;
  }

  /* Gallery: single column */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child {
    grid-column: span 1;
  }
  .gallery-item { height: 220px; }

  .walkin-grid { grid-template-columns: 1fr; }
  .walkin-cta { flex-direction: column; }
  .walkin-cta .btn { width: 100%; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

  .hero-badge { display: none; }

  .header-cta { display: none; }

  .barber-card { grid-template-columns: 1fr; }
  .barber-photo img { min-height: 260px; }
  .barber-info { padding: 24px 20px; }
  .barber-info p { display: block; }

  .review-card { padding: 44px 24px 32px; }
  .review-card::before { left: 16px; font-size: 7rem; }
}
