/* ============================================================
   GORGEOUS HAIR DESIGN — Global Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

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

:root {
  --dark:        #1a1a1a;
  --gold:        #b8956a;
  --gold-light:  #d4b896;
  --cream:       #faf7f3;
  --blush:       #f0e2d8;
  --text:        #2c2c2c;
  --text-light:  #6e6e6e;
  --white:       #ffffff;
  --border:      #e8e0d8;
  --nav-h:       80px;
  --max-w:       1200px;
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --font-h:      'Cormorant Garamond', Georgia, serif;
  --font-b:      'Jost', system-ui, sans-serif;
  --shadow:      0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.11);
  --r:           4px;
  --r-lg:        12px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-h); font-weight: 400; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); letter-spacing: -0.01em; }
.hero h1, .hero h2, .hero p { color: var(--cream); }
.cta-section { background: var(--dark); color: var(--cream); padding: 96px 0; text-align: center; }
.cta-section h1, .cta-section h2 { color: var(--cream); }
.cta-section p { color: var(--blush); margin-bottom: 2rem; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--text-light); line-height: 1.8; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section--cream { background: var(--cream); }
.section--dark  { background: var(--dark); }
.section--blush { background: var(--blush); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }
.section-header { max-width: 600px; margin: 0 auto 64px; text-align: center; }
.section-header p { margin-top: 1rem; font-size: 1.05rem; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-b);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
}
.btn-primary:hover {
  background: #a07e58;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,149,106,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--white);
}
.cta-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
.nav-inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  transition: color 0.3s;
  letter-spacing: 0.04em;
}
.nav-logo span { color: var(--gold); }
.nav.scrolled .nav-logo { color: var(--dark); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after,
.nav-links a:hover::after { transform: scaleX(1); }
.nav.scrolled .nav-links a { color: var(--text-light); }
.nav.scrolled .nav-links a:hover,
.nav.scrolled .nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 16px; }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
.nav.scrolled .nav-burger span { background: var(--dark); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  height: 400px;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.7) 0%, rgba(184,149,106,0.25) 100%);
  z-index: 1;
}
.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero-content p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}
.divider--left { margin-left: 0; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.card-body p  { font-size: 0.95rem; margin-bottom: 16px; }

/* ── Service Cards ─────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.service-card-img { aspect-ratio: 3/2; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-body h3 { font-size: 1.6rem; margin-bottom: 8px; }
.service-card-body p  { font-size: 0.93rem; line-height: 1.75; }
.service-price {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Team Cards ────────────────────────────────────────────── */
.team-card {
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.team-card:hover { transform: translateY(-6px); }
.team-card-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r-lg);
  margin-bottom: 20px;
}
.team-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-card-photo img { transform: scale(1.04); }
.team-card h3 { font-size: 1.7rem; margin-bottom: 4px; }
.team-card .role { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.team-card p { font-size: 0.93rem; margin-top: 12px; }

/* ── Testimonials ──────────────────────────────────────────── */
.testimonial {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--font-h);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 12px; left: 24px;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial p { font-size: 1rem; color: var(--text); font-style: italic; line-height: 1.8; }
.testimonial-author { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testimonial-author-name { font-weight: 600; font-size: 0.9rem; color: var(--dark); }
.testimonial-author-label { font-size: 0.78rem; color: var(--text-light); }

/* ── Process / How It Works ────────────────────────────────── */
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.process-step h3 { font-size: 1.5rem; margin-bottom: 12px; }

/* ── Pain Points ──────────────────────────────────────────── */
.pain-item { display: flex; gap: 20px; align-items: flex-start; padding: 28px; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow); }
.pain-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; }
.pain-item h4 { font-family: var(--font-b); font-size: 1rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.pain-item p { font-size: 0.9rem; margin: 0; }

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat { text-align: center; padding: 40px 20px; background: rgba(255,255,255,0.04); }
.stat-number { font-family: var(--font-h); font-size: 3.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* ── Contact Form ──────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-b);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Contact Info ──────────────────────────────────────────── */
.contact-item { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 32px; }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
}
.contact-item h4 { font-family: var(--font-b); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.contact-item p  { font-size: 0.95rem; margin: 0; }
.contact-item a  { color: var(--text-light); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }

/* ── Map ───────────────────────────────────────────────────── */
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; width: 100%; height: 360px; border: none; }

