/* ============================================================
   Chicken Road Karton — «Klebeband & Karton»
   Крафтовый коллаж: тёплый картонный фон с рифлёной текстурой,
   белые «бумажные» карточки на скотче, стикеры с лёгким
   поворотом, Fredoka + Nunito, дружелюбный менторский тон.
   ============================================================ */

:root {
  --karton: #E3C89E;
  --karton-dunkel: #C9A878;
  --karton-tiefe: #B58F63;
  --papier: #FFF9EF;
  --tinte: #3B2A18;
  --muted: #7A6248;
  --teal: #2E8F83;
  --teal-weich: rgba(46, 143, 131, .16);
  --sonne: #F2B33D;
  --sonne-weich: rgba(242, 179, 61, .28);
  --warn: #D9534F;
  --warn-weich: rgba(217, 83, 79, .14);
  --kante: rgba(59, 42, 24, .14);
  --schatten: 0 10px 26px rgba(59, 42, 24, .14);
  --schatten-klein: 0 5px 14px rgba(59, 42, 24, .12);
  --radius: 16px;
  --font-display: 'Fredoka';
  --font-body: 'Nunito';
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--tinte);
  background-color: var(--karton);
  background-image:
    repeating-linear-gradient(90deg, rgba(59, 42, 24, .035) 0 3px, transparent 3px 30px),
    linear-gradient(180deg, rgba(255, 249, 239, .25), transparent 30%, rgba(59, 42, 24, .08));
  line-height: 1.65;
  min-height: 100vh;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.18; }

/* ---------- Бумага и скотч ---------- */
.papier {
  background: var(--papier);
  border: 2px solid var(--kante);
  border-radius: var(--radius);
  box-shadow: var(--schatten);
}
.tape { position: relative; }
.tape::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 26px;
  width: 92px;
  height: 26px;
  background: var(--sonne-weich);
  border: 1px dashed rgba(59, 42, 24, .2);
  transform: rotate(-3deg);
  z-index: 3;
  pointer-events: none;
}
.tape--rechts::before { left: auto; right: 26px; transform: rotate(3deg); }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--tinte);
  background: var(--papier);
  border: 2px solid var(--tinte);
  border-radius: 14px;
  box-shadow: 3px 3px 0 var(--tinte);
  padding: 11px 22px;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 var(--tinte); }
.btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--tinte); }
.btn--teal { background: var(--teal); color: #F4FBF9; }
.btn--sonne { background: var(--sonne); color: var(--tinte); }
.btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: 3px 3px 0 var(--tinte); }

/* ---------- Kicker ---------- */
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tinte);
  background: var(--sonne);
  border-radius: 8px;
  padding: 6px 14px;
  transform: rotate(-1deg);
  box-shadow: 2px 2px 0 var(--kante);
  margin-bottom: 16px;
}
.sec-title { font-size: clamp(26px, 3.6vw, 40px); font-weight: 600; margin-bottom: 12px; }
.sec-lead { color: var(--muted); max-width: 660px; font-size: 17.5px; margin-bottom: 30px; }

.section { padding: 62px 0; }
.section--hell { background: rgba(255, 249, 239, .55); border-top: 2px dashed var(--kante); border-bottom: 2px dashed var(--kante); }

