/* ============================================================
   RAN Sub-Marken-Theme — Overrides über ui_kits/website/site.css-Basis
   Nur Overrides + RAN-spezifische Sektionen. Tokens aus colors_and_type.css.
   ============================================================ */

/* ===== RAN Sub-Marken-Theme — Overrides ===== */
:root {
  --brand:             #E30613;   /* RAN-Rot */
  --brand-deep:        #B00510;   /* Hover, Eyebrows auf Hell */
  --brand-soft:        #FF4D57;   /* Hell-Stop, Eyebrows auf Dunkel */

  /* RAN übernimmt die Orange-Rolle */
  --sued-orange:       var(--brand);
  --sued-orange-deep:  var(--brand-deep);
  --sued-orange-light: var(--brand-soft);

  /* Weiß auf RAN-Rot ≈ 4.9:1 — ok für Button-Text 14px 600 */
  --fg-on-orange:      #FFFFFF;

  /* Rot-Schatten */
  --shadow-cta:        0 12px 32px rgba(227, 6, 19, 0.28);

  /* Hero-Overlay: tiefes Braunrot, NICHT flächiges Neonrot */
  --hero-overlay:      linear-gradient(180deg, rgba(60,4,8,0.35) 0%, rgba(60,4,8,0.92) 90%);

  /* Gesamthöhe: BrandBar ~35px + 12px Abstand + Pill ~56px + 13px Luft */
  --header-h: 116px;
}

/* ============================================================
   Basis-Reset (identisch zu website/site.css)
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--brand); color: var(--cream); }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; scroll-margin-top: var(--header-h); }

/* ============================================================
   BRAND BAR — Schwester-Marken-Nav (oberste Zeile im Header)
   ============================================================ */
