/* ==========================================================
   MAVEN & CO. — Salon concept (Avara Designs)
   Cream + deep eggplant + rose-gold. Editorial serif.
   ========================================================== */

:root {
  --bg:        #FAF7F2;
  --bg-2:      #F1ECE3;
  --ink:       #2A1B2E;
  --ink-soft:  rgba(42, 27, 46, 0.72);
  --accent:    #C8956D;
  --accent-deep: #A6754D;
  --line:      rgba(42, 27, 46, 0.12);

  --serif:  'Playfair Display', 'Cormorant Garamond', 'Times New Roman', serif;
  --serif-secondary: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:   'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container-max: 1180px;
  --container-pad: clamp(20px, 4vw, 48px);
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
ul,ol { list-style: none; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding-inline: var(--container-pad); }

/* ----------- TYPOGRAPHY UTILITIES ----------- */

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 18px;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}
.section-headline em { font-style: italic; color: var(--accent-deep); font-weight: 500; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  border: 1px solid var(--ink);
  transition: background 240ms ease, color 240ms ease, transform 220ms cubic-bezier(.22,1,.36,1);
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--accent-deep); border-color: var(--accent-deep); transform: translateY(-2px); }

.link-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: gap 200ms ease, color 200ms ease;
}
.link-arrow:hover { color: var(--ink); }

/* ----------- NAV ----------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 0;
  background: rgba(250, 247, 242, 0);
  transition: background 280ms ease, backdrop-filter 280ms ease, padding 280ms ease;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto 1fr 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: center;
  font-style: italic;
}
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color 200ms ease;
}
.nav-link:hover { color: var(--ink); }
.nav-left:nth-of-type(1) { justify-self: end; }
.nav-left:nth-of-type(2) { justify-self: start; }
.nav-right:nth-of-type(1) { justify-self: end; }
.nav-right:nth-of-type(2) { justify-self: start; }

@media (max-width: 720px) {
  .nav-inner { grid-template-columns: 1fr; gap: 6px; padding: 0; }
  .nav-link { display: none; }
  .brand { font-size: 24px; text-align: left; }
}

/* ----------- HERO ----------- */

/* v4: Full-bleed editorial hero — salon photo dominates, text overlaid bottom-left with dark scrim. */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1920&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #2A1B2E;
  z-index: 0;
}
/* Dark overlay behind text (rgba 0,0,0,0.45 per v4 spec) — graduated for editorial feel */
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.45) 72%, rgba(0, 0, 0, 0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(80px, 12vw, 160px) clamp(28px, 7vw, 120px) clamp(60px, 9vw, 120px);
  max-width: 1080px;
  width: 100%;
  background: transparent;
  color: #FFF6E6;
}
.hero-content .kicker { color: rgba(255, 246, 230, 0.85); }
/* +40% on the headline per v4 spec (was clamp(56,8,112) → clamp(80,11.2,160)) */
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(80px, 11.2vw, 160px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: #FFF6E6;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.45);
}
.hero-headline em { font-style: italic; color: #E9C29A; }
.hero-sub {
  font-size: clamp(18px, 1.8vw, 24px);
  color: rgba(255, 246, 230, 0.93);
  margin-bottom: 44px;
  font-family: var(--serif);
  font-style: italic;
  max-width: 640px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

@media (max-width: 880px) {
  .hero { min-height: 88vh; }
  .hero-content { padding: 80px 24px 48px; }
}

/* ----------- SECTIONS ----------- */

.section { padding: clamp(80px, 14vw, 160px) 0; position: relative; }

/* Services */
.services { background: var(--bg-2); }
.services-grid {
  display: grid;
  gap: 28px 56px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 64px;
}
@media (max-width: 720px) { .services-grid { grid-template-columns: 1fr; gap: 24px; } }

.service {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.service-name { font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: -0.005em; }
.service-price { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--accent-deep); }
.service p { grid-column: 1 / -1; color: var(--ink-soft); margin-top: 4px; max-width: 460px; }

/* Stylists */
.stylists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  margin-top: 72px;
}
@media (max-width: 880px) { .stylists-grid { grid-template-columns: 1fr; gap: 56px; } }

.stylist h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; margin-top: 24px; }
.stylist-spec { font-style: italic; color: var(--accent-deep); margin-top: 4px; font-family: var(--serif); }
.stylist-bio { margin-top: 14px; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.stylist-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #d8c8b8, #c8956d 70%, #a6754d);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 72px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  font-style: italic;
}
.stylist-portrait::after {
  content: attr(data-name);
}

