/* ==========================================================================
   Natural Plus — Regensburg. Drive-to-store landing.
   White ground, black text, one red accent from the logo. Nothing else.
   ========================================================================== */

:root{
  --paper:#FFFFFF;
  --ink:#14161A;
  --ink-2:#4E555E;         /* 7.54:1 on white */
  --ink-3:#6C737D;         /* 4.79:1 — the old #767D86 measured 4.16 and failed AA */
  --line:#E3E5E8;
  --red:#D2090F;
  --red-dark:#A70709;

  --shell:720px;
  --pad:20px;

  --sans:"Manrope",system-ui,-apple-system,"Segoe UI",Roboto,sans-serif;
  --display:"Archivo","Manrope",system-ui,sans-serif;
}

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

/* Ein Klassen-Selektor mit display: schlägt das [hidden] des Browsers. Ohne diese
   Zeile bleibt jedes per .hidden ausgeblendete Flex-Element sichtbar. */
[hidden]{display:none !important;}

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top:16px;
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{transition-duration:.01ms !important;animation-duration:.01ms !important;}
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--sans);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

img,video,svg{display:block;max-width:100%;}
img{height:auto;}

/* Every photograph gets a hairline edge — pure black at 10%, drawn inside the box
   so it costs no layout. The white Exclusive Whey packshot has no visible edge
   against a white page without it. */
.hero-media img,.gallery img,.p-shot{
  outline:1px solid rgba(0,0,0,.10);
  outline-offset:-1px;
}
a{color:inherit;}

:focus-visible{outline:2px solid var(--red);outline-offset:3px;}

.skip{
  position:absolute;left:-9999px;top:0;z-index:100;
  background:var(--ink);color:#fff;padding:12px 18px;
}
.skip:focus{left:0;}

.shell{
  width:100%;
  max-width:var(--shell);
  margin-inline:auto;
  padding-inline:var(--pad);
}

/* --------------------------------------------------------------- header */

.site-head{
  background:var(--paper);
  border-bottom:1px solid var(--line);
}
.head-inner{
  display:flex;align-items:center;
  min-height:60px;
}
.logo{display:inline-flex;align-items:center;gap:9px;text-decoration:none;min-height:44px;}
.logo-mark{width:22px;height:22px;flex:none;}
.logo-text{
  font-family:var(--display);
  font-weight:800;
  font-size:17px;
  letter-spacing:.02em;
  text-transform:uppercase;
  line-height:1;
}
.logo-text span{color:var(--red);}

/* ----------------------------------------------------------------- hero */

.hero{padding-top:44px;}
.hero-text{text-align:center;}

.eyebrow{
  margin:0 0 14px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  color:var(--red);
}
h1{
  margin:0 auto 16px;
  font-family:var(--display);
  font-weight:800;
  font-size:clamp(31px,8vw,46px);
  line-height:1.05;
  letter-spacing:-.025em;
  text-wrap:balance;
}
.lead{
  margin:0 auto;
  font-size:17px;
  color:var(--ink-2);
  max-width:44ch;
  text-wrap:pretty;
}
@media (min-width:640px){
  .hero{padding-top:72px;}
  h1{max-width:16ch;}
}

/* the shop being reachable is the whole message, so the hours sit in the hero */
.hours{
  margin:28px auto 0;
  max-width:300px;
  display:grid;
  gap:6px;
  font-variant-numeric:tabular-nums;
  text-align:left;
}
.hours > div{
  display:flex;align-items:baseline;justify-content:space-between;gap:16px;
  padding-bottom:6px;
  border-bottom:1px solid var(--line);
}
.hours > div:last-child{border-bottom:0;}
.hours dt{font-size:15px;color:var(--ink-2);}
.hours dd{margin:0;font-size:16px;font-weight:700;}
.hours .closed dt,.hours .closed dd{color:var(--ink-3);font-weight:500;}

.hero-hint{
  margin:20px auto 0;
  max-width:38ch;
  font-size:14.5px;
  line-height:1.45;
  color:var(--ink-2);
}
.hero-hint strong{color:var(--ink);font-weight:700;}

.hero .btn{margin-top:22px;}

.hero-media{margin:40px 0 0;width:100%;}
.hero-media img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  /* the subject's head sits high in the frame — a centred crop decapitates him at 21:9 */
  object-position:center 35%;
  background:#EFF0F2;
}
@media (min-width:560px){
  .hero-media img{aspect-ratio:16/9;}
}
@media (min-width:1000px){
  .hero-media{margin-top:56px;}
  .hero-media img{aspect-ratio:21/9;}
}

