/* =============================================================
   Empire Grooming Studio — Main Stylesheet
   Theme: Dark Luxury (Black / Charcoal / Gold)
   Author: GitHub Copilot — Production Ready
   ============================================================= */

/* ─── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --black:       #0a0a0a;
  --dark:        #111111;
  --dark-2:      #161616;
  --dark-3:      #1e1e1e;
  --charcoal:    #2a2a2a;
  --charcoal-2:  #333333;
  --gold:        #c9a84c;
  --gold-light:  #e2c16d;
  --gold-dark:   #a08030;
  --gold-glow:   rgba(201, 168, 76, 0.35);
  --off-white:   #f5f0e8;
  --white:       #ffffff;
  --muted:       #888888;
  --muted-2:     #aaaaaa;
  --border:      rgba(201, 168, 76, 0.18);
  --border-light: rgba(255,255,255,0.07);

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 2px 12px rgba(0,0,0,0.4);
  --shadow:      0 8px 32px rgba(0,0,0,0.55);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.7);
  --shadow-gold: 0 0 24px rgba(201, 168, 76, 0.3);

  --nav-h:       72px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --font-body:   'Poppins', sans-serif;
  --font-serif:  'Playfair Display', serif;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

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

ul {
  list-style: none;
}

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

address {
  font-style: normal;
}

/* ─── UTILITY ────────────────────────────────────────────────── */
.gold {
  color: var(--gold);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Anchor scroll offset for fixed navbar */
section[id],
footer[id] {
  scroll-margin-top: calc(var(--nav-h) + 8px);
}

/* Accessible focus ring */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ─── PRELOADER ──────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.preloader-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 50%;
  animation: preloaderPulse 1.6s ease-in-out infinite;
}

@keyframes preloaderPulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%       { transform: scale(1.1);  opacity: 0.75; }
}

.preloader-bar {
  width: 180px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 99px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 99px;
  animation: preloaderLoad 3s ease-out forwards;
}

@keyframes preloaderLoad {
  0%   { width: 0%;   }
  40%  { width: 45%;  }
  75%  { width: 80%;  }
  100% { width: 100%; }
}

.preloader-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

/* ─── NAVBAR ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 5%;
  max-width: 1360px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.nav-brand-main {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}

.nav-brand-sub {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-logo:hover .nav-brand-main {
  color: var(--gold);
}

.nav-logo img {
  height: 46px;
  width: 46px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform var(--transition);
}

.nav-logo:hover img {
  transform: scale(1.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted-2);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ─── HAMBURGER ──────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

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

/* ─── MOBILE MENU ────────────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 1090;
  display: flex;
  flex-direction: column;
  padding: 5rem 2.5rem 3rem;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: transparent;
  border: none;
  color: var(--muted-2);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 0.4rem;
  transition: color var(--transition);
}

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

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted-2);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-link:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.mobile-book-btn {
  margin-top: auto;
  text-align: center;
  width: 100%;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 1080;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  background-size: 200% auto;
  color: var(--black);
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25);
}

.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 6px 28px rgba(201, 168, 76, 0.45);
  transform: translateY(-2px);
}

.btn-gold:active {
  transform: translateY(0);
}

.btn-gold.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-gold.btn-xl {
  padding: 1.1rem 2.8rem;
  font-size: 1.05rem;
  border-radius: var(--radius-lg);
}

.btn-outline {
  background: transparent;
  color: var(--off-white);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 0.95rem 2.2rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold-sm {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn-gold-sm:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold);
}

/* ripple */
.ripple-btn::after {
  content: '';
  position: absolute;
  width: 140%;
  padding-bottom: 140%;
  top: 50%;
  left: 50%;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.ripple-btn:active::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  transition: 0s;
}

/* pulse glow on CTA */
.pulse-btn {
  animation: pulseGold 2.8s ease-in-out infinite;
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.25), 0 0 0 0   rgba(201, 168, 76, 0.15); }
  50%       { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.45), 0 0 0 14px rgba(201, 168, 76, 0);   }
}

/* ─── SCROLL INDICATOR ───────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.scroll-dot {
  width: 20px;
  height: 34px;
  border: 2px solid rgba(201, 168, 76, 0.5);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollDotAnim 1.8s ease-in-out infinite;
}

@keyframes scrollDotAnim {
  0%   { opacity: 1;   top: 5px;  }
  100% { opacity: 0;   top: 18px; }
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 50% 40%, rgba(201,168,76,0.06) 0%, transparent 65%),
    linear-gradient(160deg, #0d0d0d 0%, #1a1510 40%, #0a0a0a 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
}

/* Geometric accent shapes */
.hero-geo {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.geo-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  top: -100px;
  right: -150px;
}

