/* ============================================================
   PRITTY GLOW — Miami Lash & Brow Studio
   Design system: "Miami beauty-noir"
   Deep plum after-dark hero → blush daylight sections,
   neon-script signature, lash-stroke dividers.
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Color */
  --noir:        #1d0e17;   /* deep plum-noir base */
  --noir-2:      #2b1522;   /* raised noir surface */
  --blush:       #fdf1f2;   /* daylight section bg (pink-cast, not cream) */
  --blush-2:     #f9e3e7;   /* raised blush surface */
  --pink:        #ff5c9a;   /* Miami neon pink — primary accent */
  --pink-deep:   #e23577;
  --gold:        #e9b25c;   /* glow gold — secondary accent */
  --ink:         #33101f;   /* text on light */
  --milk:        #fff6f4;   /* text on dark */
  --line-dark:   rgba(255, 92, 154, .22);
  --line-light:  rgba(51, 16, 31, .14);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Outfit", -apple-system, sans-serif;
  --font-script:  "Ms Madi", cursive;

  /* Scale & rhythm */
  --step-hero:  clamp(3rem, 9vw, 6.75rem);
  --step-h2:    clamp(2.1rem, 5vw, 3.6rem);
  --step-h3:    clamp(1.2rem, 2.2vw, 1.5rem);
  --step-body:  1.0625rem;
  --step-small: .8125rem;
  --section-pad: clamp(4.5rem, 10vw, 8.5rem);
  --wrap: min(1160px, 92vw);
  --radius: 18px;

  /* Motion */
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--blush);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

.wrap { width: var(--wrap); margin-inline: auto; }

/* Eyebrow label above headings */
.eyebrow {
  font-size: var(--step-small);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--pink-deep);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold); }

h2 {
  font-family: var(--font-display);
  font-size: var(--step-h2);
  font-weight: 480;
  line-height: 1.06;
  letter-spacing: -.015em;
  margin: .55rem 0 1rem;
}
h2 em { font-style: italic; color: var(--pink-deep); }

.section { padding-block: var(--section-pad); }

/* ---------- 3. BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .25s;
  text-decoration: none;
  will-change: transform;
}
.btn-pink {
  background: linear-gradient(120deg, var(--pink), var(--pink-deep));
  color: #fff;
  box-shadow: 0 8px 26px rgba(255, 92, 154, .38);
}
.btn-pink:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(255, 92, 154, .5); }
.btn-ghost {
  color: var(--milk);
  border: 1.5px solid rgba(255,246,244,.35);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-ink { background: var(--ink); color: var(--milk); }
.btn-ink:hover { background: var(--noir); transform: translateY(-3px); }

/* ---------- 4. LASH DIVIDER (signature structural device) ---------- */
.lash-divider { display: block; width: min(320px, 60vw); margin: 0 auto; color: var(--pink); opacity: .85; }
.section-dark .lash-divider { color: var(--gold); }

/* ---------- 5. HEADER ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding-block: 1.1rem;
}
.site-header.scrolled {
  background: rgba(29, 14, 23, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line-dark);
  padding-block: .6rem;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.logo {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: 1.45rem;
  color: var(--milk);
  text-decoration: none;
  letter-spacing: -.01em;
}
.glow-word { font-family: var(--font-display); color: var(--pink); }
.logo .glow-word { margin-left: .12em; }
.main-nav { display: flex; gap: 2rem; }
.main-nav a {
  color: var(--milk);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .04em;
  position: relative;
  padding-block: .3rem;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { display: flex; align-items: center; gap: 1.1rem; }
.btn-header { padding: .65rem 1.4rem; font-size: .88rem; }

/* Mobile nav */
.nav-toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 110; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 10px; width: 24px; height: 2px;
  background: var(--milk); transition: all .3s var(--ease-out);
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { top: -7px; left: 0; }
.nav-toggle span::after { top: 7px; left: 0; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

@media (max-width: 860px) {
  .main-nav {
    position: fixed; inset: 0;
    background: rgba(29,14,23,.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    font-size: 1.3rem;
    opacity: 0; pointer-events: none;
    transition: opacity .35s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; }
  .nav-toggle { display: block; }
  .header-dm { display: none; }
}

/* ---------- 6. HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  background:
    radial-gradient(1100px 600px at 78% 18%, rgba(255,92,154,.20), transparent 60%),
    radial-gradient(900px 700px at 12% 85%, rgba(233,178,92,.14), transparent 55%),
    var(--noir);
  color: var(--milk);
  overflow: hidden;
  padding-top: 6rem;
}
/* Ambient drifting glow orbs (.orb base rule lives in the LASHES PAGE section, reused here) */
.orb-1 { width: 420px; height: 420px; background: var(--pink); top: -8%; right: -6%; }
.orb-2 { width: 340px; height: 340px; background: var(--gold); bottom: -10%; left: -8%; animation-delay: -6s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-40px, 34px) scale(1.12); }
}

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

