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

:root {
  --cream:       #f4f0e2;
  --orange:      #e64828;
  --orange-deep: #b8351e;
  --yellow:      #f5c418;
  --photo-pink:  #f5a9b8;
  --blue:        #4a90d9;
  --dark:        #1c1c1c;
  --r-xl:   24px;
  --r-pill: 100px;
}

html {
  background: var(--cream);
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

/* ── Erster Screen: Nav + Hero + CTA-Strip füllen den Viewport ── */
.hero-viewport {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* ── Nav ────────────────────────────── */
nav.site-nav {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: var(--cream);
  z-index: 100;
}
.logo {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--orange);
  text-decoration: none;
  letter-spacing: -1px;
}
.btn-book {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 11px 26px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.btn-book:hover { opacity: .88; transform: scale(1.03); }

/* ── Sprach-Umschalter (DE / EN) ── */
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--orange);
  border-radius: var(--r-pill);
  overflow: hidden;
  flex-shrink: 0;
}
.lang-switch a {
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--orange);
  text-decoration: none;
  padding: 6px 12px;
  line-height: 1;
  transition: background .2s, color .2s;
}
.lang-switch a + a { border-left: 2px solid var(--orange); }
.lang-switch a.active,
.lang-switch a:hover { background: var(--orange); color: #fff; }

/* ── Nav-Dropdown ── */
.nav-left { display: flex; align-items: center; gap: 18px; }
.nav-menu { position: relative; }
.nav-menu-btn {
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--orange);
  background: transparent;
  border: 2px solid var(--orange);
  border-radius: var(--r-pill);
  padding: 7px 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s, color .2s;
}
.nav-menu-btn:hover { background: var(--orange); color: #fff; }
.nav-menu-btn .caret { font-size: 0.8em; transition: transform .2s; }
.nav-menu.open .nav-menu-btn .caret { transform: rotate(180deg); }
.nav-menu-list {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  background: var(--cream);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,.16);
  padding: 8px;
  display: none;
  flex-direction: column;
  z-index: 200;
}
.nav-menu.open .nav-menu-list { display: flex; }
.nav-menu-list a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--dark);
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 9px;
  transition: background .15s, color .15s;
}
.nav-menu-list a:hover { background: rgba(230,72,40,.1); color: var(--orange); }

/* ── Hero ───────────────────────────── */
.hero {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 20px 48px 0;
  text-align: center;
  overflow: hidden;
}

.hero-top { flex-shrink: 0; }

.hero-eyebrow {
  display: inline-block;
  background: var(--yellow);
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}

.hero-title {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 10vw, 7rem);
  color: var(--orange);
  line-height: 0.88;
  letter-spacing: -4px;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: clamp(0.88rem, 1.4vw, 1rem);
  color: var(--dark);
  max-width: 580px;
  margin: 0 auto 18px;
  line-height: 1.6;
  font-weight: 500;
}

/* ── Drink stage ── */
.drink-stage {
  flex: 1;
  min-height: 0;
  background: var(--photo-pink);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.drink-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center bottom;
}

/* ── Button im Drink-Bild (nur Desktop) ── */
.btn-drink-cta {
  position: absolute;
  bottom: 12%;
  left: 35%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 2.85rem;
  letter-spacing: 0.03em;
  padding: 42px 114px;
  border-radius: var(--r-pill);
  text-decoration: none;
  white-space: nowrap;
  z-index: 3;
  box-shadow: 0 6px 28px rgba(0,0,0,0.24);
  transition: opacity .2s, transform .15s;
  animation: fadeUp .6s ease both .7s, pulse-ring 2.8s ease-out infinite 2.5s;
}
.btn-drink-cta:hover {
  opacity: .88;
  transform: translateX(-50%) scale(1.05);
}
@media (max-width: 900px) {
  .btn-drink-cta { display: none; }
}

/* Blob badge */
.badge {
  position: absolute;
  top: 24px;
  right: 40px;
  background: var(--blue);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  width: 80px;
  height: 80px;
  border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-8deg);
  animation: wobble 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes wobble {
  0%,100% { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; transform: rotate(-8deg); }
  50%     { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; transform: rotate(-4deg); }
}

/* ── CTA strip ──────────────────────── */
.cta-strip {
  flex-shrink: 0;
  background: var(--orange);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-strip p {
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--cream);
  line-height: 1.3;
}
.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  color: var(--orange);
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .2s, transform .15s;
  flex-shrink: 0;
}
.btn-cta-white:hover { opacity: .88; transform: scale(1.03); }

