/* =========================================================
   Anno Immenga Onepager – bereinigte CSS-Version
   Fokus: Desktop erhalten, Mobile sauber machen, Media Queries bündeln
   ========================================================= */

/* =========================================================
   01 · Design Tokens / Reset
   ========================================================= */
:root {
  --ink: #080013;
  --ink-2: #160026;
  --purple: #2b053f;
  --purple-2: #4b0d53;
  --berry: #8a174e;
  --pink: #e72f61;
  --pink-2: #ff4b72;
  --white: #ffffff;
  --muted: #f6d8e6;
  --line: rgba(255, 255, 255, .14);
  --glass: rgba(255, 255, 255, .09);
  --shadow: 0 28px 80px rgba(6, 0, 16, .42);
  --radius: 30px;
  --max: 1180px;
  --header-h: 68px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.25rem);
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 77% 12%, rgba(255, 73, 112, .65), transparent 34rem),
    radial-gradient(circle at 18% 72%, rgba(231, 47, 97, .35), transparent 32rem),
    linear-gradient(145deg, #070314 0%, #170022 33%, #41094a 63%, #cc174d 100%);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
p { margin: .95rem 0 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: .5rem;
  z-index: 100;
  padding: .75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #160026;
}
.skip-link:focus { left: .5rem; }

/* =========================================================
   02 · Header / Navigation
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem clamp(1rem, 3vw, 3rem);
  background: rgba(8, 0, 19, .84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-weight: 1000;
  letter-spacing: .055em;
  font-size: clamp(1rem, 2.1vw, 1.6rem);
  line-height: 1;
  text-transform: uppercase;
}
.brand-accent { color: var(--pink); }

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.05rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  font-size: .94rem;
  font-weight: 850;
  opacity: .9;
  transition: .2s;
}
.primary-nav a:hover,
.primary-nav a:focus-visible {
  opacity: 1;
  color: var(--pink-2);
}
.nav-cta {
  background: var(--pink);
  padding: .65rem 1rem;
  border-radius: 999px;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(231, 47, 97, .3);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: .65rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border-radius: 999px;
  padding: .58rem .82rem;
  font-weight: 900;
  cursor: pointer;
}
.nav-lines {
  display: grid;
  gap: 4px;
}
.nav-lines span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}
.nav-toggle strong { font-size: .9rem; }

/* =========================================================
   03 · Globale Komponenten
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: .75s ease opacity, .75s ease transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  font-weight: 950;
  transition: .18s ease;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .26);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--pink); color: #fff; }
.btn-ghost,
.btn-secondary {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
}

.section-pad {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 7vw, 7.2rem) 0;
}
.glass-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.kicker,
.section-label {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .78rem;
  line-height: 1.2;
}

/* =========================================================
   04 · Hero
   ========================================================= */
.hero-stage {
  padding: clamp(1rem, 3vw, 2.3rem) clamp(1rem, 3vw, 2rem) clamp(3rem, 6vw, 5rem);
}
.hero {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  min-height: min(900px, calc(100svh - 105px));
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: clamp(2rem, 5vw, 4.2rem);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #170022;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(7, 0, 16, .88) 0%, rgba(7, 0, 16, .56) 32%, rgba(7, 0, 16, .12) 68%, rgba(7, 0, 16, .32) 100%);
}
.hero-content {
  max-width: 680px;
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(8, 0, 19, .64), rgba(8, 0, 19, .18));
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(5px);
}
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--muted);
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 950;
}
.hero h1 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  line-height: .95;
  letter-spacing: -.045em;
  font-size: clamp(3.4rem, 7.3vw, 7.1rem);
  font-weight: 900;
  text-shadow: 0 10px 40px rgba(0, 0, 0, .4);
}
.hero h1 span,
.claim { color: var(--pink-2); }
.claim {
  font-size: clamp(1.3rem, 2.7vw, 2.1rem);
  font-weight: 950;
  margin-top: 1rem;
}
.hero-lead {
  max-width: 38rem;
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.5rem;
}

