﻿/* ---------- Tokens ---------- */
:root{
  --bg: #080709;
  --bg-soft: #111018;
  --bg-card: #14111a;
  --bg-card-2: #1a1620;

  --line: rgba(212,175,55,.18);
  --line-strong: rgba(212,175,55,.42);

  --gold-1: #f8e9b8;
  --gold-2: #d4af37;
  --gold-3: #9c6b14;
  --gold-grad: linear-gradient(115deg, var(--gold-1) 0%, var(--gold-2) 45%, var(--gold-3) 100%);

  --pink-1: #ff8ad4;
  --pink-2: #ec1e93;
  --pink-3: #9c0f5f;
  --pink-grad: linear-gradient(115deg, var(--pink-1) 0%, var(--pink-2) 60%, var(--pink-3) 100%);

  --cream: #f5efe2;
  --muted: #b6ada2;
  --muted-2: #7e7871;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 30px 80px -30px rgba(0,0,0,.8);
  --shadow-gold: 0 0 40px -10px rgba(212,175,55,.12);
  --font-display: "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background:
    radial-gradient(ellipse 1000px 600px at 12% 0%, rgba(236,30,147,.09), transparent 60%),
    radial-gradient(ellipse 1000px 700px at 90% 0%, rgba(212,175,55,.10), transparent 55%),
    radial-gradient(ellipse 900px 700px at 80% 50%, rgba(120,60,180,.06), transparent 60%),
    radial-gradient(ellipse 800px 600px at 10% 55%, rgba(212,175,55,.05), transparent 60%),
    radial-gradient(ellipse 600px 400px at 50% 100%, rgba(156,107,20,.08), transparent 60%),
    var(--bg);
  background-attachment: fixed;
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle luxury grain */
body::after{
  content:"";
  position:fixed; inset:0; z-index:0; pointer-events:none;
  opacity:.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight:700; margin:0; letter-spacing:-0.5px; }
h1{ letter-spacing:-1.5px; }
h2{ letter-spacing:-0.8px; }
h3{ letter-spacing:-0.4px; }
h2{ letter-spacing:0px; }
p{ margin:0; line-height:1.78; color:var(--muted); letter-spacing:0.01em; }
::selection{ background: var(--pink-2); color:#fff; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline: 2px solid var(--pink-1); outline-offset: 3px; border-radius: 4px; }

.wrap{ max-width:1180px; margin:0 auto; padding:0 28px; }
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--font-body); font-weight:600; font-size:11.5px;
  letter-spacing:3.5px; text-transform:uppercase; color: var(--gold-1);
}
.eyebrow::before{ content:""; width:26px; height:1px; background: var(--gold-grad); }

.gold-text{
  background: var(--gold-grad);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.pink-text{
  background: var(--pink-grad);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:16px 38px; border-radius: 999px; font-family: var(--font-body);
  font-weight:600; font-size:12px; letter-spacing:2.8px; cursor:pointer; text-transform:uppercase;
  border:1px solid transparent;
  transition: transform .32s cubic-bezier(.22,1,.36,1), box-shadow .32s ease, filter .25s ease, background .25s ease;
  white-space:nowrap; position:relative; overflow:hidden;
}
/* shimmer sweep on hover */
.btn::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn:hover::before{ transform: translateX(120%); }
.btn:hover{ transform: translateY(-3px); }
.btn-fanvue{
  background: var(--pink-grad); color:#fff;
  box-shadow: 0 10px 36px -12px rgba(236,30,147,.65), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-fanvue:hover{
  filter:brightness(1.08);
  box-shadow: 0 20px 54px -10px rgba(236,30,147,.85), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn-ghost{
  background: transparent; color: var(--gold-1);
  border: 1px solid rgba(212,175,55,.4);
}
.btn-ghost:hover{
  background: rgba(212,175,55,.07);
  border-color: rgba(212,175,55,.85);
  box-shadow: 0 0 22px -6px rgba(212,175,55,.35), inset 0 0 18px -12px rgba(212,175,55,.12);
}
.btn-sm{ padding:11px 26px; font-size:11px; letter-spacing:2.4px; }

/* ---------- Header ---------- */
.site-header{
  position:sticky; top:0; z-index:60;
  backdrop-filter: blur(20px) saturate(160%);
  background: rgba(8,7,9,.78);
  border-bottom:1px solid var(--line);
}
/* Gold luxury top line */
.site-header::before{
  content:""; position:absolute; top:0; left:0; right:0; height:1px;
  background: var(--gold-grad); opacity:.7;
}
.site-header .wrap{ display:flex; align-items:center; justify-content:space-between; gap:22px; padding-top:14px; padding-bottom:14px; }
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand img{
  height:44px; width:auto; max-width:none;
  flex-shrink:0;
  transition: filter .35s ease, transform .35s ease;
  filter: drop-shadow(0 2px 8px rgba(212,175,55,.15));
}
.brand:hover img{
  filter: drop-shadow(0 0 18px rgba(212,175,55,.55)) drop-shadow(0 2px 6px rgba(0,0,0,.4));
  transform: scale(1.03);
}
.brand-word{ display:none; }
nav.main-nav{ display:flex; align-items:center; gap:28px; }
nav.main-nav a{
  font-size:13px; font-weight:700; letter-spacing:1.2px; text-transform:uppercase;
  color: var(--muted); transition: color .2s ease; position:relative; padding:4px 0;
}
nav.main-nav a:hover, nav.main-nav a.active{ color: var(--cream); }
nav.main-nav a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background: var(--pink-grad);
}
.header-cta{ display:flex; align-items:center; gap:14px; }
.header-fanvue-wrap{ display:flex; flex-direction:column; align-items:center; gap:4px; }
.header-deal-badge{
  font-size:8px; font-weight:700; letter-spacing:1.8px; text-transform:uppercase;
  color:var(--gold-1); white-space:nowrap; opacity:.9;
}
.social-mini{ display:flex; gap:12px; }
.social-mini a{ color: var(--gold-1); opacity:.8; transition: opacity .2s, transform .2s; }
.social-mini a:hover{ opacity:1; transform: translateY(-2px); }

.nav-toggle{ display:none; background:none; border:1px solid var(--line-strong); border-radius:10px; width:42px; height:38px; color:var(--gold-1); cursor:pointer; align-items:center; justify-content:center; }

@media (max-width: 960px){
  nav.main-nav{
    position:fixed; inset: 70px 0 0 0; height:calc(100vh - 70px);
    flex-direction:column; justify-content:flex-start; padding:36px 28px; gap:28px;
    background: rgba(8,7,9,.98); transform: translateX(100%); transition: transform .35s ease;
    overflow-y:auto; border-left:1px solid var(--line);
  }
  nav.main-nav.open{ transform: translateX(0); }
  nav.main-nav a{ font-size:16px; }
  .header-cta .btn-ghost{ display:none; }
  .header-deal-badge{ display:none; }
  .nav-toggle{ display:flex; }
}

@media (max-width: 600px){
  .social-mini{ display:none; }
  .brand img{ height:38px; }
  .header-fanvue-wrap .btn-fanvue{ font-size:11px; padding:8px 14px; letter-spacing:.4px; }
}
@media (max-width: 480px){
  .header-fanvue-wrap{ display:none; }
}

/* ---------- Footer ---------- */
.site-footer{ border-top:1px solid var(--line); margin-top:60px; padding:70px 0 30px; position:relative; }
.site-footer::before{
  content:""; position:absolute; top:0; left:10%; right:10%; height:1px;
  background: var(--gold-grad); opacity:.3;
}
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap:40px; }
.footer-brand img{ height:50px; margin-bottom:18px; filter: drop-shadow(0 2px 10px rgba(212,175,55,.2)); }
.footer-brand p{ max-width:280px; font-size:14px; }
.footer-col h5{ font-family: var(--font-body); font-size:11.5px; letter-spacing:2px; text-transform:uppercase; color:var(--gold-1); margin-bottom:16px; }
.footer-col a{ display:block; font-size:14.5px; color: var(--muted); padding:6px 0; transition: color .2s ease; }
.footer-col a:hover{ color: var(--cream); }
.footer-social{ display:flex; gap:14px; margin-top:10px; }
.footer-social a{ width:40px; height:40px; border-radius:50%; border:1px solid var(--line-strong); display:flex; align-items:center; justify-content:center; color:var(--gold-1); transition: all .25s ease; font-size:12px; font-weight:800; }
.footer-social a:hover{ background: var(--gold-2); color:#0b0a0d; transform:translateY(-3px); box-shadow: 0 8px 24px -6px rgba(212,175,55,.5); }
.footer-bottom{ margin-top:60px; padding-top:26px; border-top:1px solid rgba(255,255,255,.05); display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; }
.footer-bottom p{ font-size:12.5px; color: var(--muted-2); max-width:720px; }
.footer-legal-links{ display:flex; gap:18px; flex-wrap:wrap; }
.footer-legal-links a{ font-size:12.5px; color: var(--muted-2); }
.footer-legal-links a:hover{ color: var(--gold-1); }

@media (max-width: 860px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .footer-grid{ grid-template-columns: 1fr; }
  .footer-brand img{ height:44px; }
}

/* ---------- Cookie banner ---------- */
#cookie-banner{
  position:fixed; left:20px; right:20px; bottom:20px; z-index:200;
  max-width:640px; margin:0 auto;
  background: linear-gradient(180deg, #1c1822, #131019);
  border:1px solid var(--line-strong); border-radius: var(--radius-md);
  padding:22px 24px; box-shadow: var(--shadow-soft);
  transform: translateY(140%); transition: transform .5s cubic-bezier(.2,.9,.25,1);
}
#cookie-banner.show{ transform: translateY(0); }
#cookie-banner h4{ font-size:16px; margin-bottom:8px; }
#cookie-banner p{ font-size:13px; margin-bottom:16px; }
#cookie-banner p a{ color: var(--gold-1); text-decoration:underline; }
.cookie-actions{ display:flex; flex-wrap:wrap; gap:10px; }

/* ---------- Age gate ---------- */
#age-gate{
  position:fixed; inset:0; z-index:500; display:flex; align-items:center; justify-content:center;
  background: rgba(4,3,6,.95); backdrop-filter: blur(14px); padding:20px;
}
#age-gate.hidden{ display:none; }
.age-card{
  max-width:440px; width:100%; text-align:center; padding:48px 36px;
  background: linear-gradient(180deg, #1e1a26, #100e15); border:1px solid var(--line-strong);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-soft), 0 0 60px -20px rgba(212,175,55,.15);
}
.age-card img{ height:50px; margin:0 auto 24px; filter: drop-shadow(0 0 14px rgba(212,175,55,.35)); }
.age-card h3{ font-size:26px; margin-bottom:12px; }
.age-card p{ font-size:13.5px; margin-bottom:28px; }
.age-actions{ display:flex; gap:12px; justify-content:center; }
.age-actions .btn{ flex:1; }

/* ---------- Hero Splash (full-screen image hero) ---------- */
.hero-splash{
  position:relative; height:92vh; min-height:580px;
  overflow:hidden; display:flex; align-items:flex-end;
}
.hero-splash-media{
  position:absolute; inset:0;
  background: linear-gradient(160deg, #22163a 0%, #0e0b18 45%, #1e1030 100%);
}
.hero-splash-img{
  width:100%; height:100%; object-fit:cover; object-position:center top; display:block;
}
.hero-splash-overlay{
  position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(
    to bottom,
    rgba(8,7,9,.06) 0%,
    rgba(8,7,9,.18) 38%,
    rgba(8,7,9,.68) 66%,
    rgba(8,7,9,.97) 100%
  );
}
/* Side vignette for depth */
.hero-splash-overlay::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 100% at 50% 100%, transparent 40%, rgba(8,7,9,.3) 100%);
}
.hero-splash-content{
  position:relative; z-index:2;
  padding-bottom:80px; max-width:760px;
}
.hero-splash-content h1{ font-size: clamp(38px, 5.4vw, 74px); line-height:1.03; margin:18px 0 22px; }
.hero-splash-content .lede{ font-size:17px; max-width:520px; margin-bottom:34px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:30px; }
.hero-stats{ display:flex; gap:34px; }
.hero-stats div strong{ display:block; font-family:var(--font-display); font-size:28px; color:var(--gold-1); }
.hero-stats div span{ font-size:11.5px; letter-spacing:1.4px; text-transform:uppercase; color:var(--muted-2); }

@media (max-width: 700px){
  .hero-splash{ height:80vh; min-height:500px; }
  .hero-splash-content{ padding-bottom:50px; }
  .hero-stats{ gap:20px; }
  .hero-stats div strong{ font-size:22px; }
}

/* ---------- Hero (main + model pages) ---------- */
.hero{ position:relative; padding:60px 0 100px; overflow:hidden; }
.hero::before{
  content:""; position:absolute; top:-200px; right:-160px; width:700px; height:700px; border-radius:50%;
  background: radial-gradient(circle, rgba(236,30,147,.25), transparent 65%); filter:blur(12px); pointer-events:none;
}
.hero::after{
  content:""; position:absolute; bottom:-280px; left:-160px; width:620px; height:620px; border-radius:50%;
  background: radial-gradient(circle, rgba(212,175,55,.18), transparent 65%); filter:blur(12px); pointer-events:none;
}
.hero-inner{ position:relative; z-index:2; display:grid; grid-template-columns: 1.1fr .9fr; gap:60px; align-items:center; }
.hero h1{ font-size: clamp(40px, 5.4vw, 74px); line-height:1.03; margin:18px 0 22px; }
.hero .lede{ font-size:17px; max-width:480px; margin-bottom:34px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:30px; }
.hero-stats{ display:flex; gap:34px; margin-top:36px; }
.hero-stats div strong{ display:block; font-family:var(--font-display); font-size:28px; color:var(--gold-1); }
.hero-stats div span{ font-size:11.5px; letter-spacing:1.4px; text-transform:uppercase; color:var(--muted-2); }

.hero-visual{ position:relative; height:460px; display:flex; align-items:center; justify-content:center; perspective:1400px; }
.badge-stack{ position:relative; width:100%; height:100%; }
.mama-chip{
  position:absolute; width:256px; padding:24px 22px 22px; border-radius:22px;
  background: linear-gradient(160deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  border:1px solid var(--line-strong); backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.7), 0 0 0 1px rgba(212,175,55,.06);
  transition: transform .4s ease;
}
.mama-chip .chip-photo{
  width:100%; aspect-ratio:3/3.6; border-radius:14px; margin-bottom:14px;
  background: linear-gradient(155deg, #2a2431, #17141c);
  overflow:hidden; position:relative;
}
.mama-chip .chip-photo img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:top center; display:block; border-radius:14px;
}
.mama-chip h4{ font-size:19px; }
.mama-chip span{ font-size:11.5px; letter-spacing:1.4px; text-transform:uppercase; color: var(--pink-1); }
.chip-1{ top:0; left:2%; transform: rotate(-9deg); z-index:1; }
.chip-2{ top:10%; right:-2%; transform: rotate(7deg); z-index:2; }
.chip-3{ bottom:-8%; left:20%; transform: rotate(-3deg); z-index:3; }
.mama-chip:hover{ transform: translateY(-12px) rotate(0deg) scale(1.04); z-index:5; }

@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-visual{ height:380px; margin-top:20px; }
  .mama-chip{ width:180px; }
}
@media (max-width: 580px){
  .hero{ padding:80px 0 70px; }
  .hero-stats{ gap:22px; }
  .hero-stats div strong{ font-size:22px; }
}

