:root {
  --bg: #f3f2ef;
  --panel: #ffffff;
  --text: #2b2b2b;
  --muted: #66625c;
  --line: rgba(43, 43, 43, 0.1);
  --accent: #a63d3d;
  --accent-dark: #7f2f2f;
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --max: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Asap", "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(166, 61, 61, 0.12), transparent 26%),
    linear-gradient(180deg, #f7f6f3 0%, #ffffff 34%, #f5f3ef 100%);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

.container {
  width: min(var(--max), calc(100% - 1rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(43, 43, 43, 0.8);
}

.site-nav a[href="/faqs/"],
.site-nav a[href$="/faqs/"],
.site-nav a[href$="faqs/"] {
  text-transform: none;
}

.site-nav a.faq-link {
  text-transform: none !important;
}

.page-hero .eyebrow.eyebrow-faqs {
  text-transform: none !important;
}

.faq-lower {
  text-transform: none !important;
}

.site-nav a.active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  padding: 4.5rem 0 2.8rem;
}

.home .hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 1000px;
  background:
    linear-gradient(180deg, rgba(248, 246, 242, 0.08), rgba(248, 246, 242, 0.18)),
    url("./ChatGPT Image 3. Aug. 2026, 15_37_08_mit_Hinweis.png") center top / contain no-repeat;
  background-color: #f6f4f0;
}

.home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 50%, rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.06), transparent 32%);
  pointer-events: none;
}

.home .hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  align-items: start;
}

.hero-copy,
.hero-panel,
.contact-panel,
.signature-form,
.quote-card,
.faq-card,
.supporter-list article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home .hero-copy,
.home .hero-panel {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
}

.hero-copy {
  padding: 2.2rem;
  min-height: 420px;
}

.hero-title {
  position: relative;
  z-index: 2;
  margin: 0 0 3rem;
  max-width: none;
  width: 100%;
  text-align: center;
}

.hero-title h1 {
  display: inline-block;
  margin: 0;
  padding: 0.25rem 0.8rem 0.35rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: var(--accent);
  text-shadow: 0 2px 12px rgba(255, 255, 255, 0.82);
}

.hero-grid-home .hero-copy {
  justify-self: start;
  text-align: left;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-grid-home {
  width: min(100%, 1240px);
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: minmax(0, 1.75fr) minmax(420px, 1fr);
  column-gap: 1.1rem;
}

.hero-panel,
.contact-panel {
  padding: 1.5rem;
}

.hero-statement-panel h2 {
  color: var(--accent);
}

.hero-contact-form {
  margin-top: 0;
}

.hero-grid-home .hero-contact-form {
  grid-column: 1;
  grid-row: 2;
  padding: 1.85rem 2rem;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}

.hero-grid-home .jotform-embed {
  display: block;
  width: 100%;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-radius: 16px;
}

.hero-grid-home .jotform-embed iframe {
  display: block;
  width: 100% !important;
  min-width: 100% !important;
  border: 0 !important;
  background: transparent;
}

.hero-grid-home .jotform-embed > script {
  display: none;
}

.jotform-embed,
.jotform-embed * {
  font-family: inherit;
}

.hero-grid-home .hero-statement-panel {
  grid-column: 2;
  grid-row: 2;
  margin-top: 0;
  align-self: start;
  width: 100%;
}

.hero-grid-home .hero-copy {
  position: relative;
  max-width: none;
  width: 100%;
  padding: 3rem 3.25rem;
  border-top: 12px solid var(--accent);
}

.hero-grid-home .hero-copy::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 0.95rem;
  width: 4.8rem;
  height: 4.8rem;
  border-right: 0.32rem solid var(--accent);
  border-bottom: 0.32rem solid var(--accent);
  border-radius: 0 0 12px 0;
  opacity: 0.95;
}

.hero-grid-home .hero-copy .panel-label {
  margin-bottom: 1.45rem;
  font-size: 1.26rem;
  line-height: 1.45;
}

.panel-label-aufruf {
  display: inline-block;
  letter-spacing: 0.16em;
  padding-bottom: 0.12rem;
  border-bottom: 2px solid var(--accent);
}

