/* ============================================================
   V4BOOK BARBER — Main Stylesheet
   Premium dark editorial aesthetic
   ============================================================ */

/* --- Fonts --- */
/* --- Variables --- */
:root {
  --gold: #FFD700;
  --gold-dim: #c9a800;
  --gold-glow: rgba(255, 215, 0, 0.15);
  --gold-border: rgba(255, 215, 0, 0.25);
  --black: #000000;
  --near-black: #0a0a0a;
  --charcoal: #111111;
  --charcoal-2: #181818;
  --charcoal-3: #1e1e1e;
  --charcoal-4: #242424;
  --smoke: #2a2a2a;
  --text-primary: #f5f0e8;
  --text-secondary: #a09a8e;
  --text-muted: #6b6460;
  --white: #ffffff;

  --font-display: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-condensed: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --section-pad: clamp(56px, 6vw, 92px);
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 8px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  background: #0c0c0f;
  color-scheme: dark;
}
body {
  background: var(--near-black);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- Utility --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(255,215,0,0.3); }
.btn-outline {
  border: 1px solid var(--gold-border);
  color: var(--text-primary);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.btn-ghost {
  color: var(--gold);
  padding-left: 0;
  padding-right: 0;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.btn-ghost:hover::after { transform: scaleX(1); }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================================
   NAV
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled {
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,215,0,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 60px);
  transition: padding 0.4s ease;
}
#nav.scrolled .nav-inner { padding-top: 16px; padding-bottom: 16px; }
.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  color: var(--gold);
  line-height: 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

html[data-theme="light"] .nav-logo img {
  filter: none;
}

html[data-theme="light"] .footer-logo {
  color: #111827;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 24px !important;
  font-size: 12px !important;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.nav-staff-login {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 10px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.nav-install-btn {
  width: 36px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.nav-install-btn.show {
  display: inline-flex;
}

.nav-install-btn svg {
  width: 17px;
  height: 17px;
}

.website-install-help {
  position: fixed;
  inset: 0;
  z-index: 5001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.website-install-help.open {
  display: flex;
}

.website-install-help-panel {
  position: relative;
  width: min(430px, 100%);
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(12, 12, 15, 0.98));
  border: 1px solid rgba(255, 215, 0, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.website-install-help-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 22px;
  line-height: 1;
}

.website-install-help-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}

.website-install-help-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.website-install-help h2 {
  color: var(--text-primary);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.website-install-help-body {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.website-install-help-body ol {
  display: grid;
  gap: 8px;
  margin: 12px 0 0 20px;
  list-style: decimal;
}

.website-install-help-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--text-muted);
  font-size: 13px;
}

.website-staff-login {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.website-staff-login.open {
  display: flex;
}

.website-staff-login-panel {
  position: relative;
  width: min(420px, 100%);
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.98), rgba(12, 12, 15, 0.98));
  border: 1px solid rgba(255, 215, 0, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.website-staff-login-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 22px;
  line-height: 1;
}

.website-staff-login-brand {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
}

.website-staff-login-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.website-staff-login-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.website-staff-login h2 {
  color: var(--text-primary);
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 8px;
}

.website-staff-login-copy {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
}

.website-staff-login-form {
  display: grid;
  gap: 12px;
}

.website-staff-login-form label {
  display: grid;
  gap: 7px;
}

.website-staff-login-form span {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.website-staff-login-form input {
  width: 100%;
  height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  padding: 0 12px;
  font: inherit;
  outline: none;
}

.website-staff-login-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.website-staff-login-error {
  min-height: 18px;
  color: #ff8f8f;
  font-size: 13px;
}

.website-staff-login-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.website-staff-login-secondary,
.website-staff-login-primary {
  min-height: 44px;
  border-radius: 8px;
  font-weight: 900;
}

.website-staff-login-secondary {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.website-staff-login-primary {
  color: #0a0a0a;
  background: var(--gold);
}

.website-staff-login-primary:disabled {
  opacity: 0.72;
  cursor: wait;
}

html[data-theme="light"] .website-staff-login {
  background: rgba(22, 28, 45, 0.42);
}

html[data-theme="light"] .website-staff-login-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 251, 0.98));
  border-color: rgba(212, 140, 0, 0.22);
}

html[data-theme="light"] .website-staff-login-close,
html[data-theme="light"] .website-staff-login-secondary,
html[data-theme="light"] .website-staff-login-form input {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] .nav-install-btn {
  color: #151720;
  background: rgba(238, 242, 248, 0.92);
  border-color: rgba(22, 28, 45, 0.1);
}

html[data-theme="light"] .website-install-help {
  background: rgba(22, 28, 45, 0.42);
}

html[data-theme="light"] .website-install-help-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 251, 0.98));
  border-color: rgba(212, 140, 0, 0.22);
}

html[data-theme="light"] .website-install-help-close {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
}

/* Mobile nav */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(0,0,0,0.97);
  border-top: 1px solid rgba(255,215,0,0.08);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.nav-mobile-menu.open { max-height: 400px; }
html[data-theme="light"] .nav-mobile-menu {
  background: rgba(255, 255, 255, 0.98);
  border-top-color: rgba(22, 28, 45, 0.1);
  box-shadow: 0 24px 72px rgba(22, 28, 45, 0.16);
}
.nav-mobile-menu a {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 18px clamp(20px, 5vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition), background var(--transition);
}
html[data-theme="light"] .nav-mobile-menu a {
  color: #414858;
  border-bottom-color: rgba(22, 28, 45, 0.08);
}
.nav-mobile-menu a:hover { color: var(--gold); background: var(--gold-glow); }
html[data-theme="light"] .nav-mobile-menu a:hover {
  color: #9a6705;
  background: rgba(212, 140, 0, 0.1);
}
.nav-mobile-menu .mobile-book-btn {
  margin: 20px clamp(20px, 5vw, 60px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: var(--radius);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-mobile-actions { display: flex; }
  .nav-burger { display: flex; }
  .nav-mobile-menu { display: flex; }

  .theme-toggle-mobile {
    display: inline-flex;
    justify-content: flex-start;
    gap: 12px;
    width: auto;
    height: auto;
    margin: 14px clamp(20px, 5vw, 60px) 0;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 800;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-actions {
    display: flex;
  }

  .nav-burger {
    display: flex;
  }

  .nav-mobile-menu {
    display: flex;
    max-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .nav-mobile-menu.open {
    max-height: calc(100dvh - 80px);
  }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.7) 100%),
    linear-gradient(135deg, var(--near-black) 0%, #1a1208 50%, #0d0d0d 100%);
  z-index: 0;
}
/* Grain texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.hero-image-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
  transition: transform 8s ease;
}
.hero-image-bg.loaded { transform: scale(1.04); }
/* Placeholder gradient when no image */
.hero-image-bg.placeholder {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 30%, #111 60%, #0d0d0d 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%),
    linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 50%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(20px, 5vw, 60px);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 0.3s forwards;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 180px);
  font-weight: 600;
  line-height: 0.9;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s 0.5s forwards;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 0.7s forwards;
  letter-spacing: 0.02em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s 0.9s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: heroFadeUp 0.8s 1.2s forwards;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
.hero-scroll-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-transform: uppercase;
  transform: rotate(90deg);
  margin-top: 4px;
}
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================================
   BARBERS
   ============================================================ */
#barbers {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  overflow: hidden;
}
.barbers-header {
  padding: 0 clamp(20px, 5vw, 60px);
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.barbers-track-wrap {
  overflow: hidden;
  position: relative;
}
.barbers-track-wrap::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, transparent, var(--charcoal));
  pointer-events: none;
  z-index: 2;
}
.barbers-track {
  display: flex;
  gap: 24px;
  padding: 0 clamp(20px, 5vw, 60px) 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.barbers-track::-webkit-scrollbar { display: none; }
.barbers-track.dragging { cursor: grabbing; }
.barber-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
}
.barber-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
}
.barber-card:hover .barber-card-overlay {
  opacity: 1;
}
.barber-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: var(--charcoal-3);
}
.barber-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(160deg, var(--charcoal-3) 0%, var(--smoke) 100%);
}
.barber-img-placeholder svg {
  width: 48px;
  height: 48px;
  color: var(--text-muted);
  opacity: 0.4;
}
.barber-img-placeholder span {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.barber-img-default {
  isolation: isolate;
  overflow: hidden;
  padding: 22px;
}
.barber-img-default::before {
  content: 'V4';
  position: absolute;
  right: -16px;
  bottom: -18px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.035);
  font-size: clamp(82px, 9vw, 140px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
}
.barber-default-mark {
  width: 86px;
  height: 86px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: #030303;
  border: 1px solid rgba(242, 207, 128, 0.36);
  color: #f2cf80 !important;
  font-size: 25px !important;
  font-weight: 900;
  letter-spacing: -0.04em !important;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}
.barber-default-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}
.barber-default-role {
  max-width: 180px;
  text-align: center;
  color: var(--text-secondary) !important;
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.04em !important;
  text-transform: none !important;
}
.barber-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.barber-card:hover .barber-img-wrap img { transform: scale(1.05); }
.barber-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.barber-card-overlay-text {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.barber-card-body {
  padding: 20px 24px 24px;
}
.barber-card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.barber-card-title {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.barber-card-specialty {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.barbers-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 32px clamp(20px, 5vw, 60px) 0;
}
.barbers-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
}
.barbers-nav button:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}
.barbers-nav button svg { width: 18px; height: 18px; }

@media (min-width: 901px) {
  .barbers-track-wrap {
    padding-inline: 72px;
  }

  .barbers-track {
    padding-inline: 0;
  }

  .barbers-nav {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    pointer-events: none;
  }

  .barbers-nav button {
    width: 54px;
    height: 54px;
    pointer-events: auto;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  }

  .barbers-nav button svg {
    width: 22px;
    height: 22px;
  }
}

