/* ==========================================================
   Seraphina Asimus · Goldschmiede-Ästhetik
   Mobile-first, ruhig, elegant, mit Goldglanz
   ========================================================== */

:root {
  /* Farben — tiefes Schwarzbraun + warmes Gold */
  --bg-0: #0e0a06;
  --bg-1: #1a130c;
  --bg-2: #241a10;
  --ink: #f3ead7;
  --ink-dim: #c9bfa8;
  --ink-faint: #8a7e67;

  --gold-1: #f4d98a;
  --gold-2: #d4a84a;
  --gold-3: #a8792a;
  --gold-4: #6b4a17;

  --champagne: #e8d7a8;
  --rose-gold: #d9a77a;

  /* Typo */
  --font-display: 'Italiana', 'Cormorant Garamond', serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, system-ui, sans-serif;

  /* Spacing */
  --pad-x: clamp(1.25rem, 6vw, 3rem);
  --section-y: clamp(4rem, 12vw, 8rem);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  /* Tiefer, warmer Verlauf mit subtilem Goldschimmer */
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 74, 0.15), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(168, 121, 42, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 50%, var(--bg-0));
  min-height: 100vh;
}

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

a {
  color: var(--gold-1);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover { color: var(--champagne); }

/* ==========================================================
   Goldene schwebende Partikel
   ========================================================== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold-1);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px var(--gold-2), 0 0 16px rgba(244, 217, 138, 0.3);
  animation: float 14s infinite ease-in-out;
}
.particles span:nth-child(1)  { left: 8%;  top: 15%; animation-delay: 0s;   }
.particles span:nth-child(2)  { left: 22%; top: 70%; animation-delay: 1.5s; }
.particles span:nth-child(3)  { left: 35%; top: 40%; animation-delay: 3s;   }
.particles span:nth-child(4)  { left: 48%; top: 85%; animation-delay: 5s;   }
.particles span:nth-child(5)  { left: 60%; top: 25%; animation-delay: 2.5s; }
.particles span:nth-child(6)  { left: 72%; top: 55%; animation-delay: 4s;   }
.particles span:nth-child(7)  { left: 85%; top: 15%; animation-delay: 6s;   }
.particles span:nth-child(8)  { left: 92%; top: 80%; animation-delay: 1s;   }
.particles span:nth-child(9)  { left: 15%; top: 90%; animation-delay: 7s;   }
.particles span:nth-child(10) { left: 40%; top: 10%; animation-delay: 3.5s; }
.particles span:nth-child(11) { left: 55%; top: 65%; animation-delay: 5.5s; }
.particles span:nth-child(12) { left: 78%; top: 35%; animation-delay: 8s;   }
.particles span:nth-child(13) { left: 5%;  top: 50%; animation-delay: 9s;   }
.particles span:nth-child(14) { left: 65%; top: 92%; animation-delay: 2s;   }
.particles span:nth-child(15) { left: 88%; top: 45%; animation-delay: 6.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
  10%      { opacity: 0.7; }
  50%      { transform: translateY(-40px) translateX(15px); opacity: 1; }
  90%      { opacity: 0.5; }
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(3rem, 10vw, 6rem) var(--pad-x) clamp(2rem, 6vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
}

.hero__ornament {
  color: var(--gold-2);
  font-size: 1.5rem;
  opacity: 0.6;
  letter-spacing: 0.5em;
  margin: 0.5rem 0 1.5rem;
  animation: fadeInDown 1.6s ease both;
}
.hero__ornament.bottom { margin: 2.5rem 0 1rem; }

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 1.75rem;
  animation: fadeInDown 1.4s 0.2s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 14vw, 7rem);
  line-height: 0.95;
  margin: 0;
  color: var(--ink);
  animation: fadeInUp 1.8s 0.3s ease both;
}
.hero__title-line {
  display: block;
  background: linear-gradient(
    180deg,
    var(--champagne) 0%,
    var(--gold-1) 45%,
    var(--gold-2) 60%,
    var(--gold-3) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 40px rgba(244, 217, 138, 0.15);
}
.hero__title-line--script {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 0.85em;
  letter-spacing: 0.02em;
  margin-top: -0.05em;
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.95rem, 3.5vw, 1.2rem);
  color: var(--ink-dim);
  letter-spacing: 0.04em;
  margin: 1.25rem 0 2.5rem;
  animation: fadeInUp 1.8s 0.6s ease both;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold-2), transparent);
  opacity: 0.6;
  animation: fadeInDown 2s 1.5s ease both, scrollNudge 2s 1.5s infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollNudge {
  0%, 100% { height: 40px; opacity: 0.6; }
  50%      { height: 55px; opacity: 1; }
}

/* ==========================================================
   COUNTDOWN
   ========================================================== */
.countdown {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 4vw, 2rem);
  border: 1px solid rgba(212, 168, 74, 0.25);
  border-radius: 2px;
  background:
    linear-gradient(180deg, rgba(36, 26, 16, 0.6), rgba(14, 10, 6, 0.8));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
  animation: fadeInUp 2s 0.8s ease both;
}
.countdown::before,
.countdown::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-2);
}
.countdown::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.countdown::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}

