/* ============================================================
   v3-additions.css  —  2026-06-05 sweep
   New components Will requested:
     - Enlarged hero scroll cue
     - Hover-grid "All Treatments" section (replaces full menu)
     - Membership preview card (home)
     - TikTok card (clinic gallery)
     - About-page deeper-membership CTA section
     - Popup support tokens (popup main styles in v3-popup.css)
   Loaded AFTER site.css so values cascade through.
   ============================================================ */

/* ---------- Hero video flash-prevention (2026-06-06 v5 for headerbbaestheticsv2) ----------
   `is-prerolling` is applied at markup time (return visits) and removed only after seek
   lands at LOOP_START. The full state-machine that positions the video (fullscreen-front
   during splash vs. background after) lives in the "Hero cinematic boot" block near the
   bottom of this file — there is intentionally ONE source of truth for those rules.

   Poster fallback: lives at z-index:-3 inside .hero so it shows through ONLY when the
   video is opacity:0 (return-visit preroll). The video at z-index:-2 (open state) or
   z-index:9999 (locked/splash) covers it the rest of the time. */
.hero-video { transition: opacity 420ms ease; }
.hero-video.is-prerolling { opacity: 0 !important; }
.hero.hero-cinematic::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image: url('./headerbbaestheticsv2-poster.jpg');
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

/* ---------- Hero: open-state padding + scroll cue cleanup (does NOT apply during splash) ----------
   Padding only applies on the open hero (post-splash). During splash the video is
   position:fixed and ignores padding entirely, so this won't push the splash content. */
.hero.hero-cinematic[data-hero-state="open"] {
    padding-top: 18vh;
    padding-bottom: 260px;
    align-items: flex-start;
}
@media (max-width: 1100px) {
    .hero.hero-cinematic[data-hero-state="open"] { padding-top: 14vh; padding-bottom: 240px; }
}
@media (max-width: 700px) {
    .hero.hero-cinematic[data-hero-state="open"] { padding-top: 12vh; padding-bottom: 220px; }
}

/* Kill the mouse-shape pseudo-elements + the bouncing chevron */
.hero-scroll-cue::after,
.hero-scroll-cue::before { content: none !important; display: none !important; }
.hero-scroll-cue .hsc-chev { display: none !important; }
.hero-scroll-cue { gap: 0; padding: 18px 36px; }

/* ---------- All-Treatments Hover Grid ---------- */
.treatments-hover {
    position: relative;
    padding: 110px 0 130px;
    background-color: var(--bb-ink);
    overflow: hidden;
    isolation: isolate;
}
.treatments-hover .th-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: background-image 600ms ease, opacity 500ms ease, transform 8000ms cubic-bezier(.2,.7,.3,1);
    z-index: 1;
    transform: scale(1.05);
}
.treatments-hover .th-bg-layer.is-active { z-index: 2; }
.treatments-hover .th-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34,28,25,0.55) 0%, rgba(34,28,25,0.72) 60%, rgba(34,28,25,0.85) 100%);
    z-index: 3;
}
.treatments-hover > .container { position: relative; z-index: 4; }
.treatments-hover .section-header { color: var(--bb-cream); text-align: center; margin-bottom: 56px; }
.treatments-hover .section-header .eyebrow { color: var(--bb-pink); }
.treatments-hover .section-header h2 { color: var(--bb-cream); margin-bottom: 16px; }
.treatments-hover .section-header h2 .script { color: var(--bb-pink); }
.treatments-hover .section-header p { color: rgba(248,243,235,0.82); font-weight: 300; max-width: 580px; margin: 0 auto; }
.th-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 980px;
    margin: 0 auto 50px;
}
@media (max-width: 920px) { .th-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .th-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }
.th-tile {
    background: rgba(248, 243, 235, 0.06);
    border: 1px solid rgba(248, 243, 235, 0.14);
    border-radius: var(--radius-md);
    padding: 22px 16px 18px;
    text-align: center;
    cursor: pointer;
    color: var(--bb-cream);
    transition: background 280ms ease, border-color 280ms ease, transform 280ms ease, box-shadow 280ms ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    text-decoration: none;
    display: block;
    position: relative;
}
.th-tile:hover, .th-tile:focus-visible, .th-tile.is-cycling {
    background: rgba(232, 180, 168, 0.14);
    border-color: var(--bb-pink);
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(0,0,0,0.32);
    outline: none;
}
.th-tile.is-cycling .th-icon { background: var(--bb-pink); color: var(--bb-ink); }
/* On hover, kill the auto-cycle highlight so only the hovered tile glows */
.treatments-hover:hover .th-tile.is-cycling:not(:hover) {
    background: rgba(248, 243, 235, 0.06);
    border-color: rgba(248, 243, 235, 0.14);
    transform: none;
    box-shadow: none;
}
.th-tile .th-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(232, 180, 168, 0.22);
    color: var(--bb-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.15rem;
    transition: background 280ms ease;
}
.th-tile:hover .th-icon { background: var(--bb-pink); color: var(--bb-ink); }
.th-tile h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--bb-cream);
    margin-bottom: 4px;
    letter-spacing: 0;
    line-height: 1.2;
}
.th-tile p {
    font-size: 0.78rem;
    color: rgba(248,243,235,0.7);
    font-weight: 300;
    line-height: 1.4;
    margin: 0 0 14px;
}
.th-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding: 8px 14px;
    border: 1px solid rgba(232,180,168,0.6);
    border-radius: 999px;
    background: rgba(232,180,168,0.1);
    color: var(--bb-pink);
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
    align-self: flex-start;
}
.th-tile:hover .th-cta,
.th-tile:focus-visible .th-cta {
    background: var(--bb-pink);
    color: var(--bb-ink);
    border-color: var(--bb-pink);
}
.th-cta-row {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 12px;
}
.th-cta-row .btn { min-width: 220px; }

