/* princessloana.de — Zartrosa, Gold, Bordeaux */
:root {
  --blush: #FBF1F3;
  --blush-2: #F6E3E8;
  --blush-3: #F4D6DD;
  --rose-line: #EBC9D2;
  --ink: #3D2A30;
  --ink-soft: #6B5159;
  --ink-muted: #8C6F77;
  --rose: #A14F68;
  --berry: #7E3A50;
  --berry-dark: #6A2F43;
  --bordeaux: #5E2436;
  --gold: #C9A14A;
  --gold-deep: #B5803C;
  --gold-light: #E8CB7E;
  --gold-dark: #A8842F;

  --font-serif: "Spectral", Georgia, "Times New Roman", serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", "SF Mono", "Roboto Mono", monospace;

  --container: 1120px;

  /* Siegel-Navigation + Geschenkband */
  --seal-size: 104px;
  --seal-top: 18px;
  --seal-right: 22px;
  --ribbon: 32px;
  /* so viel Platz braucht der Inhalt rechts, damit das senkrechte Band nichts verdeckt */
  --ribbon-gutter: calc(var(--seal-right) + var(--seal-size) / 2 + var(--ribbon) / 2 + 14px);
}
@media (max-width: 600px) {
  :root { --seal-size: 76px; --seal-top: 10px; --seal-right: 8px; --ribbon: 20px; }
}

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

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--blush);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a { color: var(--rose); text-decoration: none; transition: color 140ms ease; }
a:hover { color: var(--berry); }

img { display: block; }

@keyframes shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Pfingstrosen-Ranken ---------- */
.vine {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 120px;
  pointer-events: none;
  z-index: 7;
  overflow: hidden;
}
.vine--left { left: 0; }
.vine--right { right: 0; transform: scaleX(-1); }
.vine__inner { will-change: transform; }
.vine__inner svg { display: block; width: 110px; height: 4800px; }
.vine .pfs { transform-box: fill-box; transform-origin: center; }

/* Schmale Bildschirme: Ranken verkleinert am Rand, links rückt der Inhalt etwas ein,
   rechts rankt die Blume außen neben dem Geschenkband */
@media (max-width: 999px) {
  .vine { width: 34px; }
  .vine__inner svg { width: 34px; height: 1632px; }
}

