/* ==========================================================================
   Travel Dogs – Hund und Wandern
   Statische Website · Stylesheet
   ========================================================================== */

:root {
  /* Farben */
  --tiefwald: #16241c;
  --wald: #2c4634;
  --farn: #7a9a6b;
  --nebel: #eff1ec;
  --papier: #ffffff;
  --granit: #6b7169;
  --tinte: #17211a;
  --text: #333b34;
  --amber: #e09533;
  --amber-hell: #ffba5a;
  --amber-dunkel: #b06d17;
  --linie: rgba(22, 36, 28, 0.12);

  /* Signalfarben der Schwierigkeitsskala */
  --sonne: #ffc000;
  --wiese: #00af50;
  --see: #0071c1;
  --enzian: #7030a0;

  /* Warme Flächen */
  --creme: #fdf5e6;
  --hain: #eaf3e5;
  --himmel: #e8f1f7;

  /* Typografie */
  --display: "Archivo", "Segoe UI Semibold", "Trebuchet MS", "Helvetica Neue", Arial, sans-serif;
  --body: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Maße */
  --breite: 1180px;
  --breite-schmal: 780px;
  --radius: 4px;
  --header-h: 96px;
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--creme);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--wald); text-decoration: none; }
a:hover { color: var(--amber); }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* --- Typografie ----------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--tinte);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }
h4 { font-size: 1.125rem; letter-spacing: 0; }
p { margin: 0 0 1.2em; }
strong { color: var(--tinte); font-weight: 700; }

.eyebrow {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber-dunkel);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  max-width: 90px;
}
.eyebrow.zentriert { justify-content: center; }
.eyebrow.zentriert::before {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  max-width: 90px;
}

.lead { font-size: 1.2rem; line-height: 1.7; color: var(--granit); }

/* --- Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--breite); margin: 0 auto; padding: 0 24px; }
.wrap-schmal { max-width: var(--breite-schmal); }
.sektion { padding: clamp(64px, 9vw, 120px) 0; }
.sektion--hell { background: var(--papier); }
.sektion--nebel { background: var(--nebel); }
.sektion--creme { background: var(--creme); }
.sektion--hain { background: var(--hain); }
.sektion--himmel { background: var(--himmel); }
.sektion--dunkel { background: var(--tiefwald); color: rgba(255,255,255,0.82); }
.sektion--dunkel h2, .sektion--dunkel h3 { color: #fff; }
.sektion--dunkel .eyebrow { color: var(--amber-hell); }
.sektion--dunkel a { color: var(--amber-hell); }

.zentriert { text-align: center; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--amber { background: var(--amber); color: var(--tiefwald); }
.btn--amber:hover { background: var(--amber-hell); color: var(--tiefwald); }
.btn--outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn--outline:hover { background: #fff; color: var(--tiefwald); border-color: #fff; }
.btn--wald { background: var(--wald); color: #fff; }
.btn--wald:hover { background: var(--tiefwald); color: #fff; }

/* --- Kopfzeile ------------------------------------------------------------ */
.kopf {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--linie);
  transition: box-shadow 0.25s ease;
}
.kopf.ist-gescrollt { box-shadow: 0 6px 24px rgba(22, 36, 28, 0.08); }
.kopf__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}

/* Logo */
.marke { display: flex; align-items: center; }
.marke img {
  height: 68px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}
.marke:hover img { transform: scale(1.03); }
.marke--fuss {
  display: inline-flex;
  background: var(--creme);
  border-radius: var(--radius);
  padding: 14px 20px;
}
.marke--fuss img { height: 86px; }

/* Sprunglink fuer Tastatur und Screenreader */
.skiplink {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--amber);
  color: var(--tiefwald);
  font-family: var(--display);
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 0 0 var(--radius) 0;
}
.skiplink:focus { left: 0; }

