/* ============================================================
   KiaviD – styles.css   (echte Brand-Farben)
   Gold #d4ac3b · Rot #9a3532 · Creme #e7e3dc · Dunkel #2f2f2f
   ============================================================ */

/* ── 0. Custom Properties ─────────────────────────────────── */
:root {
  /* Brand colours */
  --gold:         #d4ac3b;
  --gold-dark:    #b8942a;
  --gold-light:   #e5c45a;
  --gold-glow:    rgba(212, 172, 59, 0.18);
  --gold-glow2:   rgba(212, 172, 59, 0.10);

  --red:          #9a3532;
  --red-dark:     #7a2a28;
  --red-light:    #b84542;
  --red-glow:     rgba(154, 53, 50, 0.15);

  --cream:        #f6e9d2;
  --cream-light:  #fdf4e6;
  --cream-white:  #fffbf4;

  --dark:         #2f2f2f;
  --dark2:        #3d1010;   /* deep warm burgundy – replaces cold black */
  --dark3:        #1e0808;   /* very dark warm – header */
  --text:         #2f2f2f;
  --text-muted:   #7a7265;
  --border:       rgba(47, 47, 47, 0.12);
  --border-light: rgba(47, 47, 47, 0.07);

  /* Spacing & sizing */
  --radius:       14px;
  --radius-lg:    22px;
  --radius-xl:    40px;
  --shadow:       0 4px 24px rgba(47, 47, 47, 0.12);
  --shadow-lg:    0 12px 48px rgba(47, 47, 47, 0.18);
  --shadow-card:  0 2px 16px rgba(47, 47, 47, 0.08);
  --shadow-gold:  0 6px 28px rgba(212, 172, 59, 0.35);
  --shadow-red:   0 6px 28px rgba(154, 53, 50, 0.35);

  /* Typography */
  --font-display: 'Chewy', cursive;
  --font-head: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;

  /* Transitions */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.4s;
}

/* ── 1. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ── 2. Typography ────────────────────────────────────────── */
h1, h2, h3, h4 {
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5.5vw, 3.8rem); font-weight: 400; letter-spacing: 0.01em; }
h2 { font-family: var(--font-display); font-size: clamp(1.7rem, 3.8vw, 2.8rem); font-weight: 400; letter-spacing: 0.01em; }
h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; }
h4 { font-family: var(--font-head); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }

h1 span, h2 span { color: var(--gold-dark); }

p { color: var(--text); }
.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  line-height: 1.65;
  color: var(--text-muted);
}
.pull {
  font-size: 1.12rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--gold-dark);
}

/* ── 3. Layout ────────────────────────────────────────────── */
.container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}
.section { padding: clamp(60px, 8vw, 110px) 0; }

/* Section backgrounds */
.bg-cream2 { background: var(--cream-light); }
.bg-cream3 { background: var(--cream); }
.bg-red    { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); }
/* warm deep burgundy – replaces pure black sections */
.bg-dark   { background: linear-gradient(135deg, #4a1515 0%, #380d0d 100%); }
.bg-gold   { background: linear-gradient(135deg, #b8942a 0%, var(--gold) 50%, #c9a030 100%); }
.bg-warm   { background: linear-gradient(160deg, #fffbf4 0%, var(--cream-light) 100%); }

.bg-red h2, .bg-red p, .bg-red h3,
.bg-dark h2, .bg-dark p, .bg-dark h3 { color: #fff; }
.bg-red .text-muted, .bg-dark .text-muted { color: rgba(255,255,255,0.70); }
.bg-gold h2, .bg-gold h3, .bg-gold p { color: var(--dark3); }
.bg-gold .eyebrow { background: rgba(0,0,0,0.15); color: var(--dark3); }
.bg-gold .checklist .tick { background: var(--dark3); color: var(--gold); }

/* ── 4. Eyebrow labels ────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-glow);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.eyebrow.green {
  color: #5A7A3A;
  background: rgba(90, 122, 58, 0.12);
}

/* ── 5. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  transition: transform var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              background var(--duration) var(--ease);
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Gold primary */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1a1a;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { box-shadow: 0 10px 36px rgba(212,172,59,0.5); }

/* Red CTA */
.btn-cta {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-red);
}
.btn-cta:hover { box-shadow: 0 10px 36px rgba(154,53,50,0.5); }

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: var(--gold-glow2);
}

/* Light (on dark backgrounds) */
.btn-light {
  background: #fff;
  color: var(--red-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.20);
}
.btn-light:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.30); }

/* Gold outline (on dark backgrounds) */
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold-glow);
  box-shadow: var(--shadow-gold);
}

/* ── 6. Header / Navigation ───────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark3);
  border-bottom: 1px solid rgba(212,172,59,0.18);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.40);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.brand-text {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
}
.brand-text .dot { color: var(--gold-light); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-glow);
}
.nav-links .nav-cta a { padding: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gold);
  padding: 4px 8px;
}

/* ── 7. Hero Section ──────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(70px, 10vw, 130px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: linear-gradient(155deg, var(--cream-white) 0%, var(--cream-light) 50%, #f6e9d2 100%);
}

/* Decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.50;
  pointer-events: none;
}
.blob-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,172,59,0.28) 0%, transparent 65%);
  top: -250px; right: -120px;
}
.blob-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(154,53,50,0.12) 0%, transparent 65%);
  bottom: -150px; left: -80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-text { position: relative; z-index: 2; }
.hero-text h1 { margin-bottom: 20px; }
.hero-text .lead { margin-bottom: 34px; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

/* Trust stats row */
.hero-trust {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.hero-trust .item { display: flex; flex-direction: column; gap: 2px; }
.hero-trust .num  {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-dark);
}
.hero-trust .lbl  { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; }

/* Hero visual */
.hero-visual { position: relative; z-index: 2; }
.hero-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  max-height: 560px;
}

