/* ============================================================
   EinzigVentilatoren — Moulin-Rouge-Parodie
   Plain CSS, keine Frameworks.
   ============================================================ */

:root {
  --wine:      #4a0d18;
  --wine-deep: #2c0710;
  --red:       #c8102e;
  --red-hot:   #e63950;
  --gold:      #d4af37;
  --gold-soft: #e8c75a;
  --cream:     #f4e6d4;
  --ink:       #1a060b;
  --velvet-grad: radial-gradient(circle at 50% 0%, #6a1226 0%, #3a0a14 45%, #2c0710 100%);
  --serif: "Cormorant Garamond", Georgia, serif;
  --display: "Cinzel Decorative", "Playfair Display", serif;
  --script: "Parisienne", cursive;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
  background: var(--velvet-grad) fixed;
  background-color: var(--wine-deep);
  line-height: 1.6;
  overflow-x: hidden;
}

/* subtle velvet texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    45deg, rgba(0,0,0,0.06) 0 2px, transparent 2px 6px);
  opacity: 0.5;
  z-index: 1;
}

.script { font-family: var(--script); }

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 0.7em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn--sm { padding: 0.45em 1.1em; font-size: 0.92rem; }
.btn--lg { padding: 0.85em 2.2em; font-size: 1.18rem; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--wine-deep);
  box-shadow: 0 4px 18px rgba(212,175,55,0.35);
  font-weight: 700;
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(212,175,55,0.55);
}
.btn--ghost {
  background: transparent;
  color: var(--gold-soft);
  border-color: var(--gold);
}
.btn--ghost:hover {
  background: rgba(212,175,55,0.12);
  transform: translateY(-2px);
}

/* ---------- Windmill / Ventilator ---------- */
.windmill {
  position: relative;
  width: 64px;
  height: 64px;
  display: inline-block;
}
.windmill__blades {
  position: absolute;
  inset: 0;
  animation: spin 4s linear infinite;
  transform-origin: 50% 50%;
}
.windmill__blades span {
  position: absolute;
  top: 50%; left: 50%;
  width: 46%;
  height: 18%;
  background: linear-gradient(90deg, var(--red-hot), var(--red));
  border-radius: 60% 8% 8% 60%;
  transform-origin: 0% 50%;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.4);
}
.windmill__blades span:nth-child(1) { transform: translate(0,-50%) rotate(0deg); }
.windmill__blades span:nth-child(2) { transform: translate(0,-50%) rotate(90deg); }
.windmill__blades span:nth-child(3) { transform: translate(0,-50%) rotate(180deg); }
.windmill__blades span:nth-child(4) { transform: translate(0,-50%) rotate(270deg); }
.windmill__hub {
  position: absolute;
  top: 50%; left: 50%;
  width: 22%; height: 22%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, var(--gold-soft), var(--gold));
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 8px rgba(212,175,55,0.7);
}
.windmill--lg { width: 110px; height: 110px; }
.windmill--xl { width: 180px; height: 180px; }
.windmill--xl .windmill__blades { animation-duration: 6s; }

@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .windmill__blades { animation: none; }
}

/* ---------- Light bulb border ---------- */
.bulbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  border: 14px solid var(--wine-deep);
  box-shadow: inset 0 0 0 2px var(--gold);
}
.bulbs::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 4px;
  background:
    repeating-linear-gradient(90deg, var(--gold-soft) 0 6px, transparent 6px 22px) top/100% 4px no-repeat,
    repeating-linear-gradient(90deg, var(--gold-soft) 0 6px, transparent 6px 22px) bottom/100% 4px no-repeat,
    repeating-linear-gradient(0deg, var(--gold-soft) 0 6px, transparent 6px 22px) left/4px 100% no-repeat,
    repeating-linear-gradient(0deg, var(--gold-soft) 0 6px, transparent 6px 22px) right/4px 100% no-repeat;
  animation: twinkle 1.4s steps(2) infinite;
  opacity: 0.85;
}
@keyframes twinkle { 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) { .bulbs::before { animation: none; } }

/* ---------- Header ---------- */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem clamp(1.5rem, 5vw, 4rem);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand__mill { width: 44px; height: 44px; }
.brand__text {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.brand__text em { color: var(--gold); font-style: normal; }
.nav { display: flex; gap: 0.6rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: clamp(2rem, 7vw, 5rem) 1.5rem 3rem;
}
.hero__inner { max-width: 820px; margin: 0 auto; }
.hero__kicker { font-size: 2rem; color: var(--gold-soft); margin-bottom: 0.4rem; }
.hero__title {
  font-family: var(--display);
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  line-height: 1.08;
  color: var(--cream);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  margin-bottom: 1.2rem;
}
.hero__sub { font-size: 1.3rem; color: #e9d7c4; max-width: 640px; margin: 0 auto 2rem; }
.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hero__stats { font-size: 1.05rem; color: var(--gold-soft); letter-spacing: 0.02em; }
.hero__stats strong { color: var(--cream); }

/* ---------- Section heads ---------- */
.section-head { text-align: center; margin: 0 auto 2.5rem; padding: 0 1.5rem; }
.section-head__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.section-head__sub { font-size: 1.7rem; color: var(--cream); }

section { position: relative; z-index: 5; padding-block: clamp(2.5rem, 6vw, 4.5rem); }

/* ---------- Creator grid ---------- */
.grid {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.card {
  background: linear-gradient(170deg, rgba(106,18,38,0.75), rgba(44,7,16,0.9));
  border: 1px solid rgba(212,175,55,0.45);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.55); }
.card__stage {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(212,175,55,0.18), transparent 60%),
    repeating-radial-gradient(circle at 50% 120%, rgba(0,0,0,0.25) 0 12px, transparent 12px 24px);
  overflow: hidden;
}
.card__badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.25em 0.7em;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.4em;
  z-index: 3;
}
.card__badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #7CFC00;
  box-shadow: 0 0 6px #7CFC00;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }
