/* ═══════════════════════════════════════════════════════
   FANATICS BARBERSHOP — MAIN STYLESHEET
   Dark Luxury Aesthetic | Brand Red + Black | Mobile-First
   ═══════════════════════════════════════════════════════ */

/* ── BASE ────────────────────────────────────────────── */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 120px 0; position: relative; }
@media (max-width: 768px) { .section { padding: 80px 0; } }

/* Premium hairline separator between dark sections */
.section + .section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: min(80%, 720px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-30), transparent);
  transform: translateX(-50%);
  opacity: .35;
  pointer-events: none;
}

/* SELECTION + SCROLLBAR defined at end of file for premium gradient */

/* ── SECTION HEADERS ──────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 72px; }
.section-header--left { text-align: left; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding: 8px 18px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 999px;
  position: relative;
}
.section-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  background: var(--grad-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--white-85);
  max-width: 62ch;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}
.section-header--left .section-subtitle { margin: 0; }

/* ── BUTTONS ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-brand);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  position: relative;
  overflow: hidden;
  touch-action: manipulation;
  min-height: 52px;
  box-shadow: 0 8px 24px rgba(230,30,30,.30), inset 0 1px 0 rgba(255,255,255,.20);
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
  transition: left 0.6s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(230,30,30,.45), inset 0 1px 0 rgba(255,255,255,.25);
  filter: brightness(1.08);
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:active { transform: translateY(0); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 3px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--white-40);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  min-height: 48px;
  touch-action: manipulation;
}
.btn-secondary {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.88rem;
  padding: 16px 28px;
  min-height: 52px;
}

/* Tertiary CTA — subtle text link with arrow */
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white-85);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 8px;
  border-radius: var(--radius);
  transition: color var(--transition), transform var(--transition);
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--white-20);
  text-decoration-thickness: 1px;
}
.btn-tertiary:hover {
  color: var(--gold-light);
  text-decoration-color: var(--gold);
  transform: translateX(4px);
}
.btn-tertiary:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--white);
  background: var(--gold-10);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,30,30,.18);
}
.btn-secondary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ── REVEAL ANIMATIONS ────────────────────────────────── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.revealed, .reveal-left.revealed, .reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
}

/* ══════════════════════════════════════════════════════
   TRUST BAR (above-the-fold)
   ══════════════════════════════════════════════════════ */
.trust-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  background: linear-gradient(90deg, #0A0606 0%, #1A0606 50%, #0A0606 100%);
  border-bottom: 1px solid rgba(230,30,30,.20);
  font-size: 12.5px;
  line-height: 1;
  color: var(--white-90);
}
.trust-bar-track {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.trust-bar-track::-webkit-scrollbar { display: none; }
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px 24px;
  white-space: nowrap;
  justify-content: center;
}
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--white-85);
  flex-shrink: 0;
}
.trust-pill svg { color: var(--gold); flex-shrink: 0; }
.trust-pill strong { color: var(--white); font-weight: 700; }
.trust-pill--rating strong { color: var(--gold-light); }
.trust-pill--rating svg { color: var(--gold-light); }
.trust-pill--offer { color: var(--gold-light); }
.trust-pill--offer strong { color: var(--gold-light); }
.trust-pill--phone {
  color: var(--white);
  font-weight: 600;
  padding: 4px 10px;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: 999px;
  transition: background var(--transition), border-color var(--transition);
}
.trust-pill--phone:hover { background: var(--gold-20); border-color: var(--gold); }
.trust-sep { color: var(--white-20); flex-shrink: 0; }

@media (max-width: 900px) {
  .trust-bar-inner { justify-content: flex-start; gap: 10px; padding: 8px 14px; font-size: 11.5px; }
  .trust-sep { display: none; }
  .trust-pill { padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.04); border: 1px solid var(--white-10); }
  .trust-pill--rating { background: var(--gold-10); border-color: var(--gold-20); }
  .trust-pill--offer { background: var(--gold-10); border-color: var(--gold-30); }
}

/* ══════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════ */
:root { --trust-bar-h: 38px; }
@media (max-width: 900px) { :root { --trust-bar-h: 36px; } }