/* Barber Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.barber-modal {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,215,0,0.1);
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--smoke) transparent;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
}
.modal-overlay.open .barber-modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  z-index: 10;
}
.modal-close:hover { border-color: var(--gold); color: var(--gold); }
.modal-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  position: relative;
}
.modal-img {
  aspect-ratio: 2/3;
  object-fit: cover;
  width: 100%;
  background: var(--charcoal-3);
}
.modal-img-placeholder {
  aspect-ratio: 2/3;
  background: linear-gradient(160deg, var(--charcoal-3) 0%, var(--smoke) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-img-placeholder svg { width: 48px; height: 48px; color: var(--text-muted); opacity: 0.3; }
.modal-info {
  padding: 32px 60px 32px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.modal-role {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.modal-bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.modal-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.modal-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.modal-meta-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.modal-meta-value {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}
.modal-body {
  padding: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.modal-availability {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 140, 0, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.modal-availability-label {
  margin: 0 0 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.modal-availability-value {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.modal-availability-note {
  margin: 10px 0 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}
#modal-book-link {
  flex: 0 0 auto;
}
.modal-instagram-label {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-instagram-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.06);
}
.modal-posts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.modal-post-placeholder {
  aspect-ratio: 1;
  background: var(--charcoal-3);
  border: 1px dashed rgba(255,215,0,0.1);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-muted);
}
.modal-post-placeholder span {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .modal-header { grid-template-columns: 1fr; }
  .modal-img, .modal-img-placeholder { aspect-ratio: 16/9; }
  .modal-info { padding: 24px; }
  .modal-availability { align-items: stretch; flex-direction: column; }
  #modal-book-link { width: 100%; justify-content: center; }
  .modal-posts-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: var(--section-pad) 0;
  background: var(--near-black);
  position: relative;
}
#products {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
}
#booking {
  position: relative;
  z-index: 1;
  display: block;
  padding: var(--section-pad) 0;
  scroll-margin-top: 104px;
  background:
    radial-gradient(circle at 88% 4%, rgba(212, 140, 0, 0.12), transparent 28%),
    linear-gradient(180deg, var(--charcoal), var(--near-black));
}
#booking.open {
  opacity: 1;
}
#booking > .container {
  position: relative;
  width: min(1500px, 100%);
  height: auto;
  max-height: none;
  overflow: visible;
  padding: 0 20px;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.booking-panel-close {
  display: none;
}
.booking-panel-close svg {
  width: 20px;
  height: 20px;
}
#booking .reveal {
  opacity: 1;
  transform: none;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,215,0,0.2), transparent);
}
.services-header {
  margin-bottom: 56px;
}
.service-filter {
  margin: -22px 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.service-filter-group {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.service-filter-label {
  padding: 0 6px 0 10px;
  color: var(--text-muted);
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service-filter-btn {
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 800;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}
.service-filter-btn:hover,
.service-filter-btn.active {
  color: #f2cf80;
  background: rgba(212, 140, 0, 0.13);
  border-color: rgba(212, 140, 0, 0.24);
}
.service-filter-status {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}
.service-filter-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border-radius: 16px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.products-header {
  margin-bottom: 56px;
}
.booking-header {
  margin-bottom: 34px;
}
.site-booking {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 18px;
  align-items: start;
}
.site-booking-progress {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.site-booking-progress button {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 13px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid transparent;
  font-weight: 900;
  text-align: left;
}
.site-booking-progress button:disabled {
  opacity: 0.52;
  cursor: not-allowed;
}
.site-booking-progress button span {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #15110a;
  background: rgba(255, 255, 255, 0.28);
  font-size: 12px;
}
.site-booking-progress button strong {
  color: inherit;
  font-size: 12px;
}
.site-booking-progress button.active,
.site-booking-progress button.done {
  color: #f2cf80;
  background: rgba(212, 140, 0, 0.13);
  border-color: rgba(212, 140, 0, 0.24);
}
.site-booking-progress button.active span,
.site-booking-progress button.done span {
  background: var(--gold);
}
.site-booking-main,
.site-booking-summary {
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
    rgba(17, 18, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}
.site-booking-main {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 30px);
}
.site-booking-summary {
  position: sticky;
  top: 150px;
  padding: 18px;
}
.site-booking-step {
  display: none;
  gap: 10px;
}
.site-booking-step.active {
  display: grid;
}
.site-booking-step-head {
  display: grid;
  gap: 8px;
  max-width: 780px;
  margin-bottom: 6px;
}
.site-booking-step-head h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.96;
  letter-spacing: -0.045em;
}
.site-booking-step-head p:not(.site-booking-label) {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.site-booking-label {
  margin: 0;
  color: #f2cf80;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-booking-services,
.site-booking-barbers,
.site-booking-dates,
.site-booking-slots {
  display: grid;
  gap: 8px;
}
.site-booking-services {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.site-booking-barbers,
.site-booking-slots {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.site-booking-dates {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.site-booking-services button,
.site-booking-barbers button,
.site-booking-dates button,
.site-booking-slots button {
  min-height: 48px;
  padding: 12px;
  border-radius: 14px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
  font-weight: 900;
  transition: border-color var(--transition), background var(--transition), transform 160ms ease, box-shadow var(--transition);
}
.site-booking-barbers button {
  min-height: 126px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}
.site-booking-barber-mark {
  width: 90px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 16px;
  background: #030303;
  border: 1px solid rgba(242, 207, 128, 0.34);
  overflow: hidden;
}
.site-booking-barber-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.site-booking-services button:hover,
.site-booking-barbers button:hover,
.site-booking-dates button:hover,
.site-booking-slots button:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 140, 0, 0.3);
}
.site-booking-services .site-booking-service-card {
  position: relative;
  min-height: 220px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 24px;
  overflow: hidden;
  align-content: start;
  border-top: 2px solid transparent;
}
.site-booking-services .site-booking-service-card::after {
  content: '';
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  opacity: 0.78;
}
.site-booking-services .site-booking-service-card.active {
  border-top-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 140, 0, 0.16), 0 18px 42px rgba(0, 0, 0, 0.22);
}
.site-booking-services .site-booking-service-card.active::after {
  content: '✓';
  display: grid;
  place-items: center;
  color: #15110a;
  background: var(--gold);
  border-color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}
.site-booking-service-line {
  width: 48px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #6f91df);
}
.site-booking-service-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.site-booking-service-head strong {
  color: var(--text-primary);
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}
.site-booking-service-head em {
  flex: 0 0 auto;
  padding: 4px 9px;
  border-radius: 999px;
  color: #f2cf80;
  background: rgba(212, 140, 0, 0.14);
  border: 1px solid rgba(212, 140, 0, 0.22);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}
.site-booking-service-desc {
  display: block;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
.site-booking-service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: end;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-booking-service-meta span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  color: #f2cf80;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 900;
}
.site-booking-dates button,
.site-booking-slots button {
  text-align: center;
}
.site-booking-slots button {
  position: relative;
}
.site-booking-slots button span {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2px 7px;
  border-radius: 999px;
  color: #15110a;
  background: var(--gold);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-booking-slots .site-booking-best-slot:not(.active) {
  border-color: rgba(212, 140, 0, 0.34);
  background: rgba(212, 140, 0, 0.08);
  animation: siteSlotPulse 2.8s ease-in-out infinite 0.4s;
}
@keyframes siteSlotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 140, 0, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(212, 140, 0, 0); }
}
.site-booking-cash {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 4px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(212, 140, 0, 0.1);
  border: 1px solid rgba(212, 140, 0, 0.22);
}
.site-booking-cash[hidden] {
  display: none;
}
.site-booking-cash strong,
.site-booking-cash span {
  display: block;
}
.site-booking-cash strong {
  margin: 4px 0;
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 900;
}
.site-booking-cash > div > span {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
}
.site-booking-cash-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.site-booking-cash-toggle button {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--text-secondary);
  background: transparent;
  border: 0;
  font-size: 12px;
  font-weight: 900;
}
.site-booking-cash-toggle button.active {
  color: #15110a;
  background: var(--gold);
}
.site-booking-services button.active,
.site-booking-barbers button.active,
.site-booking-dates button.active,
.site-booking-slots button.active {
  color: #f2cf80;
  background: rgba(212, 140, 0, 0.13);
  border-color: rgba(212, 140, 0, 0.28);
}
.site-booking-services strong,
.site-booking-services span,
.site-booking-barbers strong,
.site-booking-barbers span {
  display: block;
}
.site-booking-services span,
.site-booking-barbers span {
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 12px;
}
.site-booking-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  color: var(--text-secondary);
}
.site-booking-form {
  display: contents;
}
.site-booking-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.site-booking-note-field {
  grid-column: 1 / -1;
}
.site-booking-form label {
  display: grid;
  gap: 6px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 900;
}
.site-booking-form input {
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font: inherit;
}
.site-booking-form button {
  min-height: 44px;
  width: fit-content;
  margin-top: 4px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #15110a;
  background: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}
.site-booking-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-booking-actions button {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
}
.site-booking-back {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.site-booking-back:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.site-booking-forward {
  color: #15110a;
  background: var(--gold);
}
.site-booking-review,
.site-booking-summary-rows {
  display: grid;
  gap: 8px;
}
.site-booking-review div,
.site-booking-summary-rows div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-booking-review span,
.site-booking-summary-rows span {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 900;
}
.site-booking-review strong,
.site-booking-summary-rows strong {
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}
.site-booking-summary h3 {
  margin: 14px 0 10px;
  color: var(--text-primary);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.site-booking-summary p {
  color: var(--text-secondary);
}
.site-booking-summary-toggle {
  min-height: 36px;
  margin: 12px 0 4px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #15110a;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}
.site-booking-summary:not(.open) .site-booking-summary-rows {
  display: none;
}
.site-booking-status {
  margin-top: 18px;
  min-height: 22px;
  font-weight: 900;
}
.site-booking-status[data-tone="ok"] { color: #45d18a; }
.site-booking-status[data-tone="warn"] { color: #f2cf80; }
.site-booking-mobile-cta {
  display: none;
}
.site-booking-success {
  position: fixed;
  inset: 0;
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.64);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.site-booking-success.open {
  display: flex;
}
.site-booking-success-panel {
  position: relative;
  width: min(430px, 100%);
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 26px 22px 22px;
  border-radius: 18px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(45, 216, 138, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(24, 27, 36, 0.98), rgba(13, 14, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  animation: siteConfirmIn 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}
.site-booking-success-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 22px;
  line-height: 1;
}
.site-booking-success-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #2dd88a;
  background: rgba(45, 216, 138, 0.1);
  border: 1px solid rgba(45, 216, 138, 0.24);
  animation: siteConfirmIcon 520ms cubic-bezier(0.34, 1.56, 0.64, 1) 120ms both;
}
.site-booking-success-icon svg {
  width: 30px;
  height: 30px;
}
.site-booking-success h3 {
  margin: 4px 0 0;
  color: var(--text-primary);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}
.site-booking-success p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 800;
}
.site-booking-success-panel > button:last-child {
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 999px;
  color: #15110a;
  background: var(--gold);
  font-weight: 900;
}
@keyframes siteConfirmIn {
  from { opacity: 0; transform: translateY(18px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes siteConfirmIcon {
  from { transform: scale(0) rotate(-18deg); }
  65% { transform: scale(1.14) rotate(5deg); }
  to { transform: scale(1) rotate(0); }
}
.product-card {
  min-height: 420px;
  padding: 0;
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}

.product-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 28%, rgba(212, 140, 0, 0.2), transparent 36%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

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

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

.product-image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-placeholder span {
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(72px, 10vw, 130px);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.product-card-body {
  padding: 22px 24px 6px;
}

.product-card .service-popular {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  margin: 0;
}

.product-category {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.product-card .service-footer {
  margin-top: auto;
  padding: 16px 24px 22px;
}
.products-note {
  margin-top: 20px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}
.service-card {
  background: var(--charcoal);
  padding: 28px 28px 24px;
  transition: background var(--transition), border-color var(--transition);
  position: relative;
  border: 1px solid transparent;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 28px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { background: var(--charcoal-2); }
.service-card:hover::before { width: calc(100% - 56px); }
.service-popular {
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 12px;
}
.service-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.service-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.service-meta {
  display: flex;
  gap: 16px;
}
.service-duration, .service-price {
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-duration { color: var(--text-muted); }
.service-price { color: var(--gold); font-size: 16px; font-weight: 600; }
.service-cash-discount {
  color: #2dd88a;
  border-color: rgba(45, 216, 138, 0.32);
  background: rgba(45, 216, 138, 0.08);
}

.service-cash-discount svg {
  width: 14px;
  height: 14px;
}

.service-book-btn {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
  padding: 8px 0;
}
.service-card:hover .service-book-btn { color: var(--gold); }
.service-book-btn svg { width: 14px; height: 14px; }
.services-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ============================================================
   INSTAGRAM / LATEST STYLES
   ============================================================ */
#instagram {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  position: relative;
}

#style-finder {
  padding: var(--section-pad) 0;
  background: var(--near-black);
  position: relative;
}

.style-finder-header {
  margin-bottom: 30px;
}

.style-finder-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.style-finder-filters button {
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12px;
  font-weight: 900;
  transition: color var(--transition), background var(--transition), border-color var(--transition);
}

.style-finder-filters button:hover,
.style-finder-filters button.active {
  color: #f2cf80;
  background: rgba(212, 140, 0, 0.13);
  border-color: rgba(212, 140, 0, 0.26);
}

.style-finder-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.style-finder-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 18px;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
    rgba(17, 18, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.style-finder-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 140, 0, 0.34);
}

.style-finder-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 34%, rgba(212, 140, 0, 0.18), transparent 36%),
    rgba(255, 255, 255, 0.04);
}

.style-finder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.style-finder-card:hover .style-finder-media img {
  transform: scale(1.035);
}

.style-finder-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.style-finder-chip {
  position: absolute;
  top: 12px;
  left: 12px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  color: #15110a;
  background: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.style-finder-body {
  flex: 1;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.style-finder-num {
  color: #f2cf80;
  font-size: 12px;
  font-weight: 900;
}

.style-finder-body h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.style-finder-actions {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.style-finder-actions span {
  font-size: 12px;
  font-weight: 900;
}

.style-finder-actions span {
  color: var(--text-muted);
}

.instagram-header {
  margin-bottom: 48px;
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.instagram-card {
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  transition: border-color var(--transition);
  position: relative;
}
.instagram-card:hover { border-color: var(--gold-border); }
.instagram-hover-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 42%, rgba(212, 140, 0, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.1), rgba(5, 5, 6, 0.74));
  color: var(--text-primary);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), backdrop-filter var(--transition);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}
.instagram-hover-play {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #f0b429, #d48c00);
  color: #101116;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}
.instagram-hover-play svg {
  width: 24px;
  height: 24px;
  transform: translateX(2px);
}
@media (hover: hover) and (pointer: fine) {
  .instagram-card:hover .instagram-hover-overlay {
    opacity: 1;
    pointer-events: auto;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
}

/* Skeleton loader */
.insta-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--charcoal-2) 25%, var(--charcoal-3) 50%, var(--charcoal-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.insta-skeleton-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.insta-skeleton svg { width: 32px; height: 32px; color: var(--text-muted); opacity: 0.3; }
.insta-skeleton-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.insta-fallback-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-top: 4px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(212, 140, 0, 0.14);
  border: 1px solid rgba(212, 140, 0, 0.24);
  color: #f2cf80;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.instagram-embed-wrap {
  position: relative;
  min-height: 300px;
}
/* Make embeds fill card */
.instagram-embed-wrap blockquote.instagram-media {
  margin: 0 !important;
  min-width: unset !important;
  width: 100% !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: var(--charcoal-2) !important;
}
.instagram-footer {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.insta-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  font-family: var(--font-condensed);
  letter-spacing: 0.1em;
}

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

/* Lightweight style board: avoids Instagram embed iframes until users tap out. */
.instagram-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.instagram-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  isolation: isolate;
  color: var(--text-primary);
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 140, 0, 0.2), transparent 32%),
    radial-gradient(circle at 78% 64%, rgba(128, 154, 224, 0.15), transparent 30%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(17, 18, 23, 0.92);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
}

.instagram-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 0%, rgba(5, 5, 6, 0.68) 82%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 16px);
  opacity: 0.72;
}

.instagram-card::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  top: 20px;
  height: 1px;
  background: linear-gradient(90deg, #d48c00, transparent);
  opacity: 0.72;
}

.instagram-card:nth-child(2n) {
  background:
    radial-gradient(circle at 34% 26%, rgba(128, 154, 224, 0.2), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(212, 140, 0, 0.16), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(17, 18, 23, 0.92);
}

.instagram-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 140, 0, 0.34);
}

.instagram-card-num {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #f2cf80;
  font-size: 12px;
  font-weight: 900;
}

.instagram-card-mark {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.05);
  font-size: clamp(74px, 8vw, 120px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.instagram-card-icon {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.72);
}

.instagram-card-icon svg {
  width: 20px;
  height: 20px;
}

.instagram-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.instagram-card-caption {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
}

.instagram-card-title {
  color: #fffaf1;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.instagram-card-note {
  min-height: 42px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.instagram-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 8px;
  color: #f2cf80;
  font-size: 13px;
  font-weight: 900;
}

.instagram-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.instagram-card:hover .instagram-card-link svg {
  transform: translate(2px, -2px);
}

.instagram-hover-overlay,
.insta-skeleton,
.instagram-embed-wrap {
  display: none;
}

@media (max-width: 1100px) {
  .style-finder-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .style-finder-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 560px) {
  .style-finder-grid {
    grid-template-columns: 1fr;
  }

  .style-finder-card {
    min-height: 0;
  }

  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .instagram-card {
    min-height: 260px;
  }

  .instagram-card-note {
    min-height: 0;
  }
}

