/* ============================================
   MAISON MONTESSON — Stylesheet
   Salon de coiffure femme · Bezons 95870
   Mobile-first · Calacatta Luxury
   ============================================ */

/* ---- Variables ---- */
:root {
  --ivory: #fdfcf8;
  --black: #1a1814;
  --gold: #b8982a;
  --gold-light: #c9aa3e;
  --gold-muted: rgba(184, 152, 42, 0.2);
  --gray: #9a9288;
  --gray-light: #e8e4dc;
  --gray-lightest: #f5f3ee;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-card: 18px;
  --radius-photo: 14px;
  --radius-btn: 50px;

  --pad-h: 20px;
  --max-w: 1100px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.3s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--ivory);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 76px;
  -webkit-tap-highlight-color: transparent;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.section { padding: 4rem var(--pad-h); max-width: var(--max-w); margin: 0 auto; }
.section-dark {
  background: var(--black);
  padding: 4rem var(--pad-h);
}
.section-dark .section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(253, 252, 248, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-light);
}
.header-logo {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: white;
  transition: color var(--transition);
  line-height: 1.15;
}
.site-header.scrolled .header-logo { color: var(--black); }
.header-logo span {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  font-weight: 200;
  margin-top: 2px;
  color: var(--gold);
  font-style: normal;
}

/* ---- Hamburger ---- */
.nav-toggle {
  width: 44px; height: 44px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}
.nav-toggle span {
  display: block; width: 22px; height: 1px;
  background: white;
  transition: all 0.35s ease;
  transform-origin: center;
}
.site-header.scrolled .nav-toggle span { background: var(--black); }
.nav-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); background: white; }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); background: white; }

/* ---- Nav Overlay ---- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  overflow: hidden;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }
.nav-overlay > a {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 9vw, 3.2rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.04em;
  transition: color var(--transition);
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.nav-overlay > a:active { color: var(--gold); }
.nav-divider {
  width: 32px; height: 1px;
  background: rgba(184, 152, 42, 0.3);
  margin: 0.25rem 0;
}
.nav-phone {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}
.nav-phone a { color: inherit; transition: color var(--transition); }
.nav-phone a:active { color: var(--gold); }

/* Desktop nav (hidden on mobile) */
.desktop-nav { display: none; }

/* ---- Sticky Bar ---- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  background: var(--black);
  border-top: 1px solid rgba(184, 152, 42, 0.18);
}
.sticky-reserve {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: background 0.2s ease, transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}
.sticky-reserve:active { transform: scale(0.97); background: var(--gold-light); }
.sticky-phone {
  width: 48px; height: 48px; min-width: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(184, 152, 42, 0.45);
  border-radius: 50%;
  color: var(--gold);
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.sticky-phone:active { background: rgba(184, 152, 42, 0.1); }
.sticky-phone svg { width: 18px; height: 18px; }

/* ---- Section Typography ---- */
.section-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(1.85rem, 6.5vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: var(--black);
}
.section-title em { font-style: italic; }
.section-title.on-dark { color: white; }
.section-sub {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  max-width: 440px;
  margin-top: 0.6rem;
}
.section-sub.on-dark { color: rgba(255, 255, 255, 0.45); }

/* ---- Hero (index) ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 24, 20, 0.12) 0%,
    rgba(26, 24, 20, 0.04) 35%,
    rgba(26, 24, 20, 0.58) 68%,
    rgba(26, 24, 20, 0.9) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--pad-h) 2.5rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border: 1px solid rgba(184, 152, 42, 0.55);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  backdrop-filter: blur(8px);
  background: rgba(26, 24, 20, 0.35);
}
.hero-stars { font-size: 0.6rem; letter-spacing: 2px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(3rem, 12vw, 5.5rem);
  line-height: 1.04;
  color: white;
  letter-spacing: 0.015em;
  margin-bottom: 0.65rem;
}
.hero h1 em { font-style: italic; font-weight: 300; color: rgba(255, 255, 255, 0.75); }
.hero-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.75rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  transition: background var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.hero-cta:active { background: rgba(255, 255, 255, 0.1); }

/* ---- Band Stats ---- */
.band-stats {
  background: var(--black);
  padding: 0 var(--pad-h);
}
.band-stats-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max-w);
  margin: 0 auto;
}
.stat-item {
  padding: 1.65rem 0.5rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.75rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ---- Prestations Preview ---- */
.presta-intro { margin-bottom: 2rem; }
.presta-list { border-top: 1px solid var(--gray-light); }
.presta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
  min-height: 56px;
  cursor: pointer;
  transition: color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.presta-item:active .presta-name { color: var(--gold); }
.presta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.presta-name {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--black);
  transition: color var(--transition);
}
.presta-price {
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  color: var(--gray);
  white-space: nowrap;
}
.presta-price.is-gold { color: var(--gold); }
.presta-arrow {
  width: 16px; height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}
