/* ============ Basis ============ */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-oswald);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  text-wrap: pretty;
  transition: background-color 1.1s ease, color 0.9s ease;
  overflow-x: clip;
}
body.intro-lock { overflow: hidden; }

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

.wrap { max-width: 1020px; margin: 0 auto; padding: 0 20px; }

section { padding: 72px 0; }
@media (min-width: 720px) { section { padding: 104px 0; } }

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

.seclabel {
  font-family: var(--font-bebas);
  letter-spacing: 5px;
  font-size: 15px;
  color: var(--eyebrow);
  text-align: center;
  transition: color 0.9s ease;
}
.sectitle {
  font-family: var(--font-anton);
  font-weight: 400;
  font-size: clamp(30px, 6.4vw, 48px);
  line-height: 1.05;
  color: var(--headline);
  text-align: center;
  text-transform: uppercase;
  margin: 10px 0 34px;
  transition: color 0.9s ease;
}

.eyebrow {
  font-family: var(--font-bebas);
  letter-spacing: 6px;
  font-size: 16px;
  color: var(--eyebrow);
}

.goldrule { display: flex; align-items: center; gap: 12px; margin: 26px auto; max-width: 420px; }
.goldrule span:first-child,
.goldrule span:last-child { flex: 1; height: 2px; background: var(--gold); }
.goldrule .star { flex: none; color: var(--day-red); font-size: 15px; line-height: 1; height: auto; background: none; }
body[data-world="night"] .goldrule .star,
body[data-world="dusk"] .goldrule .star { color: var(--gold); }

.card {
  background: var(--surface);
  border-radius: 14px;
  box-shadow: 0 22px 44px -20px rgba(20, 30, 50, 0.35);
  position: relative;
  overflow: hidden;
  transition: background-color 1.1s ease;
}
.card-inner {
  position: absolute;
  inset: 10px;
  border: 2px solid var(--gold);
  border-radius: 9px;
  pointer-events: none;
  opacity: 0.85;
}

/* Marquee-Birnen: Kern #FBEFB6, Rand #F2C84B, im Web duerfen sie blinken */
.bulbs {
  height: 12px;
  background-image: radial-gradient(circle at 50% 50%, var(--bulb) 0 22%, var(--bulb-gold) 26% 44%, rgba(242, 200, 75, 0) 50%);
  background-size: 22px 12px;
  background-repeat: repeat-x;
  background-position: center;
}
.bulbs-twinkle { animation: twk 2.6s ease-in-out infinite; }
@keyframes twk { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-bebas);
  letter-spacing: 3px;
  font-size: 17px;
  line-height: 1;
  padding: 15px 26px 13px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
  user-select: none;
}
.btn:active { transform: translateY(3px); box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25); }
.btn-red { background: linear-gradient(180deg, #f0604b, var(--day-red)); color: var(--bulb); }
.btn-blue { background: linear-gradient(180deg, #3e85dc, var(--day-blue)); color: var(--bulb); }
.btn-gold { background: var(--gold-grad); color: #4a3a0c; }
.btn-outline { background: transparent; border: 2px solid var(--day-blue); color: var(--day-blue); box-shadow: none; padding: 13px 24px 11px; }
.btn-small { font-size: 14px; letter-spacing: 2px; padding: 11px 18px 9px; }
.btn-big { font-size: 20px; letter-spacing: 4px; padding: 18px 34px 15px; width: 100%; }

.fineprint { font-size: 13px; color: var(--ink-muted); line-height: 1.55; }
.center { text-align: center; }

/* Reveals (IntersectionObserver setzt .is-in) */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].is-in { opacity: 1; transform: none; }

/* Schwebender RSVP-Chip */
.fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  font-family: var(--font-bebas);
  letter-spacing: 3px;
  font-size: 16px;
  padding: 13px 20px 11px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f0604b, var(--day-red));
  color: var(--bulb);
  text-decoration: none;
  border: 2px solid var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.fab[hidden] { display: none; }

/* ============ Intro ============ */
#intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--night-black);
  background-image: radial-gradient(90% 60% at 50% 30%, rgba(231, 185, 72, 0.12), rgba(14, 14, 16, 0) 60%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.65s cubic-bezier(0.7, 0, 0.3, 1), opacity 0.65s ease;
  cursor: pointer;
}
#intro.done { transform: translateY(-100%); opacity: 0; pointer-events: none; }
html.no-intro #intro { display: none; }

.intro-stage { display: flex; flex-direction: column; align-items: center; gap: 18px; padding: 24px; text-align: center; max-width: 92vw; }

.intro-star {
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  opacity: 0;
  animation: neon-in 0.9s steps(1) 0.15s forwards;
  text-shadow: 0 0 18px rgba(231, 185, 72, 0.9);
}

.intro-bulbs { display: flex; gap: 10px; height: 13px; }
.intro-bulbs i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, var(--bulb), var(--bulb-gold) 70%);
  box-shadow: 0 0 12px rgba(251, 239, 182, 0.9);
  opacity: 0.12;
  animation: bulb-on 0.25s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes bulb-on { to { opacity: 1; } }

.intro-welcome { display: flex; gap: 8px; }
.intro-welcome span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--day-blue);
  color: var(--chip-white);
  font-family: var(--font-bebas);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 3px;
  opacity: 0;
  animation: neon-in 0.5s steps(2, jump-none) forwards;
}
.intro-welcome span:nth-child(1) { animation-delay: 0.45s; }
.intro-welcome span:nth-child(2) { animation-delay: 0.55s; }
.intro-welcome span:nth-child(3) { animation-delay: 0.65s; }
.intro-welcome span:nth-child(4) { animation-delay: 0.75s; }
.intro-welcome span:nth-child(5) { animation-delay: 0.85s; }
.intro-welcome span:nth-child(6) { animation-delay: 0.95s; }
.intro-welcome span:nth-child(7) { animation-delay: 1.05s; }