#navbar {
  position: fixed; top: var(--trust-bar-h); left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition), transform 0.4s ease;
  transform: translateY(0);
}
#navbar.scrolled {
  background: rgba(10,6,6,.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--white-10), 0 8px 32px rgba(0,0,0,.4);
}
#navbar.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-30), transparent);
  opacity: .6;
}
#navbar.nav-hidden { transform: translateY(-100%); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}
.nav-logo-fanatics {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 3px;
}
.nav-logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  letter-spacing: 3px;
  color: var(--white-40);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-85);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 6px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--grad-brand);
  transition: width var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; }
.nav-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; border-radius: 2px; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white-70);
  transition: color var(--transition);
  min-height: 44px;
}
.nav-phone:hover { color: var(--gold); }
.btn-book-nav {
  background: var(--grad-brand);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 16px rgba(230,30,30,.25), inset 0 1px 0 rgba(255,255,255,.15);
}
.btn-book-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,30,30,.40), inset 0 1px 0 rgba(255,255,255,.20);
  filter: brightness(1.1);
}
.btn-book-nav:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}
.ham-line {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.25s ease;
  transform-origin: center;
}
.hamburger[aria-expanded="true"] .ham-line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] .ham-line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--bg-root);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { text-align: center; width: 100%; padding: 24px; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 8px; margin-bottom: 48px; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 700;
  color: var(--white-70);
  transition: color var(--transition), transform var(--transition);
  display: block;
  padding: 8px;
  transform: translateY(20px);
  opacity: 0;
  transition: color var(--transition), transform 0.4s ease, opacity 0.4s ease;
}
.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu.open .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-nav-link:nth-child(2) { transition-delay: 0.1s; }
.mobile-menu.open .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-link:nth-child(4) { transition-delay: 0.2s; }
.mobile-menu.open .mobile-nav-link:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav-link:hover { color: var(--gold); transform: translateX(8px) !important; }
.mobile-menu-ctas { display: flex; flex-direction: column; gap: 12px; max-width: 280px; margin: 0 auto 24px; }
.mobile-cta-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; border: 1px solid var(--white-20); border-radius: var(--radius);
  color: var(--white); font-weight: 600; font-size: 0.95rem;
  min-height: 48px;
}
.mobile-cta-book {
  display: flex; align-items: center; justify-content: center;
  padding: 14px; background: var(--gold); border-radius: var(--radius);
  color: var(--bg-root); font-weight: 700; letter-spacing: 1px; font-size: 0.9rem;
  min-height: 48px;
}
.mobile-menu-hours { font-size: 0.8rem; color: var(--white-40); display: flex; flex-direction: column; gap: 4px; }

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg-image {
  position: absolute; inset: 0;
  background-image: url('../../assets/img/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.12) translateY(-1%); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 100% 80% at 100% 50%, rgba(230,30,30,.10), transparent 60%),
    linear-gradient(110deg, rgba(10,6,6,.96) 0%, rgba(10,6,6,.85) 45%, rgba(10,6,6,.35) 100%),
    radial-gradient(ellipse 70% 100% at 50% 100%, rgba(0,0,0,.60), transparent 70%);
}
.hero-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .4;
}
.barber-pole {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  opacity: .15;
  border: 2px solid rgba(255,255,255,.1);
}
.pole-stripes {
  width: 100%;
  height: 200%;
  background: repeating-linear-gradient(
    -45deg,
    #E61E1E 0px,
    #E61E1E 10px,
    #0A0606 10px,
    #0A0606 20px,
    #FFFFFF 20px,
    #FFFFFF 30px
  );
  animation: pole-spin 4s linear infinite;
}
@keyframes pole-spin { to { transform: translateY(-50%); } }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 24px 80px;
  width: 100%;
}
@media (max-width: 900px) {
  .hero-content { padding-top: 150px; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: rgba(230,30,30,.12);
  border: 1px solid var(--gold-30);
  padding: 9px 18px;
  border-radius: 999px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(230,30,30,.15);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3.8rem, 11vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0.5px;
  color: var(--white);
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  text-shadow: 0 4px 32px rgba(0,0,0,.6);
}
.hero-title-line { display: block; }
.hero-title-accent {
  background: var(--grad-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 24px rgba(230,30,30,.4));
}
.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--white-85);
  max-width: 56ch;
  line-height: 1.75;
  margin-bottom: 44px;
  font-weight: 400;
}
.hero-subtitle em { color: var(--gold-light); font-style: normal; font-weight: 600; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--white-75);
  font-style: italic;
  padding: 10px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--white-10);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* Urgency strip under hero badge */
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--white-85);
  margin-bottom: 24px;
  padding: 8px 14px;
  background: rgba(34,197,94,.10);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: 999px;
}
.urgency-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(74,222,128,.6);
  animation: pulse-urgency 2s ease-in-out infinite;
}
@keyframes pulse-urgency {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50% { box-shadow: 0 0 0 8px rgba(74,222,128,0); }
}
.hero-urgency--closed { background: rgba(239,68,68,.10); border-color: rgba(239,68,68,.25); }
.hero-urgency--closed .urgency-dot { background: #f87171; animation: none; }

/* First-time offer strip below CTAs */
.hero-offer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-90);
  padding: 12px 20px;
  background:
    radial-gradient(ellipse 100% 100% at 0% 50%, rgba(230,30,30,.18), transparent 60%),
    rgba(255,255,255,.03);
  border: 1px dashed var(--gold-30);
  border-radius: 12px;
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
  flex-wrap: wrap;
}
.hero-offer strong {
  color: var(--gold-light);
  font-weight: 700;
}
.offer-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  background: var(--grad-brand);
  color: #FFFFFF;
  padding: 4px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.hero-open-badge {
  position: absolute;
  bottom: 40px; right: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  display: none;
}
.hero-open-badge.is-open { display: block; background: rgba(34,197,94,.15); color: #4ade80; border: 1px solid rgba(34,197,94,.3); }
.hero-open-badge.is-closed { display: block; background: rgba(239,68,68,.15); color: #f87171; border: 1px solid rgba(239,68,68,.3); }
.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-40);
  font-size: 0.65rem;
  letter-spacing: 3px;
  animation: bounce-slow 2.5s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: .5; }
}
@keyframes bounce-slow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}
.hero-scissors {
  position: absolute;
  top: 80px; right: 80px;
  width: 120px;
  opacity: .08;
  animation: rotate-slow 30s linear infinite;
}
@keyframes rotate-slow { to { transform: rotate(360deg); } }
@media (max-width: 768px) {
  .hero-scroll, .hero-scissors, .barber-pole { display: none; }
  .hero-open-badge { bottom: 20px; right: 20px; }
}