.hero-kicker {
  font-size: var(--step-small);
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.3rem;
  display: flex; align-items: center; gap: .7rem;
}
.hero-kicker::before { content: ""; width: 34px; height: 1.5px; background: var(--gold); }

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--step-hero);
  font-weight: 420;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.hero-sub { max-width: 46ch; margin: 1.6rem 0 2.2rem; color: rgba(255,246,244,.78); font-size: 1.1rem; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.8rem; }

.hero-proof { display: flex; flex-wrap: wrap; gap: 2.4rem; border-top: 1px solid var(--line-dark); padding-top: 1.6rem; }
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 520;
  color: var(--gold);
}
.proof-item span { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,246,244,.6); }

/* Hero visual: single-review-at-a-time carousel styled like a Google review */
.hero-visual { position: relative; }
.grc { display: grid; gap: 1.1rem; }
.grc-card {
  background: #fff;
  color: #202124;
  text-decoration: none;
  border-radius: var(--radius);
  padding: 1.7rem 1.8rem;
  min-height: 240px;
  display: grid;
  align-content: start;
  gap: 1rem;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.grc-card:hover, .grc-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(0,0,0,.42);
}
.grc-head { display: flex; align-items: center; gap: .8rem; }
.grc-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: .88rem; letter-spacing: -.02em;
}
.grc-who { flex: 1; display: grid; gap: .1rem; min-width: 0; }
.grc-who strong { font-size: .95rem; color: #202124; }
.grc-time { font-size: .8rem; color: #70757a; }
.grc-head svg { flex-shrink: 0; }
.grc-stars { display: flex; gap: .15rem; }
.grc-star { color: #dadce0; font-size: 1.05rem; line-height: 1; }
.grc-star.is-filled { color: #fbbc04; }
.grc-quote { font-size: .96rem; line-height: 1.55; color: #3c4043; }

.grc-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.grc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: rgba(255,246,244,.06);
  color: var(--milk);
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.grc-btn:hover { background: rgba(255,246,244,.14); border-color: var(--pink); }
.grc-dots { display: flex; gap: .5rem; }
.grc-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,246,244,.25);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.grc-dot.is-active { background: var(--gold); transform: scale(1.25); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin-inline: auto; }
}
@media (max-width: 480px) {
  .grc-card { padding: 1.3rem 1.4rem; min-height: 210px; }
  .grc-quote { font-size: .92rem; }
}

/* ---------- 7. SERVICES ---------- */
.services { background: var(--blush); }
.services-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.services-head p { max-width: 44ch; color: rgba(51,16,31,.72); }

.service-toggle {
  display: inline-flex;
  gap: .3rem;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: 99px;
  padding: .3rem;
  margin-bottom: 2rem;
}
.toggle-btn {
  border: none;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  font-size: .9rem;
  padding: .6rem 1.4rem;
  border-radius: 99px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.toggle-btn.active { background: var(--pink-deep); color: #fff; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
@media (max-width: 860px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .service-grid { grid-template-columns: 1fr; } }
.service-card {
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.9rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(51,16,31,.14);
  border-color: rgba(255,92,154,.45);
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: var(--noir); color: var(--milk); border-color: transparent; }
.service-card.featured .service-desc { color: rgba(255,246,244,.7); }
.service-tag {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--gold); color: var(--noir);
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .65rem; border-radius: 99px;
}
.service-card h3 { font-family: var(--font-display); font-size: var(--step-h3); font-weight: 540; line-height: 1.15; }
.service-meta { display: flex; align-items: baseline; gap: .7rem; }
.service-price { font-family: var(--font-display); font-size: 1.9rem; font-weight: 520; color: var(--pink-deep); }
.service-card.featured .service-price { color: var(--gold); }
.service-time { font-size: .82rem; opacity: .65; letter-spacing: .04em; }
.service-desc { font-size: .93rem; color: rgba(51,16,31,.72); flex: 1; }
.service-book { align-self: start; }

/* ---------- 8. INSTAGRAM CAROUSEL ---------- */
.beforeafter { background: var(--noir); color: var(--milk); }
.beforeafter .eyebrow { color: var(--gold); }
.ba-intro { max-width: 52ch; color: rgba(255,246,244,.72); margin-bottom: 3rem; }

.ig-profile {
  background: rgba(255,246,244,.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 2rem;
}
.ig-profile-head { display: flex; gap: 1.6rem; align-items: flex-start; }
.ig-avatar {
  flex-shrink: 0;
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--noir);
  border: 1px solid var(--line-dark);
  overflow: hidden;
}
.ig-avatar img { width: 100%; height: 100%; object-fit: cover; }
.ig-profile-info { flex: 1; min-width: 0; }
.ig-profile-top { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1rem; }
.ig-handle { font-size: 1.2rem; font-weight: 600; }
.ig-follow-btn {
  display: inline-flex; align-items: center;
  background: linear-gradient(120deg, var(--pink), var(--pink-deep));
  color: #fff; text-decoration: none;
  font-weight: 600; font-size: .88rem;
  padding: .5rem 1.3rem; border-radius: 99px;
  box-shadow: 0 6px 20px rgba(255, 92, 154, .35);
  transition: transform .25s var(--ease-out);
}
.ig-follow-btn:hover { transform: translateY(-2px); }
.ig-stats { display: flex; gap: 1.8rem; margin-bottom: .9rem; font-size: .92rem; color: rgba(255,246,244,.85); }
.ig-stats strong { color: var(--milk); }
.ig-name { font-weight: 700; margin-bottom: .3rem; }
.ig-bio { white-space: pre-line; color: rgba(255,246,244,.75); font-size: .92rem; line-height: 1.5; }

.ig-highlights {
  display: flex; gap: 1.4rem;
  overflow-x: auto;
  margin-top: 1.8rem;
  scrollbar-width: none;
}
.ig-highlights::-webkit-scrollbar { display: none; }
.ig-highlight {
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
  flex-shrink: 0;
  text-decoration: none;
}
.ig-highlight-thumb {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: var(--noir);
  overflow: hidden;
  transition: border-color .2s;
}
.ig-highlight-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ig-highlight:hover .ig-highlight-thumb, .ig-highlight:focus-visible .ig-highlight-thumb { border-color: var(--pink); }
.ig-highlight-label {
  font-size: .72rem; color: rgba(255,246,244,.75);
  max-width: 72px; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.ig-tabs {
  display: flex; gap: 2.4rem; justify-content: center;
  border-top: 1px solid var(--line-dark);
  margin-top: 2rem; padding-top: 1rem;
}
.ig-tab {
  font-size: .78rem; font-weight: 600; letter-spacing: .1em;
  color: rgba(255,246,244,.45);
}
.ig-tab.active { color: var(--milk); border-top: 2px solid var(--milk); margin-top: -1rem; padding-top: 1rem; }

.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem; margin-top: 1rem; }
.ig-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
  background: var(--noir);
}
.ig-tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ig-reel-badge {
  position: absolute; top: .5rem; right: .5rem;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(0,0,0,.5); color: #fff;
  display: grid; place-items: center;
  font-size: .68rem;
  backdrop-filter: blur(4px);
}
.ig-tile-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  background: rgba(0,0,0,.55);
  color: #fff; font-weight: 700; font-size: .9rem;
  opacity: 0;
  transition: opacity .2s;
}
.ig-tile:hover .ig-tile-overlay, .ig-tile:focus-visible .ig-tile-overlay { opacity: 1; }

.ig-view-more {
  display: block;
  text-align: center;
  margin-top: 1.6rem;
  color: var(--milk);
  font-weight: 600; font-size: .9rem;
  text-decoration: none;
}
.ig-view-more:hover { color: var(--pink); }

@media (max-width: 600px) {
  .ig-profile { padding: 1.4rem; }
  .ig-profile-head { gap: 1rem; }
  .ig-avatar { width: 64px; height: 64px; }
  .ig-stats { gap: 1.1rem; font-size: .85rem; }
  .ig-tabs { gap: 1.4rem; }
}

/* ---------- 9. WHY US (trust comparison table) ---------- */
.why-us { background: var(--blush-2); overflow: hidden; }
.why-us .ba-intro { color: rgba(51,16,31,.75); }

.trust-table-wrap { margin-top: 2.6rem; overflow-x: auto; }
.trust-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.trust-table th, .trust-table td {
  padding: 1rem 1.3rem;
  text-align: left;
  border-bottom: 1px solid var(--line-light);
  font-size: .95rem;
}
.trust-table thead th {
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(51,16,31,.55);
  border-bottom: 2px solid var(--line-light);
}
.trust-table tbody th { font-weight: 500; color: var(--ink); }
.trust-table tbody tr:last-child th, .trust-table tbody tr:last-child td { border-bottom: none; }
.trust-col-us {
  background: rgba(255, 92, 154, .07);
  font-weight: 700; color: var(--pink-deep);
  white-space: nowrap;
}
.trust-col-them { color: rgba(51,16,31,.55); }
.trust-check { color: var(--pink-deep); font-size: 1.05rem; }
.trust-cta { text-align: center; margin-top: 2.4rem; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- 10. LASHES PAGE ---------- */

/* Ambient drifting glow orbs — usable in any dark section, not just .hero */
.orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5;
  animation: drift 14s ease-in-out infinite alternate;
  pointer-events: none;
}

/* Hero — compact banner, homepage-style noir + glow background (no photo).
   Shared layout classes: Lashes page uses .lash-*, Brows page uses .brow-*,
   the blog hub uses .blog-hub-hero*, article pages use .article-hero* —
   same rules, aliased via comma selectors so every interior page stays in sync. */
.lash-hero, .brow-hero, .blog-hub-hero, .article-hero {
  position: relative; overflow: hidden; color: var(--milk);
  background:
    radial-gradient(1100px 600px at 78% 18%, rgba(255,92,154,.20), transparent 60%),
    radial-gradient(900px 700px at 12% 85%, rgba(233,178,92,.14), transparent 55%),
    var(--noir);
}
.lash-hero-content, .brow-hero-content, .blog-hub-hero-content, .article-hero-content { position: relative; max-width: 640px; padding: 8.5rem 0 4rem; }
.lash-hero-content h1, .brow-hero-content h1, .blog-hub-hero-content h1, .article-hero-content h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 420;
  line-height: 1.05; letter-spacing: -.02em; margin: 0 0 1.2rem;
}
.lash-hero-intro, .brow-hero-intro, .blog-hub-hero-intro, .article-hero-dek { font-size: 1.1rem; color: rgba(255,246,244,.82); max-width: 52ch; }
@media (max-width: 720px) {
  .lash-hero-content, .brow-hero-content, .blog-hub-hero-content, .article-hero-content { padding: 7rem 0 3rem; }
}

/* Intro */
.lash-intro, .brow-intro { padding-bottom: 2.5rem; }
.lash-intro-grid, .brow-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.2rem; }
.lash-intro-grid p, .brow-intro-grid p { color: rgba(51,16,31,.75); max-width: 48ch; }
@media (max-width: 780px) { .lash-intro-grid, .brow-intro-grid { grid-template-columns: 1fr; } }

