/* =========================================================
   Wynwood Hair Co. — Miami / Wynwood arty edition
   Palette: cream + neon coral + electric violet + cobalt + matte black
   Mode: LIGHT crème (street-art on canvas)
   ========================================================= */

:root {
  /* Core palette — Wynwood Walls inspired */
  --cream: #F4EAD8;
  --cream-warm: #F8F1E2;
  --cream-deep: #ECDDC2;
  --ink: #0F0F12;
  --ink-soft: #2A2A30;
  --ink-mute: #6A6A74;

  /* Accent neons (Wynwood mural palette) */
  --coral: #FF6B6B;
  --coral-deep: #E94B4B;
  --violet: #7C3AED;
  --violet-deep: #5B21B6;
  --cobalt: #2563EB;
  --cobalt-deep: #1D4ED8;
  --ochre: #E5A04C;
  --mint: #4DD0B7;

  /* Surfaces */
  --surface: #FFFCF5;
  --surface-2: #FAF2E1;
  --line: rgba(15, 15, 18, 0.10);
  --line-strong: rgba(15, 15, 18, 0.18);

  /* Glass */
  --glass-bg: rgba(255, 252, 245, 0.72);
  --glass-border: rgba(15, 15, 18, 0.08);

  /* Type */
  --display: 'Fraunces', 'Times New Roman', serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Rhythm */
  --r-1: 4px; --r-2: 8px; --r-3: 16px; --r-4: 24px; --r-5: 40px; --r-6: 72px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 12px rgba(15, 15, 18, 0.05);
  --shadow-md: 0 12px 32px rgba(15, 15, 18, 0.08);
  --shadow-xl: 0 24px 70px rgba(124, 58, 237, 0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1260px;
}

* { box-sizing: border-box; }
*::selection { background: var(--coral); color: var(--cream); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  background-image:
    radial-gradient(1200px 600px at 12% 0%, rgba(255, 107, 107, 0.10), transparent 60%),
    radial-gradient(900px 500px at 88% 22%, rgba(124, 58, 237, 0.10), transparent 60%),
    radial-gradient(700px 500px at 50% 100%, rgba(37, 99, 235, 0.08), transparent 60%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ====== Typography scale ====== */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 400; letter-spacing: -0.02em; color: var(--ink); margin: 0 0 .4em; }
h1 { font-size: clamp(48px, 7.6vw, 108px); line-height: 0.95; }
h2 { font-size: clamp(36px, 5vw, 68px); line-height: 1.02; }
h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; }
h4 { font-size: 20px; line-height: 1.25; }
p  { margin: 0 0 1em; color: var(--ink-soft); }

em { font-style: italic; color: var(--coral-deep); }

.eyebrow {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--violet-deep);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: linear-gradient(90deg, var(--coral), var(--violet));
}

/* ====== Cursor ====== */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .12s var(--ease), width .25s var(--ease), height .25s var(--ease), background .25s var(--ease);
}
.cursor-dot { width: 6px; height: 6px; background: var(--coral); border-radius: 50%; }
.cursor-ring { width: 36px; height: 36px; border: 1.5px solid var(--violet); border-radius: 50%; }
.cursor-ring.is-hover { width: 64px; height: 64px; background: rgba(124, 58, 237, 0.08); }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ====== Scroll progress ====== */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--violet), var(--cobalt));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ====== Nav ====== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: all .35s var(--ease);
}
.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid var(--glass-border);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.logo-mark {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--coral);
  margin-right: 4px;
  transform: translateY(-1px);
}
.logo em { color: var(--violet); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  transition: color .25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--coral);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--coral-deep); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .3s var(--ease);
  border: 1.5px solid var(--ink);
}
.nav-cta:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
}

.nav-toggle { display: none; }

/* ====== Hero ====== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 140px 0 80px;
  overflow: hidden;
}
.hero-video, .hero-poster {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(244,234,216,0.20) 0%, rgba(244,234,216,0.55) 60%, var(--cream) 100%),
    radial-gradient(40% 60% at 12% 50%, rgba(244,234,216,0.55), transparent 70%);
}
.hero .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--coral);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.hero h1 {
  font-weight: 300;
  max-width: 900px;
  text-shadow: 0 2px 24px rgba(244, 234, 216, 0.6);
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--coral) 0%, var(--violet) 50%, var(--cobalt) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 24px 0 40px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all .35s var(--ease);
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.32);
}
.btn-ghost {
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ====== Stats strip ====== */
.stats {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 20% 50%, rgba(255, 107, 107, 0.20), transparent 70%),
    radial-gradient(500px 200px at 80% 50%, rgba(124, 58, 237, 0.20), transparent 70%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item {
  border-right: 1px solid rgba(244, 234, 216, 0.12);
  padding: 12px 8px;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--display);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  display: block;
  background: linear-gradient(135deg, var(--cream) 0%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 300;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 234, 216, 0.7);
  margin-top: 8px;
  font-weight: 500;
}