/* Navigation */
.nav ul { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav a {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--tinte);
  padding: 6px 0;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover::after, .nav a.aktiv::after { transform: scaleX(1); }
.nav a.extern::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--farn);
  margin-right: 8px;
  vertical-align: 2px;
}

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--tiefwald);
  position: relative;
  transition: background 0.2s;
}
.burger span::before, .burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px; height: 2px;
  background: var(--tiefwald);
  transition: transform 0.25s ease;
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger.offen span { background: transparent; }
.burger.offen span::before { transform: translateY(7px) rotate(45deg); }
.burger.offen span::after { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__bild {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 60% 58%;
  transform: scale(1.03);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(22,36,28,0.78) 0%, rgba(22,36,28,0.52) 40%, rgba(22,36,28,0.08) 70%, rgba(22,36,28,0) 100%),
    linear-gradient(180deg, rgba(22,36,28,0.30) 0%, rgba(22,36,28,0) 30%, rgba(22,36,28,0) 62%, rgba(22,36,28,0.55) 100%);
}
.kante {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 3;
  width: 100%;
  height: clamp(38px, 5vw, 78px);
  display: block;
}
.kante path { fill: var(--creme); }
.kante--hain path { fill: var(--hain); }
.kante--weiss path { fill: var(--papier); }

.hero__inhalt { position: relative; z-index: 2; padding-bottom: clamp(48px, 8vw, 96px); max-width: 720px; }
.hero h1 { color: #fff; margin-bottom: 0.3em; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero__sub {
  font-size: clamp(1.05rem, 1.9vw, 1.35rem);
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  margin-bottom: 2rem;
  max-width: 34ch;
}
.hero .eyebrow { color: var(--amber-hell); }
.hero__aktionen { display: flex; flex-wrap: wrap; gap: 14px; }

/* Kleiner Seitenkopf für Unterseiten */
.seitenkopf {
  position: relative;
  padding: clamp(90px, 12vw, 150px) 0 clamp(56px, 8vw, 90px);
  color: #fff;
  overflow: hidden;
}
.seitenkopf__bild { position: absolute; inset: 0; background-size: cover; background-position: center; }
.seitenkopf::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,36,28,0.75), rgba(22,36,28,0.88));
}
.seitenkopf .wrap { position: relative; z-index: 2; }
.seitenkopf h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
.seitenkopf .eyebrow { color: var(--amber-hell); }
.seitenkopf p { color: rgba(255,255,255,0.88); max-width: 60ch; margin-bottom: 0; }

/* --- Karten (Angebot) ----------------------------------------------------- */
.karten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 52px;
}
.karte {
  --akzent: var(--amber);
  position: relative;
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.karte::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--akzent);
}
.karte:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(22,36,28,0.14); border-color: var(--akzent); }
.karte--sonne { --akzent: var(--sonne); }
.karte--wiese { --akzent: var(--wiese); }
.karte--see   { --akzent: var(--see); }
.karte--enzian{ --akzent: var(--enzian); }
.karte__pfote { width: 42px; height: 42px; color: var(--akzent); margin-bottom: 18px; }
.karte h3 { margin-bottom: 0.45em; }
.karte p { font-size: 1rem; margin-bottom: 0; color: var(--granit); }

/* --- Zwei Spalten --------------------------------------------------------- */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.duo--gedreht .duo__bild { order: -1; }
.duo__bild img { border-radius: var(--radius); width: 100%; }
.duo__bild--karte img { background: transparent; box-shadow: none; }

/* --- Zitatband ------------------------------------------------------------ */
.band {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: clamp(80px, 11vw, 150px) 0;
}
.band__bild { position: absolute; inset: 0; background-size: cover; background-position: center; }
.band::after { content: ""; position: absolute; inset: 0; background: rgba(22,36,28,0.72); }
.band .wrap { position: relative; z-index: 2; }
.band h2 { color: #fff; }
.band__aussagen { list-style: none; margin: 0 0 2rem; padding: 0; max-width: 60ch; }
.band__aussagen li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
}
.band__aussagen li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 16px; height: 2px;
  background: var(--amber-hell);
}

