﻿/* ============================================
   VARIABLES
   ============================================ */
:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --red: #C41E3A;
  --red-deep: #8B0000;
  --red-glow: #ff1e3c;
  --cream: #f4ede1;
  --cream-dim: #d4ccbe;
  --brass: #b08d57;
  --brass-dim: #8a6d42;
  --white: #ffffff;
  --line: rgba(244, 237, 225, 0.12);
  --nav-height: 72px;
}

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

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

/* Noise overlay â€” gives the "vintage print" feel */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.8'/></svg>");
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::selection { background: var(--red); color: var(--cream); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display { font-family: 'Anton', 'Bebas Neue', sans-serif; letter-spacing: 0.01em; line-height: 0.92; text-transform: uppercase; }
.condensed { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 0.08em; }
.serif { font-family: 'Playfair Display', serif; }
.script { font-family: 'Alex Brush', cursive; }
.stamp { font-family: 'Special Elite', monospace; text-transform: uppercase; letter-spacing: 0.15em; }

/* ============================================
   NAV
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  min-height: var(--nav-height);
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding: 12px 32px;
}
.nav-logo {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo .nav-logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  transition: transform 0.3s;
}
.nav-logo:hover .nav-logo-mark { transform: rotate(-6deg) scale(1.05); }
.nav-logo .nav-logo-text {
  background: linear-gradient(180deg, #f5e8b8 0%, #b08d57 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.06em;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.nav-links a {
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--red);
  color: var(--cream);
  padding: 10px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
  border: 1px solid var(--red);
}
.nav-cta:hover { background: var(--red-deep); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--cream);
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .mobile-menu.active { display: flex; }
  .nav-logo { font-size: 18px; gap: 10px; }
  .nav-logo .nav-logo-mark { width: 34px; height: 34px; }
}
@media (max-width: 380px) {
  .nav-logo .nav-logo-text { display: none; }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 24px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
  flex-direction: column;
  gap: 20px;
  z-index: 99;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 16px;
  max-height: calc(100dvh - var(--nav-height));
  overflow-y: auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 52px) 32px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 0, 0, 0.1) 0%, transparent 50%),
    var(--black);
}

/* Subtle checkered floor at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40vh;
  background-image:
    linear-gradient(45deg, rgba(244,237,225,0.04) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(244,237,225,0.04) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(244,237,225,0.04) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(244,237,225,0.04) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: bottom;
  mask-image: linear-gradient(to top, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1100px;
  width: 100%;
}

.hero-top-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
  line-height: 1.5;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-top-badge::before,
.hero-top-badge::after {
  content: '';
  width: 40px; height: 1px;
  background: var(--brass);
}

.hero h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(64px, 14vw, 200px);
  line-height: 0.85;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 1s 0.4s forwards;
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
}
.hero h1 .red-ampersand {
  color: var(--red);
  display: inline-block;
  transform: translateY(-6px);
}

.hero-tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 8px 0 12px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(13px, 1.6vw, 18px);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream-dim);
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-tagline-row .dot {
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
}

.hero-subtagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--cream-dim);
  margin: 24px 0 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}
.hero-subtagline .script-accent {
  font-family: 'Alex Brush', cursive;
  font-size: 1.6em;
  color: var(--brass);
  font-style: normal;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1.1s forwards;
}
.btn {
  padding: 18px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--black-soft), inset 0 0 0 1px var(--red-glow);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--black-soft), inset 0 0 0 1px var(--red-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}
.btn-secondary:hover {
  background: var(--cream);
  color: var(--black);
}

/* Barber pole â€” animated */
.pole {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s forwards;
}
.pole.left { left: 4%; }
.pole.right { right: 4%; }
.pole .cap {
  width: 60px;
  height: 20px;
  background: linear-gradient(180deg, #c9c9c9 0%, #6a6a6a 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.pole .cap::before {
  content: '';
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  background: radial-gradient(circle at 30% 30%, #eee, #999);
  border-radius: 50%;
}
.pole .tube {
  width: 40px;
  height: 100%;
  background:
    repeating-linear-gradient(
      -45deg,
      var(--red) 0px,
      var(--red) 12px,
      var(--cream) 12px,
      var(--cream) 24px,
      #2b4a8c 24px,
      #2b4a8c 36px,
      var(--cream) 36px,
      var(--cream) 48px
    );
  background-size: 40px 68px;
  animation: poleSpin 3s linear infinite;
  border: 2px solid #2a2a2a;
  border-top: none; border-bottom: none;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}
.pole .cap.bottom { border-radius: 0 0 4px 4px; }

@keyframes poleSpin {
  from { background-position: 0 0; }
  to   { background-position: 0 -68px; }
}

@media (max-width: 1100px) { .pole { display: none; } }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
  z-index: 3;
}
.scroll-indicator .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--brass), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Ticker bar under hero */
.ticker {
  background: var(--red);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  border-top: 1px solid var(--red-deep);
  border-bottom: 1px solid var(--red-deep);
  position: relative;
  z-index: 5;
}
.ticker-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
  animation: tickerMove 18s linear infinite;
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  will-change: transform;
}
.ticker-track span {
  flex: 0 0 auto;
}
.ticker-group {
  display: inline-flex;
  align-items: center;
  gap: 60px;
  white-space: nowrap;
  padding-right: 60px;
}
.ticker-track svg { display: inline-block; vertical-align: middle; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   SECTION BASICS
   ============================================ */
section {
  padding: 120px 32px;
  position: relative;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  margin-bottom: 80px;
  text-align: center;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--red);
}
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 7vw, 90px);
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.section-title .accent { color: var(--red); }
.section-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--cream-dim);
  margin-top: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   THE SHOP
   ============================================ */