/* Testimonials */
.testimonials { background: var(--ink); color: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
@media (max-width: 880px) { .testimonials-grid { grid-template-columns: 1fr; gap: 40px; } }
.quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  line-height: 1.4;
  color: var(--bg);
  margin-bottom: 18px;
}
.quote blockquote::before { content: '"'; color: var(--accent); margin-right: 4px; }
.quote figcaption {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Book */
.book { text-align: center; }
.book-inner { max-width: 760px; margin: 0 auto; }
.book-sub { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink-soft); margin-bottom: 48px; }
.book-frame {
  border: 1px solid var(--line);
  background: var(--bg-2);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.book-frame-placeholder {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.book-frame-placeholder span { font-size: 14px; color: var(--ink-soft); opacity: 0.7; font-style: normal; font-family: var(--sans); }

/* Visit */
.visit { background: var(--bg-2); }
.visit-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
@media (max-width: 880px) { .visit-inner { grid-template-columns: 1fr; gap: 32px; } }
.visit-meta { margin-top: 32px; }
.visit-meta dt { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 4px; font-weight: 500; }
.visit-meta dd { margin-bottom: 18px; font-family: var(--serif); font-size: 19px; }
.visit-map {
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, #d8c8b8 0%, #c8956d 60%, #2A1B2E 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 28px;
  color: rgba(255,255,255,0.7);
  border-radius: 2px;
}

/* Footer */
.footer { background: var(--ink); color: var(--bg); padding: 56px 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 24px; } }
.brand-mark { font-family: var(--serif); font-style: italic; font-size: 28px; }
.footer-links { display: flex; gap: 24px; justify-content: center; }
.footer-links a { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); transition: color 200ms ease; }
.footer-links a:hover { color: var(--bg); }
.copyright { font-size: 13px; color: rgba(245,245,247,0.55); }
.copyright a { color: var(--accent); }

/* Sticky book button (mobile) */
.sticky-book {
  position: fixed;
  bottom: 16px; right: 16px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(42,27,46,0.3);
  z-index: 30;
  transition: transform 200ms ease, opacity 200ms ease;
  display: none;
}
@media (max-width: 720px) { .sticky-book { display: inline-flex; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(.22,1,.36,1), transform 700ms cubic-bezier(.22,1,.36,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ==========================================================
   v3 ADDITIONS — editorial sections + real photography
   ========================================================== */

/* ----------- EDITORIAL INTRO ----------- */

.intro { padding: clamp(80px, 10vw, 120px) 0; background: var(--bg); }
.intro-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.intro-prose {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.intro-prose span {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  letter-spacing: 0;
}

/* ----------- SERVICES (refined) ----------- */

.services-header { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.services-header .kicker { display: block; margin-bottom: 16px; }
.services-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 18px;
  margin-top: 12px;
}

.service-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

/* ----------- MOODBOARD ----------- */

.moodboard { background: var(--bg-2); }
.moodboard-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }

.moodboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
@media (max-width: 720px) {
  .moodboard-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; gap: 10px; }
}

.mood {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.mood-tall { grid-row: span 2; }
.mood-wide { grid-column: span 2; }
@media (max-width: 720px) { .mood-wide { grid-column: span 2; } }

.mood-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 800ms cubic-bezier(.22,1,.36,1);
}
.mood:hover .mood-img { transform: scale(1.05); }

.mood-img-1 { background-image: url('https://images.unsplash.com/photo-1492106087820-71f1a00d2b11?w=900&q=85&auto=format&fit=crop'); }
.mood-img-2 { background-image: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?w=1200&q=85&auto=format&fit=crop'); }
.mood-img-3 { background-image: url('https://images.unsplash.com/photo-1522337660859-02fbefca4702?w=900&q=85&auto=format&fit=crop'); }
.mood-img-4 { background-image: url('https://images.unsplash.com/photo-1580618672591-eb180b1a973f?w=1600&q=85&auto=format&fit=crop'); }

.mood figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(42,27,46,0.78));
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--bg);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 320ms ease, transform 320ms ease;
}
.mood:hover figcaption { opacity: 1; transform: translateY(0); }