/* ── Anlässe-Marquee ────────────────── */
.marquee {
  background: var(--dark);
  overflow: hidden;
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee span {
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 18px;
}
.marquee span b { color: var(--yellow); font-weight: 400; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Sections allgemein ─────────────── */
.section { padding: 84px 48px; }
.section-inner { max-width: 1060px; margin: 0 auto; }
.kicker {
  display: inline-block;
  background: var(--yellow);
  font-family: 'Anton', sans-serif;
  font-size: 0.72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.section h2 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.02;
  margin-bottom: 14px;
}
.section h2 em { font-style: normal; color: var(--orange); }
.section .lead {
  max-width: 620px;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 38px;
}

/* ── Preis & Konditionen ────────────── */
.preis-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 22px;
  align-items: stretch;
}
.preis-card {
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 42px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.preis-card .preis-label {
  font-family: 'Anton', sans-serif;
  font-size: 0.85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
}
.preis-card .preis-zahl {
  font-family: 'Anton', sans-serif;
  font-size: clamp(4.4rem, 9vw, 6.4rem);
  line-height: 1;
  margin: 8px 0 4px;
}
.preis-card .preis-einheit {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--yellow);
}
.preis-card .preis-hint {
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 500;
  opacity: .92;
  line-height: 1.55;
}
.kond-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 14px 30px;
}
.kond-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1.5px solid var(--cream);
  font-weight: 500;
  line-height: 1.45;
}
.kond-row:last-child { border-bottom: none; }
.kond-row .wert {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  color: var(--orange);
  white-space: nowrap;
}
.kond-row small { display: block; font-size: .82rem; color: #6f6b5d; font-weight: 500; }

/* ── Pakete ─────────────────────────── */
.paket-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.paket-card {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.08);
  border-radius: var(--r-xl);
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.paket-card.featured {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 14px 34px rgba(230,72,40,.28);
}
.paket-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Anton', sans-serif;
  font-size: 0.72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.paket-name {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.paket-preis {
  font-family: 'Anton', sans-serif;
  font-size: clamp(3rem, 6vw, 3.8rem);
  line-height: 1;
  color: var(--orange);
}
.paket-card.featured .paket-preis { color: #fff; }
.paket-preis .cent { font-size: 1.4rem; vertical-align: top; }
.paket-alt {
  font-size: 0.86rem;
  font-weight: 600;
  margin-top: 6px;
  opacity: .9;
}
.paket-alt s { color: #6f6b5d; text-decoration: line-through; font-weight: 500; }
.paket-card.featured .paket-alt s { color: rgba(255,255,255,.72); }
.paket-alt b { color: var(--orange-deep); }
.paket-card.featured .paket-alt b { color: var(--yellow); }
.paket-portion {
  display: inline-block;
  margin-top: 12px;
  background: var(--cream);
  color: var(--dark);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: var(--r-pill);
}
.paket-card.featured .paket-portion { background: rgba(255,255,255,.18); color: #fff; }
.paket-list {
  list-style: none;
  margin: 20px 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.paket-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}
.paket-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  font-family: 'Anton', sans-serif;
  color: var(--orange);
}
.paket-card.featured .paket-list li::before { color: var(--yellow); }
.paket-card .btn-orange,
.paket-card .btn-outline { width: 100%; text-align: center; }
.paket-card.featured .btn-cta-white { width: 100%; text-align: center; }

/* Zusatzkonditionen unter den Paketen */
.kond-extra { margin-top: 22px; }
.paket-hinweis {
  margin-top: 18px;
  font-size: 0.82rem;
  color: #6f6b5d;
  font-weight: 500;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .paket-grid { grid-template-columns: 1fr; }
  .paket-card.featured { order: -1; }
}

/* ── Ablauf ─────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 30px 24px 28px;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: var(--yellow);
  border-radius: 55% 45% 50% 50% / 50% 55% 45% 50%;
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 8px;
}
.step-card p { font-size: 0.9rem; line-height: 1.6; font-weight: 500; }
.step-card a { color: var(--orange); font-weight: 700; text-decoration: none; }
.step-card a:hover { text-decoration: underline; }
.ablauf-photo {
  margin-top: 18px;
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
}
.ablauf-photo img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.ablauf-photo figcaption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  background: rgba(28,28,28,.72);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--r-pill);
}

/* ── Sirup & Zubehör ────────────────── */
.sorten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sorte-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  text-align: center;
  padding-bottom: 18px;
  transition: transform .25s ease;
}
.sorte-card:hover { transform: translateY(-6px) rotate(-1deg); }
.sorte-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.sorte-card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  margin-top: 14px;
}
.zubehoer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.zubehoer-row span {
  background: #fff;
  border-radius: var(--r-pill);
  padding: 11px 22px;
  font-weight: 600;
  font-size: 0.9rem;
}
.faustregel {
  margin-top: 26px;
  background: var(--yellow);
  border-radius: var(--r-xl);
  padding: 24px 30px;
  font-weight: 600;
  line-height: 1.6;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.faustregel .fr-ico { font-size: 1.6rem; line-height: 1.2; }
.extras-cta { margin-top: 30px; }
.btn-orange {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: .04em;
  padding: 14px 34px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: opacity .2s, transform .15s;
}
.btn-orange:hover { opacity: .88; transform: scale(1.03); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: .04em;
  padding: 12px 32px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background .2s, color .2s, transform .15s;
}
.btn-outline:hover { background: var(--orange); color: #fff; transform: scale(1.03); }

/* ── Firmenkunden / B2B ─────────────── */
.b2b-card {
  background: #fff;
  border: 1.5px solid rgba(0,0,0,.07);
  border-radius: var(--r-xl);
  padding: 46px 42px;
}
.kicker-b2b { background: var(--dark); color: var(--cream); }
.b2b-card h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.b2b-card .lead { margin-bottom: 0; }
.b2b-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin: 30px 0 32px;
}
.b2b-label {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6f6b5d;
  margin-bottom: 14px;
}
.ref-row { display: flex; flex-wrap: wrap; gap: 10px; }
.ref-chip {
  background: var(--cream);
  border: 1.5px solid rgba(0,0,0,.09);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-weight: 600;
  font-size: .9rem;
}
.b2b-points { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.b2b-points li {
  position: relative;
  padding-left: 27px;
  font-weight: 500;
  font-size: .95rem;
  line-height: 1.55;
}
.b2b-points li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--orange);
  font-family: 'Anton', sans-serif;
}

/* ── Gut zu wissen ──────────────────── */
.wissen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.wissen-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 28px 24px;
}
.wissen-card .w-ico { font-size: 1.9rem; display: block; margin-bottom: 12px; }
.wissen-card h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.wissen-card p { font-size: 0.88rem; line-height: 1.6; font-weight: 500; }
.wissen-more { margin-top: 30px; }

/* ── Stand-Service Teaser ───────────── */
.stand-card {
  background: var(--photo-pink);
  border-radius: var(--r-xl);
  padding: 52px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.stand-card h2 { margin-bottom: 10px; }
.stand-card p { max-width: 560px; font-weight: 500; line-height: 1.65; }
.stand-card .btn-orange { flex-shrink: 0; }

/* Foto-Variante: greift nur, wenn die Karte wirklich ein <img class="stand-photo">
   enthaelt. Die englische Startseite hat kein Foto und behaelt so den hellen
   Pink-Hintergrund mit dunkler Schrift. */
.stand-card:has(.stand-photo) { color: #fff; }
.stand-card .stand-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  z-index: 0;
}
.stand-card:has(.stand-photo)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(20,18,16,.82) 0%, rgba(20,18,16,.55) 48%, rgba(20,18,16,.28) 100%);
  z-index: 1;
}
.stand-card:has(.stand-photo) > * { position: relative; z-index: 2; }
.stand-card:has(.stand-photo) h2 { color: #fff; }
.stand-card:has(.stand-photo) h2 em { color: var(--yellow) !important; }
.stand-card:has(.stand-photo) p { color: #fff; }

/* ── Kontakt ────────────────────────── */
.kontakt-card {
  background: var(--orange);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 64px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.kontakt-card h2 { color: #fff; }
.kontakt-card .lead {
  margin: 10px auto 30px;
  color: #fff;
  opacity: .95;
}
.kontakt-card .btn-cta-white { font-size: 1rem; padding: 16px 38px; animation: pulse-ring 2.8s ease-out infinite 1.5s; }
.kontakt-mail {
  display: block;
  margin-top: 22px;
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  letter-spacing: .03em;
  color: #fff;
  text-decoration: none;
}
.kontakt-mail:hover { text-decoration: underline; }
.kontakt-insta {
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  opacity: .92;
}
.kontakt-insta:hover { opacity: 1; text-decoration: underline; }

/* ── Kontaktformular ────────────────── */
.kontakt-form {
  max-width: 620px;
  margin: 30px auto 0;
  text-align: left;
}
.kf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.kf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.kf-field.kf-full { grid-column: 1 / -1; }
.kf-field label {
  font-family: 'Anton', sans-serif;
  font-size: 0.72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  opacity: .94;
}
.kf-field label .req { color: var(--yellow); }
.kf-field label .kf-opt {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0;
  text-transform: none;
  opacity: .7;
}
.kf-field input,
.kf-field select,
.kf-field textarea {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  background: #fff;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 13px 16px;
  min-height: 50px;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .15s, box-shadow .15s;
}
.kf-field textarea {
  min-height: 112px;
  line-height: 1.55;
  resize: vertical;
}
.kf-field select {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231c1c1c' d='M1.4 0 6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}
.kf-field input::placeholder,
.kf-field textarea::placeholder { color: #8b8778; font-weight: 500; }
.kf-field input:focus,
.kf-field select:focus,
.kf-field textarea:focus {
  outline: none;
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(245,196,24,.34);
}
.kf-field input:invalid:not(:placeholder-shown) { border-color: var(--orange-deep); }

/* Honeypot – für Menschen und Screenreader unsichtbar, für Bots sichtbar */
.kf-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.kf-submit-row { margin-top: 22px; text-align: center; }
button.btn-cta-white {
  border: none;
  cursor: pointer;
  font-family: 'Anton', sans-serif;
}
button.btn-cta-white:disabled {
  opacity: .62;
  cursor: default;
  transform: none;
  animation: none;
  box-shadow: none;
}
.kf-hint {
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: #fff;
  opacity: .82;
  text-align: center;
}
.kf-hint a { color: #fff; text-decoration: underline; }

.kf-status {
  margin-top: 16px;
  background: rgba(0,0,0,.2);
  border-radius: 14px;
  padding: 13px 18px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
  color: #fff;
  text-align: center;
}
.kf-status[hidden] { display: none; }

.kf-success {
  max-width: 560px;
  margin: 30px auto 0;
  background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.42);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  animation: fadeUp .5s ease both;
}
.kf-success .kf-success-ico { display: block; font-size: 2.4rem; margin-bottom: 12px; }
.kf-success h3 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 8px;
  color: #fff;
}
.kf-success p { font-weight: 500; line-height: 1.65; opacity: .95; }

@media (max-width: 600px) {
  .kf-grid { grid-template-columns: 1fr; }
  .kontakt-form .btn-cta-white { width: 100%; justify-content: center; }
}

/* ── Simple footer ──────────────────── */
.simple-footer {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 32px;
  padding: 26px 48px 34px;
  border-top: 1.5px solid rgba(0,0,0,.08);
}
.simple-footer a {
  font-family: 'Anton', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  opacity: .65;
  transition: opacity .2s;
}
.simple-footer a:hover { opacity: 1; }
.simple-footer a.footer-book {
  background: var(--orange);
  color: #fff;
  opacity: 1;
  padding: 8px 20px;
  border-radius: var(--r-pill);
}
.simple-footer a.footer-book:hover { opacity: .88; }

/* ── Entrance Animations ────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(230,72,40,.45); }
  70%  { box-shadow: 0 0 0 12px rgba(230,72,40,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,72,40,0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow { animation: fadeUp .55s ease both .05s; }
.hero-title   { animation: fadeUp .6s cubic-bezier(.22,1,.36,1) both .18s; }
.hero-sub     { animation: fadeUp .55s ease both .32s; }
.drink-stage  { animation: fadeIn .7s ease both .4s; }
.drink-photo  { animation: float 6s ease-in-out infinite 1s; }
.badge        { animation: wobble 4s ease-in-out infinite, slideInRight .5s ease both .65s; }
.cta-strip    { animation: fadeIn .5s ease both .55s; }
.btn-book     { animation: pulse-ring 2.8s ease-out infinite 1.8s; }
.btn-cta-white { animation: pulse-ring 2.8s ease-out infinite 2.2s; }

/* ── Scroll-Reveal ──────────────────────────────────────────────────
   Die Startklasse haengt bewusst an html.js: diese Klasse setzt solivo.js
   als allererstes. Laedt das Skript nicht (Ladefehler, Blocker, alter
   Browser), bleibt .reveal komplett unbeachtet und der Seiteninhalt ist
   normal sichtbar, statt dauerhaft auf opacity:0 zu haengen. Das ist auf
   den Anzeigen-Landingpages wichtig – dort kostet jeder Aufruf Geld. */
html.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
html.js .reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  /* Spezifitaet muss html.js .reveal schlagen, sonst bliebe der Inhalt hier verborgen. */
  html.js .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ─────────────────────── */
@media (max-width: 900px) {
  nav.site-nav { padding: 14px 24px; }
  .hero { padding: 16px 24px 0; }
  .drink-stage { min-height: 42vh; }
  .cta-strip { padding: 16px 24px; }
  .section { padding: 64px 24px; }
  .preis-grid { grid-template-columns: 1fr; }
  .b2b-card { padding: 34px 24px; }
  .b2b-grid { grid-template-columns: 1fr; gap: 26px; }
  .steps-grid, .sorten-grid, .wissen-grid { grid-template-columns: 1fr 1fr; }
  .stand-card { padding: 40px 28px; }
  .kontakt-card { padding: 52px 28px; }
  .simple-footer { padding: 22px 24px 30px; gap: 12px 20px; }
}

@media (max-width: 600px) {
  .drink-stage { min-height: 46vh; }
  nav.site-nav { padding: 12px 16px; }
  .hero { padding: 12px 16px 0; }
  .hero-title { letter-spacing: -2px; }
  .hero-sub { display: none; }
  .badge { right: 16px; top: 16px; width: 60px; height: 60px; font-size: 0.75rem; }
  .cta-strip { padding: 14px 16px; justify-content: center; text-align: center; }
  .section { padding: 56px 16px; }
  .steps-grid, .wissen-grid { grid-template-columns: 1fr; }
  .sorten-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .simple-footer { padding: 20px 16px 28px; }
  .simple-footer a { font-size: 0.72rem; }
}

/* ══════════════════════════════════════════════════════════════════
   Landingpages (Google Ads)
   Nur von den Angebots-Landingpages genutzt, nicht von der Startseite.
   Der Hero ist bewusst kompakt: H1, Preis und Anfrage-Button muessen
   auch auf dem Handy ohne Scrollen sichtbar sein.
   ══════════════════════════════════════════════════════════════════ */
.lp-hero { padding: 40px 48px 56px; }
.lp-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.lp-hero h1 {
  font-family: 'Anton', sans-serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lp-hero h1 em { font-style: normal; color: var(--orange); }
.lp-hero .lead { font-size: 1.02rem; line-height: 1.65; font-weight: 500; max-width: 560px; }

/* Preiszeile: grosse Zahl + Zusatz, direkt unter der H1 */
.lp-preis {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin: 26px 0 6px;
}
.lp-preis-zahl {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--orange);
  letter-spacing: -1px;
}
.lp-preis-zusatz { font-size: 0.95rem; font-weight: 600; }
.lp-preis-portion {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--orange-deep);
  margin-bottom: 20px;
}

/* CTA-Block oberhalb des Falzes */
.lp-cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.lp-cta-hint { font-size: 0.82rem; font-weight: 600; opacity: .72; }

.lp-hero-media { position: relative; }
.lp-hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
  display: block;
}
.lp-hero-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Anton', sans-serif;
  font-size: 0.82rem;
  letter-spacing: .02em;
  padding: 9px 18px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
}

/* Vertrauens-Punkte direkt unter dem Hero */
.lp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 2px solid rgba(28,28,28,.1);
}
.lp-trust span {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lp-trust span::before { content: "✓"; color: var(--orange); font-weight: 800; }

/* Leistungsliste im Detailblock */
.lp-leistung-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 44px 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.lp-leistung-list { list-style: none; display: grid; gap: 14px; margin-top: 24px; }
.lp-leistung-list li {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  padding-left: 30px;
  position: relative;
}
.lp-leistung-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}