/* ---------- Membership Preview Card (home, above quiz) ---------- */
.membership-preview {
    background: linear-gradient(160deg, var(--bb-blush-soft) 0%, var(--bb-cream) 100%);
    padding: 100px 0;
}
.membership-preview .section-header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.membership-preview .section-header .eyebrow { color: var(--bb-pink-deep); }
.membership-preview .section-header h2 { color: var(--bb-ink); }
.membership-preview .section-header h2 .script { color: var(--bb-pink-deep); }
.membership-preview .section-header p { color: var(--bb-taupe); font-weight: 300; }
.mp-stage {
    background: var(--bb-white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-lift);
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    border: 1px solid var(--bb-line);
}
.mp-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--bb-pink) 0%, var(--bb-pink-deep) 100%);
    color: var(--bb-white);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-pink);
}
.mp-tier-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--bb-ink);
    text-align: center;
    margin-bottom: 6px;
    letter-spacing: 0;
}
.mp-tier-price {
    font-family: var(--font-display);
    font-size: 3.2rem;
    color: var(--bb-pink-deep);
    text-align: center;
    line-height: 1;
    margin-bottom: 4px;
}
.mp-tier-price small {
    font-size: 0.9rem;
    color: var(--bb-taupe);
    font-weight: 300;
    letter-spacing: 0.06em;
}
.mp-tagline {
    text-align: center;
    color: var(--bb-taupe);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 26px;
}
.mp-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 460px;
}
.mp-bullets li {
    padding: 8px 0;
    color: var(--bb-ink-soft);
    font-size: 0.94rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.mp-bullets li::before {
    content: '✦';
    color: var(--bb-pink-deep);
    flex-shrink: 0;
    margin-top: 2px;
}
.mp-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 22px;
}
.mp-tier-picker {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 22px;
    border-top: 1px solid var(--bb-line);
}
.mp-tier-btn {
    padding: 8px 14px;
    border: 1px solid var(--bb-line);
    border-radius: var(--radius-pill);
    background: var(--bb-cream);
    color: var(--bb-taupe);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 220ms ease;
}
.mp-tier-btn:hover { background: var(--bb-pink); color: var(--bb-white); border-color: var(--bb-pink); }
.mp-tier-btn.is-active { background: var(--bb-ink); color: var(--bb-cream); border-color: var(--bb-ink); }

/* ---------- Clinic gallery TikTok card ---------- */
.gallery-item.gallery-tiktok {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 100%);
    color: var(--bb-cream);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px 24px;
    text-decoration: none;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    transition: transform 380ms cubic-bezier(.2,.7,.3,1);
}
.gallery-item.gallery-tiktok:hover { transform: translateY(-4px); }
.gallery-item.gallery-tiktok::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255,0,128,0.18) 0%, transparent 60%),
                radial-gradient(circle at 30% 70%, rgba(0,200,255,0.15) 0%, transparent 60%);
    z-index: 1;
}
.gallery-item.gallery-tiktok > * { position: relative; z-index: 2; }
.gallery-item.gallery-tiktok .tt-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bb-cream);
}
.gallery-item.gallery-tiktok .tt-icon svg { width: 22px; height: 22px; fill: currentColor; }
.gallery-item.gallery-tiktok .handle { font-family: var(--font-display); font-size: 1.45rem; line-height: 1.1; margin-top: 18px; }
.gallery-item.gallery-tiktok .cta { font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--bb-pink); margin-top: auto; padding-top: 22px; }

/* ---------- About-page deeper-membership CTA section ---------- */
.about-memberships {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bb-blush-soft) 0%, var(--bb-cream) 100%);
}
.about-memberships .section-header { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.about-memberships .section-header .eyebrow { color: var(--bb-pink-deep); }
.about-memberships .section-header h2 { color: var(--bb-ink); }
.about-memberships .section-header h2 .script { color: var(--bb-pink-deep); }
.about-memberships .am-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 920px;
    margin: 0 auto 50px;
    text-align: center;
}
.about-memberships .am-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.9rem;
    color: var(--bb-pink-deep);
    line-height: 1.1;
    margin-bottom: 6px;
}
.about-memberships .am-stat span {
    font-size: 0.82rem;
    color: var(--bb-taupe);
    letter-spacing: 0.06em;
}
@media (max-width: 720px) { .about-memberships .am-stats { grid-template-columns: 1fr; } }
.about-memberships .am-tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    max-width: 960px;
    margin: 0 auto 30px;
}
@media (max-width: 920px) { .about-memberships .am-tiers { grid-template-columns: repeat(2, 1fr); } }
.am-tier {
    background: var(--bb-white);
    border: 1px solid var(--bb-line);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    transition: transform 220ms ease, box-shadow 220ms ease;
    position: relative;
    text-decoration: none;
    color: var(--bb-ink);
}
.am-tier:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.am-tier.is-popular { border: 2px solid var(--bb-pink); }
.am-tier .am-pill {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bb-pink-deep);
    color: var(--bb-white);
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}
.am-tier h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--bb-ink);
}
.am-tier .am-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--bb-pink-deep);
}
.am-tier .am-tagline {
    font-size: 0.78rem;
    color: var(--bb-taupe);
    margin: 6px 0 14px;
    line-height: 1.4;
    min-height: 38px;
}
.am-tier .am-link {
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bb-pink-deep);
    border-bottom: 1px solid var(--bb-pink);
    padding-bottom: 2px;
}
.am-compare-teaser {
    text-align: center;
    color: var(--bb-taupe);
    font-size: 0.95rem;
    margin: 20px auto 28px;
}
.am-compare-teaser a { color: var(--bb-pink-deep); border-bottom: 1px solid var(--bb-pink); }
.am-savings-line {
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.45rem;
    color: var(--bb-ink);
    margin: 0 auto 32px;
    max-width: 660px;
}
.am-savings-line strong { color: var(--bb-pink-deep); }
.am-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.am-fineprint { text-align: center; color: var(--bb-taupe); font-size: 0.78rem; max-width: 580px; margin: 0 auto; font-style: italic; }

