/* =====================================================================
   Forn de sa Plaça — «La Contraetiqueta»
   Website designed & developed by PixelUno · https://pixelUno.es

    1. Schriften            7. Sortenstreifen      13. Rezepte
    2. Marken (Token)       8. Etikettenzeilen     14. Zahlenband
    3. Grundlagen           9. Werte               15. Formular / Kontakt
    4. Streifen, Kopf, Nav 10. Zeitleiste          16. Warenkorb
    5. Held                11. Die fuenf           17. Fuss
    6. Produktkarten       12. GAYetes             18. Reveal, Motion, Print
   ===================================================================== */

/* ---------- 1. Schriften ---------- */
@font-face {
  font-family: 'Archivo';
  src: url('assets/fonts/archivo-var.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}
@font-face {
  font-family: 'Martian Mono';
  src: url('assets/fonts/martian-mono-var.woff2') format('woff2-variations');
  font-weight: 100 800;
  font-stretch: 75% 112%;
  font-display: swap;
}

/* ---------- 2. Marken ---------- */
:root {
  /* Kaltes Etikettenweiss. Bewusst kein warmes Creme: die Marke druckt auf
     Folie, nicht auf Packpapier. */
  --paper: #F2F5F9;
  --paper-2: #E6EBF2;
  --paper-3: #DCE3EC;
  --card: #FFFFFF;

  --ink: #0E141A;
  --ink-2: #46545F;
  --ink-3: #5D6B78;

  --brand: #006098;
  --brand-deep: #00405F;
  --brand-lift: #1B6FAE;

  --onbrand: #EDF4F9;
  --onbrand-2: rgba(255, 255, 255, .82);
  --onbrand-rule: rgba(255, 255, 255, .26);

  --rule: rgba(14, 20, 26, .16);
  --rule-2: rgba(14, 20, 26, .085);
  --rule-3: rgba(14, 20, 26, .045);

  /* Vorschau-Streifen. Steht ausserhalb der Markenpalette und wird nirgends
     sonst benutzt. */
  --stripe-bg: #6c3bd1;
  --stripe-ink: #F6F2FF;
  --stripe: 34px;

  --accent: var(--brand);
  /* Dieselbe Sortenfarbe, aber so weit abgedunkelt, dass weisser
     Text darauf 4.5:1 erreicht. Fuellflaechen mit Schrift nehmen
     --accent-ink, Punkte und Tints nehmen --accent. */
  --accent-ink: var(--brand);

  --display: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --mono: 'Martian Mono', ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --shell: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --r: 4px;
  --r-lg: 8px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --shadow: 0 18px 44px -26px rgba(14, 20, 26, .42);
  --shadow-lift: 0 26px 60px -28px rgba(14, 20, 26, .5);

  --lattice: url('assets/img/lattice.svg');
  --lattice-wide: url('assets/img/lattice-wide.svg');
}

/* ---------- 3. Grundlagen ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--stripe) + 88px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding-top: var(--stripe);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1rem, .96rem + .18vw, 1.075rem);
  font-weight: 400;
  line-height: 1.62;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 750;
  font-stretch: 108%;
  line-height: 1.06;
  letter-spacing: -.021em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 1.5rem + 4.1vw, 4.6rem); }
h2 { font-size: clamp(1.75rem, 1.2rem + 2.1vw, 2.85rem); }
h3 { font-size: clamp(1.16rem, 1.02rem + .5vw, 1.45rem); letter-spacing: -.014em; }
h4 { font-size: 1rem; letter-spacing: -.008em; }

p { margin: 0 0 1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }
img, svg, iframe { max-width: 100%; }
img { height: auto; display: block; }
ul, ol { margin: 0; padding: 0; list-style: none; }

.num {
  font-family: var(--mono);
  font-weight: 500;
  font-stretch: 88%;
  font-size: .78em;
  letter-spacing: .01em;
  font-variant-numeric: tabular-nums;
}

.lede {
  font-size: clamp(1.06rem, 1rem + .38vw, 1.28rem);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 62ch;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shell--narrow { max-width: 820px; }

.vh {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}
.hero :focus-visible, .facts :focus-visible,
.gay :focus-visible, .foot :focus-visible,
.note--brand :focus-visible { outline-color: #fff; }

.skip {
  position: fixed;
  top: calc(var(--stripe) + 8px);
  left: 8px;
  z-index: 200;
  transform: translateY(-200%);
  background: var(--ink);
  color: #fff;
  padding: .7rem 1.1rem;
  border-radius: var(--r);
  text-decoration: none;
  font-weight: 600;
}
.skip:focus-visible { transform: none; }

/* Abschnittsrhythmus: ueber einer Ueberschrift mehr Luft als darunter. */
section { padding-block: clamp(3.6rem, 7vw, 7.5rem); }
.sec__head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.sec__head h2 + .lede { margin-top: .85rem; }
.sec__head--row {
  display: flex; flex-wrap: wrap; gap: 1.5rem 2rem;
  align-items: end; justify-content: space-between;
  max-width: none;
}

/* ---------- Knoepfe ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .78rem 1.4rem;
  border: 1.5px solid var(--brand);
  border-radius: var(--r);
  background: var(--brand);
  color: #fff;
  font: inherit;
  font-weight: 620;
  font-size: .94rem;
  line-height: 1.2;
  letter-spacing: -.004em;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { background: var(--brand-deep); border-color: var(--brand-deep); }
.btn:active { transform: translateY(1px); }
.btn--big { padding: .95rem 1.7rem; font-size: 1rem; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn--ghost:hover {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--light {
  background: #fff; color: var(--brand); border-color: #fff;
}
.btn--light:hover { background: var(--onbrand); border-color: var(--onbrand); color: var(--brand-deep); }

.btn--onbrand {
  background: transparent; color: #fff; border-color: var(--onbrand-rule);
}
.btn--onbrand:hover { background: rgba(255, 255, 255, .12); border-color: #fff; color: #fff; }

.btn--add { background: var(--accent-ink); border-color: var(--accent-ink); }
.btn--add:hover { background: var(--ink); border-color: var(--ink); }
.btn--add.is-done { background: var(--ink); border-color: var(--ink); }

.hint {
  margin: 0 0 1.4rem;
  font-family: var(--mono);
  font-size: .66rem;
  font-stretch: 86%;
  letter-spacing: .085em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ---------- 4. Streifen, Kopf, Nav ---------- */
.stripe {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  min-height: var(--stripe);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--stripe-bg);
  color: var(--stripe-ink);
  padding: .3rem 1rem;
  text-align: center;
  font-size: .74rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: .012em;
}

.head {
  position: sticky;
  top: var(--stripe);
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.head__in {
  max-width: var(--shell);
  margin-inline: auto;
  padding: .7rem var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex; align-items: center; gap: .7rem;
  text-decoration: none; color: var(--ink);
  margin-right: auto;
}
.brand__mark, .hero__m, .foot__mark {
  display: block;
  background-color: currentColor;
  -webkit-mask-image: var(--mark);
  mask-image: var(--mark);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.brand__mark { width: 30px; height: 42px; color: var(--brand); }
.brand__txt { display: grid; line-height: 1.12; }
.brand__txt b {
  font-weight: 760; font-stretch: 106%; font-size: 1.02rem;
  letter-spacing: -.018em;
}
.brand__txt i {
  font-style: normal;
  font-family: var(--mono);
  font-size: .58rem; font-stretch: 84%;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-3);
}

.nav { display: contents; }
.nav__list { display: flex; align-items: center; gap: clamp(.7rem, 1.5vw, 1.5rem); }
.nav__list a {
  text-decoration: none;
  font-size: .92rem;
  font-weight: 520;
  color: var(--ink-2);
  padding-block: .35rem;
  border-bottom: 2px solid transparent;
  transition: color .16s var(--ease), border-color .16s var(--ease);
  white-space: nowrap;
}
.nav__list a:hover { color: var(--ink); }
.nav__list a[aria-current="page"] { color: var(--brand); border-bottom-color: var(--brand); }

.nav__end { display: flex; align-items: center; gap: 1rem; }
.langs { display: flex; align-items: center; gap: .28rem; }
.langs a {
  font-family: var(--mono);
  font-size: .62rem; font-stretch: 84%;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--ink-3);
  padding: .32rem .42rem;
  border-radius: 3px;
  transition: color .16s, background .16s;
}
.langs a:hover { color: var(--ink); background: var(--paper-2); }
.langs a[aria-current="true"] { color: #fff; background: var(--brand); }

.cartlink {
  display: inline-flex; align-items: center; gap: .5rem;
  text-decoration: none;
  border: 1.5px solid var(--rule);
  border-radius: var(--r);
  padding: .48rem .85rem;
  font-size: .88rem; font-weight: 580;
  transition: border-color .16s, background .16s;
}
.cartlink:hover { border-color: var(--ink); }
.cartlink__n {
  font-family: var(--mono); font-size: .64rem; font-stretch: 84%;
  background: var(--brand); color: #fff;
  min-width: 1.35rem; height: 1.35rem;
  display: inline-grid; place-items: center;
  border-radius: 999px; padding-inline: .3rem;
}

.burger { display: none; }

/* ---------- 5. Held ---------- */
.hero {
  position: relative;
  background: var(--brand);
  color: #fff;
  overflow: hidden;
  padding-block: clamp(3.4rem, 7vw, 7rem);
  isolation: isolate;
}
.hero__net {
  position: absolute; inset: -10% -5%;
  z-index: -1;
  background-color: rgba(255, 255, 255, .17);
  -webkit-mask-image: var(--lattice-wide);
  mask-image: var(--lattice-wide);
  -webkit-mask-size: 96px 96px;
  mask-size: 96px 96px;
  pointer-events: none;
}
.hero__in {
  display: grid;
  grid-template-columns: minmax(150px, 250px) 1fr;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__m { width: 100%; aspect-ratio: 278 / 384; color: #fff; }
.hero__stamp {
  margin: 1rem 0 0;
  padding-top: .8rem;
  border-top: 1px solid var(--onbrand-rule);
  font-family: var(--mono);
  font-size: .62rem; font-stretch: 84%;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--onbrand-2);
  text-align: center;
}
.hero__txt { max-width: 34em; }
.hero h1 { color: #fff; letter-spacing: -.03em; font-stretch: 112%; font-weight: 780; }
.hero__lede {
  margin: 1.4rem 0 0;
  font-size: clamp(1.04rem, .98rem + .42vw, 1.3rem);
  line-height: 1.55;
  color: var(--onbrand);
  max-width: 46ch;
}
.hero__acts {
  margin: 2rem 0 0;
  display: flex; flex-wrap: wrap; gap: .8rem;
}
.award {
  margin: 2.4rem 0 0;
  display: inline-grid;
  gap: .18rem;
  border: 1.5px solid var(--onbrand-rule);
  border-radius: var(--r);
  padding: .8rem 1.15rem;
  background: rgba(0, 0, 0, .11);
}
.award b {
  font-family: var(--mono);
  font-size: .72rem; font-stretch: 86%; font-weight: 600;
  letter-spacing: .045em;
  text-transform: uppercase;
  color: #fff;
}
.award span { font-size: .86rem; color: var(--onbrand-2); }

/* ---------- Kopfbereiche der Unterseiten ---------- */
.masthead {
  background: var(--brand);
  color: #fff;
  padding-block: clamp(2.8rem, 5.5vw, 5rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.masthead::before {
  content: ""; position: absolute; inset: -10%;
  z-index: -1;
  background-color: rgba(255, 255, 255, .14);
  -webkit-mask-image: var(--lattice-wide);
  mask-image: var(--lattice-wide);
  -webkit-mask-size: 96px 96px; mask-size: 96px 96px;
}
.masthead h1 { color: #fff; letter-spacing: -.028em; }
.masthead .lede { color: var(--onbrand); margin-top: 1rem; }
.masthead--tight { padding-block: clamp(2.2rem, 4vw, 3.4rem); }
/* Ueberschrift und Beleg teilen sich dieselbe linke Kante. */
.masthead--tight .shell { max-width: 820px; }

.crumbs {
  padding-block: 1rem;
  border-bottom: 1px solid var(--rule-2);
  font-family: var(--mono);
  font-size: .64rem; font-stretch: 84%;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.crumbs .shell { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.crumbs a { color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--brand); }
.crumbs b { color: var(--ink); font-weight: 600; }

/* ---------- 6. Produktkarten mit Wendeseite ---------- */
.grid { display: grid; gap: clamp(1rem, 2vw, 1.6rem); }
.grid--packs { grid-template-columns: repeat(auto-fill, minmax(248px, 1fr)); }

.pack {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pack:hover { box-shadow: var(--shadow); border-color: var(--rule); }

.pack__flip {
  position: relative;
  perspective: 1400px;
  min-height: 400px;
  flex: 1;
}
.pack__face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition: transform .62s var(--ease), opacity .3s linear;
  display: flex;
  flex-direction: column;
}
.pack__front { transform: rotateY(0deg); }
.pack__back {
  transform: rotateY(180deg);
  background: var(--card);
  padding: 0 0 1rem;
  overflow: hidden;
}
.pack.is-turned .pack__front { transform: rotateY(-180deg); }
.pack.is-turned .pack__back { transform: rotateY(0deg); }

/* Feste Hoehe, damit die Produktnamen im Raster auf einer Linie stehen.
   Das Bild wird absolut in das Feld gelegt: `height: 100%` auf einem
   zentrierten Grid-Element loest gegen eine unbestimmte Hoehe auf und faellt
   auf die Eigenhoehe zurueck — hohe Packshots laufen dann ueber den Text. */
.pack__shot {
  position: relative;
  display: block;
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--accent) 7%, transparent), transparent 78%),
    var(--paper);
  height: 272px;
  flex: none;
}
.pack__shot img {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  /* Explizite Masse: ein ersetztes Element zieht bei `width: auto` seine
     Eigengroesse heran und ignoriert die gegenueberliegenden Kanten. */
  width: calc(100% - 2.6rem);
  height: calc(100% - 2.3rem);
  object-fit: contain;
  transition: transform .5s var(--ease);
}
.pack__txt { flex: 1; }
.pack:hover .pack__shot img { transform: translateY(-5px) scale(1.02); }

.pack__txt { padding: 1rem 1.2rem 1.1rem; }
.pack__name { margin-bottom: .35rem; }
.pack__name a { text-decoration: none; }
.pack__name a:hover { color: var(--brand); }
.pack__lede {
  margin: 0;
  font-size: .9rem;
  line-height: 1.45;
  color: var(--ink-2);
}

.pack__cap {
  background: var(--accent-ink);
  color: #fff;
  padding: .62rem 1.2rem;
  font-family: var(--mono);
  font-size: .66rem; font-stretch: 84%; font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.pack__back .lrows { padding: .9rem 1.2rem 0; }
.pack__back .chips { padding: .1rem 1.2rem .6rem; }
.pack__full {
  display: inline-block;
  margin: .2rem 1.2rem 0;
  font-family: var(--mono);
  font-size: .62rem; font-stretch: 84%;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--brand);
}

.pack__foot {
  border-top: 1px solid var(--rule-2);
  padding: .85rem 1.2rem 1rem;
  display: grid;
  gap: .7rem;
}
.pack__price { margin: 0; display: flex; flex-wrap: wrap; align-items: baseline; gap: .55rem; }
.pack__price b { font-size: 1.28rem; font-weight: 720; letter-spacing: -.02em; }
.pack__price span {
  font-family: var(--mono); font-size: .6rem; font-stretch: 84%;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3);
}
/* Fehlt eine Angabe, wird die Luecke ausgewiesen — nicht still eine andere
   Beschriftung an ihre Stelle gesetzt. */
.gap {
  font-style: normal;
  border-bottom: 1px dashed var(--rule);
  color: var(--ink-3);
}
.pack__acts { display: flex; gap: .5rem; }
.pack__acts .btn { flex: 1; padding-inline: .7rem; font-size: .85rem; }
.btn--turn {
  background: transparent; color: var(--ink-2);
  border-color: var(--rule); flex: 0 0 auto !important;
}
.btn--turn:hover { background: transparent; border-color: var(--ink); color: var(--ink); }

/* Kategorien im Shop */
.cat + .cat { padding-top: 0; }
.cat__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .4rem 1.5rem;
  align-items: start;
  padding-bottom: 1.2rem;
  margin-bottom: 1.4rem;
  border-bottom: 2px solid var(--accent);
}
.cat__head h2 { grid-column: 1; }
.cat__note { grid-column: 1; margin: 0; color: var(--ink-2); max-width: 58ch; font-size: .98rem; }
.cat__n {
  grid-column: 2; grid-row: 1 / span 2;
  margin: 0;
  align-self: center;
}
.cat__n span {
  display: inline-grid; place-items: center;
  min-width: 2.6rem; height: 2.6rem;
  border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: .82rem; font-weight: 600;
}

/* ---------- 7. Sortenstreifen ---------- */
.shelf { background: var(--paper-2); }
.shelf__head { max-width: 62ch; margin-bottom: 2rem; }
.shelf__head .lede { margin-top: .8rem; }

.vtabs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  padding-bottom: .7rem;
  margin-bottom: 1.6rem;
}
@media (max-width: 700px) {
  .vtabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
  }
  .vtabs .vtab { scroll-snap-align: start; }
}
.vtab {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .58rem .95rem;
  border: 1.5px solid var(--rule);
  border-radius: 999px;
  background: var(--card);
  color: var(--ink-2);
  font: inherit; font-size: .87rem; font-weight: 560;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .18s var(--ease), color .18s var(--ease),
              background .18s var(--ease);
}
.vtab__dot {
  width: .62rem; height: .62rem; border-radius: 999px;
  background: var(--c); flex: none;
  transition: transform .2s var(--ease);
}
.vtab:hover { border-color: var(--c); color: var(--ink); }
.vtab:hover .vtab__dot { transform: scale(1.25); }
.vtab[aria-selected="true"] {
  background: var(--c); border-color: var(--c); color: #fff;
}
.vtab[aria-selected="true"] .vtab__dot { background: rgba(255, 255, 255, .85); }

.vpanel {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1.16fr);
  grid-template-areas: "cap cap" "shot body";
  position: relative;
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.vpanel__cap {
  grid-area: cap;
  background: var(--accent-ink);
  color: #fff;
  margin: 0;
  padding: .85rem clamp(1.2rem, 3vw, 2rem);
  display: flex; flex-wrap: wrap; gap: .4rem 1rem;
  align-items: baseline; justify-content: space-between;
  font-size: clamp(1.06rem, 1rem + .4vw, 1.32rem);
  font-weight: 720;
  letter-spacing: -.014em;
}
.vpanel__cap .num { color: rgba(255, 255, 255, .78); font-weight: 500; }
.vpanel__shot {
  grid-area: shot;
  display: grid; place-items: center;
  padding: clamp(1.4rem, 3vw, 2.6rem);
  position: relative;
  isolation: isolate;
  background: color-mix(in srgb, var(--accent) 7%, var(--paper));
}
.vpanel__shot::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-color: color-mix(in srgb, var(--accent) 26%, transparent);
  -webkit-mask-image: var(--lattice); mask-image: var(--lattice);
  -webkit-mask-size: 44px 44px; mask-size: 44px 44px;
}
.vpanel__shot img { max-height: 340px; width: auto; object-fit: contain; }
.vpanel__body { grid-area: body; padding: clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.4rem) 0; }
.vpanel__lede {
  margin: 0 0 .8rem;
  font-size: 1.08rem; font-weight: 560; color: var(--ink);
}
.vpanel__b { color: var(--ink-2); font-size: .96rem; max-width: 52ch; }
.vpanel .lrows { margin-top: 1.2rem; }
.vpanel__buy {
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule-2);
  display: flex; flex-wrap: wrap; align-items: center; gap: .7rem;
}
.vpanel__price { margin: 0 auto 0 0; display: flex; align-items: baseline; gap: .5rem; }
.vpanel__price b { font-size: 1.5rem; font-weight: 720; letter-spacing: -.022em; }
.vpanel__price span {
  font-family: var(--mono); font-size: .6rem; font-stretch: 84%;
  letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3);
}

