/* =====================================================
   URBAN HAIRPLAZA — Global Design System
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --black: #0D0D0D;
  --dark: #111111;
  --dark2: #181818;
  --card: #1E1E1E;
  --card2: #252525;
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(201,168,76,0.3);
  --text: #F0F0F0;
  --text-muted: #888;
  --text-dim: #555;
  --white: #FFFFFF;
  --shadow: 0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(201,168,76,0.2);
  --radius: 10px;
  --radius-sm: 6px;
  --nav-h: 72px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(40px, 7vw, 80px); font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }
h4 { font-size: 20px; font-weight: 600; }
p { color: var(--text-muted); line-height: 1.8; }

.text-gold { color: var(--gold); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* --- LAYOUT --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* --- SECTION LABELS --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px; height: 1px;
  background: var(--gold);
}

.section-intro { max-width: 600px; }
.section-intro.center { max-width: 600px; margin: 0 auto; text-align: center; }
.section-intro h2 { margin-bottom: 16px; color: var(--white); }
.section-intro p { color: var(--text-muted); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
  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.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }

/* --- NAVBAR --- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(13,13,13,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: 16px;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span { display: block; color: var(--gold); font-size: 10px; font-family: 'DM Mono', monospace; letter-spacing: 2px; text-transform: uppercase; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 4px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark2);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 28px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  animation: slideDown 0.25s ease;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
#mobile-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
#mobile-menu .btn { width: 100%; justify-content: center; margin-top: 12px; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- PAGE HERO --- */
.page-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
  background: radial-gradient(ellipse at center top, rgba(201,168,76,0.08) 0%, transparent 60%), var(--dark);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { max-width: 540px; margin: 0 auto; }
.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { color: var(--text-dim); }