/* ══════════════════════════════════════════════════════
   STATS
   ══════════════════════════════════════════════════════ */
.stats-section {
  background:
    radial-gradient(ellipse 60% 100% at 50% 0%, rgba(230,30,30,.10), transparent 70%),
    linear-gradient(135deg, #1A0606 0%, #110A0A 50%, #1A0606 100%);
  padding: 72px 0;
  border-top: 1px solid var(--gold-20);
  border-bottom: 1px solid var(--gold-20);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: 'FANATICS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 16vw, 14rem);
  color: rgba(230,30,30,.045);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 24px;
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.stat-item { text-align: center; flex: 1; min-width: 120px; }
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat-suffix { font-size: 0.6em; }
.stat-label { font-size: 0.85rem; color: var(--white-75); letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500; }
.stat-divider { width: 1px; height: 60px; background: var(--white-10); flex-shrink: 0; }
@media (max-width: 600px) { .stat-divider { display: none; } .stats-inner { gap: 24px; } }

/* ══════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════ */
.services-section { background: var(--bg-root); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* 9 items = 3+3+3, 6 items = 3+3 */
  gap: 20px;
  margin-bottom: 40px;
}
/* If only 4 services: 2+2 instead of 3+1 */
@media (min-width: 900px) {
  .services-grid:has(> *:nth-child(4)):not(:has(> *:nth-child(5))) {
    grid-template-columns: repeat(2, 1fr);
    max-width: 760px;
    margin-left: auto; margin-right: auto;
  }
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 0% 0%, var(--gold-10), transparent 60%),
    linear-gradient(135deg, var(--gold-10), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
  border-color: var(--gold-30);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-card--popular {
  border-color: var(--gold-30);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230,30,30,.12), transparent 70%),
    var(--bg-card);
  box-shadow: 0 0 0 1px rgba(230,30,30,.10), 0 12px 32px rgba(0,0,0,.4);
}
.service-card--popular::after { transform: scaleX(1); }
.service-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--grad-brand);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(230,30,30,.35), inset 0 1px 0 rgba(255,255,255,.20);
  z-index: 2;
}
.service-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-10);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius);
  transition: transform var(--transition), background var(--transition);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.06) rotate(-3deg);
}
.service-info { flex: 1; }
.service-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.service-desc { font-size: 0.975rem; color: var(--white-85); line-height: 1.65; }
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--white-05);
}
.service-price {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  background: var(--grad-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 1px;
}
.service-actions {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 3;
}
.service-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-lg);
  text-indent: -9999px;
  overflow: hidden;
}
.service-card-link:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: -4px;
}
.service-learn-btn,
.service-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  min-height: 40px;
  position: relative;
  z-index: 3;
}
.service-learn-btn {
  color: var(--gold);
  border: 1px solid var(--gold-30);
  background: var(--gold-10);
}
.service-learn-btn:hover { background: var(--gold); color: #FFFFFF; border-color: var(--gold); }
.service-book-btn {
  color: var(--white);
  background: var(--grad-brand);
  border: 1px solid transparent;
  box-shadow: 0 4px 12px rgba(230,30,30,.25);
}
.service-book-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.service-learn-btn:focus-visible,
.service-book-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Service info gets z-index too so text reads above the overlay link */
.service-icon, .service-info, .service-footer, .service-badge {
  position: relative;
  z-index: 2;
}
.guarantee-callout {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(139,26,26,.2), rgba(139,26,26,.05));
  border: 1px solid rgba(139,26,26,.3);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.guarantee-icon { color: var(--red-light); flex-shrink: 0; }
.guarantee-text { display: flex; flex-direction: column; gap: 4px; }
.guarantee-text strong { font-size: 1rem; color: var(--white); }
.guarantee-text span { font-size: 0.9rem; color: var(--white-70); }
@media (max-width: 600px) {
  .guarantee-callout { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════ */
.about-section { background: var(--bg-surface); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 6/7;
}
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.6) 0%, transparent 60%);
}
.about-floating-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 100px; height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(220,31,31,.4);
}
.badge-year { font-family: var(--font-heading); font-size: 1.8rem; color: var(--bg-root); line-height: 1; }
.badge-text { font-size: 0.55rem; color: var(--bg-root); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; text-align: center; }