/* ----------- STYLIST PORTRAITS (real photos override) ----------- */

.stylists-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }

.stylist-portrait-1,
.stylist-portrait-2,
.stylist-portrait-3 {
  background-size: cover;
  background-position: center top;
  background-color: var(--bg-2);
}
.stylist-portrait-1::after,
.stylist-portrait-2::after,
.stylist-portrait-3::after { content: none; }

.stylist-portrait-1 { background-image: url('https://images.unsplash.com/photo-1492106087820-71f1a00d2b11?w=800&q=85&auto=format&fit=crop'); }
.stylist-portrait-2 { background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=800&q=85&auto=format&fit=crop'); }
.stylist-portrait-3 { background-image: url('https://images.unsplash.com/photo-1580618672591-eb180b1a973f?w=800&q=85&auto=format&fit=crop'); }

/* ----------- FULL-BLEED PHOTOGRAPHIC BREAK ----------- */

.bleed-photo {
  position: relative;
  width: 100%;
  height: clamp(380px, 56vh, 620px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bleed-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42,27,46,0.25) 0%, rgba(42,27,46,0.65) 100%);
}
.bleed-photo-salon {
  background-image: url('https://images.unsplash.com/photo-1595476108010-b4d1f102b1b1?w=1920&q=85&auto=format&fit=crop');
}
.bleed-photo-quote {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--bg);
  padding: 0 24px;
  max-width: 820px;
}
.bleed-photo-quote p {
  font-family: var(--serif);
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin-bottom: 24px;
  color: var(--bg);
}
.bleed-photo-quote p em { font-style: italic; color: var(--accent); }
.bleed-photo-quote span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ----------- TESTIMONIALS (refined) ----------- */

.testimonials-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.testimonials-head .section-headline em { font-style: italic; color: var(--accent-deep); }

.quote figcaption {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ----------- INSTAGRAM GRID ----------- */

.instagram { background: var(--bg-2); }
.instagram-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
@media (max-width: 720px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

.ig-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink);
  display: block;
}
.ig-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms cubic-bezier(.22,1,.36,1), filter 320ms ease;
  filter: saturate(0.96);
}
.ig-tile:hover .ig-img { transform: scale(1.06); filter: saturate(1.1); }
.ig-tile::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(42, 27, 46, 0);
  transition: background 280ms ease;
  pointer-events: none;
}
.ig-tile:hover::after { background: rgba(42, 27, 46, 0.18); }

.ig-img-1 { background-image: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=600&q=85&auto=format&fit=crop'); }
.ig-img-2 { background-image: url('https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?w=600&q=85&auto=format&fit=crop'); }
.ig-img-3 { background-image: url('https://images.unsplash.com/photo-1492106087820-71f1a00d2b11?w=600&q=85&auto=format&fit=crop'); }
.ig-img-4 { background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?w=600&q=85&auto=format&fit=crop'); }
.ig-img-5 { background-image: url('https://images.unsplash.com/photo-1580618672591-eb180b1a973f?w=600&q=85&auto=format&fit=crop'); }
.ig-img-6 { background-image: url('https://images.unsplash.com/photo-1562322140-8baeececf3df?w=600&q=85&auto=format&fit=crop'); }
.ig-img-7 { background-image: url('https://images.unsplash.com/photo-1633681926022-84c23e8cb2d6?w=600&q=85&auto=format&fit=crop'); }
.ig-img-8 { background-image: url('https://images.unsplash.com/photo-1595476108010-b4d1f102b1b1?w=600&q=85&auto=format&fit=crop'); }

.ig-handle {
  margin-top: 40px;
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}
.ig-handle a {
  color: var(--accent-deep);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color 200ms ease;
}
.ig-handle a:hover { color: var(--ink); }

/* ----------- VISIT (refined map placeholder) ----------- */

.visit-map {
  background:
    linear-gradient(135deg, rgba(42,27,46,0.04) 0%, rgba(200,149,109,0.18) 60%, rgba(42,27,46,0.12) 100%),
    repeating-linear-gradient(0deg, rgba(42,27,46,0.05) 0 1px, transparent 1px 40px),
    repeating-linear-gradient(90deg, rgba(42,27,46,0.05) 0 1px, transparent 1px 40px);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  font-style: normal;
  position: relative;
}
.visit-map::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-deep);
  border: 3px solid var(--bg);
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(42,27,46,0.25);
}