/* Instagram picture carousel: image previews only, no embedded reels. */
.instagram-grid {
  display: flex;
  grid-template-columns: none;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.instagram-grid::-webkit-scrollbar {
  display: none;
}

.instagram-card {
  flex: 0 0 min(360px, 82vw);
  min-height: 0;
  aspect-ratio: 4 / 5;
  display: block;
  padding: 0;
  scroll-snap-align: start;
  background: var(--charcoal-2);
  border-radius: 18px;
}

.instagram-card::before,
.instagram-card::after,
.instagram-card-mark,
.instagram-card-icon,
.instagram-card-title,
.instagram-card-note {
  display: none;
}

.instagram-card-media {
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(circle at 50% 34%, rgba(212, 140, 0, 0.22), transparent 36%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(17, 18, 23, 0.92);
}

.instagram-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.instagram-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 18%, rgba(5, 5, 6, 0.18) 34%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.04), rgba(5, 5, 6, 0.66));
  pointer-events: none;
}

.instagram-card:hover .instagram-card-media img {
  transform: scale(1.035);
}

.instagram-play {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #101116;
  background: linear-gradient(180deg, #ffd978, #d48c00);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.42);
  transform: translate(-50%, -50%);
  transition: transform var(--transition), box-shadow var(--transition);
}

.instagram-play svg {
  width: 30px;
  height: 30px;
  transform: translateX(2px);
}

.instagram-card:hover .instagram-play {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow: 0 24px 64px rgba(212, 140, 0, 0.28), 0 20px 54px rgba(0, 0, 0, 0.42);
}

.instagram-card-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.08);
  font-size: 118px;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.instagram-card.preview-failed .instagram-card-media img {
  display: none;
}

.instagram-card.preview-failed .instagram-card-fallback {
  display: flex;
}

.instagram-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 12px;
  padding: 54px 20px 20px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 6, 0.88));
}

.instagram-card-num {
  position: static;
  grid-row: 1 / 3;
  align-self: end;
  color: #f2cf80;
}

.instagram-card-caption {
  align-self: end;
  color: #fffaf1;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.05;
}

.instagram-card-link {
  margin-top: 0;
}

.instagram-carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.instagram-carousel-nav button {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.instagram-carousel-nav button:hover {
  color: #f2cf80;
  border-color: var(--gold-border);
  background: rgba(212, 140, 0, 0.12);
}

.instagram-carousel-nav svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 560px) {
  .instagram-card {
    flex-basis: 82vw;
    min-height: 0;
  }

  .instagram-carousel-nav {
    justify-content: center;
  }
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  padding: var(--section-pad) 0;
  background: var(--near-black);
}
.gallery-header {
  margin-bottom: 48px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 3px;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--charcoal-2);
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
  filter: brightness(0.85) saturate(0.9);
}
.gallery-item:hover .gallery-img {
  transform: scale(1.06);
  filter: brightness(1) saturate(1.1);
}
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { color: var(--gold); width: 32px; height: 32px; }

/* Gallery placeholder */
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--charcoal-2), var(--charcoal-3));
}
.gallery-placeholder-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(255,215,0,0.1);
  line-height: 1;
}
.gallery-placeholder span {
  font-family: var(--font-condensed);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(12px);
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-inner {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox-img { transform: scale(1); }
.lightbox-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  background: rgba(0,0,0,0.5);
}
.lightbox-close:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-close svg { width: 18px; height: 18px; }
.lightbox-nav {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: rgba(0,0,0,0.5);
  transition: var(--transition);
}
.lightbox-nav:hover { border-color: var(--gold); color: var(--gold); }
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-nav svg { width: 18px; height: 18px; }
.lightbox-caption {
  position: fixed;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-item:first-child { grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .lightbox-nav { display: none; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  overflow: hidden;
  position: relative;
}
#reviews::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,215,0,0.2), transparent);
}
.reviews-header {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.reviews-rating-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 12px 20px;
}
.reviews-rating-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.reviews-stars {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stars {
  display: flex;
  gap: 3px;
}
.star {
  color: var(--gold);
  font-size: 14px;
}
.reviews-count {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.reviews-track {
  display: flex;
  gap: 20px;
  padding: 0 clamp(20px, 5vw, 60px) 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 280px;
  max-width: 360px;
  scroll-snap-align: start;
  background: var(--charcoal-2);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--gold-border); }
.review-quote-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.5;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 16px;
  display: block;
}
.review-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-name {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}
.review-date {
  font-size: 11px;
  color: var(--text-muted);
}
.review-stars { display: flex; gap: 2px; }
.review-stars .star { font-size: 11px; }
.reviews-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 40px clamp(20px, 5vw, 60px) 0;
}

/* ============================================================
   LOCATION
   ============================================================ */
#location {
  padding: var(--section-pad) 0;
  background: var(--near-black);
}
.location-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}
.location-info {
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
    var(--charcoal);
}
.location-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.location-spaces-card {
  width: min(100%, 360px);
  margin: 2px 0 14px;
  padding: 12px 14px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(22, 28, 45, 0.1);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}
.location-spaces-card img {
  width: 100%;
  height: auto;
  display: block;
}
.location-spaces-card figcaption {
  margin-top: 8px;
  color: #414858;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}
.location-address-line {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.45vw, 18px);
  font-weight: 300;
  color: var(--text-primary);
  line-height: 1.35;
}
.location-hours {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 14px;
}
.hours-title {
  grid-column: 1 / -1;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hours-day {
  font-family: var(--font-condensed);
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}
.hours-time {
  font-size: 13px;
  color: var(--text-primary);
  font-weight: 500;
}
.hours-closed { color: var(--text-muted); }
.location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.location-actions a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: var(--transition);
  justify-content: center;
}
.location-actions a:hover {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-glow);
}
.location-actions a svg { width: 18px; height: 18px; flex-shrink: 0; }
.location-actions a.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  font-weight: 700;
}
.location-actions a.primary:hover {
  background: #ffe033;
  box-shadow: 0 6px 24px rgba(255,215,0,0.3);
}
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  min-height: 430px;
  height: 100%;
  position: relative;
  background: var(--charcoal-2);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: none;
}

html:not([data-theme="light"]) .map-container iframe {
  filter: grayscale(0.18) invert(0.9) hue-rotate(180deg) saturate(0.78) brightness(0.88);
}

html[data-theme="light"] .location-info {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.82)),
    #ffffff;
  border-color: rgba(22, 28, 45, 0.1);
  box-shadow: 0 18px 52px rgba(22, 28, 45, 0.08);
}

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .map-container { order: -1; }
  .location-info { padding: 18px; }
  .location-hours,
  .location-actions {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black);
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social a svg { width: 16px; height: 16px; }
.footer-col-title {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--text-secondary); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-legal span,
.footer-legal a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--text-secondary); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .reviews-rating-badge { display: none; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   NOISE / TEXTURE OVERLAY (fixed)
   ============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' 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)'/%3E%3C/svg%3E");
}

/* ============================================================
   V4Book APP-ALIGNED REFINEMENT
   Public site polish, matched to the booking/owner UI language.
   ============================================================ */
:root {
  --gold: #d48c00;
  --gold-dim: #a97210;
  --gold-glow: rgba(212, 140, 0, 0.12);
  --gold-border: rgba(212, 140, 0, 0.28);
  --near-black: #0c0c0f;
  --black: #050506;
  --charcoal: #111217;
  --charcoal-2: #151720;
  --charcoal-3: #1d202a;
  --charcoal-4: #242936;
  --smoke: #343a49;
  --text-primary: #f7f4ee;
  --text-secondary: #c6c1b7;
  --text-muted: #858d9f;
  --font-display: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-condensed: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1240px;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.32), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-card: 0 16px 48px rgba(0, 0, 0, 0.22);
  --section-pad: clamp(42px, 4.5vw, 68px);
  --transition: 180ms ease-out;
  --transition-slow: 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

html[data-theme="light"] {
  color-scheme: light;
  --gold: #d48c00;
  --gold-dim: #99670d;
  --gold-glow: rgba(212, 140, 0, 0.12);
  --gold-border: rgba(212, 140, 0, 0.28);
  --near-black: #f6f7fb;
  --black: #ffffff;
  --charcoal: #ffffff;
  --charcoal-2: #ffffff;
  --charcoal-3: #eef1f7;
  --charcoal-4: #e5e9f2;
  --smoke: #d8deea;
  --text-primary: #151720;
  --text-secondary: #414858;
  --text-muted: #717b8f;
  --shadow-soft: 0 24px 80px rgba(22, 28, 45, 0.12), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  --shadow-card: 0 16px 48px rgba(22, 28, 45, 0.1);
}

body {
  background:
    radial-gradient(circle at 8% 0%, rgba(212, 140, 0, 0.12), transparent 30%),
    radial-gradient(circle at 94% 8%, rgba(67, 102, 180, 0.13), transparent 34%),
    linear-gradient(180deg, #0c0c0f 0%, #111217 44%, #0d0e12 100%);
  letter-spacing: 0;
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 8% 0%, rgba(212, 140, 0, 0.12), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(67, 102, 180, 0.12), transparent 32%),
    linear-gradient(180deg, #f8f9fc 0%, #eef2f8 46%, #ffffff 100%);
}

.container {
  padding-inline: clamp(18px, 4vw, 56px);
}

.section-label,
.hero-eyebrow,
.nav-links a,
.btn,
.barber-card-title,
.service-popular,
.footer-col-title,
.modal-role,
.modal-meta-label,
.modal-instagram-label {
  letter-spacing: 0.08em;
}

.section-label {
  color: color-mix(in srgb, var(--gold) 82%, #fff 18%);
  font-size: 12px;
  text-transform: none;
}

.section-label::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #18a66a;
  box-shadow: 0 0 0 6px rgba(24, 166, 106, 0.1);
}

.section-title,
.hero-title,
.barber-card-name,
.service-name,
.modal-name,
.location-title {
  letter-spacing: -0.045em;
}

.section-title {
  max-width: 760px;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 72px);
}

.section-title em {
  color: var(--text-primary);
  font-style: normal;
  background: linear-gradient(90deg, #f6d07d, #d48c00 56%, #9cb6f2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  border-radius: 999px;
  min-height: 46px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
  box-shadow: none;
}

.btn-primary {
  background: linear-gradient(180deg, #f0b429, #d48c00);
  color: #111217;
  border: 1px solid rgba(255, 214, 126, 0.38);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(212, 140, 0, 0.24);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
}

.btn-outline:hover,
.btn-ghost:hover {
  background: rgba(212, 140, 0, 0.12);
  border-color: var(--gold-border);
  color: #f7d891;
}

#nav {
  background: rgba(12, 12, 15, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

#nav.scrolled {
  background: rgba(12, 12, 15, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-inner {
  padding-block: 16px;
}

#nav.scrolled .nav-inner {
  padding-block: 12px;
}

.nav-logo {
  width: 56px;
  height: 56px;
}

.nav-links {
  gap: clamp(12px, 1.55vw, 24px);
}

.nav-links a {
  color: color-mix(in srgb, var(--text-secondary) 86%, transparent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a::after {
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), #7295e7);
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--gold-border);
  background: rgba(212, 140, 0, 0.12);
}

.theme-toggle-icon {
  width: auto;
  height: auto;
  border-radius: 0;
  color: #f2cf80;
  background: transparent;
  box-shadow: none;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
}

html[data-theme="light"] .theme-toggle-icon {
  color: #b88000;
  background: transparent;
  box-shadow: none;
}

.theme-toggle-mobile {
  display: none;
}

.site-trust-roll {
  position: fixed;
  top: 88px;
  left: 0;
  right: 0;
  z-index: 990;
  margin-top: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 0;
  background: rgba(12, 13, 17, 0.92);
  color: var(--text-secondary);
}

#nav.scrolled + .site-trust-roll {
  top: 80px;
}

.site-trust-track {
  width: max-content;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  will-change: transform;
  animation: siteTrustRoll var(--site-trust-duration, 36s) linear infinite;
}

.site-trust-track span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  padding: 0 18px 0 0;
}

.site-trust-track span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2dd88a;
  box-shadow: 0 0 0 5px rgba(45, 216, 138, 0.1);
}

.site-trust-track strong {
  color: #f2cf80;
  font-weight: 900;
}

@keyframes siteTrustRoll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--site-trust-distance, 50%))); }
}

@media (prefers-reduced-motion: reduce) {
  .site-trust-track {
    animation: none;
  }
}

@media (max-width: 900px) {
  .site-trust-roll {
    top: 72px;
  }

  #nav.scrolled + .site-trust-roll {
    top: 72px;
  }

  .site-trust-track {
    min-height: 34px;
    gap: 14px;
    animation-duration: 30s;
  }

  .site-trust-track span {
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .site-trust-roll,
  #nav.scrolled + .site-trust-roll {
    top: 62px;
  }
}

html[data-theme="light"] #nav {
  background: rgba(255, 255, 255, 0.78);
  border-bottom-color: rgba(22, 28, 45, 0.1);
}

html[data-theme="light"] #nav.scrolled {
  background: rgba(255, 255, 255, 0.94);
}

html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .btn-outline,
html[data-theme="light"] .contact-action {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(22, 28, 45, 0.12);
}

html[data-theme="light"] .site-trust-roll {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(22, 28, 45, 0.1);
}