/* --------------------------------------------------------------- button */

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:52px;
  padding:0 26px;
  background:var(--red);
  color:#fff;
  border:1px solid var(--red);
  font-family:var(--display);
  font-weight:700;
  font-size:16px;
  text-decoration:none;
  transition:background-color .15s ease,border-color .15s ease,transform .12s ease;
}
.btn:hover{background:var(--red-dark);border-color:var(--red-dark);}
.btn:active{transform:scale(.96);}

.btn-plain{background:transparent;color:var(--ink);border-color:var(--line);}
.btn-plain:hover{background:transparent;border-color:var(--ink);}

/* ------------------------------------------------------------- sections */

.section{padding-top:56px;}
@media (min-width:640px){
  .section{padding-top:84px;}
}

h2{
  margin:0 0 22px;
  text-wrap:balance;
  font-family:var(--display);
  font-weight:800;
  font-size:clamp(22px,4.4vw,29px);
  line-height:1.15;
  letter-spacing:-.02em;
}

.note{
  margin:18px 0 0;
  color:var(--ink-2);
  font-size:15.5px;
  max-width:60ch;
}
.sub{
  margin:-8px 0 24px;
  color:var(--ink-2);
  font-size:16px;
  max-width:56ch;
  text-wrap:pretty;
}

/* ------------------------------------------------------------ sortiment */

.sortiment{
  list-style:none;
  margin:0;padding:0;
  display:grid;
  gap:0;
  border-top:1px solid var(--line);
}
.sortiment li{
  padding:12px 0;
  border-bottom:1px solid var(--line);
  font-size:17px;
  font-weight:600;
}
@media (min-width:560px){
  .sortiment{grid-template-columns:1fr 1fr;column-gap:40px;}
}

/* -------------------------------------------------------- Preisbeispiele */

.preise{
  list-style:none;
  margin:0;padding:0;
  display:grid;
  gap:0;
  border-top:1px solid var(--line);
}
.preise li{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:20px 0 22px;
  border-bottom:1px solid var(--line);
}
.p-shot{
  flex:none;
  width:92px;height:92px;
  object-fit:cover;
  background:#F4F5F6;
}
.p-body{min-width:0;}
.p-name{
  margin:0 0 3px;
  font-family:var(--display);
  font-weight:800;
  font-size:clamp(20px,4.8vw,23px);
  line-height:1.15;
  letter-spacing:-.02em;
}
.p-typ{
  margin:0 0 10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.11em;
  text-transform:uppercase;
  color:var(--ink-3);
}
@media (min-width:560px){
  .p-shot{width:120px;height:120px;}
}
/* the per-kilo price is the number people actually compare — so it is the loudest
   thing in the section, and the only red one */
.p-preis{
  margin:0 0 6px;
  display:flex;
  align-items:baseline;
  gap:8px;
  flex-wrap:wrap;
  font-variant-numeric:tabular-nums;
}
.p-preis b{
  font-family:var(--display);
  font-weight:800;
  font-size:clamp(34px,9vw,46px);
  line-height:1;
  letter-spacing:-.03em;
  color:var(--red);
  white-space:nowrap;
}
.p-preis span{
  font-family:var(--display);
  font-size:17px;
  font-weight:700;
  color:var(--ink-2);
}
.p-shake{
  margin:0 0 4px;
  font-size:15.5px;
  font-weight:600;
  color:var(--ink);
}
.p-note{
  margin:0;
  font-size:14px;
  color:var(--ink-3);
}
.warum{
  margin:22px 0 0;
  padding-left:16px;
  border-left:2px solid var(--red);
  font-size:16px;
  line-height:1.5;
  color:var(--ink-2);
  max-width:56ch;
}
.warum b{color:var(--ink);font-weight:700;}
.fineprint{
  margin:18px 0 0;
  font-size:13.5px;
  color:var(--ink-3);
  max-width:60ch;
}
@media (min-width:560px){
  .preise li{gap:22px;padding:24px 0 26px;}
}

/* -------------------------------------------------------------- gallery */

.gallery{
  list-style:none;
  margin:0;padding:0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}
@media (min-width:560px){
  .gallery{grid-template-columns:repeat(3,1fr);gap:10px;}
}
.gallery button{
  display:block;width:100%;
  padding:0;border:0;background:none;
  cursor:zoom-in;
  transition:transform .12s ease;
}
.gallery button:active{transform:scale(.98);}
.gallery img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:#EFF0F2;
  transition:opacity .15s ease;
}
.gallery button:hover img{opacity:.86;}

/* ------------------------------------------------------------- lightbox */

