/* ================ DESIGN TOKENS ================ */
:root {
  --bg: #705544;
  --bg-deep: #705544;
  --bg-darker: #5a4435;
  --coral: #e47d6d;
  --coral-deep: #d8654f;
  --beige: #b49467;
  --beige-deep: #9a7d54;
  --cream: #f5ede2;
  --white: #ffffff;
  --text: #f5ede2;
  --text-muted: #d9c8b5;
  --radius-card: 28px;
  --radius-pill: 999px;
  --shadow-card: 0 20px 60px -25px rgba(0,0,0,0.45);
  --shadow-soft: 0 30px 80px -40px rgba(0,0,0,0.6);
  --max-width: 1080px;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --motion-scale: 1;
}

/* ============ MOOD PALETTES ============ */
body[data-mood="mocha"] {
  --bg: #3a2a23;
  --bg-deep: #3a2a23;
  --bg-darker: #2a1d18;
  --coral: #e0b048;
  --coral-deep: #c89a32;
  --beige: #8a7050;
  --beige-deep: #6e573c;
  --cream: #f1e6d2;
  --text: #f1e6d2;
  --text-muted: #c4b5a0;
}
body[data-mood="mint"] {
  --bg: #3f5048;
  --bg-deep: #3f5048;
  --bg-darker: #2f3d36;
  --coral: #ec8c6e;
  --coral-deep: #d8745a;
  --beige: #c0b78b;
  --beige-deep: #a39a72;
  --cream: #ecf0e0;
  --text: #ecf0e0;
  --text-muted: #c5cbb4;
}
body[data-mood="sunset"] {
  --bg: #9c4f38;
  --bg-deep: #9c4f38;
  --bg-darker: #7e3e2b;
  --coral: #ffd6a0;
  --coral-deep: #f0bc7e;
  --beige: #f3c89c;
  --beige-deep: #d8aa7c;
  --cream: #fff4e3;
  --text: #fff4e3;
  --text-muted: #f3dcc3;
}

/* ================ RESET ================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
section[id] { scroll-margin-top: 90px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  transition: background 0.7s ease, color 0.7s ease;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============ ATMOSPHERE OVERLAYS ============ */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
body::before {
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(255,220,180,0.18), transparent 70%),
    radial-gradient(50% 50% at 90% 60%, rgba(255,200,160,0.10), transparent 70%);
}
body::after {
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.55) 100%);
}
body[data-atmosphere="velvet"]::before { opacity: 1; }
body[data-atmosphere="cinema"]::after  { opacity: 1; }
body > * { position: relative; z-index: 1; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
sup { font-size: 0.6em; vertical-align: super; line-height: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ================ DECOR BACKGROUND ================ */
.bg-decor {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}
.glow-1 {
  width: 720px; height: 720px;
  background: radial-gradient(circle, rgba(228,125,109,0.22), transparent 70%);
  top: 4%; left: 50%; transform: translateX(-50%);
}
.glow-2 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(180,148,103,0.18), transparent 70%);
  top: 45%; right: -160px;
}
.glow-3 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(228,125,109,0.14), transparent 70%);
  bottom: 4%; left: -180px;
}

/* ================ HEADER ================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 22px 0;
  transition: backdrop-filter 0.3s ease, background 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(79,53,40,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo img { height: 28px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 44px;
}
.nav-link {
  font-size: 16px;
  letter-spacing: 0.08em;
  font-weight: 700;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--coral); }
.nav-link .arrow { color: var(--coral); margin-left: 4px; display: inline-block; transition: transform 0.25s ease; }
.nav-link:hover .arrow { transform: translate(2px, -2px); }

/* ================ LANGUAGE SWITCHER ================ */
.lang-switcher { position: relative; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid rgba(245,237,226,0.35);
  color: var(--cream);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 8px 12px 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.lang-toggle:hover,
.lang-switcher.is-open .lang-toggle {
  border-color: var(--coral);
  color: var(--coral);
}
.lang-caret {
  width: 10px;
  height: 7px;
  transition: transform 0.25s ease;
}
.lang-switcher.is-open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: rgba(58,42,35,0.96);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,237,226,0.1);
  border-radius: 14px;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 70;
}
.lang-switcher.is-open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--cream);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-menu li:hover { background: rgba(228,125,109,0.15); color: var(--coral); }
.lang-menu li.is-active {
  background: var(--coral);
  color: var(--white);
  font-weight: 600;
}
.lang-code {
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 12px;
  opacity: 0.85;
}
.lang-name { font-size: 14px; }

