/* ========================================
   BARBER & BOOZE — SKATE × GRAFFITI × URBAN
   Street Culture × Premium Grooming
   ======================================== */

:root {
  --black: #1a1a1a;
  --black-light: #202020;
  --black-card: #232323;
  --black-hover: #2a2a2a;
  --gold: #ff4d00;
  --gold-light: #ff7033;
  --gold-dark: #cc3d00;
  --gold-glow: rgba(255, 77, 0, 0.18);
  --gold-glow-strong: rgba(255, 77, 0, 0.4);
  --accent-blue: #00d4ff;
  --accent-blue-light: #33e0ff;
  --accent-blue-dark: #00a8cc;
  --accent-blue-glow: rgba(0, 212, 255, 0.18);
  --titanium: #999999;
  --titanium-light: #bbbbbb;
  --white: #f2f2f2;
  --white-dim: #cccccc;
  --white-muted: #888888;
  --glass-bg: rgba(255, 255, 255, 0.035);
  --glass-bg-hover: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --glass-highlight: rgba(255, 255, 255, 0.09);
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Bebas Neue', Impact, sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --radius-glass: 12px;
  --radius-sm: 4px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-dark) var(--black);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 10px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

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

/* ========================================
   NOISE TEXTURE OVERLAY
   ======================================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.4;
}

/* ========================================
   PRELOADER — Cinematic
   ======================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1.2s cubic-bezier(0.65, 0, 0.35, 1), visibility 1.2s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.preloader-logo {
  font-family: var(--font-accent);
  font-size: 4rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.4em;
  margin-bottom: 2.5rem;
  animation: shimmer 2.5s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.preloader-bar {
  width: 240px;
  height: 1px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  margin: 0 auto 1.2rem;
  position: relative;
}

.preloader-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transition: width 0.4s var(--ease-out-expo);
  box-shadow: 0 0 20px var(--gold-glow);
}

.preloader-text {
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--white-muted);
  font-weight: 300;
}

/* ========================================
   CUSTOM CURSOR — Rolls Royce elegance
   ======================================== */
.custom-cursor,
.custom-cursor-follower {
  display: none;
}

.cursor-hover .custom-cursor {
  transform: translate(-50%, -50%) scale(4);
  background: var(--gold-light);
  box-shadow: 0 0 30px var(--gold-glow-strong);
}

.cursor-hover .custom-cursor-follower {
  width: 60px;
  height: 60px;
  border-color: var(--gold-light);
  opacity: 0.2;
}

@media (max-width: 768px) {
  .custom-cursor, .custom-cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ========================================
   NAVIGATION — Dior minimal
   ======================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.7s var(--ease-out-expo);
}

#navbar.scrolled {
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  padding: 0.9rem 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.logo-ampersand { color: var(--white); transition: color 0.5s ease; }
.logo-separator {
  color: var(--gold);
  font-size: 1.6em;
  text-shadow: 0 0 20px var(--gold-glow), 0 0 40px var(--accent-blue-glow);
}

.nav-logo:hover .logo-ampersand { color: var(--gold-light); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  color: var(--white-muted);
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.5s ease;
  font-weight: 400;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.6s var(--ease-out-expo), left 0.6s var(--ease-out-expo);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { width: 100%; left: 0; }

.nav-cta {
  background: transparent;
  border: 1px solid rgba(200, 168, 85, 0.4);
  color: var(--gold);
  padding: 0.7rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
  z-index: -1;
}

.nav-cta:hover {
  color: var(--black);
  border-color: var(--gold);
  box-shadow: 0 0 30px var(--gold-glow);
}

.nav-cta:hover::before { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 1px;
  background: var(--white);
  transition: all 0.5s var(--ease-out-expo);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(60px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s var(--ease-out-expo);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.mobile-link {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--white-dim);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: all 0.4s ease;
  font-weight: 400;
}

.mobile-link:hover {
  color: var(--gold);
  text-shadow: 0 0 40px var(--gold-glow);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-container { padding: 0 1.5rem; }
}

/* ========================================
   HERO — Apple Launch Cinematic
   ======================================== */
#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 35%, rgba(255, 77, 0, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(255, 77, 0, 0.03) 0%, transparent 50%);
  z-index: 0;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--black), transparent);
  z-index: 4;
  pointer-events: none;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
  box-shadow: 0 0 6px var(--gold-glow);
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  15% { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-300px) scale(1.2); }
}

