/* ente-suess-sauer.shop — HTML Skeleton (Light v3)
   - ABeeZee
   - Water (dark blue) footer
   - Mobile-first responsive polish
*/

:root{
  --bg: #faf8f4;
  --bg-dark: #6ec1e4;
  --panel: #ffffff;
  --alt: #f2efe7;

  --text: #1f2328;
  --muted: #5f6b75;
  --muted2:#788591;

  --brand: #6ec1e4;
  --brand2:#b7e4f8;

  --water: #0b2f57;
  --water2:#0a2747;

  --border: #e5dfd4;
  --shadow: 0 18px 40px rgba(25, 35, 45, .10);

  --radius: 18px;
  --radius2: 24px;

  --container: 1120px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }
body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: 'ABeeZee', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  line-height:1.55;
}

a{ color: inherit; text-decoration: none; }
img{ max-width:100%; height:auto; display:block; }
button, input{ font: inherit; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute; left:-999px; top:10px;
  background: #fff; color:#000;
  padding:10px 12px; border-radius: 10px;
}
.skip-link:focus{ left: 10px; z-index: 9999; }

/* Topbar */
.topbar{
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.topbar__inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 16px;
  padding: 10px 0;
}
.topbar__text{ color: var(--muted); font-size: .95rem; }
.topbar__link{
  color: #0b3a73;
  font-weight: 700;
  font-size: .95rem;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,248,244,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display:grid;
  grid-template-columns: 1fr auto auto;
  align-items:center;
  gap: 16px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: .2px;
}
.brand__mark{ font-size: 1.4rem; }
.brand__name{ font-size: 1.05rem; }
.brand__tld{ color: var(--muted); font-weight: 700; }

.site-nav{
  display:flex;
  gap: 14px;
  align-items:center;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
}
.site-nav a{
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
}
.site-nav a:hover{
  color: var(--text);
  background: rgba(0,0,0,.04);
}
.header__actions{
  display:flex;
  gap: 10px;
  justify-content:flex-end;
}

/* Nav toggle (mobile) */
.nav-toggle{
  display:none;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  color: var(--text);
}
.nav-toggle__label{ font-weight: 700; color: var(--muted); }
.nav-toggle__icon{
  width: 16px; height: 12px;
  display:inline-block;
  background:
    linear-gradient(var(--text),var(--text)) 0 0/100% 2px no-repeat,
    linear-gradient(var(--text),var(--text)) 0 50%/100% 2px no-repeat,
    linear-gradient(var(--text),var(--text)) 0 100%/100% 2px no-repeat;
  opacity: .9;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor:pointer;
  text-decoration:none;
  user-select:none;
  white-space:nowrap;
}
.btn--primary{
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #161616;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(11, 47, 87, .25);
}
.btn--ghost{
  background: rgba(255,255,255,.75);
  border-color: var(--border);
  color: var(--text);
}
.btn--ghost:hover{ background: rgba(255,255,255,1); }
.btn--small{ padding: 8px 12px; font-weight: 800; }

.kicker{
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 800;
  font-size: .78rem;
}

.lead{ font-size: 1.08rem; color: var(--muted); }
.muted{ color: var(--muted); }