/* --- CARDS --- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

/* Service Card */
.service-card .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-card .card-body { padding: 24px; }
.service-card .card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.service-card h3 { color: var(--white); font-size: 20px; margin-bottom: 8px; }
.service-card p { font-size: 14px; margin-bottom: 16px; }
.service-card .card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.service-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}
.service-card .duration {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Barber Card */
.barber-card { text-align: center; }
.barber-card .barber-img-wrap {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.barber-card .barber-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.barber-card:hover .barber-img-wrap img { transform: scale(1.05); }
.barber-card .barber-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
}
.barber-card .card-body { padding: 20px; }
.barber-card h3 { color: var(--white); margin-bottom: 4px; font-size: 20px; }
.barber-card .role {
  color: var(--gold);
  font-size: 12px;
  font-family: 'DM Mono', monospace;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.barber-card .specialties { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }
.barber-card .tag {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  border-radius: 20px;
}

/* Testimonial Card */
.testimonial-card { padding: 30px; }
.testimonial-card .stars { color: var(--gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-card .author { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-card .author-name { font-weight: 600; color: var(--white); font-size: 14px; }
.testimonial-card .author-info { font-size: 12px; color: var(--text-muted); }

/* --- GRIDS --- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

/* --- DIVIDER --- */
.gold-divider {
  width: 50px; height: 2px;
  background: var(--gold);
  margin: 16px 0 32px;
}
.gold-divider.center { margin: 16px auto 32px; }

/* --- FOOTER --- */
footer {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; }
.footer-col h5 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.footer-contact li .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact li a { color: var(--text-muted); }
.footer-contact li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: var(--text-dim); }
.footer-bottom a { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition);
}
.social-link:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* --- GALLERY GRID --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, #1a1500 0%, #251e00 50%, var(--dark2) 100%);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { max-width: 480px; margin: 0 auto 32px; }
.cta-banner .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* --- FORM STYLES --- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-size: 14px;
  color: var(--white);
  font-family: inherit;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-select option { background: var(--card); color: var(--white); }
.form-textarea { resize: vertical; min-height: 120px; }

/* --- STEP BOOKING --- */
.booking-wrapper {
  max-width: 720px;
  margin: 0 auto;
}
.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  gap: 0;
}
.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.step-dot .dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.step-dot .dot.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.step-dot .dot.done {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}
.step-dot .step-label { font-size: 11px; color: var(--text-dim); font-family: 'DM Mono', monospace; white-space: nowrap; }
.step-dot .step-label.active { color: var(--gold); }
.step-connector {
  flex: 1;
  max-width: 80px;
  height: 2px;
  background: var(--border);
  margin-bottom: 22px;
  position: relative;
}
.step-connector.done { background: rgba(201,168,76,0.4); }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.choice-card {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.choice-card:hover { border-color: var(--border-gold); }
.choice-card.selected { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.choice-card .choice-icon { font-size: 36px; margin-bottom: 12px; }
.choice-card h4 { color: var(--white); margin-bottom: 6px; }
.choice-card p { font-size: 13px; }

.service-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 10px;
}
.service-option:hover { border-color: var(--border-gold); }
.service-option.selected { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.service-option .svc-name { font-weight: 600; color: var(--white); font-size: 15px; }
.service-option .svc-meta { font-size: 13px; color: var(--text-muted); }
.service-option .svc-price { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold); font-size: 18px; }
.service-option .check-circle {
  width: 22px; height: 22px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: transparent;
  transition: var(--transition);
}
.service-option.selected .check-circle { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.1); }

.barber-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.barber-option {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.barber-option:hover { border-color: var(--border-gold); }
.barber-option.selected { border-color: var(--gold); background: rgba(201,168,76,0.06); }
.barber-option img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; border: 2px solid var(--border); }
.barber-option h4 { color: var(--white); font-size: 15px; margin-bottom: 4px; }
.barber-option p { font-size: 12px; }

/* time slots */
.time-slots { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.time-slot {
  padding: 10px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.time-slot:hover { border-color: var(--border-gold); color: var(--white); }
.time-slot.selected { border-color: var(--gold); background: rgba(201,168,76,0.1); color: var(--gold); }
.time-slot.unavailable { opacity: 0.35; pointer-events: none; }

.booking-summary {
  background: rgba(201,168,76,0.05);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.booking-summary h4 { color: var(--gold); margin-bottom: 16px; font-size: 15px; font-family: 'DM Mono', monospace; letter-spacing: 1px; text-transform: uppercase; }
.summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.summary-row:last-child { border-bottom: none; font-weight: 700; }
.summary-row span { color: var(--text-muted); }
.summary-row strong { color: var(--white); }
.summary-row.total strong { color: var(--gold); font-size: 18px; font-family: 'Playfair Display', serif; }

/* Step nav buttons */
.step-nav { display: flex; gap: 12px; margin-top: 28px; }
.step-nav .btn { flex: 1; justify-content: center; }

/* --- LIGHTBOX --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: var(--radius); object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}

/* --- AI VISUALIZER --- */
.visualizer-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--card);
}
.upload-zone:hover { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.upload-zone .upload-icon { font-size: 48px; margin-bottom: 16px; }
.upload-zone h4 { color: var(--white); margin-bottom: 8px; }
.upload-zone p { font-size: 13px; }
.style-options { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.style-chip {
  padding: 9px 18px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.style-chip:hover { border-color: var(--border-gold); color: var(--white); }
.style-chip.selected { border-color: var(--gold); background: rgba(201,168,76,0.1); color: var(--gold); }

.preview-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.preview-box .placeholder { color: var(--text-dim); }
.preview-box img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.ai-processing {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.ai-processing.active { display: flex; }
.spinner {
  width: 48px; height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- CONTACT --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 28px; align-items: flex-start; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 { color: var(--white); font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 600; margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--text-muted); }
.contact-item a:hover { color: var(--gold); }

/* --- ABOUT --- */
.about-banner {
  height: 420px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  margin-bottom: 80px;
}
.about-banner img { width: 100%; height: 100%; object-fit: cover; }
.about-banner .about-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 48px;
}
.about-banner-overlay h1 { color: var(--white); font-size: clamp(28px, 4vw, 52px); }

.pillar-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.pillar-card:hover { border-color: var(--border-gold); }
.pillar-icon { font-size: 36px; margin-bottom: 16px; }
.pillar-card h3 { color: var(--white); margin-bottom: 10px; font-size: 20px; }

/* Stat bar */
.stats-row { display: flex; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 60px 0; }
.stat-item { flex: 1; padding: 40px 32px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-item .stat-val { font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-item .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* --- SERVICES PAGE --- */
.services-toggle {
  display: flex;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  gap: 6px;
  width: fit-content;
  margin: 0 auto 48px;
}
.toggle-btn {
  padding: 11px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: none;
  font-family: inherit;
}
.toggle-btn.active {
  background: var(--gold);
  color: var(--black);
}

.services-table-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.services-table { width: 100%; border-collapse: collapse; }
.services-table thead { background: rgba(201,168,76,0.08); }
.services-table th {
  padding: 16px 24px;
  text-align: left;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
}
.services-table td { padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.services-table tr:last-child td { border-bottom: none; }
.services-table tr:hover td { background: rgba(255,255,255,0.02); }
.services-table .svc-name-cell { font-weight: 600; color: var(--white); }
.services-table .svc-desc-cell { font-size: 13px; color: var(--text-muted); }
.services-table .price-cell { font-family: 'Playfair Display', serif; font-weight: 700; color: var(--gold); font-size: 20px; }
.services-table .dur-cell { font-size: 13px; color: var(--text-muted); }

/* --- ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 70px 0; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .visualizer-layout { grid-template-columns: 1fr; }
  .barber-options { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.large { grid-column: span 2; }
  .stats-row { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .about-banner { height: 280px; }
  .services-table th, .services-table td { padding: 14px 16px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: clamp(30px, 9vw, 48px); }
  .cta-banner .btn-group { flex-direction: column; }
  .step-connector { max-width: 40px; }
}