.shop-section {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.shop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .shop-grid { grid-template-columns: 1fr; gap: 50px; }
}
.shop-visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--black-card);
  overflow: hidden;
  border: 1px solid var(--line);
}
.shop-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(196,30,58,0.15), transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent 0px,
      transparent 4px,
      rgba(244,237,225,0.02) 4px,
      rgba(244,237,225,0.02) 5px
    );
  z-index: 2;
  pointer-events: none;
}
.shop-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.15);
}
.shop-stamp {
  position: absolute;
  top: 20px; right: 20px;
  width: 120px; height: 120px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brass);
  font-family: 'Special Elite', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-align: center;
  transform: rotate(-8deg);
  z-index: 3;
  background: rgba(10,10,10,0.4);
  backdrop-filter: blur(4px);
  line-height: 1.3;
}
.shop-text {
  position: relative;
}
.shop-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.9;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: var(--cream);
}
.shop-text h2 .script {
  font-family: 'Alex Brush', cursive;
  font-size: 0.7em;
  color: var(--brass);
  display: block;
  text-transform: none;
  font-weight: normal;
  margin-bottom: -10px;
}
.shop-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--cream-dim);
}
.shop-text p strong {
  color: var(--cream);
  font-weight: 600;
}
.shop-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 52px;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 6px;
}

/* ============================================
   PRESTATIONS
   ============================================ */
.prestations-section {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(176, 141, 87, 0.08), transparent 50%),
    var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.prestations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 20px;
}
@media (max-width: 850px) {
  .prestations-grid { grid-template-columns: 1fr; gap: 20px; }
}
.prestation-card {
  position: relative;
  background: var(--black-card);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}