/* Sections */
.section{ padding: 72px 0; }
.section--alt{
  background: var(--alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section__head{ margin-bottom: 22px; }
.section__head--row{
  display:flex;
  justify-content: space-between;
  align-items:flex-end;
  gap: 16px;
}
.section__sub{ color: var(--muted); max-width: 74ch; }

h1,h2,h3,h4{ margin:0 0 10px; line-height:1.15; }
h1{ font-size: clamp(2rem, 3.2vw, 3.0rem); }
h2{ font-size: clamp(1.5rem, 2.2vw, 2.2rem); }
h3{ font-size: 1.1rem; }
h4{
  font-size: .95rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* Hero */
.hero{ padding: 60px 0 44px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  align-items: start;
}
.hero__cta{ display:flex; gap: 10px; margin: 18px 0 10px; flex-wrap: wrap; }
.hero__badges{
  list-style:none; padding:0; margin: 18px 0 0;
  display:flex; flex-wrap: wrap; gap: 10px;
}
.hero__badges li{
  padding: 8px 10px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.85);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
}

.hero__media{ display:flex; flex-direction: column; gap: 16px; }
.hero-card{
  background: rgba(255,255,255,.92);
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card__image{ padding: 18px; }
.hero-card__image img{
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
}
.hero-card__meta{
  display:flex;
  justify-content: space-between;
  align-items:flex-start;
  gap: 10px;
  padding: 10px 16px 0;
}
.hero-card__title{ font-weight: 900; margin:0; }
.hero-card__sub{ margin: 6px 0 0; color: var(--muted); font-size: .95rem; }
.hero-card__price{ font-weight: 900; color: #0b3a73; }
.hero-card__actions{ padding: 14px 16px 16px; display:flex; gap: 10px; flex-wrap: wrap; }

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}
.stat{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding: 12px;
  box-shadow: 0 10px 26px rgba(25,35,45,.06);
}
.stat__num{ margin:0; font-size: 1.35rem; font-weight: 900; }
.stat__label{ margin: 2px 0 0; color: var(--muted); font-weight: 800; font-size: .92rem; }

/* Tiles */
.tiles{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tile{
  display:flex;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  transition: transform .12s ease, background .12s ease;
}
.tile:hover{ transform: translateY(-2px); background: rgba(255,255,255,1); }
.tile__img{
  width: 84px;
  flex: 0 0 84px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
}
.tile__body p{ margin: 0; color: var(--muted); }
.tile__cta{
  margin-left:auto;
  align-self:center;
  color: #0b3a73;
  font-weight: 900;
}

/* Themes */
.themes{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.theme-card{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: 0 10px 24px rgba(25,35,45,.07);
  display:grid;
  grid-template-columns: 170px 1fr;
  gap: 0;
}
.theme-card__img{
  padding: 14px;
  border-right: 1px solid var(--border);
  background: rgba(255,255,255,.95);
  display:flex;
  align-items:center;
  justify-content:center;
}
.theme-card__img img{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.theme-card__body{ padding: 14px 16px 16px; }
.theme-card__body p{ color: var(--muted); margin: 0 0 12px; }
.theme-card--wide{ grid-column: 1 / -1; }

/* Sizes */
.sizes{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.size{
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
}
.size img{
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 16px;
  margin-bottom: 10px;
}
.callout{
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

/* Carousel */
.carousel{
  display:flex;
  gap: 14px;
  overflow:auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}
.carousel::-webkit-scrollbar{ height: 10px; }
.carousel::-webkit-scrollbar-thumb{
  background: rgba(0,0,0,.10);
  border-radius: 999px;
}
.product-card{
  flex: 0 0 320px;
  scroll-snap-align: start;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  overflow:hidden;
  box-shadow: 0 12px 28px rgba(25,35,45,.08);
}
.product-card__img{
  padding: 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.95);
}
.product-card__img img{
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}
.product-card__body{ padding: 14px 16px 16px; }
.product-card__row{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 10px;
  margin-top: 10px;
}
.price{ font-weight: 900; color: #0b3a73; }

/* Story */
.story{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 22px;
  align-items:start;
}
.story__bullets{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}
.info{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius2);
  padding: 14px;
}
.quote{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  padding: 18px;
  box-shadow: var(--shadow);
}
.quote__text{ margin:0; font-size: 1.1rem; font-weight: 900; }
.quote__img{
  margin-top: 12px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
}

/* Accordion */
.accordion details{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius2);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.accordion summary{ cursor:pointer; font-weight: 900; }
.accordion__content{ color: var(--muted); padding-top: 8px; }

/* CTA strip */
.cta-strip{
  margin-top: 20px;
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(110,193,228,.26), rgba(183,228,248,.24));
  padding: 16px;
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}
.cta-strip__actions{ display:flex; gap: 10px; flex-wrap: wrap; }


.feature{
  position: relative;
  padding-left: 70px; /* space for duck */
  overflow: hidden;
}
.feature__duck{
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 8px;
  height: calc(100% - 16px);
  width: auto;
  object-fit: contain;
  opacity: .95;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(11, 47, 87, .20));
}

/* Feature cards (above footer) */
.features{
  padding: 28px 0 44px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.features__grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature{
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(250,248,244,.75);
  padding: 14px;
  display:flex;
  gap: 12px;
  align-items:flex-start;
}
.feature__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.2rem;
}
.feature p{ margin: 4px 0 0; color: var(--muted); }

/* Modal */
.modal{
  border: 1px solid var(--border);
  border-radius: var(--radius2);
  background: rgba(250,248,244,.98);
  color: var(--text);
  box-shadow: var(--shadow);
  width: min(680px, calc(100% - 24px));
}
.modal::backdrop{ background: rgba(0,0,0,.35); }
.modal__inner{ padding: 16px; }
.modal__head{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  margin-bottom: 10px;
}
.field{ display:block; margin: 14px 0; }
.field__label{ display:block; color: var(--muted); font-weight: 800; margin-bottom: 8px; }
.field__input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.95);
  color: var(--text);
}
.modal__actions{ display:flex; gap: 10px; justify-content:flex-end; flex-wrap: wrap; }
.modal__hint{ margin-top: 10px; color: var(--muted); }

/* Footer (Water / dark blue) */
.site-footer{
  background: var(--water);
  color: rgba(255,255,255,.92);
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 44px;
}
.footer__outer{
  display:grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 26px;
  align-items:start;
  padding-bottom: 34px;
}
.footer__links{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.footer__col h4{ color: rgba(255,255,255,.92); margin-bottom: 12px; }
.footer__col a{
  display:block;
  color: rgba(255,255,255,.78);
  padding: 7px 0;
}
.footer__col a:hover{ color: #fff; }

.brand--footer{ margin-bottom: 10px; }
.brand--footer .brand__tld{ color: rgba(255,255,255,.72); }
.footer__text{ color: rgba(255,255,255,.78); margin: 0 0 14px; }

.footer__trust{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-pill{
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.90);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .92rem;
}

.footer__bar{
  border-top: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.10);
}
.footer__bar-inner{
  display:flex;
  justify-content: space-between;
  align-items:center;
  gap: 12px;
  padding: 14px 0;
  color: rgba(255,255,255,.78);
}
.footer__legal a{
  color: rgba(255,255,255,.78);
  padding: 0 6px;
}
.footer__legal a:hover{ color: #fff; }

/* Responsive */
@media (max-width: 1020px){
  .features__grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .tiles{ grid-template-columns: repeat(2, 1fr); }
  .themes{ grid-template-columns: 1fr; }
  .theme-card{ grid-template-columns: 160px 1fr; }
  .sizes{ grid-template-columns: repeat(2, 1fr); }
  .story{ grid-template-columns: 1fr; }
  .story__bullets{ grid-template-columns: 1fr; }
  .footer__outer{ grid-template-columns: 1fr; }
}
@media (max-width: 720px){
  .feature{ padding-left: 14px; }
  .feature__duck{ display:none; }

  .header__inner{ grid-template-columns: 1fr auto; }
  .site-nav{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .header__actions{ display:none; }
  .tiles{ grid-template-columns: 1fr; }
  .theme-card{ grid-template-columns: 1fr; }
  .theme-card__img{ border-right: none; border-bottom: 1px solid var(--border); }
  .footer__links{ grid-template-columns: 1fr; }
  .footer__bar-inner{ flex-direction: column; align-items:flex-start; }
  .features__grid{ grid-template-columns: 1fr; }
}
.site-nav.is-open{
  display:flex !important;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  justify-content:flex-start;
}
.header__actions.is-open{
  display:flex !important;
  grid-column: 1 / -1;
  justify-content:flex-start;
}


/* v6 additions */
.hero-of-day{
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: .02em;
}
.notice{
  margin-top: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  border-radius: var(--radius2);
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(25,35,45,.06);
}
.notice p{ margin: 0; color: var(--muted); }
.quip{
  display:inline-block;
  margin-left: 6px;
  font-weight: 900;
  color: #0b3a73;
}


.footer__disclaimer{
  margin-top: 12px;
  font-size: .9rem;
  line-height: 1.45;
  color: rgba(255,255,255,.72);
}
.footer__disclaimer em{ font-style: normal; font-weight: 900; }


/* v8 additions */
.story__extras{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 980px){
  .story__extras{ grid-template-columns: 1fr; }
}

.footer__disclaimer--small{
  margin-top: 10px;
  font-size: .88rem;
  color: rgba(255,255,255,.70);
}

/* Hero: Ente des Tages rechts wieder kompakt halten */
.hero__media {
  max-width: 500px;
  width: 100%;
  justify-self: end;
}

/* Card soll sich an hero__media orientieren */
.hero-card {
  width: 100%;
}

/* Bild-/Videobereich nicht riesig werden lassen */
.hero-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.hero-card__image img,
.hero-card__image video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Mobile wieder volle Breite */
@media (max-width: 980px) {
  .hero__media {
    max-width: 100%;
    justify-self: stretch;
  }
}
/* Feature-Blöcke: Ente links, Text sauber daneben */
.feature {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  padding: 14px;
  min-height: 112px;
  overflow: hidden;
}

.feature__duck {
  position: static !important;
  width: 54px;
  height: 86px;
  max-height: 86px;
  object-fit: contain;
  flex: 0 0 54px;
  opacity: 1;
  pointer-events: none;
  filter: drop-shadow(0 8px 14px rgba(11, 47, 87, .18));
}

/* Emoji-Icon optional ausblenden, weil sonst Ente + Icon + Text zu eng wird */
.feature__icon {
  display: none;
}

.feature > div:last-child {
  min-width: 0;
}

.feature h3 {
  margin: 0 0 4px;
  line-height: 1.2;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.eyecatcher {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #f2efe7;
}

.eyecatcher > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyecatcher .title {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 28px 0;
  background: linear-gradient(
    180deg,
    rgba(250,248,244,0) 0%,
    rgba(250,248,244,.88) 70%,
    rgba(250,248,244,.96) 100%
  );
}

.eyecatcher .title h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--text);
}

.eyecatcher .title {
  padding-left: max(20px, calc((100vw - var(--container)) / 2));
  padding-right: max(20px, calc((100vw - var(--container)) / 2));
}

/* Eyecatcher Mobile Links: Desktop ausblenden */
.eyecatcher-mobile-links {
  display: none;
}

/* Nur auf Mobilgeräten sichtbar */
@media (max-width: 720px) {
  .eyecatcher-mobile-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }

  .eyecatcher-mobile-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: .92rem;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(11, 47, 87, .08);
  }

  .eyecatcher-mobile-links a:hover {
    background: #fff;
  }
}

/* Cookie-Consent Banner */
.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    pointer-events: none; /* wird durch inneren Container wieder aktiviert */
}

.cookie-consent--visible {
    display: block;
}

.cookie-consent-inner {
    max-width: 1100px;
    margin: 0 auto 16px auto;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    gap: 16px;
    align-items: center;
    pointer-events: auto;
}

.cookie-consent-text-wrapper {
    flex: 1 1 auto;
}

.cookie-consent-title {
    margin: 0 0 4px 0;
    font-size: 1rem;
    font-weight: 600;
}

.cookie-consent-text {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-consent-text a {
    color: var(--bg-dark);
    text-decoration: underline;
}

.cookie-consent-actions {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.cookie-consent-button {
    border: none;
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.9rem;
    cursor: pointer;
    background: var(--bg-dark);
    color: #ffffff;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-consent-button:hover {
    color: var(--bg-dark);
    background-color: #fff;
    border: 1px solid #202020;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .cookie-consent-inner {
        margin: 0 10px 10px 10px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-consent-actions {
        justify-content: flex-start;
        margin-top: 8px;
    }

    .cookie-consent-button {
        width: 100%;
        text-align: center;
    }
}



/* Mobile overflow fix: Story / Vertrauen */
.story,
.story > *,
.story__bullets,
.story__extras,
.info,
.quote {
  min-width: 0;
  max-width: 100%;
}

.story {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, .8fr);
}

.story__bullets,
.story__extras {
  width: 100%;
}

.info p,
.info h3,
.story .lead,
.story h2,
.quote__text {
  overflow-wrap: anywhere;
  word-break: normal;
}

@media (max-width: 980px) {
  .story {
    grid-template-columns: minmax(0, 1fr);
  }

  .story__bullets,
  .story__extras {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .story .lead {
    font-size: 1rem;
  }

  .info {
    padding: 13px 14px;
  }
}


.quote {
  overflow: hidden;
}

.duck-video {
  display: block;
  width: min(100%, 360px);
  max-width: 100%;
  height: auto;
  margin: 18px auto 0;
  border-radius: 16px;
  object-fit: contain;
  background: #fff;
}

@media (max-width: 720px) {
  .duck-video {
    width: 100%;
    max-height: 420px;
  }
}

.nav-toggle[aria-expanded="true"] {
  background: #fff;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
  background:
    linear-gradient(var(--text),var(--text)) 0 50%/100% 2px no-repeat;
}

.trust-project {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(110,193,228,.16), transparent 34%),
    var(--alt);
}

.trust-project__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 42px;
  align-items: center;
}

.trust-project__content,
.trust-project__visual {
  min-width: 0;
}

.trust-project__content p {
  color: var(--muted);
  line-height: 1.7;
}

.trust-project__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.trust-project__visual {
  position: relative;
  padding-top: 92px;
}

.trust-project__ducks {
  position: absolute;
  top: -28px;
  left: 50%;
  width: min(520px, 130%);
  max-width: none;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 16px 22px rgba(60, 40, 20, .14));
}

.trust-project__family {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  padding: 110px 20px 20px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow);
}

