/*
  VNG Hair Salon — Editorial Design System v2
  Direction: Organic Tactile Luxury / Editorial Magazine
  Palette: oklch() — warm, earthy, grounded
  Typography: Fraunces (variable display) + Plus Jakarta Sans
*/

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  /* oklch palette — perceptually uniform, tinted neutrals */
  --linen:       oklch(97% 0.008 60);     /* Warm Alabaster Linen */
  --sandstone:   oklch(91% 0.015 60);     /* Soft Sandstone */
  --espresso:    oklch(17% 0.018 50);     /* Deep Espresso */
  --walnut:      oklch(24% 0.020 50);     /* Dark Walnut text */
  --muted:       oklch(50% 0.018 55);     /* Warm muted text */
  --copper:      oklch(52% 0.100 48);     /* Terracotta / Oxidized Copper */
  --copper-dark: oklch(44% 0.090 48);     /* Deeper copper hover */
  --border:      oklch(87% 0.012 60);     /* Warm border */
  --border-dark: oklch(28% 0.018 50);     /* Dark surface border */

  /* Fluid type scale using clamp() */
  --text-xs:   clamp(0.7rem,  0.65rem + 0.25vw, 0.8rem);
  --text-sm:   clamp(0.85rem, 0.80rem + 0.25vw, 0.95rem);
  --text-base: clamp(1rem,    0.95rem + 0.25vw, 1.1rem);
  --text-lg:   clamp(1.15rem, 1.05rem + 0.5vw,  1.35rem);
  --text-xl:   clamp(1.4rem,  1.1rem  + 1.5vw,  2rem);
  --text-2xl:  clamp(2rem,    1.4rem  + 3vw,    3.5rem);
  --text-3xl:  clamp(2.8rem,  1.8rem  + 5vw,    5rem);

  /* Fluid spacing */
  --space-xs:  clamp(0.5rem,  0.4rem + 0.5vw, 0.75rem);
  --space-sm:  clamp(1rem,    0.8rem + 1vw,   1.5rem);
  --space-md:  clamp(2rem,    1.5rem + 2.5vw, 3.5rem);
  --space-lg:  clamp(4rem,    3rem   + 5vw,   7rem);
  --space-xl:  clamp(6rem,    4rem   + 8vw,   10rem);

  /* Easing */
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-out:  cubic-bezier(0.0, 0.0, 0.2, 1);

  /* Fonts */
  --font-serif: 'Fraunces', serif;
  --font-sans:  'Plus Jakarta Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  background-color: var(--linen);
  color: var(--walnut);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
  color: var(--walnut);
}

.section-subtitle {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1rem;
}

.section-title {
  font-size: var(--text-2xl);
  margin-bottom: 1rem;
}