/* ---------- Brand text utility refinements ---------- */
.about-text h2 { color: var(--bb-cream); }
.about-text h2 .rose-both { color: var(--bb-pink-deep); }
/* For the "Marissa Hartman" both-words pink rule */
.about-text h2 .marissa-pink { color: var(--bb-pink-deep); }
.about-text h2 .hartman-pink { color: var(--bb-pink-deep); }

.about-text .signature.tc {
    /* Title-case forced (text content actually says it, this is a safety net for font display) */
    text-transform: none;
}

/* ============================================================
   mem-preview — Home page membership preview card (4-tier picker)
   HTML built by parallel session; styles below.
   ============================================================ */
.mem-preview {
    padding: 100px 0;
    background: linear-gradient(160deg, var(--bb-blush-soft) 0%, var(--bb-cream) 100%);
}
.mem-preview .mp-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 920px) { .mem-preview .mp-grid { grid-template-columns: 1fr; gap: 40px; } }
.mp-text .eyebrow { color: var(--bb-pink-deep); }
.mp-text h2 { color: var(--bb-ink); margin-bottom: 16px; }
.mp-text h2 .script { color: var(--bb-pink-deep); }
.mp-text p { color: var(--bb-taupe); font-weight: 300; margin-bottom: 22px; max-width: 480px; }
.mp-text ul.mp-bullets { list-style: none; padding: 0; margin: 0 0 32px; max-width: 480px; }
.mp-text ul.mp-bullets li {
    padding: 8px 0;
    color: var(--bb-ink-soft);
    font-size: 0.94rem;
    line-height: 1.55;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.mp-text ul.mp-bullets li::before {
    content: '\2726';
    color: var(--bb-pink-deep);
    flex-shrink: 0;
    flex-grow: 0;
    margin-top: 3px;
    font-size: 0.85rem;
    display: inline-block;
    width: 14px;
    min-width: 14px;
    text-align: center;
    line-height: 1.4;
}
.mp-cta-stack { display: flex; gap: 12px; flex-wrap: wrap; }

.mp-pick { position: relative; }
.mp-card {
    background: var(--bb-white);
    border-radius: var(--radius-lg);
    /* 2026-06-05 round 2: top padding bumped 50→64 so MOST POPULAR badge has clean clearance */
    padding: 64px 36px 32px;
    box-shadow: var(--shadow-lift);
    border: 1px solid var(--bb-line);
    position: relative;
    text-align: center;
    /* overflow: hidden removed so badge isn't clipped — radius still rounds children visually */
}
.mp-card .mp-badge {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--bb-pink) 0%, var(--bb-pink-deep) 100%);
    color: var(--bb-white);
    padding: 10px 28px;
    border-radius: 0 0 18px 18px;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 6px 14px rgba(232,180,168,0.30);
}
.mp-card .mp-badge span {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.mp-card .mp-tier {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--bb-ink);
    margin-bottom: 6px;
}
.mp-card .mp-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
}
.mp-card .mp-amt {
    font-family: var(--font-display);
    font-size: 3.2rem;
    color: var(--bb-pink-deep);
    line-height: 1;
}
.mp-card .mp-per {
    font-size: 0.9rem;
    color: var(--bb-taupe);
    letter-spacing: 0.06em;
}
.mp-card .mp-tagline {
    color: var(--bb-taupe);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin: 0 0 22px;
}
.mp-card ul.mp-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 0;
    text-align: left;
    max-width: 320px;
}
.mp-card ul.mp-features li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--bb-line);
    color: var(--bb-ink-soft);
    font-size: 0.92rem;
    line-height: 1.45;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.mp-card ul.mp-features li:last-child { border-bottom: none; }
.mp-card ul.mp-features li::before {
    content: '\2713';
    color: var(--bb-pink-deep);
    flex-shrink: 0;
    flex-grow: 0;
    margin-top: 2px;
    font-weight: 700;
    display: inline-block;
    width: 16px;
    min-width: 16px;
    text-align: center;
    line-height: 1.4;
}
/* 2026-06-06: keep mem-preview content visible immediately — reveal animation
   was leaving the card faded/clipped on screenshots and slow scroll. */
.mem-preview .reveal,
.mem-preview .reveal-d1,
.mem-preview .reveal-d2,
.mem-preview .reveal-d3 {
    opacity: 1 !important;
    transform: none !important;
}
.mp-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 22px;
}
.mp-chip {
    padding: 8px 14px;
    border: 1px solid var(--bb-line);
    border-radius: var(--radius-pill);
    background: var(--bb-cream);
    color: var(--bb-taupe);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 220ms ease;
    font-family: inherit;
}
.mp-chip:hover { background: var(--bb-pink); color: var(--bb-white); border-color: var(--bb-pink); }
.mp-chip.is-active { background: var(--bb-ink); color: var(--bb-cream); border-color: var(--bb-ink); }