/* ---------- Editorial image (collective photo) ---------- */
.editorial-section{ padding:50px 28px; position:relative; }
.editorial-wrap{
  position:relative; overflow:hidden;
  height:70vh; min-height:480px; max-height:700px;
  border-radius:28px;
  max-width:1180px; margin:0 auto;
  background: linear-gradient(160deg, #1e1530 0%, #0e0b1a 50%, #1d1030 100%);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.8);
}
.editorial-wrap img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover; object-position:center 30%;
  display:block;
}
.editorial-overlay{
  position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(to bottom, rgba(8,7,9,.45) 0%, transparent 28%, rgba(8,7,9,.94) 100%),
    linear-gradient(to right, rgba(8,7,9,.3) 0%, transparent 22%, transparent 78%, rgba(8,7,9,.3) 100%);
}
.editorial-label{
  position:absolute; bottom:0; left:0; right:0; z-index:2;
  display:flex; align-items:flex-end; justify-content:space-between;
  padding:60px clamp(28px,4vw,60px) 44px;
  background: linear-gradient(to top, rgba(8,7,9,.7) 0%, transparent 100%);
}
.editorial-label-left h2{
  font-size: clamp(32px, 3.6vw, 60px); margin:10px 0 0; line-height:1.05;
  text-shadow: 0 2px 24px rgba(0,0,0,.7);
}
.editorial-label-left .eyebrow{ text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.editorial-label-right{
  display:flex; flex-direction:column; align-items:flex-end; gap:16px;
  padding-bottom:4px;
}
.editorial-names{
  display:flex; gap:18px; font-size:13px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; color:var(--muted);
}
.editorial-names span{ color:var(--gold-1); }
@media (max-width:700px){
  .editorial-section{ padding:40px 18px; }
  .editorial-wrap{ height:56vh; min-height:340px; }
  .editorial-label{ flex-direction:column; align-items:flex-start; gap:14px; }
  .editorial-label-right{ align-items:flex-start; }
}

/* ---------- Section shells ---------- */
section{ padding:90px 0; position:relative; }
.section-head{ max-width:640px; margin-bottom:56px; }
.section-head h2{ font-size: clamp(30px, 3.6vw, 48px); margin-top:14px; }
.section-head p{ margin-top:16px; font-size:15.5px; }
.center{ text-align:center; margin-left:auto; margin-right:auto; }

/* What-is band */
.what-band{ background: var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.what-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:30px; margin-top:50px; }
.what-card{
  padding:32px 28px; border-radius: var(--radius-md); background: var(--bg-card);
  border:1px solid var(--line); transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.what-card:hover{ transform: translateY(-7px); border-color: var(--line-strong); box-shadow: 0 20px 50px -20px rgba(212,175,55,.15); }
.what-card .num{ font-family:var(--font-display); font-size:14px; color: var(--pink-1); margin-bottom:14px; display:block; }
.what-card h3{ font-size:20px; margin-bottom:10px; }
.what-card p{ font-size:14px; }

@media (max-width: 860px){ .what-grid{ grid-template-columns:1fr; } }

/* ---------- Mama cards ---------- */
.mamas-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:34px; }
.vip-card{
  position:relative; border-radius: var(--radius-lg); padding:2px;
  background: linear-gradient(150deg, var(--gold-2), rgba(212,175,55,.06) 40%, var(--pink-2) 100%);
  will-change: transform;
  transition: transform .12s ease-out, box-shadow .3s ease;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.9);
}
.vip-card:hover{ box-shadow: 0 40px 90px -30px rgba(236,30,147,.4), 0 0 60px -30px rgba(212,175,55,.15); }
.vip-card-inner{
  position:relative; border-radius: calc(var(--radius-lg) - 2px); overflow:hidden;
  background: linear-gradient(175deg, #1f1b28, #100e14); padding:0; min-height:640px;
  transition: box-shadow .35s ease;
}
.vip-card:hover .vip-card-inner{
  box-shadow: inset 0 0 0 1px rgba(212,175,55,.22), 0 0 40px -10px rgba(212,175,55,.1);
}
.vip-card-inner::before{
  content:""; position:absolute; inset:0; opacity:0; transition: opacity .35s ease;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.13) 48%, transparent 62%);
  transform: translateX(-120%); z-index:4; pointer-events:none;
}
.vip-card:hover .vip-card-inner::before{ opacity:1; animation: sheen 1.1s ease forwards; }
@keyframes sheen{ to{ transform: translateX(120%); } }
.vip-card-inner::after{
  content:""; position:absolute; inset:0; z-index:5; pointer-events:none;
  opacity:.038; mix-blend-mode:screen;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='256' height='256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}
.vip-photo{
  position:absolute; inset:0; width:100%; height:100%;
  background: linear-gradient(160deg, #2e2638, #17141c); overflow:hidden;
}
.vip-photo img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:top center; display:block;
  filter: saturate(0.82) contrast(1.04);
  transition: transform .7s ease, filter .7s ease, opacity .35s ease;
}
.vip-card:hover .vip-photo img{ transform: scale(1.05); filter: saturate(1.12) brightness(1.03) contrast(1.02); opacity:0; }
.vip-hover-video{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; object-position:top center; display:block;
  opacity:0; transition: opacity .35s ease;
  pointer-events:none;
}
.vip-card:hover .vip-hover-video{ opacity:1; }
.vip-overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(to bottom, transparent 0%, transparent 30%, rgba(8,7,9,.1) 46%, rgba(8,7,9,.75) 68%, rgba(8,7,9,.97) 86%, #080709 100%);
}
.vip-content{
  position:absolute; bottom:0; left:0; right:0; padding:20px 24px 30px; z-index:2;
  background: linear-gradient(to top, rgba(5,4,7,.94) 0%, rgba(5,4,7,.72) 28%, rgba(5,4,7,.32) 58%, transparent 100%);
}
.vip-content::before{
  content:""; display:block; width:28px; height:2px; border-radius:2px; margin-bottom:12px;
  background: linear-gradient(90deg, var(--pink-1), var(--gold-2));
}
.vip-card .kicker{ font-size:11px; letter-spacing:2.2px; text-transform:uppercase; color:var(--pink-1); font-weight:700; text-shadow:0 1px 6px rgba(0,0,0,.8); }
.vip-card h3{ font-size:30px; margin:6px 0 4px; text-shadow:0 2px 16px rgba(0,0,0,1); }
.vip-card .age-tag{ font-size:12.5px; color:var(--muted-2); margin-bottom:12px; display:block; letter-spacing:.5px; }
.vip-card .hook{ font-size:13.5px; color:rgba(255,255,255,.8); font-style:normal; margin-bottom:18px; line-height:1.65; }
.vip-card .card-cta{ display:flex; gap:10px; }
.vip-card .card-cta a{ flex:1; text-align:center; }

@media (max-width: 980px){ .mamas-grid{ grid-template-columns:1fr; max-width:420px; margin:0 auto; } }


/* ---------- Social / Fanvue CTA band ---------- */
.cta-band{
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1a1220 0%, #18122c 40%, #1e0f20 100%);
  border:1px solid var(--line-strong); padding:70px 54px; text-align:center; position:relative; overflow:hidden;
}
.cta-band::before{
  content:""; position:absolute; inset:0;
  background: radial-gradient(circle at 50% 0%, rgba(236,30,147,.2), transparent 60%),
              radial-gradient(circle at 50% 100%, rgba(212,175,55,.08), transparent 50%);
}
.cta-band > *{ position:relative; z-index:1; }
.cta-band h2{ font-size: clamp(28px,3.4vw,44px); margin:14px 0 18px; }
.cta-band p{ max-width:520px; margin:0 auto 36px; font-size:15px; }
.cta-row{ display:flex; flex-wrap:wrap; gap:14px; justify-content:center; margin-bottom:34px; }
.social-row{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }
.social-row a{
  display:flex; align-items:center; gap:9px; padding:12px 22px; border-radius:999px;
  border:1px solid var(--line-strong); font-size:13.5px; font-weight:700; letter-spacing:.4px;
  transition: all .2s ease;
}
.social-row a:hover{ background: rgba(212,175,55,.1); border-color: var(--gold-2); transform: translateY(-2px); }

/* ---------- Marquee ---------- */
.marquee{ overflow:hidden; border-top:1px solid var(--line); border-bottom:1px solid var(--line); padding:28px 0; }
.marquee-track{ display:flex; gap:70px; width:max-content; animation: scroll 32s linear infinite; }
.marquee-track span{ font-family: var(--font-display); font-size:21px; color: var(--muted-2); white-space:nowrap; letter-spacing:.6px; }
.marquee-track span em{ font-style:normal; color: var(--gold-2); }
@keyframes scroll{ from{ transform: translateX(0);} to{ transform: translateX(-50%);} }

/* ---------- Model page ---------- */
.model-hero{ padding-top:60px; }
.model-hero-grid{ display:grid; grid-template-columns: .95fr 1.05fr; gap:64px; align-items:center; }
.model-photo-frame{
  position:relative; border-radius: 28px; padding:10px;
  background: linear-gradient(150deg, var(--gold-2), rgba(212,175,55,.05) 45%, var(--pink-2));
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.8), 0 0 60px -20px rgba(212,175,55,.12);
}
.model-photo-frame .inner{
  aspect-ratio: 4/5; border-radius:22px; background: linear-gradient(160deg,#261f2e,#141119);
  border:1px dashed var(--line-strong); display:flex; align-items:center; justify-content:center;
  text-align:center; padding:26px; color: var(--gold-1); font-family:var(--font-display); font-size:16px;
}
.model-photo-frame img{
  display:block; width:100%; aspect-ratio:4/5; object-fit:cover; object-position:top center;
  border-radius:22px;
}
.model-badge{
  position:absolute; bottom:-16px; right:-16px;
  background: linear-gradient(145deg, #1e1825 0%, #120f18 100%);
  color: var(--gold-2);
  padding:11px 20px; border-radius:6px;
  font-family: var(--font-body); font-weight:700; font-size:10px; letter-spacing:3px; text-transform:uppercase;
  border: 1px solid rgba(212,175,55,.35);
  box-shadow: 0 12px 44px -10px rgba(0,0,0,.9), 0 0 0 1px rgba(212,175,55,.08), inset 0 1px 0 rgba(212,175,55,.1);
  transform: rotate(-3deg);
}
.model-name{ font-size: clamp(38px,5vw,66px); margin:14px 0 6px; }
.model-meta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:22px; }
.model-meta span{ font-size:12px; letter-spacing:1.4px; text-transform:uppercase; color: var(--muted-2); border:1px solid var(--line); padding:6px 14px; border-radius:999px; }
.model-quote{
  font-family: var(--font-display); font-style:italic; font-size:21px; color:var(--cream);
  border-left:3px solid var(--pink-2); padding-left:20px; margin:28px 0 32px; max-width:520px;
  line-height:1.45;
}
.model-ctas{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:8px; }

.bio-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:50px; }
.bio-block h3{ font-size:22px; margin-bottom:16px; }
.bio-block p + p{ margin-top:14px; }
.bio-block p{ font-size:15px; }

.fact-list{ display:grid; grid-template-columns: repeat(2,1fr); gap:16px; margin-top:10px; }
.fact-list div{ padding:16px 18px; border-radius:14px; background: var(--bg-card); border:1px solid var(--line); }
.fact-list div h5{ font-size:11px; letter-spacing:1.6px; text-transform:uppercase; color: var(--pink-1); margin-bottom:6px; }
.fact-list div p{ font-size:14.5px; color: var(--cream); }