/* Assembly stage indicator */
.hero-assembly-stage {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  text-align: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-assembly-stage.visible { opacity: 1; }
.hero-assembly-stage.hidden { opacity: 0; }

.hero-assembly-stage span {
  font-size: 0.6rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--accent-blue-light);
  font-weight: 400;
  text-shadow: 0 0 20px var(--accent-blue-glow), 0 0 40px var(--accent-blue-glow);
  display: block;
}

.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 0 2rem;
  max-width: 900px;
  pointer-events: none;
  opacity: 0;
}

.hero-content.revealed {
  pointer-events: auto;
}

.hero-scroll-indicator {
  opacity: 0;
}

.hero-scroll-indicator.revealed {
  opacity: 1;
}

.hero-overline {
  font-size: 0.62rem;
  letter-spacing: 0.6em;
  color: var(--accent-blue-light);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  font-weight: 400;
  text-shadow: 0 0 30px var(--accent-blue-glow);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 400;
  line-height: 1.0;
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(80px) rotateX(15deg);
  background: linear-gradient(
    160deg,
    var(--white) 0%,
    var(--accent-blue-light) 35%,
    var(--gold-light) 65%,
    var(--gold) 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
}

.title-line.animated-gradient {
  animation: textShimmer 6s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-subtitle {
  font-size: clamp(0.85rem, 2vw, 1.15rem);
  color: var(--white-muted);
  font-weight: 300;
  letter-spacing: 0.08em;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(30px);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.scroll-line {
  width: 1px;
  height: 60px;
  position: relative;
  overflow: hidden;
}

.scroll-line::before {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  animation: scrollDrop 2.5s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { top: -100%; }
  100% { top: 200%; }
}

.hero-scroll-indicator span {
  font-size: 0.55rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white-muted);
  font-weight: 300;
}

/* ========================================
   BUTTONS — Porsche CTA precision
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
  font-weight: 500;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 4px 25px rgba(255, 77, 0, 0.25);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(255, 77, 0, 0.4);
  background-position: 100% 100%;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: left 0.8s var(--ease-out-expo);
}

.btn-primary:hover .btn-shine { left: 150%; }

.btn-secondary {
  background: var(--glass-bg);
  color: var(--white-dim);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: rgba(200, 168, 85, 0.4);
  color: var(--gold);
  transform: translateY(-3px);
  background: var(--glass-bg-hover);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.btn-arrow { transition: transform 0.4s var(--ease-out-expo); }
.btn-secondary:hover .btn-arrow { transform: translateX(6px); }

/* ========================================
   SECTIONS — Rolls Royce spacing
   ======================================== */
.section {
  padding: 10rem 0;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(255, 77, 0, 0.25);
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  background: rgba(255, 77, 0, 0.04);
  border-radius: var(--radius-sm);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gold-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--accent-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--white-muted);
  margin-top: 1.2rem;
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Section divider glow */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

/* ========================================
   ABOUT — Dior editorial
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.image-frame {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.image-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(145deg, rgba(200, 168, 85, 0.03) 0%, transparent 50%),
    linear-gradient(145deg, #121212 0%, #080808 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.placeholder-icon {
  opacity: 0.15;
  animation: floatIcon 6s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.placeholder-text {
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0.25;
}

.about-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 40%);
  pointer-events: none;
}

.image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid var(--accent-blue);
  opacity: 0.15;
  border-radius: var(--radius-sm);
  z-index: -1;
  transition: all 0.8s var(--ease-out-expo);
}

.about-image:hover .image-accent {
  top: -12px;
  right: -12px;
  opacity: 0.2;
}

.about-content { padding: 1rem 0; }

.about-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--accent-blue), transparent);
  margin: 2rem 0;
  border-radius: 2px;
}

.about-text {
  color: var(--white-muted);
  line-height: 2;
  margin-bottom: 1.2rem;
  font-weight: 300;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-accent);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--gold), var(--accent-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.stat-suffix {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--gold), var(--accent-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 0.5rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-stats { gap: 2rem; }
}

/* ========================================
   SERVICES — Apple Product Grid
   ======================================== */
#services {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 77, 0, 0.04) 0%, transparent 50%),
    var(--black);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
}

.service-card {
  position: relative;
  background: var(--black);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.6s var(--ease-out-expo);
  overflow: hidden;
  border: none;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--gold-glow), transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.service-card:hover {
  background: var(--black-hover);
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  z-index: 2;
}

.service-card:hover::before { opacity: 1; }
.service-card:hover::after { opacity: 1; }

.service-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.5rem;
  letter-spacing: 0.25em;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 0.25rem 0.7rem;
  font-weight: 600;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  filter: grayscale(30%);
  transition: filter 0.4s ease;
}