/* ---------- Navigation: Wachssiegel + Wachstropfen ---------- */
.seal-nav {
  position: fixed;
  top: var(--seal-top);
  right: var(--seal-right);
  z-index: 60;
  width: var(--seal-size);
  height: var(--seal-size);
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.seal-nav__face {
  position: relative;
  display: block;
  width: var(--seal-size);
  height: var(--seal-size);
  transform: rotate(-8deg);
  /* nur ein knapper Auflageschatten aufs Band, kein Schimmer */
  filter: drop-shadow(0 2px 2px rgba(80, 52, 34, 0.28));
  transition: transform 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.seal-nav img { width: 100%; height: 100%; object-fit: contain; }
.seal-nav__text { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.seal-nav__text text {
  font-family: var(--font-serif);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}
.seal-nav__emboss-light { fill: #FFF3EA; opacity: 0.75; }
.seal-nav__emboss-dark { fill: #9A6B55; }
.seal-nav:hover .seal-nav__face { transform: rotate(4deg) scale(1.05); }
.seal-nav[aria-expanded="true"] .seal-nav__face { transform: rotate(-32deg) scale(0.9); }
.seal-nav:focus-visible { outline: none; }
.seal-nav:focus-visible .seal-nav__face { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 50%; }

/* ---------- Goldenes Geschenkband (matt, Ripsband) ---------- */
/* liegt unter den Ranken (z 7) und wird beim offenen Menü mit weichgezeichnet */
.ribbon {
  position: fixed;
  z-index: 6;
  pointer-events: none;
  box-shadow: 0 2px 6px -3px rgba(94, 36, 54, 0.22);
}
.ribbon--h {
  left: 0;
  top: calc(var(--seal-top) + var(--seal-size) / 2 - var(--ribbon) / 2);
  right: calc(var(--seal-right) + var(--seal-size) / 2);
  height: var(--ribbon);
  background:
    repeating-linear-gradient(90deg, rgba(92, 64, 22, 0.07) 0 1px, transparent 1px 3px),
    linear-gradient(to bottom, #BE9A52 0%, #D2B06C 12%, #D8B874 50%, #D2B06C 88%, #BE9A52 100%);
}
.ribbon--v {
  top: calc(var(--seal-top) + var(--seal-size) / 2);
  bottom: 0;
  right: calc(var(--seal-right) + var(--seal-size) / 2 - var(--ribbon) / 2);
  width: var(--ribbon);
  background:
    repeating-linear-gradient(0deg, rgba(92, 64, 22, 0.07) 0 1px, transparent 1px 3px),
    linear-gradient(to right, #BE9A52 0%, #D2B06C 12%, #D8B874 50%, #D2B06C 88%, #BE9A52 100%);
}

.wax-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(251, 241, 243, 0.72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 0s linear 320ms;
}
.wax-menu { position: fixed; top: 136px; right: 30px; z-index: 55; pointer-events: none; }
.wax-menu__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.wax-menu__list li:nth-child(1) { margin-right: 4px; }
.wax-menu__list li:nth-child(2) { margin-right: 22px; }
.wax-menu__list li:nth-child(3) { margin-right: 0; }
.wax-menu__list li:nth-child(4) { margin-right: 16px; }

.wax-drop {
  --i: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--ink);
  visibility: hidden;
  transition: visibility 0s linear 400ms;
}
.wax-drop:hover { color: var(--berry); }
.wax-menu__list li:nth-child(2) .wax-drop { --i: 1; }
.wax-menu__list li:nth-child(3) .wax-drop { --i: 2; }
.wax-menu__list li:nth-child(4) .wax-drop { --i: 3; }

.wax-drop__blob {
  display: block;
  width: 78px;
  height: 78px;
  flex: none;
  opacity: 0;
  transform: translateY(calc(-60px - var(--i) * 88px)) scale(0.2);
  transition: transform 520ms cubic-bezier(0.34, 1.56, 0.64, 1), opacity 200ms ease;
  transition-delay: calc(var(--i) * 70ms);
  filter: drop-shadow(0 8px 10px rgba(94, 36, 54, 0.28));
}
.wax-drop__blob svg { display: block; width: 100%; height: 100%; overflow: visible; transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1); }
.wax-drop:hover .wax-drop__blob svg,
.wax-drop:focus-visible .wax-drop__blob svg { transform: scale(1.08) rotate(-6deg); }

.wax-drop__label {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.1;
  opacity: 0;
  transform: translateX(14px);
  transition: opacity 260ms ease, transform 360ms ease;
  transition-delay: calc(120ms + var(--i) * 70ms);
}
.wax-drop__label small {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--gold-deep);
}
.wax-drop:focus-visible { outline: none; }
.wax-drop:focus-visible .wax-drop__label { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 6px; }

/* Silberglitzer auf den Tropfen */
@keyframes glint {
  0%, 100% { transform: scale(0.2) rotate(0deg); opacity: 0; }
  45% { transform: scale(1) rotate(45deg); opacity: 1; }
  70% { transform: scale(0.5) rotate(70deg); opacity: 0.5; }
}
@keyframes glint-dot { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }
.wax-drop .glint { transform-box: fill-box; transform-origin: center; animation: glint 2.4s ease-in-out infinite; filter: drop-shadow(0 0 2px #fff) drop-shadow(0 0 1px rgba(140, 147, 160, 0.8)); }
.wax-drop .glint-dot { animation: glint-dot 1.6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .wax-drop .glint { animation: none; opacity: 0.8; transform: scale(0.7); }
  .wax-drop .glint-dot { animation: none; }
}

html.menu-open .wax-backdrop { opacity: 1; visibility: visible; transition: opacity 320ms ease; }
html.menu-open .wax-menu { pointer-events: auto; }
html.menu-open .wax-drop { visibility: visible; transition: none; }
html.menu-open .wax-drop__blob { opacity: 1; transform: none; }
html.menu-open .wax-drop__label { opacity: 1; transform: none; }
/* Beim Schließen in umgekehrter Reihenfolge zurück ins Siegel */
html:not(.menu-open) .wax-drop__blob { transition-delay: calc((3 - var(--i)) * 50ms); transition-duration: 320ms; }
html:not(.menu-open) .wax-drop__label { transition-delay: 0ms; }

@media (max-width: 600px) {
  .wax-menu { top: 96px; right: 10px; }
  .wax-drop__blob { width: 68px; height: 68px; }
  .wax-drop__label { font-size: 23px; }
}

/* ---------- Gemeinsame Bausteine ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow--gold { color: var(--gold-light); }
.eyebrow__line { width: 36px; height: 1px; background: var(--gold); flex: none; }

.seal { object-fit: contain; pointer-events: none; }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px 24px 96px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 64px;
  align-items: center;
}
.hero__media { display: flex; justify-content: center; animation: rise 700ms ease both; }
.portrait { position: relative; width: 100%; max-width: 440px; }
.portrait__ring { position: absolute; border: 1px solid var(--gold); }
.portrait__ring--inner { inset: -14px; border-radius: 999px 999px 28px 28px; opacity: 0.7; }
.portrait__ring--outer { inset: -22px; border-radius: 999px 999px 32px 32px; opacity: 0.35; }
.portrait__frame {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px 24px 24px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 40px 80px -30px rgba(126, 58, 80, 0.45), inset 0 0 0 1px var(--blush);
  background: var(--blush-3);
}
.portrait__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.hero__copy { display: flex; flex-direction: column; gap: 24px; animation: rise 700ms 120ms ease both; }
.hero__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title em { font-style: italic; font-weight: 400; color: var(--rose); }
.hero__lead {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 460px;
  text-wrap: pretty;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; padding-top: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background-color 140ms ease, color 140ms ease;
}
.btn--primary {
  background: var(--berry);
  color: var(--blush);
  box-shadow: 0 14px 30px -14px rgba(126, 58, 80, 0.7);
}
.btn--primary:hover { background: var(--berry-dark); color: #FFFFFF; }
.btn--ghost { border: 1px solid var(--gold); color: var(--berry); background: transparent; }
.btn--ghost:hover { background: var(--blush-2); color: var(--berry); }

/* ---------- Trennlinie ---------- */
.divider {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.divider__line { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider__line--out { background: linear-gradient(90deg, var(--gold), transparent); }
.divider__diamond { width: 8px; height: 8px; background: var(--gold); transform: rotate(45deg); }

/* ---------- Steckbrief ---------- */
.profile { max-width: var(--container); margin: 0 auto; padding: 96px 24px 112px; }
.profile__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 56px;
  align-items: start;
}
.profile__intro { display: flex; flex-direction: column; gap: 18px; }
/* Nur bei zwei Spalten mitlaufen lassen – einspaltig würde die Einleitung über den Inhalt gleiten */
@media (min-width: 700px) {
  .profile__intro { position: sticky; top: calc(var(--seal-top) + var(--seal-size) / 2 + var(--ribbon) / 2 + 28px); }
}
.profile__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.profile__title em { font-style: italic; color: var(--rose); }
.profile__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 380px;
  text-wrap: pretty;
}

.facts { position: relative; border-top: 1px solid var(--gold); }
.facts__list { margin: 0; display: flex; flex-direction: column; }
.seal--facts {
  position: absolute;
  top: -46px;
  right: -8px;
  width: 92px;
  height: 92px;
  transform: rotate(10deg);
  filter: drop-shadow(0 10px 16px rgba(126, 58, 80, 0.3));
}
.fact {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rose-line);
  align-items: baseline;
}
.fact__num { font-family: var(--font-serif); font-size: 15px; color: var(--gold-deep); letter-spacing: 0.06em; }
.fact__body { display: flex; flex-direction: column; gap: 6px; }
.fact__body dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}
.fact__body dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink);
  text-wrap: pretty;
}

/* ---------- Kompliment-Generator ---------- */
.generator { background: var(--bordeaux); position: relative; overflow: hidden; }
.generator__frame { position: absolute; pointer-events: none; }
.generator__frame--inner { inset: 16px; border: 1px solid rgba(201, 161, 74, 0.45); }
.generator__frame--outer { inset: 24px; border: 1px solid rgba(201, 161, 74, 0.2); }
.generator__content {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(80px, 10vw, 128px) 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  position: relative;
}
.generator__title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--blush);
  max-width: 680px;
  text-wrap: balance;
}
.generator__title em { font-style: italic; color: var(--gold-light); }
.generator__stage {
  width: 100%;
  max-width: 720px;
  min-height: 200px;
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid rgba(201, 161, 74, 0.5);
  border-bottom: 1px solid rgba(201, 161, 74, 0.5);
}
.generator__counter { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; color: var(--gold); }
.generator__text {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.4;
  color: var(--blush);
  text-wrap: balance;
  transition: opacity 220ms ease, transform 220ms ease;
}
.generator__text.is-fading { opacity: 0; transform: translateY(8px); }