.prestation-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--brass));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.prestation-card::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.4s;
}
@media (hover: hover) {
  .prestation-card:hover { border-color: var(--brass-dim); transform: translateY(-4px); }
  .prestation-card:hover::before { transform: scaleX(1); }
  .prestation-card:hover::after { border-color: rgba(176, 141, 87, 0.25); }
}
.prestation-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px double var(--brass-dim);
}
.prestation-icon {
  flex-shrink: 0;
  width: 64px; height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--black);
  transform: rotate(-3deg);
}
.prestation-icon svg { width: 32px; height: 32px; }
.prestation-sub {
  display: block;
  font-family: 'Alex Brush', cursive;
  font-size: 24px;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 2px;
}
.prestation-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 4.5vw, 48px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 0.95;
}
.prestation-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.prestation-list.cols-2 { grid-template-columns: 1fr 1fr; column-gap: 24px; }
@media (max-width: 500px) {
  .prestation-list.cols-2 { grid-template-columns: 1fr; }
}
.prestation-list li {
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 14px 0 14px 22px;
  border-bottom: 1px dashed var(--line);
  position: relative;
  line-height: 1.4;
  transition: color 0.25s, padding-left 0.25s;
}
.prestation-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 10px; height: 2px;
  background: var(--red);
  transform: translateY(-50%);
  transition: width 0.25s, background 0.25s;
}
@media (hover: hover) {
  .prestation-list li:hover { color: var(--red); padding-left: 28px; }
  .prestation-list li:hover::before { width: 16px; background: var(--brass); }
}
.prestations-foot {
  text-align: center;
  margin-top: 48px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--cream-dim);
}
.prestations-foot a {
  color: var(--red);
  border-bottom: 1px solid var(--red);
  transition: color 0.2s, border-color 0.2s;
}
.prestations-foot a:hover { color: var(--brass); border-bottom-color: var(--brass); }

/* ============================================
   SERVICES (TARIFS)
   ============================================ */
.services-section {
  background:
    radial-gradient(ellipse at top, rgba(196,30,58,0.06), transparent 50%),
    var(--black);
}
.menu-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid var(--line);
  padding: 60px clamp(24px, 5vw, 80px);
  position: relative;
}
.menu-card::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--brass-dim);
  pointer-events: none;
}
.menu-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 2px double var(--brass-dim);
}
.menu-header .est {
  font-family: 'Alex Brush', cursive;
  font-size: 32px;
  color: var(--brass);
}
.menu-header .name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--cream);
  margin: 4px 0;
}
.menu-header .sub {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.menu-section + .menu-section { margin-top: 40px; }
.menu-section-title {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}
.menu-section-title .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brass-dim), transparent);
}
.menu-section-title .label {
  font-family: 'Anton', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brass);
  line-height: 1;
  padding: 0 4px;
}
.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 14px 0;
  position: relative;
  transition: padding 0.3s;
}
.menu-item:hover { padding-left: 12px; }
.menu-item:hover .menu-name { color: var(--red); }
.menu-name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.3s;
}
.menu-desc {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--cream-dim);
  display: block;
  margin-top: 2px;
  text-transform: none;
  letter-spacing: normal;
  font-weight: normal;
}
.menu-dots {
  border-bottom: 2px dotted var(--brass-dim);
  align-self: end;
  transform: translateY(-6px);
  min-width: 40px;
}
.menu-price {
  font-family: 'Anton', sans-serif;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--red);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.menu-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px double var(--brass-dim);
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cream-dim);
  line-height: 1.8;
}

/* ============================================
   BARBERS
   ============================================ */
.barbers-section {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.barbers-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  margin-top: 20px;
}
.barber-card {
  position: relative;
  background: var(--black);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.4s, border-color 0.4s;
}
.barber-card-featured {
  display: grid;
  grid-template-columns: minmax(320px, 440px) minmax(0, 1fr);
  align-items: stretch;
  max-width: 1120px;
  margin: 0 auto;
}
.barber-card:hover { transform: translateY(-8px); border-color: var(--red); }
.barber-photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--black-card);
}
.barber-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  transition: transform 0.6s, filter 0.6s;
}
.barber-card:hover .barber-photo img {
  transform: scale(1.05);
  filter: grayscale(0) contrast(1.1);
}
.barber-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,10,0.95) 100%);
  z-index: 2;
  pointer-events: none;
}