/* ==========================================================
   v8 POLISH — Playfair display, stylist hover, testimonial
   carousel, embedded booking iframe.
   ========================================================== */

/* Hero headline — bigger, Playfair, more editorial */
.hero-headline {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 132px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.025em !important;
}
.hero-headline em { font-weight: 500; }

/* Stylist portraits — hover desaturate + book overlay */
.stylist {
  position: relative;
}
.stylist-portrait {
  transition: filter 420ms cubic-bezier(.22,1,.36,1), transform 420ms cubic-bezier(.22,1,.36,1);
  position: relative;
}
.stylist:hover .stylist-portrait {
  filter: saturate(0.55) brightness(0.92);
  transform: scale(1.01);
}
.stylist-portrait::after {
  content: 'Book →';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 27, 46, 0.6);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 320ms cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.stylist:hover .stylist-portrait::after { opacity: 1; }

/* Testimonial fade carousel — single quote at a time */
.testimonials-grid {
  position: relative;
  display: block !important;
  max-width: 800px;
  margin: 0 auto;
  min-height: 180px;
}
.testimonials-grid .quote {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 700ms cubic-bezier(.22,1,.36,1);
  pointer-events: none;
}
.testimonials-grid .quote.is-active { opacity: 1; pointer-events: auto; }
.testimonials-grid .quote blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.3;
  color: var(--ink);
  max-width: 680px;
  border: none;
  padding: 0;
}
.testimonials-grid .quote figcaption {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
@media (prefers-reduced-motion: reduce) {
  .testimonials-grid .quote { transition: none; }
}

/* ---------- Visual booking mock (no real iframe) ---------- */
.book-frame { display: none; }
.book-frame-placeholder { display: none; }

.mock-booking {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: clamp(20px, 3vw, 36px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 32px;
  box-shadow: 0 30px 60px -30px rgba(42,27,46,0.2);
}
@media (max-width: 720px) { .mock-booking { grid-template-columns: 1fr; } }

.mock-booking-head {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 12px;
}
.mock-booking-stylist { display: flex; align-items: center; gap: 12px; }
.mock-stylist-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background-image: url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?w=200&q=80&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.2) sepia(0.1);
}
.mock-stylist-name { font-family: var(--serif); font-size: 18px; font-weight: 600; color: var(--ink); }
.mock-stylist-spec { font-size: 12px; color: var(--ink-soft); margin-top: 2px; letter-spacing: 0.04em; }
.mock-booking-month { font-family: var(--sans); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-deep); font-weight: 600; }

.mock-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  align-content: start;
}
.mock-cal-dow {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: center;
  padding: 8px 0;
  font-weight: 500;
}
.mock-cal-day {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  cursor: default;
  transition: background 180ms ease, border-color 180ms ease;
}
.mock-cal-day:hover:not(.is-past):not(.is-empty):not(.is-booked) { background: rgba(168,118,77, 0.08); }
.mock-cal-day.is-empty { color: transparent; }
.mock-cal-day.is-past { color: var(--ink-soft); opacity: 0.4; }
.mock-cal-day.is-booked { color: var(--ink-soft); opacity: 0.45; text-decoration: line-through; text-decoration-color: var(--accent-deep); }
.mock-cal-day.is-today { border-color: var(--accent-deep); font-weight: 600; }
.mock-cal-day.is-selected {
  background: var(--ink);
  color: var(--bg);
  font-weight: 600;
  border-radius: 4px;
}