.intro-to {
  font-family: var(--font-bebas);
  letter-spacing: 8px;
  font-size: 19px;
  color: var(--bulb);
  opacity: 0;
  animation: neon-in 0.6s steps(3, jump-none) 1.1s forwards;
}

.intro-town {
  font-family: var(--font-anton);
  font-size: clamp(44px, 11vw, 96px);
  line-height: 0.95;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(231, 185, 72, 0.45));
  opacity: 0;
  animation: town-in 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.2) 1.35s forwards;
}
@keyframes town-in {
  0% { opacity: 0; transform: scale(1.18); }
  55% { opacity: 1; }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes neon-in {
  0% { opacity: 0; }
  40% { opacity: 0.35; }
  60% { opacity: 0.1; }
  100% { opacity: 1; }
}

.intro-skip {
  position: fixed;
  bottom: 22px;
  left: 0;
  right: 0;
  font-family: var(--font-bebas);
  letter-spacing: 4px;
  font-size: 12px;
  color: var(--night-dim);
  opacity: 0;
  animation: bulb-on 0.6s ease 1.7s forwards;
}

/* ============ Hero ============ */
.hero { padding-top: 28px; }
@media (min-width: 720px) { .hero { padding-top: 48px; } }
.hero-card { padding: 14px; }
.hero-body { padding: 26px 18px 30px; text-align: center; position: relative; }
@media (min-width: 720px) { .hero-body { padding: 40px 48px 44px; } }

.hero .eyebrow { margin-bottom: 6px; }
.hero-title {
  font-family: var(--font-anton);
  font-weight: 400;
  font-size: clamp(46px, 11vw, 92px);
  line-height: 0.95;
  color: var(--day-red);
  margin: 6px 0 0;
}
.hero-script { font-size: clamp(28px, 6vw, 44px); color: var(--day-sky); margin-top: 2px; }
.hero-sign { display: block; margin: 22px auto 0; width: min(560px, 100%); filter: drop-shadow(0 12px 18px rgba(20, 30, 50, 0.16)); }

.hero-date { font-family: var(--font-bebas); letter-spacing: clamp(2px, 0.8vw, 5px); font-size: clamp(17px, 4.6vw, 30px); color: var(--day-midnight); white-space: nowrap; }
.hero-time { font-family: var(--font-bebas); letter-spacing: 4px; font-size: clamp(16px, 3.6vw, 22px); color: var(--day-red); margin-top: 2px; }

.lockup { margin-top: 22px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lockup img { height: 30px; width: auto; }
.lockup-sub { font-family: var(--font-oswald); font-weight: 600; letter-spacing: 3px; font-size: 13px; color: var(--day-midnight); }
.lockup-addr { font-size: 14px; color: var(--day-infogray); }

.hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }

/* ============ Countdown ============ */
.cd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; max-width: 620px; margin: 0 auto; }
@media (min-width: 720px) { .cd-grid { gap: 16px; } }
.cd-cell {
  background: var(--surface);
  border: 2px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 14px 28px -16px rgba(20, 30, 50, 0.35);
  padding: 16px 4px 12px;
  text-align: center;
  transition: background-color 1.1s ease;
}
.cd-num {
  display: block;
  font-family: var(--font-anton);
  font-size: clamp(32px, 8.4vw, 64px);
  line-height: 1;
  color: var(--day-red);
}
.cd-num.tick { animation: cd-tick 0.45s ease; }
@keyframes cd-tick {
  0% { transform: translateY(-0.28em); opacity: 0.2; }
  60% { transform: translateY(0.06em); opacity: 1; }
  100% { transform: translateY(0); }
}
.cd-lbl { display: block; font-family: var(--font-bebas); letter-spacing: 3px; font-size: 13px; color: var(--day-blue); margin-top: 8px; }
.cd-live {
  text-align: center;
  font-family: var(--font-bebas);
  letter-spacing: 4px;
  font-size: clamp(22px, 5vw, 34px);
  color: var(--day-red);
  margin-top: 26px;
}