/* Gallery grid — 5 slots, no gaps */
.gallery-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.gallery-grid .g-item{
  aspect-ratio: 3/4; border-radius:16px; background: linear-gradient(160deg,#241f2e,#151218);
  border:1px solid var(--line); display:flex; align-items:center; justify-content:center;
  color: var(--muted-2); font-size:12px; text-align:center; padding:10px;
  transition: border-color .3s ease, transform .3s ease;
}
.gallery-grid .g-item:hover{ border-color: var(--line-strong); transform: scale(1.015); }
.gallery-grid .g-item:first-child{ grid-row: span 2; aspect-ratio:auto; }
.gallery-grid .g-item img{ width:100%; height:100%; object-fit:cover; object-position:top center; border-radius:14px; display:block; }

@media (max-width: 980px){
  .model-hero-grid{ grid-template-columns:1fr; }
  .bio-grid{ grid-template-columns:1fr; gap:36px; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid .g-item:first-child{ grid-row: span 1; aspect-ratio: 3/4; }
  .gallery-grid .g-item:last-child:nth-child(odd){ grid-column: span 2; aspect-ratio: 16/9; }
}

.other-mamas{ display:grid; grid-template-columns: repeat(2,1fr); gap:24px; }
.mini-mama{
  display:flex; gap:18px; align-items:center; padding:20px; border-radius:18px;
  background: var(--bg-card); border:1px solid var(--line); transition: border-color .2s, transform .2s, box-shadow .2s;
}
.mini-mama:hover{ border-color: var(--line-strong); transform: translateY(-4px); box-shadow: 0 16px 40px -16px rgba(212,175,55,.15); }
.mini-mama .mm-photo{ width:66px; height:66px; border-radius:50%; background: linear-gradient(160deg,#2a2431,#17141c); border:2px solid var(--line-strong); flex-shrink:0; overflow:hidden; }
.mini-mama .mm-photo img{ width:100%; height:100%; object-fit:cover; object-position:top center; border-radius:50%; display:block; }
.mini-mama h4{ font-size:18px; }
.mini-mama span{ font-size:12px; color: var(--pink-1); text-transform:uppercase; letter-spacing:1px; }

@media (max-width: 560px){
  .other-mamas{ grid-template-columns:1fr; }
  .cta-band{ padding:48px 28px; }
}

/* ---------- About page ---------- */
.about-hero{ padding:90px 0 70px; }
.about-hero-inner{ display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:center; }
.about-hero-inner .about-text h1{ font-size: clamp(36px,4.5vw,60px); margin:16px 0 22px; }
.about-hero-inner .about-text p{ font-size:16px; }
.about-visual{
  border-radius:28px; padding:10px;
  background: linear-gradient(150deg, var(--gold-2), rgba(212,175,55,.06) 45%, var(--pink-2));
}
.about-visual-inner{
  border-radius:22px; background: linear-gradient(160deg, #261f2e, #141119);
  border:1px solid var(--line); padding:50px 40px; text-align:center;
}
.about-visual-inner .av-names{ font-family:var(--font-display); font-size:28px; margin-bottom:10px; }
.about-visual-inner p{ font-size:14px; }
.about-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:28px; margin-top:50px; }
.about-card{
  padding:34px 28px; border-radius:var(--radius-md); background:var(--bg-card);
  border:1px solid var(--line); transition: transform .3s ease, border-color .3s ease;
}
.about-card:hover{ transform:translateY(-6px); border-color:var(--line-strong); }
.about-card .ac-icon{ font-size:28px; margin-bottom:18px; }
.about-card h3{ font-size:20px; margin-bottom:12px; }
.about-card p{ font-size:14px; }
.about-mamas-strip{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; margin-top:50px; }
.about-mama-card{
  padding:28px 24px; border-radius:var(--radius-md);
  background: linear-gradient(160deg, #1f1a2a, #141019);
  border:1px solid var(--line); text-align:center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.about-mama-card:hover{ transform:translateY(-6px); box-shadow:0 20px 50px -20px rgba(236,30,147,.25); }
.about-mama-card .am-photo{
  width:80px; height:80px; border-radius:50%; margin:0 auto 18px;
  background: linear-gradient(160deg, #2c2436, #17141c);
  border:2px solid var(--line-strong); overflow:hidden;
}
.about-mama-card .am-photo img{ width:100%; height:100%; object-fit:cover; object-position:top center; border-radius:50%; display:block; }
.about-mama-card h4{ font-size:22px; margin-bottom:4px; }
.about-mama-card .am-role{ font-size:11.5px; letter-spacing:2px; text-transform:uppercase; color:var(--pink-1); margin-bottom:12px; display:block; }
.about-mama-card p{ font-size:13.5px; }
.about-disclosure{
  padding:32px 36px; border-radius:var(--radius-md);
  background: rgba(212,175,55,.04); border:1px solid var(--line-strong);
  border-left:3px solid var(--gold-2);
}
.about-disclosure h3{ font-size:18px; margin-bottom:12px; color:var(--gold-1); }
.about-disclosure p{ font-size:14px; }

/* ---- Character Legal Disclosure (model subpages) ---- */
.char-disclosure-wrap{ padding:0 0 60px; }
.char-disclosure{
  padding:28px 36px; border-radius:var(--radius-md);
  background:rgba(255,255,255,.02); border:1px solid var(--line);
  border-left:3px solid rgba(212,175,55,.35);
}
.char-disclosure-label{
  display:block; font-family:var(--font-body); font-weight:700;
  font-size:9.5px; letter-spacing:3.5px; text-transform:uppercase;
  color:var(--gold-2); margin-bottom:14px;
}
.char-disclosure p{
  font-size:12px; color:var(--muted-2); line-height:1.75;
}
.char-disclosure p + p{ margin-top:10px; }
@media(max-width:580px){
  .char-disclosure{ padding:22px 20px; }
  .char-disclosure p{ font-size:11.5px; }
}

@media (max-width:860px){
  .about-hero-inner{ grid-template-columns:1fr; }
  .about-grid{ grid-template-columns:1fr; }
  .about-mamas-strip{ grid-template-columns:repeat(2,1fr); max-width:none; }
}

/* ---------- Legal pages ---------- */
.legal-page{ padding:70px 0 100px; }
.legal-page .wrap{ max-width:860px; }
.legal-page h1{ font-size:38px; margin-bottom:6px; }
.legal-updated{ font-size:12.5px; color: var(--muted-2); margin-bottom:40px; display:block; letter-spacing:.4px; }
.legal-page h2{ font-size:20px; margin:38px 0 12px; color: var(--gold-1); }
.legal-page p{ font-size:14.5px; margin-bottom:12px; }
.legal-page ul{ padding-left:20px; margin:0 0 14px; }
.legal-page li{ font-size:14.5px; color: var(--muted); margin-bottom:8px; line-height:1.7; }
.legal-toc{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:40px; }
.legal-toc a{ font-size:12.5px; padding:8px 14px; border:1px solid var(--line); border-radius:999px; color: var(--muted); }
.legal-toc a:hover{ border-color: var(--gold-2); color: var(--gold-1); }
.legal-callout{ padding:18px 20px; border-left:2px solid var(--pink-2); background: rgba(236,30,147,.06); border-radius: 0 12px 12px 0; margin:20px 0; }
.legal-callout p{ margin:0; color: var(--cream); }

/* ---------- Reveal on scroll ---------- */
.reveal{ opacity:0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }

/* ---------- Shared icon badge ---------- */
.icon-badge{ display:inline-flex; align-items:center; justify-content:center; width:30px; height:30px; border-radius:50%; border:1px solid var(--line-strong); font-size:10.5px; font-weight:800; letter-spacing:.3px; }

/* ==========================================================
   LUXURY UPGRADE — Beverly Hills Mamas
   ========================================================== */

/* Inter typography */
.hero h1 { font-size:clamp(38px,5.2vw,74px); line-height:1.04; font-weight:800; letter-spacing:-2px; }
.section-head h2 { font-size:clamp(30px,3.8vw,54px); line-height:1.06; font-weight:700; letter-spacing:-1px; }
.model-name { font-size:clamp(36px,5vw,66px); font-weight:800; letter-spacing:-2px; }
.model-quote { font-size:clamp(17px,2vw,22px) !important; font-weight:400; letter-spacing:-0.2px; line-height:1.6 !important; font-style:normal; }
.vip-card .hook { font-family:var(--font-body); font-size:13.5px; font-style:normal; line-height:1.6; color:var(--muted); margin-bottom:18px; font-weight:400; }
.marquee-track span { font-size:clamp(13px,1.4vw,17px); font-weight:500; letter-spacing:4px; }

/* Gold shimmer animation */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold-3) 0%, var(--gold-1) 30%, var(--gold-2) 50%, var(--gold-1) 70%, var(--gold-3) 100%);
  background-size:200% auto;
  -webkit-background-clip:text; background-clip:text; color:transparent;
  animation: shimmer-text 5s linear infinite;
}
@keyframes shimmer-text { to{ background-position:200% center; } }

/* Luxury section separator */
.lux-sep { display:flex; align-items:center; gap:20px; margin:50px 0; }
.lux-sep::before,.lux-sep::after { content:""; flex:1; height:1px; background:var(--gold-grad); opacity:.25; }
.lux-sep span { font-family:var(--font-body); font-size:10px; letter-spacing:3.5px; text-transform:uppercase; color:var(--gold-2); white-space:nowrap; }

/* ---- VIP card upgrades ---- */
.vip-card .age-tag {
  font-family:var(--font-body); font-style:normal; font-size:12px;
  color:var(--gold-1); margin-bottom:14px; display:block; letter-spacing:1.5px; text-transform:uppercase;
}

/* ---- Model relation tag (rovnako silné ako vek) ---- */
.model-relation {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(18px, 2.4vw, 28px);
  background: var(--pink-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: 0.3px; line-height: 1.2; margin: 0 0 10px;
}

/* ---- Model page age number (editorial) ---- */
.model-age-hero { display:flex; align-items:baseline; gap:12px; margin-bottom:6px; }
.model-age-number {
  font-family:var(--font-display); font-size:clamp(64px,9vw,108px);
  line-height:1; color:transparent;
  background:var(--gold-grad); -webkit-background-clip:text; background-clip:text;
  font-weight:300; letter-spacing:-4px;
}
.model-age-label {
  font-family:var(--font-body); font-size:9.5px; letter-spacing:3px;
  text-transform:uppercase; color:var(--muted-2); line-height:1.5; padding-bottom:6px;
}

/* ---- Bare-face / No-Makeup Reveal Feature ---- */
.photo-reveal-wrapper {
  position:relative; border-radius:22px; overflow:hidden;
}
.photo-glam {
  width:100%; aspect-ratio:4/5; object-fit:cover; object-position:top center;
  display:block; border-radius:22px;
  transition: opacity .75s cubic-bezier(.4,0,.2,1), filter .75s cubic-bezier(.4,0,.2,1);
}
.photo-bare {
  position:absolute; inset:0; border-radius:22px; overflow:hidden;
  opacity:0; transition:opacity .75s cubic-bezier(.4,0,.2,1);
}
.photo-bare img {
  width:100%; height:100%; object-fit:cover; object-position:top center; display:block;
}
.bare-placeholder-bg {
  width:100%; height:100%;
  background:linear-gradient(160deg,#d9cec4 0%,#c9b8ac 45%,#bfaa9e 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:12px; padding:30px; text-align:center;
}
.bare-placeholder-bg .bname {
  font-family:var(--font-display); font-size:34px; color:#3a2e26;
  letter-spacing:8px; text-transform:uppercase; line-height:1;
}
.bare-placeholder-bg .blabel {
  font-size:10.5px; letter-spacing:3px; text-transform:uppercase; color:#6e6158; font-weight:600;
}
.bare-placeholder-bg .bsub {
  font-size:9.5px; color:#9a8d84; letter-spacing:1px; margin-top:6px;
  border:1px solid rgba(58,46,38,.2); border-radius:999px; padding:5px 14px;
}
.photo-reveal-wrapper.revealed .photo-glam { opacity:0; filter:blur(14px) saturate(.2); }
.photo-reveal-wrapper.revealed .photo-bare { opacity:1; }

/* Reveal button */
.bare-reveal-btn {
  position:absolute; bottom:20px; left:50%;
  transform:translateX(-50%) translateY(0);
  background:rgba(8,7,9,.84); backdrop-filter:blur(16px) saturate(150%);
  border:1px solid rgba(212,175,55,.48); border-radius:999px;
  padding:12px 26px; cursor:pointer; color:var(--gold-1);
  font-family:var(--font-body); font-size:10px; font-weight:700; letter-spacing:2.8px;
  text-transform:uppercase; white-space:nowrap;
  display:flex; align-items:center; gap:11px;
  transition:all .3s ease; z-index:4;
  box-shadow:0 8px 30px -8px rgba(0,0,0,.75);
}
.bare-reveal-btn:hover {
  background:rgba(212,175,55,.16); border-color:var(--gold-2);
  transform:translateX(-50%) translateY(-3px);
  box-shadow:0 14px 40px -10px rgba(212,175,55,.28);
}
.bare-reveal-btn .brb-dot {
  width:7px; height:7px; border-radius:50%; background:var(--gold-2);
  flex-shrink:0; animation:pulse-dot 2.2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1;} 50%{transform:scale(1.7);opacity:.45;} }
.photo-reveal-wrapper.revealed .bare-reveal-btn {
  background:rgba(245,239,226,.1); border-color:rgba(212,175,55,.28); color:var(--cream);
}
.photo-reveal-wrapper.revealed .bare-reveal-btn .brb-dot { background:var(--cream); animation:none; }

/* Status pill (top-right corner) */
.bare-status-label {
  position:absolute; top:14px; right:14px; z-index:4;
  background:rgba(8,7,9,.78); backdrop-filter:blur(10px);
  border:1px solid rgba(245,239,226,.2); border-radius:999px;
  padding:5px 14px; font-family:var(--font-body); font-size:9px;
  letter-spacing:2.5px; text-transform:uppercase; color:var(--cream); font-weight:700;
  opacity:0; transition:opacity .5s ease .35s;
}
.photo-reveal-wrapper.revealed .bare-status-label { opacity:1; }

/* ---- Lifestyle 16:9 Editorial Strip ---- */
.lifestyle-editorial { position:relative; margin:60px 0 80px; padding:0 28px; overflow:visible; }
.lifestyle-editorial-inner {
  position:relative; height:62vh; min-height:420px; max-height:680px;
  overflow:hidden;
  border-radius:28px;
  max-width:1180px; margin:0 auto;
  background:linear-gradient(160deg,#1a1230,#0c0918);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,.8);
}
.lifestyle-editorial-inner img {
  width:100%; height:100%; object-fit:cover; object-position:center 40%;
  display:block; transition:transform 10s ease;
}
.lifestyle-editorial-inner:hover img { transform:scale(1.05); }
.lifestyle-editorial-overlay {
  position:absolute; inset:0; pointer-events:none;
  background:
    linear-gradient(to bottom, rgba(8,7,9,.35) 0%, transparent 28%, rgba(8,7,9,.94) 100%),
    linear-gradient(to right, rgba(8,7,9,.2) 0%, transparent 20%, transparent 80%, rgba(8,7,9,.2) 100%);
}
.lifestyle-editorial-caption {
  position:absolute; bottom:0; left:0; right:0;
  padding:70px clamp(28px,5vw,60px) 44px;
  display:flex; justify-content:space-between; align-items:flex-end; gap:24px;
  background: linear-gradient(to top, rgba(8,7,9,.65) 0%, transparent 100%);
}
.lec-left { max-width:560px; }
.lec-left .eyebrow { margin-bottom:10px; text-shadow:0 1px 10px rgba(0,0,0,.6); }
.lec-left h3 {
  font-family:var(--font-display); font-size:clamp(26px,3.2vw,48px);
  color:var(--cream); line-height:1.1; margin:0; font-weight:800; letter-spacing:-1px;
  text-shadow: 0 2px 28px rgba(0,0,0,.75);
}
.lec-right {
  flex-shrink:0; font-family:var(--font-body);
  font-size:11px; letter-spacing:2px; text-transform:uppercase;
  color:var(--muted); text-align:right; padding-bottom:4px;
  display:flex; flex-direction:column; align-items:flex-end; gap:10px;
  max-width:280px; overflow-wrap:break-word;
}
.lec-right strong {
  display:block; font-size:22px; font-family:var(--font-display);
  color:var(--gold-1); letter-spacing:1px; font-weight:400;
  text-shadow: 0 2px 16px rgba(0,0,0,.6);
}
.lifestyle-placeholder {
  width:100%; height:100%;
  background:linear-gradient(135deg,#1a1532,#0f0d22,#1e1135);
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px;
  color:var(--muted-2); font-family:var(--font-body); text-align:center;
}
.lifestyle-placeholder .lp-tag { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--gold-2); opacity:.5; }
.lifestyle-placeholder .lp-note { font-size:10px; letter-spacing:1px; color:var(--muted-2); opacity:.4; }
@media(max-width:900px){
  .lifestyle-editorial{ margin:50px 0 70px; padding:0 18px; }
  .lifestyle-editorial-inner{ height:52vh; min-height:340px; }
}
@media(max-width:700px){
  .lifestyle-editorial{ margin:40px 0 60px; padding:0 14px; }
  .lifestyle-editorial-inner{ height:50vh; min-height:300px; border-radius:18px; }
  .lifestyle-editorial-caption{ flex-direction:column; align-items:flex-start; padding:40px 24px 28px; gap:12px; }
  .lec-right{ text-align:left; align-items:flex-start; max-width:100%; }
  .lec-left h3{ font-size:clamp(22px,5vw,34px); }
}

/* ---- Studio Portraits ---- */
.studio-section { padding-top:80px; }
.studio-section .wrap { max-width:1420px; }
.studio-portraits-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-bottom:20px;
}
.studio-portrait {
  position:relative; border-radius:18px; overflow:hidden; aspect-ratio:9/16;
  background:linear-gradient(160deg,#e8e4df,#d4cec8);
  border:1px solid var(--line);
  transition:transform .35s ease, box-shadow .35s ease;
}
.studio-portrait:hover { transform:translateY(-8px); box-shadow:0 24px 64px -20px rgba(212,175,55,.2); }
.studio-portrait img { width:100%; height:100%; object-fit:cover; object-position:top center; display:block; }
.studio-portrait-placeholder {
  width:100%; height:100%;
  background:linear-gradient(160deg,#f0ebe5,#e2dad2,#d8d0c8);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; padding:24px; text-align:center;
}
.studio-portrait-placeholder .sp-label {
  font-family:var(--font-display); font-size:16px; color:#4a3e38;
  letter-spacing:5px; text-transform:uppercase; font-weight:400;
}
.studio-portrait-placeholder .sp-sub { font-size:9.5px; letter-spacing:2px; text-transform:uppercase; color:#8a7d76; }
.studio-portrait-label {
  position:absolute; bottom:12px; left:12px;
  background:rgba(8,7,9,.78); backdrop-filter:blur(8px);
  border:1px solid rgba(212,175,55,.32); border-radius:999px;
  padding:5px 14px; font-size:9px; letter-spacing:2px;
  text-transform:uppercase; color:var(--gold-1); font-weight:700; font-family:var(--font-body);
}
@media(max-width:860px){
  .studio-portraits-grid{ grid-template-columns:repeat(2,1fr); gap:12px; }
}
@media(max-width:420px){
  .studio-portraits-grid{ gap:10px; }
}

/* ---- Model page eye-grab quote (in bio) ---- */
.age-declaration {
  font-family:var(--font-display); font-size:clamp(20px,2.8vw,30px);
  color:var(--gold-1); font-style:italic; font-weight:400;
  border-left:2px solid var(--gold-2); padding-left:20px;
  margin:28px 0; line-height:1.4;
}

/* ---- Homepage luxury tweak: eyebrow line ---- */
.eyebrow::before { width:22px; }

/* ---- Enhanced CTA band ---- */
.cta-band h2 { font-size:clamp(30px,3.8vw,50px); font-weight:500; }

/* ---- Enhanced model hero ---- */
.model-hero { padding-top:50px; }

/* ---- Luxury header top-bar glow ---- */
.site-header::before { opacity:.9; height:2px; }

/* ---- Gallery label overlay on first item ---- */
.gallery-grid .g-item { transition:border-color .3s, transform .3s, box-shadow .3s; }
.gallery-grid .g-item:hover { border-color:var(--line-strong); transform:scale(1.016); box-shadow:0 16px 40px -16px rgba(212,175,55,.12); }

/* Mobile-only hero elements — hidden on desktop */
.mobile-hero-trio { display: none; }
.mobile-hero-single { display: none; }

/* ============================================================
   MOBILE OPTIMISATIONS
   ============================================================ */

/* Tablet: reduce section padding, section-head margin */
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .about-hero { padding: 60px 0 40px; }
  .site-footer { margin-top: 70px; }
  .footer-bottom {
    flex-direction: column; align-items: center;
    text-align: center; gap: 10px;
  }
  .footer-legal-links { justify-content: center; }
  .mamas-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
}

/* Small mobile: aggressive layout tightening */
@media (max-width: 580px) {
  html, body { overflow-x: hidden; max-width: 100%; }
  body { background-attachment: scroll; }
  section { padding: 50px 0; }
  .wrap { padding: 0 16px; }
  .site-footer { margin-top: 56px; }

  /* Model hero: cap photo width so 4:5 image isn't 460px tall */
  .model-hero-grid { gap: 28px; }
  .model-photo-frame { max-width: 280px; margin: 0 auto; }

  /* Model hero text: tighter spacing */
  .model-age-hero { margin-bottom: 6px; }
  .model-name { font-size: clamp(32px,10vw,52px); }
  .model-meta { gap: 6px; }
  .model-meta span { font-size: 10.5px; padding: 5px 10px; }
  .model-quote { font-size: clamp(16px,4.5vw,20px) !important; margin: 18px 0 22px; }

  /* CTA buttons: full width stacked */
  .model-ctas { flex-direction: column; gap: 10px; }
  .model-ctas .btn { width: 100%; justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { justify-content: center; }

  /* Mobile hero: single full-screen image */
  .mobile-hero-single { display: block; }
  .scroll-cue { display: none; }
  .quiz-hero-hook { display: none; }
  .hero { padding: 0; min-height: auto; background: none; }
  .hero::before, .hero::after { display: none; }
  .hero .wrap { padding-top: 28px; padding-bottom: 40px; }
  .hero-inner { gap: 0 !important; }
  .hero-fullbleed { display: none; }
  .hero-bg { display: none; }
  .hero-visual { display: none; }
  .hero .hero-inner { display: none; }

  /* Single photo hero — top 50vh image, text below */
  .mobile-hero-single {
    width: 100%;
  }
  .mhs-img-wrap {
    position: relative;
    height: 33vh;
    overflow: hidden;
  }
  .mhs-img-wrap::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(to bottom, transparent, var(--bg));
  }
  .mhs-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center center;
    display: block;
  }
  .mhs-content {
    background: var(--bg);
    padding: 20px 22px 40px;
    display: flex;
    flex-direction: column;
    gap: 11px;
  }
  .mhs-eyebrow {
    font-size: 9.5px; font-weight: 700;
    letter-spacing: 3.5px; text-transform: uppercase;
    color: var(--gold-1);
  }
  .mhs-h1 {
    font-family: var(--font-display);
    font-size: clamp(24px, 6.5vw, 34px);
    font-weight: 800; line-height: 1.15;
    color: var(--cream); margin: 0 0 4px;
    letter-spacing: -.5px;
  }
  .mhs-pink { color: #ec1e93; }
  .mhs-lede {
    font-size: 13px; line-height: 1.4;
    color: rgba(255,255,255,.55);
    margin: 0 0 4px; letter-spacing: .2px;
  }
  .mhs-content .btn {
    width: 100%; justify-content: center;
    font-size: 13px; padding: 15px 24px;
  }
  .mhs-deal {
    font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--gold-1); text-align: center; opacity: .85;
    margin-top: -4px;
  }
  .mhs-age {
    font-size: 8px; letter-spacing: 2.5px; text-transform: uppercase;
    color: rgba(255,255,255,.3); text-align: center; margin-top: 2px;
  }

  /* About mamas: back to single column on small phone */
  .about-mamas-strip { grid-template-columns: 1fr; max-width: 340px; margin-left: auto; margin-right: auto; }

  /* Social row: compact */
  .social-row { gap: 10px; }
  .social-row a { padding: 10px 14px; font-size: 12px; gap: 7px; }

  /* CTA band */
  .cta-band { padding: 44px 22px; }
  .cta-band h2 { font-size: clamp(24px,7vw,36px); }

  /* Studio portraits: handled by dedicated breakpoints above */

  /* Mini-mama cards: full-width single column feels cleaner */
  .other-mamas { grid-template-columns: 1fr; }

  /* Footer brand: center */
  .footer-brand { text-align: center; }
  .footer-social { justify-content: center; }
}

/* ============================================================
   EDITORIAL SLIDER — lifestyle strips + homepage editorial
   ============================================================ */

/* Make the existing wrappers into grid sliders */
.editorial-slider { display:grid; grid-template-rows: minmax(0, 1fr); }

/* Slides stack in the same grid cell — min-height:0 prevents grid blowout */
.eslide {
  grid-area: 1/1;
  position: relative;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
  min-height: 0;
  overflow: hidden;
}
.eslide.active { opacity:1; pointer-events:auto; z-index:1; }

/* Arrow navigation */
.eslider-prev, .eslider-next {
  position:absolute; top:50%; z-index:10; transform:translateY(-50%);
  width:50px; height:50px; border-radius:50%; cursor:pointer; padding:0;
  background:rgba(8,7,9,.60); backdrop-filter:blur(12px) saturate(140%);
  border:1px solid rgba(212,175,55,.45); color:var(--gold-1);
  display:flex; align-items:center; justify-content:center;
  transition:background .22s, border-color .22s, transform .22s;
}
.eslider-prev { left:24px; }
.eslider-next { right:24px; }
.eslider-prev svg, .eslider-next svg {
  width:18px; height:18px; stroke:currentColor; fill:none;
  stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round;
}
.eslider-prev:hover, .eslider-next:hover {
  background:rgba(212,175,55,.2); border-color:var(--gold-2);
  transform:translateY(-50%) scale(1.08);
}

/* Dot indicators */
.eslider-dots {
  position:absolute; bottom:22px; right:32px; z-index:10;
  display:flex; gap:8px; align-items:center;
}
.eslider-dot {
  width:8px; height:8px; border-radius:50%; cursor:pointer;
  background:rgba(255,255,255,.28); border:none; padding:0;
  transition:background .22s, transform .22s;
}
.eslider-dot.active { background:var(--gold-2); transform:scale(1.3); }

@media(max-width:700px){
  .eslider-prev { left:12px; }
  .eslider-next { right:12px; }
  .eslider-prev, .eslider-next { width:38px; height:38px; }
  .eslider-prev svg, .eslider-next svg { width:15px; height:15px; }
  .eslider-dots { right:14px; bottom:14px; gap:6px; }
  .eslider-dot { width:7px; height:7px; }
}

/* ── Editorial slider — mobile split layout ───────────── */
@media(max-width:580px){
  .editorial-section{ padding:28px 14px; }

  /* Wrap becomes a neutral flow container */
  .editorial-wrap{
    height:auto; min-height:0; max-height:none;
    overflow:visible; background:none;
    box-shadow:none; border-radius:0;
  }

  /* Switch off grid — only active slide shows in flow */
  .editorial-slider{ display:block; }
  .eslide{
    display:none; grid-area:auto;
    border-radius:20px; overflow:hidden;
    background:#0d0b16;
    box-shadow:0 16px 50px -16px rgba(0,0,0,.8);
  }
  .eslide.active{ display:block; }

  /* Image: in-flow, fixed aspect, full width */
  .eslide > img{
    position:relative !important; inset:auto !important;
    width:100%; height:62vw;
    min-height:220px; max-height:310px;
    object-fit:cover; object-position:center 30%;
    display:block; border-radius:0;
  }

  /* No overlay — image is fully visible */
  .editorial-overlay{ display:none; }

  /* Text panel below image */
  .editorial-label{
    position:relative !important;
    bottom:auto; left:auto; right:auto;
    padding:14px 16px 16px;
    background:#0d0b16;
    border-top:1px solid rgba(212,175,55,.1);
    flex-direction:column; align-items:flex-start; gap:8px;
  }
  .editorial-label-left h2{
    font-size:clamp(16px,5.2vw,22px);
    line-height:1.2; margin:2px 0 0;
  }
  .editorial-label-right{
    flex-direction:row; width:100%; gap:8px;
    align-items:center; padding-bottom:0;
  }
  .editorial-label-right .btn{
    flex:1; font-size:11.5px;
    padding:9px 10px; text-align:center;
    justify-content:center;
  }
  /* Hide decorative span (e.g. the marble quote) */
  .editorial-label-right > span{ display:none; }

  /* Arrows centered on image zone */
  .eslider-prev, .eslider-next{
    top:31vw; /* half of 62vw image */
    width:34px; height:34px;
  }
  .eslider-prev{ left:8px; }
  .eslider-next{ right:8px; }

  /* Dots: flow below card, centered */
  .eslider-dots{
    position:relative; bottom:auto; right:auto;
    margin-top:12px; justify-content:center; gap:8px;
  }
  .eslider-dot{ width:7px; height:7px; }
}


/* ===================================================
   MODEL PAGE â€” EDITORIAL REDESIGN
   =================================================== */

.mp-hero {
  position: relative;
  min-height: 88vh;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.mp-hero-bg {
  position: absolute; inset: 0; background: #0b0914;
}
.mp-hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 12%;
  opacity: 0.46;
  filter: saturate(0.72) contrast(1.1);
}
.mp-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(108deg, rgba(8,7,9,.94) 0%, rgba(8,7,9,.6) 52%, rgba(8,7,9,.16) 100%),
    linear-gradient(to top, rgba(8,7,9,.98) 0%, rgba(8,7,9,.35) 28%, transparent 58%);
}
.mp-hero-inner {
  position: relative; z-index: 2;
  flex: 1; display: flex; align-items: center;
  padding: 130px 0 68px;
}
.mp-hero-content { max-width: 680px; position: relative; }
.mp-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 9.5px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold-1); font-weight: 700; margin-bottom: 20px;
}
.mp-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--gold-2); flex-shrink: 0;
}
.mp-hero-name {
  font-size: clamp(76px, 11vw, 152px); font-weight: 900;
  letter-spacing: -5px; line-height: 0.87;
  margin: 0 0 22px; color: #fff;
}
.mp-hero-tagline {
  font-size: clamp(14px, 1.65vw, 17px); color: rgba(255,255,255,.55);
  max-width: 440px; line-height: 1.68; margin-bottom: 34px;
  font-style: italic;
}
.mp-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.mp-age-deco {
  position: absolute; top: -24px; right: -80px;
  font-size: clamp(130px, 19vw, 290px);
  font-weight: 900; letter-spacing: -8px; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,175,55,.1);
  pointer-events: none; user-select: none; z-index: -1;
}