.lash-services .ba-intro, .brow-services .ba-intro { color: rgba(51,16,31,.75); }

/* Service grid — borderless, photo-over-copy editorial cells (no card chrome).
   Wider two-column grid so each service has room for real informational
   copy (details + best-for), not just a short card blurb. */
.lash-service-grid, .brow-service-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 3.2rem 3rem; margin-top: 3rem;
}
.lash-service-item, .brow-service-item { display: flex; flex-direction: column; height: 100%; }
.lash-service-media, .brow-service-media { aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.lash-service-media img, .brow-service-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s var(--ease-out); }
.lash-service-item:hover .lash-service-media img, .brow-service-item:hover .brow-service-media img { transform: scale(1.05); }
.lash-service-copy, .brow-service-copy { display: flex; flex-direction: column; gap: .8rem; padding-top: 1.4rem; flex: 1; }
.lash-service-copy h3, .brow-service-copy h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.lash-service-copy .service-desc, .brow-service-copy .service-desc { max-width: 58ch; flex: none; min-height: 4.95em; }
.lash-service-details, .brow-service-details { color: rgba(51,16,31,.72); max-width: 58ch; min-height: 4.95em; }
.lash-service-best-for, .brow-service-best-for { font-size: .92rem; color: rgba(51,16,31,.65); max-width: 58ch; }
.lash-service-best-for strong, .brow-service-best-for strong { color: var(--ink); }
.lash-service-copy .btn, .brow-service-copy .btn { align-self: start; margin-top: auto; }

