/* ═══════════════════════════════════════════════════════
   MAX SALOON – Premium Salon CSS
   ═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --gold: #C9A84C;
  --gold-light: #E5C97A;
  --gold-dim: rgba(201,168,76,0.18);
  --gold-border: rgba(201,168,76,0.35);
  --bg: #0e0e0e;
  --bg2: #141414;
  --bg3: #1a1a1a;
  --surface: #181818;
  --surface2: #202020;
  --text: #f0ede8;
  --text-muted: #8a8580;
  --text-dim: #5a5752;
  --border: rgba(255,255,255,0.07);
  --radius: 2px;
  --nav-h: 76px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="light"] {
  --bg: #f8f5f0;
  --bg2: #f2ede6;
  --bg3: #ebe5dc;
  --surface: #ffffff;
  --surface2: #f5f0e8;
  --text: #1a1814;
  --text-muted: #6a6560;
  --text-dim: #aaa49e;
  --border: rgba(0,0,0,0.08);
}


.gallery-item {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stylist-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-cutout {
  position: absolute;
  bottom: 0;
  width: 999px;
  opacity: 0.;
  pointer-events: none;
  
}

.hero-cutout--left {
  width: 444px;
  left: 1px;
  transform: translateX(-50px); /* move left */
  transform: translateX(50px);  /* move right */
  transform: translateX(30px) translateY(1px); /* right + up */
}

.hero-cutout--right {
  width: 444px;
  left: 1100px;
  transform: translateX(-50px); /* move left */
  transform: translateX(50px);  /* move right */
  transform: translateX(30px) translateY(700px); /* right + up */
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 100px 0; }

/* ── Typography ── */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.body-text {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  max-width: 52ch;
  line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #0e0e0e;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.72rem; }

/* ── Gold Divider ── */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
.gold-divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}
.gold-divider svg {
  width: 32px;
  height: auto;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gold-border);
}

[data-theme="light"] #navbar.scrolled {
  background: rgba(248,245,240,0.95);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text);
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.73rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1rem; }

.theme-toggle {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.theme-toggle:hover { border-color: var(--gold); color: var(--gold); }
.sun-icon, .moon-icon { position: absolute; transition: all 0.3s; }
[data-theme="dark"] .sun-icon { opacity: 0; transform: translateY(-10px); }
[data-theme="dark"] .moon-icon { opacity: 1; }
[data-theme="light"] .sun-icon { opacity: 1; }
[data-theme="light"] .moon-icon { opacity: 0; transform: translateY(10px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem 2rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.mobile-menu.open { max-height: 400px; }
.mobile-menu a {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mobile-menu .btn { margin-top: 1.5rem; width: 100%; }

/* ── Hero ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-placeholder {
  width: 100%; height: 100%;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201,168,76,0.04) 0%, transparent 50%),
    linear-gradient(160deg, #0a0a0a 0%, #141210 40%, #100e0a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animated barber pole */
.barberpole {
  width: 60px;
  height: 220px;
  border-radius: 30px;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  opacity: 0.6;
  box-shadow: 0 0 80px rgba(201,168,76,0.15);
}
.barberpole::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    #C9A84C 0px, #C9A84C 12px,
    #0e0e0e 12px, #0e0e0e 24px,
    #e8e8e8 24px, #e8e8e8 36px,
    #0e0e0e 36px, #0e0e0e 48px
  );
  animation: pole 3s linear infinite;
  background-size: 100% 60px;
}
@keyframes pole { to { background-position: 0 -60px; } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 40%, rgba(10,10,10,0.7) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(10,10,10,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: #f0ede8;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: rgba(240,237,232,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.3); } }

/* ── Animations ── */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-inner {
  position: relative;
  padding: 1.5rem;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1a1a1a, #242420);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,168,76,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,168,76,0.03) 40px);
}

.scissors-icon {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
}

.about-img-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 2rem; bottom: 2rem;
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  pointer-events: none;
}

.about-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--gold);
  color: #0e0e0e;
  padding: 1.2rem 1.5rem;
  text-align: center;
  border-radius: 2px;
}
.badge-num { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.badge-txt { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  font-weight: 600;
}
.stat-lbl { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); }

/* ── Services ── */
.service-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 2.5rem;
}

.tab-btn {
  padding: 0.75rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border-right: 1px solid var(--border);
  transition: all 0.3s;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active, .tab-btn:hover {
  background: var(--gold);
  color: #0e0e0e;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--surface);
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  transition: all 0.35s ease;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { background: var(--surface2); transform: translateY(-3px); z-index: 1; }
.service-card:hover::after { width: 100%; }

.service-icon {
  font-size: 1.5rem;
  width: 2.5rem;
  flex-shrink: 0;
  padding-top: 0.2rem;
}

.service-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.service-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.service-price {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
}

/* ── Stylists ── */
#stylists { background: var(--bg2); }

.stylists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stylist-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.stylist-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.stylist-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.stylist-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: rgba(201,168,76,0.3);
  letter-spacing: 0.1em;
}

.stylist-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.stylist-card:hover .stylist-overlay { opacity: 1; }

.stylist-info { padding: 1.5rem; }
.stylist-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.stylist-title {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.stylist-bio {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.stylist-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.stylist-tags span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--gold-border);
  color: var(--gold);
  border-radius: 30px;
}

/* ── Booking ── */
.booking-section { background: var(--bg3); }

.booking-wrapper {
  max-width: 780px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.booking-steps {
  display: flex;
  align-items: center;
  padding: 1.8rem 2.5rem;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.4s;
}
.step-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.4s;
}
.step.active .step-num { background: var(--gold); border-color: var(--gold); color: #0e0e0e; }
.step.active .step-lbl { color: var(--gold); }
.step.done .step-num { background: transparent; border-color: var(--gold); color: var(--gold); }

.step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0 0.8rem;
  margin-bottom: 1.2rem;
  transition: background 0.4s;
}
.step-line.done { background: var(--gold-border); }

.booking-panel {
  display: none;
  padding: 2.5rem;
}
.booking-panel.active { display: block; }
.booking-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 1.8rem;
  color: var(--text);
}