.about-content { display: flex; flex-direction: column; gap: 32px; }
.about-text { display: flex; flex-direction: column; gap: 16px; }
.about-text p {
  font-size: var(--text-body-lg);
  color: var(--white-85);
  line-height: 1.85;
  max-width: 60ch;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3em;
  font-weight: 900;
  float: left;
  line-height: 0.9;
  margin: 4px 12px 0 0;
  background: var(--grad-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color var(--transition);
}
.pillar:hover { border-color: var(--gold-20); }
.pillar-icon { color: var(--gold); flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px; }
.pillar-icon svg { width: 100%; height: 100%; }
.pillar div { display: flex; flex-direction: column; gap: 2px; }
.pillar strong { font-size: 0.95rem; color: var(--white); font-weight: 600; }
.pillar span { font-size: 0.85rem; color: var(--white-75); }
@media (max-width: 480px) { .about-pillars { grid-template-columns: 1fr; } .about-floating-badge { right: 0; } }

/* ══════════════════════════════════════════════════════
   TEAM
   ══════════════════════════════════════════════════════ */
.team-section { background: var(--bg-root); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.team-card {
  perspective: 1000px;
  height: 520px;
  cursor: pointer;
}
.team-card-inner {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card:hover .team-card-inner,
.team-card:focus-within .team-card-inner { transform: rotateY(180deg); }
.team-card-front, .team-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--white-05);
}
.team-card-back { transform: rotateY(180deg); background: var(--bg-card); padding: 36px 28px; display: flex; flex-direction: column; gap: 20px; justify-content: center; border-color: var(--gold-20); }

.team-img-wrap { position: absolute; inset: 0; }
.team-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg-root) 0%, rgba(10,10,10,.3) 60%, transparent 100%);
}
.team-front-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-name { font-family: var(--font-display); font-size: 1.85rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.team-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }
.team-exp { font-size: 0.88rem; color: var(--white-85); margin-top: 4px; }
.team-hover-hint { position: absolute; top: 16px; right: 16px; font-size: 0.65rem; color: var(--white-60); letter-spacing: 0.15em; text-transform: uppercase; background: rgba(255,255,255,.08); backdrop-filter: blur(6px); padding: 5px 12px; border-radius: 999px; border: 1px solid var(--white-10); }
.team-back-name { font-family: var(--font-display); font-size: 2rem; font-weight: 800; background: var(--grad-brand-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.team-bio { font-size: 1rem; color: var(--white-85); line-height: 1.75; }
.team-skills { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; color: var(--gold); border: 1px solid var(--gold-30); padding: 5px 13px; border-radius: 999px; background: var(--gold-10); }
.team-card-ctas { display: flex; flex-direction: column; gap: 10px; }
.btn-view-profile {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold-30);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  min-height: 44px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-view-profile:hover { background: var(--gold-10); color: var(--gold-light); }
.btn-book-barber {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  background: var(--grad-brand); color: #FFFFFF; font-weight: 700;
  font-size: 0.9rem; padding: 14px; border-radius: var(--radius);
  transition: filter var(--transition), transform var(--transition); min-height: 48px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(230,30,30,.30), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-book-barber:hover { filter: brightness(1.1); transform: translateY(-1px); }
@media (max-width: 600px) { .team-card { height: 460px; } }

/* ══════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════ */
.gallery-section { background: var(--bg-surface); }
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-filter {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-85);
  padding: 10px 22px;
  border: 1px solid var(--white-20);
  border-radius: 999px;
  transition: all var(--transition);
  min-height: 44px;
  cursor: pointer;
}
.gallery-filter:hover, .gallery-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-root);
}
.gallery-filter:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; transition: opacity 0.4s ease, transform 0.4s ease; }
.gallery-item.hidden { opacity: 0; pointer-events: none; transform: scale(0.9); }
.gallery-img-wrap { position: relative; width: 100%; height: 100%; }
.gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-img-wrap:hover .gallery-img { transform: scale(1.08); }
.gallery-img-wrap:hover .gallery-overlay { opacity: 1; }
.gallery-zoom {
  width: 44px; height: 44px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background var(--transition), border-color var(--transition);
}
.gallery-zoom:hover { background: var(--gold); border-color: var(--gold); color: var(--bg-root); }
.gallery-cat-badge { font-size: 0.7rem; font-weight: 600; color: var(--white); letter-spacing: 2px; text-transform: uppercase; }
/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.9); }
.lightbox-inner { position: relative; z-index: 1; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  width: 44px; height: 44px;
  background: var(--white-10);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); z-index: 2;
  transition: background var(--transition);
}
.lightbox-close:hover { background: var(--red-light); }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════ */
.testimonials-section { position: relative; background: var(--bg-root); overflow: hidden; }
.testimonials-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(220,31,31,.05), transparent);
  pointer-events: none;
}
.rating-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 1rem;
  color: var(--white-85);
  margin-top: 8px;
}
.rating-aggregate .stars { display: flex; gap: 3px; color: var(--gold-light); }
.rating-aggregate strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--grad-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.testimonials-slider { position: relative; overflow: hidden; margin-bottom: 56px; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 100%;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230,30,30,.06), transparent 70%),
    var(--bg-card);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-family: var(--font-display);
  font-size: 14rem;
  line-height: 1;
  color: rgba(230,30,30,.10);
  font-weight: 900;
  pointer-events: none;
}
.testimonial-stars { display: flex; gap: 4px; margin-bottom: 28px; position: relative; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  color: var(--white-95);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 36px;
  font-weight: 400;
  position: relative;
  max-width: 70ch;
}
.testimonial-footer { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 56px; height: 56px;
  background: var(--grad-brand);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(230,30,30,.30), inset 0 1px 0 rgba(255,255,255,.20);
  border: 2px solid rgba(255,255,255,.10);
}
.testimonial-author { display: flex; flex-direction: column; gap: 4px; }
.testimonial-author cite { font-style: normal; font-weight: 600; color: var(--white); font-size: 1.02rem; }
.testimonial-source { display: flex; align-items: center; gap: 4px; font-size: 0.85rem; color: var(--white-75); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 24px; margin-top: 32px; }
.slider-prev, .slider-next {
  width: 44px; height: 44px;
  border: 1px solid var(--white-20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all var(--transition);
}
.slider-prev:hover, .slider-next:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-10); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white-20);
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  min-width: 8px;
}
.slider-dot.active { background: var(--gold); transform: scale(1.4); }
.testimonials-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.testimonials-cta p { color: var(--white-70); font-size: 1rem; }