/* ================ HEADER NAV TOGGLE ================ */
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ================ POSTCARD ================ */
.postcard { padding: 28px 0 0; perspective: 1800px; }
.postcard-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-card);
  transform-style: preserve-3d;
  transform: rotate(-0.4deg);
  transition: transform 0.9s cubic-bezier(.2,.85,.25,1);
  cursor: pointer;
  outline: none;
}
.postcard-frame:hover,
.postcard-frame:focus,
.postcard-frame.is-flipped {
  transform: rotateY(180deg);
}
.postcard-face {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.postcard-face img {
  width: 100%;
  height: auto;
  display: block;
}
.postcard-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  background: #fff;
}

.hero { padding: 0 0 60px; }
.hero-video {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
  box-shadow: var(--shadow-soft);
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1), box-shadow 0.6s ease;
}
.hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.hero-video:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px -40px rgba(0,0,0,0.7);
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.play-btn {
  width: 96px; height: 96px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  transition: transform 0.3s cubic-bezier(.2,.7,.2,1);
  position: relative;
}
.play-btn::after {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 28px;
  background: rgba(228,125,109,0.0);
  transition: background 0.3s ease, transform 0.3s ease;
  z-index: -1;
}
.play-btn:hover { transform: scale(1.08); }
.play-btn:hover::after { background: rgba(228,125,109,0.15); transform: scale(1.1); }
.play-btn img { width: 96px; height: 96px; filter: drop-shadow(0 8px 20px rgba(0,0,0,0.25)); }
.video-caption {
  color: #5a3f31;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.01em;
}

/* ================ WELCOME / GEWINNSPIEL SHARED ================ */
.welcome, .gewinnspiel { padding: 80px 0; position: relative; }
.gewinnspiel { padding-top: 40px; }

.script-headline {
  text-align: center;
  margin: 0 auto 60px;
  will-change: transform;
}
.script-headline img {
  margin: 0 auto;
  max-width: 720px;
  width: 90%;
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.25));
}
.script-headline--gewinn img { max-width: 500px; }
.hero-headline { padding: 30px 0 10px; position: relative; }
.script-headline--willkommen { margin: 0 auto 24px; }
.script-headline--willkommen img { max-width: 820px; }

.section-title {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 auto 32px;
  max-width: 720px;
  text-align: left;
  color: var(--cream);
}

.prose {
  max-width: 720px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
}
.prose p { margin: 0 0 22px; }
.prose strong { font-weight: 700; color: var(--cream); }
.prose .highlight {
  color: var(--coral);
  font-size: 18px;
}
.efsa-claim-block { margin-top: 48px; }
.efsa-claim-block .highlight strong { color: var(--coral); }

/* ================ PRODUKTPROFIL GRAPHIC ================ */
.produktprofil-graphic {
  max-width: 720px;
  margin: 40px auto 24px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: end;
  justify-items: center;
}
.produktprofil-graphic--five {
  grid-template-columns: repeat(5, 1fr);
  max-width: 620px;
}
.produktprofil-graphic img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 720px) {
  .produktprofil-graphic {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 14px;
  }
  .produktprofil-graphic img { height: 120px; }
}
@media (max-width: 420px) {
  .produktprofil-graphic img { height: 100px; }
}

.prose-headline {
  margin: 8px 0 14px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.005em;
  color: var(--cream);
  text-align: left;
}
.prose-headline--coral { color: var(--coral); margin-top: 0; }
.prose-headline--gewinn { margin-top: 38px; }

/* ================ MAIL CTA ================ */
.mail-cta-wrap { margin: 4px 0 26px; }
.mail-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  border-radius: var(--radius-pill);
  background: var(--beige-deep);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 2px solid var(--beige-deep);
  box-shadow: 0 12px 30px -14px rgba(154,125,84,0.55);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.mail-cta:hover,
.mail-cta:focus-visible {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(228,125,109,0.55);
}
.mail-cta-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  color: var(--beige-deep);
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
}
.mail-cta-icon svg { width: 16px; height: 16px; }
.mail-cta:hover .mail-cta-icon { color: var(--coral); }

/* ================ PRODUKTPROFIL ================ */
.produktprofil-title {
  margin: 8px 0 14px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--cream);
  text-align: left;
}
.produktprofil-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--cream);
}
.produktprofil-list li {
  padding: 4px 0;
}
.produktprofil-list li + li {
  border-top: 1px solid rgba(245,237,226,0.12);
}