/* Vital Strip */
.mp-vital-strip {
  position: relative; z-index: 3;
  background: rgba(8,7,9,.9); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(212,175,55,.14);
}
.mp-vital-inner {
  display: flex; align-items: stretch;
  overflow-x: auto; scrollbar-width: none;
}
.mp-vital-inner::-webkit-scrollbar { display: none; }
.mp-vital-item {
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 28px; flex-shrink: 0;
}
.mp-vital-item:not(:last-child) { border-right: 1px solid rgba(212,175,55,.1); }
.mp-vital-label {
  font-size: 8.5px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.33); font-weight: 600;
}
.mp-vital-val { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.86); }

/* Chapter Sections */
.mp-body { padding: 80px 0 0; }
.mp-chapter-section { padding: 68px 0; }
.mp-chapter {
  display: grid; grid-template-columns: 104px 1fr; gap: 0 52px;
  max-width: 840px;
}
.mp-chapter-marker {
  display: flex; flex-direction: column; align-items: flex-start; padding-top: 6px;
}
.mp-chapter-num {
  font-size: 64px; font-weight: 900; letter-spacing: -3px; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(212,175,55,.24); display: block;
  margin-bottom: 12px;
}
.mp-chapter-vert {
  font-size: 8.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--pink-1); font-weight: 700;
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.mp-chapter-body h2 {
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 700;
  letter-spacing: -0.6px; margin: 0 0 20px; color: #f0eae2; line-height: 1.2;
}
.mp-chapter-body p {
  font-size: 15.5px; line-height: 1.78; color: rgba(255,255,255,.58); margin: 0 0 16px;
}
.mp-chapter-body p:last-child { margin-bottom: 0; }

/* Pull Quote */
.mp-pull-quote {
  padding: 72px 0; overflow: hidden;
  background: linear-gradient(135deg, rgba(236,30,147,.042), rgba(212,175,55,.038));
  border-top: 1px solid rgba(212,175,55,.1);
  border-bottom: 1px solid rgba(212,175,55,.1);
}
.mp-pq-inner { max-width: 760px; margin: 0 auto; text-align: center; padding: 0 32px; }
.mp-pq-mark {
  display: block; font-size: 96px; line-height: 0.55;
  color: var(--pink-1); opacity: 0.2; font-family: Georgia, serif;
  margin-bottom: 26px; user-select: none;
}
.mp-pq-text {
  font-size: clamp(17px, 2.4vw, 25px); font-weight: 500;
  line-height: 1.52; color: #ede8e0; margin: 0 0 20px;
  font-style: italic; letter-spacing: -0.2px;
}
.mp-pq-attr { font-size: 9.5px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-2); font-weight: 700; }

/* Dossier */
.mp-dossier-section { padding: 60px 0 70px; }
.mp-dossier { max-width: 840px; border: 1px solid rgba(212,175,55,.2); border-radius: 18px; overflow: hidden; }
.mp-dossier-head {
  background: rgba(212,175,55,.055); border-bottom: 1px solid rgba(212,175,55,.14);
  padding: 18px 28px; display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
}
.mp-dossier-title { font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-2); font-weight: 700; flex: 1; min-width: 0; }
.mp-dossier-code { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.26); }
.mp-dossier-stamp {
  font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pink-1); font-weight: 700;
  border: 1px solid rgba(236,30,147,.38); border-radius: 4px; padding: 3px 9px;
}
.mp-dossier-grid { display: grid; grid-template-columns: 1fr 1fr; padding: 8px 0; }
.mp-dossier-item { padding: 16px 28px; border-bottom: 1px solid rgba(212,175,55,.07); }
.mp-dossier-item:nth-child(odd) { border-right: 1px solid rgba(212,175,55,.07); }
.mp-dossier-key {
  display: block; font-size: 8.5px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--pink-1); font-weight: 700; margin-bottom: 6px;
}
.mp-dossier-val { font-size: 13.5px; color: rgba(255,255,255,.8); line-height: 1.5; }
.mp-dossier-footer { padding: 18px 28px; border-top: 1px solid rgba(212,175,55,.1); background: rgba(0,0,0,.2); }
.mp-dossier-footer p { font-size: 13.5px; font-style: italic; color: rgba(255,255,255,.48); line-height: 1.65; margin: 0; }

/* Raw Reveal */
.mp-raw-section { padding: 60px 0 48px; }
.mp-raw-inner { display: grid; grid-template-columns: 1fr 1.7fr; gap: 60px; align-items: center; max-width: 840px; }
.mp-raw-photo-wrap { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; }
.mp-raw-photo-wrap .photo-reveal-wrapper { position: absolute; inset: 0; border-radius: 0; overflow: hidden; }
.mp-raw-photo-wrap .photo-glam { width: 100%; height: 100%; aspect-ratio: unset; border-radius: 0; object-fit: cover; object-position: top center; }
.mp-raw-photo-wrap .photo-bare { border-radius: 0; }
.mp-raw-text .eyebrow { margin-bottom: 16px; }
.mp-raw-text h2 { font-size: clamp(26px, 3vw, 42px); font-weight: 700; letter-spacing: -0.8px; margin: 0 0 16px; line-height: 1.15; }
.mp-raw-text p { font-size: 15.5px; line-height: 1.72; color: rgba(255,255,255,.55); margin-bottom: 28px; }

/* Studio Gallery */
.mp-gallery-section { padding: 56px 0 68px; }
.mp-gallery { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 32px; }
/* Chloe: 2x2 photo grid + tall video spanning both rows beside it */
.page-chloe .mp-gallery {
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.page-chloe .mp-gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.page-chloe .mp-gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.page-chloe .mp-gallery-item:nth-child(3) { grid-column: 1; grid-row: 2; }
.page-chloe .mp-gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
.page-chloe .mp-gallery-video {
  grid-column: 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}
.mp-gallery-item { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 3/4; background: #0f0d18; }
.mp-gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .65s ease; }
.mp-gallery-item:hover img { transform: scale(1.05); }
.mp-gallery-lbl {
  position: absolute; bottom: 10px; left: 10px;
  font-size: 8.5px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.52); font-weight: 700;
  background: rgba(8,7,9,.68); padding: 4px 10px; border-radius: 6px;
}

/* Connections */
.mp-connections-section { padding: 44px 0 16px; }
.mp-connections-inner { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.mp-connections-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.28); font-weight: 600; }
.mp-connections-nodes { display: flex; align-items: center; }
.mp-cn-node { display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none; padding: 4px 14px; }
.mp-cn-photo { width: 62px; height: 62px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(212,175,55,.16); transition: border-color .25s ease; }
.mp-cn-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.mp-cn-node:hover .mp-cn-photo { border-color: rgba(212,175,55,.55); }
.mp-cn-node.mp-cn-active .mp-cn-photo { border-color: var(--pink-1); box-shadow: 0 0 0 3px rgba(236,30,147,.14); }
.mp-cn-name { font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.32); font-weight: 600; }
.mp-cn-node.mp-cn-active .mp-cn-name { color: rgba(255,255,255,.82); }
.mp-cn-line { width: 48px; height: 1px; background: rgba(212,175,55,.14); margin-bottom: 38px; }
.mp-connections-cta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Responsive */
@media (max-width: 860px) {
  .mp-chapter { grid-template-columns: 1fr; gap: 16px; }
  .mp-chapter-marker { flex-direction: row; align-items: center; gap: 14px; }
  .mp-chapter-vert { writing-mode: horizontal-tb; transform: none; }
  .mp-chapter-num { font-size: 44px; margin-bottom: 0; }
  .mp-raw-inner { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 32px; }
  .mp-dossier-grid { grid-template-columns: 1fr; }
  .mp-dossier-item:nth-child(odd) { border-right: none; }
  .mp-gallery { grid-template-columns: repeat(2,1fr); }
  .page-chloe .mp-gallery {
    grid-template-columns: repeat(2,1fr);
    grid-template-rows: auto auto auto;
  }
  .page-chloe .mp-gallery-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .page-chloe .mp-gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .page-chloe .mp-gallery-item:nth-child(3) { grid-column: 1; grid-row: 2; }
  .page-chloe .mp-gallery-item:nth-child(4) { grid-column: 2; grid-row: 2; }
  .page-chloe .mp-gallery-video {
    grid-column: 1 / 3;
    grid-row: 3;
    aspect-ratio: 4/5;
    margin-top: 4px;
  }
  .mp-age-deco { right: -20px; }
}
@media (max-width: 580px) {
  .mp-hero { min-height: 74vh; }
  .mp-hero-inner { padding: 108px 0 52px; }
  .mp-hero-name { letter-spacing: -3px; }
  .mp-vital-item { padding: 14px 18px; }
  .mp-chapter-section { padding: 48px 0; }
  .mp-pull-quote { padding: 50px 0; }
  .mp-pq-inner { padding: 0 18px; }
  .mp-gallery { gap: 8px; }
  .mp-gallery-section { padding: 40px 0 52px; }
  .mp-dossier { border-radius: 14px; }
  .mp-raw-inner { max-width: 100%; }
}


/* ===================================================
   MODEL PAGE â€” FIXES & ENHANCEMENTS v2
   =================================================== */

/* --- Fix: center content blocks inside full-width wrap --- */
.mp-chapter { margin: 0 auto; }
.mp-dossier { margin: 0 auto; }
.mp-raw-inner { margin: 0 auto; }

/* --- Fix: age deco â€” more visible stroke --- */
.mp-age-deco {
  -webkit-text-stroke: 1.5px rgba(212,175,55,.22);
  color: transparent;
  letter-spacing: -6px;
}

/* --- Chapter inline photo (editorial float) --- */
.mp-ch-img {
  float: right;
  width: 42%;
  max-width: 270px;
  aspect-ratio: 2/3;
  border-radius: 14px;
  overflow: hidden;
  margin: 6px 0 24px 36px;
  position: relative;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.7);
}
.mp-ch-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.mp-chapter-body::after { content: ""; display: table; clear: both; }

/* --- Fix: mp-body bottom padding --- */
.mp-body { padding: 72px 0; }

/* --- Fix: reduce gap between chapter sections --- */
.mp-chapter-section { padding: 56px 0; }

/* --- Fix: hero â€” increase bg image contrast, darken overlay more --- */
.mp-hero-bg img {
  opacity: 0.52;
  filter: saturate(0.65) contrast(1.12) brightness(0.9);
}

/* --- Fix: vital strip â€” tighter on mobile, attached to hero --- */
.mp-vital-strip {
  border-top: 1px solid rgba(212,175,55,.18);
  border-bottom: 1px solid rgba(212,175,55,.08);
}

/* --- Fix: mp-hero on very small screens --- */
@media (max-width: 440px) {
  .mp-hero-name { font-size: clamp(60px, 15vw, 90px); letter-spacing: -2px; }
  .mp-age-deco { display: none; }
  .mp-hero-tagline { font-size: 13.5px; }
}

/* --- Fix: chapter photo â€” responsive --- */
@media (max-width: 700px) {
  .mp-ch-img {
    float: none;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    margin: 0 0 24px 0;
  }
}