/* =========================================================
   05 · Statement
   ========================================================= */
.statement {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.2rem, 4vw, 4rem) 0;
}
.statement-inner {
  width: 100%;
  background: #ffffff;
  color: var(--ink-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: clamp(2rem, 4vw, 3.3rem) clamp(1.5rem, 5vw, 4rem);
}
.statement-inner p {
  margin: 0 auto;
  max-width: 1040px;
  font-size: clamp(2rem, 3.1vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -.035em;
  font-weight: 900;
  text-transform: uppercase;
}
.statement-inner strong {
  display: block;
  margin-top: 1.15rem;
  color: var(--pink);
  font-size: .9rem;
  font-weight: 950;
}

/* =========================================================
   06 · Wer ich bin
   ========================================================= */
.about .section-label,
.about .kicker {
  color: #ffe0eb;
  margin: 0 0 .8rem;
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(290px, .8fr);
  grid-template-areas:
    "lead side"
    "card1 side"
    "card2 card3"
    "card4 card4";
  gap: 1.05rem;
  align-items: start;
}
.about-lead {
  grid-area: lead;
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-top: 4px solid var(--pink);
}
.about-lead h1 {
  margin: .1rem 0 1.15rem;
  color: #fff;
  font-size: clamp(2.7rem, 5.4vw, 5.7rem);
  font-weight: 850;
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.about-lead p:last-child {
  color: #fff;
  margin-bottom: 0;
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  font-weight: 520;
}
.about-side {
  grid-area: side;
  position: sticky;
  top: 98px;
  display: grid;
  gap: 1rem;
}
.fact-panel {
  min-height: 190px;
  border-radius: var(--radius);
  padding: 1.6rem;
  background: linear-gradient(160deg, rgba(239, 53, 102, .28), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fact-panel strong {
  color: #fff;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: .85;
  letter-spacing: -.06em;
}
.fact-panel span {
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
}
.fact-panel-politics strong {
  color: var(--pink);
}
.about-portrait {
  width: 100%;
  max-height: 610px;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .13);
  background: #13001d;
}
.about-card {
  border-radius: 24px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
}
.about-card:nth-of-type(2) { grid-area: card1; }
.about-card:nth-of-type(3) { grid-area: card2; }
.about-card:nth-of-type(4) { grid-area: card3; }
.about-card:nth-of-type(5) { grid-area: card4; }
.about-card h2 {
  margin: 0 0 .85rem;
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  line-height: 1.06;
  text-transform: uppercase;
  letter-spacing: -.035em;
  font-weight: 850;
}
.about-card p { margin: .8rem 0 0; color: #fff; }
.about-card p:first-of-type { margin-top: 0; }

/* =========================================================
   07 · Wofür ich stehe
   ========================================================= */
.topics > .section-label {
  display: block;
  margin: 0 0 2.1rem;
  color: var(--pink);
  text-align: left;
}
.topics .section-heading { display: none; }
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.topic-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 1.45rem 1.35rem 1.55rem;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.topic-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 8%, rgba(239, 53, 102, .25), transparent 18rem);
  pointer-events: none;
}
.topic-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.15rem;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-weight: 900;
}
.topic-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.topic-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.62;
}
.topic-card-wide {
  grid-column: span 3;
  min-height: auto;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.2rem;
  align-items: start;
}
.topic-card-wide .topic-number { grid-row: span 2; }
.topic-card-wide p { max-width: 900px; }

/* =========================================================
   08 · Politik
   ========================================================= */
.politics-text-card {
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(2rem, 4vw, 3.2rem);
  background:
    radial-gradient(circle at 85% 20%, rgba(239, 53, 102, .22), transparent 26rem),
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .045));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.politics-text-card .kicker {
  margin: 0 0 .9rem;
  color: #ffe0eb;
}
.politics-text-card h2 {
  max-width: 780px;
  margin: .2rem 0 1.4rem;
  color: #fff;
  font-size: clamp(2.8rem, 5.2vw, 5.3rem);
  font-weight: 850;
  line-height: .96;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.politics-text-card p {
  max-width: 760px;
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.62;
}
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.4rem;
}
.check-grid div {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  min-height: 78px;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(9, 0, 18, .62);
  border: 1px solid rgba(255, 255, 255, .11);
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}
.check-grid span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 99px;
  background: var(--pink);
  color: #fff;
  font-size: .85rem;
  font-weight: 900;
}
.politics-image-card {
  margin-top: clamp(1.2rem, 2.5vw, 2rem);
  overflow: hidden;
  border-radius: 34px;
  background: rgba(9, 0, 18, .45);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.politics-image-card img { width: 100%; height: auto; }
.politics-image-wrap { display: none; }
.politics-card-bg { background-image: none; }

/* =========================================================
   09 · Vor Ort
   ========================================================= */
.places-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1rem, 2.5vw, 1.6rem);
  align-items: center;
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(1rem, 2vw, 1.4rem);
  background:
    radial-gradient(circle at 85% 18%, rgba(239, 53, 102, .24), transparent 26rem),
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}
.places-image {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(9, 0, 18, .45);
  min-height: 360px;
}
.places-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center center;
}
.places-copy { padding: clamp(1rem, 2.8vw, 2.2rem); }
.places-copy .kicker {
  margin: 0 0 .8rem;
  color: #ffe0eb;
}
.places-copy h2 {
  margin: .2rem 0 1.35rem;
  color: #fff;
  font-size: clamp(3rem, 5.8vw, 6rem);
  font-weight: 850;
  line-height: .94;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
.place-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  max-width: 620px;
}
.place-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .58rem .86rem;
  border-radius: 999px;
  color: #fff;
  font-size: .92rem;
  font-weight: 850;
  line-height: 1;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