/* ---------- Ticker ---------- */
.ticker {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--tinte);
  color: #F6EBDA;
  padding: 9px 0;
  overflow: hidden;
}
.ticker__label {
  flex: none;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sonne);
  padding-left: 22px;
}
.ticker__viewport { overflow: hidden; flex: 1; }
.ticker__track { display: inline-flex; gap: 48px; white-space: nowrap; animation: ticker 42s linear infinite; }
.ticker__track span { font-size: 14px; color: #E7D7BE; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 40; background: var(--papier); border-bottom: 3px solid var(--tinte); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 22px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--tinte); }
.logo__tag { font-size: 26px; }
.logo__name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.1; }
.logo__sub { display: block; font-size: 11.5px; color: var(--muted); }
.nav { display: flex; gap: 4px; flex-wrap: wrap; }
.nav a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  transition: background .18s ease, color .18s ease;
}
.nav a:hover { color: var(--tinte); background: var(--teal-weich); }
.nav a.active { color: #F4FBF9; background: var(--teal); }
.burger {
  display: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  background: var(--sonne);
  color: var(--tinte);
  border: 2px solid var(--tinte);
  border-radius: 12px;
  box-shadow: 2px 2px 0 var(--tinte);
  padding: 9px 16px;
  cursor: pointer;
}

/* Бумажная записка-меню */
.menunote {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 50;
  width: min(420px, calc(100% - 28px));
  background: var(--papier);
  border: 2px solid var(--tinte);
  border-radius: 14px;
  box-shadow: var(--schatten);
  padding: 18px 22px 22px;
  display: none;
  flex-direction: column;
  gap: 2px;
  transform: translateX(-50%) rotate(-1.2deg);
}
.menunote.open { display: flex; }
.menunote::before {
  content: '';
  position: absolute;
  top: -13px;
  left: 50%;
  width: 110px;
  height: 26px;
  background: var(--sonne-weich);
  border: 1px dashed rgba(59, 42, 24, .25);
  transform: translateX(-50%) rotate(2deg);
}
.menunote a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--tinte);
  text-decoration: none;
  padding: 11px 14px;
  border-radius: 10px;
}
.menunote a:hover, .menunote a.active { background: var(--teal-weich); }
.menunote__close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 15px;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--warn);
  color: #FFF7F3;
  border: 2px solid var(--tinte);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.nav-backdrop { position: fixed; inset: 0; z-index: 45; background: rgba(59, 42, 24, .3); display: none; }
.nav-backdrop.open { display: block; }