html[data-theme="light"] .btn-primary,
html[data-theme="light"] .mobile-book-btn,
html[data-theme="light"] .nav-cta,
html[data-theme="light"] .book-today-cta {
  color: #111827 !important;
  background: linear-gradient(180deg, #f4b323 0%, #d48c00 100%);
  border-color: rgba(153, 103, 13, 0.42);
  box-shadow: 0 12px 28px rgba(153, 103, 13, 0.18);
}

html[data-theme="light"] .btn-outline,
html[data-theme="light"] .theme-toggle {
  color: #263246;
  border-color: rgba(22, 28, 45, 0.18);
}

html[data-theme="light"] .section-label,
html[data-theme="light"] .hero-eyebrow,
html[data-theme="light"] .service-popular,
html[data-theme="light"] .barber-card-title,
html[data-theme="light"] .product-category,
html[data-theme="light"] .style-modal-kicker,
html[data-theme="light"] .hours-title,
html[data-theme="light"] .footer-col-title {
  color: #9a6705;
}

html[data-theme="light"] .section-label::before,
html[data-theme="light"] .hero-eyebrow::before {
  background: #0f9f6e;
}

html[data-theme="light"] #trust-proof {
  background:
    radial-gradient(circle at 6% 18%, rgba(212, 140, 0, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(249, 244, 235, 0.96), rgba(239, 242, 247, 0.98));
  border-block-color: rgba(22, 28, 45, 0.1);
}

html[data-theme="light"] .trust-proof-copy h2 {
  color: #111827;
}

html[data-theme="light"] .trust-proof-copy p:not(.section-label) {
  color: #3f4a5f;
}

html[data-theme="light"] .trust-proof-stats span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 249, 252, 0.9));
  border-color: rgba(22, 28, 45, 0.12);
  box-shadow: 0 18px 44px rgba(22, 28, 45, 0.08);
}

html[data-theme="light"] .trust-proof-stats strong {
  color: #b77908;
}

html[data-theme="light"] .trust-proof-stats small {
  color: #263246;
}

#hero {
  min-height: 720px;
  isolation: isolate;
}

.hero-bg {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.92), rgba(5, 5, 6, 0.52) 54%, rgba(5, 5, 6, 0.88)),
    radial-gradient(circle at 18% 24%, rgba(212, 140, 0, 0.2), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(71, 112, 210, 0.18), transparent 30%),
    linear-gradient(135deg, #0c0c0f 0%, #181b25 48%, #0c0c0f 100%);
}

.hero-image-bg.placeholder {
  opacity: 0.7;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #0c0c0f 0%, #1d202a 46%, #101116 100%);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(12, 12, 15, 0.12), rgba(12, 12, 15, 0.88)),
    radial-gradient(circle at 30% 42%, transparent 0 22%, rgba(12, 12, 15, 0.5) 58%);
}

.hero-content {
  padding-top: 72px;
}

.hero-eyebrow {
  margin-bottom: 18px;
  color: #d9b15e;
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
}

.hero-eyebrow::before {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #18a66a;
  box-shadow: 0 0 0 6px rgba(24, 166, 106, 0.12);
}

.hero-title {
  font-size: clamp(88px, 17vw, 220px);
  font-weight: 900;
  line-height: 0.78;
  color: #fffaf1;
  text-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.hero-tagline {
  max-width: 720px;
  font-size: clamp(24px, 4vw, 58px);
  line-height: 1;
  font-style: normal;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.05em;
  margin-bottom: 22px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.8s 0.82s forwards;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 700;
}

.hero-actions {
  animation-delay: 1s;
}

.live-availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  margin: 0 0 28px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 800;
}

.live-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #18a66a;
  box-shadow: 0 0 0 6px rgba(24, 166, 106, 0.13);
}

.live-availability.is-muted .live-dot {
  background: #d48c00;
  box-shadow: 0 0 0 6px rgba(212, 140, 0, 0.13);
}

html[data-theme="light"] .live-availability {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(22, 28, 45, 0.1);
  box-shadow: 0 14px 38px rgba(22, 28, 45, 0.08);
}

#barbers,
#services,
#products,
#style-finder,
#instagram,
#gallery,
#reviews,
#location {
  background: transparent;
  position: relative;
}

#barbers,
#services,
#products,
#style-finder,
#instagram,
#gallery,
#reviews,
#location {
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}

html:not([data-theme="light"]) #location {
  background: #0d0e12;
}

#barbers,
#style-finder,
#instagram,
#reviews {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.barbers-track-wrap::after {
  background: linear-gradient(to right, transparent, #111217);
}

.barber-card,
.service-card,
.product-card,
.review-card,
.instagram-card,
.location-card,
.modal-post-placeholder,
.gallery-placeholder {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025)),
    rgba(17, 18, 23, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-card);
}

html[data-theme="light"] .barber-card,
html[data-theme="light"] .service-card,
html[data-theme="light"] .product-card,
html[data-theme="light"] .review-card,
html[data-theme="light"] .instagram-card,
html[data-theme="light"] .location-card,
html[data-theme="light"] .modal-post-placeholder,
html[data-theme="light"] .gallery-placeholder {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,255,255,0.74)),
    rgba(255, 255, 255, 0.88);
  border-color: rgba(22, 28, 45, 0.1);
}

html[data-theme="light"] #barbers,
html[data-theme="light"] #style-finder,
html[data-theme="light"] #instagram,
html[data-theme="light"] #reviews {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(238, 242, 248, 0.34));
  border-block-color: rgba(22, 28, 45, 0.08);
}

.barber-card {
  border-radius: 14px;
}

.barber-card:hover,
.service-card:hover,
.product-card:hover,
.review-card:hover,
.instagram-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 140, 0, 0.32);
}

.barber-img-placeholder,
.modal-img-placeholder,
.gallery-placeholder,
.insta-skeleton,
.modal-post-placeholder {
  background:
    radial-gradient(circle at 26% 18%, rgba(212, 140, 0, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0.055), rgba(255,255,255,0.015));
}

.barber-card-name,
.service-name,
.modal-name {
  font-weight: 800;
}

.barber-card-title,
.service-duration,
.service-price,
.review-date,
.location-hours-row span:first-child {
  color: #d9b15e;
}

.services-grid {
  gap: 12px;
  border: 0;
  overflow: visible;
}

.service-card {
  border-radius: 14px;
}

.service-card::before {
  left: 20px;
  right: 20px;
  width: auto;
  opacity: 0;
  background: linear-gradient(90deg, var(--gold), #6f91df);
}

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

.service-picker {
  margin: 22px 0 0;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 14px;
  align-items: stretch;
}

.service-picker-tabs {
  display: grid;
  gap: 8px;
}

.service-picker-tabs button {
  min-height: 52px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
  font-weight: 900;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.service-picker-tabs button:hover,
.service-picker-tabs button.active {
  color: var(--text-primary);
  background: rgba(212, 140, 0, 0.13);
  border-color: var(--gold-border);
  transform: translateY(-1px);
}

.service-picker-panel {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 3vw, 32px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 140, 0, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    rgba(17, 18, 23, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.service-picker-label {
  margin: 0 0 10px;
  color: #d9b15e;
  font-size: 12px;
  font-weight: 900;
}

.service-picker-panel h3 {
  margin: 0 0 10px;
  color: var(--text-primary);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.service-picker-panel p {
  max-width: 560px;
  color: var(--text-secondary);
  font-size: 15px;
}

.service-picker-meta {
  min-width: 190px;
  display: grid;
  gap: 10px;
  justify-items: stretch;
}

.service-picker-meta span,
.service-picker-meta strong {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  font-weight: 900;
}

html[data-theme="light"] .service-picker-tabs button,
html[data-theme="light"] .service-picker-panel,
html[data-theme="light"] .service-picker-meta span,
html[data-theme="light"] .service-picker-meta strong {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(22, 28, 45, 0.1);
}

.service-popular {
  background: rgba(212, 140, 0, 0.14);
  border: 1px solid rgba(212, 140, 0, 0.22);
  color: #f2cf80;
  border-radius: 999px;
}

.service-book-btn,
.location-actions a {
  border-radius: 999px;
  font-weight: 800;
}

.barbers-nav button,
.carousel-btn,
.lightbox-nav,
.modal-close {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-secondary);
}

.barbers-nav button:hover,
.carousel-btn:hover,
.lightbox-nav:hover,
.modal-close:hover {
  background: rgba(212, 140, 0, 0.12);
  border-color: var(--gold-border);
  color: #f2cf80;
}

.barber-modal,
.lightbox-content {
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 140, 0, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(24, 27, 36, 0.98), rgba(13, 14, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow-soft);
}

.reviews-summary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(15, 16, 21, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: clamp(20px, 4vw, 36px);
}

.reviews-score {
  font-weight: 900;
  letter-spacing: -0.06em;
}

.footer-logo {
  font-family: var(--font-display);
  letter-spacing: -0.06em;
  font-weight: 900;
}

html[data-theme="light"] .footer-logo {
  color: #111827;
}

.footer-social a,
.location-actions a {
  border-radius: 999px;
}

.style-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
  background: rgba(0, 0, 0, 0.78);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.style-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.style-modal-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: calc(100svh - clamp(32px, 8vw, 80px));
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(320px, 0.88fr);
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 140, 0, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(24, 27, 36, 0.98), rgba(13, 14, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.style-modal-img {
  width: 100%;
  height: 100%;
  max-height: calc(100svh - clamp(32px, 8vw, 80px));
  object-fit: contain;
  background: var(--charcoal-3);
}

.style-modal-body {
  min-height: 0;
  overflow: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
}

.style-modal-kicker {
  margin: 0;
  color: #d9b15e;
  font-size: 12px;
  font-weight: 900;
}

.style-modal-body h3 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.style-modal-body p {
  color: var(--text-secondary);
  font-size: 15px;
}

.style-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.style-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.style-modal-close svg {
  width: 18px;
  height: 18px;
}

html[data-theme="light"] .style-modal {
  background: rgba(22, 28, 45, 0.38);
}

html[data-theme="light"] .style-modal-panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(22, 28, 45, 0.1);
}

html[data-theme="light"] .style-modal-close {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(22, 28, 45, 0.12);
}

/* Final public-site refinements */
.service-picker {
  display: none;
}

.service-card {
  min-height: 310px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  padding: 30px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025)),
    rgba(17, 18, 23, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-card);
}

.service-card::before {
  left: 24px;
  right: auto;
  top: 22px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  opacity: 1;
}

.service-card:hover::before {
  width: 72px;
}

.service-name {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.service-desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.service-footer {
  align-self: end;
  min-height: 58px;
  margin-top: 8px;
  padding-top: 18px;
}

.service-meta {
  flex-wrap: wrap;
  gap: 10px;
}

.service-duration,
.service-price,
.service-cash-discount {
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  letter-spacing: 0;
  font-weight: 900;
}

.service-cash-discount {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-condensed);
  font-size: 12px;
  color: #2dd88a;
  background: rgba(45, 216, 138, 0.08);
  border: 1px solid rgba(45, 216, 138, 0.32);
}

.service-book-btn {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(212, 140, 0, 0.12);
  color: #f2cf80;
  letter-spacing: 0.08em;
}

html[data-theme="light"] .service-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.86)),
    #ffffff;
  border-color: rgba(22, 28, 45, 0.1);
  box-shadow: 0 18px 52px rgba(22, 28, 45, 0.09);
}

html[data-theme="light"] .service-filter-group,
html[data-theme="light"] .service-filter-empty,
html[data-theme="light"] .site-booking-main,
html[data-theme="light"] .site-booking-summary,
html[data-theme="light"] .site-booking-success-panel {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(22, 28, 45, 0.1);
}

html[data-theme="light"] .site-booking-service-meta span {
  background: rgba(238, 242, 248, 0.86);
}

html[data-theme="light"] #booking {
  background: rgba(22, 28, 45, 0.38);
}

html[data-theme="light"] #booking > .container,
html[data-theme="light"] .booking-header {
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 140, 0, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,247,251,0.98));
  border-color: rgba(22, 28, 45, 0.12);
}

html[data-theme="light"] .booking-panel-close {
  color: #151720;
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(22, 28, 45, 0.12);
}

html[data-theme="light"] .service-filter-btn:hover,
html[data-theme="light"] .service-filter-btn.active {
  color: #8a5c05;
  background: rgba(212, 140, 0, 0.13);
  border-color: rgba(171, 113, 0, 0.22);
}

html[data-theme="light"] .style-finder-card,
html[data-theme="light"] .style-finder-filters button {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.86)),
    #ffffff;
  border-color: rgba(22, 28, 45, 0.1);
  box-shadow: 0 18px 52px rgba(22, 28, 45, 0.09);
}

html[data-theme="light"] .style-finder-filters button:hover,
html[data-theme="light"] .style-finder-filters button.active {
  color: #8a5c05;
  background: rgba(212, 140, 0, 0.13);
  border-color: rgba(171, 113, 0, 0.22);
}

html[data-theme="light"] .service-duration,
html[data-theme="light"] .service-price {
  color: #263246;
  background: #eef2f8;
  border: 1px solid rgba(22, 28, 45, 0.08);
}

html[data-theme="light"] .service-price {
  color: #8a5c05;
  background: rgba(212, 140, 0, 0.12);
  border-color: rgba(153, 103, 13, 0.18);
}

html[data-theme="light"] .service-cash-discount {
  color: #117a4d;
  background: rgba(20, 150, 92, 0.1);
  border-color: rgba(20, 150, 92, 0.22);
}

html[data-theme="light"] .barber-avatar,
html[data-theme="light"] .barber-default-mark,
html[data-theme="light"] .site-booking-barber-mark {
  background: #030303;
  border-color: rgba(171, 113, 0, 0.42);
  box-shadow: 0 14px 30px rgba(22, 28, 45, 0.16);
}

html[data-theme="light"] .service-book-btn {
  background: #111827;
  color: #fffaf0;
  border: 1px solid rgba(17, 24, 39, 0.92);
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.14);
}