.lb{
  width:100%;height:100%;
  max-width:100vw;max-height:100vh;
  margin:0;padding:0;border:0;
  background:#111315;
  overflow:hidden;
}
.lb::backdrop{background:#111315;}
.lb-img{
  width:100%;height:100%;
  object-fit:contain;
  padding:56px 8px 64px;
}
.lb-close,.lb-nav{
  position:absolute;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.10);
  color:#fff;border:0;
  cursor:pointer;
  line-height:1;
  transition:background-color .15s ease;
}
.lb-close:hover,.lb-nav:hover{background:rgba(255,255,255,.24);}
.lb-close{top:10px;right:10px;width:44px;height:44px;font-size:28px;}
.lb-nav{top:50%;transform:translateY(-50%);width:44px;height:64px;font-size:34px;}
.lb-prev{left:8px;}
.lb-next{right:8px;}
.lb-cap{
  position:absolute;left:0;right:0;bottom:0;
  margin:0;padding:14px 16px calc(14px + env(safe-area-inset-bottom));
  color:#B9BDC2;
  font-size:13.5px;
  text-align:center;
}
.lb-cap b{
  color:#fff;font-weight:700;
  font-variant-numeric:tabular-nums;
  margin-right:8px;
}
body.lb-open{overflow:hidden;}

/* ------------------------------------------------------------------ map */

.addr{
  margin:0 0 24px;
  font-family:var(--display);
  font-weight:700;
  font-size:21px;
  line-height:1.35;
  letter-spacing:-.015em;
}

/* Ohne diesen Hinweis stehen Leute vor der Tür und finden den Laden nicht. */
.eingang{
  margin:0 0 24px;
  padding-left:16px;
  border-left:2px solid var(--red);
  font-size:16px;
  line-height:1.5;
  color:var(--ink-2);
  max-width:56ch;
}
.eingang strong{color:var(--ink);font-weight:700;}

.map-frame{
  width:100%;
  height:320px;
  background:#EFF0F2;
  border-block:1px solid var(--line);
  margin-bottom:24px;
  position:relative;
}
@media (min-width:640px){
  .map-frame{height:420px;}
}
#map{width:100%;height:100%;}

/* Shown until the visitor loads the map. Carries the address, so the section is
   useful even if they never press the button. */
.map-consent{
  position:absolute;inset:0;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:12px;
  padding:24px var(--pad);
  text-align:center;
}
.map-consent-text{
  margin:0;
  max-width:46ch;
  font-size:14.5px;
  line-height:1.5;
  color:var(--ink-2);
}
.map-consent-text strong{color:var(--ink);}
.map-consent .btn{background:var(--paper);}
.map-consent-note{margin:0;font-size:13px;}
.map-consent-note a{color:var(--ink-2);text-decoration:underline;text-underline-offset:3px;}
.map-consent-note a:hover{color:var(--red);}
/* a normal block, not a flex box — flex would turn each <code> into its own column */
.map-fallback{
  position:absolute;left:0;right:0;top:50%;
  transform:translateY(-50%);
  margin:0;padding:24px;
  text-align:center;color:var(--ink-2);
  font-size:14px;
}
.map-fallback code{font-size:.92em;overflow-wrap:anywhere;}

.links{display:grid;gap:10px;}
.links .btn{width:100%;}
@media (min-width:560px){
  .links{grid-template-columns:1fr 1fr;}
}

/* ---------------------------------------------------------- legal pages */

.legal{
  padding-top:44px;
  max-width:660px;
}
.legal h1{
  font-size:clamp(28px,6vw,38px);
  text-align:left;
  margin:0 0 8px;
  max-width:none;
}
.legal-sub{
  margin:0 0 8px;
  color:var(--ink-3);
  font-size:14.5px;
}
.legal h2{
  margin:36px 0 10px;
  font-size:19px;
  letter-spacing:-.01em;
}
.legal p{margin:0 0 12px;color:var(--ink-2);}
.legal ul{margin:0 0 12px;padding-left:20px;color:var(--ink-2);}
.legal li{margin-bottom:5px;}
.legal strong{color:var(--ink);}
.legal code{
  font-family:ui-monospace,SFMono-Regular,Menlo,monospace;
  font-size:.92em;
  color:var(--ink);
  overflow-wrap:anywhere;
}
.legal a{color:var(--ink);text-decoration:underline;text-underline-offset:3px;}
.legal a:hover{color:var(--red);}
.legal-back{
  margin-top:40px;padding-top:20px;
  border-top:1px solid var(--line);
}

/* ------------------------------------------------------------- consent */

