/* ─── 9e Kunst Stripclub — stylesheet ───────────────────────────────────────
   Fonts loaded via Google Fonts in index.html
   Variables, reset, then section-by-section
──────────────────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --y: #F4E444;   /* yellow  */
  --k: #0E0D0B;   /* black   */
  --w: #F8F6F0;   /* warm white */
  --r: #D03A25;   /* red     */
  --g: #7A7670;   /* gray    */
}

html { scroll-behavior: smooth; }

body {
  background: var(--k);
  color: var(--w);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ─────────────────────────────────────────────────────────────── */
.row { max-width: 1120px; margin: 0 auto; padding: 0 2.5rem; }

.kicker {
  font-size: .6rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--y);
  display: block; margin-bottom: .6rem;
}

.sec-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  line-height: .92; letter-spacing: .01em;
}

.rv { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.rv.in { opacity: 1; transform: none; }

/* ── Topbar ──────────────────────────────────────────────────────────────── */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 50px; background: var(--y); border-bottom: 2px solid var(--k);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
}
.topbar-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.55rem; letter-spacing: .04em; color: var(--k); line-height: 1;
}
.topbar-logo sup { font-family: 'Lora', serif; font-size: .7em; vertical-align: super; }
.topbar-links { display: flex; gap: 2rem; align-items: center; }
.topbar-links a {
  font-size: .65rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--k); text-decoration: none; opacity: .6; transition: opacity .15s;
}
.topbar-links a:hover { opacity: 1; }
.topbar-links .cta-top { background: var(--k); color: var(--y); opacity: 1; padding: .4rem 1rem; }
.topbar-links .cta-top:hover { background: #333; }

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  margin-top: 50px;
  display: grid; grid-template-columns: 55% 45%;
  min-height: calc(100vh - 50px);
  border-bottom: 2px solid rgba(255,255,255,.08);
}
.hero-l {
  background: var(--y); color: var(--k);
  padding: 5rem 4rem 4rem;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.hero-l::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,0,0,.09) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
}
.hero-l > * { position: relative; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--k); color: var(--y);
  font-size: .58rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: .3rem .8rem; width: fit-content; margin-bottom: 2.5rem;
}
.hero-pill::before { content: '◉'; font-size: .45rem; }
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 9.5vw, 10rem); line-height: .88; letter-spacing: -.01em;
  margin-bottom: 2.5rem;
}
.hero-h1 .accent { color: var(--r); display: block; }
.hero-sub {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 1.05rem; color: rgba(0,0,0,.55); line-height: 1.75;
  max-width: 38ch; margin-bottom: 2.5rem;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: .75rem;
  background: var(--k); color: var(--y);
  font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: .85rem 1.8rem; text-decoration: none; transition: background .15s; width: fit-content;
}
.hero-cta:hover { background: #2a2a2a; }
.hero-cta::after { content: '↓'; font-size: 1rem; }
.hero-r { display: grid; grid-template-rows: 1fr 1fr; border-left: 2px solid rgba(255,255,255,.06); }
.hero-book { position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.06); }
.hero-book:last-child { border-bottom: none; }
.hero-book img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(.55); transition: transform .6s ease;
}
.hero-book:hover img { transform: scale(1.04); }
.hero-book-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
}
.book-tag {
  display: inline-block; font-size: .55rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; padding: .18rem .55rem; margin-bottom: .4rem;
}
.tag-must { background: var(--y); color: var(--k); }
.tag-verr { background: var(--r); color: white; }
.hero-book-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: .03em; line-height: 1.1; }
.hero-book-by { font-size: .7rem; color: rgba(255,255,255,.5); margin-top: .2rem; }