/* ---------- 8. Etikettenzeilen ---------- */
.lrows { margin: 0; }
.lrow {
  display: grid;
  grid-template-columns: minmax(7.5rem, 34%) 1fr;
  gap: .4rem 1rem;
  padding: .52rem 0;
  border-bottom: 1px solid var(--rule-3);
  align-items: baseline;
}
.lrow:last-child { border-bottom: 0; }
.lrow dt {
  font-family: var(--mono);
  font-size: .6rem; font-stretch: 84%; font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.5;
}
.lrow dd { margin: 0; font-size: .92rem; line-height: 1.5; color: var(--ink); }
.lrow dd.num { font-size: .78rem; }
.lrows--tight .lrow { padding: .38rem 0; }
.lrows--tight .lrow dd { font-size: .84rem; }

.chips { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .9rem; }
.chip {
  font-family: var(--mono);
  font-size: .56rem; font-stretch: 84%;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .28rem .52rem;
  border-radius: 3px;
  border: 1px solid var(--rule-2);
  color: var(--ink-3);
  background: var(--paper);
}
.chip b { font-weight: 700; color: var(--ink-2); }
.chip--p { border-color: color-mix(in srgb, var(--accent) 42%, transparent); }
.chip--p b { color: var(--accent-ink); }

/* Das grosse Etikett auf der Produktseite */
.etiq { padding-top: 0; }
.etiq__in {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3.2rem);
  align-items: start;
}
.etiq__side { display: grid; gap: clamp(1rem, 2vw, 1.5rem); }
.etiq__panel {
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.etiq__cap {
  background: var(--accent-ink);
  color: #fff;
  padding: .85rem clamp(1.1rem, 2.5vw, 1.9rem);
  display: flex; flex-wrap: wrap; gap: .5rem 1rem;
  align-items: baseline; justify-content: space-between;
}
.etiq__cap__n {
  font-weight: 700; font-stretch: 106%; font-size: 1.05rem;
  letter-spacing: -.012em;
}
.etiq__cap__r { color: rgba(255, 255, 255, .82); }
.etiq__panel .lrows { padding: .5rem clamp(1.1rem, 2.5vw, 1.9rem); }
.etiq__h {
  margin: 1rem clamp(1.1rem, 2.5vw, 1.9rem) .3rem;
  font-family: var(--mono);
  font-size: .64rem; font-stretch: 84%; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 1rem;
  border-top: 1px solid var(--rule-2);
}

.allerg {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 .4rem;
  table-layout: fixed;
}
.allerg tr { border-bottom: 1px solid var(--rule-3); }
.allerg tr:last-child { border-bottom: 0; }
.allerg th, .allerg td {
  padding: .42rem clamp(1.1rem, 2.5vw, 1.9rem);
  text-align: left;
  font-weight: 400;
  font-size: .88rem;
}
.allerg td {
  text-align: right;
  font-family: var(--mono);
  font-size: .62rem; font-stretch: 84%;
  letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap;
}
.al--a { color: var(--ink-3); }
.al--a th { color: var(--ink-3); }
.al--p { background: color-mix(in srgb, var(--accent) 8%, transparent); }
.al--p th { font-weight: 620; color: var(--ink); }
.al--p td { color: var(--accent-ink); font-weight: 700; }
.al--t th { color: var(--ink-2); }
.al--t td { color: var(--ink-2); font-weight: 600; }

.gmo {
  padding: 1rem clamp(1.1rem, 2.5vw, 1.9rem) 1.2rem;
  border-top: 1px solid var(--rule-2);
  background: var(--paper);
}
.gmo h3 {
  font-family: var(--mono);
  font-size: .6rem; font-stretch: 84%; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .3rem;
}
.gmo .lrow { grid-template-columns: 1fr auto; }
.gmo .lrow dt { text-transform: none; letter-spacing: .02em; font-size: .64rem; }

.etiq__origin {
  margin: 0;
  padding: .9rem clamp(1.1rem, 2.5vw, 1.9rem) 1.1rem;
  border-top: 1px solid var(--rule-2);
  font-size: .6rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Die Plaketten vom Beutel, woertlich. Etikettenmoeblierung, kein Schmuck. */
.seal {
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 1.3rem 1.4rem 1.4rem;
}
.seal__h {
  font-size: .62rem;
  font-family: var(--mono); font-stretch: 84%; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .9rem;
}
.seal__list { display: grid; gap: .5rem; }
.seal__list li {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  gap: .6rem;
  align-items: baseline;
  font-size: .95rem;
  font-weight: 560;
  letter-spacing: -.01em;
}
.seal__list li::before {
  content: "";
  width: .62rem; height: .62rem;
  border-radius: 999px;
  border: 2px solid var(--brand);
  transform: translateY(.05em);
}
.seal__note {
  margin: 1rem 0 0;
  padding-top: .9rem;
  border-top: 1px solid var(--rule-3);
  font-size: .82rem;
  color: var(--ink-3);
  line-height: 1.5;
}

.label__pending {
  margin: 0 clamp(1.1rem, 2.5vw, 1.9rem) 1.2rem;
  padding: .8rem 1rem;
  border: 1px dashed var(--rule);
  border-radius: var(--r);
  font-family: var(--mono);
  font-size: .64rem; font-stretch: 84%;
  letter-spacing: .05em;
  color: var(--ink-3);
  background: var(--paper);
}

/* Produktkopf */
.prod { padding-bottom: clamp(2rem, 4vw, 3.5rem); }
.prod__in {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.prod__shot {
  display: grid; place-items: center;
  padding: clamp(1.6rem, 4vw, 3rem);
  border-radius: var(--r-lg);
  position: relative; isolation: isolate;
  background: color-mix(in srgb, var(--accent) 8%, var(--paper-2));
  overflow: hidden;
}
.prod__shot::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-color: color-mix(in srgb, var(--accent) 26%, transparent);
  -webkit-mask-image: var(--lattice); mask-image: var(--lattice);
  -webkit-mask-size: 44px 44px; mask-size: 44px 44px;
}
.prod__shot img { max-height: 460px; width: auto; object-fit: contain; }
.prod h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.3rem); }
.prod__lede {
  margin: 1rem 0 .8rem;
  font-size: clamp(1.06rem, 1rem + .35vw, 1.24rem);
  font-weight: 560;
}
.prod__body__b { color: var(--ink-2); max-width: 52ch; }
.prod__buy {
  margin-top: 1.8rem; padding-top: 1.4rem;
  border-top: 1px solid var(--rule-2);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
}
.prod__price { margin: 0; display: grid; }
.prod__price b { font-size: 2rem; font-weight: 740; letter-spacing: -.026em; line-height: 1; }
.prod__price span {
  font-family: var(--mono); font-size: .58rem; font-stretch: 84%;
  letter-spacing: .07em; text-transform: uppercase; color: var(--ink-3);
  margin-top: .3rem;
}
.prod .chips { margin-top: 1.2rem; }