.service-card:hover .service-icon { filter: grayscale(0%); }

.service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}

.service-meta { position: relative; z-index: 1; }

.service-duration {
  font-size: 0.7rem;
  color: var(--white-muted);
  letter-spacing: 0.15em;
  font-weight: 300;
}

.service-price {
  font-family: var(--font-accent);
  font-size: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--accent-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.service-line {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transition: width 0.6s var(--ease-out-expo);
}

.service-card:hover .service-line { width: 80%; }

.service-card.featured { background: var(--black-light); }

/* ========================================
   EXPERIENCE — Porsche showroom pillars
   ======================================== */
#experience {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 77, 0, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
    var(--black);
}

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

.experience-card {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--black);
  transition: all 0.6s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.experience-card:hover {
  background: var(--black-light);
}

.experience-card:hover::before { opacity: 1; }

.exp-icon-wrap {
  width: 100px;
  height: 100px;
  margin: 0 auto 2rem;
  position: relative;
}

.exp-icon-wrap::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 20px;
  background: radial-gradient(ellipse, var(--gold-glow), transparent);
  filter: blur(8px);
}

.exp-canvas {
  width: 100%;
  height: 100%;
}

.exp-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--accent-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.exp-desc {
  font-size: 0.82rem;
  line-height: 1.8;
  color: var(--white-muted);
  font-weight: 300;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ========================================
   GALLERY — Luxury Masonry
   ======================================== */
#gallery {
  background: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 4px;
}

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

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out-expo), filter 0.5s ease;
  filter: grayscale(20%) contrast(1.05);
}

.gallery-item:hover .gallery-photo {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.1);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #131313 0%, #090909 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s var(--ease-out-expo), filter 0.8s ease;
}

.gallery-placeholder span {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  opacity: 0.15;
  text-align: center;
  line-height: 1.6;
  transition: opacity 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 168, 85, 0.1), rgba(0,0,0,0.4));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  backdrop-filter: blur(2px);
}

.gallery-overlay span {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.6rem 2rem;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);
  transition: all 0.4s ease;
}

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

.gallery-item:hover .gallery-placeholder span { opacity: 0.4; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span:hover {
  background: rgba(200, 168, 85, 0.2);
  border-color: var(--gold);
  color: var(--gold-light);
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery-item.wide { grid-column: span 1; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.tall { grid-row: span 1; }
}

/* ========================================
   TESTIMONIALS — Glassmorphism cards
   ======================================== */
#testimonials {
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 212, 255, 0.03), transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(255, 77, 0, 0.03), transparent 50%),
    var(--black);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  animation: testimonialScroll 30s linear infinite;
  width: max-content;
}

.testimonials-track:hover { animation-play-state: paused; }

@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 400px;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-glass);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.testimonial-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.02), transparent 50%);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(200, 168, 85, 0.15);
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px var(--gold-glow);
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--white-dim);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 2rem;
  letter-spacing: 0.01em;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-blue), var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 0 20px var(--gold-glow);
}

.author-name {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.author-info {
  font-size: 0.65rem;
  color: var(--white-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================================
   BOOKING — Premium interface
   ======================================== */
#booking {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 77, 0, 0.05), transparent 50%),
    radial-gradient(ellipse at 20% 0%, rgba(0, 212, 255, 0.03), transparent 50%),
    var(--black);
}

.booking-container {
  max-width: 720px;
  margin: 0 auto;
}

.booking-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid var(--glass-border);
  padding: 3.5rem;
  border-radius: var(--radius-glass);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
}


.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

.booking-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(200, 168, 85, 0.03), transparent 60%);
  pointer-events: none;
}

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--glass-border);
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.25;
  transition: opacity 0.5s ease;
}

.booking-step.active { opacity: 1; }

.step-number {
  font-family: var(--font-accent);
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--gold), var(--accent-blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  font-weight: 300;
}