/* ============================================================
   Post-reviews sticky CTA — home page only.
   Slides in from the bottom-right once user scrolls past reviews.
   ============================================================ */
.post-reviews-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px 14px 18px;
    background: var(--bb-white);
    border: 1px solid var(--bb-pink);
    border-radius: 999px;
    text-decoration: none;
    color: var(--bb-ink);
    box-shadow: 0 18px 42px rgba(34,28,25,0.16), 0 0 0 4px rgba(232,180,168,0.18);
    max-width: 360px;
    transform: translateY(140%);
    opacity: 0;
    transition: transform 480ms cubic-bezier(.2,.7,.3,1), opacity 320ms ease, box-shadow 220ms ease;
    cursor: pointer;
}
.post-reviews-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
}
.post-reviews-cta:hover {
    box-shadow: 0 22px 52px rgba(232,180,168,0.36), 0 0 0 5px rgba(232,180,168,0.22);
}
.post-reviews-cta .prc-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--bb-white);
    color: var(--bb-pink-deep);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
}
/* Logo variant — Marissa's logo, no gradient circle */
.post-reviews-cta .prc-icon-logo {
    background: transparent;
    padding: 0;
    box-shadow: none;
    width: 56px; height: 56px;
    border-radius: 0;
}
.post-reviews-cta .prc-icon-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(34, 28, 25, 0.18));
}
.post-reviews-cta .prc-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.25; }
.post-reviews-cta .prc-text strong {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--bb-ink);
    font-weight: 500;
    letter-spacing: 0;
}
.post-reviews-cta .prc-text span {
    font-size: 0.78rem;
    color: var(--bb-pink-deep);
    letter-spacing: 0.02em;
}
.post-reviews-cta .prc-close {
    position: absolute;
    top: -10px;
    right: -8px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--bb-ink);
    color: var(--bb-cream);
    border: 0;
    cursor: pointer;
    font-size: 1.05rem;
    line-height: 1;
    padding: 0;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
    transition: transform 180ms ease, background 180ms ease;
}
.post-reviews-cta .prc-close:hover { transform: scale(1.08); background: var(--bb-pink-deep); }

/* ============================================================
   Treatment-page Membership Cross-Sell strip — same vibe everywhere.
   Sits between AREAS-SERVED and DEEP-DIVE-BODY on each treatment page.
   ============================================================ */
.tx-mem-strip {
    position: relative;
    padding: 70px 0;
    background: linear-gradient(135deg, var(--bb-ink) 0%, #2b211d 100%);
    color: var(--bb-cream);
    overflow: hidden;
}
.tx-mem-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 25% 30%, rgba(232,180,168,0.18) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 70%, rgba(232,180,168,0.10) 0%, transparent 50%);
    pointer-events: none;
}
.tx-mem-strip > .container { position: relative; z-index: 1; }
.tx-mem-strip .tms-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
}
@media (max-width: 880px) { .tx-mem-strip .tms-grid { grid-template-columns: 1fr; gap: 28px; } }
.tx-mem-strip .tms-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--bb-pink);
    font-weight: 600;
}
.tx-mem-strip h2 {
    font-family: var(--font-display);
    font-size: clamp(2.0rem, 4vw, 3.2rem);
    line-height: 1.05;
    color: var(--bb-cream);
    margin: 10px 0 18px;
    letter-spacing: 0;
}
.tx-mem-strip h2 .script { color: var(--bb-pink); font-style: italic; }
.tx-mem-strip p {
    color: rgba(248,243,235,0.86);
    font-weight: 300;
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 540px;
    margin: 0 0 26px;
}
.tx-mem-strip .tms-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.tx-mem-strip .tms-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.tx-mem-strip .tms-stat {
    background: rgba(248,243,235,0.06);
    border: 1px solid rgba(248,243,235,0.14);
    border-radius: var(--radius-md);
    padding: 22px 20px;
    text-align: center;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.tx-mem-strip .tms-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--bb-pink);
    line-height: 1;
    margin-bottom: 6px;
}
.tx-mem-strip .tms-stat span {
    font-size: 0.74rem;
    color: rgba(248,243,235,0.78);
    letter-spacing: 0.06em;
    line-height: 1.4;
    display: block;
}
@media (max-width: 600px) {
    .post-reviews-cta {
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: none;
        padding: 12px 18px 12px 14px;
        gap: 11px;
    }
    .post-reviews-cta .prc-text strong { font-size: 0.94rem; }
    .post-reviews-cta .prc-text span { font-size: 0.72rem; }
}

/* ============================================================
   Boujee Parties + Guides — How It Works face-lift
   2026-06-06
   ============================================================ */
.parties-howitworks,
.guides-howitworks {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--bb-cream, #f8f3eb);
}
.parties-howitworks .ph-bg,
.guides-howitworks  .ph-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    z-index: 1;
    filter: saturate(0.95) brightness(1.04);
}
.parties-howitworks .ph-overlay,
.guides-howitworks  .ph-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(253,246,241,0.72) 0%, rgba(248,233,226,0.86) 100%);
    z-index: 2;
}
.parties-howitworks > .container,
.guides-howitworks  > .container { position: relative; z-index: 3; }