/* =========================================================
   10 · Abschluss / Kontakt
   ========================================================= */
.closing-card {
  overflow: hidden;
  border-radius: 34px;
  padding: clamp(2rem, 4vw, 3.4rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(239, 53, 102, .24), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  text-align: center;
}
.closing-card .kicker {
  margin: 0 0 .9rem;
  color: #ffe0eb;
}
.closing-card h2 {
  max-width: 820px;
  margin: 0 auto 1.4rem;
  color: #fff;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.closing-copy {
  max-width: 820px;
  margin: 0 auto;
}
.closing-copy p {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.62;
}
.closing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.7rem;
}
.closing-actions .btn { text-decoration: none; }

/* =========================================================
   11 · Responsive gesammelt
   ========================================================= */
@media (max-width: 1100px) {
  .about-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "lead"
      "side"
      "card1"
      "card2"
      "card3"
      "card4";
  }
  .about-side {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .about-portrait { max-height: 460px; }
  .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .topic-card-wide { grid-column: span 2; }
  .check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1050px) {
  .places-card { grid-template-columns: 1fr; }
  .places-image { min-height: auto; }
  .places-image img {
    height: auto;
    min-height: 0;
    object-fit: contain;
  }
  .places-copy { padding-top: 1rem; }
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .primary-nav {
    position: absolute;
    right: 1rem;
    top: calc(100% + .65rem);
    display: none;
    width: min(22rem, calc(100vw - 2rem));
    padding: 1rem;
    background: rgba(9, 0, 18, .98);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: block; }
  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: .85rem;
  }
  .primary-nav a { display: block; width: 100%; }
  .nav-cta { display: inline-flex !important; }
  .hero { min-height: 78svh; }
  .hero-shade {
    background: linear-gradient(180deg, rgba(7, 0, 16, .42) 0%, rgba(7, 0, 16, .24) 38%, rgba(7, 0, 16, .82) 100%);
  }
  .hero-content { align-self: end; }
}