/* ══════════════════════════════════════════════════════
   FAQ
   ══════════════════════════════════════════════════════ */
.faq-section { background: var(--bg-surface); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 860px) { .faq-grid { grid-template-columns: 1fr; gap: 48px; } }
.faq-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
  align-self: start;
  z-index: 1;
}
.faq-header p { color: var(--white-85); line-height: 1.75; font-size: var(--text-body); }
.faq-header .btn-secondary { align-self: flex-start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--white-10); }
.faq-item:first-child { border-top: 1px solid var(--white-10); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 4px;
  font-size: 1.075rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  min-height: 72px;
  transition: color var(--transition);
  letter-spacing: -0.005em;
}
.faq-question > span:first-child {
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}
.faq-question:hover { color: var(--gold-light); }
.faq-question[aria-expanded="true"] { color: var(--gold-light); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s ease; color: var(--gold); width: 22px; height: 22px; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer:not([hidden]),
.faq-question[aria-expanded="true"] + .faq-answer { max-height: 500px; }
.faq-answer[hidden] { display: block !important; max-height: 0; }
.faq-answer-inner { padding: 4px 4px 28px; }
.faq-answer-inner p { color: var(--white-85); line-height: 1.8; font-size: var(--text-body); max-width: 62ch; }
@media (max-width: 860px) {
  .faq-grid { gap: 36px; }
  .faq-header {
    position: relative;
    top: auto;
    z-index: auto;
    gap: 18px;
  }
  .faq-question {
    align-items: flex-start;
    gap: 14px;
    padding: 22px 0;
    font-size: 1rem;
  }
  .faq-icon { margin-top: 2px; }
  .faq-answer-inner { padding: 0 0 24px; }
}
@media (max-width: 560px) {
  .faq-grid { gap: 30px; padding: 0 20px; }
  .faq-header .btn-secondary { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact-section { background: var(--bg-root); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition);
}
.contact-card:hover { border-color: var(--gold-20); }
.contact-card-icon { color: var(--gold); width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; }
.contact-card-icon svg { width: 100%; height: 100%; }
.contact-card-body { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.contact-card-body strong { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.contact-link { color: var(--white-85); font-size: 0.98rem; line-height: 1.6; transition: color var(--transition); }
.contact-link:hover { color: var(--gold); }
.hours-status { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.hours-status .status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
.hours-status.open { color: #4ade80; }
.hours-status.open .status-dot { background: #4ade80; }
.hours-status.closed { color: #f87171; }
.hours-status.closed .status-dot { background: #f87171; animation: none; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.4); } 50% { box-shadow: 0 0 0 6px transparent; } }
.hours-list { display: flex; flex-direction: column; gap: 6px; }
.hours-list li { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--white-85); padding: 6px 0; border-bottom: 1px solid var(--white-05); }
.hours-today { color: var(--gold) !important; font-weight: 600; }
.contact-social { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: var(--bg-card); border: 1px solid var(--white-05); border-radius: var(--radius); }
.contact-social strong { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 44px; height: 44px;
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-70);
  transition: all var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-10); }
.contact-book-btn { margin-top: 8px; width: 100%; justify-content: center; }
.contact-map { position: sticky; top: 100px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--white-05); }
.map-wrap { height: 520px; }
.map-wrap iframe { display: block; }
@media (max-width: 900px) { .contact-map { position: static; } .map-wrap { height: 360px; } }

/* ══════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════ */
footer {
  background: #050505;
  border-top: 1px solid var(--white-05);
}
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-logo { display: flex; flex-direction: column; line-height: 1; margin-bottom: 16px; }
.footer-logo-main { font-family: var(--font-display); font-size: 1.8rem; font-weight: 900; color: var(--gold); letter-spacing: 4px; }
.footer-logo-sub { font-size: 0.55rem; letter-spacing: 3px; color: var(--white-40); text-transform: uppercase; margin-top: 2px; }
.footer-tagline { font-family: var(--font-display); font-size: 1.1rem; color: var(--white-85); font-style: italic; margin-bottom: 10px; }
.footer-guarantee { font-size: 0.88rem; color: var(--white-70); margin-bottom: 24px; line-height: 1.7; max-width: 30ch; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 40px; height: 40px;
  border: 1px solid var(--white-10);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white-60, var(--white-70));
  transition: all var(--transition);
}
.footer-social-link:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-10); }
.footer-nav strong, .footer-contact-info strong, .footer-hours strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-nav ul, .footer-contact-info ul, .footer-hours ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a, .footer-contact-info a {
  font-size: 0.95rem;
  color: var(--white-85);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-nav a:hover, .footer-contact-info a:hover { color: var(--gold-light); }
.footer-hours li { display: flex; justify-content: space-between; font-size: 0.9rem; color: var(--white-85); }
.footer-hours-closed { color: var(--white-40) !important; }
.footer-book-btn {
  display: inline-flex;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  transition: color var(--transition);
}
.footer-book-btn:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--white-05);
  padding: 24px 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: var(--white-40); }
.footer-credit { display: flex; align-items: center; gap: 8px; }
.footer-credit a { color: var(--white-40); font-size: 0.8rem; transition: color var(--transition); display: inline-flex; align-items: center; gap: 4px; }
.footer-credit a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   FLOATING ELEMENTS
   ══════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 100px; right: 24px; z-index: 500;
  width: 48px; height: 48px;
  background: var(--bg-card);
  border: 1px solid var(--gold-20);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.back-to-top:not([hidden]) { display: flex; }
.back-to-top[hidden] { display: none; }
.back-to-top:hover { background: var(--gold); color: var(--bg-root); border-color: var(--gold); transform: translateY(-2px); }
@media (max-width: 768px) { .back-to-top { bottom: 90px; right: 16px; } }

.mobile-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-surface);
  border-top: 1px solid var(--white-05);
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar-call, .mobile-bar-book {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  min-height: 60px;
  transition: background var(--transition);
}
.mobile-bar-call { color: var(--white-70); border-right: 1px solid var(--white-05); }
.mobile-bar-call:hover, .mobile-bar-call:active { background: var(--white-05); }
.mobile-bar-book { background: var(--grad-brand); color: #FFFFFF; font-weight: 700; }
.mobile-bar-book:hover, .mobile-bar-book:active { filter: brightness(1.1); }
@media (max-width: 768px) {
  .mobile-cta-bar { display: grid; }
  .section { padding-bottom: calc(72px + 60px); }
  #hero { padding-bottom: 60px; }
  .footer-bottom { padding-bottom: calc(24px + 60px); }
}
/* ── SVG IMAGE FIX — ensures SVG renders like photos ── */
img[src$=".svg"] {
  background: var(--bg-card);
  object-fit: cover;
}
.gallery-img[src$=".svg"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.team-img[src$=".svg"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ── REAL LOGO IN NAVBAR ──────────────────────────────── */
.nav-logo--img {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform var(--transition), filter var(--transition);
  filter: drop-shadow(0 4px 12px rgba(230,30,30,.40));
}
.nav-logo--img:hover .nav-logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 6px 20px rgba(230,30,30,.60));
}
/* Footer logo */
.footer-logo-img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 6px 24px rgba(230,30,30,.35));
  transition: transform var(--transition), filter var(--transition);
}
.footer-logo:hover .footer-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 32px rgba(230,30,30,.50));
}