html[data-theme="light"] .service-card:hover .service-book-btn,
html[data-theme="light"] .service-book-btn:hover {
  background: #8a5c05;
  border-color: #8a5c05;
  color: #ffffff;
}

html[data-theme="light"] .barber-card-action,
html[data-theme="light"] .location-actions a {
  color: #263246;
  background: #eef2f8;
  border: 1px solid rgba(22, 28, 45, 0.12);
}

html[data-theme="light"] .barber-card:hover .barber-card-action,
html[data-theme="light"] .barber-card-action:hover,
html[data-theme="light"] .location-actions a:hover {
  color: #ffffff;
  background: #8a5c05;
  border-color: #8a5c05;
}

html[data-theme="light"] .contact-action span,
html[data-theme="light"] .book-today-copy span,
html[data-theme="light"] .site-booking-mobile-cta span {
  color: #8a5c05;
}

html[data-theme="light"] .contact-action strong,
html[data-theme="light"] .site-booking-mobile-cta strong {
  color: #111827;
}

html[data-theme="light"] .book-today-close,
html[data-theme="light"] .site-booking-mobile-cta .site-booking-back {
  color: #263246;
  background: #eef2f8;
  border-color: rgba(22, 28, 45, 0.14);
}

html[data-theme="light"] .barber-modal {
  background:
    radial-gradient(circle at 100% 0%, rgba(212, 140, 0, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,247,251,0.98));
  border-color: rgba(22, 28, 45, 0.12);
}

html[data-theme="light"] .modal-availability {
  background:
    radial-gradient(circle at 0% 0%, rgba(212, 140, 0, 0.11), transparent 36%),
    rgba(255, 255, 255, 0.78);
  border-color: rgba(22, 28, 45, 0.1);
}

html[data-theme="light"] .modal-close {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(22, 28, 45, 0.14);
  color: #414858;
}

html[data-theme="light"] .barbers-track-wrap::after {
  background: linear-gradient(to right, transparent, #f6f7fb);
}

html[data-theme="light"] .instagram-card-media::after {
  background:
    radial-gradient(circle at 50% 42%, transparent 0 18%, rgba(5, 5, 6, 0.1) 34%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.02), rgba(5, 5, 6, 0.58));
}

@media (max-width: 900px) {
  #booking {
    align-items: end;
    padding: 0;
  }

  #booking > .container {
    width: 100%;
    height: 100svh;
    max-height: 100svh;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    transform: translateY(22px);
    transition: transform var(--transition);
  }

  #booking.open > .container {
    transform: translateY(0);
  }

  .booking-panel-close {
    top: max(10px, env(safe-area-inset-top, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
  }

  .site-booking {
    grid-template-columns: 1fr;
  }

  .site-booking-summary {
    position: static;
  }

  .site-booking-services,
  .site-booking-barbers,
  .site-booking-form {
    grid-template-columns: 1fr;
  }

  .site-booking-services .site-booking-service-card {
    min-height: 0;
    padding: 20px;
  }

  .site-booking-dates,
  .site-booking-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-mobile-menu {
    background: rgba(12, 12, 15, 0.98);
    border-top-color: rgba(255, 255, 255, 0.08);
  }

  html[data-theme="light"] .nav-mobile-menu {
    background: rgba(255, 255, 255, 0.98);
    border-top-color: rgba(22, 28, 45, 0.1);
  }

  .nav-mobile-menu a {
    letter-spacing: 0;
    text-transform: none;
    font-weight: 800;
  }

  .nav-logo,
  .nav-logo img {
    width: 48px;
    height: 48px;
  }

  #hero {
    min-height: 660px;
  }
}

@media (max-width: 560px) {
  .hero-title {
    font-size: clamp(76px, 28vw, 118px);
  }

  .hero-tagline {
    font-size: clamp(30px, 10vw, 46px);
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .service-picker,
  .service-picker-panel,
  .style-modal-panel {
    grid-template-columns: 1fr;
  }

  .service-picker-panel {
    min-height: 0;
  }

  .style-modal-img {
    min-height: 300px;
    max-height: 48vh;
    object-fit: cover;
  }

  .style-modal-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   LIVE BOOK TODAY BAR
   ============================================================ */
.book-today-bar {
  position: fixed;
  top: 132px;
  left: 0;
  right: 0;
  z-index: 940;
  display: flex;
  justify-content: center;
  padding: 0 clamp(14px, 4vw, 28px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity var(--transition), transform var(--transition);
}

.book-today-bar.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.book-today-bar.is-hidden {
  display: none;
}

.book-today-inner {
  width: min(760px, 100%);
  min-height: 58px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px 10px 16px;
  border-radius: 999px;
  color: var(--text-primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(12, 12, 15, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

.book-today-pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #18a66a;
  box-shadow: 0 0 0 7px rgba(24, 166, 106, 0.13);
}

.book-today-bar.is-muted .book-today-pulse {
  background: #d48c00;
  box-shadow: 0 0 0 7px rgba(212, 140, 0, 0.14);
}

.book-today-copy {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.book-today-copy span {
  color: #f2cf80;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
}

.book-today-copy strong {
  overflow: hidden;
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.book-today-cta,
.book-today-close {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.book-today-cta {
  padding: 9px 15px;
  color: #15110a;
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.book-today-close {
  width: 38px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.book-today-close svg {
  width: 16px;
  height: 16px;
}

html[data-theme="light"] .book-today-inner {
  color: #151720;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88)),
    rgba(248, 249, 252, 0.92);
  border-color: rgba(22, 28, 45, 0.12);
  box-shadow: 0 18px 54px rgba(22, 28, 45, 0.13);
}

html[data-theme="light"] .book-today-copy strong {
  color: #151720;
}

html[data-theme="light"] .book-today-close {
  color: #4a5162;
  background: rgba(238, 242, 248, 0.86);
  border-color: rgba(22, 28, 45, 0.1);
}

.website-booking-frame-shell {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.website-booking-frame {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border: 0;
  background: #0a0a0a;
}

html[data-theme="light"] .website-booking-frame-shell {
  background: transparent;
  box-shadow: none;
}

@media (max-width: 720px) {
  .website-booking-frame-shell {
    width: 100%;
    border-radius: 18px;
  }

  .website-booking-frame {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .book-today-bar {
    top: 118px;
    padding-inline: 10px;
  }

  .book-today-inner {
    min-height: 56px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 9px;
    padding: 9px 10px 9px 13px;
    border-radius: 18px;
  }

  .book-today-copy span {
    font-size: 10px;
  }

  .book-today-copy strong {
    font-size: 13px;
  }

  .book-today-cta {
    min-height: 36px;
    padding-inline: 12px;
    font-size: 11px;
  }

  .book-today-close {
    display: none;
  }
}

/* ============================================================
   QUICK CONTACT ACTIONS
   Static links only: no API calls or database round trips.
   ============================================================ */
.contact-quick-actions {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.contact-action {
  pointer-events: auto;
  display: inline-grid;
  grid-template-columns: 24px auto;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-items: center;
  min-height: 62px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fffaf1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(15, 17, 22, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.contact-floating-call {
  display: none;
}

.contact-action:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 140, 0, 0.4);
  background:
    linear-gradient(180deg, rgba(212, 140, 0, 0.22), rgba(255, 255, 255, 0.05)),
    rgba(15, 17, 22, 0.94);
}

.contact-action svg {
  grid-row: 1 / 3;
  width: 24px;
  height: 24px;
  color: #f2cf80;
}

.contact-action span,
.contact-action strong {
  line-height: 1.05;
}

.contact-action span {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 800;
}

.contact-action strong {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.contact-whatsapp {
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    #18a66a;
  border-color: rgba(45, 216, 138, 0.5);
  box-shadow: 0 20px 54px rgba(24, 166, 106, 0.28);
}

.contact-book {
  grid-template-rows: auto;
  min-height: 54px;
  padding: 13px 20px;
  color: #0a0a0a;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    var(--gold);
  border-color: rgba(255, 215, 0, 0.72);
  box-shadow: 0 20px 54px rgba(255, 215, 0, 0.24);
}

.contact-book svg {
  grid-row: auto;
}

.contact-book strong {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-book:hover {
  border-color: rgba(255, 215, 0, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.1)),
    #f2c94c;
}

.contact-book svg,
.contact-book span,
.contact-book strong,
html[data-theme="light"] .contact-book,
html[data-theme="light"] .contact-book svg,
html[data-theme="light"] .contact-book span,
html[data-theme="light"] .contact-book strong {
  color: #0a0a0a;
}

.contact-whatsapp:hover {
  border-color: rgba(45, 216, 138, 0.68);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    #128c58;
}

.contact-whatsapp svg,
.contact-whatsapp span,
.contact-whatsapp strong,
html[data-theme="light"] .contact-whatsapp,
html[data-theme="light"] .contact-whatsapp svg,
html[data-theme="light"] .contact-whatsapp span,
html[data-theme="light"] .contact-whatsapp strong {
  color: #ffffff;
}

html[data-theme="light"] .contact-action {
  color: #151720;
  box-shadow: 0 20px 54px rgba(22, 28, 45, 0.14);
}

html[data-theme="light"] .contact-whatsapp {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
    #18a66a;
  border-color: rgba(18, 140, 88, 0.5);
  box-shadow: 0 18px 44px rgba(24, 166, 106, 0.22);
}

html[data-theme="light"] .contact-book {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.08)),
    var(--gold);
  border-color: rgba(212, 140, 0, 0.54);
  box-shadow: 0 18px 44px rgba(212, 140, 0, 0.18);
}

.contact-call,
.contact-email {
  display: none;
}
.contact-mobile-book {
  color: #0a0a0a;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
    var(--gold);
  border-color: rgba(255, 215, 0, 0.72);
  box-shadow: 0 20px 54px rgba(255, 215, 0, 0.24);
}
.contact-mobile-book svg,
.contact-mobile-book span,
.contact-mobile-book strong,
html[data-theme="light"] .contact-mobile-book,
html[data-theme="light"] .contact-mobile-book svg,
html[data-theme="light"] .contact-mobile-book span,
html[data-theme="light"] .contact-mobile-book strong {
  color: #0a0a0a;
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px));
  }

  .contact-quick-actions {
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(8, 9, 12, 0.88);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .contact-floating-call {
    pointer-events: auto;
    position: absolute;
    right: 14px;
    bottom: calc(100% + 12px);
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #0a0a0a;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
      var(--gold);
    border: 1px solid rgba(212, 140, 0, 0.78);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34), 0 10px 28px rgba(212, 140, 0, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .contact-floating-call svg {
    width: 24px;
    height: 24px;
  }

  html[data-theme="light"] .contact-floating-call {
    color: #0a0a0a;
    box-shadow: 0 14px 34px rgba(22, 28, 45, 0.18), 0 10px 28px rgba(212, 140, 0, 0.18);
  }

  .contact-book {
    display: none;
  }

  html[data-theme="light"] .contact-quick-actions {
    background: rgba(248, 249, 252, 0.9);
    border-top-color: rgba(22, 28, 45, 0.1);
  }

  .contact-call,
  .contact-whatsapp {
    display: inline-grid;
  }

  .contact-email {
    display: none;
  }

  .contact-action {
    min-width: 0;
    min-height: 58px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.26);
  }

  .contact-action svg {
    width: 20px;
    height: 20px;
  }

  .contact-action span {
    font-size: 11px;
  }

  .contact-action strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: clamp(11px, 3.2vw, 13px);
  }

  .contact-mobile-book {
    color: #0a0a0a;
    -webkit-text-fill-color: #0a0a0a;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08)),
      var(--gold);
    border-color: rgba(212, 140, 0, 0.78);
    box-shadow: 0 12px 30px rgba(212, 140, 0, 0.22);
  }

  .contact-mobile-book svg,
  .contact-mobile-book span,
  .contact-mobile-book strong {
    color: #0a0a0a;
    -webkit-text-fill-color: #0a0a0a;
  }

  html[data-theme="light"] .contact-mobile-book {
    color: #0a0a0a;
    -webkit-text-fill-color: #0a0a0a;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08)),
      var(--gold);
    border-color: rgba(212, 140, 0, 0.58);
    box-shadow: 0 12px 30px rgba(212, 140, 0, 0.22);
  }

  html[data-theme="light"] .contact-mobile-book svg,
  html[data-theme="light"] .contact-mobile-book span,
  html[data-theme="light"] .contact-mobile-book strong {
    color: #0a0a0a;
    -webkit-text-fill-color: #0a0a0a;
  }
}

/* ============================================================
   HERO MOCKUP ALIGNMENT
   ============================================================ */
#hero {
  min-height: 657px;
  height: 100svh;
  align-items: center;
  justify-content: center;
  background: #090a0d;
}

html[data-theme="light"] #hero {
  background: #f8f9fc;
}

#hero .hero-bg {
  background:
    radial-gradient(circle at 50% 52%, rgba(28, 29, 34, 0.72), transparent 46%),
    radial-gradient(circle at 17% 28%, rgba(221, 153, 24, 0.08), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(128, 154, 224, 0.07), transparent 30%),
    linear-gradient(180deg, #08090c 0%, #0c0d11 55%, #090a0d 100%);
}

html[data-theme="light"] #hero .hero-bg {
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.92), transparent 44%),
    radial-gradient(circle at 17% 28%, rgba(212, 140, 0, 0.12), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(92, 121, 194, 0.13), transparent 32%),
    linear-gradient(180deg, #f8f9fc 0%, #edf1f8 55%, #ffffff 100%);
}

#hero .hero-image-bg,
#hero .hero-overlay,
#hero .hero-scroll {
  display: none;
}

#hero .hero-content {
  max-width: 1060px;
  min-height: min(620px, 100svh);
  padding: 30px clamp(18px, 4vw, 48px) 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
}

#hero .hero-content::before {
  content: 'V4';
  position: absolute;
  z-index: -1;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(226, 174, 58, 0.035);
  font-size: 520px;
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}

html[data-theme="light"] #hero .hero-content::before {
  color: rgba(212, 140, 0, 0.07);
}

#hero .hero-eyebrow {
  margin: 0 0 46px;
  color: #e2a100;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  justify-content: center;
  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeUp 0.75s 0.15s forwards;
}

