/* ===========================================================================
   Crazy Restpostenshop — Shopify Theme
   Designsystem, portiert von der Landingpage.

   Die CI ist aus dem Logo gemessen, nicht geschätzt: Gelb #FCE74A,
   Magenta #E0418B, schwarze Strichzeichnung auf Weiß.

   Das gestalterische Problem: Discount-Ästhetik kippt in Abzocke-Optik, sobald
   die Signalfarben Flächen werden. Hier trägt ein ruhiger, warmer Papiergrund
   die Seite, Gelb erscheint nur dort, wo etwas kaufbar ist, Magenta
   ausschließlich als Linie — so wie im Logo, wo es nur den Rahmen zeichnet.

   Der Signature Move sind die Buttons: gelbe Fläche, schwarze Kontur,
   versetzter Schatten. Das ist exakt der Aufbau der Logo-Buchstaben.
   =========================================================================== */

/* --------------------------------------------------------------- Schriften */
/* Selbst gehostet aus assets/. Kein Google-Fonts-Request. */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("bricolage-grotesque-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Public Sans";
  src: url("public-sans-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("ibm-plex-mono-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

/* ----------------------------------------------------------------- Tokens */
:root {
  --papier: #fdf6ec;
  --karte: #ffffff;
  --tinte: #16151a;
  --gelb: #fce74a;
  --magenta: #e0418b;
  /* Magenta abgedunkelt, damit es als Textfarbe auf Papier AA erreicht (6,2:1) */
  --magenta-tief: #b0165f;
  --gedaempft: #6b6560;
  --rahmen: #e7dccb;
  --flaeche: #f4ebdc;

  --radius: 1.25rem;
  --radius-klein: 0.9rem;

  --t-schnell: 140ms;
  --t-mittel: 260ms;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --display: "Bricolage Grotesque", "Public Sans", ui-sans-serif, system-ui, sans-serif;
  --sans: "Public Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --breite: 78rem;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--papier);
  color: var(--tinte);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 0.98;
  text-wrap: balance;
  margin: 0;
}

p {
  text-wrap: pretty;
  margin: 0;
}

a {
  color: inherit;
}

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

/* Preise sind das wichtigste typografische Element. Tabellenziffern, damit
   Staffelpreise spaltenrein untereinander stehen. */
.tnum {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 2px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.huelle {
  max-width: var(--breite);
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .huelle {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .huelle {
    padding-inline: 2rem;
  }
}

.abschnitt {
  margin-top: clamp(4rem, 10vw, 7rem);
}

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--magenta-tief);
  margin: 0;
}

.h-gross {
  font-size: clamp(2.1rem, 6vw, 2.9rem);
  margin-top: 0.75rem;
}

.fliess {
  color: var(--gedaempft);
  line-height: 1.65;
  max-width: 54ch;
}

/* --------------------------------------------------------------- Buttons */
/* Der Signature Move: der Logo-Buchstabe als Button. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--tinte);
  background: var(--gelb);
  color: var(--tinte);
  box-shadow: 3px 3px 0 0 var(--tinte);
  transition:
    transform var(--t-schnell) var(--ease),
    box-shadow var(--t-schnell) var(--ease);
}
.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 0 var(--tinte);
}
.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 0 var(--tinte);
}
.btn[disabled],
.btn[aria-disabled="true"] {
  background: var(--flaeche);
  border-color: var(--rahmen);
  color: var(--gedaempft);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn--geist {
  background: transparent;
  box-shadow: none;
}
.btn--geist:hover {
  background: var(--flaeche);
  box-shadow: none;
  transform: none;
}

.btn--breit {
  width: 100%;
}

/* ---------------------------------------------------------------- Karten */
.karte {
  background: var(--karte);
  border: 1px solid var(--rahmen);
  border-radius: var(--radius);
}
.karte--betont {
  border: 2px solid var(--tinte);
  box-shadow: 5px 5px 0 0 var(--tinte);
}

.chip {
  display: inline-block;
  border: 2px solid var(--tinte);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--gelb);
  box-shadow: 2px 2px 0 0 var(--tinte);
}
.chip--magenta {
  background: var(--magenta-tief);
  color: var(--papier);
}
.chip--tinte {
  background: var(--tinte);
  color: var(--papier);
}

.label-mono {
  font-family: var(--mono);
  font-size: 0.75rem;
  background: var(--flaeche);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  display: inline-block;
}

/* --------------------------------------------------------------- Header */
.kopf {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--papier) 92%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rahmen);
}
.kopf__reihe {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-block: 0.65rem;
}
.marke {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  flex-shrink: 0;
}
.marke__zeichen {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px var(--tinte);
}
.marke__zeichen img {
  position: absolute;
  width: 270%;
  max-width: none;
  left: -114%;
  top: -64%;
}
.marke__wort {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.85;
  font-size: 1.05rem;
}
.marke__wort span {
  display: block;
}
.marke__klein {
  font-size: 0.62em;
  letter-spacing: 0.14em;
  color: var(--gedaempft);
}