/* Float badges */
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 100px;
  padding: 10px 18px;
  font-family: var(--font-head);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 3;
}
.float-badge .emoji { font-size: 1.1rem; }
.float-badge.gold-badge {
  background: var(--dark3);
  color: var(--gold);
  border: 1px solid rgba(212,172,59,0.3);
}
.badge-tl { top: 24px;    left: -20px; }
.badge-br { bottom: 24px; right: -20px; }

/* ── 8. Section Headers ───────────────────────────────────── */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head p { margin-top: 16px; font-size: 1.05rem; color: var(--text-muted); }

/* ── 9. Feature Grid ──────────────────────────────────────── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  background: var(--cream-white);
  border: 1px solid rgba(212,172,59,0.18);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease);
  transform-origin: left;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature:hover::before { transform: scaleX(1); }
.feature .icon { font-size: 2.4rem; margin-bottom: 20px; }
.feature h3    { margin-bottom: 10px; }
.feature p     { font-size: 0.95rem; color: var(--text-muted); }

/* Value cards (on dark backgrounds) */
.value {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,172,59,0.20);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: background var(--duration), border-color var(--duration);
}
.value:hover {
  background: rgba(212,172,59,0.10);
  border-color: rgba(212,172,59,0.40);
}
.value .v-emoji { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.value h3 { color: #fff; margin-bottom: 8px; font-size: 1.05rem; }
.value p  { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── 10. Split Layout ─────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.split-img.wide img { border-radius: var(--radius-xl); }

/* ── 11. Checklist ────────────────────────────────────────── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
}
.checklist .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark3);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── 12. How-it-Works Steps ───────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(16.67% + 28px);
  right: calc(16.67% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  pointer-events: none;
}
.step {
  text-align: center;
  padding: 36px 24px;
  background: var(--cream-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212,172,59,0.18);
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 1;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.step .num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark3);
  border-radius: 50%;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-gold);
}
.step h3 { margin-bottom: 10px; }
.step p  { font-size: 0.93rem; color: var(--text-muted); }

/* ── 13. Recipe Card Gallery ──────────────────────────────── */
.card-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.recipe-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 3/4;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.recipe-card:hover { transform: scale(1.03) translateY(-4px); box-shadow: var(--shadow-lg); }
.recipe-card img   { width: 100%; height: 100%; object-fit: cover; }

/* ── 14. CTA Band ─────────────────────────────────────────── */
.cta-band { text-align: center; }
.cta-band .container { max-width: 640px; }
.cta-band h2  { margin-bottom: 16px; }
.cta-band p   { margin-bottom: 32px; font-size: 1.05rem; }

/* ── 15. Story Section (Über uns) ─────────────────────────── */
.story {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.story-block {
  padding: 40px 0 40px 80px;
  border-left: 3px solid var(--border);
  position: relative;
}
.story-block:last-child { border-left-color: transparent; }
.step-emoji {
  position: absolute;
  left: -22px; top: 38px;
  font-size: 1.5rem;
  background: #fff;
  border: 3px solid var(--border);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.story-block h3       { font-size: 1.3rem; margin-bottom: 14px; }
.story-block p + p    { margin-top: 14px; }
.story-block .pull {
  background: var(--cream-light);
  border-left: 4px solid var(--gold);
  padding: 14px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 16px;
  font-size: 1.05rem;
}

/* ── 16. Newsletter Form ──────────────────────────────────── */
.nl-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.nl-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.nl-form input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--dark);
  background: var(--cream-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.nl-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
}
.nl-form input::placeholder { color: var(--text-muted); }
.form-note {
  font-size: 0.77rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}
.nl-perks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}
.nl-perks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
}
.nl-perks .gift { font-size: 1.4rem; }

/* ── 17. Footer ───────────────────────────────────────────── */
.site-footer {
  background: linear-gradient(135deg, #3a0f0f 0%, #2a0a0a 100%);
  padding: clamp(50px, 6vw, 80px) 0 28px;
  border-top: 1px solid rgba(212,172,59,0.15);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}
.footer-top h4 {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.48);
  font-size: 0.93rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-desc { color: rgba(255,255,255,0.45); max-width: 32ch; font-size: 0.93rem; margin-top: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.80rem;
  color: rgba(255,255,255,0.30);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── 18. Scroll Reveal ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.grid-3 .feature:nth-child(2)  { transition-delay: 0.10s; }
.grid-3 .feature:nth-child(3)  { transition-delay: 0.20s; }
.steps  .step:nth-child(2)     { transition-delay: 0.10s; }
.steps  .step:nth-child(3)     { transition-delay: 0.20s; }
.card-gallery .recipe-card:nth-child(2) { transition-delay: 0.06s; }
.card-gallery .recipe-card:nth-child(3) { transition-delay: 0.12s; }
.card-gallery .recipe-card:nth-child(4) { transition-delay: 0.18s; }
.card-gallery .recipe-card:nth-child(5) { transition-delay: 0.24s; }
.card-gallery .recipe-card:nth-child(6) { transition-delay: 0.30s; }
.values .value:nth-child(2) { transition-delay: 0.10s; }
.values .value:nth-child(3) { transition-delay: 0.20s; }
.values .value:nth-child(4) { transition-delay: 0.08s; }
.values .value:nth-child(5) { transition-delay: 0.16s; }
.values .value:nth-child(6) { transition-delay: 0.24s; }

/* ── 19. Responsive ───────────────────────────────────────── */

/* ── Tablet / iPad (≤ 900px) ────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .hero-visual { order: -1; }
  .hero-visual img { max-height: 420px; object-fit: cover; }
  .badge-tl { top: 12px; left: 12px; }
  .badge-br { bottom: 12px; right: 12px; }
  .grid-3  { grid-template-columns: 1fr 1fr; }
  .values  { grid-template-columns: 1fr 1fr; }
  .card-gallery { grid-template-columns: repeat(2, 1fr); }
  .steps   { grid-template-columns: 1fr; gap: 20px; }
  .steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .section-head { margin-bottom: 40px; }
  .hero-text { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
}

/* ── Smartphone (≤ 640px) ───────────────────────────────── */
@media (max-width: 640px) {
  /* Navigation */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--dark3);
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(212,172,59,0.20);
    box-shadow: 0 12px 32px rgba(0,0,0,0.40);
    gap: 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    padding: 13px 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: block;
    font-size: 1rem;
  }
  .nav-links li:last-child a { border-bottom: none; }
  .nav-links .nav-cta        { margin-top: 14px; }
  .nav-links .nav-cta a      { padding: 14px 28px; border: none; display: inline-flex; justify-content: center; }
  .nav-toggle { display: block; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head p { font-size: 0.95rem; }

  /* Hero */
  .hero { padding: 44px 0 40px; }
  .hero-text { text-align: center; }
  .hero-visual img { max-height: 260px; border-radius: var(--radius); }
  .float-badge { display: none; }   /* badges hidden – avoid overflow on small screens */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-bottom: 28px;
    justify-content: center;
  }
  .hero-actions .btn { width: 100%; justify-content: center; white-space: normal; }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 20px;
    justify-items: center;
  }
  .hero-trust .item { align-items: center; text-align: center; }
  .hero-trust .num  { font-size: 1.2rem; }

  /* Grids */
  .grid-3        { grid-template-columns: 1fr; }
  .values        { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .card-gallery  { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Steps */
  .steps { gap: 14px; }
  .step  { padding: 24px 18px; }

  /* Trust boxes */
  .trust-box { padding: 20px 18px; gap: 14px; }
  .trust-box .trust-icon { font-size: 1.8rem; }

  /* Audience cards */
  .audience-card { padding: 22px 18px; }

  /* Callout strip */
  .callout-strip {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
    gap: 12px;
    align-items: center;
  }

  /* Story (Über uns) */
  .story-block { padding-left: 44px; padding-top: 28px; padding-bottom: 28px; }
  .step-emoji  { left: -18px; width: 36px; height: 36px; font-size: 1.1rem; }

  /* Footer */
  .footer-top    { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .footer-desc   { max-width: 100%; }

  /* Buttons – prevent overflow */
  .btn { white-space: normal; }
}

/* ── 20. Product Image Grid ───────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.product-grid .img-main {
  grid-row: 1 / 3;
}
.product-grid .img-main img,
.product-grid .img-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.product-grid .img-main img { border-radius: var(--radius-lg); }
.product-grid .img-sm img:hover,
.product-grid .img-main img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.product-grid .img-sm { aspect-ratio: 1/1; overflow: hidden; border-radius: var(--radius); }

/* Card detail pair */
.card-detail-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.card-detail-pair img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ── 21. Trust & Credential Boxes ────────────────────────── */
.trust-box {
  background: linear-gradient(135deg, var(--cream-light) 0%, #fbeecf 100%);
  border: 1px solid rgba(212,172,59,0.30);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.trust-box .trust-icon {
  font-size: 2.4rem;
  flex-shrink: 0;
}
.trust-box h4 { color: var(--gold-dark); font-size: 0.95rem; text-transform: none; letter-spacing: 0; margin-bottom: 6px; }
.trust-box p  { font-size: 0.93rem; color: var(--text-muted); }

/* 2×2 grid for KiaviD 4-Säulen – overrides .grid-3 inline columns */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}
/* trust-box icon alias used in newsletter */
.trust-box .t-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
}

/* For whom / audience section */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.audience-card {
  background: var(--cream-white);
  border: 1px solid rgba(212,172,59,0.22);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.audience-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.audience-card .icon { font-size: 2rem; flex-shrink: 0; }
.audience-card h3    { font-size: 1rem; margin-bottom: 6px; }
.audience-card p     { font-size: 0.88rem; color: var(--text-muted); }

/* Highlight strip / inline callout */
.callout-strip {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.callout-strip .callout-icon { font-size: 2.4rem; flex-shrink: 0; }
.callout-strip h3 { color: var(--dark3); font-size: 1.1rem; margin-bottom: 4px; }
.callout-strip p  { color: rgba(30,30,30,0.70); font-size: 0.93rem; }

/* ── 21b. Extra mobile fixes ─────────────────────────────── */
@media (max-width: 640px) {
  /* Newsletter hero: form stacks under text */
  .hero-grid .nl-card { margin-top: 8px; }
  .nl-form input { font-size: 1rem; }

  /* Section split images – show full product, no cropping */
  .split-img img { max-height: none; object-fit: cover; width: 100%; border-radius: var(--radius); }
  .split-img.wide img { border-radius: var(--radius-lg); }

  /* Pillars grid: 1 column on mobile */
  .pillars-grid { grid-template-columns: 1fr; }

  /* Product image grid */
  .product-grid { grid-template-columns: 1fr; }
  .card-detail-pair { grid-template-columns: 1fr; }

  /* Pull quotes */
  .pull { font-size: 1rem; }

  /* Legal pages */
  .legal-body { padding: 40px 0 60px; }
  .legal-body h2 { font-size: 1.2rem; margin-top: 32px; }
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .product-grid .img-main { grid-row: auto; }
}

/* ── 21. Utility ──────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: 14px; }
.mt-md { margin-top: 24px; }
.mt-lg { margin-top: 40px; }

/* ── Phone: audience & trust cards always single column ── */
@media (max-width: 768px) {
  .audience-grid { grid-template-columns: 1fr; }
  .trust-grid    { grid-template-columns: 1fr; }
}