/* --- Signature: Schwierigkeitsskala --------------------------------------- */
.skala {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  align-items: end;
}
.stufe {
  --akzent: var(--amber);
  background: var(--papier);
  border: 1px solid var(--linie);
  border-top: 5px solid var(--akzent);
  border-radius: var(--radius);
  padding: 26px 22px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.stufe:nth-child(1) { margin-bottom: 0; }
.stufe:nth-child(2) { margin-bottom: 18px; }
.stufe:nth-child(3) { margin-bottom: 36px; }
.stufe:nth-child(4) { margin-bottom: 54px; }
.stufe:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(22,36,28,0.12); }
.stufe img { width: 100%; max-width: 150px; margin: 0 auto 14px; }
.stufe--sonne { --akzent: var(--sonne); }
.stufe--wiese { --akzent: var(--wiese); }
.stufe--see   { --akzent: var(--see); }
.stufe--enzian{ --akzent: var(--enzian); }
.stufe__nr {
  position: absolute;
  top: 14px; right: 16px;
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--akzent);
}
.stufe h3 { font-size: 1.15rem; margin-bottom: 0.25em; }
.stufe p { font-size: 0.95rem; color: var(--granit); margin: 0; }
.skala__achse {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--granit);
}
.skala__achse::before,
.skala__achse span:last-child { flex: none; }
.skala__linie {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--sonne), var(--wiese), var(--see), var(--enzian));
}

/* --- Inhaltsblöcke Unterseite --------------------------------------------- */
.block { padding: clamp(56px, 8vw, 100px) 0; border-top: 1px solid var(--linie); }
.block:first-of-type { border-top: none; }

.liste-pfote { list-style: none; margin: 0 0 1.5em; padding: 0; }
.liste-pfote li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 0.75rem;
}
.liste-pfote li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 18px; height: 18px;
  background-color: var(--amber);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='20' cy='18' rx='7' ry='9'/%3E%3Cellipse cx='34' cy='13' rx='7' ry='9.5'/%3E%3Cellipse cx='48' cy='19' rx='6.5' ry='8.5'/%3E%3Cpath d='M34 28c9 0 17 8 17 15 0 6-5 9-10 9-3 0-5-1-7-1s-4 1-7 1c-5 0-10-3-10-9 0-7 8-15 17-15z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cellipse cx='20' cy='18' rx='7' ry='9'/%3E%3Cellipse cx='34' cy='13' rx='7' ry='9.5'/%3E%3Cellipse cx='48' cy='19' rx='6.5' ry='8.5'/%3E%3Cpath d='M34 28c9 0 17 8 17 15 0 6-5 9-10 9-3 0-5-1-7-1s-4 1-7 1c-5 0-10-3-10-9 0-7 8-15 17-15z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Sprungmarken-Übersicht */
.sprungliste {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 36px;
  list-style: none;
  padding: 0;
}
.sprungliste a {
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: var(--papier);
  border: 1px solid var(--linie);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--tinte);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.sprungliste a:hover { border-color: var(--amber); transform: translateX(3px); color: var(--tinte); }
.sprungliste a { --akzent: var(--amber); border-left: 4px solid var(--akzent); }
.sprungliste li:nth-child(1) a { --akzent: var(--sonne); }
.sprungliste li:nth-child(2) a { --akzent: var(--wiese); }
.sprungliste li:nth-child(3) a { --akzent: var(--see); }
.sprungliste li:nth-child(4) a { --akzent: var(--enzian); }
.sprungliste li:nth-child(5) a { --akzent: var(--amber); }
.sprungliste a:hover { border-color: var(--akzent); background: #fff; }
.sprungliste .nr { font-size: 0.78rem; letter-spacing: 0.12em; color: var(--akzent); font-weight: 700; }

/* Info-/Merkkasten */
.kasten {
  --akzent: var(--amber);
  background: var(--papier);
  border-left: 5px solid var(--akzent);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin: 0 0 1.5em;
  box-shadow: 0 10px 30px rgba(22,36,28,0.05);
}
.kasten--wiese { --akzent: var(--wiese); }
.kasten--see { --akzent: var(--see); }
.kasten h3 { margin-bottom: 0.5em; }
.kasten p:last-child, .kasten ul:last-child { margin-bottom: 0; }

.packliste { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }

/* Aufmerksamkeits-Dreier */
.tipps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 28px; margin-top: 44px; }
.tipp { --akzent: var(--wiese); border-top: 4px solid var(--akzent); padding-top: 22px; }
.tipp--see { --akzent: var(--see); }
.tipp--sonne { --akzent: var(--sonne); }
.tipp h3 { color: var(--tinte); }
.tipp h3 { font-size: 1.2rem; }
.tipp p { font-size: 1rem; margin-bottom: 0; }

