/* ============================================================
   STRANG PFLICHT-SEITEN — Impressum, Datenschutz, AGB, Kontakt
   Schlanke Subpage-Optik, gleiche Design-Sprache wie Haupt-Strecken
   ============================================================ */

.subpage {
  background: var(--paper, #ffffff);
  min-height: 60vh;
  padding: 0;
}

.subpage__hero {
  background: var(--bg-dark, #0e1b3d);
  color: white;
  padding: 64px 24px 72px;
}

.subpage__hero-inner {
  max-width: 880px;
  margin: 0 auto;
}

.subpage__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body, "Manrope", sans-serif);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cta, #fb670b);
  margin-bottom: 24px;
}
.subpage__eyebrow::before {
  content: "";
  height: 1px;
  width: 40px;
  background: currentColor;
}

.subpage__title {
  font-family: "Archivo", var(--font-body, "Manrope"), sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: white;
}

.subpage__lead {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 62ch;
  margin: 0;
}

/* ============================================================
   Pitch-Stand-Banner — sichtbarer Disclaimer
   ============================================================ */

.pitch-disclaimer {
  background: rgba(251, 103, 11, 0.08);
  border-left: 3px solid var(--cta, #fb670b);
  padding: 16px 20px;
  margin: 0 auto;
  max-width: 880px;
  margin-top: -32px;
  margin-bottom: 48px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink, #0e1b3d);
  position: relative;
  z-index: 2;
}
.pitch-disclaimer b {
  color: var(--cta, #fb670b);
  font-weight: 700;
}

/* ============================================================
   Content Layout
   ============================================================ */

.subpage__content {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 96px;
  font-family: var(--font-body, "Manrope", sans-serif);
  color: var(--ink, #0e1b3d);
  font-size: 16px;
  line-height: 1.65;
}

.subpage__content h2 {
  font-family: "Archivo", var(--font-body), sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink, #0e1b3d);
  margin: 48px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line, rgba(14, 27, 61, 0.12));
}
.subpage__content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.subpage__content h3 {
  font-family: "Archivo", var(--font-body), sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink, #0e1b3d);
  margin: 24px 0 8px;
}

.subpage__content p {
  margin: 0 0 16px;
}

.subpage__content ul {
  margin: 0 0 16px;
  padding-left: 24px;
}
.subpage__content ul li {
  margin-bottom: 8px;
}

.subpage__content a {
  color: var(--cta, #fb670b);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.subpage__content a:hover {
  color: var(--cta-hover, #d34d00);
}

/* Fact-Card: Pflichtangaben prominent darstellen */
.fact-card {
  background: var(--bg-soft, #faf7f2);
  border: 1px solid var(--line, rgba(14, 27, 61, 0.12));
  padding: 24px 28px;
  margin: 0 0 32px;
  font-size: 15px;
  line-height: 1.6;
}
.fact-card dt {
  font-weight: 700;
  color: var(--muted, #5b6373);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.fact-card dd {
  margin: 0 0 16px 0;
  color: var(--ink, #0e1b3d);
}
.fact-card dd:last-child {
  margin-bottom: 0;
}
.fact-card .tbd {
  color: var(--muted, #5b6373);
  font-style: italic;
}

/* ============================================================
   Kontakt-spezifisch — Zwei-Spalten Layout
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 64px;
}
@media (max-width: 720px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-channel {
  padding: 24px;
  border: 1px solid var(--line, rgba(14, 27, 61, 0.12));
  background: var(--bg-soft, #faf7f2);
  margin-bottom: 16px;
}
.contact-channel .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted, #5b6373);
  margin-bottom: 8px;
}
.contact-channel .value {
  font-family: "Archivo", var(--font-body), sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink, #0e1b3d);
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}
.contact-channel .value:hover {
  color: var(--cta, #fb670b);
}
.contact-channel .meta {
  font-size: 13px;
  color: var(--muted, #5b6373);
}

.contact-form {
  border: 1px solid var(--line, rgba(14, 27, 61, 0.12));
  padding: 32px;
  background: white;
}
.contact-form h3 {
  margin-top: 0 !important;
  margin-bottom: 8px;
}
.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted, #5b6373);
  margin-bottom: 6px;
  margin-top: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line, rgba(14, 27, 61, 0.12));
  border-radius: 0;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink, #0e1b3d);
  background: white;
  transition: border-color 120ms ease-out, box-shadow 120ms ease-out;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cta, #fb670b);
  box-shadow: 0 0 0 3px rgba(251, 103, 11, 0.18);
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--cta, #fb670b);
  color: white;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 120ms ease-out, transform 80ms ease-in;
}
.contact-form .submit:hover {
  background: var(--cta-hover, #d34d00);
}
.contact-form .submit:active {
  transform: translateY(1px);
}

.contact-hours {
  padding: 20px 24px;
  background: var(--bg-dark, #0e1b3d);
  color: white;
  font-size: 14px;
  line-height: 1.6;
}
.contact-hours .label {
  color: var(--cta, #fb670b);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-hours .hours {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  margin-bottom: 12px;
}
.contact-hours .hours dt {
  color: rgba(255, 255, 255, 0.6);
}
.contact-hours .hours dd {
  margin: 0;
  color: white;
}
.contact-hours .note {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}