/* ============ Info ============ */
.info-grid { display: grid; gap: 18px; }
@media (min-width: 760px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }
.info-card { padding: 30px 26px 28px; text-align: center; }
.info-card p { font-size: 15px; color: var(--ink-muted); margin: 14px 0 0; }
.info-card p strong { font-weight: 500; color: var(--ink); }
.info-h { font-family: var(--font-bebas); letter-spacing: 4px; font-size: 18px; color: var(--day-midnight); margin: 0 0 14px; font-weight: 400; }
.info-card .lockup { margin-top: 4px; }
.info-card .btn { margin-top: 18px; }
.dress-line { font-family: var(--font-anton); font-size: 34px; color: var(--day-red); line-height: 1; }
.dress-sub { font-family: var(--font-bebas); letter-spacing: 6px; font-size: 17px; color: var(--day-midnight); margin-top: 6px; }
.insider { text-align: center; font-size: 16px; color: var(--day-midnight); margin: 40px 0 0; font-style: italic; }
body[data-world="dusk"] .insider, body[data-world="night"] .insider { color: var(--ink); }
body[data-world="dusk"] .info-h, body[data-world="night"] .info-h,
body[data-world="dusk"] .dress-sub, body[data-world="night"] .dress-sub { color: var(--ink); }

/* ============ Ablauf / Timeline ============ */
.timeline { list-style: none; margin: 0 auto; padding: 0; max-width: 640px; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--bulb-gold), var(--gold) 40%, var(--gold-deep));
}
.timeline li { position: relative; padding: 0 0 36px 48px; }
.timeline li:last-child { padding-bottom: 0; }
.tl-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--headline);
  box-shadow: 0 0 12px rgba(231, 185, 72, 0.35);
  transition: background-color 1.1s ease, color 0.9s ease;
}
.tl-icon svg { width: 17px; height: 17px; display: block; }
.tl-time { font-family: var(--font-bebas); letter-spacing: 3px; font-size: 15px; color: var(--eyebrow); }
.timeline h3 { font-family: var(--font-anton); font-weight: 400; font-size: 21px; line-height: 1.15; margin: 3px 0 0; color: var(--ink); text-transform: uppercase; }
.timeline p { margin: 6px 0 0; font-size: 15px; color: var(--ink-muted); }