.btn-gold {
  height: 58px;
  padding: 0 40px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-light), var(--gold-dark));
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 36px -14px rgba(232, 203, 126, 0.6);
  transition: transform 140ms ease;
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-gold:active { transform: translateY(0); }
.btn-gold:focus-visible,
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ---------- Beschwerdestelle ---------- */
.sr {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.complaint { max-width: var(--container); margin: 0 auto; padding: 112px 24px 112px; }
.complaint__card { border-top: 1px solid var(--gold); padding-top: 36px; }
.complaint__form { display: flex; flex-direction: column; gap: 32px; }

.field { display: flex; flex-direction: column; gap: 12px; border: 0; margin: 0; padding: 0; min-width: 0; }
.field__label {
  padding: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
}
legend.field__label { margin-bottom: 12px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--berry);
  font-size: 14px;
  font-weight: 500;
  transition: background-color 140ms ease, color 140ms ease, box-shadow 140ms ease;
}
.chip:hover span { background: var(--blush-2); }
.chip input:checked + span {
  background: var(--berry);
  border-color: var(--berry);
  color: var(--blush);
  box-shadow: 0 10px 22px -12px rgba(126, 58, 80, 0.7);
}
.chip input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 3px; }

.crowns { display: flex; gap: 6px; }
.crowns input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.crowns label {
  width: 44px;
  height: 40px;
  cursor: pointer;
  background-color: var(--rose-line);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 40'%3E%3Cpath d='M6 30 3 10l10 8 9-14 9 14 10-8-3 20z'/%3E%3Crect x='6' y='32' width='32' height='4' rx='1'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 40'%3E%3Cpath d='M6 30 3 10l10 8 9-14 9 14 10-8-3 20z'/%3E%3Crect x='6' y='32' width='32' height='4' rx='1'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: background-color 140ms ease, transform 140ms ease;
}
.crowns label.is-on { background-color: var(--gold); }
.crowns label:hover { transform: translateY(-2px); }
.crowns input:focus-visible + label { background-color: var(--gold-deep); }
.crowns__caption { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--ink-soft); }