/* Steps — pink theme overrides */
.steps-grid.parties-steps,
.steps-grid.guides-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
}
.step-card.pink {
    background: rgba(255,255,255,0.86);
    border-radius: var(--radius-lg, 14px);
    padding: 32px 24px;
    box-shadow: 0 14px 32px rgba(34,28,25,0.10);
    border-top: 4px solid var(--bb-pink-deep);
    text-align: left;
    transition: transform 220ms ease, box-shadow 220ms ease;
}
.step-card.pink:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(34,28,25,0.16);
}
.step-card.pink .step-num {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--bb-pink-deep);
}
.step-card.pink .step-num svg {
    width: 28px;
    height: 28px;
    fill: var(--bb-pink-deep);
}
.step-card.pink .step-num .sn-label {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--bb-pink-deep);
    letter-spacing: 0.06em;
}
.step-card.pink h3 {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.25rem;
    color: var(--bb-ink);
    margin-bottom: 10px;
    line-height: 1.2;
}
.step-card.pink p {
    color: var(--bb-taupe);
    font-size: 0.94rem;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 820px) {
    .steps-grid.parties-steps,
    .steps-grid.guides-steps { grid-template-columns: 1fr; }
}

/* Parties — pink button overrides for buttons that were gold */
.parties-howitworks .btn-gold,
.parties-menu-cyc .btn-gold,
.boujee-parties-page .btn-gold {
    background: linear-gradient(135deg, var(--bb-pink) 0%, var(--bb-pink-deep) 100%) !important;
    color: var(--bb-cream) !important;
    box-shadow: 0 12px 26px rgba(212, 165, 165, 0.42) !important;
}
.parties-howitworks .btn-gold:hover,
.parties-menu-cyc .btn-gold:hover,
.boujee-parties-page .btn-gold:hover {
    filter: brightness(1.06);
}

/* Parties menu — cycling backgrounds card */
.parties-menu-cyc {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--bb-ink);
}
.parties-menu-cyc .pmc-bg-layer {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 800ms ease;
    z-index: 1;
    opacity: 0;
}
.parties-menu-cyc .pmc-bg-layer.is-active { opacity: 0.38; z-index: 2; }
.parties-menu-cyc .pmc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34,28,25,0.7) 0%, rgba(34,28,25,0.86) 100%);
    z-index: 3;
}
.parties-menu-cyc > .container { position: relative; z-index: 4; }

/* ============================================================
   Membership tier pages — face-lift block (sweep #15)
   .tier-faceplate sits before the CTA band.
   ============================================================ */
.tier-faceplate {
    background: linear-gradient(180deg, var(--bb-cream, #f8f3eb) 0%, var(--bb-cream-soft, #fdf7ef) 100%);
    padding: 86px 0;
}
.tier-faceplate .tier-faceplate-grid {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 56px;
    align-items: center;
}
.tier-faceplate .tfp-text h2 {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    color: var(--bb-ink);
    margin: 8px 0 18px;
    line-height: 1.15;
}
.tier-faceplate .tfp-text p {
    color: var(--bb-ink-soft);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
}
.tier-faceplate .tfp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 26px;
    padding-top: 26px;
    border-top: 1px solid rgba(34,28,25,0.10);
}
.tier-faceplate .tfp-stat strong {
    display: block;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 2rem;
    color: var(--bb-pink-deep);
    line-height: 1;
    margin-bottom: 6px;
}
.tier-faceplate .tfp-stat span {
    font-size: 0.78rem;
    color: var(--bb-taupe);
    letter-spacing: 0.04em;
}
.tier-faceplate .tfp-photo-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
}
.tier-faceplate .tfp-photo-main {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(34,28,25,0.22);
}
.tier-faceplate .tfp-photo-main img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.tier-faceplate .tfp-photo-corner {
    position: absolute;
    bottom: -36px;
    left: -28px;
    width: 44%;
    aspect-ratio: 1 / 1.1;
    border-radius: var(--radius-lg, 16px);
    overflow: hidden;
    box-shadow: 0 22px 44px rgba(34,28,25,0.28);
    border: 4px solid var(--bb-cream, #f8f3eb);
}
.tier-faceplate .tfp-photo-corner img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.tier-faceplate .tfp-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 64px;
}
.tier-faceplate .tfp-trio-img {
    border-radius: var(--radius-md, 12px);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 14px 30px rgba(34,28,25,0.14);
}
.tier-faceplate .tfp-trio-img img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    transition: transform 480ms ease;
}
.tier-faceplate .tfp-trio-img:hover img { transform: scale(1.05); }
@media (max-width: 880px) {
    .tier-faceplate .tier-faceplate-grid { grid-template-columns: 1fr; gap: 40px; }
    .tier-faceplate .tfp-photo-corner { bottom: -22px; left: -16px; width: 38%; }
    .tier-faceplate .tfp-trio { margin-top: 40px; gap: 10px; }
    .tier-faceplate .tfp-stats { gap: 12px; }
    .tier-faceplate .tfp-stat strong { font-size: 1.5rem; }
}

/* ============================================================
   About page — "The Story" section mobile fix.
   The FNP-C badge was overflowing the image card on phones and
   squeezing copy. Constrain badge size + reflow grid on mobile.
   2026-06-06
   ============================================================ */
@media (max-width: 720px) {
    .about-img-badge {
        padding: 8px 14px;
        right: 4%;
        bottom: -2px;
        transform: rotate(-2deg) scale(0.86);
        transform-origin: bottom right;
    }
    .about-img-badge strong { font-size: 1.05rem; }
    .about-img-badge span   { font-size: 0.52rem; letter-spacing: 0.16em; }
    .about-img-wrap         { padding: 8px; }
    .about-img-wrap img     { max-width: 100%; }
}
@media (max-width: 500px) {
    .about-img-badge {
        right: 2%;
        bottom: -10px;
        transform: rotate(-2deg) scale(0.74);
    }
}