/* Querverweis auf das jeweils andere Paket */
.lp-cross {
  background: var(--photo-pink);
  border-radius: var(--r-xl);
  padding: 38px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
}
.lp-cross h2 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); margin-bottom: 8px; }
.lp-cross p { font-weight: 500; line-height: 1.6; max-width: 620px; }
.lp-cross .btn-orange { flex-shrink: 0; }

/* Angebots-Teaser auf der Startseite */
.lp-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}
.lp-teaser {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.lp-teaser:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,.1); }
.lp-teaser-preis {
  font-family: 'Anton', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--orange);
}
.lp-teaser h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.25rem; text-transform: uppercase; letter-spacing: -.5px; }
.lp-teaser p { font-size: 0.9rem; font-weight: 500; line-height: 1.55; }
.lp-teaser-mehr { font-weight: 700; color: var(--orange); font-size: 0.88rem; margin-top: auto; }

@media (max-width: 900px) {
  .lp-hero { padding: 28px 24px 44px; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 30px; }
  /* Bild unter den CTA-Block, damit Preis und Button zuerst sichtbar sind */
  .lp-hero-media { order: 2; }
  .lp-hero-text { order: 1; }
  .lp-leistung-card { padding: 34px 24px; }
  .lp-cross { padding: 30px 24px; }
  .lp-teaser-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .lp-hero { padding: 22px 16px 36px; }
  .lp-hero .lead { font-size: 0.95rem; }
  .lp-cta-row .btn-cta-white, .lp-cta-row .btn-orange { width: 100%; text-align: center; }
}