@media (max-width: 820px) {
  .section-pad,
  .statement {
    width: min(var(--max), calc(100% - 2rem));
  }
  .about-side { grid-template-columns: 1fr; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card-wide {
    grid-column: auto;
    display: block;
  }
  .topic-card { min-height: 0; }
  .check-grid { grid-template-columns: 1fr; }
  .politics-text-card,
  .politics-image-card,
  .places-card,
  .closing-card { border-radius: 24px; }
  .politics-text-card { padding: 1.4rem; }
  .politics-text-card h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    letter-spacing: -.045em;
  }
  .places-card { padding: .9rem; }
  .places-image { border-radius: 18px; }
  .places-copy { padding: 1.2rem .4rem .4rem; }
  .places-copy h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
    letter-spacing: -.045em;
  }
  .place-tags { gap: .5rem; }
  .place-tags span {
    font-size: .86rem;
    padding: .52rem .72rem;
  }
  .closing-card { padding: 1.5rem; }
  .closing-copy p,
  .politics-text-card p { font-size: 1rem; }
  .closing-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .closing-actions .btn { width: 100%; }
}

@media (max-width: 720px) {
  :root { --header-h: 78px; }
  .site-header { padding: .8rem 1rem; }
  .brand { font-size: 1rem; }

  /* Mobile Hero: kein horizontaler Überlauf mehr.
     Das Kampagnenmotiv wird vollständig sichtbar, die Textbox liegt darunter.
     Dadurch werden Kopf/Person und Inhalt nicht mehr ungünstig überdeckt. */
  .hero-stage { padding: .85rem .85rem 2.6rem; }
  .hero {
    display: block;
    min-height: auto;
    padding: 0;
    border-radius: 24px;
    background: rgba(8, 0, 19, .35);
  }
  .hero-bg {
    position: relative;
    inset: auto;
    z-index: 0;
    display: block;
    background: #160026;
  }
  .hero-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
  .hero-shade { display: none; }
  .hero-content {
    position: relative;
    z-index: 1;
    width: calc(100% - 1.2rem);
    max-width: none;
    margin: .6rem auto .65rem;
    padding: 1.05rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(8, 0, 19, .84), rgba(32, 0, 42, .70));
  }
  .hero-content .eyebrow {
    font-size: .62rem;
    letter-spacing: .11em;
    margin-bottom: .55rem;
  }
  .hero h1 {
    font-size: clamp(2.45rem, 12.2vw, 3.25rem);
    line-height: .98;
    letter-spacing: -.04em;
    max-width: 100%;
    overflow-wrap: normal;
  }
  .claim {
    font-size: 1.18rem;
    margin-top: .7rem;
  }
  .hero-lead {
    font-size: .98rem;
    line-height: 1.52;
  }
  .hero-actions {
    flex-direction: column;
    gap: .65rem;
    margin-top: 1.1rem;
  }
  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .statement { padding: 2.4rem 0; }
  .statement-inner { border-radius: 24px; padding: 1.6rem 1.2rem; }
  .statement-inner p {
    font-size: clamp(1.28rem, 7.2vw, 1.95rem);
    line-height: 1.22;
  }
}

