:root{
  --ink:#14181A; --body:#3E4649; --muted:#5C6467;
  --green:#03632B; --green-dark:#014A20; --mint:#E6EFE7;
  --stone:#F3F5F2; --line:#DDE2DC; --line-soft:#C6CEC8; --dark-line:#2D3336;
  --page:1440px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:'Libre Franklin',system-ui,-apple-system,Segoe UI,sans-serif;color:var(--ink);background:#fff;font-size:18px;line-height:1.55;-webkit-font-smoothing:antialiased}
img{max-width:100%;display:block}
a{color:var(--green)}
a:hover{color:var(--green-dark)}
h1,h2,h3,h4{margin:0;letter-spacing:-0.03em;font-weight:800;line-height:1.08}
.wrap{max-width:var(--page);margin:0 auto;padding:0 64px}
.eyebrow{font-size:15px;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:var(--muted);margin-bottom:12px}
.lede{font-size:20px;line-height:1.6;color:var(--ink);margin:0}
.section{padding:88px 0}
.section--stone{background:var(--stone)}
.section--mint{background:var(--mint)}
.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;margin-bottom:40px;flex-wrap:wrap}
h2.section-title{font-size:46px}

/* buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;height:64px;padding:0 34px;border-radius:4px;font-size:20px;font-weight:700;text-decoration:none;border:none;cursor:pointer;font-family:inherit}
.btn--primary{background:var(--green);color:#fff}
.btn--primary:hover{background:var(--green-dark);color:#fff}
.btn--outline{border:2px solid var(--ink);color:var(--ink);background:transparent}
.btn--outline:hover{background:var(--stone);color:var(--ink)}
.btn--block{display:flex;width:100%}
.link-strong{font-size:19px;font-weight:700;color:var(--green);text-decoration:none;border-bottom:2px solid var(--green);padding-bottom:4px}

/* announcement + header */
.announce{background:var(--ink);color:#E4E8E4;font-size:17px}
/* Single line at every width: nothing wraps, the left text drops out first. */
.announce .wrap{display:flex;justify-content:space-between;align-items:center;gap:48px;padding-top:12px;padding-bottom:12px;flex-wrap:nowrap;white-space:nowrap}
.announce a{color:#E4E8E4;text-decoration:none}
.announce a:hover{color:#fff}
.announce__text{overflow:hidden;text-overflow:ellipsis;min-width:0}
.announce-links{display:flex;gap:44px;flex-wrap:nowrap}
.header .wrap{display:flex;align-items:center;gap:28px;padding-top:20px;padding-bottom:20px}
.header{border-bottom:1px solid var(--line)}
.header__logo img{width:176px;height:auto}
.header__logo{font-size:26px;font-weight:800;color:var(--ink);text-decoration:none}
.search{flex:1;display:flex;max-width:460px;border:2px solid var(--ink);border-radius:4px;overflow:hidden;height:56px}
.search input{flex:1;border:none;outline:none;padding:0 16px;font-family:inherit;font-size:18px;color:var(--ink);min-width:0}
.search button{width:116px;background:var(--ink);border:none;color:#fff;font-family:inherit;font-size:18px;font-weight:700;cursor:pointer}
.search button:hover{background:var(--green)}
.phone-chip{min-height:56px;padding:8px 20px;background:var(--mint);border-radius:4px;color:var(--ink);text-decoration:none;display:flex;flex-direction:column;justify-content:center;line-height:1.2;margin-left:auto}
.phone-chip:hover{background:#D7E6DA;color:var(--ink)}
.phone-chip b{font-size:19px}
.phone-chip span{font-size:16px;color:var(--body)}
.header__link{height:56px;padding:0 20px;border:2px solid var(--line-soft);border-radius:4px;color:var(--ink);text-decoration:none;display:flex;align-items:center;font-size:18px;font-weight:600;white-space:nowrap}
.header__link:hover{border-color:var(--ink);background:var(--stone);color:var(--ink)}
.header__cart{height:56px;padding:0 24px;background:var(--green);border-radius:4px;color:#fff;text-decoration:none;display:flex;align-items:center;font-size:18px;font-weight:700;white-space:nowrap}
.header__cart:hover{background:var(--green-dark);color:#fff}
.nav{border-bottom:1px solid var(--line)}
/* Never wraps to a second row; scrolls sideways instead if it ever overflows. */
.nav .wrap{display:flex;gap:44px;flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none}
.nav .wrap::-webkit-scrollbar{display:none}
.nav a{font-size:19px;font-weight:600;color:var(--ink);text-decoration:none;padding:18px 0;border-bottom:3px solid transparent;white-space:nowrap}
.nav a:hover,.nav a[aria-current]{color:var(--green);border-bottom-color:var(--green)}
.mobile-phone{display:none;background:var(--mint);padding:14px 16px;min-height:62px;flex-direction:column;align-items:center;justify-content:center;text-decoration:none;color:var(--ink);line-height:1.25}
.mobile-phone b{font-size:20px}
.mobile-phone span{font-size:17px;color:var(--body)}

/* menu button — only on small screens */
.nav-toggle{display:none;align-items:center;gap:10px;margin-left:auto;height:52px;padding:0 16px;
  background:var(--stone);border:2px solid var(--line-soft);border-radius:4px;cursor:pointer;
  font-family:inherit;font-size:17px;font-weight:700;color:var(--ink)}
.nav-toggle__bars{display:flex;flex-direction:column;justify-content:center;gap:4px;width:22px}
.nav-toggle__bars span{display:block;height:3px;background:var(--ink);border-radius:2px}

/* mobile menu drawer */
.drawer{position:fixed;inset:0;z-index:60}
.drawer__overlay{position:absolute;inset:0;background:rgba(10,20,13,.5);opacity:0;transition:opacity .2s}
.drawer.is-open .drawer__overlay{opacity:1}
.drawer__panel{position:absolute;top:0;right:0;height:100%;width:min(86vw,380px);background:#fff;
  padding:20px;overflow-y:auto;display:flex;flex-direction:column;gap:20px;
  transform:translateX(100%);transition:transform .22s ease}
.drawer.is-open .drawer__panel{transform:translateX(0)}
.drawer__head{display:flex;align-items:center;justify-content:space-between}
.drawer__title{font-size:15px;letter-spacing:.14em;text-transform:uppercase;font-weight:700;color:var(--muted)}
.drawer__close{width:48px;height:48px;border:none;background:var(--stone);border-radius:4px;
  font-size:30px;line-height:1;color:var(--ink);cursor:pointer}
.drawer__search{display:flex;border:2px solid var(--ink);border-radius:4px;overflow:hidden;height:52px}
.drawer__search input{flex:1;border:none;outline:none;padding:0 14px;font-family:inherit;font-size:17px;min-width:0}
.drawer__search button{background:var(--ink);border:none;color:#fff;font-family:inherit;font-size:17px;font-weight:700;padding:0 16px;cursor:pointer}
.drawer__nav{display:flex;flex-direction:column}
.drawer__nav a{padding:16px 0;font-size:21px;font-weight:700;color:var(--ink);text-decoration:none;border-bottom:1px solid var(--line)}
.drawer__nav a[aria-current]{color:var(--green)}
.drawer__meta{display:flex;flex-direction:column}
.drawer__meta a{padding:14px 0;font-size:18px;color:var(--ink);text-decoration:none;border-bottom:1px solid var(--line)}
.drawer__call{margin-top:auto}
.drawer__hours{margin:0;font-size:16px;color:var(--body);text-align:center}
body.drawer-open{overflow:hidden}

/* sticky bottom action bar (small screens only) */
.mobile-cta{display:none;position:fixed;left:0;right:0;bottom:0;z-index:50;gap:10px;padding:10px 12px;
  padding-bottom:calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.97);border-top:1px solid var(--line);
  box-shadow:0 -4px 16px rgba(10,20,13,.10)}
.mobile-cta__btn{flex:1;min-height:60px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  border-radius:6px;text-decoration:none;font-family:inherit;font-weight:700;font-size:18px;line-height:1.2;
  border:none;cursor:pointer;padding:6px 10px;text-align:center}
.mobile-cta__btn small{font-weight:500;font-size:14px;opacity:.85;margin-top:2px}
.mobile-cta__btn--ghost{background:var(--mint);color:var(--ink)}
.mobile-cta__btn--call,.mobile-cta__btn--buy{background:var(--green);color:#fff}
.mobile-cta__btn--buy:disabled{background:var(--line-soft);color:var(--body);cursor:not-allowed}
.mobile-cta-spacer{display:none;height:calc(80px + env(safe-area-inset-bottom))}

/* hero */
.hero .wrap{display:grid;grid-template-columns:7fr 5fr;gap:72px;align-items:center;padding-top:80px;padding-bottom:80px}
.pill{display:inline-flex;background:var(--mint);color:var(--green);border-radius:999px;padding:8px 16px;font-size:17px;font-weight:700;margin-bottom:28px}
.hero h1{font-size:72px;line-height:1.02;letter-spacing:-0.04em;margin-bottom:26px;text-wrap:pretty}
.hero p{font-size:22px;line-height:1.6;margin:0 0 36px;max-width:620px;text-wrap:pretty}
.hero .btn{height:68px;font-size:21px;padding:0 38px}
.facts{display:flex;gap:48px;border-top:1px solid var(--line);padding-top:28px;margin-top:44px;flex-wrap:wrap}
.facts b{display:block;font-size:32px;font-weight:800;letter-spacing:-.02em;color:var(--green)}
.facts span{font-size:18px;color:var(--body)}
.hero__media{background:var(--stone);border-radius:8px;padding:56px;display:flex;align-items:center;justify-content:center;min-height:420px}
.hero__media img{max-height:440px;width:auto;mix-blend-mode:multiply}

/* hero — video variant */
.hero--video{position:relative;overflow:hidden;background:#0B1F12;isolation:isolate}
.hero--video .hero__bg{position:absolute;inset:0;z-index:0}
.hero--video .hero__bg video,.hero--video .hero__bg img{width:100%;height:100%;object-fit:cover;display:block}
.hero--video .hero__scrim{position:absolute;inset:0;z-index:1;
  background:linear-gradient(100deg,rgba(4,28,14,.94) 0%,rgba(4,32,16,.88) 30%,rgba(3,42,20,.60) 52%,rgba(3,52,24,.20) 72%,rgba(3,58,26,0) 92%)}
.hero--video .wrap{position:relative;z-index:2;display:flex;flex-direction:column;justify-content:center;
  min-height:min(78vh,720px);padding-top:88px;padding-bottom:88px}
.hero--video .hero__copy{max-width:660px}
.hero--video .pill{background:rgba(255,255,255,.15);color:#fff}
.hero--video h1{color:#fff;font-size:72px;line-height:1.02;letter-spacing:-0.04em;margin-bottom:26px;text-wrap:pretty}
.hero--video p{color:rgba(255,255,255,.90);font-size:22px;line-height:1.6;margin:0 0 36px;max-width:620px;text-wrap:pretty}
.hero--video .btn{height:68px;font-size:21px;padding:0 38px}
.hero--video .btn--primary{background:#fff;color:var(--green)}
.hero--video .btn--primary:hover{background:var(--mint);color:var(--green-dark)}
.hero--video .facts{border-top-color:rgba(255,255,255,.28)}
.hero--video .facts b{color:#fff}
.hero--video .facts span{color:rgba(255,255,255,.82)}
/* With reduced motion the script never attaches a source, so the <video>
   keeps showing its poster frame — nothing extra to do here. */

/* star ratings + trust badge */
.stars{position:relative;display:inline-block;white-space:nowrap;line-height:1;font-size:1em;letter-spacing:.06em}
.stars__bg{color:#C9CFC9}
.stars__fg{position:absolute;inset:0;overflow:hidden;color:#E8A800}
.rating{display:flex;align-items:center;gap:8px;font-size:17px;margin:10px 0 14px}
.rating .stars{font-size:19px}
.rating__value{font-weight:700;color:var(--ink)}
.rating__count{color:var(--muted)}
.rating--sm{font-size:15px;margin:6px 0 10px}
.rating--sm .stars{font-size:16px}
.trustbadge{display:inline-flex;align-items:center;gap:8px;white-space:nowrap}
.trustbadge .stars{font-size:17px}
.trustbadge b{color:#fff;font-size:17px}
.trustbadge__meta{color:#C3CBC3}
.announce-right{display:flex;align-items:center;gap:44px;flex-wrap:nowrap;white-space:nowrap}
.trustbadge--block{gap:10px}
.trustbadge--block .stars{font-size:22px}
.trustbadge--block b{font-size:20px;color:var(--ink)}

/* product page benefits */
.benefits{list-style:none;margin:0 0 28px;padding:0;display:flex;flex-direction:column;gap:10px}
.benefits li{position:relative;padding-left:32px;font-size:18px;line-height:1.5;color:var(--ink)}
.benefits li::before{content:"";position:absolute;left:0;top:.32em;width:18px;height:10px;
  border-left:3px solid var(--green);border-bottom:3px solid var(--green);transform:rotate(-45deg)}
.reassurance{background:var(--mint);border-radius:6px;padding:16px 20px;margin:20px 0 0;
  font-size:17px;line-height:1.55;color:var(--ink)}

/* category overview */
.cat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.cat-card{display:flex;flex-direction:column;background:#fff;border:1px solid var(--line);border-radius:8px;overflow:hidden;text-decoration:none;transition:border-color .15s,transform .15s}
.cat-card:hover{border-color:var(--green);transform:translateY(-2px)}
.cat-card__media{background:var(--stone);height:220px;display:flex;align-items:center;justify-content:center;padding:20px}
.cat-card__media img{max-height:180px;width:auto;mix-blend-mode:multiply}
.cat-card__ph{font:13px ui-monospace,Menlo,monospace;color:var(--body)}
.cat-card__body{padding:24px;display:flex;flex-direction:column;gap:6px}
.cat-card__body b{font-size:24px;font-weight:700;letter-spacing:-.02em;color:var(--ink);line-height:1.2}
.cat-card__body span{font-size:18px;color:var(--body)}
.cat-card__cta{font-style:normal;font-size:18px;font-weight:700;color:var(--green);margin-top:8px}
.cat-card:hover .cat-card__cta{color:var(--green-dark)}

/* goals */
.goals{display:grid;grid-template-columns:repeat(5,1fr);gap:20px}
.goal{background:#fff;border-radius:8px;padding:26px;text-decoration:none;min-height:172px;display:flex;flex-direction:column;justify-content:space-between}
.goal:hover{background:var(--mint)}
.goal b{font-size:24px;font-weight:700;letter-spacing:-.02em;color:var(--ink);line-height:1.2}
.goal span{font-size:18px;color:var(--body)}
.goal--wide{grid-column:span 2}

/* product cards */
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:28px}
.card{display:flex;flex-direction:column}
.card__media{background:var(--stone);border-radius:8px;height:272px;display:flex;align-items:center;justify-content:center;padding:22px;margin-bottom:22px}
.card__media img{max-height:228px;width:auto;mix-blend-mode:multiply}
.card__cat{font-size:16px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:var(--green);margin-bottom:10px}
.card__title{font-size:26px;font-weight:700;letter-spacing:-.02em;line-height:1.2;color:var(--ink);margin-bottom:12px;text-decoration:none;display:block}
.card__desc{font-size:18px;line-height:1.55;color:var(--body);margin-bottom:18px}
.card__price{display:flex;align-items:baseline;gap:10px;margin-top:auto;margin-bottom:18px}
.card__price b{font-size:28px;font-weight:800;color:var(--ink);white-space:nowrap}
.card__price s{font-size:18px;color:var(--body);white-space:nowrap}
.card .btn{height:60px;font-size:19px;width:100%}

/* founder / split */
.split .wrap{display:grid;grid-template-columns:5fr 7fr;gap:72px;align-items:center}
.split--right .wrap{grid-template-columns:7fr 5fr}
.split h2{font-size:46px;margin-bottom:24px;text-wrap:pretty}
.split p{font-size:20px;line-height:1.7;margin:0 0 18px;max-width:660px}
.placeholder{background:repeating-linear-gradient(135deg,#E7EBE6 0 8px,#DEE4DD 8px 16px);border-radius:8px;min-height:460px;display:flex;align-items:flex-end;padding:16px;font:13px ui-monospace,Menlo,monospace;color:var(--body)}

/* testimonials */
.quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-bottom:40px}
.quote{border-top:2px solid var(--ink);padding-top:24px}
.quote p{font-size:21px;line-height:1.6;color:var(--ink);margin:0 0 24px;text-wrap:pretty}
.quote b{font-size:19px;display:block}
.quote span{font-size:18px;color:var(--body)}

/* guarantee */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:28px}
.step{background:#fff;border-radius:8px;padding:28px}
.step b{display:block;font-size:17px;font-weight:800;color:var(--green);margin-bottom:10px}
.step span{font-size:20px;line-height:1.5;color:var(--ink)}
.callout{background:#fff;border-radius:8px;padding:36px}
.callout h3{font-size:24px;font-weight:700;margin-bottom:16px}
.callout p{font-size:19px;line-height:1.6;margin:0 0 24px}
.panel-dark{background:var(--ink);border-radius:8px;padding:40px;color:#fff}
.panel-dark .label{font-size:19px;font-weight:600;color:#BDC4C1;margin-bottom:10px}
.panel-dark .number{font-size:46px;font-weight:800;letter-spacing:-.03em;color:#fff;text-decoration:none;display:block;margin-bottom:20px}
.panel-dark .btn{background:#fff;color:var(--ink);height:68px;font-size:21px;width:100%}
.panel-dark .btn:hover{background:var(--mint);color:var(--ink)}
.panel-dark small{font-size:18px;line-height:1.6;color:#E4E8E4;display:block;margin-top:18px}
.hours{display:flex;gap:48px;border-top:1px solid var(--line);padding-top:24px;flex-wrap:wrap}
.hours b{display:block;font-size:19px;margin-bottom:4px}
.hours span{font-size:19px}

/* footer */
.footer{background:var(--ink);color:#E4E8E4;padding:64px 0 40px}
.footer .cols{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:48px;margin-bottom:44px}
.footer h4{font-size:19px;font-weight:700;color:#fff;margin-bottom:14px}
.footer a{font-size:18px;color:#E4E8E4;text-decoration:none}
.footer a:hover{color:#fff}
.footer .links{display:flex;flex-direction:column;gap:10px}
.footer .number{font-size:30px;font-weight:800;letter-spacing:-.02em;color:#fff;text-decoration:none;display:block;margin-bottom:10px}
.footer .legal{border-top:1px solid var(--dark-line);padding-top:24px;font-size:17px;line-height:1.6;color:#BDC4C1}

/* product page */
.pdp{display:grid;grid-template-columns:6fr 6fr;gap:72px;align-items:start}
.pdp__media{background:var(--stone);border-radius:8px;padding:48px;display:flex;align-items:center;justify-content:center;min-height:520px}
.pdp__media img{max-height:460px;width:auto;mix-blend-mode:multiply}
.pdp h1{font-size:52px;margin-bottom:20px;text-wrap:pretty}
.pdp .price{display:flex;align-items:baseline;gap:12px;margin:24px 0}
.pdp .price b{font-size:38px;font-weight:800;white-space:nowrap}
.pdp .price s{font-size:20px;color:var(--body);white-space:nowrap}
.variants{display:flex;flex-direction:column;gap:12px;margin:28px 0}
.variant{display:flex;align-items:center;justify-content:space-between;gap:16px;border:2px solid var(--line-soft);border-radius:6px;padding:18px 20px;cursor:pointer;font-size:19px}
.variant:has(input:checked){border-color:var(--green);background:var(--mint)}
.variant input{width:24px;height:24px;accent-color:var(--green)}
.variant .v-name{font-weight:700;flex:1;margin-left:12px}
.variant .v-price{font-weight:800;white-space:nowrap}
.qty{display:flex;align-items:center;gap:14px;margin-bottom:20px;font-size:19px}
.qty input{width:96px;height:60px;border:2px solid var(--line-soft);border-radius:4px;font-family:inherit;font-size:19px;text-align:center}
.pdp .btn--primary{height:68px;font-size:21px;width:100%}
.trust{border-top:1px solid var(--line);margin-top:32px;padding-top:24px;display:flex;flex-direction:column;gap:12px;font-size:18px;color:var(--body)}
.rte{font-size:19px;line-height:1.7;color:var(--ink)}
.rte h2,.rte h3{margin:32px 0 12px;font-size:28px}
.rte ul{padding-left:22px}
.pdp-tabs{display:grid;grid-template-columns:repeat(2,1fr);gap:48px;margin-top:72px;border-top:1px solid var(--line);padding-top:48px}

/* collection */
.coll-head{background:var(--stone);padding:56px 0}
.coll-head h1{font-size:56px;margin-bottom:16px}
.coll-head p{font-size:20px;line-height:1.6;max-width:760px;margin:0}
.pagination{display:flex;gap:12px;justify-content:center;margin-top:48px}
.pagination a,.pagination span{min-width:56px;height:56px;display:flex;align-items:center;justify-content:center;border:2px solid var(--line-soft);border-radius:4px;text-decoration:none;font-size:19px;font-weight:700;color:var(--ink)}
.pagination span[aria-current]{border-color:var(--green);background:var(--mint)}

/* cart */
.cart-line{display:grid;grid-template-columns:120px 1fr auto auto;gap:24px;align-items:center;border-bottom:1px solid var(--line);padding:24px 0}
.cart-line__media{background:var(--stone);border-radius:6px;height:120px;display:flex;align-items:center;justify-content:center;padding:10px}
.cart-line b{font-size:22px}
.cart-line small{display:block;font-size:17px;color:var(--body)}
.cart-line input{width:88px;height:56px;border:2px solid var(--line-soft);border-radius:4px;font-family:inherit;font-size:19px;text-align:center}
.cart-total{display:flex;justify-content:space-between;align-items:baseline;font-size:24px;font-weight:800;margin:32px 0}
.cart-total span:last-child{font-size:34px}
.empty{text-align:center;padding:80px 0}

/* blog */
.posts{display:grid;grid-template-columns:repeat(3,1fr);gap:36px}
.post__media{background:var(--stone);border-radius:8px;height:220px;margin-bottom:20px;overflow:hidden}
.post__media img{width:100%;height:100%;object-fit:cover}
.post h3{font-size:26px;margin-bottom:10px}
.post h3 a{color:var(--ink);text-decoration:none}
.post time{font-size:17px;color:var(--muted)}
.post p{font-size:18px;line-height:1.6;color:var(--body)}
.article{max-width:760px;margin:0 auto}
.article h1{font-size:52px;margin-bottom:16px;text-wrap:pretty}

/* Drop the intro copy before the bar is forced onto a second line. */
@media(max-width:1280px){
  .announce__text{display:none}
}
@media(max-width:1100px){
  .wrap{padding:0 32px}
  .hero .wrap,.split .wrap,.split--right .wrap{grid-template-columns:1fr;gap:36px}
  .goals{grid-template-columns:repeat(2,1fr)}
  .goal--wide{grid-column:span 2}
  .grid-4,.cat-grid{grid-template-columns:repeat(2,1fr)}
  .quotes,.steps,.posts{grid-template-columns:1fr}
  .pdp,.pdp-tabs{grid-template-columns:1fr;gap:36px}
}
@media(max-width:749px){
  body{font-size:17px}
  .wrap{padding:0 20px}
  .section{padding:32px 0}
  /* Kopfzeile: nur Logo und Menü-Schaltfläche */
  .header .wrap{flex-wrap:nowrap;gap:12px}
  .header__logo img{width:128px}
  .search{display:none}
  .phone-chip{display:none}
  .header__link,.header__cart{display:none}
  .nav-toggle{display:inline-flex}
  .nav{display:none}
  .mobile-phone{display:flex}
  .announce .wrap{font-size:15px}
  .announce-links{display:none}
  .nav .wrap{gap:20px;overflow-x:auto;flex-wrap:nowrap}
  .nav a{white-space:nowrap;font-size:18px}
  .hero .wrap{padding-top:32px;padding-bottom:32px}
  .hero h1{font-size:44px}
  .hero p{font-size:19px}
  h2.section-title,.split h2,.coll-head h1{font-size:32px}
  .goals,.grid-4,.cat-grid{grid-template-columns:1fr}
  .goal--wide{grid-column:span 1}
  .goal{min-height:76px;flex-direction:row;align-items:center;padding:20px}
  .pdp h1{font-size:36px}
  .footer .cols{grid-template-columns:1fr;gap:28px}
  .cart-line{grid-template-columns:80px 1fr;gap:16px}
  .cart-line__media{height:80px}
}
/* Stacked layouts lose the left-to-right scrim, so darken bottom-up instead. */
@media(max-width:1100px){
  .hero--video .hero__scrim{
    background:linear-gradient(180deg,rgba(4,28,14,.55) 0%,rgba(4,30,15,.72) 45%,rgba(4,26,13,.92) 100%)}
  .hero--video .hero__copy{max-width:none}
}
@media(max-width:749px){
  .hero--video .wrap{min-height:auto;padding-top:48px;padding-bottom:48px}
  .hero--video .facts{gap:24px;margin-top:32px;padding-top:20px}
  .hero--video .facts b{font-size:26px}
  .hero--video .facts span{font-size:16px}
  /* Auf schmalen Bildschirmen den linken Bildausschnitt zeigen — das Paar,
     nicht die Blüte am rechten Rand. */
  .hero--video .hero__bg video,.hero--video .hero__bg img{object-position:22% center}

  /* Feste Aktionsleiste einblenden; der Platzhalter hält den Footer frei */
  .mobile-cta{display:flex}
  .mobile-cta-spacer{display:block}
}