/* =========================================================================
   PROJECT 76  |  Stylesheet
   Farben: Schwarz + Rot, passend zum Logo
   ========================================================================= */

/* ---------- Schriften (lokal, kein CDN) ---------- */
@font-face {
  font-family: "Bebas Neue";
  src: url("../fonts/bebasneue-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

/* ---------- Variablen ---------- */
:root {
  --bg:        #08080a;
  --bg-alt:    #0e0e11;
  --card:      #131317;
  --line:      #26262d;
  --text:      #f2f2f4;
  --muted:     #a3a3ad;
  --accent:    #e10600;
  --accent-2:  #ff2b20;
  --radius:    14px;
  --wrap:      1140px;
  --head:      "Bebas Neue", "Impact", sans-serif;
  --body:      "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Grundlagen ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }
.wrap--narrow { max-width: 820px; }
.center { text-align: center; }
.small { font-size: .88rem; color: var(--muted); }
.accent { color: var(--accent); }

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

::selection { background: var(--accent); color: #fff; }

/* ---------- Ueberschriften ---------- */
.h2 {
  font-family: var(--head);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1;
  letter-spacing: .03em;
  text-transform: uppercase;
  margin: 0 0 .5em;
  text-align: center;
}

.lead {
  color: var(--muted);
  text-align: center;
  max-width: 620px;
  margin: -.4em auto 2.2em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 14px 26px;
  border: 2px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  text-align: center;
}
.btn:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(225, 6, 0, .35);
}
.btn--lg { padding: 17px 40px; font-size: 1.1rem; }
.btn--sm { padding: 9px 18px; font-size: .92rem; }
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: #3a3a44;
}
.btn--ghost:hover {
  background: rgba(225, 6, 0, .12);
  border-color: var(--accent);
  box-shadow: none;
}

/* ---------- Kopfzeile ---------- */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(8, 8, 10, .72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}
.topbar.is-stuck {
  background: rgba(8, 8, 10, .95);
  border-bottom-color: var(--line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-family: var(--head);
  font-size: 1.5rem;
  letter-spacing: .05em;
  white-space: nowrap;
}
.brand:hover { text-decoration: none; }
.brand img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1px solid var(--line); }
.brand b { color: var(--accent); font-weight: 400; }

.topnav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: .95rem;
  font-weight: 500;
}
.topnav a { color: var(--muted); }
.topnav a:hover { color: var(--text); text-decoration: none; }

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 18px;
}
.iconlink {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text);
}
.iconlink svg { width: 20px; height: 20px; fill: currentColor; }
.iconlink:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(8, 8, 10, .82), rgba(8, 8, 10, .92)),
    radial-gradient(circle at 50% 12%, rgba(225, 6, 0, .26), transparent 58%),
    url("../bilder/hero-bg.jpg") center / cover no-repeat,
    var(--bg);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(transparent, var(--bg));
}
.hero__inner { position: relative; }

.hero__logo {
  width: min(340px, 74vw);
  height: auto;
  margin: 0 auto 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .7), 0 0 60px rgba(225, 6, 0, .18);
}

.hero__kicker {
  font-family: var(--head);
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.hero__title {
  font-family: var(--head);
  font-size: clamp(3.4rem, 13vw, 7.5rem);
  line-height: .92;
  letter-spacing: .02em;
  margin: 0 0 20px;
  text-transform: uppercase;
}
.hero__title span { color: var(--accent); }

.hero__facts {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 0;
  margin: 0 0 30px;
}
.hero__facts li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: .93rem;
  color: var(--text);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 46px;
}

/* ---------- Trailer ---------- */
.trailer { margin: 0 auto; max-width: 820px; }
.trailer__box {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.trailer__video { width: 100%; height: 100%; object-fit: cover; display: block; }
.trailer__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 4px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 12px, transparent 12px 24px),
    var(--card);
  padding: 20px;
  text-align: center;
}
.trailer__placeholder svg {
  width: 54px; height: 54px;
  fill: var(--accent);
  opacity: .9;
  margin-bottom: 6px;
}
.trailer__placeholder p { margin: 0; }

/* ---------- Sektionen ---------- */
.section { padding: 86px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Countdown ---------- */
.countdown { text-align: center; }
.cd {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  margin: 10px 0 18px;
}
.cd__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(74px, 19vw, 132px);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 8px 12px;
}
.cd__num {
  font-family: var(--head);
  font-size: clamp(2.4rem, 9vw, 4.2rem);
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.cd__label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.cd__sep {
  font-family: var(--head);
  font-size: clamp(1.8rem, 6vw, 3rem);
  color: #3a3a44;
  padding-top: 18px;
}
.cd__note { color: var(--muted); margin: 0 0 26px; }
.cd.is-over + .cd__note { color: var(--accent); }

/* ---------- Line-up ---------- */
.acts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.act {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: border-color .18s ease, transform .18s ease;
}
.act:hover { border-color: var(--accent); transform: translateY(-3px); }

/* Logo oben in der Act-Karte */
.act__logo {
  height: 130px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.act__logo img {
  max-height: 130px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .6));
  transition: transform .25s ease;
}
/* Das SERIK-Logo ist ein JPG mit schwarzem Hintergrund.
   "lighten" laesst das Schwarz mit der dunklen Karte verschmelzen. */