.geo-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  bottom: 0;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  max-width: 760px;
  margin: 0 auto;
}

.hero-logo-wrap {
  position: relative;
}

.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid var(--border);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.08),
              0 0 0 12px rgba(201,168,76,0.04),
              var(--shadow-lg);
  animation: logoFloat 4s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--white);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  color: var(--muted-2);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.85rem;
}

.rating-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.rating-sub {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
}

.hero-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ─── SECTION BASICS ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.section-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 0 auto;
  border-radius: 2px;
}

/* ─── SERVICES ───────────────────────────────────────────────── */
.services {
  padding: 7rem 0 6rem;
  background: var(--dark);
  position: relative;
}

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

.services-block {
  margin-bottom: 4.5rem;
}

.services-block:last-child {
  margin-bottom: 0;
}

.service-category {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.category-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ─── SERVICE CARDS ──────────────────────────────────────────── */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  border-color: var(--border);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

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

.featured-card {
  border-color: rgba(201,168,76,0.2);
  background: linear-gradient(145deg, var(--dark-2), var(--dark-3));
}

.featured-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(201,168,76,0.12);
}

.card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
}

.gold-badge {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.service-card-inner {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  height: 100%;
}

.service-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(201,168,76,0.18);
  transform: scale(1.08);
}

.service-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.service-desc {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.6;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-light);
}

.service-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.service-time {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* ─── ADDITIONAL SERVICES LIST ───────────────────────────────── */
.add-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.add-service-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.35rem 1.5rem;
  background: var(--dark-2);
  transition: background var(--transition);
}

.add-service-item:hover {
  background: var(--dark-3);
}

.add-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(201,168,76,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.add-service-item:hover .add-icon {
  background: rgba(201,168,76,0.15);
}

.add-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.add-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.add-info small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
}

.add-time {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.add-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
}

/* ─── BOOKING CTA ────────────────────────────────────────────── */
.booking-cta {
  position: relative;
  padding: 7rem 1.5rem;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0e0c07 0%, #13120a 40%, #0a0a0a 100%);
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
}

.booking-geo {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.bg-geo-1 {
  width: 500px;
  height: 500px;
  background: rgba(201,168,76,0.07);
  top: -200px;
  left: -150px;
}

.bg-geo-2 {
  width: 400px;
  height: 400px;
  background: rgba(201,168,76,0.05);
  bottom: -150px;
  right: -100px;
}

.booking-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.booking-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.booking-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
}

.booking-actions {
  margin: 0.5rem 0;
}

.booking-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.info-sep {
  color: var(--border);
}

/* ─── MAP ────────────────────────────────────────────────────── */
.map-wrapper {
  width: 100%;
  max-width: 660px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
  margin-top: 0.25rem;
}

.map-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: rgba(201, 168, 76, 0.06);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.map-label i {
  color: var(--gold);
  font-size: 0.85rem;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(40%) contrast(1.05) brightness(0.85);
  transition: filter 0.45s ease;
}

.map-wrapper:hover iframe {
  filter: grayscale(0%) contrast(1) brightness(1);
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border-light);
  padding: 4.5rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border-light);
}

.footer-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--muted);
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
  color: var(--off-white);
  padding-left: 0.35rem;
}

.footer-contact p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-light);
  color: var(--muted);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-icon:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--border);
  color: var(--gold);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ─── HOURS ──────────────────────────────────────────────────── */
.footer-hours h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

.hours-list li span:first-child {
  color: var(--muted-2);
  font-weight: 500;
  white-space: nowrap;
}

.hours-list li span:last-child {
  white-space: nowrap;
  text-align: right;
}

.hours-list li.today {
  color: var(--gold-light);
}

.hours-list li.today span:first-child {
  color: var(--gold);
  font-weight: 700;
}

.hours-list li.today span:last-child {
  color: var(--gold-light);
  font-weight: 600;
}

.hours-list li.closed {
  color: rgba(136,136,136,0.55);
}

.hours-list li.closed span:first-child {
  color: rgba(170,170,170,0.55);
}

/* ─── SCROLL ANIMATIONS ──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered children */
.services-grid .service-card:nth-child(1) { --delay: 0.05s; }
.services-grid .service-card:nth-child(2) { --delay: 0.15s; }
.services-grid .service-card:nth-child(3) { --delay: 0.25s; }