/* ── Opening Hours ─────────────────────────────────────────── */
.hours-table { width: 100%; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.93rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; color: var(--dark); }
.hours-row .time { color: var(--text-light); }
.hours-row .closed { color: #c0392b; font-weight: 500; }

/* ── Footer ────────────────────────────────────────────────── */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 64px; }
.footer-logo { font-family: var(--font-h); font-size: 1.8rem; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer h4 { font-family: var(--font-b); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); font-weight: 600; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.9rem; line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── Animations ────────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(1) { transition-delay: 0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Page-specific ─────────────────────────────────────────── */
.about-story p { font-size: 1.05rem; line-height: 1.9; margin-bottom: 1.2rem; color: var(--text); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card { text-align: center; padding: 40px 28px; border: 1px solid var(--border); border-radius: var(--r-lg); transition: border-color 0.3s, box-shadow 0.3s; }
.value-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.4rem; margin-bottom: 12px; }

/* ── Privacy ───────────────────────────────────────────────── */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.8rem; margin: 2.5rem 0 1rem; }
.prose h3 { font-size: 1.3rem; margin: 2rem 0 0.75rem; }
.prose p  { font-size: 0.97rem; margin-bottom: 1.1rem; color: var(--text); }
.prose ul { padding-left: 20px; margin-bottom: 1.1rem; }
.prose ul li { font-size: 0.97rem; color: var(--text); margin-bottom: 6px; list-style: disc; }
.prose a  { color: var(--gold); text-decoration: underline; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; background: var(--dark); z-index: 998; justify-content: center; align-items: center; gap: 32px; padding: 0; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; color: rgba(255,255,255,0.8); }
  .nav-links .nav-cta { margin-left: 0; }
  .nav-burger { display: flex; z-index: 999; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-2.reverse-mobile > *:first-child { order: 2; }
  .grid-3 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { height: 300px; }
  .cta-group { flex-direction: column; align-items: flex-start; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .grid-4 { grid-template-columns: 1fr; }
  .btn { padding: 13px 24px; }
}

/* ── BOOKING MODAL ─────────────────────────────────────── */
.booking-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20,17,14,0.7);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.booking-modal-overlay.active { display: flex; }
.booking-modal {
  background: var(--cream);
  border-radius: 4px;
  padding: 2.8rem 2.5rem 2.5rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.booking-modal-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none; border: none;
  font-size: 1.5rem; cursor: pointer;
  color: var(--charcoal); opacity: 0.5;
  line-height: 1;
}
.booking-modal-close:hover { opacity: 1; }
.booking-modal h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
}
.booking-modal .modal-subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
}
.modal-option-btn {
  display: block;
  width: 100%;
  padding: 1rem 1.4rem;
  margin-bottom: 0.75rem;
  background: var(--white);
  border: 1px solid rgba(184,149,106,0.35);
  border-radius: 3px;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
  color: var(--charcoal);
  transition: border-color 0.2s, background 0.2s;
  font-family: var(--font-sans);
}
.modal-option-btn:hover {
  border-color: var(--gold);
  background: #faf7f2;
}
.modal-option-btn .opt-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}
.modal-option-btn .opt-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.modal-divider {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 1.2rem 0 1rem;
}
.modal-stylist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.modal-stylist-btn {
  display: block;
  padding: 0.85rem 1rem;
  min-height: 44px;
  background: var(--white);
  border: 1px solid rgba(184,149,106,0.35);
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.modal-stylist-btn:hover {
  border-color: var(--gold);
  background: #faf7f2;
  color: var(--gold);
}

/* ── Modal Mobile ────────────────────────────────────────── */
@media (max-width: 480px) {
  .booking-modal {
    padding: 2rem 1.5rem 1.8rem;
    margin: 0.5rem;
  }
  .modal-stylist-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .modal-stylist-btn {
    font-size: 0.82rem;
    padding: 0.9rem 0.5rem;
  }
  .modal-option-btn {
    min-height: 44px;
  }
}
