/* ==========================================================================
   FADEHOUSE — Barbershop demo
   Design language reference: indigo/navy + violet accent, soft lavender
   background, rounded 20-24px cards, pill buttons, gold ratings.
   ========================================================================== */

:root {
  --navy-900: #1a1638;
  --navy-800: #221c4f;
  --navy-700: #2e2a63;
  --purple-600: #5b4fe5;
  --purple-500: #6d5dfb;
  --purple-400: #8b7cff;
  --purple-100: #eeecff;
  --bg: #f6f5fc;
  --bg-alt: #efedfb;
  --card: #ffffff;
  --text-primary: #1a1830;
  --text-secondary: #6b6880;
  --text-muted: #9997ab;
  --gold: #ffb800;
  --border: #ece9f7;
  --success: #1fa971;
  --danger: #ef4d5e;
  --shadow-sm: 0 4px 16px rgba(34, 28, 79, 0.06);
  --shadow-md: 0 10px 30px rgba(34, 28, 79, 0.10);
  --shadow-lg: 0 20px 50px rgba(34, 28, 79, 0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1160px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select { font-family: inherit; }

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--navy-900);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-600);
  background: var(--purple-100);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.section {
  padding: 88px 0;
}
.section--tight { padding: 56px 0; }
.section--alt { background: var(--bg-alt); }
.section--dark {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); margin-top: 14px; }
.section-head p { color: var(--text-secondary); margin: 10px 0 0; max-width: 520px; font-size: 16px; }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center p { max-width: 560px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, opacity .15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 10px 24px rgba(26, 22, 56, 0.28);
}
.btn-primary:hover { background: var(--navy-700); box-shadow: 0 12px 28px rgba(26, 22, 56, 0.36); }
.btn-accent {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  color: #fff;
  box-shadow: 0 10px 24px rgba(91, 79, 229, 0.35);
}
.btn-accent:hover { box-shadow: 0 14px 30px rgba(91, 79, 229, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy-900); }
.btn-light {
  background: #fff;
  color: var(--navy-900);
}
.btn-light:hover { background: #f0eefe; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn[disabled] { opacity: .4; pointer-events: none; }
.btn-icon {
  width: 46px; height: 46px; padding: 0; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 245, 252, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy-900);
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-500), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.brand small { display: block; font-size: 10px; font-weight: 700; letter-spacing: .14em; color: var(--text-muted); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14.5px;
  color: var(--text-secondary);
}
.nav-links a:hover { color: var(--navy-900); background: #fff; }
.nav-links a.active { color: var(--navy-900); background: #fff; box-shadow: var(--shadow-sm); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 20px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 16px 4px;
  font-size: 19px;
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  color: var(--navy-900);
}
.mobile-menu .btn { margin-top: 24px; }

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 100px;
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  margin: 18px 0 20px;
}
.hero h1 span { color: var(--purple-600); }
.hero p.lead {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 0 32px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 38px; height: 38px; border-radius: 50%;
  border: 3px solid var(--bg);
  object-fit: cover;
  margin-left: -12px;
}
.avatar-stack img:first-child { margin-left: 0; }
.hero-rating-text { font-size: 13.5px; color: var(--text-secondary); }
.hero-rating-text strong { color: var(--navy-900); }

.hero-art { position: relative; }
.hero-art-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.hero-art-photo img { width: 100%; height: 100%; object-fit: cover; }
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.floating-card.fc-rating { top: 24px; right: -24px; }
.floating-card.fc-booking { bottom: 28px; left: -32px; }
.fc-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.fc-icon.gold { background: #fff6e0; color: var(--gold); }
.fc-icon.green { background: #e4f9f0; color: var(--success); }
.fc-title { font-weight: 800; font-size: 15px; color: var(--navy-900); }
.fc-sub { font-size: 12.5px; color: var(--text-secondary); }

/* ---------- Stats ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 72px;
}
.stat { text-align: center; }
.stat .num { font-size: clamp(26px, 3vw, 36px); font-weight: 800; color: var(--navy-900); }
.stat .label { font-size: 13.5px; color: var(--text-secondary); margin-top: 4px; }

/* ---------- Service chips (home preview) ---------- */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.chip-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .18s ease, box-shadow .18s ease;
}
.chip-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.chip-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.chip-card h4 { font-size: 15.5px; margin-bottom: 4px; }
.chip-card p { font-size: 12.5px; color: var(--text-secondary); margin: 0; }

/* ---------- Promo / gradient card ---------- */
.promo-card {
  background: linear-gradient(135deg, var(--purple-500) 0%, var(--navy-800) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.promo-card::after {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  right: -100px; top: -120px;
}
.promo-card h3 { color: #fff; font-size: clamp(24px, 3vw, 32px); margin-bottom: 12px; }
.promo-card p { color: rgba(255,255,255,.78); margin: 0 0 24px; max-width: 420px; }
.promo-card img { border-radius: var(--radius-md); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; position: relative; z-index: 1; }

/* ---------- Cards: barbers ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.barber-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .18s ease, box-shadow .18s ease;
}
.barber-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.barber-photo { aspect-ratio: 1/1; overflow: hidden; position: relative; }
.barber-photo img { width: 100%; height: 100%; object-fit: cover; }
.barber-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; gap: 5px;
  color: var(--navy-900);
}
.barber-body { padding: 20px; }
.barber-body h4 { font-size: 18px; margin-bottom: 2px; }
.barber-role { color: var(--purple-600); font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.barber-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.rating { display: flex; align-items: center; gap: 5px; font-size: 13.5px; font-weight: 700; color: var(--navy-900); }
.rating svg { color: var(--gold); }
.rating .count { color: var(--text-muted); font-weight: 500; }
.barber-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tag {
  font-size: 11.5px; font-weight: 700; color: var(--text-secondary);
  background: var(--bg-alt); padding: 5px 10px; border-radius: var(--radius-pill);
}

/* ---------- Services list ---------- */
.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.tab {
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}
.tab.active { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }

.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 14px;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.service-row:hover { box-shadow: var(--shadow-sm); border-color: transparent; }
.service-left { display: flex; align-items: center; gap: 16px; }
.service-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple-100); color: var(--purple-600);
  flex-shrink: 0;
}
.service-name { font-weight: 700; font-size: 16px; color: var(--navy-900); }
.service-desc { font-size: 13.5px; color: var(--text-secondary); margin-top: 2px; }
.service-duration { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; display: flex; align-items: center; gap: 5px; }
.service-right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.service-price { font-weight: 800; font-size: 18px; color: var(--navy-900); }
.add-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy-900); color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: none; flex-shrink: 0; transition: background .15s ease, transform .15s ease;
}
.add-btn:hover { background: var(--purple-600); }
.add-btn.added { background: var(--success); }
.add-btn:active { transform: scale(.9); }

