/* ==========================================================================
   Play with Cece — playwithcece.com
   Cute + flirty premium creator brand. Pink + lipstick-red palette.
   Self-contained, theme-aware, mobile-first. No third-party requests.
   ========================================================================== */

/* ---- Brand font (self-hosted, no third-party request) -------------------- */
@font-face {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/pacifico-latin.woff2") format("woff2");
}

/* ---- Design tokens ------------------------------------------------------- */
:root {
  --pink:        #ff4d8d;   /* signature hot pink */
  --pink-soft:   #ffd7e6;   /* blush */
  --red:         #e11d48;   /* lipstick red */
  --red-deep:    #b60f38;
  --gold:        #c99a6b;   /* warm metallic accent */

  --bg:          #ffe7f0;   /* soft light pink */
  --bg-2:        #ffd9e8;   /* deeper blush */
  --surface:     #fffafc;
  --surface-2:   #fff1f6;
  --ink:         #2a1620;   /* deep wine near-black */
  --ink-soft:    #5f4450;
  --muted:       #8a6a76;
  --line:        rgba(42,22,32,.12);
  --line-soft:   rgba(42,22,32,.07);
  --shadow:      0 18px 50px -22px rgba(120,20,60,.35);
  --shadow-sm:   0 6px 22px -12px rgba(120,20,60,.30);

  --grad:        linear-gradient(120deg, var(--red) 0%, var(--pink) 55%, #ff8fb3 100%);
  --grad-soft:   linear-gradient(135deg, #fff2f6 0%, #ffe3ee 100%);

  --font-serif:  "Hoefler Text", "Baskerville", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:   -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Helvetica, Arial, sans-serif;
  --font-script: "Pacifico", "Snell Roundhand", "Brush Script MT", cursive;

  --wrap: 1120px;
  --radius: 18px;
  --radius-lg: 28px;
}

/* Single light blush-pink theme — no dark mode. */

/* ---- Base ---------------------------------------------------------------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.08; letter-spacing: -.01em; margin: 0; }
p { margin: 0 0 1em; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 700;
  color: var(--pink);
}
.script { font-style: italic; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 26px; border-radius: 999px; font-weight: 700; font-size: 15px;
  letter-spacing: .01em; cursor: pointer; border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn-lg { padding: 18px 34px; font-size: 16px; }
.heart { color: #fff; }

/* ---- Header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.4) blur(14px);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 66px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-script); font-size: 24px; font-weight: 400; letter-spacing: .01em; white-space: nowrap; color: var(--pink); }
.brand-mark { width: 32px; height: 32px; display: block; border-radius: 9px; flex: none; }
.site-header .wrap { flex-wrap: nowrap; gap: 10px; }
.nav .btn-primary { flex: none; }
@media (max-width: 560px){
  .site-header .wrap { padding-left: 14px; padding-right: 14px; }
  .nav { gap: 10px; }
  .nav .btn-primary { padding: 10px 15px; font-size: 13px; }
}
@media (max-width: 420px){
  .brand { font-size: 19px; gap: 8px; }
  .brand-mark { width: 28px; height: 28px; }
  .brand .badge-18 { display: none; }
  .nav { gap: 8px; }
  .nav .btn-primary { padding: 9px 13px; font-size: 12px; }
}
.brand .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 0 4px var(--pink-soft); }
.badge-18 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 800; letter-spacing: .06em;
  color: var(--red); border: 1.5px solid var(--red); border-radius: 6px; padding: 1px 5px;
}
.nav { display: flex; align-items: center; gap: 26px; }
.nav a.link { font-size: 14px; font-weight: 600; color: var(--ink-soft); letter-spacing: .02em; }
.nav a.link:hover { color: var(--pink); }
@media (max-width: 760px){ .nav .link { display: none; } }

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; padding: clamp(38px, 7vw, 78px) 0 clamp(30px,5vw,60px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px,4vw,60px); align-items: center; }
.hero h1 { font-family: var(--font-script); font-weight: 400; font-size: clamp(52px, 11vw, 112px); line-height: 1.12; margin: .05em 0 .2em; padding-bottom: .05em; }
.hero h1 .amp { color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.tagline { font-family: var(--font-serif); font-style: italic; font-size: clamp(20px, 3.2vw, 30px); color: var(--ink); max-width: 20ch; line-height: 1.25; margin-bottom: 1.1em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-note { margin-top: 18px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-media { position: relative; }
.hero-media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: auto -10px -14px auto; width: 130px; height: 130px;
  background: var(--grad); filter: blur(46px); opacity: .5; z-index: -1; border-radius: 50%;
}
.floaty { position: absolute; z-index: 2; background: var(--surface); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft);
  border-radius: 14px; padding: 10px 14px; font-size: 13px; font-weight: 700; display: flex; gap: 8px; align-items: center; }
.floaty.tl { top: 16px; left: -14px; }
.floaty.br { bottom: 22px; right: -12px; }
.floaty .k { color: var(--pink); }
@media (max-width: 860px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .tagline { max-width: none; }
}

/* ---- Marquee ------------------------------------------------------------- */
.marquee { overflow: hidden; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-2); }
.marquee-track { display: flex; gap: 40px; white-space: nowrap; padding: 14px 0; animation: slide 26s linear infinite; }
.marquee span { font-family: var(--font-serif); font-style: italic; font-size: 20px; color: var(--ink-soft); }
.marquee span::before { content: "♥"; color: var(--pink); margin-right: 40px; font-style: normal; }
@keyframes slide { from{ transform: translateX(0);} to{ transform: translateX(-50%);} }
@media (prefers-reduced-motion: reduce){ .marquee-track { animation: none; } }

/* ---- Sections ------------------------------------------------------------ */
section { padding: clamp(48px, 8vw, 96px) 0; }
.section-head { max-width: 620px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(32px, 5.5vw, 52px); margin: .25em 0 .3em; }
.section-head p { color: var(--ink-soft); font-size: 18px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* About */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(26px,5vw,64px); align-items: center; }
.about-grid img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-copy p { font-size: 18px; color: var(--ink-soft); }
.about-copy p.lead { font-family: var(--font-serif); font-size: clamp(22px,3vw,28px); font-style: italic; color: var(--ink); line-height: 1.3; }
@media (max-width: 820px){ .about-grid { grid-template-columns: 1fr; } .about-grid img { max-width: 380px; } }

/* Offers */
.offers { background: var(--bg-2); }
.offer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.offer {
  background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .18s ease, border-color .18s ease;
}
.offer:hover { transform: translateY(-4px); border-color: var(--pink); }
.offer .ic { font-size: 26px; margin-bottom: 12px; }
.offer h3 { font-family: var(--font-sans); font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.offer p { font-size: 15px; color: var(--muted); margin: 0; }
@media (max-width: 820px){ .offer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .offer-grid { grid-template-columns: 1fr; } }

/* Gallery */
.gallery { columns: 4; column-gap: 14px; }
.gallery a { display: block; margin-bottom: 14px; position: relative; border-radius: 16px; overflow: hidden; break-inside: avoid; box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; transition: transform .5s ease; }
.gallery a::after {
  content: "See more on OnlyFans"; position: absolute; inset: 0; display: flex; align-items: flex-end;
  padding: 16px; font-size: 14px; font-weight: 800; color: #fff;
  background: linear-gradient(180deg, transparent 40%, rgba(120,10,50,.72)); opacity: 0; transition: opacity .28s ease;
}
.gallery a:hover img { transform: scale(1.06); }
.gallery a:hover::after { opacity: 1; }
@media (max-width: 900px){ .gallery { columns: 3; } }
@media (max-width: 640px){ .gallery { columns: 2; } }

/* Socials strip */
.socials { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.social-pill {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 999px;
  border: 1px solid var(--line); font-weight: 700; font-size: 15px; background: var(--surface);
  transition: transform .16s ease, border-color .16s ease, color .16s ease;
}
.social-pill:hover { transform: translateY(-2px); border-color: var(--pink); color: var(--pink); }
.social-pill .g { width: 9px; height: 9px; border-radius: 50%; background: var(--grad); }

/* CTA band */
.cta-band { background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px,7vw,72px); text-align: center; box-shadow: var(--shadow); }
.cta-band h2 { font-family: var(--font-script); font-weight: 400; font-size: clamp(36px,6.5vw,64px); color: #fff; margin-bottom: .3em; line-height: 1.3; padding-bottom: .08em; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 19px; max-width: 34ch; margin: 0 auto 1.4em; }
.cta-band .btn-primary { background: #fff; color: var(--red-deep); }
.cta-band .btn-primary:hover { background: #fff; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line-soft); background: var(--surface-2); padding: 54px 0 40px; font-size: 14px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; margin-bottom: 30px; }
.footer-brand { max-width: 300px; }
.footer-brand .brand { margin-bottom: 10px; }
.footer-brand p { color: var(--muted); font-size: 14px; }
.footer-cols { display: flex; gap: 54px; flex-wrap: wrap; }
.footer-cols h4 { font-family: var(--font-sans); font-size: 12px; text-transform: uppercase; letter-spacing: .16em; color: var(--muted); margin: 0 0 12px; }
.footer-cols a { display: block; color: var(--ink-soft); margin-bottom: 8px; font-weight: 600; }
.footer-cols a:hover { color: var(--pink); }
.ai-disclosure {
  background: var(--pink-soft); color: var(--ink); border-radius: 12px; padding: 12px 16px;
  font-size: 13px; line-height: 1.5; margin-bottom: 24px; display: flex; gap: 10px; align-items: flex-start;
}
.ai-disclosure b { color: var(--ink); }
.footer-legal { border-top: 1px solid var(--line-soft); padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 13px; }

/* ---- Age gate ------------------------------------------------------------ */
.age-gate {
  position: fixed; inset: 0; z-index: 999; display: flex; align-items: center; justify-content: center;
  padding: 22px; background: rgba(20,8,14,.72); backdrop-filter: blur(10px);
}
.age-gate[hidden] { display: none; }
.age-card {
  background: var(--surface); color: var(--ink); max-width: 460px; width: 100%; text-align: center;
  border-radius: var(--radius-lg); padding: 40px 32px; box-shadow: var(--shadow); border: 1px solid var(--line-soft);
  animation: pop .3s ease;
}
@keyframes pop { from{ transform: scale(.94); opacity: 0;} to{ transform: scale(1); opacity: 1;} }
.age-card .lock { font-size: 34px; }
.age-card h2 { font-size: 30px; margin: 12px 0 6px; }
.age-card .brand-line { font-family: var(--font-script); color: var(--pink); font-size: 23px; margin-bottom: 14px; }
.age-card p { color: var(--ink-soft); font-size: 15px; }
.age-actions { display: flex; flex-direction: column; gap: 12px; margin-top: 22px; }
.age-fine { font-size: 12px; color: var(--muted); margin-top: 18px; line-height: 1.5; }
.age-fine a { color: var(--pink); text-decoration: underline; }

/* ---- Legal pages --------------------------------------------------------- */
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 40px 22px 80px; }
.legal-wrap .back { display: inline-flex; align-items: center; gap: 8px; color: var(--pink); font-weight: 700; font-size: 14px; margin-bottom: 26px; }
.legal-wrap h1 { font-size: clamp(34px,6vw,52px); margin-bottom: .3em; }
.legal-wrap .meta { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.legal-wrap h2 { font-size: 24px; margin: 34px 0 10px; }
.legal-wrap h3 { font-family: var(--font-sans); font-size: 17px; font-weight: 800; margin: 20px 0 6px; }
.legal-wrap p, .legal-wrap li { color: var(--ink-soft); font-size: 16px; }
.legal-wrap ul, .legal-wrap ol { padding-left: 22px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap a.inline { color: var(--pink); text-decoration: underline; }
.disclaimer {
  background: var(--pink-soft); border-left: 4px solid var(--red); border-radius: 10px;
  padding: 16px 18px; font-size: 14px; color: var(--ink); margin: 22px 0 30px;
}
.disclaimer b { color: var(--red-deep); }
.placeholder { background: rgba(255,196,0,.18); border: 1px dashed var(--gold); border-radius: 5px; padding: 1px 6px; font-weight: 700; font-size: .95em; }
.legal-contact { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; margin-top: 20px; }
.legal-contact a { color: var(--pink); font-weight: 700; }

/* ---- Links (bio) page ---------------------------------------------------- */
.bio { min-height: 100dvh; display: flex; flex-direction: column; align-items: center; justify-content: flex-start;
  padding: 54px 20px 30px; background: radial-gradient(120% 60% at 50% -10%, var(--bg-2), var(--bg)); }
.bio-card { width: 100%; max-width: 460px; text-align: center; }
.bio-avatar { width: 116px; height: 116px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; border: 3px solid var(--surface); box-shadow: var(--shadow), 0 0 0 3px var(--pink); }
.bio h1 { font-family: var(--font-script); font-weight: 400; font-size: 42px; margin-bottom: 6px; color: var(--pink); }
.bio .handle { color: var(--pink); font-weight: 700; font-size: 15px; margin-bottom: 10px; }
.bio .bio-tag { font-family: var(--font-serif); font-style: italic; color: var(--ink-soft); font-size: 17px; max-width: 26ch; margin: 0 auto 26px; line-height: 1.35; }
.bio-links { display: flex; flex-direction: column; gap: 13px; }
.bio-link {
  display: flex; align-items: center; gap: 14px; width: 100%; padding: 17px 20px; border-radius: 16px;
  background: var(--surface); border: 1px solid var(--line); font-weight: 700; font-size: 16px; color: var(--ink);
  box-shadow: var(--shadow-sm); transition: transform .16s ease, border-color .16s ease;
}
.bio-link:hover { transform: translateY(-2px); border-color: var(--pink); }
.bio-link .emoji { font-size: 20px; width: 24px; text-align: center; }
.bio-link .arrow { margin-left: auto; color: var(--muted); }
.bio-link.primary { background: var(--grad); color: #fff; border-color: transparent; box-shadow: var(--shadow); }
.bio-link.primary .arrow { color: rgba(255,255,255,.8); }
.vip-cta { justify-content: center; gap: 12px; padding: 22px 24px; font-size: 19px; margin-top: 6px; }
.vip-cta .arrow { margin-left: 4px; }
.bio-foot { margin-top: 30px; font-size: 12px; color: var(--muted); line-height: 1.6; }
.bio-foot a { color: var(--pink); }
.bio-18 { display: inline-flex; gap: 6px; align-items: center; border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; font-size: 12px; font-weight: 700; color: var(--ink-soft); margin-bottom: 20px; }

/* ---- Utility ------------------------------------------------------------- */
:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