.prod__recipe a {
  display: block;
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow .3s var(--ease);
}
.prod__recipe a:hover { box-shadow: var(--shadow); }
.prod__recipe img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.prod__recipe__txt { display: grid; gap: .25rem; padding: 1rem 1.2rem 1.2rem; }
.prod__recipe__t { font-weight: 640; font-size: 1.02rem; letter-spacing: -.012em; }
/* Die Herkunftszeile steht unter dem Titel, nicht darueber. */
.prod__recipe__k {
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3);
}

.more { background: var(--paper-2); }
.more h2 { margin-bottom: 1.6rem; }
.more__back { margin-top: 1.8rem; }

/* ---------- 9. Werte ---------- */
/* Kein Kachelraster: eine Erklaerung, wie sie auf der Ruecketikette steht.
   Die vier Punkte sind keine Reihenfolge, also tragen sie auch keine Nummern. */
.vals__in {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: start;
}
.vals__head { position: sticky; top: calc(var(--stripe) + 96px); }
.vals__head .lede { margin-top: .9rem; }
.vals__seal {
  margin: 1.6rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--rule);
  font-size: .62rem;
  line-height: 1.9;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand);
}
.decls { border-top: 2px solid var(--ink); }
.decl {
  display: grid;
  grid-template-columns: minmax(0, 10.5rem) minmax(0, 1fr);
  gap: .4rem clamp(1.2rem, 3vw, 2.6rem);
  padding: clamp(1.2rem, 2.4vw, 1.8rem) 0;
  border-bottom: 1px solid var(--rule-2);
  align-items: baseline;
}
.decl__t {
  margin: 0;
  font-size: clamp(1.2rem, 1.06rem + .55vw, 1.62rem);
  letter-spacing: -.02em;
}
.decl__b { margin: 0; color: var(--ink-2); font-size: 1rem; line-height: 1.6; max-width: 54ch; }