/* ============================================================
   "Why Choose The Boujee Blonde?" block — reusable
   Six bullets + Schedule CTA. Drop on home, about, treatment pages.
   2026-06-06
   ============================================================ */
.why-choose-bb {
    background: linear-gradient(180deg, var(--bb-cream-soft, #fbf5ed) 0%, var(--bb-cream, #f8f3eb) 100%);
    padding: 78px 0;
}
.why-choose-bb .wcb-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.why-choose-bb .wcb-text .eyebrow { color: var(--bb-pink-deep); }
.why-choose-bb h2 {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--bb-ink);
    margin: 6px 0 18px;
}
.why-choose-bb h2 .script {
    font-family: 'Allura', cursive;
    color: var(--bb-pink-deep);
    font-style: italic;
    font-size: 1.2em;
    margin-left: 4px;
}
.why-choose-bb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 28px;
}
.why-choose-bb ul li {
    position: relative;
    padding-left: 28px;
    color: var(--bb-ink);
    font-size: 0.98rem;
    line-height: 1.45;
}
.why-choose-bb ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--bb-pink-deep);
    font-size: 1.1rem;
}
.why-choose-bb .wcb-cta {
    margin-top: 28px;
}
.why-choose-bb .wcb-img {
    border-radius: var(--radius-lg, 14px);
    overflow: hidden;
    box-shadow: 0 22px 50px rgba(34,28,25,0.18);
    aspect-ratio: 4 / 5;
}
.why-choose-bb .wcb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 860px) {
    .why-choose-bb .wcb-inner { grid-template-columns: 1fr; gap: 32px; }
    .why-choose-bb ul         { grid-template-columns: 1fr; gap: 10px; }
}

/* ---------- Why Choose: background-photo variant (home page, 2026-06-06b) ---------- */
.why-choose-bb.is-bg-photo {
    position: relative;
    isolation: isolate;
    padding: 120px 0 130px;
    background: var(--bb-ink);
    overflow: hidden;
}
.why-choose-bb.is-bg-photo .wcb-bg {
    position: absolute;
    inset: 0;
    background-image: var(--wcb-bg);
    background-size: cover;
    background-position: center 28%;
    z-index: 0;
    transform: scale(1.04);
    will-change: transform;
}
.why-choose-bb.is-bg-photo .wcb-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(34,28,25,0.62) 0%, rgba(34,28,25,0.78) 60%, rgba(34,28,25,0.88) 100%);
    z-index: 1;
}
.why-choose-bb.is-bg-photo > .container {
    position: relative;
    z-index: 2;
}
.why-choose-bb.is-bg-photo .wcb-inner.is-centered {
    grid-template-columns: 1fr;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.why-choose-bb.is-bg-photo .wcb-text .eyebrow { color: var(--bb-pink); }
.why-choose-bb.is-bg-photo h2 {
    color: var(--bb-cream);
    margin-bottom: 28px;
}
.why-choose-bb.is-bg-photo h2 .script { color: var(--bb-pink); }
.why-choose-bb.is-bg-photo ul {
    grid-template-columns: 1fr 1fr;
    gap: 14px 36px;
    margin-top: 8px;
    text-align: left;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.why-choose-bb.is-bg-photo ul li {
    color: var(--bb-cream);
    font-weight: 300;
}
.why-choose-bb.is-bg-photo ul li::before { color: var(--bb-pink); }
.why-choose-bb.is-bg-photo .wcb-cta { margin-top: 36px; }
@media (max-width: 720px) {
    .why-choose-bb.is-bg-photo { padding: 80px 0 90px; }
    .why-choose-bb.is-bg-photo ul { grid-template-columns: 1fr; gap: 10px; text-align: left; padding-left: 12px; }
}

/* ============================================================
   Services page — "View Details" CTA row beside Booking
   2026-06-06
   ============================================================ */
.svc-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}
.svc-cta-row .btn { margin-top: 0; }

/* ============================================================
   Treatment page — "A closer look" section visual upgrade
   2026-06-06 (sweep #11)
   .deep-body.has-cl-bg gets a soft tinted background image,
   .cl-photo-row appends a 3-photo strip at the end.
   ============================================================ */
.deep-body.has-cl-bg {
    position: relative;
    background-color: var(--bb-cream-soft, #fbf5ed);
    overflow: hidden;
}
.deep-body.has-cl-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--cl-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}
.deep-body.has-cl-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(248,237,229,0.90) 100%);
    z-index: 1;
    pointer-events: none;
}
.deep-body.has-cl-bg > .container { position: relative; z-index: 2; }

.cl-photo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 44px;
}
.cl-photo {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(34,28,25,0.12);
    aspect-ratio: 4 / 5;
    background: var(--bb-cream);
}
.cl-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 480ms ease;
}
.cl-photo:hover img { transform: scale(1.04); }
@media (max-width: 720px) {
    .cl-photo-row { grid-template-columns: 1fr 1fr; gap: 12px; }
    .cl-photo-c { display: none; }
}
/* Bind data-cl-bg attribute to CSS variable */
.deep-body.has-cl-bg[data-cl-bg] { --cl-bg: url('./../assets/boujee-sign-hero.jpg'); }

/* ============================================================
   Hero cinematic boot — 2026-06-06 (revised).
   data-hero-state="locked"  → SPLASH: video is fullscreen FRONT, no darkening, no content, no scroll
   data-hero-state="open"    → video drops to background (darkened), CTAs/scroll cascade in
   .hero-locked on <html> + <body> → block scrolling
   ============================================================ */