.section-lead {
  font-size: var(--text-base);
  color: var(--muted);
  max-width: 52ch;
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.w-full    { width: 100%; }
.text-center { text-align: center; }

/* ─── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.35s var(--ease-expo),
              color 0.35s var(--ease-expo),
              border-color 0.35s var(--ease-expo),
              transform 0.2s var(--ease-out);
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  background-color: var(--espresso);
  color: var(--linen);
  border-color: var(--espresso);
}
.btn-primary:hover {
  background-color: var(--copper);
  border-color: var(--copper);
}

.btn-secondary {
  background-color: var(--copper);
  color: var(--linen);
  border-color: var(--copper);
}
.btn-secondary:hover {
  background-color: var(--copper-dark);
  border-color: var(--copper-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--walnut);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--walnut);
}

.btn-tertiary {
  background: none;
  border: none;
  color: var(--walnut);
  padding: 0;
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 4px;
  transition: text-decoration-color 0.3s;
}
.btn-tertiary:hover { text-decoration-color: var(--walnut); }

.btn-lg { padding: 1rem 2.25rem; font-size: var(--text-sm); }
.btn-sm { padding: 0.5rem 1rem; }

/* ─── Badge & Pill ───────────────────────────────────────────── */
.badge-pill {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background-color: var(--sandstone);
  color: var(--muted);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

/* ─── Announcement Bar ───────────────────────────────────────── */
.announcement-bar {
  background-color: var(--espresso);
  color: color-mix(in oklch, var(--linen) 70%, var(--muted));
  font-size: var(--text-xs);
  padding: 0.6rem 0;
  text-align: center;
}
.announcement-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}
.announcement-divider { color: var(--border-dark); }
.announcement-link {
  color: var(--copper);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}
.announcement-link:hover { color: var(--linen); }

/* ─── Site Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--linen);
  border-bottom: 1px solid var(--border);
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  transition: transform 0.5s var(--ease-expo);
}
.site-header.hidden { transform: translateY(-110%); }

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--walnut);
  line-height: 1;
}
.logo-mark {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.15rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 500;
  transition: color 0.25s;
}
.nav-link:hover { color: var(--walnut); }

.header-actions { display: flex; gap: 0.75rem; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: var(--walnut);
  transition: 0.3s;
}

/* ─── Hero ───────────────────────────────────────────────────── */
.hero-section {
  padding: var(--space-lg) 0 var(--space-xl);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-content { padding-right: clamp(0rem, 3vw, 2rem); }

.hero-title {
  font-size: var(--text-3xl);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  font-size: var(--text-lg);
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: var(--space-md);
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border);
}
.stat-item { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--walnut);
  line-height: 1;
}
.stat-lbl {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.stat-sep {
  width: 1px;
  height: 36px;
  background-color: var(--border);
  flex-shrink: 0;
}

/* Hero Image */
.hero-visual {}

.hero-image-wrapper {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: var(--sandstone);
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-expo);
}
.hero-image-wrapper:hover .hero-img { transform: scale(1.04); }

.hero-floating-card {
  background-color: var(--linen);
  border: 1px solid var(--border);
  border-top: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.floating-tag {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.floating-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--walnut);
}
.floating-link {
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  color: var(--copper);
  margin-left: auto;
  white-space: nowrap;
}
.floating-link:hover { color: var(--copper-dark); }

/* ─── About / Story ──────────────────────────────────────────── */
.about-section {
  padding: var(--space-xl) 0;
  background-color: var(--linen);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.about-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background-color: var(--sandstone);
}
.about-img { width: 100%; height: 100%; object-fit: cover; }

.about-content {}

.about-text {
  color: var(--muted);
  font-size: var(--text-lg);
  margin-bottom: 1.5rem;
  max-width: 52ch;
}

.mission-title {
  font-size: var(--text-xl);
  margin-top: var(--space-md);
  margin-bottom: 1rem;
}
.mission-text {
  font-size: var(--text-base);
  color: var(--walnut);
  border-left: 2px solid var(--copper);
  padding-left: 1.5rem;
  font-style: italic;
  line-height: 1.8;
}

/* ─── Matcher / Quiz ─────────────────────────────────────────── */
.matcher-section {
  padding: var(--space-xl) 0;
  background-color: var(--sandstone);
}

.matcher-card {
  background-color: var(--linen);
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 5rem);
  border: 1px solid var(--border);
}

.matcher-header { text-align: center; margin-bottom: var(--space-md); }

.quiz-container { min-height: 260px; }

.quiz-step { display: none; animation: fadeUp 0.5s var(--ease-expo) both; }
.quiz-step.active { display: block; }

.quiz-question {
  font-size: var(--text-xl);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.quiz-opt {
  background-color: var(--linen);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--walnut);
  cursor: pointer;
  transition: background-color 0.3s var(--ease-expo),
              color 0.3s,
              border-color 0.3s;
  text-align: left;
}
.quiz-opt:hover {
  background-color: var(--espresso);
  color: var(--linen);
  border-color: var(--espresso);
}

/* Quiz Result */
.quiz-result { text-align: center; animation: fadeUp 0.6s var(--ease-expo) both; }
.result-badge {
  display: inline-block;
  background-color: var(--copper);
  color: var(--linen);
  padding: 0.3rem 1rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}