/* Brows page only — compact text-only cards for services without photos yet */
.brow-more-services-heading {
  font-family: var(--font-display); font-weight: 500; font-size: 1.3rem;
  margin-top: 3.6rem; margin-bottom: 0;
}
.brow-more-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem; max-width: 640px; margin-top: 1.6rem;
}

/* Which style comparison */
.lash-compare .ba-intro, .brow-compare .ba-intro { color: rgba(51,16,31,.75); }
.lash-style-tabs, .brow-style-tabs { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2.2rem; }
.lash-style-detail, .brow-style-detail { margin-top: 2rem; display: grid; gap: 0; max-width: 720px; }
.lash-trait-row, .brow-trait-row {
  display: grid; grid-template-columns: 180px 1fr; gap: 1.5rem;
  padding: 1rem 0; border-bottom: 1px solid var(--line-light);
}
.lash-trait-row dt, .brow-trait-row dt { font-weight: 600; color: var(--pink-deep); font-size: .88rem; text-transform: uppercase; letter-spacing: .05em; }
.lash-trait-row dd, .brow-trait-row dd { color: var(--ink); }
@media (max-width: 560px) { .lash-trait-row, .brow-trait-row { grid-template-columns: 1fr; gap: .3rem; } }

/* Gallery + lightbox */
.lash-gallery-section .ba-intro, .brow-gallery-section .ba-intro { color: rgba(51,16,31,.75); }
.lash-gallery-grid, .brow-gallery-grid {
  margin-top: 2.4rem;
  columns: 4 220px; column-gap: 1rem;
}
.lash-gallery-tile, .brow-gallery-tile {
  display: block; width: 100%; margin-bottom: 1rem; border-radius: 14px; overflow: hidden;
  border: none; padding: 0; cursor: pointer; break-inside: avoid;
  position: relative;
}
.lash-gallery-tile img, .brow-gallery-tile img { width: 100%; display: block; transition: transform .4s var(--ease-out); }
.lash-gallery-tile:hover img, .brow-gallery-tile:hover img { transform: scale(1.05); }
.lash-gallery-tile::after, .brow-gallery-tile::after {
  content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(29,14,23,.35); opacity: 0; transition: opacity .3s; font-size: 1.4rem;
}
.lash-gallery-tile:hover::after, .lash-gallery-tile:focus-visible::after,
.brow-gallery-tile:hover::after, .brow-gallery-tile:focus-visible::after { opacity: 1; }
@media (max-width: 640px) { .lash-gallery-grid, .brow-gallery-grid { columns: 2 160px; } }