.card__lock {
  position: absolute;
  inset: 0;
  background: rgba(20,4,8,0.55);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  text-align: center;
  z-index: 2;
  transition: opacity 0.25s ease;
}
.card__lock span { display: block; }
.card__lock .lock-icon { font-size: 1.8rem; margin-bottom: 0.3rem; }
.card__lock .lock-text { font-size: 0.95rem; color: var(--gold-soft); padding: 0 1rem; }
.card:hover .card__lock { opacity: 0.15; }
.card__body { padding: 1rem 1.1rem 1.2rem; }
.card__name { font-family: var(--display); font-size: 1.25rem; color: var(--gold); margin-bottom: 0.15rem; }
.card__handle { font-size: 0.95rem; color: #d9b8a0; margin-bottom: 0.5rem; }
.card__bio { font-size: 1.02rem; color: #ecdccb; font-style: italic; min-height: 3em; }
.card__meta {
  display: flex;
  justify-content: space-between;
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(212,175,55,0.25);
  font-size: 0.9rem;
  color: var(--gold-soft);
}

/* ---------- Pricing ---------- */
.tiers {
  display: grid;
  gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
  align-items: stretch;
}
.tier {
  position: relative;
  background: linear-gradient(180deg, rgba(74,13,24,0.7), rgba(44,7,16,0.85));
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: 18px;
  padding: 2rem 1.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.tier--featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), 0 14px 40px rgba(212,175,55,0.25);
  transform: scale(1.04);
}
.tier__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--wine-deep);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: 999px;
}
.tier__name { font-family: var(--display); font-size: 1.5rem; color: var(--gold); margin-bottom: 0.4rem; }
.tier__price { font-size: 2.4rem; font-weight: 600; color: var(--cream); margin-bottom: 1.2rem; }
.tier__price span { font-size: 1rem; color: #d9b8a0; }
.tier__features { list-style: none; text-align: left; margin-bottom: 1.6rem; flex: 1; }
.tier__features li { padding: 0.4em 0 0.4em 1.6em; position: relative; border-bottom: 1px dashed rgba(212,175,55,0.18); }
.tier__features li::before { content: "🌬"; position: absolute; left: 0; }

/* ---------- Quotes ---------- */
.quotes__grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3rem);
}
.quotes blockquote {
  background: rgba(0,0,0,0.2);
  border-left: 3px solid var(--gold);
  border-radius: 8px;
  padding: 1.3rem 1.4rem;
  font-size: 1.2rem;
  font-style: italic;
  color: #f0e0cf;
}
.quotes cite { display: block; margin-top: 0.7rem; font-size: 0.95rem; font-style: normal; color: var(--gold-soft); }

/* ---------- Finale ---------- */
.finale { text-align: center; }
.finale .windmill { margin: 0 auto 1rem; }
.finale__title { font-family: var(--display); font-size: clamp(1.8rem, 5vw, 3rem); color: var(--cream); margin-bottom: 1.4rem; }
.finale__note { margin-top: 0.8rem; font-size: 0.95rem; color: #c79a86; font-style: italic; }

/* ---------- Footer ---------- */
.footer {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 3rem 1.5rem 3.5rem;
  border-top: 1px solid rgba(212,175,55,0.25);
  margin-top: 2rem;
}
.footer__brand { font-size: 2.4rem; color: var(--gold); margin-bottom: 1rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; margin-bottom: 1.6rem; }
.footer__links a { color: var(--gold-soft); text-decoration: none; font-size: 1rem; }
.footer__links a:hover { color: var(--cream); text-decoration: underline; }
.footer__disclaimer { max-width: 680px; margin: 0 auto 1rem; font-size: 0.92rem; color: #c8a892; line-height: 1.5; }
.footer__copy { font-size: 0.85rem; color: #9c7563; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(140%);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--wine-deep);
  font-weight: 600;
  padding: 0.9em 1.6em;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 60;
  transition: transform 0.35s cubic-bezier(.2,.9,.3,1.3);
  max-width: 90vw;
  text-align: center;
}
.toast--show { transform: translateX(-50%) translateY(0); }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(74,13,24,0.97), rgba(20,4,8,0.99));
  padding: 1.5rem;
  transition: opacity 0.4s ease;
}
.age-gate--hidden { opacity: 0; pointer-events: none; }
.age-gate__card {
  max-width: 460px;
  text-align: center;
  background: linear-gradient(180deg, rgba(106,18,38,0.6), rgba(44,7,16,0.8));
  border: 1px solid var(--gold);
  border-radius: 18px;
  padding: 2.4rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.age-gate__card .windmill { margin: 0 auto 1rem; }
.age-gate__card h2 { font-size: 2.6rem; color: var(--gold); margin-bottom: 0.6rem; }
.age-gate__card p { font-size: 1.15rem; color: #ecdccb; margin-bottom: 1.4rem; }
.age-gate__buttons { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 1.2rem; }
.age-gate__fineprint { font-size: 0.85rem; color: #c8a892; font-style: italic; margin-bottom: 0 !important; }

@media (max-width: 560px) {
  body { font-size: 1.05rem; }
  .tier--featured { transform: none; }
  .bulbs { border-width: 8px; }
}