.hero-grid-home .hero-copy .lead {
  margin-top: 1rem;
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-grid-home .hero-copy p:not(.panel-label):not(.lead) + p {
  margin-top: 1rem;
}

.hero-grid-home .hero-copy .inline-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: inherit;
}

.hero-grid-home .hero-copy > p:not(.panel-label) {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.hero-grid-home .hero-copy p {
  max-width: none;
}

.section-logos {
  padding-top: 1rem;
}

.logo-grid {
  display: grid;
  gap: 1rem;
}

.logo-row {
  display: grid;
  gap: 1rem;
}

.logo-row-top {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.logo-row-bottom {
  width: 100%;
  margin-inline: 0;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 116px;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.logo-card img {
  width: 100%;
  max-width: 162px;
  max-height: 68px;
  object-fit: contain;
}

.logo-card img[src*="GEW"],
.logo-card img[alt*="GEW"],
.logo-card img[src*="DGB"],
.logo-card img[alt*="DGB"] {
  transform: scale(1.14);
  transform-origin: center;
}

.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 5vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy p,
.prose p,
.hero-panel p,
.contact-panel p,
.hero-contact-form p,
.quote-card p,
.faq-card p,
.supporter-list p {
  font-size: 1rem;
  line-height: 1.65;
}

.lead {
  font-size: 1.2rem;
  color: #3a3835;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(43, 43, 43, 0.18);
  color: var(--text);
}

.btn-block {
  width: 100%;
}

.panel-label {
  margin-bottom: 0.4rem;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.feature-list,
.support-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
}

.feature-list li,
.support-list li {
  margin: 0.55rem 0;
}

.section {
  padding: 2.9rem 0;
}

.section-tight {
  padding-top: 1rem;
}

.section-alt {
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 1.3rem;
}

.section-heading h2,
.page-hero h1 {
  margin-bottom: 0;
}

.contact-hero h1 {
  margin-bottom: 2rem;
}

.section-heading h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.05;
}

.quote-grid,
.faq-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card,
.faq-card {
  padding: 1.35rem;
}

.faq-accordion {
  display: grid;
  gap: 0.9rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(58, 53, 48, 0.07);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 1.15rem 3.2rem 1.15rem 1.25rem;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.94);
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-item[open] summary {
  color: var(--accent);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(124, 26, 32, 0.06), rgba(255, 255, 255, 0));
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 1rem 1.25rem 1.3rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
}

.faq-answer p:first-child {
  margin-top: 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer ul {
  margin-top: 0.65rem;
  margin-bottom: 0.9rem;
  padding-left: 1.2rem;
}

.faq-answer li + li {
  margin-top: 0.35rem;
}

.quote-card-accent {
  background: linear-gradient(180deg, rgba(166, 61, 61, 0.12), rgba(255, 255, 255, 0.9));
}

.quote {
  font-size: 1.05rem;
  font-weight: 600;
}

.quote-author {
  color: var(--muted);
  font-size: 0.96rem;
}

.split {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.split-top {
  align-items: start;
}

.signature-form {
  padding: 1.4rem;
  display: grid;
  gap: 0.65rem;
}

.custom-signature-form {
  position: relative;
  gap: 1rem;
}

.form-intro {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.25rem;
}

.form-intro-copy,
.form-video-note {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.form-video-note {
  color: var(--text);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 600;
  line-height: 1.35;
}

.required-star {
  color: #d40000;
  font-weight: 700;
  margin-left: 0.15rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(43, 43, 43, 0.18);
  border-radius: 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
}

.field textarea {
  resize: vertical;
  min-height: 9rem;
}

.checkline.consent-checkline {
  font-weight: 400;
}

.consent-checkline a {
  white-space: normal;
}

.consent-checkmark {
  color: #d40000;
  font-weight: 700;
}

.captcha-block {
  display: grid;
  gap: 0.45rem;
}

.captcha-label {
  margin: 0;
  font-weight: 600;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 0.4rem;
}

.form-actions .btn {
  width: min(360px, 100%);
  justify-content: center;
}

.jotform-submit-frame {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  border: 0;
}

.signup-form {
  display: grid;
  gap: 0.75rem;
}

.signature-form label {
  font-weight: 600;
}

.signature-form input,
.signature-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(43, 43, 43, 0.18);
  border-radius: 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
}

.signup-form label {
  font-weight: 600;
}

.signup-form input,
.signup-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(43, 43, 43, 0.18);
  border-radius: 12px;
  font: inherit;
  background: rgba(255, 255, 255, 0.96);
}

.signature-form textarea {
  resize: vertical;
}

.signature-form input[type="hidden"] {
  display: none;
}

.signup-form textarea {
  resize: vertical;
}

.checkline {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.55;
}

.checkline input {
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  margin-top: 0.2rem;
  accent-color: var(--accent);
}

.checkline a {
  white-space: normal;
}

.form-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.signup-form p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.contact-card,
.muted,
.inline-link {
  line-height: 1.7;
}

.muted {
  color: var(--muted);
}

.inline-link {
  font-weight: 700;
  color: var(--accent);
}

.video-info-trigger {
  display: inline;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.video-info-trigger:hover,
.video-info-trigger:focus-visible {
  text-decoration: underline;
}

.consent-black {
  color: var(--text);
  font-weight: 400;
}

.email-hint {
  font-size: 0.9em;
  font-weight: 400;
  font-style: italic;
  color: var(--muted);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.video-modal.open {
  display: block;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 14, 0.62);
}

.video-modal__panel {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 2rem));
  max-height: min(86vh, 980px);
  margin: 4vh auto;
  padding: 1.6rem 1.7rem 1.5rem;
  overflow: auto;
  background: #fffdf9;
  border: 1px solid rgba(43, 43, 43, 0.12);
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.video-modal__panel h2 {
  margin-bottom: 1rem;
}

.video-modal__panel h3 {
  margin: 1.35rem 0 0.6rem;
  color: var(--accent);
  font-size: 1.05rem;
}

.video-modal__panel p,
.video-modal__panel li {
  font-size: 1rem;
  line-height: 1.65;
}

.video-modal__intro {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--text);
}

.video-modal__panel ul {
  margin: 0.2rem 0 0.8rem 1.2rem;
  padding: 0;
}

.video-modal__close {
  position: sticky;
  top: 0;
  margin-left: auto;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(166, 61, 61, 0.12);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
  background: rgba(166, 61, 61, 0.18);
}

.page-hero {
  padding-top: 3rem;
  padding-bottom: 1.2rem;
}

.page-subtitle {
  max-width: 60ch;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
}

.prose {
  max-width: 92ch;
}

.contact-left {
  text-align: left;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-grid .prose > h2 {
  margin-top: 0;
}

.prose h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.55rem;
  font-size: 1.55rem;
}

.prose h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.45rem;
  font-size: 1.18rem;
}