/* --- Fix: chapter responsive --- */
@media (max-width: 860px) {
  .mp-chapter { gap: 14px 0; }
  .mp-body { padding: 52px 0; }
}

/* --- Fix: lifestyle editorial on mobile â€” CRITICAL ---
   Prevents caption overlay from covering the image.
   Makes the editorial strip a stack: image on top, caption below.
   Applied at 580px to match existing model page mobile breakpoint. */
@media (max-width: 580px) {
  .lifestyle-editorial { margin: 24px 0 48px; padding: 0 14px; }

  /* Remove fixed height so inner can expand to image + caption */
  .lifestyle-editorial-inner {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    border-radius: 18px;
    background: #0d0b16;
    box-shadow: 0 20px 60px -20px rgba(0,0,0,.8);
  }

  /* eslide: block not grid-stacked */
  .lifestyle-editorial-inner .eslide {
    opacity: 1 !important;
    pointer-events: auto !important;
    display: none;
    grid-area: auto;
  }
  .lifestyle-editorial-inner .eslide.active { display: block; }

  /* Image: in-flow, fixed height */
  .lifestyle-editorial-inner .eslide > img {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    height: 58vw !important;
    min-height: 200px !important;
    max-height: 290px !important;
    object-fit: cover !important;
    object-position: center 30% !important;
    display: block !important;
    border-radius: 18px 18px 0 0;
    transform: none !important;
    transition: none !important;
  }
  .lifestyle-editorial-inner:hover img { transform: none !important; }

  /* Hide overlay â€” not needed when caption is below */
  .lifestyle-editorial-inner .lifestyle-editorial-overlay { display: none !important; }

  /* Caption: static, below image */
  .lifestyle-editorial-inner .lifestyle-editorial-caption {
    position: static !important;
    background: #0d0b16;
    border-top: 1px solid rgba(212,175,55,.1);
    border-radius: 0 0 18px 18px;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 16px 18px 20px !important;
    gap: 10px !important;
    background: linear-gradient(to bottom, rgba(212,175,55,.03), transparent) #0d0b16;
  }
  .lifestyle-editorial-inner .lec-left h3 { font-size: clamp(18px, 5vw, 26px) !important; }
  .lifestyle-editorial-inner .lec-right {
    text-align: left !important;
    align-items: flex-start !important;
    max-width: 100% !important;
  }

  /* Slider arrows: stay on image */
  .lifestyle-editorial-inner .eslider-prev,
  .lifestyle-editorial-inner .eslider-next {
    position: absolute; top: 29vw; z-index: 5;
    width: 34px; height: 34px;
  }
  .lifestyle-editorial-inner .eslider-prev { left: 8px; }
  .lifestyle-editorial-inner .eslider-next { right: 8px; }

  /* Dots: below caption */
  .lifestyle-editorial-inner .eslider-dots {
    position: static !important;
    bottom: auto !important; right: auto !important;
    display: flex; justify-content: center;
    gap: 8px; padding: 10px 0 4px;
  }

  /* mp-connections responsive */
  .mp-connections-nodes { flex-wrap: wrap; justify-content: center; }
  .mp-cn-line { display: none; }
}


/* --- Fix: age deco visible on mobile --- */
@media (max-width: 580px) {
  .mp-age-deco {
    display: block !important;
    font-size: clamp(88px, 26vw, 124px);
    top: -14px;
    right: -10px;
    letter-spacing: -4px;
    -webkit-text-stroke: 1.5px rgba(212,175,55,.24);
  }
}
@media (max-width: 440px) {
  .mp-age-deco {
    display: block !important;
    font-size: clamp(72px, 22vw, 96px);
    top: -10px;
    right: -6px;
    letter-spacing: -3px;
  }
}

/* === POLISH PASS v3 === */

/* 1. Chapter image — natural ratio, no forced crop */
.mp-ch-img {
  float: right;
  width: 38%;
  max-width: 250px;
  border-radius: 14px;
  overflow: hidden;
  margin: 4px 0 22px 32px;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,.65);
}
.mp-ch-img img {
  position: static !important;
  inset: auto !important;
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* 2. Vital strip — fill full width, evenly distributed */
.mp-vital-item {
  flex: 1;
  min-width: 100px;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,.1) !important;
}
.mp-vital-item:last-child { border-right: none !important; }

/* 3. Reduce section gaps */
.mp-body          { padding: 48px 0; }
.mp-chapter-section { padding: 36px 0; }
.mp-dossier-section { padding: 28px 0 44px; }
.mp-raw-section   { padding: 36px 0 28px; }
.mp-gallery-section { padding: 36px 0 48px; }
.mp-pull-quote    { padding: 52px 0; }
.mp-connections-section { padding: 28px 0 40px; }

/* Mobile: chapter image full-width landscape */
@media (max-width: 700px) {
  .mp-ch-img {
    float: none;
    width: 100%;
    max-width: 100%;
    margin: 0 0 22px 0;
  }
  .mp-ch-img img {
    max-height: 220px;
    object-position: center 30%;
  }
}

/* Mobile: vital strip — allow scroll, don't force flex:1 on tiny screens */
@media (max-width: 580px) {
  .mp-vital-item {
    flex: 0 0 auto !important;
    min-width: 90px;
    text-align: left;
  }
}

/* ===================================================
   CHLOE — STORY MAP SECTION
   =================================================== */
.chloe-story-section { padding: 60px 0 48px; }
.chloe-story-section .section-head { margin-bottom: 48px; }

/* ===================================================
   CHLOE — INTERACTIVE STORY ("stories" tabs + stage)
   =================================================== */

.csn-stories { max-width: 900px; margin: 0 auto; }

/* Tells people the tabs are tappable — otherwise it's just numbers and lines */
.csn-hint {
  display: block;
  text-align: center;
  font-size: 10.5px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.34);
  font-weight: 600;
  margin-bottom: 18px;
}

/* ---------- Tab rail ---------- */
.csn-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.csn-tab {
  appearance: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: flex-start; gap: 8px;
  padding: 10px 12px 14px;
  margin: -10px -12px 0;
  border: 1px solid rgba(212,175,55,.14);
  border-radius: 14px;
  background: rgba(212,175,55,.03);
  text-align: left;
  opacity: .5;
  transition: opacity .3s ease, background .3s ease, border-color .3s ease;
}
.csn-tab:hover { opacity: .78; border-color: rgba(212,175,55,.28); }
.csn-tab.is-active {
  opacity: 1;
  background: rgba(212,175,55,.07);
  border-color: rgba(212,175,55,.4);
}

.csn-tab-bar {
  position: relative;
  width: 100%; height: 2.5px;
  background: rgba(255,255,255,.12);
  border-radius: 999px;
  overflow: hidden;
}
.csn-tab-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold-2), var(--pink-1));
  transform: scaleX(0);
  transform-origin: left center;
  border-radius: 999px;
  transition: transform .4s ease; /* just a clean snap when switching, no countdown */
}
/* Static fill — marks the active chapter. No auto-advance: these
   texts run long, a timer would cut readers off mid-paragraph
   (and there's no hover-pause equivalent on mobile touch). */
.csn-tab.is-active .csn-tab-fill {
  transform: scaleX(1);
}

.csn-tab-num {
  font-size: 10px; letter-spacing: 1.5px; font-weight: 800;
  color: var(--gold-1);
}
.csn-tab-label {
  font-size: 12px; letter-spacing: .3px; font-weight: 600;
  color: #f0eae2;
  line-height: 1.3;
}

/* ---------- Stage: only the active panel takes up space —
   height always matches its own content, never a taller sibling
   (stacking all 4 in one grid cell left big empty gaps under
   shorter panels, e.g. the photo-less spotlight one) ---------- */
.csn-stage { position: relative; }
.csn-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.csn-panel.is-active {
  display: grid;
  animation: csnPanelIn .45s ease both;
}
@keyframes csnPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Note: the global `@media (prefers-reduced-motion: reduce)` rule near
   the top of this file already collapses this animation's duration. */

.csn-panel-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.csn-panel-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 18%;
  display: block;
  transition: transform .8s ease;
}
.csn-panel.is-active .csn-panel-visual img { transform: scale(1.02); }
.csn-photo-tag {
  position: absolute; left: 12px; bottom: 12px;
  font-size: 8.5px; letter-spacing: 1.8px; text-transform: uppercase;
  color: rgba(255,255,255,.65); font-weight: 700;
  background: rgba(8,7,9,.55); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 5px 11px;
}

.csn-panel-title {
  font-size: clamp(20px, 2.2vw, 27px); font-weight: 700;
  letter-spacing: -0.4px; color: #f0eae2;
  margin: 0 0 16px; line-height: 1.2;
}
.csn-body {
  font-size: 15px; line-height: 1.76; color: rgba(255,255,255,.55);
  margin: 0 0 13px;
}
.csn-body:last-of-type { margin-bottom: 0; }
.csn-quote {
  font-size: 14px; font-style: italic; color: rgba(255,255,255,.36);
  border-left: 2px solid var(--pink-1); padding-left: 14px;
  margin: 18px 0 0; line-height: 1.65;
}

/* ---------- Panel 4: spotlight — no photo, centered finale ---------- */
.csn-panel-spotlight {
  grid-template-columns: 1fr;
  padding: 20px 0;
}
.csn-spotlight-inner {
  max-width: 620px; margin: 0 auto; text-align: center;
  position: relative;
}
.csn-spotlight-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 90px; line-height: 1;
  background: linear-gradient(180deg, var(--gold-1), var(--pink-1));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  opacity: .5; margin-bottom: -10px;
}
.csn-panel-spotlight .csn-panel-title { text-align: center; }
.csn-panel-spotlight .csn-quote {
  border-left: none; padding-left: 0; text-align: center;
  border-top: 1px solid rgba(212,175,55,.14); padding-top: 18px; margin-top: 20px;
}

/* Respect users who don't want auto-motion */
@media (prefers-reduced-motion: reduce) {
  .csn-tab-fill { transition: none !important; }
}

/* Responsive */
@media (max-width: 760px) {
  .csn-tabs { gap: 8px; margin-bottom: 30px; }
  .csn-tab {
    align-items: center; text-align: center;
    padding: 8px 6px 12px; margin: -8px -6px 0;
  }
  .csn-tab-num { font-size: 9px; }
  .csn-tab-label {
    font-size: 8.5px; letter-spacing: .2px; line-height: 1.25;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .csn-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .csn-panel-visual { aspect-ratio: 4 / 5; }
  .csn-spotlight-mark { font-size: 70px; }
}

/* ===================================================
   CHLOE PAGE — HERO & VITAL STRIP OVERRIDES
   =================================================== */

/* Hero image — lighter overlay so face is visible */
.page-chloe .mp-hero-bg img {
  opacity: 0.72;
  object-position: center 18%;
  filter: saturate(0.45) contrast(1.08) brightness(0.72);
}

/* Push hero content to BOTTOM so text doesn't sit on her face */
.page-chloe .mp-hero-inner {
  justify-content: flex-end;
  padding-bottom: 32px;
}
.page-chloe .mp-hero-content {
  text-align: left;
  max-width: 640px;
}
.page-chloe .mp-hero-name {
  font-size: clamp(68px, 13vw, 130px);
  line-height: .88;
}
.page-chloe .mp-age-deco {
  top: auto;
  bottom: 110px;
  right: 0;
  left: auto;
  font-size: clamp(100px, 22vw, 200px);
  opacity: .55;
}

/* Dark gradient at bottom so text stays readable */
.page-chloe .mp-hero::after {
  content: "";
  position: absolute;
  inset: 50% 0 0 0;
  background: linear-gradient(to bottom, transparent, rgba(8,7,9,.82) 75%);
  pointer-events: none;
  z-index: 1;
}
.page-chloe .mp-hero-inner { z-index: 2; }

/* ---- Vital strip — floating rounded luxury box ---- */
.page-chloe .mp-vital-strip {
  background: transparent;
  border: none;
  padding: 0 0 0;
  position: relative;
  z-index: 3;
  margin-top: -1px;
}
.page-chloe .mp-vital-strip .wrap {
  padding-top: 0;
  padding-bottom: 32px;
}
.page-chloe .mp-vital-inner {
  background: linear-gradient(135deg, rgba(18,12,28,.97) 0%, rgba(10,8,18,.99) 100%);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 20px;
  padding: 20px 32px;
  margin: -30px 0 0;
  box-shadow:
    0 24px 64px -16px rgba(0,0,0,.75),
    0 0 0 1px rgba(212,175,55,.07),
    inset 0 1px 0 rgba(212,175,55,.12);
  gap: 0;
}
.page-chloe .mp-vital-item {
  padding: 10px 20px;
  border-right: 1px solid rgba(212,175,55,.1);
  border-bottom: none;
}
.page-chloe .mp-vital-item:last-child { border-right: none; }
.page-chloe .mp-vital-label {
  font-size: 8px;
  letter-spacing: 2.5px;
  color: var(--gold-2);
  opacity: .65;
}
.page-chloe .mp-vital-val {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.1px;
  color: #f0eae2;
}

/* Mobile vital strip */
@media (max-width: 700px) {
  .page-chloe .mp-vital-inner {
    margin: -18px 12px 0;
    padding: 14px 16px;
    border-radius: 16px;
    flex-wrap: wrap;
    gap: 0;
  }
  .page-chloe .mp-vital-item {
    flex: 0 0 50%;
    min-width: 0;
    padding: 10px 14px;
    border-right: none;
    border-bottom: 1px solid rgba(212,175,55,.08);
  }
  .page-chloe .mp-vital-item:nth-child(odd) {
    border-right: 1px solid rgba(212,175,55,.08);
  }
  .page-chloe .mp-vital-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ===================================================
   CHLOE HERO — FULL REDESIGN v2
   =================================================== */

/* Image: significantly lighter */
.page-chloe .mp-hero-bg img {
  opacity: 0.90 !important;
  object-position: center 12% !important;
  filter: saturate(0.32) contrast(0.96) brightness(0.60) !important;
}

/* Stronger bottom gradient for text readability */
.page-chloe .mp-hero::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 38%,
    rgba(8,7,9,.55) 62%,
    rgba(8,7,9,.90) 85%,
    rgba(8,7,9,1) 100%
  ) !important;
}

/* Hero inner — push all content to the very bottom */
.page-chloe .mp-hero-inner {
  justify-content: flex-end !important;
  padding-bottom: 52px !important;
}

/* Hero content — left-aligned, full width editorial layout */
.page-chloe .mp-hero-content {
  text-align: left !important;
  max-width: 100% !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Eyebrow — small caps, pink, top */
.page-chloe .mp-eyebrow {
  font-size: 9px;
  letter-spacing: 5px;
  color: var(--pink-1);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  order: 0;
}

/* Name — huge, bold, left, spans wide */
.page-chloe .mp-hero-name {
  font-size: clamp(88px, 19vw, 190px) !important;
  line-height: 0.84 !important;
  letter-spacing: -5px !important;
  color: #fff !important;
  margin: 0 0 16px !important;
  order: 1;
}

/* Tagline — below name */
.page-chloe .mp-hero-tagline {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.55);
  max-width: 440px;
  margin: 0 0 24px !important;
  order: 2;
}

/* CTAs */
.page-chloe .mp-hero-ctas {
  order: 3;
  margin-bottom: 0;
}

/* Age deco — large gold number, right side, clearly visible */
.page-chloe .mp-age-deco {
  position: absolute !important;
  top: auto !important;
  bottom: 44px !important;
  right: 0 !important;
  left: auto !important;
  font-size: clamp(140px, 26vw, 240px) !important;
  -webkit-text-stroke: 2.5px rgba(212,175,55,.60) !important;
  color: rgba(212,175,55,.06) !important;
  letter-spacing: -8px !important;
  line-height: 1 !important;
  z-index: 2;
}

/* Vital strip — clean separation from hero, no negative margin overlap */
.page-chloe .mp-vital-strip {
  padding: 32px 0 0 !important;
  background: transparent !important;
  border: none !important;
}
.page-chloe .mp-vital-strip .wrap {
  padding-bottom: 36px !important;
}
.page-chloe .mp-vital-inner {
  margin-top: 0 !important;
  background: linear-gradient(135deg, rgba(16,11,26,.97) 0%, rgba(9,7,16,.99) 100%) !important;
  border: 1px solid rgba(212,175,55,.22) !important;
  border-radius: 20px !important;
  padding: 18px 28px !important;
  box-shadow:
    0 20px 56px -12px rgba(0,0,0,.80),
    0 0 0 1px rgba(212,175,55,.06),
    inset 0 1px 0 rgba(212,175,55,.14) !important;
}
.page-chloe .mp-vital-item {
  padding: 10px 22px !important;
  border-bottom: none !important;
  border-right: 1px solid rgba(212,175,55,.1) !important;
}
.page-chloe .mp-vital-item:last-child { border-right: none !important; }
.page-chloe .mp-vital-label {
  font-size: 8px !important;
  letter-spacing: 2.5px !important;
  color: var(--gold-2) !important;
  opacity: .6 !important;
}
.page-chloe .mp-vital-val {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #f0eae2 !important;
}