/* ---- Variante : pas de portrait, monogramme à la place ---- */
.barber-photo-monogram {
  background:
    radial-gradient(circle at 50% 35%, rgba(176, 141, 87, 0.18), transparent 65%),
    linear-gradient(135deg, var(--black-card) 0%, var(--black) 100%);
}
.barber-photo-monogram::before {
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 22px,
      rgba(176, 141, 87, 0.05) 22px,
      rgba(176, 141, 87, 0.05) 23px
    );
}
.barber-monogram {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 32px;
  z-index: 1;
}
.barber-monogram img {
  width: clamp(90px, 35%, 140px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(196, 30, 58, 0.18));
  transition: transform 0.5s;
}
.barber-card:hover .barber-monogram img { transform: rotate(-4deg) scale(1.05); }
.barber-monogram-line {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #f5e8b8 0%, #b08d57 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.barber-monogram-sub {
  font-family: 'Special Elite', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.barber-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--red);
  color: var(--cream);
  padding: 6px 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}
.barber-years {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  font-family: 'Anton', sans-serif;
  background: var(--black);
  border: 1px solid var(--brass);
  padding: 6px 10px;
  color: var(--brass);
  font-size: 12px;
  letter-spacing: 0.15em;
}
.barber-info {
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.barber-nick {
  font-family: 'Alex Brush', cursive;
  font-size: 22px;
  color: var(--brass);
  line-height: 1;
  margin-bottom: 4px;
}
.barber-name {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.barber-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--cream-dim);
  margin-bottom: 28px;
  position: relative;
  padding-left: 24px;
  border-left: 2px solid var(--red);
  line-height: 1.7;
}
.barber-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 24px;
}
.barber-highlight {
  padding: 16px;
  background: var(--black-card);
  border: 1px solid var(--line);
}
.barber-highlight-value {
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.barber-highlight-label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
  line-height: 1.5;
}
.barber-note {
  font-size: 15px;
  line-height: 1.8;
  color: var(--cream-dim);
  margin-bottom: 24px;
  max-width: 52ch;
}
.barber-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s;
}
.barber-ig:hover { color: var(--red); border-color: var(--red); }

/* ============================================
   BARBER SPOTLIGHT (sans portrait, éditorial)
   ============================================ */
.barber-spotlight {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  background: var(--black-card);
  border: 1px solid var(--line);
  position: relative;
}
.barber-spotlight::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid var(--brass-dim);
  pointer-events: none;
}
.barber-spotlight::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), var(--brass), var(--red), transparent);
}

.barber-spotlight-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  color: var(--brass);
}
.barber-spotlight-divider .line {
  flex: 0 1 80px;
  height: 1px;
  background: var(--brass-dim);
}
.barber-spotlight-divider .star {
  font-size: 14px;
  color: var(--brass);
}

.barber-spotlight-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 12px;
}
.barber-spotlight-name {
  font-family: 'Anton', sans-serif;
  font-size: clamp(56px, 9vw, 96px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 0.9;
  margin-bottom: 4px;
}
.barber-spotlight-nick {
  display: inline-block;
  font-family: 'Alex Brush', cursive;
  font-size: clamp(26px, 3vw, 34px);
  color: var(--brass);
  transform: rotate(-2deg);
  margin-bottom: 36px;
  line-height: 1;
}

.barber-spotlight-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: var(--cream);
  margin: 0 auto 40px;
  max-width: 580px;
  position: relative;
  padding: 12px 28px;
}
.barber-spotlight-quote::before,
.barber-spotlight-quote::after {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--red);
  font-style: normal;
  line-height: 0;
  position: absolute;
  opacity: 0.7;
}
.barber-spotlight-quote::before { content: '\201C'; top: 28px; left: -4px; }
.barber-spotlight-quote::after { content: '\201D'; bottom: 0; right: -4px; }