/* ── PREMIUM SCROLLBAR ────────────────────────────────── */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-root); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 5px;
  border: 2px solid var(--bg-root);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}

/* ── SELECTION (premium) ──────────────────────────────── */
::selection { background: rgba(230,30,30,.35); color: var(--white); }

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

/* ── FOCUS VISIBLE GLOBAL ─────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════
   LEAD CAPTURE MODAL
   ══════════════════════════════════════════════════════ */
.lead-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .35s ease;
}
.lead-modal.open { opacity: 1; }
.lead-modal[hidden] { display: none !important; }
.lead-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lead-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(230,30,30,.18), transparent 60%),
    var(--bg-card);
  border: 1px solid var(--gold-30);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(230,30,30,.20), 0 0 60px rgba(230,30,30,.30);
  transform: translateY(20px) scale(.97);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.lead-modal.open .lead-modal-card { transform: translateY(0) scale(1); }
.lead-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white-05);
  color: var(--white-70);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lead-modal-close:hover { background: var(--gold-10); color: var(--white); }
.lead-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--gold-light);
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.lead-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.lead-title em {
  font-style: italic;
  background: var(--grad-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead-desc {
  font-size: 0.98rem;
  color: var(--white-85);
  line-height: 1.6;
  margin-bottom: 24px;
}
.lead-desc strong { color: var(--gold-light); font-weight: 700; }
.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-field { display: flex; flex-direction: column; gap: 6px; }
.lead-field label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.lead-field input {
  background: var(--bg-elevated);
  border: 1px solid var(--white-20);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.lead-field input:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-10);
}
.lead-field input[name="hp"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}
.lead-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--white-85);
  line-height: 1.5;
  cursor: pointer;
  padding: 4px 0;
}
.lead-checkbox input { width: 18px; height: 18px; accent-color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.lead-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--grad-brand);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 24px;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  min-height: 52px;
  box-shadow: 0 8px 24px rgba(230,30,30,.30), inset 0 1px 0 rgba(255,255,255,.20);
  margin-top: 4px;
  border: none;
  cursor: pointer;
}
.lead-submit:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.lead-submit:disabled { opacity: .7; cursor: progress; }
.lead-fine {
  font-size: 0.78rem;
  color: var(--white-60);
  text-align: center;
  margin-top: 4px;
  line-height: 1.5;
}
.lead-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 12px;
  font-size: 0.78rem;
  color: var(--white-60);
}
.lead-divider::before, .lead-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--white-10);
}
.lead-skip-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.lead-skip-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border: 1px solid var(--white-20);
  border-radius: var(--radius);
  color: var(--white-85);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all var(--transition);
  min-height: 44px;
}
.lead-skip-btn:hover { border-color: var(--gold); color: var(--gold-light); background: var(--gold-10); }
.lead-skip-btn--phone { color: var(--gold-light); border-color: var(--gold-30); background: var(--gold-10); }
.lead-success-icon { text-align: center; margin-bottom: 8px; }
.lead-view-success { text-align: center; }
.lead-view-success .lead-title { text-align: center; }
.lead-view-success .lead-desc { text-align: center; }