.kopf__nav {
  display: none;
  margin-left: auto;
}
.kopf__nav ul {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 500;
}
.kopf__nav a {
  text-decoration: none;
  text-underline-offset: 8px;
  text-decoration-color: var(--magenta);
}
.kopf__nav a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
@media (min-width: 1024px) {
  .kopf__nav {
    display: block;
  }
  .marke__zeichen {
    width: 3.4rem;
    height: 3.4rem;
  }
  .marke__wort {
    font-size: 1.3rem;
  }
}

.kopf__aktionen {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .kopf__aktionen {
    margin-left: 0;
  }
}

.rundknopf {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--rahmen);
  background: var(--karte);
  text-decoration: none;
  position: relative;
  transition: border-color var(--t-schnell) var(--ease);
}
.rundknopf:hover {
  border-color: var(--tinte);
  background: var(--flaeche);
}
.rundknopf--gelb {
  background: var(--gelb);
  border: 2px solid var(--tinte);
  box-shadow: 3px 3px 0 0 var(--tinte);
}
.rundknopf__zahl {
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  min-width: 1.5rem;
  border-radius: 999px;
  border: 2px solid var(--tinte);
  background: var(--magenta-tief);
  color: var(--papier);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.3;
  text-align: center;
  padding-inline: 0.25rem;
}

/* Mobile Navigation als Details/Summary — kein JavaScript nötig */
.mobilnav {
  border-top: 1px solid var(--rahmen);
}
.mobilnav > summary {
  list-style: none;
  cursor: pointer;
  padding: 0.75rem 0;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
}
.mobilnav > summary::-webkit-details-marker {
  display: none;
}
.mobilnav ul {
  list-style: none;
  margin: 0;
  padding: 0 0 1rem;
  display: grid;
  gap: 0.2rem;
}
.mobilnav a {
  display: block;
  padding: 0.7rem 0;
  text-decoration: none;
  border-bottom: 1px solid var(--rahmen);
  min-height: 3rem;
}
@media (min-width: 1024px) {
  .mobilnav {
    display: none;
  }
}

/* -------------------------------------------------- Ankündigung / Whatnot */
.ansage {
  background: var(--tinte);
  color: var(--papier);
  font-size: 0.85rem;
}
.ansage__reihe {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  padding-block: 0.6rem;
  text-align: center;
}
.ansage strong {
  color: var(--gelb);
}
.ansage a {
  color: var(--gelb);
  text-underline-offset: 3px;
}

.whatnot-karte {
  background: var(--tinte);
  color: var(--papier);
  border-radius: 1.75rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
}
.whatnot-karte::before {
  content: "";
  position: absolute;
  inset-inline: 1.5rem;
  top: 0;
  height: 1px;
  background: var(--magenta);
  opacity: 0.7;
}
.whatnot-liste {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.whatnot-termin {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-klein);
  background: rgba(255, 255, 255, 0.06);
}
.whatnot-termin__zeit {
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--gelb);
}