.booking-panel { display: none; }

.booking-panel.active {
  display: block;
  animation: fadeSlideIn 0.6s var(--ease-out-expo);
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-panel-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.booking-services {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.booking-service-option { cursor: pointer; }
.booking-service-option input { display: none; }

.service-option-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  transition: all 0.4s var(--ease-out-expo);
}

.booking-service-option input:checked + .service-option-inner {
  border-color: var(--gold);
  background: rgba(200, 168, 85, 0.04);
  box-shadow: 0 0 30px rgba(200, 168, 85, 0.08);
}

.service-option-inner:hover {
  border-color: rgba(200, 168, 85, 0.25);
  background: var(--glass-bg);
}

.service-option-name {
  font-size: 0.88rem;
  font-weight: 400;
}

.service-option-meta {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  font-weight: 400;
}

.calendar-container { margin-bottom: 2rem; }

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.cal-nav {
  background: none;
  border: 1px solid var(--glass-border);
  color: var(--white-dim);
  width: 38px;
  height: 38px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: var(--radius-sm);
}

.cal-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px var(--gold-glow);
}

.cal-month {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}

.calendar-weekdays span {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-muted);
  padding: 0.5rem 0;
  font-weight: 400;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  text-align: center;
  padding: 0.65rem 0;
  font-size: 0.82rem;
  border: 1px solid transparent;
  background: none;
  color: var(--white-dim);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
}

.cal-day:hover:not(.disabled):not(.empty) {
  border-color: rgba(200, 168, 85, 0.4);
  color: var(--gold);
  background: rgba(200, 168, 85, 0.04);
}

.cal-day.selected {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-weight: 600;
  box-shadow: 0 0 20px var(--gold-glow);
}

.cal-day.disabled {
  color: var(--white-muted);
  opacity: 0.25;
  cursor: default;
}

.cal-day.empty { cursor: default; }

.cal-day.today { border-color: rgba(200, 168, 85, 0.2); }

.time-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 1rem;
  font-weight: 300;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.time-slot {
  text-align: center;
  padding: 0.65rem;
  font-size: 0.78rem;
  border: 1px solid var(--glass-border);
  background: none;
  color: var(--white-dim);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: var(--radius-sm);
}

.time-slot:hover {
  border-color: rgba(200, 168, 85, 0.4);
  color: var(--gold);
  background: rgba(200, 168, 85, 0.04);
}

.time-slot.selected {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  box-shadow: 0 0 20px var(--gold-glow);
}

.time-slot.booked {
  background: rgba(255, 50, 50, 0.1);
  border-color: rgba(255, 50, 50, 0.25);
  color: #ff4444;
  opacity: 0.5;
  cursor: not-allowed;
  text-decoration: line-through;
}

.booking-nav-buttons {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group { position: relative; }

.form-input {
  width: 100%;
  padding: 1.1rem 1.2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: all 0.4s ease;
  cursor: pointer;
  border-radius: var(--radius-sm);
}

.form-input:focus {
  border-color: var(--gold);
  background: rgba(200, 168, 85, 0.02);
  box-shadow: 0 0 25px rgba(200, 168, 85, 0.06);
}

.form-label {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.82rem;
  color: var(--white-muted);
  pointer-events: none;
  transition: all 0.4s var(--ease-out-expo);
  font-weight: 300;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  top: -0.5rem;
  left: 1rem;
  font-size: 0.6rem;
  color: var(--gold);
  background: var(--black);
  padding: 0 0.4rem;
  letter-spacing: 0.1em;
}

.booking-summary {
  background: rgba(200, 168, 85, 0.03);
  border: 1px solid rgba(200, 168, 85, 0.1);
  padding: 1.4rem;
  font-size: 0.82rem;
  line-height: 1.9;
  border-radius: var(--radius-sm);
}

.booking-summary strong { color: var(--gold); }

.confirmation-content {
  text-align: center;
  padding: 2.5rem 0;
}

.confirmation-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: confirmPop 0.6s var(--ease-out-expo);
  box-shadow: 0 0 40px var(--gold-glow);
}

@keyframes confirmPop {
  from { transform: scale(0) rotate(-180deg); opacity: 0; }
  to { transform: scale(1) rotate(0); opacity: 1; }
}