/* ══════════════════════════════════════════════════════
   COOKIE CONSENT
   ══════════════════════════════════════════════════════ */
.cookie-consent {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1500;
  max-width: 560px; margin: 0 auto;
  background: var(--bg-elevated, var(--bg-card));
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 20px 22px;
}
.cookie-consent[hidden] { display: none; }
.cookie-consent-inner { display: flex; flex-direction: column; gap: 14px; }
.cookie-consent p { font-size: 0.85rem; color: var(--white-85); line-height: 1.6; margin: 0; }
.cookie-consent-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
.cookie-consent-actions .btn-primary,
.cookie-consent-actions .btn-secondary { min-height: 40px; padding: 10px 20px; font-size: 0.8rem; }
@media (max-width: 480px) {
  .cookie-consent-actions { justify-content: stretch; }
  .cookie-consent-actions button { flex: 1; }
}

/* vs-hero-fanatics  ·  móvil: ocultar chips secundarios + compactar para caber en 1 pantalla */
@media (max-width: 59.99rem){
  .hero-badge, .hero-urgency, .hero-offer, .hero-guarantee{ display:none !important; }
  .hero-subtitle{ font-size:1rem !important; line-height:1.4 !important; }
  .hero-title{ font-size: clamp(1.7rem,7vw,2.5rem) !important; }
  .hero-ctas{ gap:.6rem !important; }
  .hero-content{ gap:.75rem !important; }
}