/* ============ Line-up ============ */
.placards { display: grid; gap: 16px; }
@media (min-width: 760px) { .placards { grid-template-columns: repeat(3, 1fr); } }
.placard {
  background: var(--night-anthracite);
  border: 2px solid rgba(231, 185, 72, 0.55);
  border-radius: 14px;
  padding: 26px 20px 24px;
  text-align: center;
  box-shadow: 0 18px 36px -18px rgba(0, 0, 0, 0.8);
}
.placard-time { font-family: var(--font-bebas); letter-spacing: 3px; font-size: 14px; color: var(--night-dim); }
.placard-name {
  font-family: var(--font-anton);
  font-size: clamp(26px, 6vw, 34px);
  line-height: 1;
  margin-top: 8px;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.placard-sub { font-family: var(--font-bebas); letter-spacing: 3px; font-size: 13px; color: var(--night-muted); margin-top: 10px; }

.scratch-wrap { margin-top: 34px; text-align: center; }
.scratch-head { font-family: var(--font-bebas); letter-spacing: 4px; font-size: 16px; color: var(--night-dim); margin-bottom: 14px; }
.scratch-card {
  position: relative;
  width: min(420px, 100%);
  margin: 0 auto;
  border-radius: 14px;
  border: 2px solid var(--gold);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--night-anthracite);
  touch-action: none;
}
.scratch-secret { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.scratch-tba { font-family: var(--font-anton); font-size: clamp(30px, 7vw, 44px); line-height: 1; color: var(--night-champagne); }
.scratch-script { font-size: clamp(20px, 4.6vw, 28px); color: var(--night-neon); text-shadow: 0 0 14px rgba(53, 224, 208, 0.65); }
.scratch-canvas { position: absolute; inset: 0; width: 100%; height: 100%; cursor: crosshair; transition: opacity 0.7s ease; }
.scratch-canvas.cleared { opacity: 0; pointer-events: none; }
.scratch-hint { font-family: var(--font-bebas); letter-spacing: 3px; font-size: 13px; color: var(--night-dim); margin-top: 12px; }

/* ============ Slot-Buehne (Maschine selbst: slot.css) ============ */
.slot-stage { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.slot-note { font-family: var(--font-bebas); letter-spacing: 3px; font-size: 13px; color: var(--night-dim); text-align: center; }
.slot-cta[hidden] { display: none; }
.slot-cta { animation: bulb-on 0.5s ease; }

/* ============ Persoenliche Botschaft (Stilbruch: hell, ruhig) ============ */
#botschaft { padding-top: 40px; }
.note-card {
  background: var(--day-paper);
  color: var(--day-ink);
  border-radius: 16px;
  border: 2px solid var(--gold);
  box-shadow: 0 26px 52px -22px rgba(20, 30, 50, 0.45);
  padding: 34px 24px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 780px;
  margin: 0 auto;
}
@media (min-width: 760px) { .note-card { flex-direction: row; padding: 48px 46px; gap: 40px; } }

.note-photo { flex: none; align-self: center; width: 210px; background: #fff; padding: 10px 10px 14px; box-shadow: 0 14px 30px rgba(20, 30, 50, 0.25); transform: rotate(-2.5deg); }
.note-photo img { display: block; width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.note-photo-fallback { display: none; }
.note-photo.is-missing .note-photo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 5;
  background: repeating-linear-gradient(45deg, #ece5d2 0 12px, #f2ecdc 12px 24px);
  font-family: var(--font-bebas);
  letter-spacing: 3px;
  color: var(--day-warmgray);
  text-align: center;
}
.note-photo-caption { font-size: 13px; color: var(--day-warmgray); text-align: center; margin-top: 10px; font-style: italic; }

.note-text { flex: 1; }
.note-h { font-family: var(--font-anton); font-weight: 400; font-size: clamp(22px, 5vw, 30px); line-height: 1.1; color: var(--day-midnight); margin: 0 0 16px; }
.note-text p { font-size: 16px; line-height: 1.7; color: #3c3a33; margin: 0 0 14px; }
.note-text p strong { font-weight: 600; color: var(--day-red); }
.note-list { list-style: none; counter-reset: bitte; margin: 0 0 14px; padding: 0; }
.note-list li {
  counter-increment: bitte;
  position: relative;
  padding: 0 0 12px 44px;
  font-size: 16px;
  line-height: 1.6;
  color: #3c3a33;
}
.note-list li::before {
  content: counter(bitte);
  position: absolute;
  left: 0;
  top: 1px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--day-red);
  color: var(--bulb);
  font-family: var(--font-anton);
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.note-sign { font-family: var(--font-script); font-size: 34px; color: var(--day-midnight); margin-top: 4px; }
.note-text .btn { margin-top: 14px; }

/* ============ Jackpot fuer Ruanda ============ */
.ruanda-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  max-width: 720px;
  margin: 6px auto 30px;
}
@media (min-width: 760px) { .ruanda-gallery { grid-template-columns: repeat(3, 1fr); gap: 22px 18px; align-items: start; max-width: 860px; } }
.ruanda-gallery figure { margin: 0; background: #fff; padding: 7px 7px 9px; box-shadow: 0 14px 28px rgba(0, 0, 0, 0.55); }
.ruanda-gallery figure:nth-child(odd) { transform: rotate(-1.6deg); }
.ruanda-gallery figure:nth-child(even) { transform: rotate(1.4deg); }
.ruanda-gallery img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.ruanda-gallery figcaption { font-size: 12px; line-height: 1.45; color: #4a4a44; text-align: center; margin-top: 8px; }

.ruanda-text { max-width: 640px; margin: 0 auto; }
.ruanda-text p { font-size: 16px; color: var(--night-muted); margin: 0 0 16px; }
.ruanda-text p strong { color: var(--night-champagne); font-weight: 500; }

.konto-card {
  background: var(--night-anthracite);
  border: 2px solid rgba(231, 185, 72, 0.55);
  border-radius: 14px;
  max-width: 560px;
  margin: 10px auto 26px;
  padding: 26px 24px;
  text-align: center;
}
.konto-h { font-family: var(--font-bebas); letter-spacing: 4px; font-size: 16px; color: var(--gold); margin-bottom: 16px; }
.konto-row { margin-bottom: 12px; }
.konto-lbl { display: block; font-family: var(--font-bebas); letter-spacing: 3px; font-size: 12px; color: var(--night-dim); }
.konto-val { display: block; font-size: 17px; font-weight: 400; color: var(--night-champagne); }
.konto-iban { font-size: clamp(18px, 4.6vw, 24px); font-weight: 500; letter-spacing: 1px; user-select: all; font-variant-numeric: tabular-nums; }
.konto-card .btn { margin-top: 8px; }
.konto-card .fineprint { margin: 14px 0 0; }

/* ============ RSVP-Ticket ============ */
.ticket {
  background: var(--night-anthracite);
  border: 2px solid var(--gold);
  border-radius: 16px;
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.85);
}
.ticket-head { background: linear-gradient(180deg, #f0604b, var(--day-red)); padding: 14px 18px 12px; text-align: center; }
.ticket-admit { font-family: var(--font-bebas); letter-spacing: 6px; font-size: 17px; color: var(--bulb); margin-top: 10px; }

.rsvp-form { padding: 28px 22px; }
@media (min-width: 720px) { .rsvp-form { padding: 34px 38px; } }

.field { display: block; margin-bottom: 20px; }
.field-lbl { display: block; font-family: var(--font-bebas); letter-spacing: 3px; font-size: 13px; color: var(--gold); margin-bottom: 8px; }
.field input[type="text"],
.field select,
.field textarea {
  width: 100%;
  background: #0a0a0c;
  border: 1px solid rgba(231, 185, 72, 0.4);
  border-radius: 8px;
  color: var(--night-champagne);
  font-family: var(--font-oswald);
  font-weight: 300;
  font-size: 16px;
  padding: 13px 14px;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(231, 185, 72, 0.18);
}
.field ::placeholder { color: #5d5a50; opacity: 1; }

.answer-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.answer input { position: absolute; opacity: 0; pointer-events: none; }
.answer span {
  display: block;
  text-align: center;
  font-family: var(--font-bebas);
  letter-spacing: 2.5px;
  font-size: 16px;
  padding: 15px 6px 12px;
  border: 2px solid rgba(231, 185, 72, 0.5);
  border-radius: 10px;
  color: var(--night-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.answer input:checked + span { background: linear-gradient(180deg, #f0604b, var(--day-red)); border-color: var(--gold); color: var(--bulb); }
.answer-no input:checked + span { background: #26262d; border-color: var(--night-muted); color: var(--night-champagne); }
.answer input:focus-visible + span { box-shadow: 0 0 0 3px rgba(231, 185, 72, 0.35); }

/* Honeypot: fuer Menschen unsichtbar */
.hp { position: absolute; left: -9999px; top: -9999px; height: 1px; width: 1px; overflow: hidden; }

.rsvp-status {
  margin-top: 16px;
  border: 2px solid var(--day-red);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--night-champagne);
  background: rgba(229, 64, 42, 0.12);
}
.rsvp-status[hidden] { display: none; }

.rsvp-win { padding: 40px 24px 44px; text-align: center; }
.rsvp-win .bulbs { margin-bottom: 18px; }
.rsvp-win-h {
  font-family: var(--font-anton);
  font-size: clamp(32px, 8vw, 48px);
  line-height: 1.05;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0 0 14px;
}
.rsvp-win p { color: var(--night-muted); font-size: 16px; margin: 0 0 10px; }
.rsvp-win p strong { color: var(--night-champagne); font-weight: 500; }
.rsvp-win .btn { margin-top: 14px; }

.ticket.won .ticket-head .bulbs { animation: twk 0.22s steps(1) infinite; }

.ticket-foot { padding: 0 22px 26px; text-align: center; }
.barcode {
  height: 34px;
  max-width: 300px;
  margin: 0 auto;
  background: repeating-linear-gradient(90deg, var(--night-champagne) 0 2px, transparent 2px 4px, var(--night-champagne) 4px 7px, transparent 7px 10px, var(--night-champagne) 10px 12px, transparent 12px 16px, var(--night-champagne) 16px 18px, transparent 18px 21px);
  opacity: 0.8;
}
.ticket-url { font-family: var(--font-bebas); letter-spacing: 4px; font-size: 13px; color: var(--night-dim); margin-top: 8px; }

/* ============ Muenz-Konfetti (Slot-Jackpot & RSVP-Gewinn) ============ */
.coin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--bulb), var(--gold) 60%, var(--gold-deep));
  box-shadow: 0 0 8px rgba(231, 185, 72, 0.7);
  pointer-events: none;
  z-index: 40;
  animation: coin-fly 1.1s cubic-bezier(0.2, 0.7, 0.4, 1) forwards;
}
@keyframes coin-fly {
  0% { transform: translate(0, 0) scale(0.6); opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translate(var(--cx, 0), var(--cy, -120px)) scale(1); opacity: 0; }
}

/* ============ Footer ============ */
footer { padding: 60px 0 90px; text-align: center; }
.foot-chip {
  width: 64px;
  height: 64px;
  margin: 24px auto 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--night-anthracite) 0 54%, transparent 55%),
    repeating-conic-gradient(from -11.25deg, var(--gold) 0deg 22.5deg, transparent 22.5deg 45deg),
    radial-gradient(circle, var(--gold-deep) 0 100%);
  border: 2px solid var(--gold);
  position: relative;
}
.foot-chip::after {
  content: "30";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-anton);
  font-size: 24px;
  color: var(--gold);
}
.foot-line { font-family: var(--font-bebas); letter-spacing: 5px; font-size: 16px; color: var(--headline); }
.foot-sub { font-family: var(--font-bebas); letter-spacing: 3px; font-size: 13px; color: var(--ink-muted); margin-top: 8px; }
.foot-note { font-size: 13px; color: var(--ink-muted); margin-top: 18px; }
.foot-credit {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  margin-top: 30px;
  font-family: var(--font-bebas);
  letter-spacing: 2.5px;
  font-size: 12px;
  color: var(--ink-muted);
  text-decoration: none;
  opacity: 0.75;
}
.foot-credit:hover { opacity: 1; color: var(--gold); }
.foot-credit-brand { display: inline-flex; align-items: center; gap: 6px; letter-spacing: 3px; }
.foot-credit img { display: block; height: 18px; width: auto; }
body[data-world="day"] footer .foot-credit img { filter: invert(0.6); }

/* ============ Reduced Motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .bulbs-twinkle, .cd-num.tick, .coin, .slot-cta { animation: none; }
  body { transition: none; }
}

/* ============ Print (IBAN & Fakten schwarz auf weiss) ============ */
@media print {
  body { background: #fff !important; color: #000 !important; }
  #intro, .fab, .scratch-canvas, .scratch-hint, #slot, .hero-ctas, .rsvp-form button, footer .foot-chip { display: none !important; }
  section { padding: 24px 0; }
  .card, .note-card, .konto-card, .ticket, .placard, .cd-cell { box-shadow: none !important; background: #fff !important; border: 1px solid #999 !important; color: #000 !important; }
  .sectitle, .seclabel, .note-h, .konto-val, .konto-lbl, .konto-h, .placard-name, .timeline h3, .timeline p, .tl-time, .ruanda-text p, .note-text p, .note-list li, .rsvp-win p, .ruanda-gallery figcaption { color: #000 !important; background: none !important; -webkit-background-clip: initial !important; background-clip: initial !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}