/* Bildpaar */
.bildpaar { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.bildpaar img { border-radius: var(--radius); width: 100%; height: 100%; object-fit: cover; }

/* --- Rechtstexte ---------------------------------------------------------- */
.rechtstext h2 { font-size: 1.5rem; margin-top: 2.4em; }
.rechtstext h3 { font-size: 1.15rem; margin-top: 1.8em; }
.rechtstext h2:first-child { margin-top: 0; }
.rechtstext ul { padding-left: 1.2em; }
.rechtstext li { margin-bottom: 0.4em; }
.adresse { font-style: normal; line-height: 1.9; }

/* --- Haeufige Fragen ------------------------------------------------------ */
.faq { margin-top: 36px; border-top: 1px solid var(--linie); }
.faq__punkt { border-bottom: 1px solid var(--linie); }
.faq__punkt summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 46px 20px 0;
  position: relative;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--tinte);
  transition: color 0.2s ease;
}
.faq__punkt summary::-webkit-details-marker { display: none; }
.faq__punkt summary:hover { color: var(--amber-dunkel); }
.faq__punkt summary::after {
  content: "";
  position: absolute;
  right: 8px; top: 50%;
  width: 12px; height: 12px;
  border-right: 2px solid var(--amber);
  border-bottom: 2px solid var(--amber);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq__punkt[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__punkt p { margin: 0 0 22px; max-width: 68ch; color: var(--granit); }

/* --- CTA-Abschluss -------------------------------------------------------- */
.abschluss { text-align: center; }
.abschluss p { max-width: 58ch; margin-left: auto; margin-right: auto; }

/* --- Fußzeile ------------------------------------------------------------- */
.fuss { background: var(--tiefwald); color: rgba(255,255,255,0.7); padding: 72px 0 34px; font-size: 0.97rem; }
.fuss a { color: rgba(255,255,255,0.78); }
.fuss a:hover { color: var(--amber-hell); }
.fuss__raster {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.fuss h4 {
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.1em;
}
.fuss ul { list-style: none; margin: 0; padding: 0; }
.fuss li { margin-bottom: 0.6em; }
.fuss .marke__name { color: #fff; }
.fuss .marke__claim { color: var(--amber-hell); }
.fuss__unten {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 26px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.sozial { display: flex; gap: 14px; }
.sozial a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.sozial a:hover { background: var(--amber); border-color: var(--amber); }
.sozial svg { width: 17px; height: 17px; fill: currentColor; }

/* --- Scroll-Reveal -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.sichtbar { opacity: 1; transform: none; }

/* --- Nach-oben-Button ----------------------------------------------------- */
.hoch {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--wald);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, background 0.2s ease;
  z-index: 90;
  border: none; cursor: pointer;
}
.hoch.sichtbar { opacity: 1; pointer-events: auto; }
.hoch:hover { background: var(--amber); color: var(--tiefwald); }

/* --- Responsiv ------------------------------------------------------------ */
@media (max-width: 980px) {
  .duo { grid-template-columns: 1fr; }
  .duo--gedreht .duo__bild { order: 0; }
  .skala { grid-template-columns: 1fr 1fr; }
  .stufe { margin-bottom: 0 !important; }
  .packliste { grid-template-columns: 1fr; }
  .fuss__raster { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  :root { --header-h: 78px; }
  .hero { min-height: min(78vh, 640px); }
  .marke img { height: 54px; }
  .marke--fuss img { height: 72px; }
  .hero__bild { background-position: 72% center; }
  .burger { display: flex; }
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--papier);
    border-bottom: 1px solid var(--linie);
    box-shadow: 0 16px 32px rgba(22,36,28,0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.offen { max-height: 420px; }
  .nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 20px; }
  .nav li { border-bottom: 1px solid var(--linie); }
  .nav li:last-child { border-bottom: none; }
  .nav a { display: block; padding: 16px 0; font-size: 1rem; }
  .nav a::after { display: none; }
  .marke__claim { display: none; }
}

@media (max-width: 620px) {
  .skala { grid-template-columns: 1fr; }
  .bildpaar { grid-template-columns: 1fr; }
  .fuss__raster { grid-template-columns: 1fr; gap: 32px; }
  .hero__aktionen .btn { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* --- Druck ---------------------------------------------------------------- */
@media print {
  .kopf, .fuss, .hoch, .hero__aktionen { display: none; }
  body { background: #fff; color: #000; }
}