.highlight {
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--accent);
  background: rgba(166, 61, 61, 0.08);
}

.table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 1rem;
  margin-bottom: 0.75rem;
  padding: 0 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.supporter-list {
  display: grid;
  gap: 0.8rem;
}

.supporter-list article {
  padding: 1rem 1.1rem;
}

.supporter-list h3 {
  margin-bottom: 0.25rem;
  font-size: 1.06rem;
}

.supporter-list p {
  margin-bottom: 0.35rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.4rem;
}

.pagination button {
  min-width: 42px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(43, 43, 43, 0.16);
  background: white;
  color: var(--text);
}

.pagination button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.pagination button:disabled {
  opacity: 0.45;
}

.site-footer {
  padding: 1.2rem 0 1.6rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .contact-grid,
  .quote-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .logo-grid {
    gap: 0.85rem;
  }

  .logo-row-top,
  .logo-row-bottom {
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-stage {
    padding: 4.5rem 0 5rem;
  }

  .hero-title {
    max-width: none;
    margin-bottom: 2rem;
  }

  .hero-copy {
    min-height: 0;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.6rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(43, 43, 43, 0.08);
  }

  .nav-toggle {
    display: inline-block;
  }

  .table-header {
    display: none;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 1.2rem));
  }

  .hero {
    padding-top: 2.2rem;
  }

  .hero-title h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .hero-copy,
  .hero-panel,
  .hero-form-row,
  .contact-panel,
  .signature-form,
  .quote-card,
  .faq-card {
    padding: 1.1rem;
  }

  .logo-grid {
    gap: 0.75rem;
  }

  .logo-row-top,
  .logo-row-bottom {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 2rem;
  }

  .footer-inner {
    flex-direction: column;
  }
}