/* ---------- Gallery ---------- */
.gallery-grid {
  columns: 3 220px;
  column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gallery-item img { width: 100%; display: block; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gi-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(26,22,56,.72);
  color: #fff; font-size: 11.5px; font-weight: 700;
  padding: 6px 12px; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial-card .rating { margin-bottom: 14px; }
.testimonial-card p.quote { font-size: 15.5px; color: var(--text-primary); margin-bottom: 20px; min-height: 84px; }
.testimonial-author { 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: 700; font-size: 14px; }
.testimonial-author .meta { font-size: 12.5px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 22px;
  margin-bottom: 12px;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-weight: 700; font-size: 15.5px;
}
.faq-icon { transition: transform .2s ease; flex-shrink: 0; color: var(--purple-600); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; color: var(--text-secondary); font-size: 14.5px; line-height: 1.65; }
.faq-item.open .faq-a { display: block; }

/* ---------- CTA banner ---------- */
.cta-banner {
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  padding: 60px 48px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: #fff; font-size: clamp(26px, 3.2vw, 38px); }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 480px; margin: 14px auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.65);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid h5 { color: #fff; font-size: 14px; margin-bottom: 18px; }
.footer-grid ul li { margin-bottom: 12px; font-size: 14.5px; }
.footer-grid ul li a:hover { color: #fff; }
.footer-brand p { font-size: 14px; margin: 14px 0 20px; max-width: 280px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--purple-500); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13px; flex-wrap: wrap; gap: 12px;
}
.footer-hours li { display: flex; justify-content: space-between; gap: 20px; }
.footer-hours li span:last-child { color: #fff; font-weight: 600; }

/* ---------- Booking wizard ---------- */
.booking-shell {
  max-width: 760px;
  margin: 0 auto;
}
.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 44px;
  position: relative;
}
.step-indicator::before {
  content: '';
  position: absolute;
  top: 17px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  flex: 1;
}
.step .dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; color: var(--text-muted);
  transition: all .2s ease;
}
.step .label { font-size: 12.5px; font-weight: 700; color: var(--text-muted); }
.step.active .dot { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.step.active .label { color: var(--navy-900); }
.step.done .dot { background: var(--success); border-color: var(--success); color: #fff; }

.wizard-panel { display: none; animation: fadeUp .35s ease; }
.wizard-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px);} to { opacity: 1; transform: translateY(0);} }

.panel-title { font-size: 22px; margin-bottom: 6px; }
.panel-sub { color: var(--text-secondary); font-size: 14.5px; margin-bottom: 28px; }

.select-service-row {
  display: flex; align-items: center; justify-content: space-between;
  background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 16px 20px; margin-bottom: 12px; cursor: pointer; transition: all .15s ease;
}
.select-service-row.picked { border-color: var(--purple-500); background: var(--purple-100); }
.select-service-row .ssr-name { font-weight: 700; font-size: 15.5px; }
.select-service-row .ssr-meta { font-size: 12.5px; color: var(--text-secondary); margin-top: 3px; }
.select-service-row .ssr-price { font-weight: 800; color: var(--navy-900); margin-right: 14px; }
.checkbox-circle {
  width: 24px; height: 24px; border-radius: 50%; border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: #fff;
}
.select-service-row.picked .checkbox-circle { background: var(--purple-500); border-color: var(--purple-500); color: #fff; }

.barber-pick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.barber-pick {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 16px; display: flex; gap: 14px; align-items: center; cursor: pointer; background: #fff;
  transition: all .15s ease;
}
.barber-pick.picked { border-color: var(--purple-500); background: var(--purple-100); }
.barber-pick img { width: 54px; height: 54px; border-radius: 14px; object-fit: cover; }
.barber-pick .bp-name { font-weight: 700; font-size: 14.5px; }
.barber-pick .bp-role { font-size: 12px; color: var(--text-secondary); }

.date-strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 32px; }
.date-pill {
  min-width: 62px; padding: 12px 0; border-radius: 16px; text-align: center;
  border: 1.5px solid var(--border); background: #fff; cursor: pointer; flex-shrink: 0;
}
.date-pill .dow { font-size: 11px; color: var(--text-muted); font-weight: 700; }
.date-pill .dnum { font-size: 17px; font-weight: 800; color: var(--navy-900); margin-top: 3px; }
.date-pill.picked { background: var(--navy-900); border-color: var(--navy-900); }
.date-pill.picked .dow, .date-pill.picked .dnum { color: #fff; }

.time-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.time-pill {
  padding: 13px 0; text-align: center; border-radius: 14px;
  border: 1.5px solid var(--border); background: #fff; font-weight: 700; font-size: 13.5px; cursor: pointer;
}
.time-pill.picked { background: var(--navy-900); border-color: var(--navy-900); color: #fff; }
.time-pill.disabled { opacity: .35; pointer-events: none; text-decoration: line-through; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; color: var(--navy-900); }
.form-field input, .form-field textarea {
  width: 100%; padding: 14px 16px; border-radius: 14px; border: 1.5px solid var(--border);
  font-size: 14.5px; background: #fff; color: var(--text-primary);
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--purple-500); }

.summary-card {
  background: var(--bg-alt); border-radius: var(--radius-md); padding: 22px; margin-top: 8px;
}
.summary-row { display: flex; justify-content: space-between; font-size: 14px; padding: 8px 0; color: var(--text-secondary); }
.summary-row strong { color: var(--navy-900); }
.summary-row.total { border-top: 1px dashed var(--border); margin-top: 8px; padding-top: 14px; font-size: 16px; }
.summary-row.total strong { font-size: 19px; }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 14px; }

.sticky-total {
  position: sticky; bottom: 20px;
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 18px 24px; display: flex; align-items: center; justify-content: space-between;
  margin-top: 28px; border: 1px solid var(--border);
}
.sticky-total .st-label { font-size: 12.5px; color: var(--text-secondary); }
.sticky-total .st-amount { font-size: 22px; font-weight: 800; color: var(--navy-900); }

.confirm-screen { text-align: center; padding: 20px 0 10px; }
.confirm-check {
  width: 92px; height: 92px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-500), var(--success));
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; color: #fff;
  box-shadow: 0 16px 32px rgba(31,169,113,.3);
}
.confirm-screen h2 { font-size: 26px; margin-bottom: 10px; }
.confirm-screen p.sub { color: var(--text-secondary); margin-bottom: 32px; }
.confirm-code {
  display: inline-block; background: var(--bg-alt); padding: 8px 18px; border-radius: var(--radius-pill);
  font-weight: 800; letter-spacing: .06em; color: var(--purple-600); margin-bottom: 32px; font-size: 13.5px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 56px 0 40px;
  text-align: center;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(32px, 4.4vw, 48px); }