html.hero-locked, body.hero-locked {
    overflow: hidden !important;
    height: 100vh;
    height: 100svh;
    touch-action: none;
}
.hero-cinematic {
    position: relative;
}
/* Splash phase: section can't clip the fixed-fullscreen video */
.hero-cinematic[data-hero-state="locked"] { overflow: visible; }
/* Open phase: keep the original clip so the background video doesn't bleed past the section edges */
.hero-cinematic[data-hero-state="open"] { overflow: hidden; }
.hero-cinematic .hero-overlay {
    transition: opacity 900ms ease;
}

/* ---------- LOCKED (splash) — video is FULL SCREEN, FRONT, undarkened ---------- */
.hero-cinematic[data-hero-state="locked"] .hero-video {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100svh;
    z-index: 9999;
    background: #000;
    object-fit: cover;          /* desktop landscape — fills viewport cleanly */
    object-position: center center;
}
/* Mobile / portrait — zoom landscape into a centered 3:4 portrait frame.
   The fixed black backdrop fills the rest of the screen so nothing peeks through. */
@media (max-width: 820px), (orientation: portrait) {
    .hero-cinematic[data-hero-state="locked"]::after {
        content: "";
        position: fixed;
        inset: 0;
        background: #000;
        z-index: 9998;
        pointer-events: none;
    }
    .hero-cinematic[data-hero-state="locked"] .hero-video {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: 100vw;
        height: auto;
        max-height: 100vh;
        max-height: 100svh;
        aspect-ratio: 3 / 4;
        object-fit: cover;
        object-position: center center;
        z-index: 9999;
    }
}
/* Splash kills darkening overlay + poster pseudo-element + scroll cue */
.hero-cinematic[data-hero-state="locked"] .hero-overlay { opacity: 0 !important; }
.hero-cinematic[data-hero-state="locked"]::before { opacity: 0 !important; }
/* Hide nav + trust strip + everything behind the splash so nothing peeks through letterbox bars */
html.hero-locked .nav,
html.hero-locked .trust-strip { opacity: 0; pointer-events: none; }
/* Splash hides ALL hero text/CTAs */
.hero-cinematic[data-hero-state="locked"] .hero-ctas,
.hero-cinematic[data-hero-state="locked"] .hero-meta,
.hero-cinematic[data-hero-state="locked"] .hero-hi,
.hero-cinematic[data-hero-state="locked"] h1,
.hero-cinematic[data-hero-state="locked"] .lede,
.hero-cinematic[data-hero-state="locked"] .hero-scroll-cue {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 900ms ease, transform 900ms ease;
    pointer-events: none;
}

/* ---------- OPEN — video drops to background, content cascades in ---------- */
.hero-cinematic[data-hero-state="open"] .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: transparent;
    object-fit: cover;
    transition: opacity 500ms ease;
}
.hero-cinematic[data-hero-state="open"] .hero-overlay { opacity: 1; }
.hero-cinematic[data-hero-state="open"] .hero-ctas,
.hero-cinematic[data-hero-state="open"] .hero-meta,
.hero-cinematic[data-hero-state="open"] .hero-hi,
.hero-cinematic[data-hero-state="open"] h1,
.hero-cinematic[data-hero-state="open"] .lede,
.hero-cinematic[data-hero-state="open"] .hero-scroll-cue {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 900ms ease, transform 900ms ease;
    pointer-events: auto;
}
/* Re-enable nav + trust strip when splash ends */
html:not(.hero-locked) .nav,
html:not(.hero-locked) .trust-strip { transition: opacity 600ms ease; opacity: 1; }

/* Slightly delayed cascade — feels more cinematic */
.hero-cinematic[data-hero-state="open"] .hero-hi   { transition-delay: 80ms; }
.hero-cinematic[data-hero-state="open"] h1         { transition-delay: 180ms; }
.hero-cinematic[data-hero-state="open"] .lede      { transition-delay: 320ms; }
.hero-cinematic[data-hero-state="open"] .hero-ctas { transition-delay: 480ms; }
.hero-cinematic[data-hero-state="open"] .hero-meta { transition-delay: 620ms; }
.hero-cinematic[data-hero-state="open"] .hero-scroll-cue { transition-delay: 780ms; }

/* ============================================================
   Gallery — combined social card (IG / TT / FB / YT)
   Replaces the old separate gallery-ig + gallery-tiktok cards.
   2026-06-06
   ============================================================ */