.presta-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  margin-top: 1.75rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.presta-all-link:active { background: rgba(184, 152, 42, 0.08); }

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 1.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-photo);
  background: var(--gray-light);
  aspect-ratio: 3/4;
}
.gallery-item:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 5/4;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.gallery-item:active img { transform: scale(1.03); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 14px;
  background: linear-gradient(transparent, rgba(26, 24, 20, 0.7));
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* ---- Scalp Signature (index) ---- */
.scalp-section {
  background: var(--black);
  padding: 4rem var(--pad-h);
}
.scalp-section .section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.scalp-card {
  position: relative;
  border: 1px solid rgba(184, 152, 42, 0.28);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  overflow: hidden;
  max-width: 520px;
  margin: 2rem auto 0;
}
.scalp-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.scalp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(184, 152, 42, 0.12);
  border: 1px solid rgba(184, 152, 42, 0.35);
  border-radius: var(--radius-btn);
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.scalp-pitch {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 200;
  font-style: italic;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.scalp-price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 1rem 0;
}
.scalp-price {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}
.scalp-price-unit {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.35);
}
.scalp-desc {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.scalp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 400;
  transition: background var(--transition), transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}
.scalp-btn:active { transform: scale(0.97); }
.scalp-more {
  display: block;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---- Reviews ---- */
.reviews-section {
  background: var(--black);
  padding: 4rem var(--pad-h);
}
.reviews-section .section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 2rem;
}
.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}
.review-stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  margin-bottom: 0.85rem;
}
.review-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.68;
  margin-bottom: 1rem;
}
.review-author {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ---- CTA Reservation ---- */
.cta-section {
  background: linear-gradient(145deg, #b8982a 0%, #9a7d1e 100%);
  padding: 4.5rem var(--pad-h);
  text-align: center;
}
.cta-section .section-title { color: var(--black); }
.cta-section .section-title em { color: rgba(26, 24, 20, 0.65); }
.cta-section .section-sub {
  color: rgba(26, 24, 20, 0.6);
  max-width: 360px;
  margin: 0.75rem auto 2rem;
}
.cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta-btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 32px;
  background: var(--black);
  color: white;
  border-radius: var(--radius-btn);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: opacity var(--transition), transform 0.1s ease;
  -webkit-tap-highlight-color: transparent;
}
.cta-btn-dark:active { transform: scale(0.97); opacity: 0.9; }
.cta-phone-link {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(26, 24, 20, 0.55);
}

/* ---- Map ---- */
.map-section iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--black);
  padding: 3.5rem var(--pad-h) 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-brand {
  margin-bottom: 2rem;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 1.25rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ivory);
  line-height: 1.15;
}
.footer-logo-text span {
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 200;
  margin-top: 3px;
  font-style: normal;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 0.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1.25rem;
  margin-bottom: 2.5rem;
}
.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: 0.8rem;
}
.footer-col p,
.footer-col address { font-size: 0.8rem; line-height: 1.9; color: rgba(255, 255, 255, 0.45); }
.footer-col a { color: rgba(255, 255, 255, 0.45); transition: color var(--transition); }
.footer-col a:active { color: var(--gold); }
.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  line-height: 2;
  color: rgba(255, 255, 255, 0.45);
  gap: 8px;
}
.hours-item.closed { color: rgba(255, 255, 255, 0.2); }
.footer-nav-list { list-style: none; }
.footer-nav-list li { line-height: 2.2; }
.footer-nav-list a { font-size: 0.78rem; color: rgba(255, 255, 255, 0.4); transition: color var(--transition); }
.footer-nav-list a:active { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 0.75rem;
}
.footer-social a {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity var(--transition);
}
.footer-social a:active { opacity: 0.6; }
.footer-copy { font-size: 0.68rem; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.2); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--black);
  padding: 110px var(--pad-h) 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 152, 42, 0.25), transparent);
}
.page-hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.3rem, 9vw, 4.2rem);
  color: white;
  line-height: 1.1;
  letter-spacing: 0.02em;
  max-width: var(--max-w);
  margin: 0 auto;
}
.page-hero h1 em { font-style: italic; color: rgba(255, 255, 255, 0.6); }
.page-hero-sub {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.38);
  max-width: var(--max-w);
  margin: 0.75rem auto 0;
  max-width: 460px;
  line-height: 1.7;
}