/* ====== Section base ====== */
section { padding: var(--r-6) 0; position: relative; }
.section-tight { padding: 80px 0; }

.section-head { max-width: 760px; margin: 0 0 64px; }
.section-head h2 em { color: var(--violet); font-style: italic; }
.section-head .lead { font-size: 19px; color: var(--ink-soft); margin-top: 16px; }

/* ====== Story / Parallax ====== */
.story {
  position: relative;
  overflow: hidden;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-text h2 {
  font-weight: 300;
  margin-bottom: 24px;
}
.story-text h2 em { font-style: italic; color: var(--coral-deep); }
.story-text p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.story-signature {
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  color: var(--violet);
  margin-top: 28px;
}
.story-art {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.story-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.story-art:hover img { transform: scale(1.06); }
.story-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(15, 15, 18, 0.25));
}
.story-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  z-index: 2;
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
}
.story-sticker {
  position: absolute;
  top: -28px; right: -28px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  text-align: center;
  line-height: 1.2;
  transform: rotate(-8deg);
  box-shadow: 0 16px 40px rgba(255, 107, 107, 0.35);
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(-8deg); }
  to { transform: rotate(352deg); }
}
.story-sticker span { display: block; transform: rotate(8deg); }

/* ====== Services ====== */
.services { background: var(--surface); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--cream-warm);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--line);
  transition: all .45s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--violet), var(--cobalt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--violet);
  box-shadow: var(--shadow-xl);
  background: var(--surface);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--coral);
  font-size: 18px;
  margin-bottom: 22px;
  display: block;
}
.service-card h3 {
  font-weight: 400;
  margin-bottom: 12px;
}
.service-card h3 em { font-style: italic; color: var(--violet); }
.service-card p {
  font-size: 15px;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.service-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.service-meta .price { color: var(--coral-deep); }

/* ====== Stylists ====== */
.stylists { position: relative; }
.stylists-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.stylist-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--ink-soft);
  cursor: pointer;
  transition: transform .5s var(--ease);
}
.stylist-card:hover { transform: translateY(-4px); }
.stylist-card .portrait {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .6s ease;
  filter: saturate(0.95);
}
.stylist-card:hover .portrait {
  transform: scale(1.08);
  filter: saturate(1.1);
}
.stylist-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 15, 18, 0.88));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--cream);
}
.stylist-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  margin: 0;
  color: var(--cream);
}
.stylist-name em { color: var(--coral); font-style: italic; }
.stylist-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 234, 216, 0.75);
  margin-top: 6px;
}
.stylist-card .accent {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
}

/* ====== Showreel ====== */
.showreel {
  padding: 40px 0 100px;
}
.showreel-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--glass-border);
}
.showreel-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.showreel-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.35), rgba(15, 15, 18, 0.45));
  cursor: pointer;
  transition: opacity .35s var(--ease);
}
.showreel-play.hidden { opacity: 0; pointer-events: none; }
.showreel-play .play-btn {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--cream);
  display: grid;
  place-items: center;
  font-size: 28px;
  color: var(--ink);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  transition: transform .3s var(--ease);
}
.showreel-play:hover .play-btn { transform: scale(1.08); }
.showreel-caption {
  position: absolute;
  bottom: 28px; left: 32px;
  z-index: 3;
  color: var(--cream);
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  pointer-events: none;
}