.result-name { font-size: var(--text-2xl); margin-bottom: 0.75rem; }
.result-desc { color: var(--muted); max-width: 46ch; margin: 0 auto 2rem; }
.result-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─── Our Team ───────────────────────────────────────────────── */
.collective-section { padding: var(--space-xl) 0; }

.section-header { margin-bottom: var(--space-md); }

/* Main row: 50/50 split */
.artist-main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: var(--space-md);
}

/* Secondary row: smaller placeholder cards */
.artist-secondary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 2.5rem;
}

.artist-card { display: flex; flex-direction: column; }

/* Placeholder cards are visually subdued */
.placeholder-card {
  border: 1px dashed var(--border);
  padding: 2rem;
}
.placeholder-card .artist-visual {
  aspect-ratio: 16 / 7;
  margin-bottom: 1.5rem;
}

/* Artist photo */
.artist-visual {
  position: relative;
  overflow: hidden;
  background-color: var(--sandstone);
  margin-bottom: 1.5rem;
}
.artist-card:not(.placeholder-card) .artist-visual { aspect-ratio: 3 / 4; }

.artist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-expo);
}
.artist-visual:hover .artist-img { transform: scale(1.04); }

.artist-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--linen);
  padding: 0.35rem 0.8rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--border);
}

/* Artist info */
.artist-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
.specialty-pill {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--copper);
}
.artist-exp { font-size: var(--text-xs); color: var(--muted); }

.artist-name { font-size: var(--text-xl); margin-bottom: 0.75rem; }

.artist-bio { color: var(--muted); font-size: var(--text-sm); margin-bottom: 1.25rem; line-height: 1.75; }

.artist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.artist-tags span {
  background-color: var(--sandstone);
  padding: 0.2rem 0.6rem;
  font-size: var(--text-xs);
  color: var(--muted);
}

.artist-footer { margin-top: auto; }

/* ─── Transformations / Slider ───────────────────────────────── */
.transformations-section {
  background-color: var(--espresso);
  padding: var(--space-xl) 0;
}
.transformations-section .section-title { color: var(--linen); }
.transformations-section .section-subtitle { color: var(--copper); }
.transformations-section .section-lead { color: color-mix(in oklch, var(--linen) 60%, var(--muted)); }

.slider-wrapper {
  margin-top: var(--space-md);
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  background-color: #000;
}

.img-after, .img-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.img-before-wrapper {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.handle-line {
  position: absolute;
  inset: 0;
  background-color: var(--linen);
  opacity: 0.8;
}
.handle-button {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  background-color: var(--linen);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--espresso);
  font-size: 0.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

.slider-label {
  position: absolute;
  bottom: 1.25rem;
  background-color: color-mix(in oklch, var(--espresso) 80%, transparent);
  color: var(--linen);
  padding: 0.4rem 0.9rem;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 4;
  backdrop-filter: blur(6px);
}
.label-before { left: 1.25rem; }
.label-after  { right: 1.25rem; }

/* ─── Services ───────────────────────────────────────────────── */
.services-section {
  padding: var(--space-xl) 0;
  background-color: var(--sandstone);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
  gap: 1rem;
}
.services-notice {
  font-size: var(--text-xs);
  color: var(--muted);
  max-width: 28ch;
  text-align: right;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.category-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  margin-bottom: 1.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--walnut);
}

.service-list { list-style: none; display: flex; flex-direction: column; gap: 1.75rem; }

.service-name {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-weight: 600;
  font-size: var(--text-sm);
  margin-bottom: 0.3rem;
}
.service-dots {
  flex-grow: 1;
  border-bottom: 1px dotted var(--muted);
  position: relative;
  top: -3px;
  margin: 0 0.4rem;
}
.service-price {
  font-family: var(--font-serif);
  color: var(--copper);
  font-size: var(--text-base);
  white-space: nowrap;
}
.service-desc { font-size: var(--text-xs); color: var(--muted); line-height: 1.7; }

/* ─── Visit / Location ───────────────────────────────────────── */
.visit-section { padding: var(--space-xl) 0; }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.visit-address {
  font-size: var(--text-lg);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.hours-block { margin-bottom: var(--space-sm); }
.hours-heading {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.hours-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--muted);
}