.barber-spotlight-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 36px 0 28px;
  padding: 24px 0;
  border-top: 2px double var(--brass-dim);
  border-bottom: 2px double var(--brass-dim);
  flex-wrap: wrap;
}
.barber-spotlight-stats .stat-sep {
  width: 1px;
  height: 40px;
  background: var(--brass-dim);
  flex-shrink: 0;
}
.barber-spotlight-stats .stat {
  min-width: 100px;
}
.barber-spotlight-stats .stat-value {
  font-family: 'Anton', sans-serif;
  font-size: clamp(34px, 4.5vw, 48px);
  color: var(--red);
  line-height: 1;
}
.barber-spotlight-stats .stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 8px;
}

.barber-spotlight-skills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 28px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.barber-spotlight-skills .skill-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.barber-spotlight-note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 560px;
  margin: 28px auto 36px;
}

.barber-spotlight-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .barber-spotlight-stats { gap: 20px; }
  .barber-spotlight-stats .stat-sep { display: none; }
  .barber-spotlight-stats .stat { min-width: 80px; }
  .barber-spotlight-quote { padding: 8px 20px; }
  .barber-spotlight-quote::before { font-size: 56px; top: 22px; }
  .barber-spotlight-quote::after { font-size: 56px; }
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section {
  background: var(--black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 8px;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--black-card);
  cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
@media (max-width: 900px) {
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
  }
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s, filter 0.4s;
  filter: grayscale(0.3) contrast(1.1);
}
.gallery-item-top-focus img { object-position: center 18%; }
.gallery-item:hover img { transform: scale(1.08); filter: grayscale(0) contrast(1.2); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(196,30,58,0.3));
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item .label {
  position: absolute;
  bottom: 12px; left: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(10,10,10,0.75);
  padding: 6px 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 2;
}
.gallery-item:hover .label { opacity: 1; transform: translateY(0); }

/* ============================================
   VIBE SECTION
   ============================================ */
.vibe-section {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.vibe-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 40px;
}
@media (max-width: 900px) {
  .vibe-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
}
.vibe-item {
  position: relative;
  overflow: hidden;
  background: var(--black-card);
  border: 1px solid var(--line);
}
.vibe-item:nth-child(1) { grid-row: span 2; }
.vibe-item:nth-child(4) { grid-column: span 2; }
@media (max-width: 900px) {
  .vibe-item:nth-child(1) { grid-row: span 1; grid-column: span 2; }
  .vibe-item:nth-child(4) { grid-column: span 2; }
}
.vibe-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.1);
}
.vibe-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  font-family: 'Alex Brush', cursive;
  font-size: 26px;
  color: var(--cream);
  text-shadow: 2px 2px 0 rgba(0,0,0,0.8);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  background:
    radial-gradient(ellipse at bottom, rgba(139,0,0,0.1), transparent 60%),
    var(--black);
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.quote-card {
  padding: 36px;
  background: var(--black-card);
  border: 1px solid var(--line);
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.quote-card:hover { border-color: var(--red); transform: translateY(-4px); }
.quote-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: var(--red);
  line-height: 1;
}
.quote-stars {
  color: var(--brass);
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 14px;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.6;
  color: var(--cream);
  margin-bottom: 20px;
}
.quote-author {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
}

/* ============================================
   FIND US
   ============================================ */