/* ================ TEILNAHME LIST ================ */
.teilnahme-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: left;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--cream);
}
.teilnahme-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.teilnahme-num {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* ================ STECKBRIEF CARD ================ */
.steckbrief-card {
  max-width: 760px;
  margin: 60px auto 0;
  background: var(--coral);
  border-radius: var(--radius-card);
  padding: 52px 56px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1), box-shadow 0.6s ease;
  position: relative;
  overflow: hidden;
}
.steckbrief-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 200px at 50% -20%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(400px 300px at 100% 100%, rgba(0,0,0,0.08), transparent 70%);
  pointer-events: none;
}
.steckbrief-card:hover {
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.6);
}
.steckbrief-card h3 {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 700;
  color: var(--bg-darker);
  position: relative;
}
.steckbrief-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.65;
  position: relative;
}
.steckbrief-card .steckbrief-list li {
  position: relative;
  padding: 0 0 20px 0;
  transition: transform 0.2s ease;
}
.steckbrief-card .steckbrief-list li:last-child { padding-bottom: 0; }
.steckbrief-card .steckbrief-list li:hover { transform: translateX(2px); }
.steckbrief-card .steckbrief-list li strong {
  display: block;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.01em;
  margin-bottom: 4px;
  color: var(--bg-darker);
}
.steckbrief-card .steckbrief-list li p {
  margin: 0;
  color: var(--white);
  font-weight: 400;
  opacity: 0.95;
}
.steckbrief-card .steckbrief-subheading {
  margin: 8px 0 12px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--bg-darker);
  position: relative;
  padding-top: 28px;
  border-top: 1px solid rgba(90,68,53,0.22);
}
.steckbrief-card .steckbrief-lead {
  margin: 0 0 18px;
  color: var(--white);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  opacity: 0.95;
}

/* ================ TABS ================ */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 880px;
  margin: 60px auto 32px;
}
.tab {
  flex: 1 1 auto;
  min-width: 200px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(245,237,226,0.35);
  color: var(--cream);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.tab:hover {
  border-color: var(--coral);
  color: var(--white);
}
.tab.is-active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  box-shadow: 0 12px 30px -10px rgba(228,125,109,0.6);
}

/* ================ FORM ================ */
.contact-form {
  max-width: 880px;
  margin: 24px auto 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-row .field-wide { grid-column: span 1; }
.form-row:has(.field-narrow) {
  grid-template-columns: 3fr 1fr;
}
.form-row--single { grid-template-columns: 1fr !important; }
.form-row--plz { grid-template-columns: 120px 1fr !important; }

/* ================ UPLOAD BUTTON ================ */
.upload-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  max-width: 880px;
  margin: 60px auto 24px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  background: var(--beige-deep);
  color: var(--white);
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--beige-deep);
  outline: 2px solid transparent;
  outline-offset: 4px;
  box-shadow: 0 12px 30px -12px rgba(154,125,84,0.55);
  transition: background 0.25s ease, border-color 0.25s ease, outline-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.upload-btn:hover,
.upload-btn:focus-within {
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 16px 36px -12px rgba(228,125,109,0.55);
}
.upload-btn:active { transform: translateY(1px); }
.upload-btn-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
}
.upload-btn-icon svg { width: 100%; height: 100%; }
.upload-btn-label { white-space: nowrap; }
.upload-btn-filename {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  opacity: 0.9;
  max-width: 240px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.upload-btn-filename:empty { display: none; }
.field {
  position: relative;
}
.field input {
  width: 100%;
  padding: 22px 24px 10px;
  border: 0;
  background: var(--white);
  border-radius: var(--radius-pill);
  font-size: 15px;
  color: #5a3f31;
  font-family: inherit;
  outline: none;
  transition: box-shadow 0.2s ease;
}
.field input:focus {
  box-shadow: 0 0 0 3px rgba(228,125,109,0.4);
}
.field label {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: #b8a394;
  font-size: 15px;
  pointer-events: none;
  transition: all 0.2s ease;
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: 14px;
  transform: translateY(0);
  font-size: 11px;
  color: #8a6f5d;
}

/* ================ DISCLAIMER ================ */
.disclaimer {
  margin: 18px 0 8px;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(245,237,226,0.12);
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: left;
}
.disclaimer p { margin: 0 0 10px; }
.disclaimer p:last-child { margin-bottom: 0; }
.disclaimer-title {
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 12px !important;
}

/* ================ CHECKBOXES ================ */
.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  margin: 24px 0;
  cursor: pointer;
  font-size: 15px;
  line-height: 1.6;
}
.check-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-box {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--cream);
  border-radius: 5px;
  background: transparent;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  margin-top: 2px;
}
.check-row input:checked + .check-box {
  background: var(--coral);
  border-color: var(--coral);
}
.check-row input:checked + .check-box::after {
  content: "";
  width: 12px; height: 7px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px,-1px);
}
.check-label { color: var(--text-muted); }
.check-label a { text-decoration: underline; color: var(--cream); }