.lash-lightbox, .brow-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,5,8,.94);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
}
.lash-lightbox[hidden], .brow-lightbox[hidden] { display: none; }
.lash-lightbox-img, .brow-lightbox-img { max-width: min(88vw, 720px); max-height: 82vh; border-radius: 12px; object-fit: contain; }
.lash-lightbox-close, .lash-lightbox-nav, .brow-lightbox-close, .brow-lightbox-nav {
  position: absolute; width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,246,244,.1); border: 1px solid rgba(255,246,244,.3); color: var(--milk);
  display: grid; place-items: center; font-size: 1.2rem; cursor: pointer;
  transition: background .2s;
}
.lash-lightbox-close:hover, .lash-lightbox-nav:hover, .brow-lightbox-close:hover, .brow-lightbox-nav:hover { background: rgba(255,246,244,.22); }
.lash-lightbox-close, .brow-lightbox-close { top: 1.5rem; right: 1.5rem; }
.lash-lightbox-prev, .brow-lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lash-lightbox-next, .brow-lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) {
  .lash-lightbox-prev, .lash-lightbox-next, .brow-lightbox-prev, .brow-lightbox-next { width: 40px; height: 40px; }
}

/* Refill / maintenance info */
.lash-refill, .brow-maintenance { background: var(--noir); color: var(--milk); }
.lash-refill-grid, .brow-maintenance-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.8rem; margin-top: 2.4rem; }
.lash-refill-point h3, .brow-maintenance-point h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); margin-bottom: .6rem; min-height: 1.65em; }
.lash-refill-point p, .brow-maintenance-point p { color: rgba(255,246,244,.78); }