.find-section {
  background: var(--black-soft);
  border-top: 1px solid var(--line);
}
.find-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .find-grid { grid-template-columns: 1fr; gap: 32px; }
}
.find-info h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  margin-top: 32px;
}
.find-info h3:first-of-type { margin-top: 0; }
.find-info p, .find-info a {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.find-info .hours-line {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px dashed var(--line);
  max-width: 320px;
}
.find-info .hours-line span:last-child { color: var(--cream-dim); }
.find-info .hours-line.closed span:last-child { color: var(--red); }
.find-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.map-wrap {
  position: relative;
  min-height: 400px;
  border: 1px solid var(--line);
  background: var(--black-card);
  overflow: hidden;
}
.map-wrap iframe {
  width: 100%; height: 100%;
  min-height: 400px;
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.85);
}
.map-wrap::after {
  content: 'F';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -60%);
  width: 40px; height: 40px;
  background: var(--red);
  color: var(--cream);
  font-family: 'Anton', sans-serif;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50% 50% 50% 0;
  rotate: -45deg;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  pointer-events: none;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section { background: var(--black); }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 32px; height: 32px;
  position: relative;
  flex-shrink: 0;
  margin-left: 20px;
}
.faq-item summary .plus::before,
.faq-item summary .plus::after {
  content: '';
  position: absolute;
  background: var(--red);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s;
}
.faq-item summary .plus::before { width: 16px; height: 2px; }
.faq-item summary .plus::after { width: 2px; height: 16px; }
.faq-item[open] summary .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary { color: var(--red); }
.faq-answer {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 16px;
  color: var(--cream-dim);
  margin-top: 16px;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  border-top: 1px solid var(--line);
  padding: 80px 32px 24px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--red) 0 40px,
      var(--cream) 40px 80px,
      #2b4a8c 80px 120px
    );
}
.footer-logo {
  text-align: center;
  margin: 0 auto 20px;
  max-width: 420px;
}
.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(196, 30, 58, 0.15));
}
@media (max-width: 600px) {
  .footer-logo { max-width: 280px; }
}
.footer-motto {
  text-align: center;
  font-family: 'Alex Brush', cursive;
  font-size: clamp(28px, 4vw, 40px);
  color: var(--brass);
  margin-bottom: 12px;
  transform: rotate(-2deg);
}
.footer-est {
  text-align: center;
  font-family: 'Special Elite', monospace;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--cream-dim);
  margin: 20px 0 60px;
}
.footer-est .red { color: var(--red); }
.footer-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}
.footer-socials a {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all 0.3s;
}
.footer-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-4px);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.footer-bottom a:hover { color: var(--red); }

/* ============================================
   LEGAL PAGES (mentions légales, CGU, cookies)
   ============================================ */
.legal-page {
  padding: 140px 32px 80px;
  max-width: 880px;
  margin: 0 auto;
  color: var(--cream);
  background: var(--black);
}
.legal-page .legal-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.legal-page h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.005em;
}
.legal-page .legal-meta {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--cream-dim);
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--brass);
  margin: 56px 0 16px;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.legal-page h2:first-of-type { border-top: none; padding-top: 0; }