#hero .hero-eyebrow::before,
#hero .hero-eyebrow::after {
  content: '';
  width: 60px;
  height: 1px;
  border-radius: 0;
  background: #e2a100;
  box-shadow: none;
}

#hero .hero-title {
  margin: 0;
  color: #fffaf1;
  font-size: clamp(76px, 6vw, 104px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
  text-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeUp 0.75s 0.32s forwards;
}

html[data-theme="light"] #hero .hero-title {
  color: #151720;
  text-shadow: 0 28px 80px rgba(22, 28, 45, 0.12);
}

#hero .hero-title span {
  display: block;
}

#hero .hero-title-gradient {
  background: linear-gradient(90deg, #ffd978 0%, #e0a006 46%, #b5c7ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#hero .hero-tagline {
  margin: 30px 0 74px;
  max-width: none;
  color: #f7f0e5;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.75s 0.48s forwards;
}

html[data-theme="light"] #hero .hero-tagline {
  color: #414858;
}

#hero .hero-actions {
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.75s 0.62s forwards;
}

#hero .hero-actions .btn {
  min-width: 216px;
  min-height: 70px;
  justify-content: center;
  border-radius: 999px;
  padding: 18px 32px;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

#hero .hero-actions .btn-primary {
  background: linear-gradient(180deg, #ffc52c 0%, #e6a000 100%);
  border-color: rgba(255, 214, 126, 0.42);
  color: #0d0d10;
  box-shadow: 0 18px 44px rgba(212, 140, 0, 0.16);
}

#hero .hero-actions .btn-outline {
  min-width: 376px;
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fffaf1;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

html[data-theme="light"] #hero .hero-actions .btn-outline {
  color: #151720;
  box-shadow: 0 18px 44px rgba(22, 28, 45, 0.08);
}

#hero .hero-actions .btn svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 900px) {
  #hero {
    min-height: 640px;
  }

  #hero .hero-content::before {
    font-size: 360px;
  }

  #hero .hero-eyebrow {
    margin-bottom: 34px;
    font-size: 13px;
  }

  #hero .hero-eyebrow::before,
  #hero .hero-eyebrow::after {
    width: 34px;
  }

  #hero .hero-title {
    font-size: clamp(62px, 11vw, 78px);
  }

  #hero .hero-tagline {
    margin-bottom: 46px;
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .service-filter {
    align-items: stretch;
  }

  .service-filter,
  .service-filter-group {
    width: 100%;
  }

  .service-filter-group {
    border-radius: 18px;
  }

  .service-filter-label {
    flex: 0 0 100%;
    padding: 2px 6px 0;
  }

  .service-filter-btn {
    flex: 1 1 calc(50% - 8px);
  }

  .service-filter-status {
    width: 100%;
  }

  #hero {
    min-height: 620px;
  }

  #hero .hero-content {
    padding-top: 70px;
    min-height: 620px;
  }

  #hero .hero-content::before {
    font-size: 245px;
  }

  #hero .hero-eyebrow {
    max-width: 100%;
    margin-bottom: 28px;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.24em;
  }

  #hero .hero-eyebrow::before,
  #hero .hero-eyebrow::after {
    width: 22px;
  }

  #hero .hero-title {
    font-size: clamp(44px, 15vw, 52px);
    line-height: 1.12;
  }

  #hero .hero-tagline {
    margin: 24px 0 36px;
    font-size: 18px;
  }

  #hero .hero-actions {
    width: min(100%, 380px);
    gap: 12px;
  }

  #hero .hero-actions .btn,
  #hero .hero-actions .btn-outline {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (max-width: 720px) {
  #hero .hero-eyebrow,
  #hero .hero-title,
  #hero .hero-tagline,
  #hero .hero-actions {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ============================================================
   MOBILE POLISH AND PERFORMANCE OVERRIDES
   ============================================================ */
.barber-modal {
  position: relative;
}

@media (max-width: 900px) {
  .nav-inner {
    width: 100%;
    max-width: 100vw;
    gap: 12px;
    padding: 12px clamp(16px, 4vw, 28px);
  }

  .nav-mobile-menu.open {
    max-height: min(640px, calc(100dvh - 70px));
  }

  .nav-mobile-actions {
    display: flex;
    margin-left: auto;
    min-width: 0;
  }

  .nav-theme-mobile,
  .nav-staff-login {
    flex: 0 0 auto;
  }

  .nav-theme-mobile {
    width: 36px;
    height: 36px;
  }

  .nav-staff-login {
    min-height: 36px;
    padding-inline: 12px;
  }

  .nav-mobile-menu .theme-toggle-mobile {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(100% - clamp(40px, 10vw, 120px));
    min-height: 48px;
    margin: 10px clamp(20px, 5vw, 60px) 0;
    padding: 12px 14px;
    color: var(--text-primary);
    border-radius: 999px;
  }

  html[data-theme="light"] .nav-mobile-menu .theme-toggle-mobile {
    color: #151720;
    background: rgba(238, 242, 248, 0.92);
  }

  html[data-theme="light"] .nav-staff-login {
    color: #151720;
    background: rgba(238, 242, 248, 0.92);
    border-color: rgba(22, 28, 45, 0.1);
  }
}

@media (max-width: 420px) {
  .nav-inner {
    gap: 8px;
    padding: 10px 12px;
  }

  .nav-logo,
  .nav-logo img {
    width: 42px;
    height: 42px;
  }

  .nav-mobile-actions {
    gap: 6px;
  }

  .nav-staff-login {
    min-height: 34px;
    padding-inline: 9px;
    font-size: 11px;
  }

  .nav-theme-mobile,
  .nav-burger {
    width: 34px;
    height: 34px;
  }

  .nav-burger {
    align-items: center;
    justify-content: center;
    padding: 0;
  }
}

@media (max-width: 720px) {
  html {
    scroll-behavior: auto;
  }

  body::before {
    display: none;
  }

  .live-availability {
    max-width: calc(100vw - 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
    padding: 9px 12px;
  }

  .live-dot {
    flex: 0 0 auto;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  #barbers,
  #services,
  #products,
  #style-finder,
  #instagram,
  #gallery,
  #reviews,
  #location {
    content-visibility: visible;
    contain-intrinsic-size: auto;
  }

  .barbers-track,
  .instagram-grid,
  .reviews-track {
    scroll-snap-type: none;
  }

  .barber-card:hover,
  .service-card:hover,
  .product-card:hover,
  .review-card:hover,
  .instagram-card:hover,
  .contact-action:hover {
    transform: none;
  }

  .barber-card,
  .service-card,
  .product-card,
  .review-card,
  .instagram-card,
  .contact-action {
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  }

  #nav.scrolled,
  .contact-action,
  .barbers-nav button,
  .modal-overlay {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  #booking {
    align-items: end;
    padding: 0;
    background: rgba(0, 0, 0, 0.68);
  }

  #booking > .container {
    width: 100%;
    max-height: 100dvh;
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px 24px 0 0;
    overflow: hidden;
  }

  .booking-panel-close {
    top: max(10px, env(safe-area-inset-top, 0px));
    right: max(10px, env(safe-area-inset-right, 0px));
    width: 48px;
    height: 48px;
  }

  .site-booking {
    display: block;
  }

  .site-booking-progress {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .site-booking-progress::-webkit-scrollbar {
    display: none;
  }

  .site-booking-progress button {
    flex: 0 0 auto;
    min-width: 94px;
    min-height: 46px;
    padding: 8px;
  }

  .site-booking-progress button span {
    width: 24px;
    height: 24px;
  }

  .site-booking-main {
    padding: 16px;
    border-radius: 18px;
  }

  .site-booking-summary {
    position: static;
    margin-top: 12px;
    padding: 16px;
    border-radius: 18px;
  }

  .site-booking-step-head h3 {
    font-size: 30px;
  }

  .site-booking-step-head p:not(.site-booking-label) {
    font-size: 13px;
  }

  .site-booking-services,
  .site-booking-barbers,
  .site-booking-dates,
  .site-booking-slots,
  .site-booking-fields {
    grid-template-columns: 1fr;
  }

  .site-booking-services .site-booking-service-card {
    min-height: 0;
    padding: 18px;
  }

  .site-booking-service-head strong {
    font-size: 24px;
  }

  .site-booking-barbers,
  .site-booking-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-booking-barbers button {
    min-height: 112px;
  }

  .site-booking-dates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-booking-cash {
    align-items: stretch;
    flex-direction: column;
  }

  .site-booking-cash-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-radius: 14px;
  }

  .site-booking-cash-toggle button {
    border-radius: 10px;
  }

  .site-booking-form button {
    width: 100%;
    justify-content: center;
  }

  .site-booking-actions {
    display: none;
  }

  .site-booking-mobile-cta {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(16, 17, 22, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  }

  .site-booking-mobile-buttons {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
  }

  .site-booking-mobile-cta span,
  .site-booking-mobile-cta strong {
    display: block;
  }

  .site-booking-mobile-cta span {
    color: #f2cf80;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .site-booking-mobile-cta strong {
    max-width: 48vw;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 900;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-booking-mobile-cta button {
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
  }

  .site-booking-mobile-cta #site-booking-next {
    color: #15110a;
    background: var(--gold);
  }

  .site-booking-mobile-cta .site-booking-back {
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  html[data-theme="light"] .site-booking-mobile-cta {
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(22, 28, 45, 0.12);
  }
}

@media (max-width: 640px) {
  .modal-overlay {
    align-items: flex-start;
    justify-content: center;
    padding: calc(10px + env(safe-area-inset-top, 0px)) 10px calc(10px + env(safe-area-inset-bottom, 0px));
    overflow-y: auto;
  }

  .barber-modal {
    max-height: none;
    overflow: visible;
    border-radius: 18px;
  }

  .modal-close {
    position: fixed;
    top: calc(12px + env(safe-area-inset-top, 0px));
    right: 12px;
    z-index: 2400;
    width: 46px;
    height: 46px;
    color: #fffaf1;
    background: rgba(15, 17, 22, 0.92);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  }

  html[data-theme="light"] .modal-close {
    color: #151720;
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(22, 28, 45, 0.16);
  }

  .modal-header {
    grid-template-columns: 1fr;
  }

  .modal-img,
  .modal-img-placeholder {
    width: 100%;
    max-height: 46vh;
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: var(--charcoal-3);
  }

  .modal-info {
    padding: 18px;
  }

  .modal-name {
    font-size: 30px;
  }

  .modal-body {
    padding: 0 18px 18px;
  }

  .modal-availability {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
  }

  .modal-availability-value {
    font-size: 24px;
    line-height: 1.1;
  }

  #modal-book-link {
    width: 100%;
    justify-content: center;
  }
}

/* App-style service picker inside the native website booking flow */
.site-service-tier-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
  padding: 4px;
  overflow-x: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  scrollbar-width: none;
}

.site-service-tier-tabs:empty {
  display: none;
}

.site-service-tier-tabs::-webkit-scrollbar {
  display: none;
}

.site-service-tier-tabs button {
  flex: 1 0 max(180px, 45%);
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--text-muted);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
}

.site-service-tier-tabs button.active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.12);
}

.site-booking-services {
  grid-template-columns: 1fr;
  gap: 16px;
}

.site-booking-services .site-booking-service-card {
  position: relative;
  min-height: 148px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  overflow: hidden;
  align-content: initial;
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-top: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform 160ms ease, box-shadow var(--transition);
}

.site-booking-services .site-booking-service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  pointer-events: none;
  border: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% -10%, rgba(212, 140, 0, 0.14), transparent 70%);
  opacity: 0;
}

.site-booking-services .site-booking-service-card.active {
  border-color: rgba(212, 140, 0, 0.55);
  background: rgba(255, 255, 255, 0.065);
  box-shadow: 0 0 0 1px rgba(212, 140, 0, 0.12), 0 10px 26px rgba(0, 0, 0, 0.24), inset 0 0 24px rgba(212, 140, 0, 0.04);
}

.site-booking-services .site-booking-service-card:focus-visible {
  outline: 2px solid rgba(242, 207, 128, 0.75);
  outline-offset: 3px;
}

.site-booking-services .site-booking-service-card.active::after {
  content: '';
  color: inherit;
  background: radial-gradient(ellipse at 50% -10%, rgba(212, 140, 0, 0.14), transparent 70%);
  border-color: transparent;
  opacity: 1;
}

.site-service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  min-height: 24px;
}

.site-service-check {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #0a0a0a;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
}

.site-service-check span {
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: scale(0);
  transition: opacity 150ms ease, transform 150ms ease;
}

.site-booking-service-card.active .site-service-check {
  background: var(--gold);
  border-color: var(--gold);
}

.site-booking-service-card.active .site-service-check span {
  opacity: 1;
  transform: scale(1);
}