.page-hero p { color: var(--text-secondary); max-width: 560px; margin: 16px auto 0; font-size: 16.5px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }

/* ---------- Mobile bottom nav (app feel) ---------- */
.bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--border);
  padding: 10px 8px calc(10px + env(safe-area-inset-bottom));
  justify-content: space-around;
  box-shadow: 0 -8px 24px rgba(34,28,79,.06);
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-size: 10.5px; font-weight: 700; color: var(--text-muted); padding: 4px 10px;
}
.bottom-nav a.active { color: var(--navy-900); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { order: -1; max-width: 380px; margin: 0 auto; width: 100%; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .promo-card { grid-template-columns: 1fr; padding: 32px; }
  .promo-card img { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { columns: 2 200px; }
  .barber-pick-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  body { padding-bottom: 76px; }
  .bottom-nav { display: flex; }
}

@media (max-width: 480px) {
  .brand small { display: none; }
  .brand { font-size: 16px; gap: 8px; }
  .brand-mark { width: 32px; height: 32px; border-radius: 10px; }
  .brand-mark svg { width: 16px; height: 16px; }
  .header-actions { gap: 8px; }
  .site-header .btn-sm { padding: 10px 14px; font-size: 13px; }
  .site-header .container { height: 72px; }
  .mobile-menu { inset: 72px 0 0 0; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .time-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { columns: 2 140px; column-gap: 12px; }
  .gallery-item { margin-bottom: 12px; }
  .cta-banner { padding: 40px 24px; }
  .floating-card { display: none; }
}