@media (max-width: 520px) {
  .section-pad,
  .statement { width: min(var(--max), calc(100% - 1.4rem)); }
  .hero-stage { padding-left: .6rem; padding-right: .6rem; }
  .hero { border-radius: 20px; }
  .hero-content { width: calc(100% - .9rem); padding: .95rem; border-radius: 18px; }
  .hero h1 { font-size: clamp(2.15rem, 11.2vw, 2.85rem); }
  .hero-lead { font-size: .95rem; }

  .about-lead,
  .fact-panel { border-radius: 24px; }
  .about-lead h1 { font-size: 2.4rem; }
  .fact-panel { min-height: 150px; }
  .fact-panel strong { font-size: 4rem; }
  .topic-card h3 { font-size: 1.55rem; }
  .closing-card h2 {
    font-size: clamp(2rem, 11vw, 3rem);
    letter-spacing: -.035em;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* =========================================================
   12 · Finaler Fix Wer-ich-bin / About-Side
   Ziel:
   - keine widersprüchlichen alten About-Media-Queries
   - Desktop bleibt wie gehabt rechts als Side-Spalte
   - breite Zwischenauflösung: 25+ / 20+ / Bild als sauberer Dreierblock
   - schmale Auflösung: alles untereinander, gleiche Breite
   ========================================================= */

/* 25+ und 20+ optisch klar unterscheiden */
.fact-panel-politics {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 75, 114, .36), transparent 11rem),
    linear-gradient(145deg, rgba(155, 10, 80, .78), rgba(62, 0, 48, .78)) !important;
  border-color: rgba(255, 75, 114, .32) !important;
}

.fact-panel-politics strong {
  color: var(--pink-2) !important;
}

/* Desktop bis schmale Desktopbreite: Inhalt wird einspaltig,
   aber der Sideblock bleibt als 3er-Reihe geschlossen. */
@media (min-width: 981px) and (max-width: 1100px) {
  #wer-ich-bin .about-layout {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "lead"
      "side"
      "card1"
      "card2"
      "card3"
      "card4" !important;
  }

  #wer-ich-bin .about-side {
    position: static !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: none !important;
    align-items: stretch !important;
  }

  #wer-ich-bin .about-side .fact-panel,
  #wer-ich-bin .about-side .about-portrait {
    width: 100% !important;
    min-width: 0 !important;
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    margin: 0 !important;
    align-self: stretch !important;
  }

  #wer-ich-bin .about-side .about-portrait {
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: var(--radius) !important;
  }

  #wer-ich-bin .about-side .fact-panel strong {
    font-size: clamp(3.4rem, 7vw, 5.2rem) !important;
  }

  #wer-ich-bin .about-side .fact-panel span {
    font-size: 1rem !important;
  }
}

/* Ab schmaler Tablet-/Mobile-Breite: keine 2er-Spalte mehr.
   Dadurch entsteht nicht mehr dieses komische 25/20 nebeneinander + Bild darunter. */
@media (max-width: 980px) {
  #wer-ich-bin .about-layout {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "lead"
      "side"
      "card1"
      "card2"
      "card3"
      "card4" !important;
  }

  #wer-ich-bin .about-side {
    position: static !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: none !important;
  }

  #wer-ich-bin .about-side .fact-panel,
  #wer-ich-bin .about-side .about-portrait,
  #wer-ich-bin .about-side img.about-portrait {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
  }

  #wer-ich-bin .about-side .fact-panel {
    min-height: 150px !important;
  }

  #wer-ich-bin .about-side .about-portrait,
  #wer-ich-bin .about-side img.about-portrait {
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
    object-position: center top !important;
    border-radius: 26px !important;
  }
}

/* Sehr schmale Geräte: Zahlenkarten etwas kompakter */
@media (max-width: 520px) {
  #wer-ich-bin .about-side .fact-panel {
    min-height: 138px !important;
    padding: 1.25rem !important;
  }

  #wer-ich-bin .about-side .fact-panel strong {
    font-size: clamp(3.7rem, 16vw, 4.8rem) !important;
  }

  #wer-ich-bin .about-side .fact-panel span {
    font-size: 1rem !important;
    line-height: 1.15 !important;
  }
}

/* =========================================================
   LEGAL FOOTER + IMPRESSUM / DATENSCHUTZ OVERLAY
   ========================================================= */

.legal-footer {
  background: rgba(5, 0, 14, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 1.2rem clamp(1rem, 4vw, 3rem);
}

.legal-footer-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: grid;
  gap: 0.2rem;
  font-size: 0.9rem;
}