.visit-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.visit-map-box { align-self: stretch; }

.map-embed {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* ─── Site Footer ────────────────────────────────────────────── */
.site-footer {
  background-color: var(--espresso);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-brand .logo-mark { color: var(--linen); }
.footer-brand .logo-sub  { color: color-mix(in oklch, var(--linen) 50%, var(--muted)); }
.footer-copy {
  margin-top: 0.75rem;
  font-size: var(--text-xs);
  color: color-mix(in oklch, var(--linen) 40%, var(--muted));
  max-width: 40ch;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  color: color-mix(in oklch, var(--linen) 70%, var(--muted));
  text-decoration: none;
  font-size: var(--text-sm);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--copper); }

/* ─── Booking Modal ──────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: color-mix(in oklch, var(--espresso) 80%, transparent);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-expo);
  backdrop-filter: blur(4px);
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--linen);
  width: 90%;
  max-width: 680px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  border: 1px solid var(--border);
  transform: translateY(24px);
  transition: transform 0.5s var(--ease-expo);
}
.modal-backdrop.active .modal-content { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  z-index: 1;
}
.modal-close:hover { color: var(--walnut); }

.modal-header {
  padding: 3rem 3rem 1.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.modal-title { font-size: var(--text-2xl); margin-bottom: 0.5rem; }
.modal-sub { color: var(--muted); font-size: var(--text-sm); max-width: 40ch; margin: 0 auto; }

.modal-stylist-list {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-stylist-item {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
  gap: 1.25rem;
}
.modal-stylist-item:hover {
  border-color: var(--walnut);
  background-color: var(--sandstone);
}
.modal-stylist-item img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.item-info { flex-grow: 1; display: flex; flex-direction: column; gap: 0.15rem; }
.item-info strong { font-family: var(--font-serif); font-size: var(--text-lg); color: var(--walnut); }
.item-info span { font-size: var(--text-xs); color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Vagaro Simulated Widget */
.vagaro-widget-frame {}
.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: var(--sandstone);
  border-bottom: 1px solid var(--border);
}
.widget-provider-name { font-weight: 600; font-size: var(--text-sm); }
.widget-simulated-body { padding: 2.5rem 2rem; text-align: center; }
.vagaro-brand-badge {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background-color: oklch(93% 0.08 145);
  color: oklch(35% 0.12 145);
  font-size: var(--text-xs);
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}
.simulated-calendar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  margin: 1.75rem 0;
}
.calendar-day {
  padding: 0.9rem 2rem;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 280px;
  cursor: pointer;
  font-size: var(--text-sm);
  transition: background-color 0.2s, border-color 0.2s;
}
.calendar-day:hover { border-color: var(--walnut); }
.calendar-day.active-day {
  background-color: var(--espresso);
  color: var(--linen);
  border-color: var(--espresso);
}

/* ─── Mobile Bottom Bar ──────────────────────────────────────── */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--linen);
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-top: 1px solid var(--border);
  z-index: 99;
  box-shadow: 0 -4px 20px oklch(0% 0 0 / 0.06);
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .about-grid      { grid-template-columns: 1fr; }
  .artist-main-row { gap: 2rem; }
  .services-grid   { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .visit-grid      { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-actions { display: none; }
  .mobile-toggle { display: flex; }

  .hero-stats { justify-content: space-between; }

  .artist-main-row      { grid-template-columns: 1fr; }
  .artist-secondary-row { grid-template-columns: 1fr; }

  .quiz-options { grid-template-columns: 1fr; }

  .services-grid   { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .services-notice { text-align: left; max-width: unset; }

  .hero-floating-card { flex-wrap: wrap; gap: 1rem; }

  .footer-inner    { flex-direction: column; }
  .footer-links    { flex-wrap: wrap; gap: 1.25rem; }

  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 72px; }

  .modal-content  { width: 100%; max-height: 100vh; }
  .modal-header   { padding: 2rem 1.5rem 1.25rem; }
  .modal-stylist-list { padding: 1rem; }
  .widget-simulated-body { padding: 1.5rem 1rem; }
}