.add-services-grid .add-service-item:nth-child(1) { --delay: 0s;    }
.add-services-grid .add-service-item:nth-child(2) { --delay: 0.08s; }
.add-services-grid .add-service-item:nth-child(3) { --delay: 0.16s; }
.add-services-grid .add-service-item:nth-child(4) { --delay: 0.24s; }

/* ─── GALLERY ────────────────────────────────────────────────── */
.gallery {
  padding: 7rem 0 6rem;
  background: var(--black);
  position: relative;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-light);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.gallery-item:hover {
  transform: translateY(-5px) scale(1.015);
  border-color: rgba(201, 168, 76, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(201, 168, 76, 0.18);
}

.gallery-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.55s ease;
}

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

/* Unique rich gradient backgrounds */
.gi-1 {
  background:
    repeating-linear-gradient(-45deg, transparent, transparent 8px, rgba(201,168,76,0.018) 8px, rgba(201,168,76,0.018) 9px),
    radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.09) 0%, transparent 55%),
    linear-gradient(135deg, #171410 0%, #231e14 100%);
}
.gi-2 {
  background:
    repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(201,168,76,0.015) 8px, rgba(201,168,76,0.015) 9px),
    radial-gradient(ellipse at 70% 30%, rgba(201,168,76,0.08) 0%, transparent 55%),
    linear-gradient(150deg, #121212 0%, #1e1c14 100%);
}
.gi-3 {
  background:
    repeating-linear-gradient(-55deg, transparent, transparent 8px, rgba(201,168,76,0.02) 8px, rgba(201,168,76,0.02) 9px),
    radial-gradient(ellipse at 50% 50%, rgba(201,168,76,0.1) 0%, transparent 55%),
    linear-gradient(160deg, #14100c 0%, #201a10 100%);
}
.gi-4 {
  background:
    repeating-linear-gradient(30deg, transparent, transparent 8px, rgba(201,168,76,0.015) 8px, rgba(201,168,76,0.015) 9px),
    radial-gradient(ellipse at 20% 80%, rgba(201,168,76,0.07) 0%, transparent 55%),
    linear-gradient(120deg, #111418 0%, #1a1e1e 100%);
}
.gi-5 {
  background:
    repeating-linear-gradient(-40deg, transparent, transparent 8px, rgba(201,168,76,0.018) 8px, rgba(201,168,76,0.018) 9px),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.09) 0%, transparent 55%),
    linear-gradient(140deg, #181818 0%, #242218 100%);
}
.gi-6 {
  background:
    repeating-linear-gradient(50deg, transparent, transparent 8px, rgba(201,168,76,0.02) 8px, rgba(201,168,76,0.02) 9px),
    radial-gradient(ellipse at 40% 60%, rgba(201,168,76,0.11) 0%, transparent 55%),
    linear-gradient(125deg, #181210 0%, #262018 100%);
}
.gi-7 {
  background:
    repeating-linear-gradient(-35deg, transparent, transparent 8px, rgba(201,168,76,0.015) 8px, rgba(201,168,76,0.015) 9px),
    radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 55%),
    linear-gradient(155deg, #101012 0%, #181614 100%);
}
.gi-8 {
  background:
    repeating-linear-gradient(60deg, transparent, transparent 8px, rgba(201,168,76,0.018) 8px, rgba(201,168,76,0.018) 9px),
    radial-gradient(ellipse at 50% 30%, rgba(201,168,76,0.07) 0%, transparent 55%),
    linear-gradient(145deg, #121610 0%, #1c201a 100%);
}
.gi-9 {
  background:
    repeating-linear-gradient(-50deg, transparent, transparent 8px, rgba(201,168,76,0.02) 8px, rgba(201,168,76,0.02) 9px),
    radial-gradient(ellipse at 35% 65%, rgba(201,168,76,0.1) 0%, transparent 55%),
    linear-gradient(130deg, #161210 0%, #221c14 100%);
}

.gallery-icon {
  font-size: 2.4rem;
  color: rgba(201, 168, 76, 0.22);
  transition: color var(--transition), transform var(--transition);
  pointer-events: none;
}

.gallery-item:hover .gallery-icon {
  color: rgba(201, 168, 76, 0.5);
  transform: scale(1.12);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.gallery-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.gallery-sub {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Shimmer accent on hover */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-cta {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.gallery-cta-link {
  color: var(--gold);
  font-weight: 600;
  margin-left: 0.35rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity var(--transition);
}

.gallery-cta-link:hover {
  opacity: 0.7;
}

/* ─── BARBERS / TEAM ─────────────────────────────────────────── */
.barbers {
  padding: 7rem 0 6rem;
  background: var(--dark);
  position: relative;
}

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

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

.barber-card {
  background: var(--dark-2);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.barber-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.55), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.barber-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
}

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

.barber-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-light);
  transition: border-color var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.barber-card:hover .barber-avatar {
  border-color: rgba(201,168,76,0.45);
  transform: scale(1.06);
}

.barber-initials {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: 0.02em;
}

/* Unique avatar backgrounds */
.bc-1 { background: linear-gradient(135deg, #1c1406 0%, #2a1e0a 100%); }
.bc-2 { background: linear-gradient(135deg, #0d1216 0%, #141e22 100%); }
.bc-3 { background: linear-gradient(135deg, #160e0a 0%, #221612 100%); }
.bc-4 { background: linear-gradient(135deg, #0e1216 0%, #161e20 100%); }
.bc-5 { background: linear-gradient(135deg, #12100a 0%, #1e1a0c 100%); }
.bc-6 { background: linear-gradient(135deg, #101216 0%, #181c20 100%); }
.bc-7 { background: linear-gradient(135deg, #14100e 0%, #221a14 100%); }

.barber-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}

.barber-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  line-height: 1.3;
}

.barber-badge {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  white-space: nowrap;
}

.barber-role {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.barber-book {
  width: 100%;
  justify-content: center;
}

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-hours {
    grid-column: 1 / -1;
  }

  .nav-brand {
    display: none;
  }

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

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

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-content {
    gap: 1.25rem;
    padding-bottom: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-logo {
    width: 96px;
    height: 96px;
  }

  .hero-title {
    font-size: clamp(1.85rem, 7vw, 2.6rem);
  }

  .hero-subtitle {
    font-size: 0.92rem;
  }

  .hero-meta {
    gap: 0.75rem;
    padding: 0.8rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    max-width: 340px;
  }

  .hero-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }

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

  /* Section headers */
  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-desc {
    font-size: 0.9rem;
  }

  /* Services */
  .services {
    padding: 5rem 0 4rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card-inner {
    padding: 1.5rem;
  }

  .add-services-grid {
    grid-template-columns: 1fr;
  }

  /* Barbers */
  .barbers {
    padding: 5rem 0 4rem;
  }

  .barbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .barber-card {
    padding: 1.5rem 1rem 1.25rem;
  }

  .barber-avatar {
    width: 64px;
    height: 64px;
  }

  .barber-initials {
    font-size: 1.3rem;
  }

  /* Gallery */
  .gallery {
    padding: 5rem 0 4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .gallery-item {
    max-height: 260px;
  }

  /* Booking */
  .booking-cta {
    padding: 5rem 1.25rem 3.5rem;
  }

  .booking-info {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }

  .info-sep {
    display: none;
  }

  .map-wrapper {
    max-width: 100%;
  }

  .map-wrapper iframe {
    height: 220px;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-hours {
    grid-column: auto;
  }

  .hours-list li {
    font-size: 0.8rem;
  }

  /* Mobile menu improvements */
  .mobile-menu {
    padding: 4.5rem 2rem 2.5rem;
  }

  .mobile-link {
    font-size: 1rem;
    padding: 0.75rem 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.9rem;
  }

  .hero-logo {
    width: 80px;
    height: 80px;
  }

  .hero-meta {
    max-width: 100%;
    font-size: 0.8rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  .section-label {
    font-size: 0.67rem;
  }

  .barbers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
  }

  .barber-card {
    padding: 1.25rem 0.75rem 1rem;
  }

  .barber-avatar {
    width: 56px;
    height: 56px;
  }

  .barber-initials {
    font-size: 1.1rem;
  }

  .barber-name {
    font-size: 0.82rem;
  }

  .barber-role {
    font-size: 0.67rem;
  }

  .booking-title {
    font-size: 1.75rem;
  }

  .btn-gold.btn-xl {
    padding: 1rem 2rem;
    font-size: 0.95rem;
  }

  .service-category {
    font-size: 0.72rem;
  }

  .service-price {
    font-size: 1.2rem;
  }

  .add-service-item {
    padding: 1.1rem 1.1rem;
  }

  .add-price {
    font-size: 1rem;
  }

  .gallery-item {
    max-height: 220px;
  }

  .map-wrapper iframe {
    height: 190px;
  }

  .footer-social {
    gap: 0.5rem;
  }
}