/* ---- Prestations page — Cat Nav ---- */
.cat-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--black);
}
.cat-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.cat-nav {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 var(--pad-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav-btn {
  flex-shrink: 0;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  -webkit-tap-highlight-color: transparent;
}
.cat-nav-btn.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* ---- Prestations page — Categories ---- */
.presta-page-body {
  background: var(--ivory);
}
.presta-category {
  padding: 3rem var(--pad-h);
  border-bottom: 1px solid var(--gray-light);
  max-width: var(--max-w);
  margin: 0 auto;
  scroll-margin-top: 48px;
}
.presta-category:last-child { border-bottom: none; }
.cat-number {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 4.5rem;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: -0.75rem;
  user-select: none;
}
.cat-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 5vw, 2.1rem);
  color: var(--black);
  margin-bottom: 0.25rem;
  line-height: 1.15;
}
.cat-title em { font-style: italic; }
.cat-desc {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.65;
  max-width: 360px;
}
.price-list { border-top: 1px solid var(--gray-light); }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--gray-light);
  min-height: 48px;
  gap: 12px;
}
.price-name {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 300;
  color: var(--black);
  flex: 1;
  line-height: 1.3;
}
.price-value {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--black);
  white-space: nowrap;
}
.price-value.is-gold { color: var(--gold); font-weight: 400; }
.presta-note {
  margin-top: 1.1rem;
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: var(--gray-lightest);
  border-radius: 0 10px 10px 0;
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.68;
}
.presta-cta-block {
  background: linear-gradient(145deg, #b8982a 0%, #9a7d1e 100%);
  padding: 3.5rem var(--pad-h);
  text-align: center;
}
.presta-cta-block .section-title { color: var(--black); }
.presta-cta-block .section-sub { color: rgba(26, 24, 20, 0.58); margin: 0.75rem auto 2rem; max-width: 340px; }

/* ---- Scalp Treatment page ---- */
.scalp-page { background: var(--black); min-height: 100vh; }

.scalp-page-hero {
  padding: 110px var(--pad-h) 3rem;
  position: relative;
  overflow: hidden;
}
.scalp-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(184, 152, 42, 0.08) 0%, transparent 65%);
  pointer-events: none;
}
.scalp-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(184, 152, 42, 0.38);
  border-radius: var(--radius-btn);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.scalp-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 11vw, 5rem);
  color: white;
  line-height: 1.04;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.scalp-page-hero h1 em { font-style: italic; color: rgba(255, 255, 255, 0.55); }
.scalp-page-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 1rem;
}
.scalp-page-price-num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 3.2rem;
  color: var(--gold);
  line-height: 1;
}
.scalp-page-price-desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.1em;
}
.scalp-page-sub {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.42);
  max-width: 420px;
  line-height: 1.75;
}
.scalp-divider {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 2rem 0;
}

/* Protocol steps */
.protocol-section {
  padding: 3.5rem var(--pad-h);
  max-width: var(--max-w);
  margin: 0 auto;
}
.protocol-section .section-title { color: white; }
.protocol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 2rem;
}
.protocol-step {
  background: var(--ivory);
  border-radius: var(--radius-card);
  padding: 1.75rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.step-number {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 4rem;
  color: rgba(228, 222, 212, 0.8);
  line-height: 1;
  user-select: none;
}
.step-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  line-height: 1.25;
}
.step-desc {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.72;
  max-width: 82%;
}

/* Benefits */
.benefits-section {
  padding: 3.5rem var(--pad-h);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  max-width: var(--max-w);
  margin: 0 auto;
}
.benefits-section .section-title { color: white; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-top: 2rem;
}
.benefit-item {
  background: var(--black);
  padding: 1.5rem 1.25rem;
}
.benefit-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.3rem;
}
.benefit-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
}

/* FAQ */
.faq-section {
  padding: 3.5rem var(--pad-h);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  max-width: var(--max-w);
  margin: 0 auto;
}
.faq-section .section-title { color: white; }
.faq-list {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.faq-item { border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  min-height: 60px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.faq-q-text {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 0.97rem;
  color: rgba(255, 255, 255, 0.82);
  flex: 1;
  line-height: 1.4;
}
.faq-icon {
  width: 26px; height: 26px; min-width: 26px;
  border-radius: 50%;
  border: 1px solid rgba(184, 152, 42, 0.38);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s ease;
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
}

/* Scalp Final CTA */
.scalp-final-cta {
  padding: 3.5rem var(--pad-h) 5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---- Responsive — Tablet ---- */
@media (min-width: 600px) {
  :root { --pad-h: 32px; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  .protocol-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  :root { --pad-h: 44px; }
  body { font-size: 16px; }
  .map-section iframe { height: 380px; }
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .gallery-item { aspect-ratio: 3/4 !important; }
  .gallery-item:first-child { grid-column: span 2; aspect-ratio: 1 !important; }
}

/* ---- Responsive — Desktop ---- */
@media (min-width: 1024px) {
  :root { --pad-h: 60px; }

  body { padding-bottom: 0; }
  .sticky-bar { display: none; }

  .nav-toggle { display: none; }
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .desktop-nav a {
    font-family: var(--font-body);
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    transition: color var(--transition);
  }
  .site-header.scrolled .desktop-nav a { color: rgba(26, 24, 20, 0.65); }
  .desktop-nav a:hover { color: var(--gold) !important; }
  .desktop-nav .nav-cta-btn {
    height: 38px;
    padding: 0 18px;
    border: 1px solid rgba(184, 152, 42, 0.45);
    border-radius: var(--radius-btn);
    color: var(--gold) !important;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    transition: background var(--transition);
  }
  .desktop-nav .nav-cta-btn:hover { background: var(--gold); color: var(--black) !important; }

  .hero-content { max-width: 680px; padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(4rem, 6.5vw, 5.5rem); }

  .band-stats-inner { max-width: 560px; }
  .stat-number { font-size: 2.1rem; }

  .reviews-grid { gap: 18px; }
  .review-card { padding: 2rem; }

  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 1280px) {
  :root { --pad-h: 80px; }
}