/* --------------------------------------------------------- Produktraster */
.raster {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 700px) {
  .raster {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}
@media (min-width: 1100px) {
  .raster {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.produkt {
  display: flex;
  flex-direction: column;
  background: var(--karte);
  border: 1px solid var(--rahmen);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: box-shadow var(--t-schnell) var(--ease);
}
.produkt:hover {
  box-shadow: 3px 3px 0 0 var(--rahmen);
}
.produkt__bild {
  aspect-ratio: 1 / 1;
  background: var(--flaeche);
  overflow: hidden;
}
.produkt__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.produkt__leer {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--gedaempft);
  font-family: var(--mono);
  font-size: 0.7rem;
}
.produkt__chip {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
}
.produkt__text {
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.produkt__marke {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gedaempft);
}
.produkt__titel {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.15;
  margin-top: 0.2rem;
}
.produkt__titel a {
  text-decoration: none;
}
.produkt__titel a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.produkt__fuss {
  margin-top: auto;
  padding-top: 0.8rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.preis {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
}
.preis--durch {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gedaempft);
  text-decoration: line-through;
}
.preis--weg {
  color: var(--gedaempft);
  font-size: 1rem;
}
.grundpreis {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--gedaempft);
  width: 100%;
}

/* ------------------------------------------------------ Filter / Sortier */
.werkzeugleiste {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding-block: 1rem;
  border-block: 1px solid var(--rahmen);
  margin-bottom: 1.5rem;
}
.werkzeugleiste select {
  font-family: var(--sans);
  font-size: 0.9rem;
  min-height: 3rem;
  padding: 0 2.2rem 0 1rem;
  border: 1px solid var(--rahmen);
  border-radius: 999px;
  background: var(--karte);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--tinte) 50%),
    linear-gradient(135deg, var(--tinte) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}
.zaehler {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gedaempft);
  margin-left: auto;
}

/* ------------------------------------------------------------ Paginierung */
.blaettern {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 3rem;
  list-style: none;
  padding: 0;
}
.blaettern a,
.blaettern span {
  display: grid;
  place-items: center;
  min-width: 3rem;
  min-height: 3rem;
  padding-inline: 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--rahmen);
  background: var(--karte);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 0.85rem;
}
.blaettern .aktuell {
  background: var(--gelb);
  border: 2px solid var(--tinte);
  font-weight: 600;
}

/* ------------------------------------------------------------ Produktseite */
.produktseite {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .produktseite {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
  }
}
.galerie__haupt {
  border: 1px solid var(--rahmen);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--flaeche);
  aspect-ratio: 1 / 1;
}
.galerie__haupt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.galerie__reihe {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0.2rem;
}
.galerie__reihe::-webkit-scrollbar {
  display: none;
}
.galerie__reihe button {
  flex: 0 0 auto;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: var(--radius-klein);
  border: 1px solid var(--rahmen);
  background: var(--flaeche);
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}
.galerie__reihe button[aria-current="true"] {
  border: 2px solid var(--tinte);
}
.galerie__reihe img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kaufbox {
  position: sticky;
  top: 6rem;
}
.kaufbox__preis {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1;
}
.mengenwahl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--rahmen);
  border-radius: 999px;
}
.mengenwahl button {
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.mengenwahl button:hover {
  background: var(--flaeche);
}
.mengenwahl input {
  width: 3rem;
  border: 0;
  background: transparent;
  text-align: center;
  font-family: var(--mono);
  font-size: 1rem;
  /* 16px Minimum, sonst zoomt iOS beim Fokus */
  min-height: 3rem;
}

.merkmale {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.merkmale li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.beschreibung {
  margin-top: 2rem;
  line-height: 1.7;
}
.beschreibung h2,
.beschreibung h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}
.beschreibung p {
  margin-top: 0.8rem;
}
.beschreibung ul {
  margin-top: 0.8rem;
  padding-left: 1.2rem;
}

/* ------------------------------------------------------------- Kollektionen */
.kollektionen {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 800px) {
  .kollektionen {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.kollektion {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--rahmen);
  background: var(--karte);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 11rem;
}
.kollektion__bild {
  aspect-ratio: 16 / 10;
  background: var(--flaeche);
  overflow: hidden;
}
.kollektion__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-mittel) var(--ease);
}
.kollektion:hover .kollektion__bild img {
  transform: scale(1.03);
}
.kollektion__text {
  padding: 0.9rem 1rem 1.1rem;
}
.kollektion__titel {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.15;
}
.kollektion__anzahl {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--gedaempft);
  margin-top: 0.25rem;
  display: block;
}