.site-service-card-top em {
  height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #f2cf80;
  background: rgba(212, 140, 0, 0.12);
  border: 1px solid rgba(212, 140, 0, 0.3);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-service-name {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.site-service-desc {
  display: block;
  flex: 1;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.site-service-detail {
  width: fit-content;
  min-height: 0;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  color: var(--text-muted);
  background: transparent;
  font-size: 11px;
  font-weight: 900;
  font-family: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 2px;
  cursor: pointer;
}

.site-booking-service-card:hover .site-service-detail {
  color: var(--text-secondary);
  text-decoration-color: currentColor;
}

.site-booking-services .site-service-detail:hover {
  transform: none;
  border-color: transparent;
}

.site-service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-service-duration {
  flex: 0 0 auto;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 900;
}

.site-service-cash-discount {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 1 auto;
  max-width: 132px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #2dd88a;
  background: rgba(45, 216, 138, 0.08);
  border: 1px solid rgba(45, 216, 138, 0.28);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-service-price {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  flex: 0 0 auto;
  color: #f2cf80;
}

.site-service-price small {
  color: var(--text-secondary);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-service-price strong {
  color: #f2cf80;
  font-size: 19px;
  font-weight: 900;
}

.site-booking-service-total {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 2px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-booking-service-total.show {
  display: flex;
}

.site-booking-service-total span,
.site-booking-service-total strong {
  display: block;
}

.site-booking-service-total span {
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-booking-service-total strong {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 900;
}

.site-booking-service-total > div:last-child {
  text-align: right;
}

.site-booking-service-total > div:last-child strong {
  color: #f2cf80;
  font-size: 18px;
}

html[data-theme="light"] .site-service-tier-tabs,
html[data-theme="light"] .site-booking-services .site-booking-service-card {
  background: rgba(238, 242, 248, 0.74);
  border-color: rgba(22, 28, 45, 0.1);
}

html[data-theme="light"] .site-service-check {
  border-color: rgba(22, 28, 45, 0.16);
}

html[data-theme="light"] .site-service-cash-discount {
  color: #117a4d;
  background: rgba(20, 150, 92, 0.1);
  border-color: rgba(20, 150, 92, 0.22);
}

@media (max-width: 420px) {
  .site-service-meta {
    gap: 6px;
  }

  .site-service-cash-discount {
    max-width: 112px;
    padding-inline: 7px;
    font-size: 9.5px;
  }
}

@media (min-width: 760px) {
  .site-booking-services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1180px) {
  .site-booking-services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ============================================================
   TYPOGRAPHY SCALE FIX
   Keeps the public site readable under the fixed navigation.
   ============================================================ */
#hero {
  height: auto;
  min-height: 680px;
  padding-top: 88px;
}

#hero .hero-content {
  min-height: min(560px, calc(100svh - 88px));
  padding-top: 24px;
  padding-bottom: 48px;
}

.section-title {
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.08;
}

#hero .hero-content::before {
  font-size: clamp(220px, 30vw, 420px);
}

#hero .hero-eyebrow {
  margin-bottom: 28px;
  font-size: 13px;
  letter-spacing: 0.24em;
}

#hero .hero-title {
  font-size: clamp(52px, 6.2vw, 82px);
  line-height: 1.08;
}

#hero .hero-tagline {
  margin: 22px 0 46px;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.35;
}

#hero .hero-actions {
  gap: 16px;
}

#hero .hero-actions .btn {
  min-width: 188px;
  min-height: 56px;
  padding: 14px 24px;
  font-size: 15px;
  letter-spacing: 0.04em;
}

#hero .hero-actions .btn-outline {
  min-width: 286px;
}

@media (max-width: 900px) {
  #hero {
    min-height: 640px;
    padding-top: 72px;
  }

  #hero .hero-content {
    min-height: 568px;
  }

  #hero .hero-title {
    font-size: clamp(44px, 10vw, 64px);
  }
}

@media (max-width: 560px) {
  #hero {
    min-height: 620px;
    padding-top: 62px;
  }

  #hero .hero-content {
    min-height: 558px;
    padding-top: 34px;
  }

  #hero .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  #hero .hero-title {
    font-size: clamp(38px, 12vw, 48px);
  }

  #hero .hero-tagline {
    font-size: 17px;
  }

  #hero .hero-actions .btn,
  #hero .hero-actions .btn-outline {
    min-height: 52px;
    font-size: 14px;
  }
}

/* ============================================================
   PREMIUM HERO REELS + BOOKING-FIRST LISTS
   ============================================================ */
#hero {
  min-height: 760px;
  padding-top: 78px;
  background:
    radial-gradient(circle at 74% 20%, rgba(212, 140, 0, 0.18), transparent 34%),
    radial-gradient(circle at 18% 88%, rgba(92, 121, 194, 0.16), transparent 28%),
    #08090d;
}

#hero .hero-content {
  width: min(100%, 1460px);
  min-height: 590px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  padding-inline: clamp(20px, 4vw, 64px);
  text-align: left;
}

#hero .hero-content::before {
  left: 22%;
  color: rgba(255, 255, 255, 0.026);
  font-size: clamp(180px, 24vw, 360px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

#hero .hero-eyebrow {
  justify-content: flex-start;
  margin-bottom: 24px;
  color: #f2cf80;
  letter-spacing: 0.16em;
}

#hero .hero-title {
  max-width: 640px;
  font-size: clamp(48px, 5vw, 76px);
}

#hero .hero-tagline {
  max-width: 520px;
  margin: 22px 0 28px;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.5vw, 20px);
}

#hero .hero-actions {
  justify-content: flex-start;
  margin-top: 0;
}

.hero-reels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1vw, 16px);
  align-items: center;
}

.hero-reel {
  position: relative;
  aspect-ratio: 9 / 16;
  min-height: 420px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  transform: translateY(18px);
}

.hero-reel:nth-child(2),
.hero-reel:nth-child(4) {
  transform: translateY(-18px);
}

.hero-reel-main {
  min-height: 500px;
}

.hero-reel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0.72)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09), transparent 22%);
  pointer-events: none;
}

.hero-reel figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: #fffaf1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-reel img,
.hero-reel video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.04) contrast(1.04);
}

.hero-reel-video-1 video {
  object-position: center bottom;
}

.hero-reel-video-2 video,
.hero-reel-video-3 video,
.hero-reel-video-4 video {
  object-position: center 62%;
}

#trust-proof {
  padding: clamp(48px, 5vw, 76px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 18%, rgba(212, 140, 0, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-proof-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(320px, 1.58fr) minmax(220px, 0.84fr);
  gap: clamp(20px, 3vw, 42px);
  align-items: center;
}

.trust-proof-badge {
  min-height: 282px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  overflow: visible;
  padding: 24px;
  border-radius: 24px;
  color: #15110a;
  background:
    linear-gradient(140deg, #ffd978, #d48c00 58%, #8f640f);
  box-shadow: 0 30px 90px rgba(212, 140, 0, 0.2);
}

.trust-proof-badge span,
.trust-proof-badge em {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-proof-badge strong {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  font-size: clamp(30px, 2.45vw, 38px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.035em;
  overflow-wrap: normal;
  word-break: normal;
}

.trust-proof-badge strong span {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
  white-space: nowrap;
}

.trust-proof-badge em {
  font-style: normal;
  font-size: clamp(34px, 2.7vw, 42px);
  letter-spacing: -0.045em;
}

.trust-proof-copy .section-label {
  margin-bottom: 18px;
}

.trust-proof-copy h2 {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--text-primary);
  font-size: clamp(34px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
}

.trust-proof-copy p:not(.section-label) {
  max-width: 760px;
  margin: 0;
  color: var(--text-secondary);
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
  line-height: 1.65;
}

.trust-proof-stats {
  display: grid;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 10px;
  min-height: 282px;
}

.trust-proof-stats span {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 12px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-proof-stats .trust-proof-identity {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
}

.trust-proof-stats strong {
  color: #f2cf80;
  font-size: clamp(26px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1;
}

.trust-proof-stats small {
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trust-proof-stats .trust-proof-identity strong {
  color: #f2cf80;
  font-size: clamp(22px, 1.9vw, 30px);
  letter-spacing: -0.035em;
  white-space: nowrap;
}

.trust-proof-stats .trust-proof-identity small {
  color: var(--text-secondary);
}

.barber-card {
  flex: 0 0 clamp(248px, 24vw, 330px);
  min-width: 248px;
  min-height: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  grid-template-areas:
    "avatar body"
    "avatar action";
  gap: 12px 16px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
}

.barber-avatar {
  grid-area: avatar;
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 50%;
  background: #030303;
  border: 1px solid rgba(242, 207, 128, 0.38);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.barber-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.barber-card .barber-img-wrap,
.barber-card .barber-card-overlay {
  display: none;
}

.barber-card-body {
  grid-area: body;
  min-width: 0;
  padding: 0;
}

.barber-card-name {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 1.1;
}

.barber-card-title {
  margin-bottom: 7px;
  color: #f2cf80;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.barber-card-specialty {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text-secondary);
  font-size: 12px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.barber-card-action {
  grid-area: action;
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #f2cf80;
  background: rgba(212, 140, 0, 0.12);
  font-size: 11px;
  font-weight: 900;
}

.modal-img,
.modal-img-placeholder {
  display: none !important;
}

.modal-header {
  grid-template-columns: 1fr;
}

.modal-info {
  padding: 34px 60px 24px 34px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "badge side"
    "name side"
    "desc side";
  align-items: stretch;
  gap: 8px 24px;
  padding: 20px 22px;
  border-radius: 16px;
}

.service-card::before {
  display: none;
}

.service-card .service-popular {
  grid-area: badge;
  width: fit-content;
  margin: 0 0 3px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.service-name {
  grid-area: name;
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.08;
}

.service-desc {
  grid-area: desc;
  max-width: 720px;
  font-size: 14px;
}

.service-card > .service-footer {
  grid-area: side;
  min-width: 250px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  align-self: stretch;
}

.service-card > .service-footer .service-meta {
  justify-content: flex-end;
}

.service-card > .service-footer .service-book-btn {
  margin-top: auto;
}

@media (max-width: 1180px) {
  #hero {
    min-height: 0;
    padding-top: 68px;
  }

  #hero .hero-content {
    grid-template-columns: minmax(320px, 0.82fr) minmax(390px, 1.18fr);
    gap: clamp(22px, 3vw, 42px);
    min-height: 640px;
    padding-bottom: 42px;
  }

  #hero .hero-title {
    font-size: clamp(44px, 6vw, 64px);
  }

  #hero .hero-tagline {
    max-width: 430px;
  }

  .trust-proof-inner {
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  }

  .trust-proof-stats {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: 1fr;
    min-height: 96px;
  }

  .hero-reels {
    min-height: 520px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
  }

  .hero-reel {
    min-height: 0;
    border-radius: 20px;
    transform: none;
  }

  .hero-reel-main {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    min-height: 520px;
  }

  .hero-reel:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 2;
    aspect-ratio: auto;
    transform: none;
  }

  .hero-reel:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 2 / 3;
    aspect-ratio: auto;
    transform: none;
  }

  .hero-reel:nth-child(4) {
    display: none;
  }
}

@media (max-width: 900px) {
  #hero .hero-content {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-reels {
    width: min(100%, 720px);
    min-height: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  #hero {
    min-height: 0;
    padding-top: 58px;
  }

  #hero .hero-content {
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 34px;
    text-align: left;
  }

  #hero .hero-content::before {
    top: 28%;
    left: 48%;
    font-size: clamp(160px, 48vw, 260px);
  }

  #hero .hero-title {
    max-width: 420px;
    font-size: clamp(44px, 14vw, 62px);
    line-height: 1.02;
  }

  #hero .hero-tagline {
    max-width: 340px;
    margin-bottom: 20px;
    font-size: 17px;
  }

  #hero .hero-actions {
    width: 100%;
    gap: 10px;
  }

  #hero .hero-actions .btn,
  #hero .hero-actions .btn-outline {
    min-width: 0;
    flex: 1 1 150px;
  }

  .hero-reels {
    width: min(100%, 390px);
    min-height: 520px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 0;
    overflow: visible;
    padding: 0;
  }

  .hero-reels::-webkit-scrollbar {
    display: none;
  }

  .hero-reel,
  .hero-reel-main,
  .hero-reel:nth-child(2),
  .hero-reel:nth-child(4) {
    min-height: 0;
    display: block;
    transform: none;
  }

  .hero-reel-main {
    grid-column: 1 / 6;
    grid-row: 1 / 7;
    z-index: 2;
    aspect-ratio: auto;
  }

  .hero-reel:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 4;
    z-index: 3;
    aspect-ratio: auto;
    transform: translateY(18px);
  }

  .hero-reel:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 4 / 7;
    z-index: 3;
    aspect-ratio: auto;
    transform: translateY(-18px);
  }

  .hero-reel:nth-child(4) {
    display: none;
  }

  .hero-reel figcaption {
    font-size: 10px;
  }

  .service-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "badge"
      "name"
      "desc"
      "meta";
    padding: 18px;
  }

  .service-card > .service-footer {
    grid-area: meta;
    align-items: stretch;
    justify-content: flex-start;
    min-width: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .service-card > .service-footer .service-meta {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .service-card > .service-footer .service-book-btn {
    width: 100%;
    justify-content: center;
  }

  #trust-proof {
    padding: 48px 18px;
  }

  .trust-proof-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trust-proof-badge {
    min-height: 210px;
    border-radius: 20px;
  }

  .trust-proof-badge strong {
    max-width: none;
    font-size: clamp(31px, 9vw, 42px);
  }

  .trust-proof-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .trust-proof-copy p:not(.section-label) {
    font-size: 15px;
  }

  .trust-proof-stats {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .trust-proof-stats span {
    min-height: 78px;
  }

  .trust-proof-stats .trust-proof-identity {
    padding: 12px 14px;
  }

  .trust-proof-stats .trust-proof-identity strong {
    font-size: clamp(15px, 4.4vw, 18px);
  }
}

.product-card .service-footer {
  grid-area: auto;
  min-width: 0;
  min-height: 58px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding: 16px 24px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.product-card .service-book-btn {
  width: auto;
  justify-content: flex-start;
}

/* Team grid: stacked rows instead of horizontal rolling cards. */
.barbers-track-wrap {
  max-width: 1460px;
  margin: 0 auto;
  overflow: visible;
  padding-inline: clamp(20px, 5vw, 72px);
}

.barbers-track-wrap::after,
.barbers-nav {
  display: none;
}

.barbers-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  overflow: visible;
  cursor: default;
  scroll-snap-type: none;
}

.barber-card {
  width: 100%;
  min-width: 0;
  min-height: 156px;
  cursor: pointer;
  scroll-snap-align: none;
}

@media (min-width: 1320px) {
  .barbers-track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .barbers-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .barber-card {
    min-height: 142px;
  }
}

/* Mobile/tablet ease: reduce tall compositions and keep key actions compact. */
@media (max-width: 900px) {
  #hero {
    min-height: 0;
    padding-top: 64px;
  }

  #hero .hero-content {
    min-height: 0;
    gap: 22px;
    padding-top: 18px;
    padding-bottom: 30px;
  }

  #hero .hero-title {
    max-width: 620px;
    font-size: clamp(42px, 9vw, 62px);
  }

  #hero .hero-tagline {
    max-width: 520px;
    margin: 16px 0 18px;
  }

  .hero-reels {
    width: 100%;
    min-height: 0;
    display: flex;
    gap: 10px;
    margin: 0;
    overflow-x: auto;
    padding: 0 2px 4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-reels::-webkit-scrollbar {
    display: none;
  }

  .hero-reel,
  .hero-reel-main,
  .hero-reel:nth-child(2),
  .hero-reel:nth-child(3),
  .hero-reel:nth-child(4) {
    flex: 0 0 min(56vw, 270px);
    display: block;
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
    aspect-ratio: 9 / 14;
    transform: none;
    scroll-snap-align: start;
  }

  .hero-reel-main {
    flex-basis: min(68vw, 320px);
  }

  .hero-reel:nth-child(4) {
    display: none;
  }

  .location-grid {
    gap: 16px;
  }

  .location-info {
    padding: 18px;
  }

  .location-hours {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-container {
    min-height: 320px;
  }
}

@media (max-width: 560px) {
  #hero {
    padding-top: 58px;
  }

  #hero .hero-content {
    padding-top: 14px;
    padding-bottom: 24px;
  }

  #hero .hero-title {
    font-size: clamp(36px, 11vw, 48px);
  }

  #hero .hero-tagline {
    max-width: 100%;
    font-size: 16px;
    line-height: 1.4;
  }

  .hero-reel,
  .hero-reel-main,
  .hero-reel:nth-child(2),
  .hero-reel:nth-child(3) {
    flex-basis: min(76vw, 280px);
    min-height: 240px;
  }

  .location-hours,
  .location-actions {
    grid-template-columns: 1fr;
  }

  .map-container {
    min-height: 260px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .contact-quick-actions {
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .contact-action {
    min-height: 50px;
    padding: 8px 10px;
  }

  .contact-action svg {
    width: 18px;
    height: 18px;
  }
}

/* Keep the video hero easy to pass on touch devices. */
@media (max-width: 900px) {
  .hero-reels {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    gap: 10px;
    width: min(100%, 720px);
    min-height: clamp(320px, 54vw, 460px);
    overflow: visible;
    padding: 0;
    scroll-snap-type: none;
    touch-action: pan-y;
  }

  .hero-reel,
  .hero-reel-main,
  .hero-reel:nth-child(2),
  .hero-reel:nth-child(3),
  .hero-reel:nth-child(4) {
    display: block;
    flex: none;
    min-height: 0;
    aspect-ratio: auto;
    transform: none;
    scroll-snap-align: none;
  }

  .hero-reel-main {
    grid-column: 1 / 4;
    grid-row: 1 / 5;
  }

  .hero-reel:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: 1 / 3;
  }

  .hero-reel:nth-child(3) {
    grid-column: 4 / 6;
    grid-row: 3 / 5;
  }

  .hero-reel:nth-child(4) {
    grid-column: 6 / 7;
    grid-row: 3 / 5;
  }
}