/* ---------- 10. Zeitleiste ---------- */
.tl { background: var(--paper-2); }
.tl__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem);
  counter-reset: step;
}
.tl__i {
  position: relative;
  padding-top: 1.6rem;
  border-top: 2px solid var(--rule);
}
.tl__i::before {
  content: "";
  position: absolute;
  top: -7px; left: 0;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--brand);
}
.tl__i:last-child::before { background: var(--ink); }
.tl__y {
  margin: 0 0 .7rem;
  font-size: .72rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}
.tl__i h3 { margin-bottom: .55rem; }
.tl__i p:not(.tl__y) { margin: 0; font-size: .93rem; color: var(--ink-2); line-height: 1.55; }

/* ---------- Gató ---------- */
.gato { background: var(--brand-deep); color: #fff; }
.gato__in {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.gato__im { display: grid; place-items: center; }
/* Der grosse Gato kommt in einer runden Dose. Der Packshot steht auf weissem
   Studiogrund — auf dem dunklen Feld waere das ein heller Kasten, also wird er
   auf die Form beschnitten, die das Produkt ohnehin hat. */
.gato__im img {
  max-height: 380px;
  width: auto;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .12), 0 24px 50px -20px rgba(0, 0, 0, .55);
}
.gato h2 { color: #fff; }
.gato .lede { color: var(--onbrand); margin-top: 1rem; }
.gato__txt p:not(.lede) { color: var(--onbrand-2); margin-top: 1rem; max-width: 52ch; }
.gato__txt .btn {
  margin-top: 1.6rem;
  background: #fff; color: var(--brand-deep); border-color: #fff;
}
.gato__txt .btn:hover { background: var(--onbrand); border-color: var(--onbrand); }

/* ---------- 11. Die fuenf ---------- */
.crew__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.crew__c { display: grid; align-content: start; }
.crew__im {
  background: var(--paper-2);
  border-radius: var(--r-lg);
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.crew__im::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-color: rgba(0, 96, 152, .16);
  -webkit-mask-image: var(--lattice); mask-image: var(--lattice);
  -webkit-mask-size: 44px 44px; mask-size: 44px 44px;
}
/* Die Freisteller haben je nach Person ein anderes Seitenverhaeltnis.
   Gemeinsames Hochformat plus Ausrichtung nach unten stellt alle fuenf auf
   dieselbe Standlinie. */
.crew__im img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: bottom center;
  /* Der Beschnitt steckt in der Vorlage, nicht im Layout: die Aufnahmen enden
     auf Oberschenkelhoehe. Ein harter Strich mitten in der Kachel liest sich
     als Maskierungsfehler, also laeuft die Figur nach unten aus. */
  -webkit-mask-image: linear-gradient(to bottom, #000 72%, transparent 98%);
  mask-image: linear-gradient(to bottom, #000 72%, transparent 98%);
  transition: transform .45s var(--ease);
}
.crew__c:hover .crew__im img { transform: translateY(-4px); }

.crew__c h3 { font-size: 1.02rem; margin-bottom: .3rem; }
.crew__role {
  margin: 0 0 .6rem;
  font-size: .6rem;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--brand);
}
.crew__b { margin: 0; font-size: .88rem; color: var(--ink-2); line-height: 1.5; }

/* ---------- 12. GAYetes ---------- */
.gay { background: var(--ink); color: #fff; }
.gay__in {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
}
.gay__flag { display: flex; gap: 3px; margin: 0 0 1.5rem; }
.gay__flag i { display: block; width: 34px; height: 7px; border-radius: 2px; }
.gay__flag i:nth-child(1) { background: #E4342A; }
.gay__flag i:nth-child(2) { background: #F08222; }
.gay__flag i:nth-child(3) { background: #F5C518; }
.gay__flag i:nth-child(4) { background: #2E9B4E; }
.gay__flag i:nth-child(5) { background: #2C63B5; }
.gay__flag i:nth-child(6) { background: #7B4B9E; }
.gay h2 { color: #fff; }
.gay__lead {
  margin: 1.2rem 0 1rem;
  font-size: clamp(1.1rem, 1rem + .5vw, 1.4rem);
  font-weight: 560;
  color: #fff;
  max-width: 34ch;
}
.gay__txt p:not(.gay__lead):not(.gay__flag) {
  color: rgba(255, 255, 255, .78);
  max-width: 56ch;
}
.gay__txt .btn { margin-top: 1.6rem; }
.gay__im { border-radius: var(--r-lg); overflow: hidden; }
.gay__im img { width: 100%; }

/* ---------- 13. Rezepte ---------- */
.recs__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.rc a {
  display: grid;
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.rc a:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.rc__im { display: block; overflow: hidden; }
.rc__im img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  transition: transform .5s var(--ease);
}
.rc a:hover .rc__im img { transform: scale(1.04); }
.rc__txt { display: grid; gap: .35rem; padding: 1.1rem 1.2rem 1.3rem; }
.rc__txt b { font-size: 1.06rem; font-weight: 660; letter-spacing: -.014em; line-height: 1.25; }
.rc__with {
  font-size: .58rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
}

.recs2 .shell { display: grid; gap: clamp(2rem, 4vw, 3.4rem); }
.rec {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.6rem);
  align-items: center;
  padding-bottom: clamp(2rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--rule-2);
}
.rec:last-child { border-bottom: 0; padding-bottom: 0; }
.rec:nth-child(even) .rec__im { order: 2; }
.rec__im { border-radius: var(--r-lg); overflow: hidden; }
.rec__im img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.rec__lede { margin: .8rem 0 1rem; color: var(--ink-2); font-size: 1.02rem; }
.rec__by, .rec__serves {
  margin: 0 0 .4rem;
  font-size: .6rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--accent);
}
.rec__ih {
  margin: 1.4rem 0 .6rem;
  font-size: .62rem; letter-spacing: .11em; text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 1.2rem;
  border-top: 1px solid var(--rule-2);
  font-weight: 600;
}
.rec__ing { display: grid; gap: .3rem; }
.rec__ing li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .92rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.rec__ing li::before {
  content: ""; position: absolute;
  left: 0; top: .62em;
  width: 5px; height: 5px; border-radius: 999px;
  background: var(--accent);
}
.rec__buy { margin-top: 1.4rem; }

/* ---------- 14. Zahlenband ---------- */
.facts { background: var(--brand); color: #fff; padding-block: clamp(2.6rem, 5vw, 4.4rem); }
.facts__list {
  display: grid;
  /* Vier Angaben: zwei mal zwei. Ein Dreierraster liesse die vierte allein
     in einer zweiten Reihe stehen. */
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(1.6rem, 4vw, 3.6rem);
  margin: 0;
  border-top: 1px solid var(--onbrand-rule);
}
.frow {
  display: grid;
  grid-template-columns: minmax(0, 8.5rem) minmax(0, 1fr);
  gap: .3rem 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--onbrand-rule);
  align-items: baseline;
}
.frow dt {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
}
.frow dd { margin: 0; font-size: .92rem; color: var(--onbrand-2); line-height: 1.5; }
.facts__more { margin: 2.2rem 0 0; }
.facts__more a {
  font-family: var(--mono);
  font-size: .66rem; font-stretch: 84%;
  letter-spacing: .09em; text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid var(--onbrand-rule);
  padding-bottom: .25rem;
}
.facts__more a:hover { border-bottom-color: #fff; }

/* ---------- Verkaufsstellen ---------- */
.stock__in {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: start;
}
.stock__map {
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper-2);
}
.stock__map iframe { display: block; width: 100%; height: clamp(360px, 56vh, 620px); border: 0; }
.stock__side { display: grid; gap: 1rem; }
.note {
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.5rem 1.5rem;
}
.note h2 { font-size: 1.16rem; margin-bottom: .6rem; }
.note p { font-size: .94rem; color: var(--ink-2); }
.note--brand {
  background: var(--brand); color: #fff; border-color: var(--brand);
}
.note--brand h2 { color: #fff; }
.note--brand p { color: var(--onbrand); }
.note--brand .btn { margin-top: .6rem; }

/* ---------- FAQ ---------- */
.faq { padding-top: clamp(2.4rem, 5vw, 4rem); }
.qa {
  border-bottom: 1px solid var(--rule-2);
  padding: .3rem 0;
}
.qa summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2.4rem 1.1rem 0;
  position: relative;
  font-weight: 620;
  font-size: clamp(1rem, .96rem + .3vw, 1.14rem);
  letter-spacing: -.012em;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: ""; position: absolute; right: .4rem; top: 1.5rem;
  width: 11px; height: 11px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform .25s var(--ease);
}
.qa[open] summary::after { transform: rotate(-135deg); }
.qa summary:hover { color: var(--brand); }
.qa__a { padding: 0 2.4rem 1.3rem 0; }
.qa__a p { margin: 0; color: var(--ink-2); font-size: .98rem; max-width: 68ch; }

/* ---------- 15. Formular / Kontakt ---------- */
.ct__in {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(1.4rem, 4vw, 3.4rem);
  align-items: start;
}
.ct__form {
  position: relative;
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.2rem);
}
.ct__form h2 { font-size: 1.4rem; margin-bottom: .6rem; }
.ct__demo, .ct__priv {
  font-family: var(--mono);
  font-size: .6rem; font-stretch: 84%;
  letter-spacing: .05em;
  color: var(--ink-3);
  line-height: 1.6;
}
.ct__demo { margin-bottom: 1.6rem; }
.field { display: grid; gap: .4rem; margin-bottom: 1.1rem; }
.field label {
  font-family: var(--mono);
  font-size: .6rem; font-stretch: 84%; font-weight: 500;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-3);
}
.field input, .field select, .field textarea {
  font: inherit;
  font-size: .98rem;
  padding: .72rem .85rem;
  border: 1.5px solid var(--rule);
  border-radius: var(--r);
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  transition: border-color .16s, background .16s;
}
.field textarea { resize: vertical; min-height: 7rem; line-height: 1.55; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  background: #fff; border-color: var(--brand);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #C0392B; }
.ct__ok {
  margin-top: 1rem;
  padding: .8rem 1rem;
  border-radius: var(--r);
  background: color-mix(in srgb, var(--brand) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--brand) 30%, transparent);
  color: var(--brand-deep);
  font-size: .9rem;
}

.ct__side h2 { font-size: 1.4rem; margin-bottom: 1rem; }
.ct__addr { font-style: normal; line-height: 1.7; color: var(--ink-2); }
.ct__addr b { color: var(--ink); font-weight: 640; }
.ct__ways { display: grid; gap: .1rem; margin: 1.6rem 0; }
.ct__ways li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: .8rem;
  align-items: baseline;
  padding: .62rem 0;
  border-bottom: 1px solid var(--rule-3);
}
.ct__ways span {
  font-size: .6rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-3);
}
.ct__ways a { font-weight: 580; text-decoration: none; border-bottom: 1px solid var(--rule); }
.ct__ways a:hover { color: var(--brand); border-bottom-color: var(--brand); }
.ct__hours { font-size: .94rem; }
.ct__hours b { font-weight: 620; }
.pending {
  font-family: var(--mono);
  font-size: .58rem; font-stretch: 84%;
  letter-spacing: .05em;
  color: var(--ink-3);
}
.ct__map a {
  font-family: var(--mono);
  font-size: .62rem; font-stretch: 84%;
  letter-spacing: .06em;
  color: var(--brand);
}

/* ---------- 16. Warenkorb ---------- */
.docket {
  background: var(--card);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.docket__cap {
  background: var(--ink);
  color: #fff;
  padding: .85rem 1.4rem;
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  font-family: var(--mono);
  font-size: .66rem; font-stretch: 84%; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
}
.docket__cap span:last-child { color: rgba(255, 255, 255, .7); }
.docket__list { padding: .4rem 1.4rem; }
.ci {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed var(--rule-2);
}
.ci:last-child { border-bottom: 0; }
.ci__im {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--paper); border-radius: var(--r);
  overflow: hidden;
}
.ci__im img { max-height: 58px; width: auto; }
.ci__n { font-weight: 620; font-size: .98rem; letter-spacing: -.012em; }
.ci__u { display: block; margin-top: .15rem; }
.ci__u {
  font-family: var(--mono); font-size: .62rem; font-stretch: 84%;
  letter-spacing: .04em; color: var(--ink-3);
}
.ci__end { display: flex; align-items: center; gap: .9rem; }
.qty {
  display: inline-flex; align-items: center;
  border: 1.5px solid var(--rule); border-radius: var(--r);
  overflow: hidden;
}
.qty button {
  width: 2rem; height: 2rem;
  border: 0; background: transparent; cursor: pointer;
  font: inherit; font-size: 1rem; color: var(--ink-2); line-height: 1;
  transition: background .15s, color .15s;
}
.qty button:hover { background: var(--paper-2); color: var(--ink); }
.qty output {
  min-width: 2.1rem; text-align: center;
  font-family: var(--mono); font-size: .72rem; font-stretch: 84%;
  font-weight: 600;
}
.ci__amt { text-align: right; display: grid; gap: .15rem; min-width: 5.2rem; }
.ci__amt b { font-size: 1.02rem; font-weight: 680; letter-spacing: -.016em; }
.ci__x {
  border: 0; background: transparent; cursor: pointer;
  font-family: var(--mono); font-size: .56rem; font-stretch: 84%;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-3); padding: .3rem;
  text-decoration: underline; text-underline-offset: 3px;
}
.ci__x:hover { color: #C0392B; }

.docket__tot {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-top: 2px solid var(--ink);
  font-weight: 620;
}
.docket__tot b { font-size: 1.5rem; font-weight: 740; letter-spacing: -.024em; }
.docket__ship {
  padding: 1.1rem 1.4rem;
  background: var(--paper);
  border-top: 1px solid var(--rule-2);
}
.docket__ship h2 {
  font-family: var(--mono);
  font-size: .62rem; font-stretch: 84%; font-weight: 600;
  letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: .4rem;
}
.docket__ship p { margin: 0; font-size: .88rem; color: var(--ink-2); }
.docket__acts {
  padding: 1.2rem 1.4rem 1.4rem;
  display: flex; flex-wrap: wrap; gap: .7rem;
  border-top: 1px solid var(--rule-2);
}
.docket__acts .btn:first-child { flex: 1; min-width: 12rem; }

.empty {
  text-align: center;
  padding: clamp(2.5rem, 6vw, 5rem) 1.5rem;
  border: 1px dashed var(--rule);
  border-radius: var(--r-lg);
  background: var(--card);
}
.empty h2 { margin-bottom: .7rem; }
.empty p { color: var(--ink-2); }
.empty .btn { margin-top: 1.2rem; }

.modal {
  position: fixed; inset: 0; z-index: 300;
  display: grid; place-items: center;
  padding: 1.5rem;
  background: rgba(14, 20, 26, .62);
  backdrop-filter: blur(3px);
}
.modal__box {
  position: relative;
  background: var(--card);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: clamp(1.9rem, 4vw, 2.6rem) clamp(1.6rem, 4vw, 2.4rem) clamp(1.6rem, 4vw, 2.4rem);
  max-width: 32rem;
  box-shadow: var(--shadow-lift);
}
.modal__tag {
  display: inline-block;
  margin: 0 0 .7rem;
  padding: .3rem .6rem;
  border-radius: 3px;
  background: var(--stripe-bg);
  color: var(--stripe-ink);
  font-family: var(--mono);
  font-size: .58rem; font-stretch: 84%; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
}
.modal__box h2 { font-size: 1.35rem; margin-bottom: .7rem; }
.modal__box p { color: var(--ink-2); font-size: .96rem; }
.modal__acts { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }
.modal__x {
  position: absolute; top: .5rem; right: .5rem;
  width: 2.4rem; height: 2.4rem;
  border: 0; background: transparent; cursor: pointer;
  font-size: 1.5rem; line-height: 1; color: var(--ink-3);
  border-radius: var(--r);
}
.modal__x:hover { background: var(--paper-2); color: var(--ink); }

/* ---------- Rechtliches ---------- */
.legal h2 {
  font-size: 1.3rem;
  margin: 2.4rem 0 .8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule-2);
}
.legal h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.legal p { color: var(--ink-2); max-width: 68ch; }
.legal .lrows { margin-top: .5rem; }

/* ---------- 17. Fuss ---------- */
.foot { background: var(--ink); color: rgba(255, 255, 255, .74); padding-block: clamp(2.8rem, 5vw, 4.4rem) 0; }
.foot__in {
  max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.foot__mark { width: 44px; height: 61px; color: #fff; margin-bottom: 1.2rem; }
.foot__tag {
  font-size: clamp(1.06rem, 1rem + .4vw, 1.28rem);
  font-weight: 580;
  color: #fff;
  max-width: 22ch;
  letter-spacing: -.014em;
  line-height: 1.35;
}
.foot__addr {
  font-style: normal;
  margin-top: 1.4rem;
  font-size: .9rem;
  line-height: 1.75;
}
.foot__addr a { color: rgba(255, 255, 255, .82); text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .22); }
.foot__addr a:hover { color: #fff; border-bottom-color: #fff; }
.foot__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.6rem;
}
.foot__cols h2 {
  font-family: var(--mono);
  font-size: .6rem; font-stretch: 84%; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: .9rem;
}
.foot__cols ul { display: grid; gap: .45rem; }
.foot__cols a {
  text-decoration: none; font-size: .93rem;
  color: rgba(255, 255, 255, .78);
  transition: color .16s;
}
.foot__cols a:hover { color: #fff; }
.foot__end {
  max-width: var(--shell); margin-inline: auto; padding-inline: var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, .13);
  padding-block: 1.3rem 1.6rem;
  display: flex; flex-wrap: wrap; gap: .5rem 2rem;
  align-items: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .58);
}
.foot__end p { margin: 0; }
.foot__note { flex: 1 1 16rem; }
.foot__made { margin-left: auto !important; }
.foot__made a {
  color: #fff; font-weight: 620; text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
}
.foot__made a:hover { border-bottom-color: #fff; }

/* ---------- 18. Reveal, Motion ---------- */
.js-fold .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .8s var(--ease);
}
.js-fold .reveal.is-on { opacity: 1; transform: none; }

/* ---------- Breakpoints ---------- */
@media (max-width: 1080px) {
  .etiq__in, .stock__in, .ct__in { grid-template-columns: 1fr; }
  .prod__in { gap: 2rem; }
}

@media (max-width: 900px) {
  .hero__in { grid-template-columns: 1fr; gap: 2rem; }
  /* Marke und Herkunftsstempel als eine Zeile. Untereinander gestapelt saesse
     der Stempel unmittelbar ueber der Ueberschrift und waere damit genau die
     Kickerzeile, die er ersetzen sollte. */
  .hero__mark { display: flex; align-items: center; gap: 1.1rem; }
  .hero__m { width: 92px; flex: none; }
  .hero__stamp {
    margin: 0; padding: .2rem 0 .2rem 1.1rem;
    border-top: 0;
    border-left: 1px solid var(--onbrand-rule);
    text-align: left;
    line-height: 1.6;
  }
  .vals__in { grid-template-columns: 1fr; gap: 2rem; }
  .vals__head { position: static; }
  .decl { grid-template-columns: 1fr; gap: .35rem; }
  .vpanel { grid-template-columns: 1fr; grid-template-areas: "cap" "shot" "body"; }
  .vpanel__body { padding: 0 clamp(1.2rem, 4vw, 2rem) clamp(1.4rem, 4vw, 2rem); }
  .vpanel__shot img { max-height: 260px; }
  .prod__in, .gato__in, .gay__in, .rec { grid-template-columns: 1fr; }
  .rec:nth-child(even) .rec__im { order: 0; }
  .gato__im img { max-height: 280px; }
  .foot__in { grid-template-columns: 1fr; }
}

@media (max-width: 840px) {
  .burger {
    display: inline-flex; align-items: center; gap: .55rem;
    margin-left: auto;
    border: 1.5px solid var(--rule);
    border-radius: var(--r);
    background: transparent;
    padding: .5rem .8rem;
    font: inherit; font-size: .82rem; font-weight: 600;
    cursor: pointer;
    color: var(--ink);
  }
  .burger__box { position: relative; width: 16px; height: 11px; display: block; }
  .burger__box span,
  .burger__box::before, .burger__box::after {
    content: ""; position: absolute; left: 0;
    width: 100%; height: 2px; background: currentColor; border-radius: 2px;
    transition: transform .28s var(--ease), opacity .2s linear;
  }
  .burger__box::before { top: 0; }
  .burger__box span { top: 4.5px; }
  .burger__box::after { bottom: 0; }
  .burger[aria-expanded="true"] .burger__box::before { transform: translateY(4.5px) rotate(45deg); }
  .burger[aria-expanded="true"] .burger__box span { opacity: 0; }
  .burger[aria-expanded="true"] .burger__box::after { transform: translateY(-4.5px) rotate(-45deg); }

  .brand { margin-right: 0; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow);
    padding: 1rem var(--gutter) 1.4rem;
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a {
    display: block;
    padding: .85rem 0;
    font-size: 1.02rem;
    border-bottom: 1px solid var(--rule-3);
  }
  .nav__list a[aria-current="page"] { border-bottom-color: var(--brand); }
  .nav__end { margin-top: 1.2rem; justify-content: space-between; }
  /* Zum Antippen zu klein: die Sprachkuerzel bekommen im Mobilmenue ein
     ordentliches Ziel statt der 26 px aus der Kopfzeile. */
  .langs { gap: .4rem; }
  .langs a {
    min-width: 2.75rem;
    min-height: 2.75rem;
    display: inline-grid;
    place-items: center;
    font-size: .72rem;
    border: 1.5px solid var(--rule);
  }
  .langs a[aria-current="true"] { border-color: var(--brand); }
  .head__in { position: relative; flex-wrap: wrap; }
}

@media (max-width: 700px) {
  .stripe { font-size: .66rem; letter-spacing: 0; }
  :root { --stripe: 42px; }
  h1 { font-size: clamp(2.1rem, 1.4rem + 3.6vw, 3rem); }
  .grid--packs { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .8rem; }
  .pack__flip { min-height: 330px; }
  .pack__shot { padding: 1rem 1rem .7rem; height: 190px; }
  .pack__txt { padding: .8rem .9rem .9rem; }
  .pack__name { font-size: 1.02rem; }
  .pack__lede { font-size: .82rem; }
  .pack__foot { padding: .7rem .9rem .9rem; }
  .pack__acts { flex-direction: column; }
  .pack__acts .btn { width: 100%; }
  .pack__cap, .pack__back .lrows, .pack__back .chips, .pack__full { padding-inline: .9rem; }
  .cat__head { grid-template-columns: 1fr; }
  .cat__n { grid-column: 1; grid-row: auto; justify-self: start; }
  .crew__list { grid-template-columns: repeat(2, 1fr); }
  .ci { grid-template-columns: 48px 1fr; row-gap: .7rem; }
  .ci__im { width: 48px; height: 48px; }
  .ci__end { grid-column: 1 / -1; justify-content: space-between; }
  .docket__acts .btn { width: 100%; flex: 1 1 100%; }
  .allerg th, .allerg td { font-size: .8rem; padding-inline: 1rem; }
  .allerg td { font-size: .58rem; }
  .lrow { grid-template-columns: 1fr; gap: .15rem; }
  .ct__ways li { grid-template-columns: 1fr; gap: .15rem; }
  .facts__list { grid-template-columns: 1fr; }
  .foot__end { flex-direction: column; align-items: flex-start; }
  .foot__made { margin-left: 0 !important; }
}

@media (max-width: 420px) {
  .grid--packs { grid-template-columns: 1fr; }
  .pack__flip { min-height: 342px; }
  .pack__shot { height: 250px; }
  .crew__list { grid-template-columns: 1fr; }
}

/* Auf Zeigergeraeten ohne Hover keine Hover-Verschiebungen */
@media (hover: none) {
  .pack:hover .pack__shot img,
  .rc a:hover .rc__im img,
  .crew__c:hover .crew__im img { transform: none; }
  .rc a:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-fold .reveal { opacity: 1; transform: none; transition: none; }
  .pack__face { transition: opacity .2s linear; }
  /* Ohne Bewegung wird nicht gedreht, sondern geblendet. */
  .pack__front, .pack__back,
  .pack.is-turned .pack__front, .pack.is-turned .pack__back { transform: none; }
  .pack__back { opacity: 0; pointer-events: none; }
  .pack.is-turned .pack__front { opacity: 0; pointer-events: none; }
  .pack.is-turned .pack__back { opacity: 1; pointer-events: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .06s !important;
  }
}

@media print {
  .stripe, .head, .foot__cols, .pack__acts, .docket__acts, .modal { display: none !important; }
  body { padding-top: 0; background: #fff; }
  .hero, .masthead, .facts, .gato, .gay, .foot { background: #fff !important; color: #000 !important; }
  .hero__net, .masthead::before { display: none; }
  a { text-decoration: underline; }
}