.brandbar {
  display: flex; align-items: center; gap: 20px;
  padding: 8px var(--gutter);
  background: var(--sued-blue-deep);
  font-size: 12px;
}
.brandbar__label {
  color: rgba(250,247,241,0.85); font-weight: 500;
  letter-spacing: 0.04em; white-space: nowrap;
}
.brandbar__links {
  display: flex; gap: 18px; overflow-x: auto; scrollbar-width: none;
}
.brandbar__links::-webkit-scrollbar { display: none; }
.brandbar__links a {
  color: rgba(250,247,241,0.85); text-decoration: none;
  font-weight: 500; white-space: nowrap;
}
.brandbar__links a:hover { color: #FFFFFF; }
.brandbar__links a.is-active {
  color: #FFFFFF; font-weight: 700;
  border-bottom: 2px solid var(--brand);
  padding-bottom: 2px;
}
@media (max-width: 900px) { .brandbar__label { display: none; } }

/* ============================================================
   SITE-HEADER — Fixed-Wrapper nur für BrandBar
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
}

/* ============================================================
   NAV — Floating Glass Pill unter BrandBar
   ============================================================ */
.nav {
  position: fixed;
  top: calc(35px + 12px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 101;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 11px 28px;
  /* Cream-Grund rgba(250,247,241) mit niedriger Alpha */
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Hairline — rgba-Ableitung sued-blue (34,33,101) */
  border: 1px solid rgba(34, 33, 101, 0.10);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(34, 33, 101, 0.10);
  width: max-content;
  max-width: 1000px;
  transition:
    background 0.3s cubic-bezier(0.32, 0.72, 0, 1),
    border-color 0.3s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}
.site-header.is-scrolled .nav {
  background: rgba(250, 247, 241, 0.97);
  border-color: rgba(34, 33, 101, 0.18);
  box-shadow: 0 8px 32px rgba(34, 33, 101, 0.15);
}
.nav__logo img { height: 34px; }
.nav__links {
  display: flex; gap: 20px; list-style: none; margin: 0; padding: 0;
  white-space: nowrap;
}
.nav__links a {
  font-size: 14px; font-weight: 500; color: var(--sued-blue);
  transition: color 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}
.nav__links a:hover { color: var(--brand); }
.nav__cta {
  padding: 9px 18px; background: var(--brand); color: #FFFFFF; /* Weiß ≈4.9:1 auf Brand-Rot */
  border-radius: var(--radius-pill); font-size: 12px; font-weight: 600;
  letter-spacing: var(--tracking-wide); text-transform: uppercase; white-space: nowrap;
  transition: background 0.2s cubic-bezier(0.32, 0.72, 0, 1), transform 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}
.nav__cta:hover { background: var(--brand-deep); transform: translateY(-1px); }
.nav__cta:active { transform: translateY(0) scale(0.97); }
@media (max-width: 900px) { .nav__links { display: none; } }
@media (max-width: 760px) {
  .nav {
    top: calc(35px + 8px);
    width: calc(100vw - 32px);
    max-width: none;
    padding: 10px 20px;
    gap: 0;
    justify-content: space-between;
  }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; font-family: var(--font-sans);
  font-size: 14px; font-weight: 600; letter-spacing: var(--tracking-wide);
  border: 0; border-radius: var(--radius-pill); cursor: pointer; text-decoration: none;
  transition:
    transform .2s cubic-bezier(0.32, 0.72, 0, 1),
    box-shadow .2s cubic-bezier(0.32, 0.72, 0, 1),
    background-color .2s cubic-bezier(0.32, 0.72, 0, 1);
}
/* Active-State — simuliert physisches Drücken */
.btn:active { transform: translateY(0) scale(0.97); }
/* RAN-Primär-Button: Rot mit weißem Text */
.btn--ran-primary, .btn--primary {
  background: var(--brand); color: #FFFFFF; /* 4.9:1 bei 14px 600 */
  box-shadow: var(--shadow-cta);
}
.btn--ran-primary:hover, .btn--primary:hover {
  background: var(--brand-deep); transform: translateY(-1px);
}
.btn--secondary {
  background: var(--sued-blue); color: var(--cream);
}
.btn--secondary:hover { background: var(--sued-blue-deep); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--cream);
  border: 2px solid rgba(250,247,241,0.6);
}
.btn--ghost:hover { background: rgba(250,247,241,0.15); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh; padding-top: var(--header-h);
  display: flex; align-items: flex-end;
  overflow: hidden; color: var(--cream);
  scroll-margin-top: 0;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.04) saturate(1.05); }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: var(--hero-overlay);
}
.hero__content {
  position: relative; z-index: 2; padding: 0 var(--gutter) var(--section-y);
  max-width: var(--container-max); margin: 0 auto; width: 100%;
}
.hero__eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--cream); /* Cream auf dunklem Overlay: ~15:1 — sehr sicher */
  margin: 0 0 16px;
  display: inline-flex; align-items: center; gap: 12px;
  text-shadow: 0 1px 12px rgba(60, 4, 8, 0.55);
}
.hero__eyebrow::before {
  content: ""; display: block; width: 32px; height: 2px; background: var(--brand);
}
.hero__title {
  font-weight: 700;
  font-size: calc(clamp(48px, 7.5vw, 96px));
  line-height: 1.02; letter-spacing: -0.02em;
  color: var(--cream); margin: 0 0 20px; max-width: 20ch;
}
.hero__title em {
  /* Große Schrift (48px+): large text braucht nur 3:1. Rot auf dunklem Overlay >3:1. */
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--brand);
}
.hero__lede {
  font-size: clamp(17px, 1.4vw, 22px); line-height: 1.5;
  color: var(--cream); /* volle Deckkraft auf Foto/Overlay-Hintergrund */
  max-width: 52ch; margin: 0 0 32px;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding-top: 40px; margin-top: 48px;
  border-top: 1px solid rgba(220,219,237,0.25); max-width: 720px;
}
.hero__stat-num {
  font-weight: 700; font-size: clamp(32px, 3vw, 44px); line-height: 1;
  color: var(--sued-sun); letter-spacing: -0.02em;
}
.hero__stat-label {
  font-size: 10px; letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--cream); /* Cream auf dunklem Overlay: ~15:1 — RAN-Rot wäre nur ~3.45:1 bei 10px */
  font-weight: 700; margin-top: 8px;
}
@media (max-width: 600px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ============================================================
   EYEBROW-HELPER (RAN-spezifisch)
   ============================================================ */
/* Auf Cream: brand-deep #B00510, ≈6.7:1 */
.ran-eyebrow {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 600;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--brand-deep);
  margin: 0;
}
/* Auf Dunkel (Blau/Schwarz): brand-soft #FF4D57, ≈6.1:1 auf blue-deep */
.ran-eyebrow--light {
  color: var(--brand-soft);
}
/* Sektion-Titel auf Cream */
.ran-title { color: var(--sued-blue); margin: 0; }
.ran-title em {
  font-family: var(--font-serif); font-style: italic; font-weight: 400;
  color: var(--brand);
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.7s cubic-bezier(.22,.61,.36,1), transform 0.7s cubic-bezier(.22,.61,.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal--d1 { transition-delay: 0.06s; }
.reveal--d2 { transition-delay: 0.12s; }
.reveal--d3 { transition-delay: 0.18s; }
.reveal--d4 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   PRICE TICKER — #angebote
   ============================================================ */
.price-ticker { background: var(--cream); }
.price-ticker__head { margin-bottom: 48px; }
.price-ticker__head .ds-lede { margin-top: 16px; }
.price-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 28px;
}
.price-card {
  background: var(--paper); border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.price-card__tag {
  font-size: 10px; font-weight: 700; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--brand-deep); margin-bottom: 10px;
}
.price-card__fuel {
  font-size: 15px; font-weight: 600; color: var(--sued-blue); margin-bottom: 12px;
}
.price-card__price {
  display: flex; align-items: flex-start; gap: 0; line-height: 1;
}
.price-card__euro {
  font-size: clamp(48px, 6vw, 68px); font-weight: 700;
  color: var(--sued-blue); letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.price-card__cent {
  font-size: 22px; font-weight: 700; color: var(--brand);
  vertical-align: super; margin-top: 8px; margin-left: 2px;
}
.price-card__unit {
  font-size: 13px; color: var(--ink-soft); /* #4A4A55 auf Weiß: ~7.8:1 */
  font-weight: 500; margin-top: auto; margin-left: 4px; padding-bottom: 6px;
}
.price-ticker__disclaimer {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.price-disclaimer-chip {
  display: inline-block; background: var(--cream-dark);
  color: var(--ink); /* #1A1A22 auf #EFEAE0: ~14.7:1 — sehr sicher */
  font-size: 12px; font-weight: 600; padding: 4px 12px;
  border-radius: var(--radius-pill); letter-spacing: 0.03em;
}
.price-disclaimer-text {
  font-size: 13px; color: var(--ink-soft); margin: 0;
}
.price-reasons {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.price-reasons li {
  font-size: 15px; color: var(--ink-soft); padding-left: 20px; position: relative;
}
.price-reasons li::before {
  content: "→"; position: absolute; left: 0; color: var(--brand); font-weight: 600;
}
@media (max-width: 900px) { .price-cards { grid-template-columns: 1fr; gap: 12px; } }
@media (min-width: 500px) and (max-width: 900px) { .price-cards { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   LOCATION MAP — #standorte
   ============================================================ */
.location-map { background: var(--paper); }
.location-map__head { margin-bottom: 48px; }
.location-map__grid {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.location-map__svg-col {}
.location-map__svg {
  width: 100%; max-width: 420px; height: auto;
}
.map-marker { cursor: default; }
.map-marker circle { transition: r 0.25s ease, opacity 0.25s ease; }
.map-marker:hover circle:first-child { r: 7; }
.location-map__caption {
  font-size: 11px; color: var(--ink-soft); /* ink-soft #4A4A55: ~7.9:1 auf Weiß — ink-muted wäre nur ~3.94:1 */
  letter-spacing: 0.04em; margin-top: 10px; text-align: center;
}
.location-search { margin-bottom: 28px; }
.location-search__label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--brand-deep); /* 6.7:1 auf Weiß/Cream */ margin-bottom: 10px;
}
.location-search__row { display: flex; gap: 8px; }
.location-search__input {
  flex: 1; padding: 12px 16px; border: 1.5px solid var(--line-strong);
  border-radius: var(--radius); font-family: var(--font-sans); font-size: 15px;
  color: var(--ink); background: var(--cream); outline: none;
  transition: border-color 0.2s;
}
.location-search__input:focus { border-color: var(--brand); }
.location-search__btn {
  padding: 12px 20px; background: var(--brand); color: #FFFFFF;
  border: 0; border-radius: var(--radius); font-size: 14px; font-weight: 600;
  cursor: pointer; letter-spacing: 0.03em; white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
.location-search__btn:hover { background: var(--brand-deep); transform: translateY(-1px); }
.location-search__hint {
  font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0;
}
.station-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.station-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 16px 20px;
  border-left: 3px solid var(--brand);
}
.station-card__name { font-weight: 700; color: var(--sued-blue); font-size: 16px; margin-bottom: 4px; }
.station-card__addr { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.station-card__meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.station-card__meta span { font-size: 13px; color: var(--ink-soft); }
.station-chip {
  background: var(--cream-dark); color: var(--brand-deep); /* 6.7:1 */
  font-size: 11px; font-weight: 600; padding: 2px 8px;
  border-radius: var(--radius-pill);
}
@media (max-width: 900px) {
  .location-map__grid { grid-template-columns: 1fr; }
  .location-map__svg { max-width: 300px; margin: 0 auto; }
}

/* ============================================================
   NAHVERSORGER — #nahversorger
   ============================================================ */
.nahversorger { background: var(--cream); }
.nahversorger__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center; margin-bottom: 56px;
}
.nahversorger__body {
  font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 16px;
}
.nahversorger__photo-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.nahversorger__photo-wrap img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.03) saturate(1.05); }
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.feature-cell {
  padding: 28px 24px; background: var(--paper);
  border-right: 1.5px solid var(--line);
}
.feature-cell:last-child { border-right: none; }
.feature-cell__icon { width: 32px; height: 32px; color: var(--sued-blue); margin-bottom: 14px; }
.feature-cell__icon svg { width: 32px; height: 32px; }
.feature-cell__label {
  font-size: 15px; font-weight: 700; color: var(--sued-blue); margin-bottom: 4px;
}
.feature-cell__desc { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
@media (max-width: 900px) {
  .nahversorger__grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-cell { border-right: 1.5px solid var(--line); }
  .feature-cell:nth-child(even) { border-right: none; }
  .feature-cell:nth-child(1), .feature-cell:nth-child(2) {
    border-bottom: 1.5px solid var(--line);
  }
}

/* ============================================================
   CUSTOMER CARD — #karte
   ============================================================ */
.customer-card-sec { background: var(--sued-blue); }
.customer-card-sec .ran-eyebrow { color: var(--brand-soft); /* 6.15:1 auf sued-blue */ }
.customer-card-sec .ran-title { color: var(--cream); }
.customer-card-sec .ran-title em { color: var(--brand); }
.customer-card__head { margin-bottom: 48px; }
.customer-card__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
/* RAN-Karte (CSS-only credit card) */
.ran-card {
  background: linear-gradient(135deg, #E30613 0%, #8C0008 100%);
  border-radius: 16px; padding: 28px;
  color: #FFFFFF; aspect-ratio: 1.586;
  max-width: 380px; position: relative;
  box-shadow: 0 20px 60px rgba(227,6,19,0.4), 0 4px 16px rgba(0,0,0,0.3);
}
.ran-card__top { display: flex; align-items: baseline; gap: 8px; margin-bottom: 28px; }
.ran-card__logo-text {
  font-size: 38px; font-weight: 700; letter-spacing: -0.02em; line-height: 1;
}
.ran-card__subtitle {
  font-size: 14px; font-weight: 600; letter-spacing: 0.18em; opacity: 0.85;
  margin-top: 4px;
}
.ran-card__chip {
  width: 44px; height: 32px; background: linear-gradient(135deg, #e8c84a 0%, #b8942a 100%);
  border-radius: 5px; margin-bottom: 24px;
  position: relative;
}
.ran-card__chip::after {
  content: ""; position: absolute; inset: 6px 8px;
  border: 1.5px solid rgba(180,140,20,0.5); border-radius: 2px;
}
.ran-card__number {
  font-size: 18px; font-weight: 600; letter-spacing: 0.18em;
  font-variant-numeric: tabular-nums; margin-bottom: 24px;
  opacity: 0.92;
}
.ran-card__bottom {
  display: flex; justify-content: space-between; align-items: flex-end;
}
.ran-card__holder { font-size: 11px; opacity: 0.7; letter-spacing: 0.08em; text-transform: uppercase; }
.ran-card__brand { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; opacity: 0.85; }

/* Zahlung-Methoden */
.payment-methods { margin-top: 24px; }
.payment-methods__label {
  font-size: 11px; font-weight: 700; letter-spacing: var(--tracking-wider);
  text-transform: uppercase; color: var(--sued-sun); margin-bottom: 12px;
}
.payment-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.payment-chip {
  background: rgba(255,255,255,0.1); color: var(--cream); /* Cream auf transparentem Dunkel: >9:1 */
  border: 1px solid rgba(220,219,237,0.25);
  font-size: 13px; font-weight: 500;
  padding: 5px 12px; border-radius: var(--radius-pill);
}

/* Vorteile-Liste */
.benefits-list {
  display: flex; flex-direction: column; gap: 24px;
}
.benefit-item { display: flex; align-items: flex-start; gap: 20px; }
.benefit-item__value {
  font-size: clamp(28px, 3vw, 38px); font-weight: 700; color: var(--brand-soft);
  letter-spacing: -0.02em; line-height: 1; white-space: nowrap; min-width: 72px;
}
.benefit-item__label {
  font-size: 15px; font-weight: 700; color: var(--cream); margin-bottom: 4px;
}
.benefit-item__desc { font-size: 14px; color: rgba(250,247,241,0.8); line-height: 1.5; }
@media (max-width: 900px) {
  .customer-card__grid { grid-template-columns: 1fr; }
  .ran-card { max-width: 100%; }
}

/* ============================================================
   KARRIERE — #karriere
   ============================================================ */
.karriere-ran { background: var(--sued-blue-deep); }
.karriere-ran__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.karriere-ran__text { flex: 1; min-width: 280px; }
.karriere-ran__values {
  font-size: 13px; color: rgba(250,247,241,0.7);
  font-weight: 500; letter-spacing: 0.02em; margin-top: 0;
}
.karriere-ran__cta { flex-shrink: 0; }

/* ============================================================
   CONTACT — #kontakt
   (Übernommen und auf RAN angepasst)
   ============================================================ */
.contact { background: var(--sued-blue-deep); color: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__ey {
  font-size: 12px; font-weight: 700; letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--brand-soft); /* #FF4D57: 6.15:1 auf blue-deep — sicher für 12px */
  margin: 0 0 16px;
}
.contact__title { color: var(--cream); margin: 0 0 24px; }
.contact__title em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--brand-soft); }
.contact__body { color: rgba(250,247,241,0.8); font-size: 17px; margin: 0 0 32px; line-height: 1.6; }
.contact__meta { display: grid; grid-template-columns: 100px 1fr; gap: 12px 20px; align-items: baseline; padding-top: 24px; border-top: 1px solid rgba(220,219,237,0.15); }
.contact__meta-lbl { font-size: 10px; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--brand-soft); font-weight: 700; }
.contact__meta-val { color: var(--cream); font-size: 15px; }
.contact__form { background: rgba(255,255,255,0.04); border: 1px solid rgba(220,219,237,0.15); border-radius: 12px; padding: 32px; }
.contact__form-title { color: var(--cream); font-weight: 700; font-size: 22px; margin: 0 0 24px; }
.contact__field { display: flex; flex-direction: column; margin-bottom: 18px; }
.contact__field label { font-size: 10px; letter-spacing: var(--tracking-wider); text-transform: uppercase; color: var(--brand-soft); margin-bottom: 8px; font-weight: 700; }
.contact__field input, .contact__field textarea, .contact__field select {
  background: transparent; border: 0; border-bottom: 1px solid rgba(220,219,237,0.3);
  padding: 10px 0; color: var(--cream); font-family: var(--font-sans);
  font-size: 15px; outline: none; transition: border-color 0.2s;
}
.contact__field select option { background: var(--sued-blue-deep); color: var(--cream); }
.contact__field input:focus, .contact__field textarea:focus, .contact__field select:focus { border-bottom-color: var(--brand); }
.contact__field textarea { min-height: 60px; resize: vertical; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact__submit {
  margin-top: 8px; width: 100%; padding: 14px 20px;
  background: var(--brand); color: #FFFFFF; /* 4.9:1 bei 14px 700 */
  border: 0; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px;
  letter-spacing: var(--tracking-wide); cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact__submit:hover { background: var(--brand-deep); transform: translateY(-1px); }
@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact__row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--sued-blue-deep); color: var(--cream); padding: 56px 0 24px; border-top: 1px solid rgba(220,219,237,0.15); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(220,219,237,0.15); }
.footer__brand-logo { margin-bottom: 14px; }
.footer__brand-logo img { height: 36px; filter: brightness(0) invert(1); }
.footer__tag {
  font-size: 11px; letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--brand-soft); /* 6.15:1 auf blue-deep */
  font-weight: 700; margin-bottom: 18px;
}
.footer__addr { font-size: 13px; line-height: 1.6; color: rgba(250,247,241,0.7); margin: 0; max-width: 30ch; }
.footer__col h4 {
  font-size: 11px; letter-spacing: var(--tracking-wider); text-transform: uppercase;
  color: var(--brand-soft); /* 6.15:1 auf blue-deep */
  margin: 0 0 16px; font-weight: 700;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 8px; }
.footer__col a { font-size: 14px; color: rgba(250,247,241,0.85); transition: color 0.2s; }
.footer__col a:hover { color: var(--brand-soft); /* 6.15:1 auf blue-deep */ }
.footer__bottom { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 11px; color: rgba(250,247,241,0.5); letter-spacing: 0.06em; }
.footer__legal { display: flex; gap: 20px; }
.footer__legal a { text-transform: uppercase; letter-spacing: var(--tracking-wide); font-size: 11px; font-weight: 600; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