/* Booking services list */
.booking-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.bs-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s;
  font-size: 0.85rem;
}
.bs-item:hover { border-color: var(--gold-border); background: var(--gold-dim); }
.bs-item input { accent-color: var(--gold); width: 14px; height: 14px; }
.bs-item span { flex: 1; color: var(--text); }
.bs-item em { color: var(--gold); font-style: normal; font-weight: 500; margin-left: auto; }
.bs-item:has(input:checked) { border-color: var(--gold); background: var(--gold-dim); }

.booking-stylist-select { margin-bottom: 2rem; }
.booking-stylist-select label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.booking-stylist-select select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
}
.booking-stylist-select select:focus { border-color: var(--gold); }

/* Calendar */
.calendar-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
}

.cal-nav {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: all 0.25s;
}
.cal-nav:hover { border-color: var(--gold); color: var(--gold); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  padding: 0.75rem 1rem 1rem;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.cal-day:hover:not(.disabled):not(.empty) { background: var(--gold-dim); color: var(--gold); }
.cal-day.selected { background: var(--gold); color: #0e0e0e; font-weight: 600; }
.cal-day.today { border: 1px solid var(--gold-border); color: var(--gold); }
.cal-day.disabled { color: var(--text-dim); opacity: 0.35; cursor: not-allowed; }
.cal-day.empty { cursor: default; }

/* Time Slots */
.time-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.8rem;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.slot {
  padding: 0.65rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  transition: all 0.25s;
  background: var(--bg2);
}
.slot:hover:not(.disabled) { border-color: var(--gold); color: var(--gold); }
.slot.selected { background: var(--gold); color: #0e0e0e; border-color: var(--gold); font-weight: 500; }
.slot.disabled { opacity: 0.3; cursor: not-allowed; text-decoration: line-through; }

/* Form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: span 2; }
.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.form-group input, .form-group textarea {
  padding: 0.8rem 1rem;
  background: var(--bg2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dim); }

.booking-summary {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.5rem;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.booking-summary strong { color: var(--gold); }

.booking-nav-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

/* Success */
#bookingSuccess { text-align: center; padding: 3rem 2.5rem; }
.success-anim { margin-bottom: 2rem; display: flex; justify-content: center; }
.success-circle {
  width: 80px; height: 80px;
  color: var(--gold);
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes popIn { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
#bookingSuccess h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.success-sub { color: var(--text-muted); max-width: 50ch; margin: 0 auto 1.5rem; line-height: 1.7; }
.success-details {
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 2px;
  padding: 1rem 1.5rem;
  margin: 0 auto 2rem;
  max-width: 400px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 2;
  text-align: left;
}
.success-details strong { color: var(--text); }

/* ── Gallery ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 8px;
}

.gallery-item {
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s ease;
}
.gallery-item:hover { transform: scale(1.02); z-index: 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-label { opacity: 1; }

/* Grid decor overlays */
.gallery-grid .gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(201,168,76,0.03) 20px,
      rgba(201,168,76,0.03) 21px
    );
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.2rem; line-height: 1.5; flex-shrink: 0; }
.contact-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold); }

.map-wrap { position: sticky; top: 6rem; }

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(160deg, #0a0d0a, #101510);
  border-radius: 2px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(201,168,76,0.06) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(201,168,76,0.06) 40px);
}

.map-pin {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}
.map-pin span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--gold);
  color: #0e0e0e;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  white-space: nowrap;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── Footer ── */
#footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: 0.84rem; color: var(--text-muted); max-width: 30ch; line-height: 1.7; }

.footer-links h4, .footer-newsletter h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
}
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-newsletter p { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--text-dim); }
.newsletter-msg {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 0.5rem;
  min-height: 1.2em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-dim); letter-spacing: 0.05em; }

.social-links { display: flex; gap: 0.8rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
  color: var(--text-muted);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .map-wrap { position: static; }
  .stylists-grid { grid-template-columns: 1fr 1fr; }
  .stylists-grid .stylist-card:last-child { grid-column: span 2; max-width: 400px; margin: 0 auto; width: 100%; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .section { padding: 70px 0; }
  .container { padding: 0 1.2rem; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }

  .services-grid { grid-template-columns: 1fr; }
  .stylists-grid { grid-template-columns: 1fr; }
  .stylists-grid .stylist-card:last-child { grid-column: span 1; max-width: none; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall, .gallery-item.wide { grid-row: span 1; grid-column: span 1; }

  .booking-services { grid-template-columns: 1fr; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }

  .about-stats { gap: 1.5rem; flex-wrap: wrap; }
  .service-tabs { width: 100%; flex-wrap: wrap; }
  .tab-btn { flex: 1; min-width: 50%; border-bottom: 1px solid var(--border); }

  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .booking-nav-row { flex-direction: column-reverse; }
  .booking-nav-row .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-steps { padding: 1.2rem 1rem; gap: 0; }
  .step-lbl { display: none; }
  .booking-panel { padding: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 200px; }
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Keeps image behind text */
  background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('your-image.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