.legal-page h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 28px 0 12px;
}
.legal-page p,
.legal-page li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--cream-dim);
  margin-bottom: 12px;
}
.legal-page strong { color: var(--cream); font-weight: 600; }
.legal-page a {
  color: var(--red);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.legal-page a:hover { color: var(--brass); }
.legal-page ul, .legal-page ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-page ul li,
.legal-page ol li { margin-bottom: 6px; }
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 32px;
  font-size: 14px;
  background: var(--black-card);
  border: 1px solid var(--line);
}
.legal-page table th,
.legal-page table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.legal-page table th {
  background: var(--black-soft);
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}
.legal-page table tbody tr:last-child td { border-bottom: none; }
.legal-page .legal-toc {
  background: var(--black-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  padding: 24px 28px;
  margin: 0 0 48px;
}
.legal-page .legal-toc h3 { margin-top: 0; }
.legal-page .legal-toc ol {
  margin-bottom: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.legal-page .legal-toc li { margin-bottom: 8px; color: var(--cream); }
.legal-page .legal-toc a {
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px dashed var(--cream-dim);
}
.legal-page .legal-toc a:hover { color: var(--red); border-bottom-color: var(--red); }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 1px solid var(--cream);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  margin-top: 60px;
  transition: all 0.2s;
  text-decoration: none;
}
.legal-back:hover { background: var(--cream); color: var(--black); }

@media (max-width: 700px) {
  .legal-page { padding: 100px 20px 60px; }
  .legal-page table { font-size: 13px; }
  .legal-page table th,
  .legal-page table td { padding: 10px 12px; }
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--black-card);
  border: 1px solid var(--red);
  padding: 20px 24px;
  z-index: 200;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  transform: translateY(200%);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  font-size: 13px;
  color: var(--cream-dim);
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}
.cookie-banner p strong {
  color: var(--cream);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cookie-banner button {
  background: var(--red);
  color: var(--cream);
  border: none;
  padding: 10px 16px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-banner button.secondary {
  background: transparent;
  border: 1px solid var(--cream-dim);
}
.cookie-banner button:hover { background: var(--red-deep); }
.cookie-banner button.secondary:hover { background: var(--black); color: var(--red); border-color: var(--red); }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
  section { padding: 80px 20px; }
  .menu-card { padding: 40px 20px; }
  .menu-item { grid-template-columns: 1fr auto; }
  .menu-dots { display: none; }
  .menu-desc { grid-column: 1 / -1; }
  .hero { padding: calc(var(--nav-height) + 32px) 20px 72px; }
  .hero::after { height: 24vh; background-size: 42px 42px; }
  .hero h1 { font-size: clamp(48px, 22vw, 88px); }
  .hero-top-badge {
    gap: 8px;
    letter-spacing: 0.18em;
    margin-bottom: 20px;
  }
  .hero-top-badge::before,
  .hero-top-badge::after {
    width: 18px;
  }
  .hero-tagline-row {
    gap: 10px 14px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }
  .hero-tagline-row .dot { display: none; }
  .hero-subtagline {
    margin: 20px 0 32px;
    font-size: 17px;
  }
  .hero-ctas {
    width: 100%;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: min(100%, 320px);
    justify-content: center;
  }
  .scroll-indicator { display: none; }
  .ticker-track { font-size: 16px; }
  .shop-stats { gap: 24px; }
  .stat-num { font-size: 40px; }
  .shop-stamp {
    width: 88px;
    height: 88px;
    font-size: 8px;
    top: 12px;
    right: 12px;
  }
  .barbers-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .barber-card-featured {
    grid-template-columns: 1fr;
  }
  .barber-info {
    padding: 24px;
  }
  .barber-quote {
    font-size: 15px;
    padding-left: 18px;
    margin-bottom: 20px;
  }
  .barber-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .barber-highlight {
    padding: 14px;
  }
  .barber-years,
  .barber-tag {
    font-size: 9px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 220px;
  }
  .vibe-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .vibe-item:nth-child(1),
  .vibe-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }
  .quotes-grid { grid-template-columns: 1fr; }
  .map-wrap,
  .map-wrap iframe {
    min-height: 320px;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    padding: 16px;
  }
  .barber-card:hover { transform: none; }
}

@media (hover: none), (pointer: coarse) {
  .btn-primary:hover {
    transform: none;
    box-shadow: 4px 4px 0 var(--black-soft), inset 0 0 0 1px var(--red-glow);
  }

  .btn-secondary:hover {
    background: transparent;
    color: var(--cream);
  }

  .menu-item:hover {
    padding-left: 0;
  }

  .menu-item:hover .menu-name {
    color: var(--cream);
  }

  .barber-card:hover {
    transform: none;
    border-color: var(--line);
  }

  .barber-card:hover .barber-photo img {
    transform: none;
    filter: grayscale(1) contrast(1.2);
  }

  .gallery-item::after,
  .gallery-item .label {
    opacity: 1;
  }

  .gallery-item .label {
    transform: none;
  }

  .gallery-item:hover img {
    transform: none;
    filter: grayscale(0.3) contrast(1.1);
  }

  .quote-card:hover {
    border-color: var(--line);
    transform: none;
  }

  .footer-socials a:hover {
    background: transparent;
    border-color: var(--line);
    transform: none;
  }

  .cookie-banner button:hover {
    background: var(--red);
  }

  .cookie-banner button.secondary:hover {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream-dim);
  }
}

/* ============================================
   FOCUS states (accessibility)
   ============================================ */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