/* Final CTA — also reused by the blog hub (.blog-hub-cta) and article final CTA (.article-cta-final) */
.lash-final-cta, .brow-final-cta, .blog-hub-cta, .article-cta-final {
  position: relative; overflow: hidden;
  background: var(--noir); color: var(--milk);
  padding: var(--section-pad) 0;
  text-align: center;
}
.lash-final-cta-inner, .brow-final-cta-inner, .blog-hub-cta-inner { position: relative; max-width: 640px; margin: 0 auto; }
.lash-final-cta-inner .lash-hero-intro, .brow-final-cta-inner .brow-hero-intro, .blog-hub-cta-inner .blog-hub-hero-intro { margin: 1.4rem auto 2.2rem; }
.lash-final-cta-inner .hero-actions, .brow-final-cta-inner .hero-actions, .blog-hub-cta-inner .hero-actions { justify-content: center; margin-bottom: 0; }
.lash-final-cta-btn, .brow-final-cta-btn, .blog-hub-cta-btn { animation: pulse-glow 2.6s infinite; }
@keyframes pulse-glow {
  0%   { box-shadow: 0 8px 26px rgba(255,92,154,.38), 0 0 0 0 rgba(255,92,154,.45); }
  70%  { box-shadow: 0 8px 26px rgba(255,92,154,.38), 0 0 0 16px rgba(255,92,154,0); }
  100% { box-shadow: 0 8px 26px rgba(255,92,154,.38), 0 0 0 0 rgba(255,92,154,0); }
}

/* ---------- 11. FAQ ---------- */
.faq { background: var(--blush); }
.faq-list { margin-top: 2.4rem; max-width: 820px; }
.faq-item { border-bottom: 1px solid var(--line-light); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  text-align: left;
  padding: 1.4rem .2rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 500;
  color: var(--ink);
  transition: color .25s;
}
.faq-q:hover { color: var(--pink-deep); }
.faq-q .faq-icon {
  flex: 0 0 34px; height: 34px;
  border: 1.5px solid var(--ink); border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-body); font-size: 1.15rem;
  transition: transform .4s var(--ease-out), background .3s, color .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--pink); border-color: var(--pink); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .5s var(--ease-out);
}
.faq-a p { padding: 0 3.2rem 1.5rem .2rem; color: rgba(51,16,31,.75); max-width: 62ch; }

