:root {
  --petrol: #0c7284;
  --petrol-dark: #095968;
  --anthracite: #2f2f31;
  --paper: #e9eceb;
  --paper-light: #f4f6f5;
  --white: #ffffff;
  --muted: #7f8584;
  --line: #ccd4d2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--anthracite);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(233, 236, 235, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-grid {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wordmark {
  text-decoration: none;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.07em;
  white-space: nowrap;
}

.wordmark-hash,
.wordmark-mal,
.wordmark-bang {
  color: var(--anthracite);
}

.wordmark-stop {
  color: var(--petrol);
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  text-decoration: none;
  opacity: 0.82;
}

.main-nav a:hover {
  color: var(--petrol);
  opacity: 1;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 80px;
  background:
    linear-gradient(115deg, transparent 0 55%, rgba(12, 114, 132, 0.08) 55% 100%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
}

.eyebrow,
.section-label {
  display: inline-block;
  background: var(--petrol);
  color: var(--white);
  padding: 0.55rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 0.82;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero h1 span {
  display: block;
  color: var(--petrol);
  font-size: clamp(2.4rem, 6vw, 5rem);
  letter-spacing: -0.05em;
  margin-top: 0.25rem;
}

.lead {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  max-width: 680px;
  margin: 0 0 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.15rem;
  border-radius: 2px;
  font-weight: 800;
  text-decoration: none;
  transition: 160ms ease;
}

.button.primary {
  color: var(--white);
  background: var(--petrol);
}

.button.primary:hover {
  background: var(--petrol-dark);
}

.button.secondary {
  color: var(--petrol);
  border: 2px solid var(--petrol);
}

.button.secondary:hover {
  background: var(--petrol);
  color: var(--white);
}

.hero-visual {
  color: var(--petrol);
}

.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-visual path,
.hero-visual line,
.hero-visual rect,
.hero-visual polygon,
.hero-visual circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual .hill {
  stroke-width: 3;
}

.hero-visual .field {
  stroke-width: 2;
}

.hero-visual .thin {
  opacity: 0.65;
}

.hero-visual .solid-slope {
  fill: var(--petrol);
  stroke: none;
  opacity: 0.95;
}

/* Sections */

.section {
  padding: clamp(64px, 9vw, 110px) 0;
}

.section.light {
  background: var(--paper-light);
}

.section.dark {
  background: var(--anthracite);
  color: var(--white);
}

.section-label.inverse {
  background: var(--white);
  color: var(--petrol);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

p {
  font-size: 1.1rem;
  margin: 0 0 1rem;
}

.quote-box {
  background: none;
  color: var(--petrol);
  padding: 1.0rem 1.5rem;
  border: solid 1px var(--petrol);
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  font-style: italic;
}

.quote-box i{
  background: none;
  color: var(--petrol);
  font-size: clamp(6.2rem, 8.3vw, 6.7rem);
  font-weight: 800;
  font-family:"Times New Roman";
  text-align: left!important;
  font-style: italic;
  margin:-10px;
  line-height: 0.15;
}

.quote-box.muted {
  background: #8a8a8a;
}

/* Impact */

.impact {
  background: var(--petrol);
  color: var(--white);
  padding: clamp(72px, 11vw, 140px) 0;
  text-align: center;
}

.impact p {
  margin: 0 auto;
  max-width: 900px;
  font-weight: 900;
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

/* Forderungen */

.demands-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.map-card {
  color: var(--petrol);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.map-card svg {
  width: 100%;
  height: auto;
}

.demands-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  counter-reset: demands;
}

.demands-list li {
  position: relative;
  padding-left: 2.3rem;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 750;
  line-height: 1.3;
}

.demands-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: var(--petrol);
}

/* Mitmachen */

.mitmachen-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.section.dark p {
  color: rgba(255,255,255,0.84);
  font-size: 1.2rem;
}

.section.dark .strong {
  color: var(--white);
  font-weight: 800;
}

.qr-card {
  background: var(--white);
  color: var(--anthracite);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  text-align: center;
}

.qr-placeholder {
  width: min(240px, 70vw);
  height: min(240px, 70vw);
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--petrol);
  background:
    linear-gradient(45deg, #111 25%, transparent 25% 50%, #111 50% 75%, transparent 75%) 0 0 / 22px 22px,
    #fff;
  color: transparent;
}

.qr-steps {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--petrol);
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.qr-steps span {
  border: 1px solid rgba(12, 114, 132, 0.25);
  padding: 0.45rem 0.55rem;
}

.url {
  display: inline-block;
  background: var(--petrol);
  color: var(--white);
  text-decoration: none;
  font-size: clamp(1.4rem, 4vw, 2.5rem);
  font-weight: 900;
  padding: 0.35rem 0.7rem;
}

/* Standorte */

.locations-box {
  background: var(--white);
  border: 2px dashed var(--petrol);
  border-radius: 28px;
  padding: clamp(28px, 5vw, 64px);
}

.locations-box h2 {
  max-width: 760px;
}

.locations-box p {
  max-width: 760px;
  color: #555;
}

.location-placeholder {
  min-height: 280px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(12, 114, 132, 0.08), rgba(12, 114, 132, 0.02)),
    repeating-linear-gradient(0deg, transparent 0 22px, rgba(12, 114, 132, 0.08) 22px 23px),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(12, 114, 132, 0.08) 22px 23px);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  margin-top: 2rem;
  color: var(--petrol);
  text-align: center;
}

.location-placeholder strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.location-placeholder span {
  color: #666;
}

/* Footer */

.footer {
  background: var(--petrol);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
}

.footer p {
  margin: 0;
  font-weight: 800;
}

/* Responsive */

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .hero-grid,
  .content-grid,
  .demands-grid,
  .mitmachen-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .hero-copy {
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .quote-box {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    position: static;
  }

  .header-grid {
    min-height: 64px;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .button {
    width: 100%;
  }

  .impact p {
    font-size: 3rem;
  }

  .qr-steps {
    flex-direction: column;
  }
}

.initiative-card {
  background: var(--white);
  color: var(--anthracite);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 44px);
  text-align: center;
}

.initiative-card h3 {
  margin: 0 0 1.5rem;
  font-size: 1.35rem;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 2rem;
}

.logo-item {
  min-height: 90px;
  border: 1px solid var(--line);
  background: var(--paper-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.logo-item img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
}

.logo-item {
  min-height: 90px;
  border: 1px solid var(--line);
  background: var(--paper-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  transition: 180ms ease;
  text-decoration: none;
}

.logo-item:hover {
  transform: translateY(-3px);
  border-color: var(--petrol);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  background: white;
}

.logo-item img {
  max-width: 100%;
  max-height: 58px;
  object-fit: contain;
}

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

#map {
width: 100%;
height: 520px;
border-radius: 24px;
overflow: hidden;
border: 1px solid var(--line);
margin-top: 2rem;
}

.custom-marker {
  background: #0c7284;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.footer {
  background: #0f1113;
  color: white;
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-claim {
  font-size: 1rem;
  opacity: 0.9;
}

.footer-legal {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer details {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  min-width: 220px;
  max-width: 420px;
}

.footer summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.footer summary::-webkit-details-marker {
  display: none;
}

.legal-content,
.legal-content p{
  margin-top: 1rem;
  font-size: 0.75rem;
  line-height: 1.6;
  opacity: 0.9;
  text-align:left;
}

.footer a {
  color: white;
}

@media (max-width: 900px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-grid,
  .content-grid,
  .demands-grid,
  .mitmachen-grid {
    display: block;
  }

  .hero-visual,
  .hero-copy,
  .map-card,
  .initiative-card,
  .locations-box {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
    line-height: 0.95;
    word-break: normal;
  }

  .hero h1 span {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .lead {
    max-width: 100%;
  }
}

/* =========================================================
   Mobile-Breitenfix – Ergänzung zum bestehenden Ausgangslayout
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

/* Grid-Kinder dürfen auf kleinen Breiten schrumpfen */
.hero-grid > *,
.content-grid > *,
.demands-grid > *,
.mitmachen-grid > * {
  min-width: 0;
}

/* Logo als Bild im Header begrenzen */
.wordmark img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hero-visual img,
.map-card img,
.content-grid img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-grid,
  .content-grid,
  .demands-grid,
  .mitmachen-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  #mapimg {
  display: none;
  }

  .hero-copy,
  .hero-visual,
  .map-card,
  .initiative-card,
  .locations-box {
    width: 100%;
    max-width: 100%;
  }

  .lead {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .header-grid {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .wordmark {
    max-width: min(280px, 100%);
    overflow: hidden;
  }

  .wordmark img {
    max-width: min(280px, 100%);
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.25rem);
    line-height: 0.95;
  }

  .hero h1 span {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1;
  }

  .lead {
    font-size: 1rem;
  }

  #map {
    height: 420px;
  }
}