.act__logo--breit img { mix-blend-mode: lighten; max-height: 96px; }
.act:hover .act__logo img { transform: scale(1.05); }
.act__time {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .82rem;
  margin: 0 0 6px;
}
.act__name {
  font-family: var(--head);
  font-size: 2.4rem;
  letter-spacing: .04em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.act__text { color: var(--muted); margin: 0 0 18px; }
.act__links { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ---------- Instagram Posts ---------- */
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
.post {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 1 / 1;
}
/* "contain" statt "cover", damit von den echten Beitraegen nichts
   abgeschnitten wird. Der Rand faellt dank dunklem Hintergrund nicht auf. */
.post { background: #0b0b0e; }
.post img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform .3s ease, filter .3s ease;
}
.post:hover img { transform: scale(1.05); filter: brightness(1.08); }

/* ---------- Info Karten ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  border-top: 3px solid var(--accent);
}
.card h3 {
  font-family: var(--head);
  font-size: 1.5rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.card p { margin: 0; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; counter-reset: faq; }

.faq__item {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease, background .25s ease;
}
/* roter Balken links, faehrt beim Oeffnen/Hover aus */
.faq__item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .3s ease;
}
.faq__item:hover {
  border-color: #3d3d47;
  transform: translateX(3px);
}
.faq__item:hover::before { transform: scaleY(1); }
.faq__item[open] {
  border-color: var(--accent);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .45);
}
.faq__item[open]::before { transform: scaleY(1); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 62px;
  font-weight: 600;
  position: relative;
  transition: color .2s ease;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }

/* durchnummeriert, das gibt der Liste Rhythmus */
.faq__nr {
  counter-increment: faq;
  position: absolute;
  left: 22px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--head);
  font-size: 1.15rem;
  letter-spacing: .04em;
  color: var(--accent);
  opacity: .75;
  transition: opacity .25s ease, transform .25s ease;
}
.faq__nr::before { content: counter(faq, decimal-leading-zero); }
.faq__item[open] .faq__nr,
.faq__item:hover .faq__nr { opacity: 1; transform: translateY(-50%) scale(1.12); }

/* Pfeil rechts */
.faq__item summary::after {
  content: "";
  position: absolute;
  right: 24px; top: 50%;
  width: 10px; height: 10px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s cubic-bezier(.34, 1.4, .64, 1);
}
.faq__item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq__item summary:hover { color: var(--accent-2); }

/* Inhalt: Hoehe wird per JS animiert (js/main.js) */
.faq__inner { overflow: hidden; }
.faq__body {
  padding: 0 24px 20px 62px;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease .05s, transform .3s ease .05s;
}
.faq__item[open] .faq__body { opacity: 1; transform: none; }
.faq__body p { margin: 0 0 10px; }
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- Anfahrt ---------- */
.anfahrt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}
.anfahrt__text h3 {
  font-family: var(--head);
  font-size: 1.6rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 22px 0 6px;
}
.anfahrt__text h3:first-child { margin-top: 0; }
.anfahrt__text p { margin: 0 0 6px; color: var(--muted); }
.adresse { color: var(--text) !important; }

.anfahrt__map {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  min-height: 360px;
  display: flex;
}
.anfahrt__map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

.cards--anfahrt { margin-top: 22px; }

/* ---------- Kontaktformular ---------- */
.form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}
.req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #0b0b0e;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder,
.field textarea::placeholder { color: #6b6b76; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, .18);
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%),
                    linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
  cursor: pointer;
}
.field select option { background: #0b0b0e; color: var(--text); }

/* Honeypot: fuer Menschen unsichtbar */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 20px;
}
.consent input {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}
.consent label { font-size: .9rem; color: var(--muted); line-height: 1.5; cursor: pointer; }