/* ---------- 12. FOOTER ---------- */
.site-footer { background: var(--noir-2); color: var(--milk); padding: 4.5rem 0 2rem; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-dark); }
.footer-brand .logo { font-size: 1.6rem; }
.footer-brand p { color: rgba(255,246,244,.6); font-size: .92rem; margin-top: 1rem; max-width: 30ch; }
.footer-col h4 { font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a { color: rgba(255,246,244,.75); text-decoration: none; font-size: .93rem; }
.footer-col a:hover { color: var(--pink); }
.footer-col address { font-style: normal; color: rgba(255,246,244,.75); font-size: .93rem; line-height: 1.8; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.6rem; font-size: .8rem; color: rgba(255,246,244,.45); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- 13. BLOG ---------- */

/* Breadcrumb — sits inside the noir hero on article pages */
.article-breadcrumb { margin-bottom: 1.6rem; }
.article-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; }
.article-breadcrumb li { display: flex; align-items: center; gap: .5rem; font-size: .82rem; color: rgba(255,246,244,.55); }
.article-breadcrumb li:not(:last-child)::after { content: "/"; color: rgba(255,246,244,.3); }
.article-breadcrumb a { color: rgba(255,246,244,.75); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--gold); }
.article-breadcrumb li[aria-current="page"] { color: var(--milk); }

/* Article hero meta row: category tag + read time */
.article-meta { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 1.5rem; }
.article-meta-tag, .article-meta-time {
  font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: .45rem;
}
.article-meta-tag { color: var(--gold); }
.article-meta-tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--pink); }
.article-meta-time { color: rgba(255,246,244,.6); }

/* Article reading column — single centered column (comfortable measure,
   no sidebar) shared by the intro, TOC, body, tips, CTAs, FAQ & related grid */
.article-column { max-width: 760px; margin-inline: auto; }
.article-body { max-width: 68ch; }
.article-intro { font-size: 1.15rem; color: rgba(51,16,31,.82); max-width: 68ch; margin-bottom: 2rem; }
.article-body p { margin-bottom: 1.3rem; color: rgba(51,16,31,.85); }
.article-body h2, .article-faq h2, .article-related h2 { margin-top: 2.6rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.article-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 560; margin: 1.8rem 0 .9rem; color: var(--ink); }
.article-body ul, .article-body ol { margin: 0 0 1.3rem 1.3rem; color: rgba(51,16,31,.85); display: grid; gap: .5rem; }
.article-body li { padding-left: .3rem; }
.article-body strong { color: var(--ink); }
.article-body a:not(.btn) { color: var(--pink-deep); text-decoration: underline; text-decoration-color: rgba(226,53,119,.35); text-underline-offset: 3px; }
.article-body a:not(.btn):hover { text-decoration-color: var(--pink-deep); }

/* Table of contents — native <details> disclosure, fully keyboard/screen-reader
   accessible with zero custom JS */
.article-toc {
  border: 1px solid var(--line-light); border-radius: var(--radius);
  padding: 1.2rem 1.5rem; margin-bottom: 2.4rem; background: #fff;
}
.article-toc summary {
  cursor: pointer; font-weight: 600; font-family: var(--font-display);
  font-size: 1.05rem; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
}
.article-toc summary::-webkit-details-marker { display: none; }
.article-toc summary::after { content: "+"; font-size: 1.3rem; color: var(--pink-deep); transition: transform .3s var(--ease-out); }
.article-toc[open] summary::after { transform: rotate(45deg); }
.article-toc ol { list-style: decimal; margin: 1.1rem 0 0 1.2rem; display: grid; gap: .55rem; color: rgba(51,16,31,.85); }
.article-toc a { color: var(--ink); text-decoration: none; font-size: .95rem; }
.article-toc a:hover { color: var(--pink-deep); text-decoration: underline; }

/* Tip / expert callout box */
.article-tip {
  background: var(--blush-2); border-left: 4px solid var(--pink);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.4rem 1.6rem; margin: 2rem 0; display: grid; gap: .4rem;
}
.article-tip-label { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pink-deep); }
.article-tip p { margin: 0; color: rgba(51,16,31,.85); font-size: .96rem; }

/* Comparison cards (used by the "X vs. Y" articles) */
.article-compare-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.4rem; margin: 2rem 0; }
.article-compare-card { background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius); padding: 1.6rem; display: grid; gap: .7rem; align-content: start; }
.article-compare-card h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--pink-deep); }
.article-compare-card dl { display: grid; gap: .55rem; }
.article-compare-card dt { font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: rgba(51,16,31,.5); }
.article-compare-card dd { font-size: .92rem; color: rgba(51,16,31,.82); }