/* ====== Gallery masonry ====== */
.gallery {
  background:
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}
.masonry figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}
.masonry figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.masonry figure:hover img { transform: scale(1.08); }
.masonry .tall { grid-row: span 2; }
.masonry .wide { grid-column: span 2; }
.masonry figcaption {
  position: absolute;
  bottom: 14px; left: 14px;
  color: var(--cream);
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(8px);
  transition: all .35s var(--ease);
}
.masonry figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 15, 18, 0.65));
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.masonry figure:hover::after { opacity: 1; }
.masonry figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* ====== Testimonials ====== */
.testimonials {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 10% 20%, rgba(255, 107, 107, 0.18), transparent 60%),
    radial-gradient(700px 400px at 90% 80%, rgba(124, 58, 237, 0.22), transparent 60%);
}
.testimonials .section-head h2 { color: var(--cream); }
.testimonials .section-head h2 em { color: var(--coral); }
.testimonials .section-head .lead { color: rgba(244, 234, 216, 0.75); }
.testimonials-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: rgba(244, 234, 216, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(244, 234, 216, 0.10);
  padding: 36px 32px;
  border-radius: var(--radius);
  position: relative;
  transition: all .4s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--coral);
  background: rgba(255, 107, 107, 0.06);
}
.testimonial .stars {
  color: var(--coral);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 18px;
}
.testimonial blockquote {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  margin: 0 0 22px;
  color: var(--cream);
  font-style: italic;
}
.testimonial cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 234, 216, 0.75);
}
.testimonial cite strong {
  color: var(--coral);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* ====== Final CTA — gradient mesh ====== */
.cta-final {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--cream);
}
.cta-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.45), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(124, 58, 237, 0.40), transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(37, 99, 235, 0.32), transparent 45%),
    radial-gradient(circle at 30% 90%, rgba(229, 160, 76, 0.35), transparent 40%);
  filter: blur(40px);
  z-index: 0;
}
.cta-final .container { position: relative; z-index: 2; }
.cta-final h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1;
}
.cta-final h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-final p {
  font-size: 19px;
  max-width: 600px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
}

/* ====== Footer ====== */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 88px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(244, 234, 216, 0.12);
}
.footer h4 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 22px;
  color: var(--cream);
}
.footer h4 em { color: var(--coral); }
.footer p, .footer a, .footer li {
  color: rgba(244, 234, 216, 0.78);
  font-size: 14px;
  line-height: 1.7;
}
.footer a:hover { color: var(--coral); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 4px 0; }
.contact-row {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
}
.contact-row .icon { color: var(--coral); flex-shrink: 0; width: 18px; }
.footer-form input,
.footer-form textarea {
  width: 100%;
  background: rgba(244, 234, 216, 0.06);
  border: 1px solid rgba(244, 234, 216, 0.14);
  color: var(--cream);
  padding: 12px 14px;
  border-radius: 10px;
  font-family: var(--body);
  font-size: 14px;
  margin-bottom: 10px;
  transition: border-color .25s ease;
}
.footer-form input:focus,
.footer-form textarea:focus {
  outline: none;
  border-color: var(--coral);
}
.footer-form textarea { resize: vertical; min-height: 80px; }
.footer-form button {
  background: var(--coral);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all .3s ease;
}
.footer-form button:hover {
  background: var(--violet);
  transform: translateY(-1px);
}

.footer-map {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 14px;
  margin-top: 32px;
  filter: invert(0.92) hue-rotate(180deg) saturate(0.4);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 12px;
  color: rgba(244, 234, 216, 0.45);
  letter-spacing: 0.06em;
}
.footer-disclaim {
  font-size: 11px;
  font-style: italic;
  color: rgba(244, 234, 216, 0.35);
  text-align: center;
  margin-top: 18px;
}

/* ====== Reveal animations ====== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Responsive ====== */
@media (max-width: 1024px) {
  .stylists-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { grid-template-columns: repeat(3, 1fr); }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --r-6: 64px; }
  .container { padding: 0 22px; }
  .nav-links { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
  }
  .nav-toggle span {
    width: 22px; height: 2px;
    background: var(--ink);
    transition: all .3s ease;
  }
  .hero { padding-top: 110px; min-height: 92vh; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item:nth-child(2) { border-right: none; }
  .services-grid { grid-template-columns: 1fr; }
  .stylists-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .story-sticker { width: 110px; height: 110px; font-size: 15px; top: -18px; right: -8px; }
}

/* ====== Booking pages ====== */
.page-booking {
  background: var(--cream);
  padding-top: 88px;
}

.booking-hero {
  padding: 60px 0 40px;
  text-align: left;
}
.booking-hero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  font-weight: 300;
  line-height: 1;
}
.booking-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.booking-hero p {
  font-size: 18px;
  max-width: 580px;
  margin-top: 18px;
  color: var(--ink-soft);
}

.stepper {
  list-style: none;
  padding: 0;
  margin: 32px 0 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--cream-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  transition: all .35s var(--ease);
}
.step.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.step.done {
  background: var(--coral);
  color: var(--cream);
  border-color: var(--coral);
}
.step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(244, 234, 216, 0.18);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
}
.step.active .step-num,
.step.done .step-num {
  background: var(--coral);
  color: var(--cream);
}
.step.active .step-num { background: var(--coral); }