@media (max-width: 560px) {
  .hero-reels {
    grid-template-rows: repeat(6, minmax(0, 1fr));
    min-height: clamp(300px, 86vw, 390px);
    gap: 8px;
  }

  .hero-reel-main {
    grid-column: 1 / 5;
    grid-row: 1 / 7;
  }

  .hero-reel:nth-child(2) {
    grid-column: 5 / 7;
    grid-row: 1 / 3;
  }

  .hero-reel:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 3 / 5;
  }

  .hero-reel:nth-child(4) {
    grid-column: 5 / 7;
    grid-row: 5 / 7;
  }
}

/* Avoid temporary blank reserved blocks while fast-scrolling on mobile browsers. */
#barbers,
#services,
#products,
#style-finder,
#instagram,
#reviews,
#location {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

/* About page */
.about-page {
  background:
    radial-gradient(circle at 76% 12%, rgba(212, 140, 0, 0.14), transparent 30%),
    radial-gradient(circle at 12% 72%, rgba(92, 121, 194, 0.12), transparent 28%),
    var(--near-black);
}

.about-page main {
  padding-top: 118px;
}

.about-hero {
  width: min(100%, 1460px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  align-items: center;
  gap: clamp(24px, 5vw, 74px);
  padding: clamp(36px, 6vw, 88px) clamp(20px, 5vw, 72px) clamp(28px, 5vw, 64px);
}

.about-hero-copy {
  max-width: 840px;
}

.about-hero h1 {
  margin: 0;
  color: var(--text-primary);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.about-hero p:not(.section-label) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--text-secondary);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 650;
  line-height: 1.5;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.about-hero-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
}

.about-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

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

.about-content {
  width: min(100%, 1460px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 72px) clamp(64px, 8vw, 112px);
}

.about-panel {
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
}

.about-panel-wide {
  grid-column: 1 / -1;
}

.about-panel h2 {
  margin: 0 0 14px;
  color: var(--text-primary);
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.about-panel p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 17px;
  font-weight: 600;
  line-height: 1.65;
}

.about-panel p + p {
  margin-top: 12px;
}

.about-highlight {
  background:
    linear-gradient(135deg, rgba(212, 140, 0, 0.17), rgba(255, 255, 255, 0.055));
  border-color: rgba(242, 207, 128, 0.24);
}

.about-payment-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.about-payment-list li {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.about-simple-hero {
  grid-template-columns: 1fr;
  padding-bottom: clamp(22px, 4vw, 48px);
}

.about-check-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.about-check-list li {
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.about-panel a {
  color: #f2cf80;
  font-weight: 900;
  text-decoration: none;
}

.about-panel a:hover {
  text-decoration: underline;
}

.franchise-content {
  align-items: start;
}

.franchise-form-panel {
  grid-column: 1 / -1;
}

.franchise-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.franchise-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.franchise-form label {
  display: grid;
  gap: 8px;
}

.franchise-form label span {
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.franchise-form input,
.franchise-form select,
.franchise-form textarea {
  width: 100%;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  padding: 0 13px;
  font: inherit;
  outline: none;
}

.franchise-form textarea {
  min-height: 112px;
  resize: vertical;
  padding-top: 12px;
  line-height: 1.5;
}

.franchise-form select {
  color-scheme: dark;
}

.franchise-form select option {
  color: #f5f0e8;
  background: #151720;
}

.franchise-form select option:checked {
  color: #0a0a0a;
  background: var(--gold);
}

.franchise-form input:focus,
.franchise-form select:focus,
.franchise-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.franchise-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.franchise-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.franchise-form-actions .btn:disabled {
  opacity: 0.72;
  cursor: wait;
}

.franchise-form-status {
  flex: 1 1 280px;
  min-width: 0;
  margin: 0;
  min-height: 22px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.franchise-form-status[data-kind="success"] {
  color: #2dd88a;
}

.franchise-form-status[data-kind="error"] {
  color: #ff8f8f;
}

.about-price {
  margin-bottom: 18px !important;
  color: #f2cf80 !important;
  font-size: clamp(42px, 7vw, 72px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

html[data-theme="light"] .about-page {
  background:
    radial-gradient(circle at 76% 12%, rgba(212, 140, 0, 0.12), transparent 30%),
    radial-gradient(circle at 12% 72%, rgba(92, 121, 194, 0.13), transparent 28%),
    #f8f9fc;
}

html[data-theme="light"] .about-panel {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(22, 28, 45, 0.09);
  box-shadow: 0 22px 70px rgba(22, 28, 45, 0.08);
}

html[data-theme="light"] .about-highlight {
  background:
    linear-gradient(135deg, rgba(255, 226, 160, 0.45), rgba(255, 255, 255, 0.9));
  border-color: rgba(184, 117, 0, 0.2);
}

html[data-theme="light"] .about-payment-list li {
  background: rgba(248, 250, 254, 0.92);
  border-color: rgba(22, 28, 45, 0.1);
}

html[data-theme="light"] .franchise-form input,
html[data-theme="light"] .franchise-form select,
html[data-theme="light"] .franchise-form textarea {
  color: #151720;
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
  color-scheme: light;
}

html[data-theme="light"] .franchise-form select option {
  color: #151720;
  background: #ffffff;
}

html[data-theme="light"] .franchise-form select option:checked {
  color: #ffffff;
  background: #b77908;
}

html[data-theme="light"] .franchise-form-status[data-kind="success"] {
  color: #117a4d;
}

@media (max-width: 900px) {
  .about-page main {
    padding-top: 92px;
  }

  .about-hero {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .about-hero-media {
    min-height: 360px;
    max-width: 520px;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-payment-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .about-page main {
    padding-top: 82px;
  }

  .about-hero {
    padding-top: 24px;
  }

  .about-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .about-hero-actions .btn {
    width: 100%;
  }

  .about-hero-media {
    min-height: 300px;
    border-radius: 20px;
  }

  .about-panel {
    min-height: 0;
    border-radius: 18px;
  }

  .franchise-form-grid {
    grid-template-columns: 1fr;
  }

  .franchise-form-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Four-video masonry hero: source order follows 1.mp4, 2.mp4, 3.mp4, 4.mp4. */
.hero-reels {
  width: min(100%, 720px) !important;
  min-height: clamp(420px, 36vw, 540px) !important;
  display: grid !important;
  grid-template-columns: repeat(10, minmax(0, 1fr)) !important;
  grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  gap: clamp(10px, 1vw, 14px) !important;
  align-items: stretch !important;
  overflow: visible !important;
}

.hero-reel,
.hero-reel-main,
.hero-reel-video-1,
.hero-reel-video-2,
.hero-reel-video-3,
.hero-reel-video-4 {
  display: block !important;
  min-width: 0 !important;
  min-height: 0 !important;
  width: auto !important;
  aspect-ratio: auto !important;
  transform: none !important;
  border-radius: clamp(16px, 1.5vw, 22px) !important;
  order: initial !important;
}

.hero-reel-video-1 {
  grid-column: 1 / 6 !important;
  grid-row: 1 / 7 !important;
}

.hero-reel-video-2 {
  grid-column: 6 / 9 !important;
  grid-row: 1 / 4 !important;
}

.hero-reel-video-3 {
  grid-column: 9 / 11 !important;
  grid-row: 1 / 4 !important;
}

.hero-reel-video-4 {
  grid-column: 6 / 11 !important;
  grid-row: 4 / 7 !important;
}

@media (min-width: 1181px) {
  #hero .hero-content {
    align-items: center !important;
  }

  .hero-reels {
    width: min(100%, 700px) !important;
    height: clamp(360px, 27vw, 430px) !important;
    min-height: 0 !important;
    max-height: 430px !important;
    align-self: center !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
  }

  .hero-reel-video-1 {
    grid-column: 1 / 7 !important;
    grid-row: 1 / 7 !important;
  }

  .hero-reel-video-2 {
    grid-column: 7 / 10 !important;
    grid-row: 1 / 4 !important;
  }

  .hero-reel-video-3 {
    grid-column: 10 / 13 !important;
    grid-row: 1 / 4 !important;
  }

  .hero-reel-video-4 {
    grid-column: 7 / 13 !important;
    grid-row: 4 / 7 !important;
  }
}

@media (max-width: 900px) {
  #hero .hero-content {
    grid-template-columns: 1fr !important;
  }

  .hero-reels {
    justify-self: center !important;
    width: min(100%, 680px) !important;
    min-height: clamp(380px, 66vw, 560px) !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(6, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .hero-reel-video-1 {
    grid-column: 1 / 4 !important;
    grid-row: 1 / 7 !important;
  }

  .hero-reel-video-2 {
    grid-column: 4 / 7 !important;
    grid-row: 1 / 3 !important;
  }

  .hero-reel-video-3 {
    grid-column: 4 / 7 !important;
    grid-row: 3 / 5 !important;
  }

  .hero-reel-video-4 {
    grid-column: 4 / 7 !important;
    grid-row: 5 / 7 !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  #hero .hero-content {
    align-items: center !important;
  }

  .hero-reels {
    width: min(100%, 620px) !important;
    height: clamp(360px, 40vw, 500px) !important;
    min-height: 0 !important;
    max-height: 500px !important;
    align-self: center !important;
  }
}

@media (max-width: 560px) {
  .hero-reels {
    width: min(100%, 390px) !important;
    min-height: clamp(360px, 128vw, 520px) !important;
    grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
    grid-template-rows: repeat(9, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  .hero-reel-video-1 {
    grid-column: 1 / 5 !important;
    grid-row: 1 / 10 !important;
  }

  .hero-reel-video-2 {
    grid-column: 5 / 7 !important;
    grid-row: 1 / 4 !important;
  }

  .hero-reel-video-3 {
    grid-column: 5 / 7 !important;
    grid-row: 4 / 7 !important;
  }

  .hero-reel-video-4 {
    grid-column: 5 / 7 !important;
    grid-row: 7 / 10 !important;
  }

  .hero-reel figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
    font-size: 10px;
  }
}