@media (max-width: 700px) {
  .page-chloe .mp-hero-name { letter-spacing: -3px !important; }
  .page-chloe .mp-age-deco { font-size: clamp(100px, 28vw, 140px) !important; bottom: 36px !important; }
  .page-chloe .mp-vital-inner {
    flex-wrap: wrap !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
  }
  .page-chloe .mp-vital-item {
    flex: 0 0 50% !important;
    min-width: 0 !important;
    padding: 10px 14px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(212,175,55,.08) !important;
  }
  .page-chloe .mp-vital-item:nth-child(odd) { border-right: 1px solid rgba(212,175,55,.08) !important; }
  .page-chloe .mp-vital-item:nth-last-child(-n+2) { border-bottom: none !important; }
}

/* ===================================================
   CHLOE HERO — FINAL CLEAN OVERRIDE
   Overrides everything above with clean rules
   =================================================== */

/* Image: light, colorful, minimal filter */
.page-chloe .mp-hero-bg img {
  opacity: 0.88 !important;
  object-position: center 10% !important;
  filter: brightness(0.68) !important;
}

/* Bottom gradient — readable text, not too heavy */
.page-chloe .mp-hero::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 30%,
    rgba(8,7,9,.4) 55%,
    rgba(8,7,9,.88) 78%,
    rgba(8,7,9,1) 100%
  ) !important;
}

/* Age deco — TOP RIGHT corner, away from name */
.page-chloe .mp-age-deco {
  position: absolute !important;
  top: 36px !important;
  right: 28px !important;
  bottom: auto !important;
  left: auto !important;
  font-size: clamp(72px, 11vw, 110px) !important;
  line-height: 1 !important;
  letter-spacing: -2px !important;
  -webkit-text-stroke: 2px rgba(248,233,184,.70) !important;
  color: rgba(248,233,184,.10) !important;
  z-index: 4 !important;
}

/* Hero inner — push to bottom */
.page-chloe .mp-hero-inner {
  justify-content: flex-end !important;
  padding-bottom: 44px !important;
  z-index: 3 !important;
}

/* Hero content block */
.page-chloe .mp-hero-content {
  text-align: left !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

/* Eyebrow */
.page-chloe .mp-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 9px !important;
  letter-spacing: 5px !important;
  color: var(--pink-1) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  margin: 0 0 14px !important;
}
.page-chloe .mp-eyebrow::before {
  content: "" !important;
  display: inline-block !important;
  width: 28px !important;
  height: 1.5px !important;
  background: var(--pink-1) !important;
  flex-shrink: 0 !important;
}

/* Name — large, left, clear of the 22 */
.page-chloe .mp-hero-name {
  font-size: clamp(64px, 13vw, 148px) !important;
  line-height: 0.87 !important;
  letter-spacing: -4px !important;
  color: #fff !important;
  margin: 0 0 18px !important;
  text-shadow: 0 4px 32px rgba(0,0,0,.4) !important;
}

/* Tagline */
.page-chloe .mp-hero-tagline {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,.52) !important;
  max-width: 400px !important;
  margin: 0 0 28px !important;
}

/* CTAs — extra bottom breathing room before vital strip */
.page-chloe .mp-hero-ctas {
  margin-bottom: 0 !important;
}

/* Vital strip — clear gap from hero content */
.page-chloe .mp-vital-strip {
  padding: 36px 0 0 !important;
  background: transparent !important;
  border: none !important;
}
.page-chloe .mp-vital-strip .wrap { padding-bottom: 40px !important; }
.page-chloe .mp-vital-inner {
  margin: 0 !important;
  background: linear-gradient(135deg, rgba(16,11,26,.97), rgba(9,7,16,.99)) !important;
  border: 1px solid rgba(212,175,55,.22) !important;
  border-radius: 20px !important;
  padding: 18px 24px !important;
  box-shadow:
    0 20px 56px -12px rgba(0,0,0,.80),
    inset 0 1px 0 rgba(212,175,55,.14) !important;
}
.page-chloe .mp-vital-item {
  padding: 10px 20px !important;
  border-bottom: none !important;
  border-right: 1px solid rgba(212,175,55,.1) !important;
}
.page-chloe .mp-vital-item:last-child { border-right: none !important; }
.page-chloe .mp-vital-label {
  font-size: 8px !important;
  letter-spacing: 2.5px !important;
  color: var(--gold-2) !important;
  opacity: .6 !important;
  margin-bottom: 3px !important;
}
.page-chloe .mp-vital-val {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #f0eae2 !important;
}

/* Mobile */
@media (max-width: 700px) {
  .page-chloe .mp-age-deco {
    font-size: clamp(56px, 14vw, 80px) !important;
    top: 20px !important; right: 16px !important;
  }
  .page-chloe .mp-hero-name { font-size: clamp(60px, 15vw, 90px) !important; letter-spacing: -2px !important; }
  .page-chloe .mp-vital-inner {
    flex-wrap: wrap !important;
    padding: 12px 14px !important;
    border-radius: 16px !important;
  }
  .page-chloe .mp-vital-item {
    flex: 0 0 50% !important; min-width: 0 !important;
    padding: 9px 12px !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(212,175,55,.08) !important;
  }
  .page-chloe .mp-vital-item:nth-child(odd) { border-right: 1px solid rgba(212,175,55,.08) !important; }
  .page-chloe .mp-vital-item:nth-last-child(-n+2) { border-bottom: none !important; }
}

/* ===================================================
   CHLOE HERO — PATCH: age size + gradient fix
   =================================================== */

/* 22 — larger, back to original scale */
.page-chloe .mp-age-deco {
  font-size: clamp(110px, 18vw, 190px) !important;
  top: 24px !important;
  right: 24px !important;
}

/* Remove liquid-glass look — simpler gradient, starts later */
.page-chloe .mp-hero::after {
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 58%,
    rgba(8,7,9,.75) 80%,
    rgba(8,7,9,.97) 100%
  ) !important;
}

/* ===================================================
   CHLOE VITAL STRIP — remove glass/gradient bleed
   =================================================== */

/* Pull strip above the hero ::after overlay */
.page-chloe .mp-vital-strip {
  position: relative !important;
  z-index: 10 !important;
  background: var(--bg) !important;
}

/* Solid box — no gradient, no transparency */
.page-chloe .mp-vital-inner {
  background: #100c1e !important;
}

/* ===================================================
   CHLOE HERO — DEFINITIVE FIX
   Image fades naturally to page bg at the bottom.
   No black bars. No glass.
   =================================================== */

/* Kill ALL previous ::after rules on the hero */
.page-chloe .mp-hero::after { display: none !important; }

/* Gradient lives on the bg wrapper — only over the image */
.page-chloe .mp-hero-bg::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(8,7,9,.70) 72%,
    #080709 100%
  ) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
/* mp-hero-bg must be position:relative for ::after to anchor */
.page-chloe .mp-hero-bg { position: absolute !important; inset: 0 !important; }

/* Text content stays above everything */
.page-chloe .mp-hero-inner { z-index: 3 !important; position: relative !important; }

/* Vital strip — fully transparent, sits on the page bg naturally */
.page-chloe .mp-vital-strip {
  background: transparent !important;
  border: none !important;
  padding: 0 0 0 !important;
  position: relative !important;
  z-index: 3 !important;
  margin-top: 0 !important;
}
.page-chloe .mp-vital-strip .wrap { padding-top: 0 !important; padding-bottom: 40px !important; }

/* The card itself — solid dark, gold border, rounded */
.page-chloe .mp-vital-inner {
  background: #0f0b1d !important;
  border: 1px solid rgba(212,175,55,.22) !important;
  border-radius: 20px !important;
  margin: 0 !important;
  padding: 18px 24px !important;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,.7), inset 0 1px 0 rgba(212,175,55,.12) !important;
}

/* ===================================================
   CHLOE HERO — SIMPLIFIED FINAL (removes all prev hacks)
   =================================================== */

/* Kill every ::after pseudo on hero and hero-bg */
.page-chloe .mp-hero::after,
.page-chloe .mp-hero::before { display: none !important; }
.page-chloe .mp-hero-bg::after,
.page-chloe .mp-hero-bg::before { display: none !important; }

/* Hero bg: image + dark gradient in one background layer */
.page-chloe .mp-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, transparent 45%, #080709 100%) !important;
}
.page-chloe .mp-hero-bg img {
  opacity: 0.88 !important;
  object-position: center 10% !important;
  filter: brightness(0.68) !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

/* Vital strip — zero padding/margin, sits flush */
.page-chloe .mp-vital-strip {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 3 !important;
}
.page-chloe .mp-vital-strip .wrap {
  padding-top: 0 !important;
  padding-bottom: 32px !important;
}
.page-chloe .mp-vital-inner {
  background: #0f0b1d !important;
  border: 1px solid rgba(212,175,55,.22) !important;
  border-radius: 20px !important;
  margin: 0 !important;
  padding: 18px 24px !important;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,.7),
              inset 0 1px 0 rgba(212,175,55,.12) !important;
}

/* ===================================================
   CHLOE HERO — CORRECT GRADIENT APPROACH
   =================================================== */

/* Only kill hero::after — NOT mp-hero-bg::after */
.page-chloe .mp-hero::after,
.page-chloe .mp-hero::before { display: none !important; }

/* Re-enable mp-hero-bg::after — sits ON TOP of image, fades bottom */
.page-chloe .mp-hero-bg::after {
  display: block !important;
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, transparent 40%, #080709 92%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.page-chloe .mp-hero-bg::before { display: none !important; }

/* mp-hero-bg needs position:absolute and overflow:hidden */
.page-chloe .mp-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  background: none !important;
}

/* ===================================================
   CHLOE — NEW HERO SYSTEM (fresh classes, no conflicts)
   =================================================== */

.chloe-hero {
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

/* Photo — fills width, natural fade at bottom */
.chloe-hero-img {
  margin: 0; padding: 0;
  height: 68vh;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.chloe-hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 48%, var(--bg) 100%);
  pointer-events: none;
}
.chloe-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  filter: brightness(0.82);
  display: block;
}

/* Text body — overlaps the bottom of the photo via negative margin */
.chloe-hero-body {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding-bottom: 32px;
}

/* Eyebrow — centered gold line + label */
.chloe-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.che-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,.3), transparent);
}
.che-label {
  font-size: 8.5px;
  letter-spacing: 4.5px;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  flex-shrink: 0;
  opacity: .75;
}

/* Name + age on same row, baseline-aligned */
.chloe-namerow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.chr-name {
  font-size: clamp(72px, 15vw, 160px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -5px;
  color: #fff;
  margin: 0;
}
.chr-age {
  font-size: clamp(60px, 11vw, 120px);
  font-weight: 900;
  line-height: 0.84;
  letter-spacing: -4px;
  -webkit-text-stroke: 2px rgba(212,175,55,.65);
  color: rgba(212,175,55,.07);
  flex-shrink: 0;
  padding-bottom: 6px;
}

/* Tagline */
.chloe-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.42);
  font-style: italic;
  max-width: 420px;
  margin: 0 0 26px;
}

/* CTAs */
.chloe-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Vital strip — clean gold card */
.chloe-vital {
  padding: 28px 0 44px;
}
.chloe-vital-inner {
  display: flex;
  align-items: stretch;
  background: rgba(15,11,29,.98);
  border: 1px solid rgba(212,175,55,.22);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px -12px rgba(0,0,0,.65),
              inset 0 1px 0 rgba(212,175,55,.14);
}
.chloe-vital-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 20px;
  border-right: 1px solid rgba(212,175,55,.1);
}
.chloe-vital-item:last-child { border-right: none; }
.cvi-label {
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  opacity: .6;
}
.cvi-val {
  font-size: 12.5px;
  font-weight: 600;
  color: #f0eae2;
  line-height: 1.3;
}

/* Mobile */
@media (max-width: 700px) {
  .chloe-hero-img { height: 54vw; min-height: 280px; }
  .chloe-hero-body { margin-top: -48px; }
  .chr-name { font-size: clamp(58px, 16vw, 96px); letter-spacing: -3px; }
  .chr-age  { font-size: clamp(48px, 12vw, 80px); }
  .chloe-vital-inner { flex-wrap: wrap; border-radius: 16px; }
  .chloe-vital-item {
    flex: 0 0 50%; min-width: 0;
    border-right: none;
    border-bottom: 1px solid rgba(212,175,55,.08);
  }
  .chloe-vital-item:nth-child(odd)  { border-right: 1px solid rgba(212,175,55,.08); }
  .chloe-vital-item:nth-last-child(-n+2) { border-bottom: none; }
}

/* ===================================================
   CHLOE HERO — BUG FIXES
   =================================================== */

/* Fix 1: figure default margin causes gap at top */
.chloe-hero { margin-top: 0; overflow: hidden; }
.chloe-hero-img {
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

/* Fix 2: age number — solid visible outline style */
.chr-age {
  -webkit-text-stroke: 0 !important;
  color: rgba(212,175,55,.28) !important;
  font-size: clamp(56px, 10vw, 110px) !important;
  font-weight: 900 !important;
  letter-spacing: -3px !important;
  background: linear-gradient(135deg, rgba(212,175,55,.55), rgba(248,233,184,.25)) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  padding-bottom: 4px !important;
}

/* Fix 3: vital strip — ensure it renders correctly */
.chloe-vital { padding: 20px 0 32px !important; }
.chloe-vital-inner {
  display: flex !important;
  width: 100% !important;
  min-height: 56px !important;
  align-items: stretch !important;
}
.chloe-vital-item {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 3px !important;
}
.cvi-label { display: block !important; }
.cvi-val { display: block !important; }

/* Fix 4: reduce giant gap below hero/vital */
.chloe-story-section { padding: 32px 0 40px !important; }
.chloe-story-section .section-head { margin-bottom: 32px !important; }

/* CHLOE HERO — kill section default padding */
.chloe-hero { padding: 0 !important; }

/* CHLOE — gradient lower, more photo visible */
.chloe-hero-img::after {
  background: linear-gradient(to bottom, transparent 65%, var(--bg) 100%) !important;
}

/* CHLOE — photo position slightly higher */
.chloe-hero-img img { object-position: center 8% !important; }

/* CHLOE — photo position slightly lower */
.chloe-hero-img img { object-position: center 28% !important; }

/* CHLOE — gradient even lower, more photo visible at bottom */
.chloe-hero-img::after {
  background: linear-gradient(to bottom, transparent 74%, var(--bg) 100%) !important;
}

/* CHLOE — gradient even lower */
.chloe-hero-img::after {
  background: linear-gradient(to bottom, transparent 82%, var(--bg) 100%) !important;
}

/* CHLOE — show full person, no crop */
.chloe-hero-img {
  background: var(--bg) !important;
  height: 80vh !important;
}
.chloe-hero-img img {
  object-fit: contain !important;
  object-position: center center !important;
  filter: brightness(0.88) !important;
}

/* CHLOE — photo edges blend into dark background on all sides */
.chloe-hero-img::after {
  background:
    linear-gradient(to right,  #080709 0%, transparent 16%, transparent 84%, #080709 100%),
    linear-gradient(to bottom, #080709 0%, transparent 9%,  transparent 78%, #080709 100%) !important;
  z-index: 1 !important;
}

/* ===================================================
   CHLOE — FULL-BLEED HERO, TEXT OVERLAY LEFT
   =================================================== */

.chloe-hero {
  padding: 0 !important;
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

/* Grid keeps layout; photo goes full-bleed behind */
.chloe-split {
  position: relative;
  min-height: 92vh;
  display: grid;
  grid-template-columns: 54% 1fr;
}

/* LEFT — text panel sitting over the gradient */
.chs-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 60px 64px;
  gap: 0;
  position: relative;
  z-index: 2;
}
/* Dark panel behind text — opaque left, dissolves right */
.chs-left::before {
  content: "";
  position: absolute;
  inset: 0;
  right: -20%;
  background: linear-gradient(to right,
    #080709 0%,
    #080709 60%,
    rgba(8,7,9,0.55) 82%,
    transparent 100%
  );
  z-index: -1;
}

/* Eyebrow */
.chs-eyebrow {
  display: inline-block;
  font-size: 8.5px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--pink-1);
  font-weight: 700;
  margin-bottom: 20px;
  padding-left: 2px;
}

/* Name + age */
.chs-namerow {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 20px;
  line-height: 1;
}
.chs-name {
  font-size: clamp(72px, 9vw, 136px);
  font-weight: 900;
  letter-spacing: -4px;
  color: #fff;
  line-height: 0.84;
  margin: 0;
}
.chs-age {
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, rgba(212,175,55,.7), rgba(248,233,184,.35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 8px;
  flex-shrink: 0;
}

/* Divider */
.chs-tagline {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,.4);
  font-style: italic;
  max-width: 380px;
  margin: 0 0 28px;
  border-left: 2px solid rgba(212,175,55,.25);
  padding-left: 16px;
}

/* CTAs */
.chs-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Inline vitals — compact grid */
.chs-vitals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(212,175,55,.14);
  border-radius: 14px;
  overflow: hidden;
}
.chs-vi {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-right: 1px solid rgba(212,175,55,.1);
  border-bottom: 1px solid rgba(212,175,55,.1);
}
.chs-vi:nth-child(even) { border-right: none; }
.chs-vi:nth-last-child(-n+2) { border-bottom: none; }
.chs-vl {
  font-size: 7.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  opacity: .55;
}
.chs-vv {
  font-size: 12px;
  font-weight: 600;
  color: #e8e0d0;
  line-height: 1.3;
}

/* RIGHT — photo shifted right, gap hidden under left gradient */
.chs-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 32%;
  z-index: 0;
}
.chs-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  filter: brightness(0.88);
}