/* ================ CAPTCHA ================ */
.captcha { margin: 28px 0 32px; }
.captcha-box {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #f9f9f9;
  border: 1px solid #d3d3d3;
  border-radius: 6px;
  padding: 14px 18px;
  color: #444;
  font-size: 14px;
  font-family: 'Plus Jakarta Sans', Roboto, sans-serif;
  position: relative;
  min-width: 300px;
}
.captcha-check {
  width: 24px; height: 24px;
  border: 2px solid #c4c4c4;
  border-radius: 2px;
  background: white;
  flex-shrink: 0;
}
.captcha-label { flex: 1; color: #555; }
.captcha-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  border-left: 1px solid #e0e0e0;
  padding-left: 14px;
  text-align: center;
}
.captcha-logo-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: conic-gradient(from 45deg, #4285f4 0deg 90deg, #34a853 90deg 180deg, #fbbc05 180deg 270deg, #ea4335 270deg);
  position: relative;
  margin-bottom: 2px;
}
.captcha-logo-mark::after {
  content: "";
  position: absolute; inset: 6px;
  background: white;
  border-radius: 50%;
}
.captcha-logo small { font-size: 9px; color: #555; font-weight: 600; }
.captcha-logo em { font-size: 7px; color: #999; font-style: normal; }

/* ================ SUBMIT BUTTON ================ */
.captcha-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0 32px;
}
.captcha-row .captcha { margin: 0; }
.submit-row { display: flex; justify-content: flex-end; margin-top: 8px; }
a.submit-btn { text-decoration: none; }
.submit-btn {
  display: inline-flex;
  align-items: center;
  background: var(--beige-deep);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: 6px 8px 6px 32px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.08em;
  border: 2px solid var(--beige-deep);
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition: background 0.25s ease, border-color 0.25s ease, outline-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  box-shadow: 0 12px 30px -12px rgba(154,125,84,0.55);
}
.submit-btn:hover,
.submit-btn:focus-visible {
  background: var(--coral);
  border-color: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(228,125,109,0.55);
}
.submit-label { margin-right: 18px; }
.submit-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: white;
  color: var(--beige-deep);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease, color 0.25s ease;
}
.submit-btn:hover .submit-icon { transform: rotate(-8deg); color: var(--coral); }
.submit-icon svg { width: 18px; height: 18px; }

/* ================ PRODUCT FEATURE ================ */
.product-feature {
  padding: 15px 0 40px;
  position: relative;
  overflow: hidden;
}
.product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.product-feature-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.product-feature-headline {
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
}
.product-feature-headline u {
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}
.product-feature-headline .coral { color: var(--coral); }
.product-feature-body { font-size: 16px; line-height: 1.75; margin: 0; max-width: 480px; }
.product-feature-image {
  position: relative;
  will-change: transform;
  pointer-events: none;
  margin-top: 90px;
}
.product-feature-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.4));
}

/* ================ FOOTER ================ */
.site-footer { padding: 40px 0 60px; position: relative; }
.footer-card {
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(120,84,68,0.4), rgba(90,63,49,0.4));
  border: 1px solid rgba(245,237,226,0.08);
  border-radius: var(--radius-card);
  padding: 28px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer-logo { height: 22px; margin-bottom: 4px; }
.copyright { margin: 0; font-size: 14px; }
.footer-address,
.footer-phone {
  margin: 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.socials { display: flex; gap: 12px; margin-top: 10px; }
.social {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(245,237,226,0.1);
  color: var(--cream);
  transition: all 0.2s ease;
}
.social:hover { background: var(--coral); transform: translateY(-2px); }
.social svg { width: 16px; height: 16px; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  padding-top: 6px;
  border-top: 1px solid rgba(245,237,226,0.08);
  width: 100%;
  padding: 18px 0 0;
}
.footer-links a { color: var(--cream); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--coral); }