.countdown__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 1.5rem;
  text-align: center;
}

.countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 2vw, 1.25rem);
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}
.countdown__unit:not(:last-child)::after {
  content: ':';
  position: absolute;
  right: calc(-1 * clamp(0.25rem, 1vw, 0.625rem));
  top: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 7vw, 2.5rem);
  color: var(--gold-3);
  opacity: 0.5;
  line-height: 1;
}

.countdown__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 10vw, 4rem);
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(180deg, var(--champagne), var(--gold-2) 70%, var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  text-align: center;
  transition: transform 0.3s ease;
}

.countdown__name {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.countdown__date {
  margin: 1.5rem 0 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
}

/* ==========================================================
   SECTIONS
   ========================================================== */
.section {
  position: relative;
  padding: var(--section-y) var(--pad-x);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  z-index: 1;
}

.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 1.5rem;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 2.5rem;
  background: linear-gradient(180deg, var(--champagne), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portrait {
  max-width: 620px;
  margin: 0 auto;
  font-size: clamp(1rem, 3vw, 1.2rem);
  line-height: 1.8;
  color: var(--ink-dim);
}
.portrait p + p { margin-top: 1.5rem; }
.portrait em { color: var(--gold-1); font-style: italic; }
.portrait strong { color: var(--ink); font-weight: 400; letter-spacing: 0.03em; }

/* ==========================================================
   CRAFT GRID
   ========================================================== */
.craft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .craft-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

.craft-card {
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, rgba(36, 26, 16, 0.4), rgba(14, 10, 6, 0.6));
  border: 1px solid rgba(212, 168, 74, 0.18);
  border-radius: 2px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.craft-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(244, 217, 138, 0.08) 50%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
}
.craft-card:hover {
  border-color: rgba(212, 168, 74, 0.5);
  transform: translateY(-2px);
}
.craft-card:hover::before { opacity: 1; }

.craft-card__icon {
  font-size: 1.8rem;
  color: var(--gold-1);
  margin-bottom: 0.75rem;
}
.craft-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0 0 0.75rem;
  color: var(--ink);
  letter-spacing: 0.05em;
}
.craft-card p {
  font-size: 0.95rem;
  color: var(--ink-dim);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================
   QUOTE
   ========================================================== */
.section--quote {
  padding-top: calc(var(--section-y) * 0.6);
  padding-bottom: calc(var(--section-y) * 0.6);
}
.quote {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.3rem, 4.5vw, 2rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}
.quote__mark {
  color: var(--gold-2);
  font-size: 2.5em;
  line-height: 0;
  vertical-align: -0.2em;
  font-family: var(--font-serif);
  margin-right: 0.15em;
}
.quote__mark--end { margin-left: 0.1em; margin-right: 0; }

/* ==========================================================
   FACTS
   ========================================================== */
.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 1rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .facts { grid-template-columns: repeat(4, 1fr); }
}
.fact {
  text-align: center;
  padding: 1rem 0.5rem;
  border-top: 1px solid rgba(212, 168, 74, 0.2);
  border-bottom: 1px solid rgba(212, 168, 74, 0.2);
}
.fact__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  background: linear-gradient(180deg, var(--champagne), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}
.fact__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ==========================================================
   SECRET / BUTTON
   ========================================================== */