.trust-project__family article {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(250,248,244,.88);
  border: 1px solid rgba(229,223,212,.9);
}

.trust-project__family strong,
.trust-project__family span {
  display: block;
}

.trust-project__family strong {
  margin-bottom: 4px;
  color: var(--text);
}

.trust-project__family span {
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .trust-project__grid {
    grid-template-columns: 1fr;
  }

  .trust-project__visual {
    max-width: 620px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .trust-project__visual {
    padding-top: 68px;
  }

  .trust-project__ducks {
    top: -12px;
    width: 112%;
  }

  .trust-project__family {
    padding: 82px 16px 16px;
    border-radius: 18px;
  }
}

.trust-family {
  position: relative;
  overflow: hidden;
  padding-bottom: 180px;
}

.trust-family__watchers {
  position: absolute;
  z-index: 5;
  left: 42%;
  right: 2%;
  bottom: -18px;
  height: 210px;
  pointer-events: none;
}

.trust-family__watchers img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  transform: scale(1.28);
  transform-origin: center bottom;
}

@media (max-width: 640px) {
  .trust-family {
    padding-bottom: 125px;
  }

  .trust-family__watchers {
    left: 0;
    right: 0;
    bottom: -12px;
    height: 145px;
  }

  .trust-family__watchers img {
    transform: scale(1.1);
  }
}