.input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--rose-line);
  border-radius: 6px;
  background: #FFFAFB;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.5;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.input::placeholder { color: #B79AA2; font-style: italic; }
.input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 161, 74, 0.2); }
.input.is-invalid { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(161, 79, 104, 0.15); }
textarea.input { resize: vertical; min-height: 140px; }
.select { position: relative; }
.select select { appearance: none; -webkit-appearance: none; padding-right: 44px; cursor: pointer; }
.select::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold-deep);
  border-bottom: 1.5px solid var(--gold-deep);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.complaint__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.complaint__submit { border: none; cursor: pointer; font-family: var(--font-sans); height: auto; min-height: 52px; padding: 14px 30px; justify-content: center; text-align: center; line-height: 1.4; }
.complaint__submit:disabled { opacity: 0.6; cursor: progress; }
.complaint__error { margin: 0; font-size: 14px; color: var(--rose); min-height: 1em; }
.complaint__error:empty { display: none; }

.complaint__done {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px 0 8px;
  animation: rise 600ms ease both;
}
.complaint__done[hidden], .complaint__form[hidden] { display: none; }
.complaint__done .btn { cursor: pointer; font-family: var(--font-sans); }
.complaint__seal { width: 120px; height: 120px; transform: rotate(-8deg); filter: drop-shadow(0 12px 20px rgba(126, 58, 80, 0.3)); }
.complaint__ref { color: var(--gold-deep); }
.complaint__done-title {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.complaint__done-title em { font-style: italic; color: var(--rose); }

/* ---------- Footer ---------- */
.footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 56px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}
.seal--footer { width: 110px; height: 110px; filter: drop-shadow(0 10px 18px rgba(126, 58, 80, 0.3)); }

