
:root {
  --heart: #ff2d7a;
  --heart-hover: #ff4d8c;
  --fuchsia: #d946ef;
  --heart-deep: #b91c6b;
  --paper: #f8ecf2;
  --paper-dim: #c8bac1;
  --bg: #0a0207;
  --bg-elev: #15080f;
  --bg-card: #1c0a14;
  --border: #2a1220;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--heart); text-decoration: none; transition: color .2s; }
a:hover { color: var(--heart-hover); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin: 0 0 .4em; letter-spacing: -0.01em; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip { position: absolute; top: -40px; left: 0; background: var(--heart); color: #fff; padding: 8px 16px; z-index: 100; }
.skip:focus { top: 0; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 2, 7, 0.85);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1200px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-brand { display: flex; align-items: center; gap: 10px; color: var(--paper); font-weight: 700; font-family: var(--font-display); font-size: 22px; }
.brand-icon { color: var(--heart); font-size: 24px; line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--paper-dim); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--paper); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; transition: all .2s;
  font-family: var(--font-body); text-decoration: none;
}
.btn-primary { background: var(--heart); color: #fff; box-shadow: 0 8px 24px -8px rgba(255, 45, 122, .6); }
.btn-primary:hover { background: var(--heart-hover); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-elev); color: var(--paper); border-color: var(--heart); }
.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ── Hero ── */
.hero { position: relative; padding: 100px 24px 120px; overflow: hidden; }
.hero-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--heart); margin-bottom: 20px;
  padding: 6px 14px; border: 1px solid rgba(255, 45, 122, .3); border-radius: 999px;
}
.hero-title { font-size: clamp(44px, 7vw, 88px); margin: 0 0 24px; background: linear-gradient(180deg, #fff 0%, #c8bac1 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-claim { font-size: clamp(18px, 2vw, 22px); color: var(--paper-dim); max-width: 620px; margin: 0 auto 36px; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-sub { font-size: 14px; color: var(--paper-dim); }
.hero-gradient {
  position: absolute; inset: -20%;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 45, 122, .22), transparent 60%),
              radial-gradient(ellipse 50% 40% at 30% 40%, rgba(217, 70, 239, .15), transparent 70%);
  pointer-events: none;
}

/* ── Sections ── */
.section { padding: 96px 24px; max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--bg-elev); max-width: none; }
.section-alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; margin-bottom: 56px; max-width: 680px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 12px; }
.section-head h3 { font-size: 22px; color: var(--paper-dim); margin: 0; }
.section-head p { color: var(--paper-dim); font-size: 17px; margin: 0; }
.section-head-sub { margin-top: 72px; margin-bottom: 32px; }
.section-note { font-size: 13px; color: var(--paper-dim); opacity: .7; margin-top: 6px; font-style: italic; }

/* ── Stories ── */
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.story-grid-soon { opacity: .82; }
.story-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column; transition: transform .25s, border-color .25s;
}
.story-card:hover { transform: translateY(-4px); border-color: var(--heart-deep); }
.story-cover { position: relative; aspect-ratio: 16/9; background: #000; overflow: hidden; }
.story-cover img { width: 100%; height: 100%; object-fit: cover; }
.story-badges { position: absolute; top: 12px; left: 12px; display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px; backdrop-filter: blur(8px);
}
.badge-active { background: rgba(255, 45, 122, .92); color: #fff; }
.badge-soon { background: rgba(10, 2, 7, .7); color: var(--paper-dim); border: 1px solid var(--border); }
.badge-mature { background: rgba(185, 28, 107, .92); color: #fff; }

.story-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.story-meta { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: var(--paper-dim); margin-bottom: -2px; }
.spice { letter-spacing: 0.05em; }
.spice-label { font-weight: 600; color: var(--paper-dim); margin-left: 6px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.story-card h3 { font-size: 26px; margin: 0; }
.story-claim { color: var(--heart); font-weight: 500; font-size: 15px; font-style: italic; margin: 0; }
.story-summary { color: var(--paper-dim); font-size: 15px; margin: 4px 0 12px; }
.story-genres { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.chip { font-size: 11px; background: var(--bg-elev); color: var(--paper-dim); padding: 4px 10px; border-radius: 999px; border: 1px solid var(--border); }
.story-card .btn { align-self: flex-start; margin-top: auto; }

/* ── Features ── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 32px; }
.feature { text-align: left; }
.feature-icon { font-size: 36px; display: inline-block; margin-bottom: 14px; }
.feature h3 { font-size: 20px; margin-bottom: 6px; }
.feature p { color: var(--paper-dim); font-size: 15px; margin: 0; }

/* ── Testimonials ── */
.testimonials { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; margin: 0; position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: -12px; left: 18px; font-family: var(--font-display);
  font-size: 72px; color: var(--heart); line-height: 1; opacity: .3;
}
.testimonial p { margin: 0 0 12px; font-size: 15px; font-style: italic; }
.testimonial cite { font-style: normal; font-weight: 600; color: var(--heart); font-size: 13px; }

/* ── Newsletter ── */
.newsletter-form { max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.newsletter-form input {
  padding: 14px 18px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--bg-card); color: var(--paper); font-size: 15px; font-family: var(--font-body);
}
.newsletter-form input:focus { outline: none; border-color: var(--heart); }
.newsletter-form .btn { width: 100%; }
@media (min-width: 520px) {
  .newsletter-form { flex-direction: row; align-items: stretch; }
  .newsletter-form input { flex: 1; }
  .newsletter-form .btn { width: auto; }
}
.form-note { font-size: 12px; color: var(--paper-dim); margin: 0; text-align: center; grid-column: 1 / -1; width: 100%; }
@media (min-width: 520px) {
  .newsletter-form { flex-wrap: wrap; }
  .form-note { flex-basis: 100%; }
}

/* ── FAQ ── */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border); padding: 18px 0;
}
.faq-item summary {
  cursor: pointer; font-weight: 600; font-size: 17px; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--paper); padding: 4px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--heart); transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 14px 0 0; color: var(--paper-dim); font-size: 15px; }

/* ── CTA Final ── */
.cta-final { text-align: center; padding: 80px 24px; }
.cta-inner {
  max-width: 620px; margin: 0 auto; padding: 64px 32px;
  background: linear-gradient(135deg, rgba(255, 45, 122, .12), rgba(217, 70, 239, .08));
  border: 1px solid rgba(255, 45, 122, .3); border-radius: 24px;
}
.cta-inner h2 { margin-bottom: 10px; }
.cta-inner p { color: var(--paper-dim); margin-bottom: 28px; }

/* ── Footer ── */
.site-footer {
  background: var(--bg-elev); border-top: 1px solid var(--border);
  padding: 48px 24px 32px; color: var(--paper-dim); font-size: 14px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto; display: grid;
  grid-template-columns: 2fr 1fr 1fr; gap: 40px;
}
.footer-brand { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--paper); margin: 0 0 8px; }
.footer-imprint, .footer-age { margin: 4px 0; font-size: 13px; }
.footer-age { color: var(--paper-dim); opacity: .8; }
.site-footer h4 { font-family: var(--font-body); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--paper); margin: 0 0 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.site-footer a { color: var(--paper-dim); }
.site-footer a:hover { color: var(--heart); }
.footer-copy { max-width: 1200px; margin: 32px auto 0; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; text-align: center; }

@media (max-width: 680px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 60px 24px 80px; }
  .section { padding: 64px 20px; }
}

/* ── Print ── */
@media print {
  .site-header, .nav-links, .hero-ctas, .btn, .newsletter-form, .cta-final { display: none !important; }
  body { background: #fff; color: #000; }
}