.booking-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.booking-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.bf-step { border: none; padding: 0; margin: 0 0 32px; }
.bf-step-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bf-step-tag {
  font-style: italic;
  color: var(--coral);
  font-size: 16px;
}
.bf-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bf-field { display: flex; flex-direction: column; }
.bf-field-full { grid-column: 1 / -1; }
.bf-field label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.bf-field input,
.bf-field select,
.bf-field textarea {
  font-family: var(--body);
  font-size: 15px;
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--cream-warm);
  color: var(--ink);
  transition: all .25s ease;
}
.bf-field input:focus,
.bf-field select:focus,
.bf-field textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.booking-aside {
  position: sticky;
  top: 110px;
  align-self: start;
}
.booking-summary {
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.booking-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(255, 107, 107, 0.30), transparent 70%);
}
.booking-summary h3 {
  color: var(--cream);
  font-style: italic;
  font-weight: 400;
  position: relative;
}
.booking-summary h3 em { color: var(--coral); }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244, 234, 216, 0.10);
  font-size: 14px;
  position: relative;
}
.summary-row .label {
  color: rgba(244, 234, 216, 0.7);
  letter-spacing: 0.06em;
}
.summary-row .value {
  font-family: var(--display);
  font-style: italic;
  font-size: 17px;
}
.summary-total {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1.5px solid var(--coral);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 16px;
  position: relative;
}
.summary-total .value {
  font-family: var(--display);
  font-size: 28px;
  color: var(--coral);
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}
.btn-back {
  background: transparent;
  border: 1.5px solid var(--line-strong);
  color: var(--ink-soft);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
}
.btn-back:hover {
  background: var(--cream-deep);
  color: var(--ink);
}
.btn-next {
  background: var(--ink);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s var(--ease);
  border: 1.5px solid var(--ink);
}
.btn-next:hover {
  background: linear-gradient(135deg, var(--coral), var(--violet));
  border-color: transparent;
  transform: translateY(-1px);
}

.booking-nav { background: var(--glass-bg); backdrop-filter: blur(18px); border-bottom: 1px solid var(--glass-border); }
.nav-back-link {
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-back-link:hover { color: var(--coral); }

@media (max-width: 768px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-aside { position: static; }
  .booking-form { padding: 28px 22px; }
  .bf-grid-2 { grid-template-columns: 1fr; }
  .stepper { grid-template-columns: repeat(2, 1fr); }
  .booking-actions { flex-direction: column-reverse; }
  .btn-back, .btn-next { width: 100%; text-align: center; justify-content: center; display: flex; }
}

/* Services page */
.services-page-hero {
  padding: 140px 0 60px;
  text-align: center;
}
.services-page-hero h1 {
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
}
.services-page-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--coral), var(--violet), var(--cobalt));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.services-page-hero p {
  font-size: 19px;
  max-width: 560px;
  margin: 22px auto 0;
}

.services-list {
  padding: 40px 0 100px;
}
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr 220px 140px;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: all .35s var(--ease);
}
.svc-row:hover {
  background: linear-gradient(90deg, transparent, var(--surface-2), transparent);
  padding-left: 12px; padding-right: 12px;
}
.svc-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 32px;
  color: var(--coral);
  font-weight: 300;
}
.svc-row h3 {
  font-family: var(--display);
  font-weight: 400;
  margin: 0 0 6px;
}
.svc-row h3 em { color: var(--violet); font-style: italic; }
.svc-row p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-mute);
}
.svc-meta-time {
  text-align: right;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}
.svc-meta-time strong {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-size: 22px;
  margin-bottom: 4px;
}
.svc-price {
  text-align: right;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--coral-deep);
  font-weight: 400;
}

@media (max-width: 768px) {
  .svc-row { grid-template-columns: auto 1fr; gap: 16px; }
  .svc-meta-time, .svc-price { grid-column: 2; text-align: left; }
  .svc-num { font-size: 22px; }
  .svc-price { font-size: 22px; }
}

/* Payment page */
.payment-success {
  text-align: center;
  padding: 60px 0;
}
.payment-success .icon-check {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--violet));
  display: grid;
  place-items: center;
  margin: 0 auto 28px;
  color: var(--cream);
  font-size: 44px;
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.32);
}
.payment-success h1 {
  font-weight: 300;
  margin-bottom: 20px;
}
.payment-success h1 em {
  font-style: italic;
  color: var(--coral);
}
.payment-success p { font-size: 17px; max-width: 560px; margin: 0 auto 18px; }
.payment-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 560px;
  margin: 36px auto;
  text-align: left;
  box-shadow: var(--shadow-md);
}
.payment-card .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.payment-card .row:last-child { border-bottom: none; }
.payment-card .label { color: var(--ink-mute); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.payment-card .value { font-family: var(--display); font-style: italic; font-size: 17px; }