/* ----------------------------------------------------------------- Footer */
.fuss {
  margin-top: clamp(4rem, 10vw, 7rem);
  border-top: 1px solid var(--rahmen);
  background: color-mix(in srgb, var(--flaeche) 50%, transparent);
  padding-block: 3rem;
}
.fuss__raster {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .fuss__raster {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
.fuss h2 {
  font-size: 1rem;
}
.fuss ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.fuss a {
  text-decoration: none;
  text-underline-offset: 4px;
}
.fuss a:hover {
  text-decoration: underline;
  color: var(--magenta-tief);
}
.fuss__recht {
  margin-top: 3rem;
  border-top: 1px solid var(--rahmen);
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: var(--gedaempft);
  line-height: 1.6;
}

/* ------------------------------------------------------------ Hinweisboxen */
.hinweis {
  border: 1px solid color-mix(in srgb, var(--magenta) 40%, transparent);
  background: color-mix(in srgb, var(--magenta) 5%, transparent);
  border-radius: var(--radius-klein);
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  line-height: 1.5;
}
.hinweis--gelb {
  background: color-mix(in srgb, var(--gelb) 35%, transparent);
  border-color: transparent;
}

/* Fortschritt bis versandkostenfrei */
.fortschritt {
  height: 0.6rem;
  border-radius: 999px;
  background: var(--flaeche);
  overflow: hidden;
  margin-top: 0.6rem;
}
.fortschritt__balken {
  height: 100%;
  border-radius: 999px;
  background: var(--gelb);
  transition: width 500ms var(--ease);
}
.fortschritt__balken--voll {
  background: var(--magenta-tief);
}

/* ------------------------------------------------------------------ Motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .btn:hover,
  .btn:active,
  .kollektion:hover .kollektion__bild img {
    transform: none;
  }
}

/* ===========================================================================
   Ergänzungen für die statische HTML-Fassung
   (stand vorher inline in den Liquid-Sektionen)
   =========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  background: var(--tinte);
  color: var(--papier);
}
.hero::before {
  content: "";
  position: absolute;
  inset-inline: 1.5rem;
  top: 0;
  height: 1px;
  background: var(--magenta);
  opacity: 0.7;
}
.hero__raster {
  display: grid;
}
.hero__text {
  padding: clamp(2rem, 5vw, 3.5rem);
  min-width: 0;
}
.hero__titel {
  margin-top: 1rem;
  font-size: clamp(1.95rem, 8vw, 4rem);
  line-height: 0.92;
}
.hero__fliess {
  margin-top: 1.5rem;
  max-width: 40ch;
  line-height: 1.6;
  color: rgba(253, 246, 236, 0.78);
}
.hero__knoepfe {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.hero__bild {
  margin: 0;
  position: relative;
  min-height: 15rem;
}
.hero__bild img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__vertrauen {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 2.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.85rem;
  color: rgba(253, 246, 236, 0.72);
}
.hero__vertrauen strong {
  color: var(--papier);
}
@media (min-width: 1024px) {
  .hero__raster {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* Auf dem Dunkelgrund braucht der Geist-Knopf helle Kontur und Schrift */
.hero .btn--geist {
  color: var(--papier);
  border-color: rgba(253, 246, 236, 0.3);
}
.hero .btn--geist:hover {
  background: rgba(253, 246, 236, 0.1);
}

.zweispalt {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .zweispalt {
    grid-template-columns: 1fr 22rem;
    gap: 3rem;
    align-items: start;
  }
}

.schritte {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}
.schritte li {
  position: relative;
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
}
.schritte li:last-child {
  padding-bottom: 0;
}
.schritte li:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 3rem;
  bottom: 0.25rem;
  left: 1.35rem;
  width: 1px;
  background: var(--rahmen);
}
.schritte__nr {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border: 2px solid var(--tinte);
  border-radius: 999px;
  background: var(--papier);
  font-family: var(--mono);
  font-size: 0.8rem;
}

/* Akkordeon ohne JavaScript */
.frage {
  border-bottom: 1px solid var(--rahmen);
}
.frage > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 2rem 1.15rem 0;
  position: relative;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
  min-height: 3rem;
}
.frage > summary::-webkit-details-marker {
  display: none;
}
.frage > summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  top: 1rem;
  font-family: var(--mono);
  font-size: 1.2rem;
  color: var(--gedaempft);
}
.frage[open] > summary::after {
  content: "–";
}
.frage__text {
  padding-bottom: 1.25rem;
  color: var(--gedaempft);
  line-height: 1.65;
  max-width: 68ch;
}

.karte-liste {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}

/* Bei 320 px ragten Logo plus drei Rundknöpfe 19 px über den Rand hinaus.
   Facebook weicht auf schmalen Geräten ins Mobilmenü aus; Telefon und
   Warenkorb bleiben, die sind für das Geschäft die wichtigeren. */
@media (max-width: 420px) {
  .kopf__aktionen .rundknopf--facebook {
    display: none;
  }
  .marke__wort {
    font-size: 0.95rem;
  }
  .kopf__reihe {
    gap: 0.5rem;
  }
}