/* ---------- Intro-Video ---------- */
.intro { display: none; }
html.has-intro { overflow: hidden; }
html.has-intro .intro {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--blush);
  overflow: hidden;
  transition: opacity 900ms ease;
}
html.has-intro .intro.is-leaving { opacity: 0; pointer-events: none; }
/* Einblend-Animationen der Seite warten, bis das Intro vorbei ist */
html.has-intro .hero__media,
html.has-intro .hero__copy { animation-play-state: paused; }

.intro__backdrop,
.intro__video { position: absolute; inset: 0; width: 100%; height: 100%; }
.intro__backdrop { object-fit: cover; filter: blur(48px); transform: scale(1.15); opacity: 0.55; }
.intro__video { object-fit: contain; }
@media (max-aspect-ratio: 3/4) {
  .intro__backdrop { display: none; }
  .intro__video { object-fit: cover; }
}

.intro__skip {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: rgba(251, 241, 243, 0.75);
  backdrop-filter: blur(6px);
  color: var(--berry);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 140ms ease;
}
.intro__skip:hover { background: var(--blush); }

/* Nur sichtbar, wenn der Browser Autoplay blockiert */
.intro__open {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 18%;
  transform: translateX(-50%);
  height: 58px;
  padding: 0 40px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-light), var(--gold-dark));
  background-size: 200% 100%;
  animation: shimmer 6s linear infinite;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 16px 36px -14px rgba(168, 132, 47, 0.7);
}
.intro.needs-tap .intro__open { display: block; }
.intro__skip:focus-visible,
.intro__open:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

@media (prefers-reduced-motion: reduce) {
  .hero__media, .hero__copy, .btn-gold { animation: none; }
  .generator__text { transition: none; }
}

/* ---------- Platz für das senkrechte Geschenkband ---------- */
.hero, .divider, .profile, .complaint, .footer {
  padding-right: max(24px, calc(var(--ribbon-gutter) - max(0px, (100vw - var(--container)) / 2)));
}
.generator__content {
  padding-right: max(40px, calc(var(--ribbon-gutter) - max(0px, (100vw - 880px) / 2)));
}
.hero { padding-top: 120px; }
section[id] { scroll-margin-top: calc(var(--seal-top) + var(--seal-size) / 2 + var(--ribbon)); }

@media (max-width: 999px) {
  .hero, .divider, .profile, .complaint, .footer { padding-left: 40px; }
}

/* ---------- Fee Loana ---------- */
.fairy {
  --fairy-h: 156px;
  --lean-dir: 1;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 61;
  width: calc(var(--fairy-h) * 159 / 360);
  height: var(--fairy-h);
  pointer-events: none;
  will-change: transform;
  display: none;
}
.fairy.is-active { display: block; }
.fairy__lean { width: 100%; height: 100%; transform-origin: 50% 88%; }
.fairy__lean.is-tapping { animation: fairy-tap 420ms ease-in-out; }
@keyframes fairy-tap {
  0%, 100% { transform: rotate(0deg); }
  40% { transform: rotate(calc(var(--lean-dir) * -6deg)); }
  60% { transform: rotate(calc(var(--lean-dir) * 9deg)); }
}
.fairy__flip { width: 100%; height: 100%; transition: transform 220ms ease; }
.fairy.is-right .fairy__flip { transform: scaleX(-1); }
.fairy img {
  width: 100%;
  height: 100%;
  pointer-events: auto;
  cursor: pointer;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 0 6px rgba(255, 238, 180, 0.75)) drop-shadow(0 8px 10px rgba(94, 36, 54, 0.18));
  animation: fairy-flutter 260ms ease-in-out infinite alternate;
}
@keyframes fairy-flutter { from { transform: translateY(0); } to { transform: translateY(-2px); } }