.section--secret { padding-top: calc(var(--section-y) * 0.8); }
.secret-text {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-style: italic;
  color: var(--ink-dim);
  line-height: 1.7;
  font-size: clamp(1rem, 3vw, 1.15rem);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-1);
  background: transparent;
  border: 1px solid var(--gold-3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-3), var(--gold-1));
  transform: translateY(101%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.button:hover {
  color: var(--bg-0);
  border-color: var(--gold-1);
}
.button:hover::before { transform: translateY(0); }
.button__arrow { transition: transform 0.3s ease; }
.button:hover .button__arrow { transform: translateX(4px); }

.secret-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 560px) {
  .secret-buttons { flex-direction: row; gap: 1rem; }
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  padding: 3rem var(--pad-x) 2.5rem;
  text-align: center;
  border-top: 1px solid rgba(212, 168, 74, 0.12);
  margin-top: 4rem;
}
.footer__text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
  margin: 0 0 0.5rem;
}
.footer__sub {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin: 0;
}

/* ==========================================================
   ENTEN-SEITE
   ========================================================== */
.page-ducks {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(244, 217, 138, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(217, 167, 122, 0.1), transparent 55%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 50%, var(--bg-0));
}

.nav-back {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 5;
}

.duck-banner {
  font-size: clamp(1rem, 4vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: 0.1em;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  margin: 1rem 0;
  opacity: 0.9;
  animation: duckSlide 20s linear infinite;
}
@keyframes duckSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-20%); }
}

.hero--ducks .hero__title-line {
  filter: drop-shadow(0 0 20px rgba(244, 217, 138, 0.2));
}

.countdown--ducks {
  border-color: rgba(212, 168, 74, 0.4);
  box-shadow: 0 0 40px rgba(244, 217, 138, 0.08);
}

/* Regnende Enten */
.duck-rain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.duck-rain span {
  position: absolute;
  top: -5rem;
  font-size: clamp(1.2rem, 3vw, 2rem);
  animation: duckFall linear infinite;
  opacity: 0.6;
}
@keyframes duckFall {
  from { transform: translateY(-10vh) rotate(0deg); }
  to   { transform: translateY(110vh) rotate(360deg); }
}

/* Schwimmende Enten */
.floating-ducks {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.floating-duck {
  position: absolute;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  animation: bob 3s ease-in-out infinite;
  opacity: 0.75;
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-12px) rotate(5deg); }
}

/* Enten-Feld */
.duck-field {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
  gap: 0.5rem;
  max-width: 700px;
  margin: 0 auto;
  padding: 1.5rem;
  border: 1px solid rgba(212, 168, 74, 0.25);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(36, 26, 16, 0.4), rgba(14, 10, 6, 0.6));
}
.duck-field span {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: inline-block;
}
.duck-field span:hover {
  transform: scale(1.4) rotate(12deg);
}

/* Enten-Wand */
.duck-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(28px, 1fr));
  gap: 0.25rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 1rem;
  font-size: clamp(0.9rem, 2.2vw, 1.3rem);
  line-height: 1.4;
  text-align: center;
  border: 1px solid rgba(212, 168, 74, 0.18);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(36, 26, 16, 0.3), rgba(14, 10, 6, 0.5));
}

/* Enten-Button */
.button--duck {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  padding: 1.25rem 2rem;
  cursor: pointer;
  max-width: 100%;
  word-break: normal;
  line-height: 1.4;
}
.button--duck:hover { animation: wobble 0.5s ease; }
@keyframes wobble {
  0%, 100% { transform: rotate(0); }
  25%      { transform: rotate(-3deg); }
  75%      { transform: rotate(3deg); }
}

.duck-counter {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-1);
}
.duck-counter span {
  font-size: 2rem;
  color: var(--gold-1);
  font-variant-numeric: tabular-nums;
}

.facts--ducks .fact__number {
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  -webkit-text-fill-color: initial;
  background: none;
}

.quote-author {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1.5rem;
}

.footer--ducks .duck-banner {
  margin: 0 0 1.5rem;
  opacity: 0.7;
}

/* ==========================================================
   QUIZ
   ========================================================== */
