/* ============================================================
   PLATINUM ROSE — Editorial Refresh
   Fraunces (display) + Outfit (body)
   Berry / Blush / Rose duotone
   Mobile first.
   ============================================================ */

:root {
  --berry:       #3D0C2A;
  --berry-mid:   #5C1640;
  --rose:        #C8456A;
  --rose-light:  #E06080;
  --rose-glow:   rgba(200,69,106,0.15);
  --blush:       #F7EBE8;
  --blush-dark:  #EDD8D4;
  --blush-card:  #F2E0DD;
  --petal:       #FBF3F1;
  --white:       #FFFFFF;
  --ink:         #1E0814;
  --slate:       #7A5060;
  --line:        #E8D0CC;
  --grad:        linear-gradient(90deg, var(--rose) 0%, var(--berry) 100%);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--blush);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  color: var(--berry);
}

.wrap {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- GRADIENT LINE DIVIDER ---------- */
.grad-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--grad);
  border: none;
}

/* ---------- EYEBROW ---------- */
.eyebrow {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 10px;
}

/* ---------- OVERSIZED FIRST WORD HEADING ---------- */
/* Usage: <h2 class="big-head"><span>Word</span> rest of heading</h2> */
.big-head {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  color: var(--berry);
  line-height: 0.95;
}
.big-head span {
  display: block;
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
}
.big-head em {
  font-style: italic;
  color: var(--rose);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200,69,106,0.3);
}
.btn-rose:hover {
  background: var(--berry-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(200,69,106,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--berry);
  border: 1.5px solid var(--berry);
}
.btn-outline:hover { background: var(--berry); color: #fff; }
.btn-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(6px);
}
.btn-light:hover { background: rgba(255,255,255,0.22); }
.btn-sm { padding: 10px 22px; font-size: 0.7rem; }
.btn-arrow::after { content: " →"; transition: transform 0.2s; display: inline-block; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- SECTIONS ---------- */
section { padding: 100px 0; }
section.tight { padding: 64px 0; }
.bg-blush { background: var(--blush); }
.bg-petal { background: var(--petal); }
.bg-berry { background: var(--berry); }
.bg-white { background: var(--white); }

/* ---------- NAV — centred logo, split links ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247,235,232,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 28px rgba(61,12,42,0.1); }

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 24px;
  max-width: 1080px;
  margin: 0 auto;
  gap: 16px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-right { justify-content: flex-end; }
.nav-logo { display: flex; justify-content: center; }
.nav-logo img { height: 52px; width: auto; }
.nav-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--rose); }
.nav-book {
  background: var(--berry) !important;
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 0.7rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-book:hover {
  background: var(--rose) !important;
  transform: translateY(-1px);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--berry);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- MARQUEE ---------- */
.marquee-band {
  background: var(--berry);
  padding: 13px 0;
  overflow: hidden;
}
.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-inner span {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
}
.marquee-inner span::before {
  content: "✦ ";
  color: var(--rose);
  font-size: 0.55rem;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- PILL STYLIST CARDS ---------- */
.pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pill-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
/* Alternating offset — odd cards sit higher */
.pill-card:nth-child(even) { margin-top: 48px; }

.pill-photo {
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  aspect-ratio: 2/3;
  background: var(--blush-card);
  margin-bottom: 18px;
}
.pill-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s cubic-bezier(0.2,0.8,0.2,1);
}
.pill-card:hover .pill-photo img { transform: scale(1.06); }

/* Work overlay on hover */
.pill-overlay {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.pill-card:hover .pill-overlay,
.pill-card.tapped .pill-overlay { opacity: 1; pointer-events: auto; }
.pill-overlay img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.pill-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(to top, rgba(61,12,42,0.75) 0%, transparent 55%);
  pointer-events: none;
}
.pill-overlay-label {
  position: absolute;
  bottom: 20px;
  left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  opacity: 0;
  transition: opacity 0.35s 0.07s;
  pointer-events: none;
  z-index: 2;
}
.pill-card:hover .pill-overlay-label,
.pill-card.tapped .pill-overlay-label { opacity: 1; }

.pill-info { text-align: center; padding: 0 8px; }
.pill-logo {
  height: 38px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  margin: 0 auto 8px;
  display: block;
}
.pill-name {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--berry);
  margin-bottom: 2px;
}
.pill-role {
  font-size: 0.65rem;
  color: var(--rose);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}
.pill-cta {
  font-size: 0.7rem;
  color: var(--slate);
  letter-spacing: 0.08em;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pill-card:hover .pill-cta { color: var(--rose); gap: 8px; }
.pill-cta::after { content: "→"; }

/* Availability dot */
.avail-dot-sm {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #72C472;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

/* ---------- SERVICE TAGS ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: 0.68rem;
  background: var(--blush-card);
  color: var(--berry);
  border: 1px solid var(--blush-dark);
  border-radius: 3px;
  padding: 5px 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: all 0.18s;
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  text-decoration: none;
}
.tag:hover, a.tag:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ---------- TESTIMONIALS ---------- */
.t-card {
  background: var(--white);
  border-radius: 6px;
  padding: 30px 26px;
  border: 1px solid var(--line);
  position: relative;
}
.t-card::before {
  content: """;
  font-family: 'Fraunces', serif;
  font-size: 6rem;
  color: var(--blush-dark);
  line-height: 0.6;
  position: absolute;
  top: 20px;
  left: 22px;
}
.t-quote {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--berry);
  line-height: 1.65;
  margin-bottom: 14px;
  padding-top: 30px;
}
.t-name {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: var(--berry);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
}
.page-hero h1 em { font-style: italic; color: var(--rose-light); }
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 0.97rem;
  max-width: 420px;
  margin: 0 auto;
  font-family: 'Outfit', sans-serif;
}
.page-hero .eyebrow { color: rgba(255,255,255,0.5); }

/* ---------- STYLIST PROFILE HERO ---------- */
.stylist-hero {
  background: var(--berry);
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.stylist-hero-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 1;
  padding-right: 5%;
}
.stylist-hero-watermark img {
  height: 80%;
  width: auto;
  opacity: 0.05;
  filter: brightness(20) saturate(0);
}
.stylist-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 30% 55%, rgba(61,12,42,0.85), transparent);
  z-index: 2;
  pointer-events: none;
}
.stylist-hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 580px;
  gap: 0;
}
.stylist-hero-text {
  padding: 72px 48px 72px 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stylist-hero-text h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
}
.stylist-hero-text h1 em { color: var(--rose-light); font-style: italic; }
.stylist-hero-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 400px;
}
.stylist-hero-text .eyebrow { color: rgba(255,255,255,0.45); }
.stylist-hero-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
}
.stylist-hero-pill-img {
  width: min(280px, 52vw);
  aspect-ratio: 2/3;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
  position: relative;
}
.stylist-hero-pill-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.stylist-hero-pill-img::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, var(--berry), transparent);
  border-radius: 0 0 999px 999px;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left { transform: translateX(-28px) translateY(0); }
.reveal.from-right { transform: translateX(28px) translateY(0); }
.reveal.in { opacity: 1; transform: translate(0,0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ---------- STATS ROW ---------- */
.stats-row {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--line);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--berry);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 500;
}

/* ---------- CONTACT CHIPS ---------- */
.contact-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  background: var(--white);
  color: var(--berry);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 16px;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
}
.contact-chip:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ---------- SVC CARDS ---------- */
.svc-card {
  background: var(--white);
  border-radius: 6px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: all 0.24s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(61,12,42,0.1); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  color: var(--berry);
  margin-bottom: 6px;
}
.svc-card p { font-size: 0.84rem; color: var(--slate); margin-bottom: 12px; line-height: 1.65; }
.svc-cta { font-size: 0.7rem; color: var(--rose); letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; font-family: 'Outfit', sans-serif; }

/* ---------- PORTFOLIO GALLERY ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.gal-item { aspect-ratio: 1; overflow: hidden; border-radius: 6px; background: var(--blush-card); }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gal-item:hover img { transform: scale(1.07); }

/* ---------- AVAILABILITY ---------- */
.avail-list { display: flex; flex-direction: column; gap: 0; }
.avail-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}
.avail-row:last-child { border-bottom: none; }
.avail-day { width: 130px; color: var(--slate); font-weight: 500; }
.avail-status { color: var(--ink); display: flex; align-items: center; gap: 8px; }

/* ---------- SOCIAL PILL ---------- */
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: var(--rose);
  border: 1.5px solid var(--line);
  border-radius: 4px;
  padding: 7px 14px;
  transition: all 0.2s;
  font-weight: 500;
  text-decoration: none;
}
.social-pill:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ---------- FOOTER ---------- */
footer {
  background: var(--berry);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 22px;
}
.footer-logo img { height: 50px; width: auto; margin-bottom: 14px; }
.footer-col p { font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.72; }
.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--rose-light); }
.footer-base { text-align: center; font-size: 0.74rem; color: rgba(255,255,255,0.22); }
.footer-base span { color: rgba(200,69,106,0.75); }

/* =========================================================
   MOBILE — 860px breakpoint
   ========================================================= */
@media (max-width: 860px) {
  /* Nav */
  .nav { grid-template-columns: 1fr auto; }
  .nav-left, .nav-right { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-open .nav-left,
  .nav-mobile-open .nav-right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--blush);
    padding: 22px 24px 28px;
    border-bottom: 2px solid var(--rose);
    box-shadow: 0 16px 40px rgba(61,12,42,0.12);
    z-index: 300;
    align-items: flex-start;
  }
  .nav-mobile-open .nav-right { top: calc(100% + 130px); border-top: 1px solid var(--line); }

  section { padding: 64px 0; }

  /* Pill grid */
  .pill-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .pill-card:nth-child(even) { margin-top: 32px; }

  /* Stylist hero */
  .stylist-hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .stylist-hero-text { padding: 52px 0 32px; }
  .stylist-hero-pill { padding: 0 0 52px; }
  .stylist-hero-pill-img { width: min(200px, 55vw); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  /* Gallery */
  .gal-grid { grid-template-columns: repeat(2,1fr); }

  /* Stats */
  .stats-row { flex-wrap: wrap; }
  .stat-item { min-width: 50%; }
}

@media (max-width: 540px) {
  .pill-grid { grid-template-columns: 1fr; }
  .pill-card:nth-child(even) { margin-top: 0; }
  .big-head span { font-size: clamp(3.8rem, 17vw, 6rem); }
}

/* =========================================================
   SHARED NAV JS HOOK
   ========================================================= */
header.nav-open .nav-left,
header.nav-open .nav-right {
  display: flex !important;
  flex-direction: column;
  gap: 14px;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--blush);
  padding: 22px 24px 28px;
  border-bottom: 2px solid var(--rose);
  box-shadow: 0 16px 40px rgba(61,12,42,0.12);
  z-index: 300;
  align-items: flex-start;
}
header.nav-open .nav-right {
  top: auto;
  border-top: 1px solid var(--line);
  border-bottom: 2px solid var(--rose);
}

/* =========================================================
   MOBILE NAV OPEN — consolidated dropdown
   ========================================================= */
@media (max-width: 860px) {
  header .nav { position: relative; }

  header.nav-open .nav-left {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--blush);
    padding: 22px 24px 16px;
    z-index: 300;
    align-items: flex-start;
  }
  header.nav-open .nav-right {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: calc(100% + 90px); left: 0; right: 0;
    background: var(--blush);
    padding: 16px 24px 28px;
    border-bottom: 2px solid var(--rose);
    box-shadow: 0 16px 40px rgba(61,12,42,0.12);
    z-index: 300;
    align-items: flex-start;
  }
}

/* ---------- SOCIAL ICON LINKS ---------- */
.social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  color: var(--berry);
  background: var(--white);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  flex-shrink: 0;
}
.social-icon-link:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: translateY(-2px);
}