/* ── Founding 100 banner ─────────────────────────────────────────────────── */
.founding-bar {
  background: var(--r); padding: 1.4rem 2.5rem;
  display: flex; align-items: center; gap: 2rem;
  border-bottom: 2px solid rgba(0,0,0,.2);
}
.founding-bar-num { font-family: 'Bebas Neue', sans-serif; font-size: 3.5rem; line-height: 1; color: white; flex-shrink: 0; }
.founding-bar-text { color: rgba(255,255,255,.9); }
.founding-bar-text strong { color: white; font-weight: 700; display: block; font-size: .95rem; margin-bottom: .2rem; }
.founding-bar-text span { font-size: .82rem; line-height: 1.65; opacity: .85; }
.founding-spots { margin-left: auto; flex-shrink: 0; text-align: right; }
.founding-spots-n { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--y); line-height: 1; }
.founding-spots-l { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* ── Intro ───────────────────────────────────────────────────────────────── */
.intro { background: var(--w); color: var(--k); padding: 5.5rem 0; border-bottom: 2px solid var(--k); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.intro-h {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem); line-height: .9; letter-spacing: .01em; margin-bottom: 1.8rem;
}
.intro-h .r { color: var(--r); }
.intro-body p { font-size: 1rem; color: #333; line-height: 1.85; margin-bottom: 1rem; }
.intro-body p:last-child { margin-bottom: 0; }
.intro-body strong { font-weight: 700; color: var(--k); }
.stat-stack { display: flex; flex-direction: column; border: 2px solid var(--k); }
.stat-row {
  display: grid; grid-template-columns: 6.5rem 1fr;
  border-bottom: 2px solid var(--k); padding: 1.4rem 1.8rem; gap: 1rem; align-items: center;
}
.stat-row:last-child { border-bottom: none; }
.stat-n { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; color: var(--k); }
.stat-lbl { font-size: .85rem; color: #555; line-height: 1.6; }
.stat-lbl strong { display: block; font-weight: 700; color: var(--k); font-size: .9rem; }

/* ── Perks comparison ────────────────────────────────────────────────────── */
.perks-section { padding: 5.5rem 0; border-bottom: 2px solid rgba(255,255,255,.06); }
.perks-head { margin-bottom: 3rem; }
.perks-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.08);
}
.perks-col { background: var(--k); padding: 2.5rem 2rem; }
.perks-col.hl { background: #161512; }
.perks-col-label {
  font-size: .6rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.1);
}
.perks-col-label.y { color: var(--y); }
.perks-col-label.g { color: var(--g); }
.perk-list { list-style: none; display: flex; flex-direction: column; gap: .9rem; }
.perk-list li { display: flex; gap: .75rem; font-size: .875rem; line-height: 1.6; align-items: flex-start; }
.perk-list li.yes::before { content: '✓'; color: var(--y); font-weight: 700; flex-shrink: 0; }
.perk-list li.no { opacity: .35; text-decoration: line-through; }
.perk-list li.no::before { content: '✗'; color: var(--g); font-weight: 700; flex-shrink: 0; }

/* ── Plans ───────────────────────────────────────────────────────────────── */
.plans-section {
  background: var(--w); color: var(--k);
  padding: 5.5rem 0; border-top: 2px solid var(--k); border-bottom: 2px solid var(--k);
}
.plans-head { margin-bottom: 3rem; }
.plans-head .kicker { color: var(--r); }
.plans-head .sec-h { color: var(--k); }
.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); border: 2px solid var(--k); }
.plan {
  padding: 2.5rem 2rem; border-right: 2px solid var(--k);
  display: flex; flex-direction: column; position: relative; transition: background .2s;
}
.plan:last-child { border-right: none; }
.plan:hover { background: #f0ede4; }
.plan.star { background: var(--k); color: var(--w); }
.plan.star:hover { background: #111; }
.plan-flag {
  position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  background: var(--r); color: white;
  font-size: .58rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: .22rem .7rem; white-space: nowrap;
}
.plan-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: .02em;
  line-height: 1; margin-top: .8rem; margin-bottom: .5rem;
}
.plan.star .plan-name { color: var(--y); }
.plan-price-big { font-family: 'Bebas Neue', sans-serif; font-size: 3.8rem; line-height: .9; letter-spacing: -.01em; }
.plan-price-per { font-size: .75rem; opacity: .5; margin-left: .2rem; font-weight: 400; }
.plan-sub { font-size: .78rem; opacity: .55; margin-bottom: .3rem; font-style: italic; }
.plan-saving {
  display: inline-block; font-size: .62rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: .2rem .55rem;
  background: var(--y); color: var(--k); margin-bottom: 1.5rem;
}
.plan.star .plan-saving { background: var(--r); color: white; }
.plan-div { height: 1px; background: rgba(0,0,0,.1); margin-bottom: 1.5rem; }
.plan.star .plan-div { background: rgba(255,255,255,.12); }
.plan-desc { font-size: .85rem; line-height: 1.8; opacity: .7; margin-bottom: 1.5rem; flex: 1; }
.plan.star .plan-desc { opacity: .75; }
.plan-perks-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; margin-bottom: 2rem; }
.plan-perks-list li { font-size: .8rem; display: flex; gap: .55rem; align-items: flex-start; line-height: 1.55; }
.plan-perks-list li::before { content: '→'; font-weight: 700; flex-shrink: 0; color: var(--r); }
.plan.star .plan-perks-list li::before { color: var(--y); }
.btn-plan {
  display: block; width: 100%; padding: .85rem; border: 2px solid var(--k);
  background: transparent; color: var(--k); font-family: 'DM Sans', sans-serif;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; transition: all .15s; text-align: center;
}
.btn-plan:hover { background: var(--k); color: var(--y); }
.plan.star .btn-plan { background: var(--y); color: var(--k); border-color: var(--y); }
.plan.star .btn-plan:hover { background: #f0da20; }
.plans-note {
  margin-top: 1rem; font-size: .78rem; color: #666;
  font-style: italic; padding: .75rem 1rem;
  border-left: 3px solid #d8d5cc;
}

/* ── Already have it ─────────────────────────────────────────────────────── */
.already { padding: 3rem 0; border-bottom: 1px solid rgba(255,255,255,.07); background: #151310; }
.already-inner { display: flex; align-items: flex-start; gap: 2.5rem; }
.already-emoji { font-size: 2.8rem; flex-shrink: 0; line-height: 1; padding-top: .2rem; }
.already h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: .03em; margin-bottom: .5rem; }
.already p { font-size: .875rem; color: rgba(255,255,255,.55); line-height: 1.8; }
.already p strong { color: white; }

/* ── Books grid ──────────────────────────────────────────────────────────── */
.books-section { padding: 5.5rem 0; border-bottom: 2px solid rgba(255,255,255,.06); }
.books-head { margin-bottom: 2.5rem; }
.tabs { display: flex; border: 1px solid rgba(255,255,255,.15); width: fit-content; margin-top: 1.2rem; }
.tab {
  padding: .55rem 1.5rem; font-size: .65rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; cursor: pointer;
  color: rgba(255,255,255,.4); border-right: 1px solid rgba(255,255,255,.15); transition: all .15s;
}
.tab:last-child { border-right: none; }
.tab.on { background: var(--y); color: var(--k); }
.books-panel { display: none; }
.books-panel.on { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.bk { display: flex; flex-direction: column; gap: .65rem; }
.bk-img { aspect-ratio: 3/4; overflow: hidden; position: relative; background: #1c1a17; }
.bk-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.bk:hover .bk-img img { transform: scale(1.06); }
.bk-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #1c1a17; }
.bk-ph span { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; opacity: .15; letter-spacing: .05em; }
.bk-month { position: absolute; top: .5rem; left: .5rem; font-size: .52rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; padding: .17rem .48rem; }
.bk-title { font-family: 'Lora', serif; font-size: .88rem; font-weight: 600; line-height: 1.35; color: white; }
.bk-meta { font-size: .72rem; color: rgba(255,255,255,.4); }
.bk-snip { font-size: .78rem; color: rgba(255,255,255,.5); line-height: 1.7; }

/* ── Gift ────────────────────────────────────────────────────────────────── */
.gift-section {
  background: var(--r); color: white;
  padding: 5rem 0; border-top: 2px solid rgba(0,0,0,.15); border-bottom: 2px solid rgba(0,0,0,.15);
}
.gift-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.gift-h { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.5rem,5vw,4.5rem); line-height: .9; margin-bottom: 1.2rem; }
.gift-body { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.85; }
.gift-card { background: white; color: var(--k); padding: 2.5rem; }
.gift-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: .03em; margin-bottom: .4rem; }
.gift-card p { font-size: .85rem; color: #555; line-height: 1.8; margin-bottom: 1.2rem; }
.gift-prices { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: 1.5rem; }
.gift-price-opt { border: 2px solid #ddd; padding: .9rem .5rem; text-align: center; cursor: pointer; transition: border-color .15s; }
.gift-price-opt:hover, .gift-price-opt.on { border-color: var(--k); }
.gp-n { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; line-height: 1; display: block; }
.gp-l { font-size: .65rem; color: #888; }
.btn-gift {
  display: block; width: 100%; padding: .9rem; background: var(--r); color: white; border: none;
  font-family: 'DM Sans', sans-serif; font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; cursor: pointer; transition: background .15s;
}
.btn-gift:hover { background: #b52e1b; }

/* ── Form ────────────────────────────────────────────────────────────────── */
.form-section { background: var(--w); color: var(--k); padding: 5.5rem 0; }
.form-wrap { max-width: 640px; margin: 0 auto; padding: 0 2.5rem; }
.form-h { font-family: 'Bebas Neue', sans-serif; font-size: clamp(3rem,6vw,5rem); line-height: .9; margin-bottom: .5rem; }
.form-h .r { color: var(--r); }
.form-lead { font-size: .9rem; color: #666; line-height: 1.8; margin-bottom: 2.5rem; }
.prog-wrap { margin-bottom: 2.5rem; }
.prog-meta { display: flex; justify-content: space-between; font-size: .7rem; font-weight: 700; color: #999; margin-bottom: .45rem; }
.prog-meta strong { color: var(--k); }
.prog-track { height: 5px; background: #ddd; }
.prog-fill { height: 100%; background: var(--r); width: 14%; transition: width 1.2s ease; }
.field { margin-bottom: 1rem; }
.field label {
  display: block; font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: #999; margin-bottom: .35rem;
}
.field input {
  width: 100%; padding: .8rem 1rem; border: 2px solid #d8d5cc;
  background: white; color: var(--k); font-family: 'DM Sans', sans-serif;
  font-size: .95rem; outline: none; border-radius: 0; transition: border-color .15s;
}
.field input:focus { border-color: var(--k); }
.picks-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: .6rem; margin-top: .4rem; }
.picks-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-top: .4rem; }
.pick { border: 2px solid #d8d5cc; padding: .9rem .8rem; cursor: pointer; transition: border-color .15s; text-align: center; }
.pick:hover { border-color: #999; }
.pick.on { border-color: var(--k); border-width: 2.5px; background: #f5f3ee; }
.pick-name { font-size: .8rem; font-weight: 700; display: block; }
.pick-price { font-size: .7rem; color: #888; display: block; margin-top: .15rem; }
.del-opts { display: flex; gap: .6rem; margin-top: .4rem; }
.del-opt {
  flex: 1; border: 2px solid #d8d5cc; padding: .75rem;
  text-align: center; cursor: pointer; font-size: .8rem; font-weight: 500; transition: all .15s;
}
.del-opt:hover { border-color: #999; }
.del-opt.on { background: var(--k); color: var(--y); border-color: var(--k); }
.price-display {
  margin-top: .5rem; padding: 1rem 1.2rem;
  background: #f0ede4; border-left: 3px solid var(--r);
}
.price-display-label { font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #999; margin-bottom: .3rem; }
.price-display-total { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; line-height: 1; color: var(--k); }
.price-display-note { font-size: .75rem; color: #888; margin-top: .2rem; }
.btn-submit {
  display: block; width: 100%; padding: 1.1rem;
  background: var(--k); color: var(--y); border: 3px solid var(--k);
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: .08em;
  cursor: pointer; margin-top: 1.5rem; transition: background .15s, color .15s, border-color .15s;
}
.btn-submit:hover { background: var(--r); border-color: var(--r); color: white; }
.form-note { font-size: .75rem; color: #aaa; text-align: center; margin-top: .8rem; line-height: 1.6; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-section { background: #0c0b09; padding: 5rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.faq-inner { max-width: 720px; margin: 0 auto; padding: 0 2.5rem; }
.faq-inner .sec-h { margin-bottom: 2.5rem; }
details { border-bottom: 1px solid rgba(255,255,255,.08); padding: 1.3rem 0; }
details:first-of-type { border-top: 1px solid rgba(255,255,255,.08); }
summary {
  font-size: .93rem; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; color: white;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; font-size: 1.2rem; font-weight: 300; opacity: .4; }
details[open] summary::after { content: '−'; }
details p { font-size: .86rem; color: rgba(255,255,255,.5); line-height: 1.85; margin-top: .9rem; }
details p strong { color: white; }

/* ── Footer ──────────────────────────────────────────────────────────────── */
footer {
  background: var(--k); border-top: 2px solid var(--y);
  padding: 1.5rem 2.5rem; display: flex; justify-content: space-between; align-items: center;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--y); letter-spacing: .04em; }
.footer-logo sup { font-family: 'Lora', serif; font-size: .7em; vertical-align: super; }
.footer-r { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.25); }

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-r { display: none; }
  .intro-grid, .gift-grid { grid-template-columns: 1fr; gap: 3rem; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan { border-right: none; border-bottom: 2px solid var(--k); }
  .plan:last-child { border-bottom: none; }
  .books-panel.on { grid-template-columns: 1fr 1fr; }
  .perks-grid { grid-template-columns: 1fr; }
  .topbar-links a:not(.cta-top) { display: none; }
  .already-inner { flex-direction: column; gap: 1rem; }
  .founding-bar { flex-wrap: wrap; }
  .founding-spots { margin-left: 0; text-align: left; }
  .picks-3 { grid-template-columns: 1fr; }
}