/* ================ COOKIE BANNER ================ */
.cookie-banner {
  position: fixed;
  top: 110px;
  left: 50%;
  transform: translate(-50%, -20px);
  width: min(720px, calc(100vw - 32px));
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(.2,.7,.2,1), transform 0.5s cubic-bezier(.2,.7,.2,1);
}
.cookie-banner.is-shown {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--beige);
  color: var(--bg-darker);
  border-radius: 22px;
  padding: 22px 28px;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.45);
}
.cookie-icon {
  width: 56px; height: 56px;
  color: var(--bg-darker);
  flex-shrink: 0;
}
.cookie-icon svg { width: 100%; height: 100%; }
.cookie-text h4 {
  margin: 0 0 4px;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.005em;
}
.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 11px 22px;
  background: #fff;
  color: var(--bg-darker);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.cookie-btn:hover {
  background: #fff8ee;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px -8px rgba(0,0,0,0.3);
}

@media (max-width: 760px) {
  .cookie-banner { top: 80px; width: calc(100vw - 24px); }
  .cookie-inner {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 22px;
    text-align: center;
  }
  .cookie-icon { margin: 0 auto; width: 44px; height: 44px; }
  .cookie-text h4 { font-size: 17px; }
  .cookie-actions {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: center;
  }
  .cookie-btn { flex: 1 1 auto; min-width: 0; padding: 10px 14px; font-size: 13px; }
}

/* ================ REVEAL ANIMATIONS ================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.2,.7,.2,1), transform 0.9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
body[data-motion="still"] [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}
body[data-motion="kinetic"] [data-reveal] {
  transform: translateY(60px) scale(0.97);
  transition: opacity 1.1s cubic-bezier(.2,.7,.2,1), transform 1.1s cubic-bezier(.2,.7,.2,1);
}
body[data-motion="kinetic"] [data-reveal].is-visible {
  transform: translateY(0) scale(1);
}

/* ================ RESPONSIVE ================ */
@media (max-width: 880px) {
  .site-header { padding: 14px 0; }
  .site-header.is-scrolled { padding: 12px 0; }
  .header-inner { position: relative; }
  .logo img { height: 24px; }

  .nav-toggle { display: flex; }
  .nav {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 100px 28px max(40px, env(safe-area-inset-bottom));
    background: var(--bg-darker);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
    z-index: 55;
  }
  .nav.is-open { transform: translateX(0); }
  .nav-link {
    font-size: 18px;
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(245,237,226,0.08);
  }
  body.nav-locked { overflow: hidden; }

  /* Layout */
  .form-row, .form-row:has(.field-narrow) { grid-template-columns: 1fr; }
  .footer-card { padding: 24px 22px; }
  .footer-links { gap: 14px 18px; font-size: 13px; }

  .product-feature { padding: 60px 0 20px; }
  .product-feature-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-feature-content { order: 2; text-align: left; }
  .product-feature-image { order: 1; margin-top: 0; }
  .product-feature-image img { width: 78%; max-width: 360px; }
  .product-feature-body { max-width: none; }

  .welcome, .gewinnspiel { padding: 50px 0; }
  .gewinnspiel { padding-top: 20px; }
  .hero { padding: 16px 0 50px; }
  .section-title { font-size: 26px; }
  .section-title br { display: none; }
  .prose { font-size: 16px; }

  .steckbrief-card { padding: 32px 24px; margin-top: 40px; }
  .steckbrief-card h3 { font-size: 22px; }
  .steckbrief-card ul { font-size: 16px; line-height: 1.7; }

  .script-headline { margin-bottom: 36px; }
  .script-headline img { max-width: 100%; }
  .script-headline--gewinn img { max-width: 80%; }

  .tabs { flex-direction: column; gap: 10px; margin: 36px 0 24px; }
  .tab { width: 100%; min-width: 0; padding: 14px 20px; font-size: 14px; white-space: normal; }

  .captcha-box { min-width: 0; width: 100%; }
  .submit-btn { width: 100%; justify-content: center; }
  .submit-row { justify-content: stretch; }
  .submit-label { margin-right: 12px; }

  .container { padding: 0 20px; }
  .field input { font-size: 16px; } /* prevent iOS zoom */
}

@media (max-width: 480px) {
  .check-label { font-size: 14px; }
  .field input { padding: 20px 20px 8px; }
  .field label { left: 20px; font-size: 14px; }
  .captcha-box { padding: 12px 14px; gap: 10px; }
  .captcha-logo { padding-left: 10px; }
  .footer-logo { height: 22px; }
  .section-title { font-size: 22px; }
  .product-feature-headline { font-size: 26px; line-height: 1.2; }
}