.fairy__bubble {
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translate(calc(-50% + var(--shift, 0px)), 6px) scale(0.9);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  background: #FFFAFB;
  color: var(--berry);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  white-space: nowrap;
  box-shadow: 0 8px 18px -10px rgba(94, 36, 54, 0.4);
  opacity: 0;
  transition: opacity 200ms ease, transform 260ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.fairy__bubble.is-visible { opacity: 1; transform: translate(calc(-50% + var(--shift, 0px)), 0) scale(1); }

.fairy-dust { position: fixed; inset: 0; z-index: 61; pointer-events: none; overflow: hidden; }
.fairy-dust__p {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, var(--c) 45%, transparent 72%);
  animation: fairy-dust 1s ease-out forwards;
}
@keyframes fairy-dust {
  0% { transform: translate(0, 0) scale(1); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0.2); opacity: 0; }
}

/* Streiche */
.seal-nav.is-bonked { animation: fairy-bonk 520ms ease-in-out; }
@keyframes fairy-bonk {
  0%, 100% { transform: rotate(0) scale(1); }
  25% { transform: rotate(-10deg) scale(0.94); }
  55% { transform: rotate(8deg) scale(1.04); }
  80% { transform: rotate(-3deg); }
}
.fairy-tilt { animation: fairy-tilt 2600ms ease-in-out; transform-origin: 20% 50%; }
@keyframes fairy-tilt {
  0%, 100% { transform: rotate(0); }
  12%, 70% { transform: rotate(-3.5deg); }
  78% { transform: rotate(1.5deg); }
  86% { transform: rotate(-0.8deg); }
}
.fairy-hop { animation: fairy-hop 900ms cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes fairy-hop {
  0%, 100% { transform: translateY(0) rotate(0); }
  30% { transform: translateY(-14px) rotate(-4deg); }
  55% { transform: translateY(0) rotate(3deg); }
  75% { transform: translateY(-5px) rotate(0); }
}
.fairy-letter { display: inline-block; animation: fairy-letter 700ms ease-in-out 2; }
@keyframes fairy-letter {
  0%, 100% { transform: translateY(0) rotate(0); }
  40% { transform: translateY(-0.28em) rotate(-8deg); }
}
.ribbon.fairy-tug-h { animation: fairy-tug-h 700ms cubic-bezier(0.34, 1.56, 0.64, 1); }
.ribbon.fairy-tug-v { animation: fairy-tug-v 700ms cubic-bezier(0.34, 1.56, 0.64, 1); }
@keyframes fairy-tug-h { 0%, 100% { transform: translateY(0); } 35% { transform: translateY(7px) scaleY(0.9); } 65% { transform: translateY(-3px); } }
@keyframes fairy-tug-v { 0%, 100% { transform: translateX(0); } 35% { transform: translateX(-7px) scaleX(0.9); } 65% { transform: translateX(3px); } }
.fairy-flower {
  position: absolute;
  z-index: 8;
  width: 32px;
  height: 32px;
  pointer-events: none;
  animation: fairy-flower-in 500ms cubic-bezier(0.34, 1.56, 0.64, 1) both;
  filter: drop-shadow(0 3px 4px rgba(94, 36, 54, 0.25));
  transition: opacity 900ms ease, transform 900ms ease;
}
.fairy-flower svg { width: 100%; height: 100%; display: block; }
.fairy-flower.is-leaving { opacity: 0; transform: translateY(24px) rotate(40deg); }
@keyframes fairy-flower-in { from { transform: scale(0) rotate(-90deg); } to { transform: scale(1) rotate(0); } }

@media (max-width: 600px) {
  .fairy { --fairy-h: 112px; }
  .fairy__bubble { font-size: 14px; padding: 5px 12px; }
}