.gallery-item.gallery-social {
    background: linear-gradient(155deg, #fdf6f1 0%, #f3d9ce 55%, #d4a5a5 100%);
    color: var(--bb-ink);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 22px;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(212, 165, 165, 0.32);
    text-decoration: none;
    transition: transform 220ms ease, box-shadow 220ms ease;
}
.gallery-item.gallery-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(34,28,25,0.18), inset 0 0 0 1px rgba(212,165,165,0.48);
}
.gallery-item.gallery-social .gs-eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--bb-pink-deep);
    font-weight: 600;
    margin-bottom: 6px;
}
.gallery-item.gallery-social .gs-handle {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-style: italic;
    font-size: 1.45rem;
    color: var(--bb-ink);
    margin-bottom: 16px;
    line-height: 1.1;
}
.gallery-item.gallery-social .gs-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery-item.gallery-social .gs-row a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(34,28,25,0.10);
    transition: transform 180ms ease, background 180ms ease;
}
.gallery-item.gallery-social .gs-row a:hover {
    background: var(--bb-pink-deep);
    transform: translateY(-2px);
}
.gallery-item.gallery-social .gs-row a svg {
    width: 22px;
    height: 22px;
    fill: var(--bb-pink-deep);
    transition: fill 180ms ease;
}
.gallery-item.gallery-social .gs-row a:hover svg { fill: #fff; }
.gallery-item.gallery-social .gs-cta {
    font-size: 0.78rem;
    color: var(--bb-pink-deep);
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ============================================================
   Memberships calculator — clarity additions (Will 23:06 round 3)
   ============================================================ */
.mp-calc-how {
    max-width: 740px;
    margin: 0 auto 40px;
    background: var(--bb-white);
    border: 1px solid var(--bb-line);
    border-left: 3px solid var(--bb-pink);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    font-size: 0.94rem;
    color: var(--bb-ink-soft);
    box-shadow: var(--shadow-soft);
}
.mp-calc-how summary {
    cursor: pointer;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--bb-ink);
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    padding: 4px 0;
}
.mp-calc-how summary::-webkit-details-marker { display: none; }
.mp-calc-how .mp-calc-how-arrow {
    color: var(--bb-pink-deep);
    transition: transform 220ms ease;
    font-size: 0.9rem;
}
.mp-calc-how[open] .mp-calc-how-arrow { transform: rotate(180deg); }
.mp-calc-how ol {
    margin: 18px 0 6px 22px;
    padding: 0;
}
.mp-calc-how ol li {
    padding: 6px 0;
    line-height: 1.55;
    color: var(--bb-ink-soft);
}
.mp-calc-how ol li strong { color: var(--bb-pink-deep); }

.mp-calc-step-sub {
    margin: 4px 0 0 0;
    font-size: 0.86rem;
    color: var(--bb-taupe);
    font-style: italic;
    line-height: 1.45;
}
.mp-calc-alc-sub {
    margin: -10px 0 8px 0;
    font-size: 0.78rem;
    color: var(--bb-taupe);
    text-align: center;
    letter-spacing: 0.02em;
}

/* Larger, callout-style winner sentence */
.mp-calc-winner {
    background: linear-gradient(135deg, rgba(232,180,168,0.22) 0%, rgba(248,243,235,0.5) 100%);
    border: 1px solid var(--bb-pink);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    margin: 22px 0 14px;
    font-size: 1.04rem;
    line-height: 1.5;
    color: var(--bb-ink);
    box-shadow: 0 4px 14px rgba(232,180,168,0.18);
}
.mp-calc-winner strong { color: var(--bb-pink-deep); font-weight: 600; }
.mp-calc-winner:empty { display: none; }

/* 23:06 round 3: the TL;DR explainer line above the sliders */
.mp-calc-tldr {
    background: var(--bb-blush-soft);
    border-left: 3px solid var(--bb-pink);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--bb-ink-soft);
    max-width: 720px;
    margin: 14px auto 0;
    text-align: left;
}
.mp-calc-tldr strong { color: var(--bb-pink-deep); font-weight: 600; }

/* About / generic Book CTA: stacked button group */
.book-cta-stack { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.book-cta-stack .btn { min-width: 240px; }

/* "✨ Best fit for your year" badge stamped on the winning row */
.mp-winner-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--bb-pink) 0%, var(--bb-pink-deep) 100%);
    color: var(--bb-white);
    border-radius: var(--radius-pill);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(232,180,168,0.34);
}
.mp-calc-table tr.is-winner {
    background: linear-gradient(135deg, rgba(232,180,168,0.18) 0%, rgba(248,243,235,0.6) 100%);
    box-shadow: inset 0 0 0 1.5px var(--bb-pink);
}
.mp-calc-table tr.is-winner th,
.mp-calc-table tr.is-winner td { font-weight: 600; }

/* Color tokens for save/overpay copy */
.mp-pos { color: #2d8659; font-weight: 600; }
.mp-neg { color: #b8485c; font-weight: 500; }
.mp-flat { color: var(--bb-taupe); font-style: italic; }

/* ============================================================
   2026-06-06: kill legacy .mp-features absolute ::before that was
   leaking through from site.css and overlapping flex bullets on
   the home Boujee Blonde Membership preview. Force flex-only.
   ============================================================ */
.mem-preview .mp-card ul.mp-features li {
    position: static !important;
    padding-left: 0 !important;
    display: flex !important;
    gap: 10px !important;
    align-items: flex-start !important;
}
.mem-preview .mp-card ul.mp-features li::before {
    position: static !important;
    left: auto !important;
    top: auto !important;
    flex-shrink: 0 !important;
}
.mem-preview .mp-text ul.mp-bullets li {
    position: static !important;
    padding-left: 0 !important;
}
.mem-preview .mp-text ul.mp-bullets li::before {
    position: static !important;
    left: auto !important;
    top: auto !important;
}

/* Quiz-card style hint: the popup is matched to .qt-card width. */

/* ===================================================================
   Image-quality enhancements 2026-06-06
   - high-quality scaling hints across browsers
   - tighter backing-store for retina screens
   - aspect-ratio preservation
   =================================================================== */
img {
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: high-quality;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
}

/* Photos that are background-image based — ensure crisp render */
.section-bg,
.about-bg,
.tier-hero-bg,
.page-hero-bg,
.ph-bg,
.pmc-bg-layer,
.th-bg-layer,
.cl-bg-layer,
[data-parallax] {
    background-size: cover !important;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform;
}

/* Gallery items need crisp object-fit + no over-compression artifacts */
.gallery-item img,
.svc-row-img img,
.related-img,
.tier-split-photo img,
.fc-img img {
    image-rendering: -webkit-optimize-contrast;
}