.section--quiz {
  max-width: 720px;
  padding-top: clamp(2rem, 6vw, 3rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.quiz {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.quiz__progress {
  margin-bottom: 1.5rem;
  text-align: center;
}
.quiz__progress-label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin: 0 0 0.75rem;
}
.quiz__progress-bar {
  position: relative;
  height: 2px;
  background: rgba(212, 168, 74, 0.15);
  overflow: hidden;
  border-radius: 2px;
}
.quiz__progress-fill {
  position: absolute;
  top: 0; left: 0; bottom: 0;
  background: linear-gradient(90deg, var(--gold-3), var(--gold-1));
  transition: width 0.5s cubic-bezier(.4,.0,.2,1);
}

.quiz__card {
  padding: clamp(1.5rem, 5vw, 2.5rem) clamp(1.25rem, 4vw, 2rem);
  background: linear-gradient(180deg, rgba(36, 26, 16, 0.6), rgba(14, 10, 6, 0.85));
  border: 1px solid rgba(212, 168, 74, 0.25);
  border-radius: 2px;
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: quizCardIn 0.5s ease both;
}
.quiz__card::before,
.quiz__card::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 24px;
  border: 1px solid var(--gold-2);
}
.quiz__card::before {
  top: -1px; left: -1px;
  border-right: none; border-bottom: none;
}
.quiz__card::after {
  bottom: -1px; right: -1px;
  border-left: none; border-top: none;
}
@keyframes quizCardIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.quiz__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(212, 168, 74, 0.3);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.quiz__question {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 5vw, 2rem);
  line-height: 1.25;
  margin: 0 0 1.75rem;
  color: var(--ink);
  background: linear-gradient(180deg, var(--champagne), var(--gold-1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.quiz__options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.quiz__option {
  width: 100%;
  min-height: 52px;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  text-align: left;
  color: var(--ink);
  background: rgba(14, 10, 6, 0.5);
  border: 1px solid rgba(212, 168, 74, 0.25);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}
.quiz__option:hover:not(:disabled) {
  border-color: var(--gold-2);
  background: rgba(36, 26, 16, 0.7);
  transform: translateY(-1px);
}
.quiz__option:disabled {
  cursor: default;
  opacity: 0.85;
}
.quiz__option.is-correct {
  border-color: var(--gold-1);
  background: linear-gradient(180deg, rgba(244, 217, 138, 0.15), rgba(168, 121, 42, 0.2));
  color: var(--champagne);
  box-shadow: 0 0 30px rgba(244, 217, 138, 0.12);
  opacity: 1;
}
.quiz__option.is-wrong {
  border-color: rgba(180, 70, 60, 0.6);
  background: linear-gradient(180deg, rgba(180, 70, 60, 0.12), rgba(90, 30, 25, 0.15));
  color: #e9b6b0;
  opacity: 1;
}

.quiz__feedback {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  border-left: 2px solid var(--gold-2);
  background: rgba(14, 10, 6, 0.4);
  animation: quizCardIn 0.4s ease both;
}
.quiz__feedback.is-wrong {
  border-left-color: rgba(180, 70, 60, 0.7);
}
.quiz__feedback-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-1);
  margin: 0 0 0.5rem;
  letter-spacing: 0.03em;
}
.quiz__feedback.is-wrong .quiz__feedback-title {
  color: #e9b6b0;
}
.quiz__feedback-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0;
}

.quiz__next {
  margin-top: 1.75rem;
  width: 100%;
  justify-content: center;
}

.quiz__result {
  text-align: center;
}
.quiz__result .quiz__badge {
  margin-bottom: 1rem;
}
.quiz__score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin: 1.5rem 0;
}
.quiz__score-value {
  font-family: var(--font-display);
  font-size: clamp(4rem, 18vw, 7rem);
  line-height: 1;
  background: linear-gradient(180deg, var(--champagne), var(--gold-2) 70%, var(--gold-3));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.quiz__score-total {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2rem);
  color: var(--ink-faint);
}

.quiz__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.75rem;
  align-items: stretch;
}
.quiz__actions .button {
  justify-content: center;
  width: 100%;
}
@media (min-width: 560px) {
  .quiz__actions {
    flex-direction: row;
    justify-content: center;
  }
  .quiz__actions .button { width: auto; }
}

/* Reduce motion respektieren */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .duck-rain { display: none; }
}