/* ---------- Hero (редакционная шапка: крупный тип + узкая колонка) ---------- */
.hero { padding: 64px 0 30px; }
.hero__inner { max-width: 860px; }
.hero__title { font-size: clamp(34px, 5.2vw, 58px); font-weight: 600; margin-bottom: 18px; }
.hero__title mark { background: var(--sonne-weich); color: var(--tinte); padding: 0 10px; border-radius: 8px; }
.hero__sub { color: var(--muted); font-size: 18.5px; max-width: 640px; margin-bottom: 26px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.hero__note { font-size: 13.5px; color: var(--muted); }

/* ---------- Ampel-Panel ---------- */
.ampel { padding: 26px 28px; margin-top: 26px; position: relative; }
.ampel__title { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.ampel__hint { font-size: 15px; color: var(--muted); margin-bottom: 18px; }
.ampel__road {
  position: relative;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 7px;
  background: var(--karton-dunkel);
  border: 2px solid var(--kante);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 16px;
}
.streifen {
  height: 86px;
  border-radius: 10px;
  background: var(--papier);
  border: 2px solid var(--kante);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 7px 4px;
}
.streifen__nr { font-family: var(--font-display); font-size: 11px; font-weight: 600; color: var(--muted); }
.streifen__ampel { width: 16px; height: 16px; border-radius: 50%; background: rgba(59, 42, 24, .12); transition: background .3s ease, box-shadow .3s ease; }
.streifen--ok { background: var(--teal-weich); border-color: var(--teal); }
.streifen--ok .streifen__ampel { background: var(--teal); box-shadow: 0 0 0 4px var(--teal-weich); }
.streifen--jetzt { border-color: var(--sonne); }
.streifen--jetzt .streifen__ampel { background: var(--sonne); box-shadow: 0 0 0 4px var(--sonne-weich); }
.streifen--kaputt { background: var(--warn-weich); border-color: var(--warn); }
.streifen--kaputt .streifen__ampel { background: var(--warn); box-shadow: 0 0 0 4px var(--warn-weich); }
.henne {
  position: absolute;
  bottom: 6px;
  left: 5%;
  font-size: 28px;
  transform: translateX(-50%);
  transition: left .5s ease;
  z-index: 2;
}
.ampel__hud { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.ampel__hud div { background: var(--karton); border: 2px solid var(--kante); border-radius: 12px; padding: 8px 12px; text-align: center; }
.ampel__hud b { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; }
.ampel__hud span { font-size: 11.5px; color: var(--muted); }
.ampel__hud .ist-teal { color: var(--teal); }
.ampel__status { font-size: 15.5px; min-height: 24px; margin-bottom: 14px; }
.ampel__status.is-end { color: var(--warn); font-weight: 700; }
.ampel__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.stempel {
  display: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tinte);
  background: var(--sonne);
  border: 2px solid var(--tinte);
  border-radius: 10px;
  padding: 5px 14px;
  margin-left: 8px;
  vertical-align: middle;
  transform: rotate(-2deg);
}
.stempel.show { display: inline-block; animation: klemm .35s ease; }
@keyframes klemm { 0% { transform: rotate(-2deg) scale(.5); opacity: 0; } 100% { transform: rotate(-2deg) scale(1); opacity: 1; } }

/* ---------- Foto-плёнка (3 фото) ---------- */
.fotos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.fotos figure { border-radius: var(--radius); overflow: hidden; background: var(--karton); border: 2px solid var(--kante); box-shadow: var(--schatten-klein); }
.fotos img { width: 100%; height: 190px; object-fit: cover; display: block; }
.fotos figcaption { font-size: 13px; color: var(--muted); padding: 9px 14px; background: var(--papier); border-top: 2px dashed var(--kante); }

/* ---------- Стикеры-счётчики ---------- */
.zaehler { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.zaehler > div {
  background: var(--papier);
  border: 2px solid var(--kante);
  border-radius: 50% 50% 46% 54% / 48% 44% 56% 52%;
  box-shadow: var(--schatten-klein);
  padding: 30px 18px;
  text-align: center;
}
.zaehler > div:nth-child(odd) { transform: rotate(-1.4deg); }
.zaehler > div:nth-child(even) { transform: rotate(1.2deg); }
.zaehler b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--teal);
}
.zaehler span { font-size: 13.5px; color: var(--muted); }

/* ---------- Grundlagen: сетка с разными span ---------- */
.was { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.karte { padding: 24px 26px; }
.karte__nr {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #FFF;
  background: var(--teal);
  border-radius: 8px;
  padding: 4px 12px;
  transform: rotate(-1deg);
  margin-bottom: 12px;
}
.karte h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
.karte p { color: var(--muted); font-size: 15.5px; }
.karte--breit { grid-column: span 2; }
.karte--sonne .karte__nr { background: var(--sonne); color: var(--tinte); }
.hinweis {
  padding: 22px 24px;
  background: var(--teal-weich);
  border: 2px dashed var(--teal);
  border-radius: var(--radius);
}
.hinweis h3 { font-size: 17px; font-weight: 600; margin-bottom: 6px; }
.hinweis p { font-size: 15px; }

/* ---------- Фото в секциях ---------- */
.sekt-foto { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: center; margin-top: 26px; }
.sekt-foto figure { border-radius: var(--radius); overflow: hidden; background: var(--karton); border: 2px solid var(--kante); box-shadow: var(--schatten-klein); }
.sekt-foto img { width: 100%; height: 260px; object-fit: cover; display: block; }
.sekt-foto figcaption { font-size: 13px; color: var(--muted); padding: 9px 16px; background: var(--papier); border-top: 2px dashed var(--kante); }
.sekt-foto p { color: var(--muted); font-size: 16px; }

/* ---------- Таблица Stufen ---------- */
.plan { padding: 8px 6px; overflow-x: auto; }
.plan table { width: 100%; border-collapse: collapse; font-size: 15.5px; min-width: 640px; }
.plan th {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tinte);
  text-align: left;
  padding: 14px 16px;
  border-bottom: 3px solid var(--tinte);
}
.plan td { padding: 14px 16px; border-bottom: 2px dashed var(--kante); vertical-align: top; }
.plan tr:last-child td { border-bottom: none; }
.plan tr:hover td { background: var(--sonne-weich); }
.stufe { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; }
.stufe i { font-style: normal; width: 27px; height: 27px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; font-size: 12.5px; color: #F4FBF9; background: var(--teal); border: 2px solid var(--tinte); }
.stufe-3 i { background: var(--sonne); color: var(--tinte); }
.stufe-4 i { background: var(--warn); }
.plan-note { font-size: 14px; color: var(--muted); max-width: 760px; margin: 16px auto 0; text-align: center; }

/* ---------- Tipp-Würfel ---------- */
.wuerfel { max-width: 640px; margin: 0 auto; padding: 28px 30px; text-align: center; position: relative; }
.wuerfel__hint { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.wuerfel__anteil { font-size: 44px; margin-bottom: 12px; transition: transform .3s ease; }
.wuerfel__anteil.wackelt { animation: wackeln .5s ease; }
@keyframes wackeln { 0% { transform: rotate(0); } 25% { transform: rotate(-14deg); } 50% { transform: rotate(12deg); } 75% { transform: rotate(-7deg); } 100% { transform: rotate(0); } }
.wuerfel__ergebnis {
  min-height: 84px;
  background: var(--teal-weich);
  border: 2px dashed var(--teal);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Ratschläge ---------- */
.tips { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.tipp { padding: 24px 26px; }
.tipp:nth-child(odd) { transform: rotate(-.5deg); }
.tipp:nth-child(even) { transform: rotate(.6deg); }
.tipp__tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--tinte);
  background: var(--sonne);
  border: 2px solid var(--tinte);
  border-radius: 8px;
  padding: 4px 12px;
  transform: rotate(-1deg);
  margin-bottom: 12px;
}
.tipp h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.tipp p { color: var(--muted); font-size: 15.5px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq-item { padding: 6px 22px; margin-bottom: 12px; }
.faq-item__q {
  width: 100%;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--tinte);
  background: transparent;
  border: none;
  padding: 14px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item__q::after { content: '+'; font-size: 22px; color: var(--teal); transition: transform .2s ease; flex: none; }
.faq-item.open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item__a p { color: var(--muted); font-size: 15.5px; padding-bottom: 16px; }

/* ---------- CTA ---------- */
.cta { padding: 54px 40px; text-align: center; position: relative; border-radius: var(--radius); border: 2px solid var(--tinte); background: var(--papier); box-shadow: 6px 6px 0 var(--kante); }
.cta h2 { font-size: clamp(26px, 3.4vw, 38px); font-weight: 600; margin-bottom: 12px; }
.cta p { color: var(--muted); max-width: 560px; margin: 0 auto 24px; font-size: 17px; }

/* ---------- Trust ---------- */
.plaketten { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.plakette { padding: 24px 22px; }
.plakette:nth-child(odd) { transform: rotate(-.8deg); }
.plakette:nth-child(even) { transform: rotate(.8deg); }
.plakette__ico { font-size: 30px; display: block; margin-bottom: 10px; }
.plakette h3 { font-size: 16.5px; font-weight: 600; margin-bottom: 6px; }
.plakette p { color: var(--muted); font-size: 14.5px; }

/* ---------- Footer ---------- */
.footer { border-top: 3px solid var(--tinte); background: var(--karton-dunkel); padding: 54px 0 30px; margin-top: 44px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px; margin-bottom: 30px; }
.footer__about p { color: #5C4730; font-size: 14.5px; margin-top: 14px; max-width: 320px; }
.footer h4 { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--tinte); margin-bottom: 14px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 9px; }
.footer ul a { color: #5C4730; text-decoration: none; font-size: 15px; transition: color .18s ease; }
.footer ul a:hover { color: var(--teal); }
.footer__disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #5C4730;
  background: rgba(255, 249, 239, .6);
  border: 2px dashed var(--kante);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
}
.footer__disclaimer .ico { font-size: 20px; flex: none; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: #5C4730; }

/* ---------- Cookie (записка на скотче) ---------- */
.cookie-card {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 520px;
  z-index: 60;
  padding: 20px 24px 18px;
  background: var(--papier);
  border: 2px solid var(--tinte);
  border-radius: 12px;
  box-shadow: var(--schatten);
  transform: rotate(-1deg);
}
.cookie-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  width: 100px;
  height: 26px;
  background: var(--sonne-weich);
  border: 1px dashed rgba(59, 42, 24, .25);
  transform: translateX(-50%) rotate(-2deg);
}
.cookie-card__text { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.cookie-card__btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hidden { display: none !important; }

/* ---------- Unterseiten ---------- */
.page-head { padding: 54px 0 38px; border-bottom: 3px solid var(--tinte); background: var(--papier); }
.page-head h1 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 600; margin-bottom: 12px; max-width: 780px; }
.page-head__lead, .page-head__sub { color: var(--muted); max-width: 660px; font-size: 17.5px; }
.article { max-width: 800px; margin: 0 auto; }
.article h2 { font-size: 24px; font-weight: 600; margin: 34px 0 12px; }
.article h2:first-child { margin-top: 0; }
.article p { margin-bottom: 14px; font-size: 16.5px; color: #4A3826; }
.article ul { margin: 0 0 16px 20px; }
.article ul li { margin-bottom: 9px; font-size: 16.5px; color: #4A3826; }
.artikel-foto { border-radius: var(--radius); overflow: hidden; background: var(--karton); border: 2px solid var(--kante); box-shadow: var(--schatten-klein); margin: 20px 0 26px; }
.artikel-foto img { width: 100%; height: 250px; object-fit: cover; display: block; }
.artikel-foto figcaption { font-size: 13px; color: var(--muted); padding: 9px 16px; background: var(--papier); border-top: 2px dashed var(--kante); }
.article a { color: var(--teal); text-decoration: underline; }
.article table { width: 100%; border-collapse: collapse; font-size: 15px; margin: 18px 0; }
.article table th { font-family: var(--font-display); font-size: 12px; letter-spacing: .06em; text-transform: uppercase; text-align: left; color: var(--tinte); padding: 10px 13px; border-bottom: 3px solid var(--tinte); }
.article table td { padding: 11px 13px; border-bottom: 2px dashed var(--kante); color: #4A3826; }
.lexikon { margin: 18px 0 8px; padding: 22px 26px; }
.lexikon dt, .lexikon > div b { font-family: var(--font-display); font-size: 13.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--teal); margin-top: 14px; }
.lexikon > div { display: block; }
.lexikon > div b { display: block; }
.lexikon > div:first-child b { margin-top: 0; }
.lexikon dt:first-child { margin-top: 0; }
.lexikon dd, .lexikon > div span { font-size: 16px; color: var(--muted); margin-top: 4px; display: block; }
.hinweis-box { padding: 16px 22px; font-size: 15.5px; margin: 22px 0; background: var(--teal-weich); border: 2px dashed var(--teal); border-radius: var(--radius); color: var(--tinte); }
.hinweis-box b { display: block; font-family: var(--font-display); font-size: 13px; letter-spacing: .05em; text-transform: uppercase; color: var(--teal); margin-bottom: 6px; }
.hinweis-box p { margin: 0; }
.pfad { list-style: none; counter-reset: schritt; margin: 10px 0 8px; }
.pfad li { position: relative; padding-left: 60px; margin-bottom: 18px; counter-increment: schritt; }
.pfad li::before {
  content: counter(schritt);
  position: absolute;
  left: 0;
  top: 2px;
  width: 40px;
  height: 40px;
  border-radius: 50% 46% 50% 48% / 48% 52% 46% 54%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--tinte);
  background: var(--sonne);
  border: 2px solid var(--tinte);
  transform: rotate(-3deg);
}
.pfad li strong, .pfad li b { display: block; margin-bottom: 3px; font-size: 18px; }
.pfad li p { font-size: 16px; color: var(--muted); }
.form-card { max-width: 620px; padding: 28px 30px; }
.form-row { margin-bottom: 16px; }
.form-row label { font-family: var(--font-display); font-size: 12.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; display: block; margin-bottom: 6px; color: var(--tinte); }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--tinte);
  background: #FFFCF5;
  border: 2px solid var(--kante);
  border-radius: 10px;
  padding: 11px 14px;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-weich); }
.form-row textarea { min-height: 120px; resize: vertical; }
.form-msg { display: none; margin-top: 14px; font-size: 15px; padding: 10px 16px; border-radius: 10px; background: var(--teal-weich); color: var(--teal); border: 2px solid var(--teal); }
.form-msg.show { display: block; }
.form-msg.err { background: var(--warn-weich); color: var(--warn); border-color: var(--warn); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker__track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav { display: none; }
  .burger { display: inline-block; }
  .was { grid-template-columns: 1fr 1fr; }
  .karte--breit { grid-column: span 2; }
  .zaehler { grid-template-columns: repeat(2, 1fr); }
  .plaketten { grid-template-columns: repeat(2, 1fr); }
  .fotos { grid-template-columns: 1fr 1fr; }
  .fotos figure:last-child { display: none; }
  .sekt-foto { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .section { padding: 44px 0; }
  .hero { padding: 44px 0 26px; }
  .was { grid-template-columns: 1fr; }
  .karte--breit { grid-column: auto; }
  .tips { grid-template-columns: 1fr; }
  .zaehler { grid-template-columns: 1fr 1fr; }
  .plaketten { grid-template-columns: 1fr; }
  .fotos { grid-template-columns: 1fr; }
  .fotos figure:last-child { display: block; }
  .footer__grid { grid-template-columns: 1fr; }
  .ampel__road { gap: 4px; padding: 10px 6px; }
  .streifen { height: 64px; }
  .streifen__ampel { width: 12px; height: 12px; }
  .henne { font-size: 22px; bottom: 8px; }
  .cookie-card { left: 12px; right: 12px; bottom: 12px; transform: none; }
  .cta { padding: 44px 22px; }
}
@media (min-width: 961px) {
  .burger { display: none; }
}