.consent{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:40;
  background:var(--paper);
  border-top:1px solid var(--line);
  padding:16px 0 calc(14px + env(safe-area-inset-bottom));
  box-shadow:0 -8px 24px rgba(20,22,26,.10);
}
.consent-inner{
  display:grid;
  gap:14px;
}
.consent-title{
  margin:0 0 4px;
  font-family:var(--display);
  font-weight:800;
  font-size:17px;
  letter-spacing:-.01em;
}
.consent-text{
  margin:0;
  font-size:14.5px;
  line-height:1.5;
  color:var(--ink-2);
  max-width:60ch;
}
.consent-actions{
  display:grid;
  gap:10px;
}
.consent-actions .btn{width:100%;}
.consent-note{
  margin:12px 0 0;
  padding-inline:var(--pad);
  max-width:var(--shell);
  margin-inline:auto;
  font-size:13px;
}
.consent-note a{color:var(--ink-2);text-decoration:underline;text-underline-offset:3px;}
.consent-note a:hover{color:var(--red);}

@media (min-width:560px){
  .consent-actions{grid-template-columns:auto auto;justify-content:start;}
  .consent-actions .btn{width:auto;min-width:170px;}
}
@media (min-width:860px){
  .consent-inner{grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:32px;}
}

/* Solange gefragt wird, ist der Sticky-CTA im Weg. */
body.consent-open .sticky-cta{display:none;}

.footlink{
  padding:9px 0;margin:0;border:0;background:none;
  font:inherit;color:var(--ink-2);
  text-decoration:underline;text-underline-offset:3px;
  cursor:pointer;
}
.footlink:hover{color:var(--ink);}

/* ----------------------------------------------------------- sticky cta */

.sticky-cta{
  position:fixed;
  left:0;right:0;bottom:0;
  z-index:30;
  padding:10px var(--pad) calc(10px + env(safe-area-inset-bottom));
  background:rgba(255,255,255,.97);
  border-top:1px solid var(--line);
  transform:translateY(110%);
  transition:transform .22s cubic-bezier(.2,0,0,1);
}
@supports (backdrop-filter:blur(10px)){
  .sticky-cta{background:rgba(255,255,255,.86);backdrop-filter:blur(10px);}
}
.sticky-cta.is-visible{transform:translateY(0);}
.sticky-cta .btn{width:100%;}

/* on desktop the hero button never leaves reach, so the bar is noise */
@media (min-width:740px){
  .sticky-cta{display:none;}
}
body.has-sticky .site-foot{padding-bottom:112px;}
@media (min-width:740px){
  body.has-sticky .site-foot{padding-bottom:calc(40px + env(safe-area-inset-bottom));}
}

/* --------------------------------------------------------------- footer */

.site-foot{
  margin-top:64px;
  border-top:1px solid var(--line);
  padding:32px 0 calc(40px + env(safe-area-inset-bottom));
  font-size:14.5px;
  color:var(--ink-2);
}
.foot-inner{display:grid;gap:16px;}
@media (min-width:560px){
  .foot-inner{grid-template-columns:1fr auto;align-items:start;}
  .foot-inner p:last-child{text-align:right;}
}
.site-foot p{margin:0;}
.site-foot b{
  font-family:var(--display);
  font-weight:800;
  font-size:15px;
  letter-spacing:.02em;
  text-transform:uppercase;
  color:var(--ink);
}
.site-foot a{
  display:inline-block;
  padding-block:12px;
  color:var(--ink-2);
  text-decoration:underline;text-underline-offset:3px;
}
.site-foot a:hover{color:var(--ink);}

/* ------------------------------------------------------------ map chrome */

.maplibregl-ctrl-attrib{font-size:10px;}
.maplibregl-ctrl-group{
  border-radius:0;
  box-shadow:0 0 0 1px var(--line);
}
.maplibregl-ctrl-group button + button{border-top:1px solid var(--line);}
.maplibregl-popup-content{
  border-radius:0;
  padding:11px 14px;
  font-family:var(--sans);
  font-size:13.5px;
  line-height:1.45;
  box-shadow:0 2px 12px rgba(20,22,26,.16);
}
.maplibregl-popup-content strong{
  font-family:var(--display);
  font-weight:800;
  font-size:14px;
  letter-spacing:.01em;
}

/* the in-page route drawing sits below the navigation buttons, deliberately quiet */
.route-line{
  margin:16px 0 0;
  display:flex;flex-wrap:wrap;align-items:baseline;gap:6px 14px;
  font-size:15px;
  color:var(--ink-2);
}
.linkish{
  display:inline-flex;align-items:center;
  min-height:44px;
  padding:0;border:0;background:none;
  font:inherit;color:var(--ink);
  text-decoration:underline;text-underline-offset:4px;
  cursor:pointer;
}
.linkish:hover{color:var(--red);}
.linkish[disabled]{opacity:.5;cursor:default;}