.confirmation-text {
  color: var(--white-muted);
  margin-bottom: 2rem;
  font-weight: 300;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .booking-card { padding: 2rem; }
  .booking-steps { gap: 1rem; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================
   CONTACT — Elegant grid
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.2rem;
  align-items: start;
  transition: transform 0.4s var(--ease-out-expo);
}

.contact-item:hover { transform: translateX(6px); }

.contact-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
  background: var(--glass-bg);
}

.contact-item:hover .contact-icon {
  border-color: rgba(200, 168, 85, 0.3);
  box-shadow: 0 0 20px var(--gold-glow);
}

.contact-item h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.contact-item p {
  font-size: 0.82rem;
  color: var(--white-muted);
  font-weight: 300;
  line-height: 1.7;
}

.text-muted { opacity: 0.5; }

.contact-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  width: 50px;
  height: 50px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  background: var(--glass-bg);
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-map {
  height: 420px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-glass);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { height: 300px; }
}

/* ========================================
   FOOTER — Minimal luxury
   ======================================== */
#footer {
  padding: 5rem 0 2.5rem;
  text-align: center;
  position: relative;
}

#footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.footer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background:
    radial-gradient(ellipse at 40% 50%, rgba(255, 77, 0, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 60% 50%, rgba(0, 212, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.footer-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 90px;
  height: auto;
  opacity: 0.9;
  transition: opacity 0.4s ease;
}

.footer-logo-img:hover {
  opacity: 1;
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--white-muted);
  letter-spacing: 0.3em;
  margin-bottom: 2rem;
  font-weight: 300;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.footer-social {
  width: 42px;
  height: 42px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-muted);
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
}

.footer-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--gold-glow);
}

.footer-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
  margin: 0 auto 2rem;
}

.footer-copy {
  font-size: 0.62rem;
  color: var(--white-muted);
  opacity: 0.4;
  letter-spacing: 0.15em;
  font-weight: 300;
}


/* ========================================
   SCROLL ANIMATIONS — Cinematic reveals
   ======================================== */
[data-animate] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s var(--ease-out-expo), transform 1s var(--ease-out-expo);
}

[data-animate="fade-right"] {
  transform: translateX(-60px);
}

[data-animate="fade-left"] {
  transform: translateX(60px);
}

[data-animate].animated {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* ========================================
   BARBERS — Choose Your Barber
   ======================================== */
#barbers {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 77, 0, 0.05), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(0, 212, 255, 0.04), transparent 50%),
    var(--black);
}

.barbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.barber-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-glass);
  overflow: hidden;
  transition: all 0.6s var(--ease-out-expo);
}

.barber-card:hover {
  border-color: rgba(255, 77, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 40px rgba(255, 77, 0, 0.08);
}

.barber-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.barber-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo), filter 0.5s ease;
  filter: grayscale(30%) contrast(1.1);
}

.barber-card:hover .barber-photo img {
  transform: scale(1.06);
  filter: grayscale(0%) contrast(1.05);
}

.barber-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--black-hover), var(--black-light));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}

.barber-photo-placeholder .placeholder-initial {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--accent-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 2rem;
  color: #fff;
}

.barber-photo-placeholder span.placeholder-add {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.barber-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 50%);
  pointer-events: none;
}

.barber-info {
  padding: 1.8rem;
  position: relative;
}

.barber-name {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.barber-specialty {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.barber-desc {
  font-size: 0.82rem;
  color: var(--white-muted);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.barber-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 77, 0, 0.3);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
}

.barber-book-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
  z-index: -1;
}

.barber-book-btn:hover {
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 25px var(--gold-glow);
}

.barber-book-btn:hover::before { transform: scaleX(1); }

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

/* ========================================
   GALLERY — Photo-ready with Lightbox
   ======================================== */
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(5, 8, 14, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  animation: lightboxIn 0.4s var(--ease-out-expo);
}

@keyframes lightboxIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 2;
}

.lightbox-close:hover { color: var(--gold); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  color: var(--white);
  width: 50px;
  height: 50px;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.lightbox-caption {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-muted);
}

@media (max-width: 600px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-prev, .lightbox-next { width: 40px; height: 40px; font-size: 1.4rem; }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
  .section { padding: 6rem 0; }
  .section-container { padding: 0 1.5rem; }
  .nav-container { padding: 0 1.5rem; }
  .section-header { margin-bottom: 3rem; }
}