/* Vivien's hero photo reuses vivien-lifestyle.jpg (desk shot) — mirror it
   here only, so the un-mirrored original still shows normally in the
   Lifestyle section further down the page. */
.page-vivien .chs-right img {
  transform: scaleX(-1);
  object-position: 42% 18%;
}

/* Mobile — image top, text below */
@media (max-width: 860px) {
  .chloe-split {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  /* Photo on top, normal flow */
  .chs-right {
    position: relative;
    top: auto; right: auto; bottom: auto; left: auto;
    width: 100%;
    height: 88vw;
    min-height: 320px;
    max-height: 520px;
    order: -1;
  }
  .chs-right img {
    object-position: center 12%;
    filter: brightness(0.92) saturate(1.08);
  }

  /* No overlays on mobile photo */
  .chs-right::before,
  .chs-right::after { display: none; }

  /* Text below the photo */
  .chs-left {
    position: relative;
    padding: 0 24px 48px;
    background: var(--bg);
  }

  /* Separator */

  /* Remove the desktop side-panel gradient */
  .chs-left::before { display: none; }

  /* Pull name/eyebrow tighter */
  .chs-eyebrow { margin-top: 24px; margin-bottom: 12px; }
  .chs-namerow { margin-bottom: 14px; }
  .chs-name { font-size: clamp(52px, 14vw, 88px); letter-spacing: -3px; }
  .chs-tagline { margin-bottom: 20px; font-size: 13px; }
  .chs-ctas { margin-bottom: 24px; }

  /* Stat block mobile tweaks */
  .chs-vitals {
    column-gap: 16px;
    margin-top: 8px;
  }
}

/* ===================================================
   CHLOE — HERO SEPARATOR (desktop + mobile)
   =================================================== */

.chs-sep {
  display: block;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--bg) 0%,
    var(--gold-2) 18%,
    var(--pink-1) 50%,
    var(--gold-2) 82%,
    var(--bg) 100%
  );
  box-shadow: 0 0 24px 4px rgba(236,30,147,0.32), 0 0 10px 1px rgba(212,175,55,0.22);
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

/* ===================================================
   CHLOE — STAT BLOCK (replaces vitals grid)
   =================================================== */

/* 3 stats side by side */
.chs-vitals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 12px;
  row-gap: 0;
  align-items: start;
  margin-top: 8px;
}

.chs-stat {
  text-align: center;
  padding: 0 8px;
}

.chs-stat-full {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(212,175,55,0.18);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  box-sizing: border-box;
}

/* Big value */
.chs-sv {
  display: block;
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
}

/* Label under value — centered, allowed to wrap */
.chs-sl {
  display: block;
  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  font-weight: 600;
  white-space: normal;
  line-height: 1.4;
  margin-top: 5px;
}

/* Gold accent line above each stat — centered */
.chs-stat:not(.chs-stat-full)::before {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: linear-gradient(to right, var(--gold-2), var(--pink-2));
  margin: 0 auto 10px;
}

/* Hook line — centered */
.chs-hook {
  font-size: 11.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold-2) 0%, var(--pink-1) 55%, var(--gold-1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.6;
  display: block;
  text-align: center;
}

@media (max-width: 860px) {
  .chs-sv { font-size: clamp(30px, 7.5vw, 44px); letter-spacing: -1.5px; }
  .chs-sl { font-size: 8px; letter-spacing: 1.2px; }
  .chs-vitals { column-gap: 20px; }
  .chs-hook { font-size: 10px; letter-spacing: 1.2px; }
}

/* ===================================================
   CHLOE — PC LAYOUT FIXES + BUTTON SYMMETRY
   =================================================== */

/* More breathing room left side */
.page-chloe .chs-left {
  padding: 80px 72px 60px 80px !important;
}

/* Stat block: natural width, no artificial cap */
.page-chloe .chs-vitals {
  max-width: 100%;
}

/* Hero CTAs — equal width, text always fits */
.page-chloe .chs-ctas {
  flex-wrap: wrap;
}
.page-chloe .chs-ctas .btn {
  flex: 1 1 auto;
  min-width: max-content;
  text-align: center;
  justify-content: center;
  white-space: nowrap;
}

/* Story section paired buttons — equal width */
.page-chloe .mp-connections-cta {
  display: flex;
  gap: 12px;
}
.page-chloe .mp-connections-cta .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* Mobile fixes */
@media (max-width: 860px) {
  .page-chloe .chs-left {
    padding: 0 28px 48px !important;
  }

  /* Stat block mobile — 2 cols, Gemini spans full width */
  .page-chloe .chs-vitals {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
  }
  /* Gemini = 3rd child, spans both columns */
  .page-chloe .chs-vitals .chs-stat:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(212,175,55,0.1);
    margin-top: 12px;
    padding-top: 14px;
  }
  .page-chloe .chs-vitals .chs-stat:nth-child(3)::before {
    margin: 0 auto 8px;
  }
  .page-chloe .chs-sv {
    font-size: clamp(32px, 8.5vw, 46px);
  }
  .page-chloe .chs-sl {
    font-size: 8px;
    letter-spacing: 0.8px;
    white-space: normal;
  }
  .page-chloe .chs-hook {
    font-size: 9.5px;
    letter-spacing: 1px;
  }

  /* Buttons — stacked, full width, text always fits */
  .page-chloe .chs-ctas {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .page-chloe .chs-ctas .btn {
    width: 100%;
    min-width: unset;
    white-space: nowrap;
    justify-content: center;
    text-align: center;
  }
}

/* ===================================================
   CHLOE — INTELLIGENCE FILE REDESIGN (fixes broken
   mobile header wrap + upgrades visual to match hero)
   =================================================== */

.page-chloe .mp-dossier {
  border: 1px solid rgba(212,175,55,.28);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(212,175,55,.04), transparent 40%);
}

.page-chloe .mp-dossier-head {
  background: linear-gradient(90deg, rgba(212,175,55,.09), rgba(236,30,147,.05));
  padding: 22px 32px;
  gap: 16px;
}
.page-chloe .mp-dossier-title {
  font-size: 11px;
  letter-spacing: 3.5px;
  color: var(--gold-1);
}
.page-chloe .mp-dossier-code {
  font-size: 9.5px;
  color: rgba(255,255,255,.38);
}
.page-chloe .mp-dossier-stamp {
  font-size: 9.5px;
  letter-spacing: 2.5px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(236,30,147,.16), rgba(212,175,55,.12));
  border: 1px solid rgba(236,30,147,.5);
  color: var(--pink-1);
  font-weight: 800;
}

.page-chloe .mp-dossier-item {
  padding: 22px 32px;
  transition: background .25s ease;
}
.page-chloe .mp-dossier-item:hover {
  background: rgba(212,175,55,.045);
}
.page-chloe .mp-dossier-key {
  font-size: 9px;
  letter-spacing: 2.2px;
  color: var(--pink-1);
  margin-bottom: 8px;
}
.page-chloe .mp-dossier-val {
  font-size: 15px;
  color: rgba(255,255,255,.88);
  line-height: 1.55;
  font-weight: 500;
}

.page-chloe .mp-dossier-footer {
  padding: 24px 32px;
  background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(212,175,55,.03));
  border-top: 1px solid rgba(212,175,55,.16);
}
.page-chloe .mp-dossier-footer p {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.62);
}

/* FIX: title was collapsing to ~17px wide and wrapping
   into a vertical sliver next to code+stamp on mobile.
   Force title onto its own full-width row. */
@media (max-width: 640px) {
  .page-chloe .mp-dossier-head {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 22px;
    gap: 10px;
  }
  .page-chloe .mp-dossier-title {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    font-size: 10px;
    letter-spacing: 2.5px;
  }
  .page-chloe .mp-dossier-code,
  .page-chloe .mp-dossier-stamp {
    flex: 0 0 auto;
  }
  .page-chloe .mp-dossier-item {
    padding: 18px 22px;
  }
  .page-chloe .mp-dossier-val {
    font-size: 14px;
  }
  .page-chloe .mp-dossier-footer {
    padding: 20px 22px;
  }
  .page-chloe .mp-dossier-footer p {
    font-size: 13.5px;
  }
}

/* ===================================================
   CHLOE — STUDIO GALLERY VIDEO TILE (boomerang loop,
   sits inline with the 4 studio photos, no label)
   =================================================== */

.mp-gallery-video {
  background: #0c0a0d;
}
.mp-gallery-video .cm-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
}

/* Reverse-playback canvas — sits exactly over the video, hidden until
   the boomerang reverse phase draws cached frames onto it */
.cm-video-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  pointer-events: none;
}

.cm-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  background: rgba(8,7,9,.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 5px 10px 5px 8px;
  z-index: 2;
}
.cm-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pink-1);
  box-shadow: 0 0 8px 2px rgba(236,30,147,.7);
  animation: cmPulse 1.6s ease-in-out infinite;
}
@keyframes cmPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .45; transform: scale(.72); }
}

/* ===================================================
   CHLOE — CTA BAND UPGRADE (funnel to Fanvue + socials)
   =================================================== */

/* Kill the stacked whitespace above this section: lifestyle-editorial
   already ends with 80px margin, so the generic section{padding:90px 0}
   on top of it was piling up to 200px+ of dead space. */
.chloe-cta-section { padding: 32px 0 90px; }

.page-chloe .cta-band { position: relative; }

/* Two small trust badges, side by side, on their own row above the eyebrow */
.page-chloe .cta-badges {
  display: flex; justify-content: center; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.page-chloe .cta-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9px; letter-spacing: 1.6px; text-transform: uppercase;
  font-weight: 800; color: var(--gold-1);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px;
  padding: 6px 13px;
  background: rgba(212,175,55,.06);
  white-space: nowrap;
}
.page-chloe .cta-badge-verified {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
}
.page-chloe .cta-badge-verified svg { color: var(--gold-1); flex-shrink: 0; }

/* Perk chips — quick reasons to click, before the ask */
.page-chloe .cta-perks {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 0 0 30px;
}
.page-chloe .cta-perk {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .3px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: 7px 14px;
  transition: border-color .25s ease, background .25s ease;
}
.page-chloe .cta-perk:hover {
  border-color: rgba(236,30,147,.35);
  background: rgba(236,30,147,.06);
}
.page-chloe .cta-perk::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--pink-1);
  box-shadow: 0 0 6px 1px rgba(236,30,147,.6);
  flex-shrink: 0;
}

/* Main Fanvue button — bigger, glowing, unmissable */
.page-chloe .cta-main-btn {
  font-size: 15px;
  padding: 20px 52px;
  box-shadow: 0 0 0 1px rgba(236,30,147,.25), 0 14px 44px -10px rgba(236,30,147,.65), inset 0 1px 0 rgba(255,255,255,.2);
  animation: ctaPulseGlow 2.6s ease-in-out infinite;
}
@keyframes ctaPulseGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(236,30,147,.25), 0 14px 44px -10px rgba(236,30,147,.65), inset 0 1px 0 rgba(255,255,255,.2); }
  50%      { box-shadow: 0 0 0 1px rgba(236,30,147,.4), 0 18px 56px -8px rgba(236,30,147,.9), inset 0 1px 0 rgba(255,255,255,.25); }
}
@media (prefers-reduced-motion: reduce) {
  .page-chloe .cta-main-btn { animation: none; }
}

.page-chloe .cta-sub {
  display: block;
  font-size: 11px; letter-spacing: .3px;
  color: rgba(255,255,255,.32);
  margin-top: 14px;
}

/* Divider between Fanvue (primary) and free socials (secondary) */
.page-chloe .cta-divider {
  display: flex; align-items: center; gap: 14px;
  max-width: 360px; margin: 36px auto 22px;
}
.page-chloe .cta-divider::before,
.page-chloe .cta-divider::after {
  content: "";
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.25), transparent);
}
.page-chloe .cta-divider span {
  font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase;
  color: rgba(255,255,255,.32); font-weight: 600;
  white-space: nowrap;
}

/* Social row — visually secondary to the Fanvue button, each icon
   tints toward its platform's real color on hover for a richer feel */
.page-chloe .social-row a {
  padding: 10px 18px;
  font-size: 12.5px;
  opacity: .82;
}
.page-chloe .social-row a:hover { opacity: 1; }
.page-chloe .social-row a[href*="instagram"]:hover { border-color: #e1306c; box-shadow: 0 6px 20px -8px rgba(225,48,108,.5); }
.page-chloe .social-row a[href*="instagram"]:hover .icon-badge { background: radial-gradient(circle at 30% 110%, #ffdb73, #fd5949 26%, #d6249f 60%, #285AEB 90%); color: #fff; border-color: transparent; }
.page-chloe .social-row a[href*="x.com"]:hover,
.page-chloe .social-row a[href*="bhmamas"]:hover { border-color: rgba(255,255,255,.4); }
.page-chloe .social-row a[href*="tiktok"]:hover { border-color: #25f4ee; box-shadow: 0 6px 20px -8px rgba(37,244,238,.4); }
.page-chloe .social-row a[href*="tiktok"]:hover .icon-badge { background: #010101; color: #25f4ee; border-color: #fe2c55; }
.page-chloe .social-row a[href*="reddit"]:hover { border-color: #ff4500; box-shadow: 0 6px 20px -8px rgba(255,69,0,.4); }
.page-chloe .social-row a[href*="reddit"]:hover .icon-badge { background: #ff4500; color: #fff; border-color: transparent; }

@media (max-width: 600px) {
  .chloe-cta-section { padding: 20px 0 64px; }
  .page-chloe .cta-perks { gap: 8px; }
  .page-chloe .cta-perk { font-size: 10.5px; padding: 6px 12px; }
  .page-chloe .cta-main-btn { width: 100%; padding: 18px 32px; }
}

/* ===================================================
   HOMEPAGE — HERO, CARDS & CTA UPGRADE
   Base (unscoped) trust-badge / perk / CTA styling,
   modeled on the proven Chloe funnel. Model pages keep
   their own .page-* overrides (higher specificity wins),
   this just gives every other page the same polish.
   =================================================== */

.cta-badges {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px;
}
.cta-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 9px; letter-spacing: 1.6px; text-transform: uppercase;
  font-weight: 800; color: var(--gold-1);
  border: 1px solid rgba(212,175,55,.35);
  border-radius: 999px;
  padding: 6px 13px;
  background: rgba(212,175,55,.06);
  white-space: nowrap;
}
.cta-badge-verified {
  color: rgba(255,255,255,.7);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.03);
}
.cta-badge-verified svg { color: var(--gold-1); flex-shrink: 0; }

.cta-perks { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 30px; }
.cta-perk {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .3px;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: 7px 14px;
  transition: border-color .25s ease, background .25s ease;
}
.cta-perk:hover { border-color: rgba(236,30,147,.35); background: rgba(236,30,147,.06); }
.cta-perk::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--pink-1); box-shadow: 0 0 6px 1px rgba(236,30,147,.6); flex-shrink: 0;
}

.cta-main-btn {
  font-size: 15px; padding: 20px 52px;
  box-shadow: 0 0 0 1px rgba(236,30,147,.25), 0 14px 44px -10px rgba(236,30,147,.65), inset 0 1px 0 rgba(255,255,255,.2);
  animation: ctaPulseGlow 2.6s ease-in-out infinite;
}
@keyframes ctaPulseGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(236,30,147,.25), 0 14px 44px -10px rgba(236,30,147,.65), inset 0 1px 0 rgba(255,255,255,.2); }
  50%      { box-shadow: 0 0 0 1px rgba(236,30,147,.4), 0 18px 56px -8px rgba(236,30,147,.9), inset 0 1px 0 rgba(255,255,255,.25); }
}
@media (prefers-reduced-motion: reduce) { .cta-main-btn { animation: none; } }

.cta-sub { display: block; font-size: 11px; letter-spacing: .3px; color: rgba(255,255,255,.32); margin-top: 14px; }

.cta-divider { display: flex; align-items: center; gap: 14px; max-width: 360px; margin: 36px auto 22px; }
.cta-divider::before, .cta-divider::after {
  content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,.25), transparent);
}
.cta-divider span { font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,.32); font-weight: 600; white-space: nowrap; }

@media (max-width: 600px) {
  .cta-perks { gap: 8px; }
  .cta-perk { font-size: 10.5px; padding: 6px 12px; }
  .cta-main-btn { width: 100%; padding: 18px 32px; }
}

/* ---- Hero: trust badges sit above the eyebrow ---- */
.hero-inner .cta-badges { justify-content: flex-start; margin-bottom: 18px; }
@media (max-width: 980px) { .hero-inner .cta-badges { justify-content: center; } }

/* ---- Hero: cursor-follow spotlight (desktop only, pure decoration) ---- */
.hero-spotlight {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0;
  transition: opacity .4s ease;
  background: radial-gradient(480px circle at var(--sx,50%) var(--sy,50%), rgba(236,30,147,.16), transparent 62%);
}
.hero-spotlight.is-active { opacity: 1; }
@media (max-width: 980px), (hover:none) { .hero-spotlight { display: none; } }