.footer-brand strong {
  color: var(--white);
  font-weight: 900;
}

.footer-brand span,
.footer-meta {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
  font-size: 0.86rem;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--pink-2);
}

.footer-meta {
  text-align: right;
}

/* Overlay-Grundlage */
.legal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.legal-overlay:target {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 75, 114, 0.35), transparent 34rem),
    rgba(5, 0, 14, 0.78);
  backdrop-filter: blur(10px);
}

.legal-panel {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(82vh, 820px);
  overflow: auto;
  border-radius: 28px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    rgba(22, 0, 38, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  color: var(--white);
}

.legal-panel-wide {
  width: min(900px, 100%);
}

.legal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: -0.4rem -0.4rem 0.5rem 1rem;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  text-decoration: none;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(231, 47, 97, 0.35);
}

.legal-panel h2 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.legal-copy {
  display: grid;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-copy h3 {
  margin: 1rem 0 0;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.2;
}

.legal-copy p {
  margin: 0;
}

.legal-copy a {
  color: var(--pink-2);
  font-weight: 800;
  text-decoration: none;
}

.legal-copy a:hover,
.legal-copy a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .legal-footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-meta {
    text-align: center;
  }

  .footer-links {
    order: 3;
  }

  .legal-panel {
    max-height: 86vh;
    border-radius: 22px;
  }
}

@media (max-width: 520px) {
  .footer-links {
    gap: 0.65rem 0.85rem;
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  .legal-overlay {
    padding: 0.7rem;
  }

  .legal-panel {
    padding: 1.25rem;
  }

  .legal-panel h2 {
    font-size: 2rem;
  }
}

html.legal-is-open,
html.legal-is-open body {
  overflow: hidden;
}

/* Lokale Icons ohne FontAwesome */
.icon-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
}
.icon-link img {
  width: 1.35rem;
  height: 1.35rem;
  display: block;
  flex: 0 0 auto;
  border-radius: .35rem;
}
.footer-links .icon-link { font-size: .86rem; }
@media (max-width: 520px) {
  .icon-link img { width: 1.25rem; height: 1.25rem; }
}

/* iPad / Tablet quer: Hero-Textkasten darf Anno nicht überdecken */
@media (orientation: landscape) and (hover: none) and (pointer: coarse) {
  .hero-stage .hero-content,
  .hero-stage .hero-card,
  .hero-stage .hero-copy {
    max-width: min(620px, 46vw) !important;
    margin-left: clamp(1rem, 4vw, 3rem) !important;
    margin-right: auto !important;
    transform: none !important;
  }

  .hero-stage {
    align-items: center !important;
  }
}

/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form {
  width: min(760px, 100%);
  margin: clamp(1.6rem, 3vw, 2.2rem) auto 0;
  display: grid;
  gap: 1rem;
  text-align: left;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-field {
  display: grid;
  gap: .45rem;
}

.contact-field label {
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.86);
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: .95rem 1rem;
  color: #fff;
  background: rgba(8,0,19,.36);
  outline: none;
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.contact-field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(255,75,114,.75);
  box-shadow: 0 0 0 4px rgba(255,75,114,.16);
}

.contact-privacy {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .86rem;
  line-height: 1.45;
  color: rgba(255,255,255,.84);
}

.contact-privacy input {
  margin-top: .22rem;
  accent-color: var(--pink);
}

.contact-submit-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .35rem;
}

.contact-form-status {
  min-height: 1.3em;
  margin: 0;
  font-weight: 800;
  color: rgba(255,255,255,.86);
}

.contact-form-status.is-success {
  color: #ffffff;
}

.contact-form-status.is-error {
  color: #ffd0dc;
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 720px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    margin-top: 1.4rem;
  }

  .contact-submit-row {
    align-items: stretch;
  }

  .contact-submit-row .btn {
    width: 100%;
  }

  .contact-form-status {
    width: 100%;
    text-align: center;
  }
}