/* CTA banners — <article-cta> renders one of three variants */
.article-cta-inner { display: grid; gap: .8rem; }
.article-cta-subtle {
  border: 1px dashed var(--line-light); border-radius: var(--radius);
  padding: 1.3rem 1.5rem; margin: 1.8rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
}
.article-cta-subtle .article-cta-inner { display: block; }
.article-cta-subtle p { margin: 0; font-size: .95rem; color: rgba(51,16,31,.75); }
.article-cta-inline { background: var(--blush-2); border-radius: var(--radius); padding: 2rem 2.2rem; margin: 2.6rem 0; text-align: center; }
.article-cta-inline h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: .4rem; }
.article-cta-inline p { color: rgba(51,16,31,.78); max-width: 52ch; margin: 0 auto 1.2rem; }
.article-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.article-cta-subtle .article-cta-actions { justify-content: flex-end; }
.article-cta-final .article-cta-inner { max-width: 620px; margin: 0 auto; }
.article-cta-final h3 { font-family: var(--font-display); font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 480; margin-bottom: .8rem; }
.article-cta-final p { color: rgba(255,246,244,.78); margin-bottom: 1.8rem; }
.article-cta-final .article-cta-actions { justify-content: center; }
@media (max-width: 640px) {
  .article-cta-subtle { flex-direction: column; align-items: stretch; text-align: center; }
  .article-cta-subtle .article-cta-actions { justify-content: center; }
}

/* Blog post cards — shared by the main grid, the featured post, and related
   articles. Text-only (no images) — a top accent bar on hover replaces the
   visual interest a thumbnail would otherwise carry, reusing the same
   gradient-bar pattern as .service-card. */
.blog-post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2.6rem; }
.blog-post-card {
  background: #fff; border: 1px solid var(--line-light); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; position: relative;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .3s;
  text-decoration: none; color: inherit;
}
.blog-post-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.blog-post-card:hover::before { transform: scaleX(1); }
.blog-post-card:hover, .blog-post-card:focus-visible { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(51,16,31,.14); border-color: rgba(255,92,154,.4); }
.blog-post-card-body { padding: 1.8rem 1.8rem 2rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.blog-post-card-tag { font-size: .74rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--pink-deep); }
.blog-post-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 540; line-height: 1.25; }
.blog-post-card p { font-size: .92rem; color: rgba(51,16,31,.7); flex: 1; }
.blog-post-card-foot { display: flex; justify-content: space-between; align-items: center; font-size: .8rem; color: rgba(51,16,31,.5); margin-top: .3rem; }
.blog-post-card-read { font-weight: 600; color: var(--pink-deep); }

/* Featured post — larger spotlight variant of the same card, centered text */
.blog-featured { margin-top: 2.6rem; }
.blog-post-card.is-featured { text-align: center; }
.blog-post-card.is-featured .blog-post-card-body { padding: 3rem 3rem 3.2rem; align-items: center; }
.blog-post-card.is-featured h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); max-width: 40ch; }
.blog-post-card.is-featured p { font-size: 1.05rem; max-width: 52ch; }
.blog-post-card.is-featured .blog-post-card-foot { justify-content: center; gap: 1.2rem; }

/* Related articles — narrower grid using the same card component */
.article-related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.6rem; margin-top: 2.2rem; }

/* Blog hub empty state — shown only if a topic filter matches zero posts */
.blog-empty-state { text-align: center; padding: 3rem 1rem; color: rgba(51,16,31,.6); }

/* Article FAQ — reuses .faq-list/.faq-item/.faq-q/.faq-a/.faq-icon as-is;
   this wrapper class only exists to scope the accordion behavior in main.js
   away from the homepage's <faq-section> (which wires its own listeners).
   Spacing above the heading comes from the shared h2 rule above, same as
   every other section heading, so it lines up with .article-related. */

/* ---------- 14. SCROLL REVEALS ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }

/* ---------- 15. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