/* ---- Hero stat numbers: count-up + gold shimmer once settled ---- */
.hero-stats div strong.gold-shimmer { animation: shimmer-text 5s linear infinite .6s; }

/* ---- Mama chips: idle float + magnetic parallax tilt (JS-driven via CSS vars) ---- */
.hero-visual { transform-style: preserve-3d; }
.mama-chip {
  transform: translate3d(calc(var(--mx,0) * 1px), calc(var(--my,0) * 1px), 0) rotate(var(--rot,0deg));
  animation: chipFloat 6s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}
.chip-1 { --rot: -9deg; }
.chip-2 { --rot: 7deg; }
.chip-3 { --rot: -3deg; }
@keyframes chipFloat {
  0%, 100% { margin-top: 0px; }
  50%      { margin-top: -10px; }
}
.mama-chip:hover { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce), (max-width: 980px) {
  .mama-chip { animation: none !important; transform: none !important; }
}

/* ---- Spotlight-glow cards: what-card & vip-card track the cursor (JS sets --mx/--my %) ---- */
.what-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  opacity: 0; transition: opacity .35s ease; z-index: 2;
  background: radial-gradient(220px circle at var(--mx,50%) var(--my,50%), rgba(212,175,55,.14), transparent 70%);
}
.what-card:hover::after { opacity: 1; }

/* ---- What-band icon glyphs ---- */
.what-card-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 18px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, rgba(212,175,55,.14), rgba(236,30,147,.08));
  border: 1px solid var(--line-strong); color: var(--gold-1);
}

/* ---- Section divider chip used between hero and marquee ---- */
.scroll-cue {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-size: 9.5px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted-2);
  opacity: .7; z-index: 2;
}
.scroll-cue .sc-line { width: 1px; height: 26px; background: linear-gradient(to bottom, var(--gold-2), transparent); animation: scLine 1.8s ease-in-out infinite; }
@keyframes scLine { 0%,100%{ transform: scaleY(1); opacity:.5; } 50%{ transform: scaleY(1.3); opacity:1; } }
@media (max-width: 700px) { .scroll-cue { display: none; } }

/* ============================================================
   QUIZ HERO HOOK — floating pill in hero section
   ============================================================ */
.quiz-hero-hook {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  padding: 10px 18px 10px 14px;
  background: rgba(236,30,147,.1);
  border: 1px solid rgba(236,30,147,.3);
  border-radius: 999px;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .3s cubic-bezier(.22,1,.36,1);
  max-width: max-content;
}
.quiz-hero-hook:hover {
  background: rgba(236,30,147,.18);
  border-color: rgba(236,30,147,.55);
  transform: translateX(4px);
}
.qhh-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: var(--pink-2);
  box-shadow: 0 0 0 0 rgba(236,30,147,.7);
  animation: hookPulse 2s ease infinite;
}
@keyframes hookPulse {
  0%  { box-shadow: 0 0 0 0 rgba(236,30,147,.7); }
  70% { box-shadow: 0 0 0 8px rgba(236,30,147,0); }
  100%{ box-shadow: 0 0 0 0 rgba(236,30,147,0); }
}
.qhh-text {
  font-size: 13px; font-weight: 600; color: var(--cream);
  letter-spacing: .2px; line-height: 1.3;
}
.qhh-arrow {
  font-size: 15px; color: var(--pink-1); flex-shrink: 0;
  transition: transform .25s ease;
}
.quiz-hero-hook:hover .qhh-arrow { transform: translateX(4px); }

@media (max-width: 700px) {
  .quiz-hero-hook { max-width: 100%; border-radius: 14px; }
  .qhh-text { font-size: 13px; }
}

/* ============================================================
   QUIZ TEASER SECTION — index.html
   ============================================================ */
.quiz-teaser-band {
  padding: 100px 0;
  border-top: 1px solid var(--line);
}
.quiz-teaser-inner {
  display: flex; align-items: center; gap: 60px;
}
.quiz-teaser-text { flex: 1; }
.quiz-teaser-text h2 { font-size: clamp(34px, 5vw, 52px); margin: 12px 0 18px; }
.quiz-teaser-text p  { margin: 0 0 32px; max-width: 400px; }
.quiz-teaser-photos {
  flex: 0 0 auto;
  display: flex; align-items: flex-end; gap: 10px;
}
.qt-chip {
  width: 110px; border-radius: 16px; overflow: hidden;
  position: relative; aspect-ratio: 2/3;
  border: 1px solid rgba(212,175,55,.2);
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.qt-chip:hover { transform: translateY(-8px); }
.qt-chip--mid  { transform: translateY(-16px); }
.qt-chip--mid:hover { transform: translateY(-24px); }
.qt-chip img   { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.qt-chip::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,7,9,.8) 0%, transparent 55%);
}
.qt-chip span {
  position: absolute; bottom: 10px; left: 0; right: 0; z-index: 1;
  text-align: center; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--cream); text-shadow: 0 1px 6px rgba(0,0,0,.8);
}
@media (max-width: 700px) {
  .quiz-teaser-band { padding: 64px 0; }
  .quiz-teaser-inner { flex-direction: column; gap: 36px; }
  .quiz-teaser-photos { width: 100%; justify-content: center; }
  .qt-chip { width: calc(33% - 8px); }
}

/* ============================================================
   MOBILE STICKY CTA BAR
   ============================================================ */

.mobile-fanvue-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: linear-gradient(135deg, #110c1a, #1a0d22);
  border-top: 1px solid rgba(236,30,147,.3);
  padding: 12px 20px 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -8px 32px -8px rgba(0,0,0,.6);
}
.mobile-fanvue-bar-text {
  display: flex; flex-direction: column; gap: 2px;
}
.mobile-fanvue-bar-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-2);
}
.mobile-fanvue-bar-deal {
  font-size: 11px; color: rgba(245,239,226,.65);
}
.mobile-fanvue-bar .btn-fanvue {
  flex-shrink: 0; font-size: 12px; padding: 10px 18px; white-space: nowrap;
}
.mobile-fanvue-bar { opacity: 1; transition: opacity .3s; }
@media (max-width: 640px) {
  .mobile-fanvue-bar { display: flex; }
  /* push page content above bar */
  .site-footer { padding-bottom: 80px; }
  .article-main { padding-bottom: 80px; }
  /* improved article typography on mobile */
  .article-content p { font-size: 1.05rem; line-height: 1.85; }
  .article-lede { font-size: 1.1rem; line-height: 1.75; }
  /* better blog card images */
  .blog-card-img { height: 220px; }
  /* tighter sidebar on mobile */
  .article-sidebar { margin-top: 40px; }
  .sidebar-card { padding: 20px; }
  /* char page mobile tweaks */
  .char-blog-card { gap: 0; }
}

/* ============================================================
   CHARACTER PAGES — Social Presence + Blog Promo
   ============================================================ */

.char-social-section {
  padding: 72px 0 60px;
  border-top: 1px solid var(--line);
}
.char-social-inner {
  display: flex; flex-direction: column; gap: 48px;
}
.char-social-header { max-width: 560px; }
.char-social-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--cream); margin: 10px 0 12px; line-height: 1.2;
}
.char-social-sub { font-size: .95rem; }

.char-social-platforms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.csp-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex; flex-direction: column; gap: 12px;
  text-decoration: none;
  transition: transform .28s cubic-bezier(.22,1,.36,1), border-color .2s, box-shadow .2s;
}
.csp-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 48px -16px rgba(0,0,0,.5);
}
.csp-icon-wrap {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; letter-spacing: .5px;
  color: #fff; flex-shrink: 0;
}
.csp-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.csp-tt { background: #010101; }
.csp-x  { background: #1a1a1a; border: 1px solid rgba(255,255,255,.12); }
.csp-r  { background: #ff4500; }

.csp-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.csp-platform {
  font-size: 13px; font-weight: 700; color: var(--cream); letter-spacing: .2px;
}
.csp-handle { font-size: 11px; color: var(--muted-2); letter-spacing: .3px; }
.csp-action {
  font-size: 12px; font-weight: 700; letter-spacing: .5px;
  color: var(--gold-2); margin-top: auto;
}

/* Blog promo on character page */
.char-blog-promo { }
.char-blog-label {
  display: block;
  font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 16px;
}
.char-blog-card {
  display: flex; gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden; text-decoration: none;
  transition: border-color .2s, box-shadow .2s;
}
.char-blog-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 12px 40px -16px rgba(0,0,0,.5);
}
.char-blog-img {
  width: 200px; flex-shrink: 0;
  object-fit: cover; object-position: center top;
  display: block;
}
.char-blog-text {
  padding: 24px 24px 24px 0;
  display: flex; flex-direction: column; gap: 10px; justify-content: center;
}
.char-blog-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-2);
}
.char-blog-text h3 {
  font-size: 1.2rem; color: var(--cream); line-height: 1.3; letter-spacing: -.3px;
  font-weight: 700;
}
.char-blog-read {
  font-size: .85rem; font-weight: 600; color: var(--pink-1);
  letter-spacing: .3px;
}

@media (max-width: 900px) {
  .char-social-platforms { grid-template-columns: repeat(2, 1fr); }
  .char-blog-img { width: 140px; }
}
@media (max-width: 580px) {
  .char-social-section { padding: 48px 0 40px; }
  .char-social-platforms { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .csp-card { padding: 16px 14px; }
  .char-blog-card { flex-direction: column; }
  .char-blog-img { width: 100%; height: 160px; }
  .char-blog-text { padding: 20px; }
}

/* ============================================================
   BLOG — Listing + Article Pages
   ============================================================ */

/* Blog hero (listing page) */
.blog-hero {
  position: relative;
  min-height: 480px;
  display: flex; align-items: center;
  overflow: hidden;
}
.blog-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
}
.blog-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,7,9,.55) 0%,
    rgba(8,7,9,.72) 60%,
    rgba(8,7,9,.97) 100%
  );
}
.blog-hero-inner {
  position: relative; z-index: 1;
  padding-top: 120px; padding-bottom: 72px;
}
.blog-hero-inner h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin: 12px 0 20px;
  line-height: 1.08;
  color: var(--cream);
}
.blog-hero-inner .lede {
  max-width: 560px;
  font-size: 1.1rem;
}

/* Blog grid */
.blog-section {
  padding: 80px 0 60px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

/* Blog card */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(212,175,55,.14);
}
.blog-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  display: block;
}
.blog-card-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .5s cubic-bezier(.22,1,.36,1);
  display: block;
}
.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}
.blog-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(8,7,9,.82);
  border: 1px solid rgba(212,175,55,.35);
  color: var(--gold-1);
  font-size: 10px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
  padding: 5px 10px; border-radius: 20px;
  backdrop-filter: blur(8px);
}
.blog-tag--pink {
  border-color: rgba(236,30,147,.4);
  color: var(--pink-1);
}
.blog-tag--gold {
  background: rgba(212,175,55,.12);
  border-color: rgba(212,175,55,.5);
  color: var(--gold-1);
}
.blog-card-body {
  padding: 24px 24px 28px;
  display: flex; flex-direction: column; gap: 12px;
  flex: 1;
}
.blog-card-meta {
  display: flex; align-items: center; gap: 9px;
}
.blog-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 1px solid rgba(212,175,55,.3);
  flex-shrink: 0;
}
.blog-author {
  font-size: 12px; font-weight: 600; letter-spacing: .3px;
  color: var(--gold-2);
}
.blog-dot { color: var(--muted-2); font-size: 12px; }
.blog-date {
  font-size: 12px; color: var(--muted-2);
}
.blog-card-title {
  font-size: 1.1rem; font-weight: 700;
  line-height: 1.35; letter-spacing: -0.3px;
  color: var(--cream);
  flex: 1;
}
.blog-card-title a {
  color: inherit; text-decoration: none;
  transition: color .2s;
}
.blog-card-title a:hover { color: var(--gold-1); }
.blog-card-excerpt {
  font-size: .9rem; line-height: 1.6;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read-more {
  font-size: .85rem; font-weight: 600; letter-spacing: .3px;
  color: var(--gold-2);
  margin-top: auto;
  transition: color .2s, gap .2s;
  display: inline-flex; align-items: center; gap: 4px;
}
.blog-read-more:hover { color: var(--gold-1); }

/* Blog CTA section */
.blog-cta-section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  text-align: center;
}
.blog-cta-inner { max-width: 600px; margin: 0 auto; }
.blog-cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--cream);
  margin: 12px 0 0;
  line-height: 1.2;
}

/* Related section */
.related-section {
  padding: 72px 0;
  border-top: 1px solid var(--line);
}
.related-section .section-title {
  font-size: 1.4rem; color: var(--cream);
  margin-bottom: 36px;
}

/* ---- Article hero ---- */
.article-hero {
  position: relative;
  min-height: 560px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.article-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 25%;
  background-repeat: no-repeat;
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,7,9,.35) 0%,
    rgba(8,7,9,.65) 50%,
    rgba(8,7,9,.97) 100%
  );
}
.article-hero-inner {
  position: relative; z-index: 1;
  padding-top: 120px; padding-bottom: 64px;
  display: flex; flex-direction: column; align-items: flex-start;
}
.article-back {
  font-size: .82rem; font-weight: 600; letter-spacing: .5px;
  color: var(--muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 5px;
  margin-bottom: 20px;
  transition: color .2s;
}
.article-back:hover { color: var(--gold-1); }
.article-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  color: var(--cream); line-height: 1.12;
  letter-spacing: -1px;
  max-width: 800px;
  margin: 0 0 28px;
}
.article-byline {
  display: flex; align-items: center; gap: 14px;
}
.article-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  border: 2px solid rgba(212,175,55,.4);
  flex-shrink: 0;
}
.article-byline-text {
  display: flex; flex-direction: column; gap: 3px;
}
.article-author {
  font-size: .9rem; font-weight: 600; color: var(--gold-1);
}
.article-author a { color: var(--gold-2); }
.article-author a:hover { color: var(--gold-1); }
.article-meta-row {
  font-size: .82rem; color: var(--muted-2);
  display: flex; align-items: center; gap: 4px;
}
.article-readtime { color: var(--muted-2); }

/* ---- Article body layout ---- */
.article-main {
  padding: 72px 0 40px;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}

/* ---- Article prose ---- */
.article-content {
  min-width: 0;
}
.article-lede {
  font-size: 1.18rem; line-height: 1.75;
  color: rgba(245,239,226,.75);
  margin-bottom: 40px !important;
  font-weight: 400;
  border-left: 3px solid var(--gold-2);
  padding-left: 20px;
}
.article-content h2 {
  font-size: 1.45rem; color: var(--cream);
  margin: 44px 0 16px;
  line-height: 1.25;
  letter-spacing: -0.4px;
}
.article-content p {
  font-size: 1rem; line-height: 1.82;
  color: rgba(245,239,226,.72);
  margin-bottom: 22px !important;
}
.article-content em {
  color: var(--gold-1);
  font-style: italic;
}
.article-content a {
  color: var(--pink-1);
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-color: rgba(236,30,147,.4);
  transition: color .2s;
}
.article-content a:hover { color: var(--pink-2); }

/* Article inline CTA box */
.article-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  text-align: center;
  margin-top: 48px;
  box-shadow: var(--shadow-gold);
}
.article-cta-text {
  font-size: 1.05rem; color: var(--cream) !important;
  margin-bottom: 20px !important;
  line-height: 1.6 !important;
}
.article-cta-sub {
  display: block;
  font-size: .8rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold-2); opacity: .85;
  margin-top: 14px;
}

/* ---- Sidebar ---- */
.article-sidebar {
  position: sticky; top: 100px;
}
.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  padding-bottom: 20px;
}
.sidebar-card-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; object-position: top;
}
.sidebar-card h3 {
  font-size: 1.1rem; color: var(--cream);
  padding: 16px 18px 4px;
}
.sidebar-card p {
  font-size: .88rem; padding: 0 18px;
  margin-bottom: 14px !important;
}
.sidebar-card .btn { margin: 0 18px; width: calc(100% - 36px); text-align: center; }
.sidebar-also-read {
  margin-top: 28px;
}
.sidebar-also-read h4 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: 1.8px;
  color: var(--muted-2); margin-bottom: 14px;
}
.sidebar-article-link {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: color .2s;
}
.sidebar-article-link:hover { color: var(--gold-1); }
.sidebar-article-img {
  width: 64px; height: 44px;
  object-fit: cover; border-radius: 8px; flex-shrink: 0;
}
.sidebar-article-link span {
  font-size: .84rem; font-weight: 600; line-height: 1.35;
  color: var(--muted);
}
.sidebar-article-link:hover span { color: var(--gold-1); }

/* ============ Blog mobile ============ */
@media (max-width: 960px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 640px) {
  .blog-hero { min-height: 340px; }
  .blog-hero-inner { padding-top: 100px; padding-bottom: 48px; }
  .blog-grid,
  .blog-grid--two {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .blog-section { padding: 48px 0 40px; }
  .article-hero { min-height: 420px; }
  .article-title { font-size: clamp(1.5rem, 7vw, 2.4rem); }
  .article-main { padding: 40px 0 24px; }
  .article-lede { font-size: 1.05rem; }
  .article-content h2 { font-size: 1.25rem; }
  .article-cta-box { padding: 24px 20px; }
  .blog-cta-section { padding: 56px 0; }
  .related-section { padding: 48px 0; }
}