.btn--block { display: flex; width: 100%; }
.btn:disabled {
  opacity: .45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form__hint { font-size: .85rem; color: var(--muted); margin: 14px 0 0; }
.form__status {
  border-left: 3px solid var(--accent);
  padding-left: 12px;
  color: var(--text);
}

/* ---------- Bestaetigung nach dem Absenden ---------- */
.danke {
  background: var(--card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 40px 28px 34px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
  animation: dankeRein .45s cubic-bezier(.2, .9, .3, 1) both;
}
.danke[hidden] { display: none; }

.danke__haken {
  display: grid;
  place-items: center;
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(225, 6, 0, .14);
  border: 2px solid var(--accent);
  color: var(--accent);
}
.danke__haken svg {
  width: 34px; height: 34px;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  animation: hakenMalen .5s ease .25s forwards;
}

.danke__titel {
  font-family: var(--head);
  font-size: 2.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.danke__text {
  color: var(--muted);
  margin: 0 auto 22px;
  max-width: 460px;
}

@keyframes dankeRein {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
@keyframes hakenMalen { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  .danke { animation: none; }
  .danke__haken svg { animation: none; stroke-dashoffset: 0; }
}

/* ---------- Bleib dabei ---------- */
.connect__links { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Fusszeile ---------- */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 54px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.footer__brand {
  font-family: var(--head);
  font-size: 1.9rem;
  letter-spacing: .05em;
  margin: 0 0 8px;
}
.footer__brand b { color: var(--accent); font-weight: 400; }
.footer__head {
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--muted);
  margin: 0 0 10px;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer__list a { color: var(--text); font-size: .95rem; }
.footer__list a:hover { color: var(--accent); }
.footer__bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  text-align: center;
}

/* ---------- Feste Ticket-Leiste (Handy) ---------- */
.ticketbar {
  display: none;
  position: fixed;
  left: 14px; right: 14px; bottom: 14px;
  z-index: 45;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .55);
}
.ticketbar:hover { text-decoration: none; background: var(--accent-2); }

/* ---------- Animation beim Scrollen ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .anfahrt { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .topnav { display: none; }
  .topbar__actions { margin-left: auto; }
  .section { padding: 52px 0; }
  .hero { padding: 100px 0 56px; }
  .cd { gap: 4px; }
  .cd__sep { display: none; }
  .cd__unit { min-width: 0; flex: 1; padding: 12px 4px 10px; }
  body { padding-bottom: 76px; }

  /* Hero-Buttons: Tickets ueber die volle Breite, Instagram und WhatsApp
     teilen sich die Zeile darunter */
  .hero__cta { gap: 10px; }
  .hero__cta .btn:first-child { flex: 1 0 100%; }
  .hero__cta .btn:not(:first-child) {
    flex: 1 1 calc(50% - 5px);
    padding-left: 10px;
    padding-right: 10px;
    font-size: .98rem;
  }

  /* Ticket-Leiste erst zeigen, wenn der Hero-Button weggescrollt ist,
     sonst liegen auf dem Startbild zwei gleiche Buttons uebereinander */
  .ticketbar {
    display: block;
    opacity: 0;
    transform: translateY(140%);
    pointer-events: none;
    transition: opacity .25s ease, transform .3s ease;
  }
  .ticketbar.is-visible { opacity: 1; transform: none; pointer-events: auto; }

  /* Instagram: drei nebeneinander wie im Insta-Raster */
  .posts { grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 22px; }
  .posts .post { border-radius: 10px; }

  /* Line-up: die DJs untereinander, jeder auf voller Breite */
  .acts { grid-template-columns: 1fr; gap: 14px; }
  .act { padding: 24px 20px; }
  .act__logo { height: 108px; margin-bottom: 14px; }
  .act__logo img { max-height: 108px; }
  .act__logo--breit img { max-height: 74px; }
  .act__text { font-size: .95rem; margin-bottom: 16px; }

  /* Infos und Anfahrt: zwei Karten nebeneinander */
  .cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .card { padding: 16px 14px; }
  .card h3 { font-size: 1.25rem; }
  .card p { font-size: .88rem; }
  .cards--anfahrt { margin-top: 14px; }
  .cards--anfahrt .card:last-child { grid-column: 1 / -1; }
  .cards--anfahrt .card p { font-size: .84rem; line-height: 1.5; }
  .cards--anfahrt .card h3 { font-size: 1.15rem; }

  .anfahrt { gap: 16px; }
  .anfahrt__map, .anfahrt__map iframe { min-height: 240px; }
  .anfahrt__text h3 { font-size: 1.35rem; margin-top: 16px; }
  .anfahrt__text p { font-size: .92rem; }

  .lead { margin-bottom: 1.6em; }
  .form { padding: 20px 16px; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .faq__item summary { padding: 15px 44px 15px 52px; font-size: .96rem; }
  .faq__nr { left: 18px; font-size: 1rem; }
  .faq__body { padding: 0 18px 16px 52px; font-size: .93rem; }
  .footer { padding: 40px 0 24px; }
}

@media (max-width: 430px) {
  /* Karten mit langem Text bekommen wieder die volle Breite */
  #infos .cards { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hero__facts li { font-size: .84rem; padding: 7px 14px; }
  .btn--lg { padding: 15px 26px; font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .act:hover, .post:hover img { transform: none; }
}