.mock-slots { display: flex; flex-direction: column; gap: 14px; }
.mock-slots-head {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 4px;
}
.mock-slot-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.mock-slot {
  background: transparent;
  border: 1px solid var(--line);
  padding: 14px 12px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.mock-slot:hover { border-color: var(--accent-deep); color: var(--accent-deep); }
.mock-slot.is-active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.mock-booking-confirm {
  margin-top: 8px;
  padding: 18px 20px;
  background: rgba(168,118,77, 0.07);
  border: 1px solid rgba(168,118,77, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mock-slot-summary {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
}
.mock-slot-summary strong { font-weight: 600; }
.mock-confirm-btn {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  border-bottom: 1px solid var(--accent-deep);
  padding-bottom: 2px;
}

/* ==========================================================
   v8.1 — HAIR TRANSFORMATIONS (drag-to-reveal sell feature)
   + STYLIST AVAILABILITY indicators
   ========================================================== */

.transformations { background: var(--bg-2); padding-block: clamp(64px, 9vw, 128px); }
.transformations-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.transformations-head .section-headline { margin-bottom: 12px; }
.transformations-sub {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  max-width: 56ch;
  margin: 0 auto;
}

.ht-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
@media (max-width: 880px) { .ht-grid { grid-template-columns: 1fr; } }

.ht {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--ink);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ht-after, .ht-before {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
}

/* Photo pairs — reuse same photo per slider, vary filters to fake before/after.
   FLAG: production swaps for real client transformation photos. */
#ht0 .ht-after, #ht0 .ht-before {
  background-image: url("https://images.unsplash.com/photo-1605497788044-5a32c7078486?w=1200&q=85&auto=format&fit=crop");
}
#ht0 .ht-after  { filter: saturate(1.15) contrast(1.05) brightness(1.05); }
#ht0 .ht-before { clip-path: inset(0 50% 0 0); filter: saturate(0.4) brightness(0.85) hue-rotate(-10deg); }

#ht1 .ht-after, #ht1 .ht-before {
  background-image: url("https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?w=1200&q=85&auto=format&fit=crop");
}
#ht1 .ht-after  { filter: saturate(1.1) contrast(1.06) brightness(1.04); }
#ht1 .ht-before { clip-path: inset(0 50% 0 0); filter: saturate(0.45) brightness(0.85); }

#ht2 .ht-after, #ht2 .ht-before {
  background-image: url("https://images.unsplash.com/photo-1560869713-7d0a29430803?w=1200&q=85&auto=format&fit=crop");
}
#ht2 .ht-after  { filter: saturate(1.12) contrast(1.05) brightness(1.06); }
#ht2 .ht-before { clip-path: inset(0 50% 0 0); filter: saturate(0.4) brightness(0.82); }

.ht-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--bg);
  transform: translateX(-1px);
  z-index: 3;
  cursor: ew-resize;
}
.ht-handle-line { display: block; width: 2px; height: 100%; background: var(--bg); }
.ht-handle-knob {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: var(--bg);
  color: var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(42, 27, 46, 0.35);
}
.ht-handle:focus { outline: none; }
.ht-handle:focus .ht-handle-knob { box-shadow: 0 0 0 3px var(--accent-deep), 0 8px 24px rgba(42, 27, 46, 0.35); }

.ht-label {
  position: absolute;
  bottom: 16px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 11px;
  pointer-events: none;
  border-radius: 100px;
  background: rgba(250, 247, 242, 0.92);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.ht-label-before { left: 14px; }
.ht-label-after  { right: 14px; background: var(--ink); color: var(--bg); }

.ht-cap {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.ht-cap-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.75);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.ht-cap-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(250, 247, 242, 0.96);
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.ht-cap-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(250, 247, 242, 0.75);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  margin-top: 2px;
}

/* ---------- STYLIST AVAILABILITY DOTS ---------- */
.stylist-availability {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(250, 247, 242, 0.92);
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(42, 27, 46, 0.18);
}
.stylist-avail-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5e8c5e;
  box-shadow: 0 0 0 0 rgba(94, 140, 94, 0.55);
  animation: stylistPulse 2s ease-out infinite;
  flex-shrink: 0;
}
.stylist-availability-tight .stylist-avail-dot { background: #c8956d; box-shadow: 0 0 0 0 rgba(200, 149, 109, 0.55); }
@keyframes stylistPulse {
  0%   { box-shadow: 0 0 0 0 rgba(94, 140, 94, 0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(94, 140, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(94, 140, 94, 0); }
}
@media (prefers-reduced-motion: reduce) { .stylist-avail-dot { animation: none; } }
.book-aside-note {
  text-align: center;
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  font-style: italic;
}

/* Sticky-book pill — stronger contrast */
.sticky-book {
  z-index: 60;
}

@media (max-width: 720px) {
  .testimonials-grid { min-height: 220px; }
}

