/* ============================================================
   TRANSUNION MOBILITY — Preview by PixelUno
   Designwelt: "Panel de Destinos"
   Display: Big Shoulders · Body: Chivo · Rot #E2332D · Amber #F6B929
   ============================================================ */

:root {
  --bg: #F6F1EF;
  --bg-soft: #EFE8E4;
  --panel: #17181C;
  --panel-2: #1F2127;
  --ink: #1B1C20;
  --ink-soft: #605D59;
  --ink-faint: #6A6661;
  --red: #E2332D;
  --red-deep: #B7211C;
  --red-text: #C4251F;   /* kleines Rot auf Hell + Buttonfuellung: WCAG AA */
  --amber: #F6B929;
  --amber-dim: #C4922A;
  --line: #E1D8D2;
  --line-dark: #2C2E35;
  --white: #FFFFFF;

  --font-display: "Big Shoulders", "Arial Narrow", sans-serif;
  --font-body: "Chivo", "Segoe UI", sans-serif;

  --wrap: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --sec-pad: clamp(4.5rem, 9vw, 8rem);
  --radius: 4px;

  --shadow-card: 0 1px 2px rgba(27, 28, 32, .06), 0 12px 32px -12px rgba(27, 28, 32, .18);
  --shadow-lift: 0 2px 4px rgba(27, 28, 32, .08), 0 24px 48px -16px rgba(27, 28, 32, .28);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
/* Zeilenhoehe laesst Platz fuer Umlaut-Punkte (DE) und Akzente (ES) */
h1, h2 { margin: 0; font-family: var(--font-display); text-transform: uppercase; line-height: 1.0; }
h3, h4 { margin: 0; font-family: var(--font-display); text-transform: uppercase; line-height: 1.12; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 2px; }
.dark :focus-visible, .site-footer :focus-visible { outline-color: var(--amber); }
::selection { background: var(--amber); color: var(--ink); }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--panel); color: var(--white); padding: .75rem 1.25rem;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- PixelUno Preview-Streifen ---------- */
.pixeluno-bar {
  background: #6D28D9;
  color: #fff;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .04em;
  padding: .45rem var(--gutter);
  position: relative;
  z-index: 100;
}
.pixeluno-bar a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(246, 241, 239, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 76px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  padding: .35rem 0;
  border-bottom: 2px solid transparent;
  transition: color .18s, border-color .18s;
}
.main-nav a:hover { color: var(--red-text); }
.main-nav a[aria-current="page"] { color: var(--red-text); border-bottom-color: var(--amber); }
.header-cta { flex-shrink: 0; }
.lang-switch { display: flex; gap: .15rem; align-items: center; flex-shrink: 0; }
.lang-switch a {
  font-size: .8rem; font-weight: 700; letter-spacing: .05em;
  text-decoration: none; color: var(--ink-soft);
  padding: .3rem .45rem; border-radius: 3px;
}
.lang-switch a:hover { color: var(--ink); background: var(--bg-soft); }
.lang-switch a[aria-current="true"] { color: var(--white); background: var(--panel); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  padding: .55rem .7rem; cursor: pointer;
}
.nav-toggle .bars { display: block; width: 22px; height: 2px; background: var(--ink); position: relative; }
.nav-toggle .bars::before, .nav-toggle .bars::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px; background: var(--ink);
  transition: transform .2s;
}
.nav-toggle .bars::before { top: -7px; }
.nav-toggle .bars::after { top: 7px; }

@media (max-width: 1080px) {
  .main-nav {
    position: fixed; inset: 0; z-index: 95;
    background: var(--panel);
    display: none;
    align-items: center; justify-content: center;
  }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; text-align: center; gap: 1.1rem; }
  .main-nav a { color: var(--white); font-size: 1.7rem; }
  .main-nav a[aria-current="page"] { color: var(--amber); }
  .nav-toggle { display: block; position: relative; z-index: 96; }
  .nav-toggle.open .bars { background: transparent; }
  .nav-toggle.open .bars::before { transform: translateY(7px) rotate(45deg); background: var(--white); }
  .nav-toggle.open .bars::after { transform: translateY(-7px) rotate(-45deg); background: var(--white); }
  .site-header .header-cta { display: none; }
  .lang-switch { margin-left: auto; }
  .nav-toggle { margin-left: 0; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: .09em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  padding: .85rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .18s, color .18s, transform .18s, box-shadow .18s;
}
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red-text); color: var(--white); }
.btn-red:hover { background: var(--red-deep); box-shadow: 0 10px 24px -10px rgba(226, 51, 45, .6); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--bg); }
.btn-ghost-light { border-color: rgba(255,255,255,.55); color: var(--white); background: transparent; }
.btn-ghost-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-amber { background: var(--amber); color: var(--ink); }
.btn-amber:hover { background: #E0A517; }
.btn .arr { transition: transform .18s; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Livery-Divider (rot/amber Doppellinie) ---------- */
.livery {
  height: 8px; border: 0; margin: 0;
  background:
    linear-gradient(var(--red), var(--red)) top / 100% 5px no-repeat,
    linear-gradient(var(--amber), var(--amber)) bottom / 100% 2px no-repeat;
}
.livery-sm { width: 72px; height: 8px; }

/* ---------- Eyebrow-Chip (Matrix-Etikett) ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700; font-size: .92rem;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.chip::before {
  content: ""; width: 26px; height: 8px;
  background:
    linear-gradient(var(--red), var(--red)) top / 100% 5px no-repeat,
    linear-gradient(var(--amber), var(--amber)) bottom / 100% 2px no-repeat;
}
.dark .chip, .chip.on-dark { color: var(--amber); }

/* ---------- Sections ---------- */
.section { padding-block: var(--sec-pad); }
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head h2 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  font-weight: 800;
  letter-spacing: .01em;
}
.section-head .lead { font-size: 1.15rem; color: var(--ink-soft); margin-top: 1.1rem; }
.dark { background: var(--panel); color: #EDEBE8; }
.dark .section-head .lead { color: #B9B5AF; }
.bg-soft { background: var(--bg-soft); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--panel); color: var(--white); overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
/* Scrim: flaeche + zusaetzliche Abdunklung unten, wo Text und CTAs sitzen */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(17, 18, 22, .35) 0%, rgba(17, 18, 22, .72) 78%, rgba(17, 18, 22, .82) 100%),
    rgba(17, 18, 22, .3);
}
.hero-inner {
  position: relative; z-index: 2;
  padding-top: clamp(5rem, 11vw, 9.5rem);
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  max-width: 62rem;
}
.hero h1 {
  font-size: clamp(3.4rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: .012em;
  color: var(--white);
}
.hero h1 .accent { color: var(--amber); }
.hero .hero-sub {
  max-width: 34rem;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, .88);
  margin-top: 1.4rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.2rem; }

/* Flip-Dot-Panel — das Signature-Element */
.destination-board {
  position: relative; z-index: 3;
  background: var(--panel);
  border-top: 1px solid var(--line-dark);
}
.destination-board .wrap {
  display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem);
  padding-block: 1.05rem;
  flex-wrap: wrap;
}
.board-label {
  font-family: var(--font-display);
  font-weight: 700; font-size: .88rem;
  letter-spacing: .3em; text-transform: uppercase;
  color: #8C8983;
  flex-shrink: 0;
}
.board-label .dot { color: var(--red); }
.flipboard {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber);
  position: relative;
  white-space: nowrap;
  min-height: 1.1em;
}
/* LED-Punktraster: dunkle Maske mit transparenten Loechern ueber der Schrift */
.flipboard::after {
  content: ""; position: absolute; inset: -4px;
  background-image: radial-gradient(circle, rgba(23, 24, 28, 0) 0 1.3px, var(--panel) 1.6px);
  background-size: 3.6px 3.6px;
  pointer-events: none;
}
.flipboard .fchar { display: inline-block; transition: transform .28s cubic-bezier(.4, 0, .2, 1), opacity .28s; }
.flipboard .fchar.flip { transform: rotateX(90deg); opacity: .1; }
.board-clock {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 500; font-size: 1rem;
  letter-spacing: .2em;
  color: #8C8983;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .board-clock { display: none; }
  .flipboard { letter-spacing: .08em; font-size: 1.7rem; }
  .flipboard::after {
    background-image: radial-gradient(circle, rgba(23, 24, 28, 0) 0 1.1px, var(--panel) 1.4px);
    background-size: 3px 3px;
  }
  .destination-board .wrap { flex-direction: column; align-items: flex-start; gap: .4rem; }
}
@media (max-width: 560px) {
  .site-header .wrap { gap: .7rem; min-height: 66px; }
  .brand img { height: 32px; }
  .lang-switch a { padding: .28rem .34rem; font-size: .76rem; }
  .nav-toggle { padding: .45rem .55rem; }
}

/* ---------- Stats-Band ---------- */
.stats-band { background: var(--panel); color: var(--white); }
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-inline: 1px solid var(--line-dark);
}
.stat {
  padding: clamp(1.8rem, 3.5vw, 3rem) clamp(1rem, 2.5vw, 2rem);
  border-right: 1px solid var(--line-dark);
}
.stat:first-child { border-left: 1px solid var(--line-dark); }
.stat:last-child { border-right: 0; }
.stat:first-child { border-left: 0; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  color: var(--amber);
  line-height: 1;
  letter-spacing: .02em;
}
.stat .num .unit { font-size: .5em; font-weight: 700; color: var(--amber-dim); }
.stat .label {
  margin-top: .55rem;
  font-size: .86rem; letter-spacing: .14em; text-transform: uppercase;
  color: #A6A29C;
}
@media (max-width: 860px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line-dark); }
}

/* ---------- Karten (Services) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.svc-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: transform .22s, box-shadow .22s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.svc-card .media { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.svc-card .media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.svc-card:hover .media img { transform: scale(1.05); }
.svc-card .media .code {
  position: absolute; left: 0; bottom: 0;
  background: var(--panel); color: var(--amber);
  font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; letter-spacing: .2em;
  padding: .3rem .7rem;
}
.svc-card .body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.svc-card h3 { font-size: 1.45rem; font-weight: 700; letter-spacing: .03em; }
.svc-card p { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.svc-card .more {
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--red-text);
}
.svc-card:hover .more { text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Split-Sektionen (Foto + Text) ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.rev .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.split-media .badge {
  position: absolute; right: -10px; bottom: -14px;
  background: var(--panel); color: var(--amber);
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; font-size: .9rem;
  padding: .55rem 1rem;
  box-shadow: var(--shadow-card);
}
.split-body h2 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 800; }
.split-body .lead { color: var(--ink-soft); margin-top: 1rem; }
.dark .split-body .lead { color: #B9B5AF; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
}

/* Feature-Liste */
.feat-list { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: .85rem; }
.feat-list li { display: flex; gap: .8rem; align-items: baseline; }
.feat-list .tick {
  flex-shrink: 0; font-family: var(--font-display); font-weight: 800;
  color: var(--red-text); transform: translateY(-1px);
}
.dark .feat-list .tick { color: var(--amber); }
.feat-list strong { font-weight: 700; }

/* ---------- Shuttle-Banner ---------- */
.shuttle-banner { background: var(--red-text); color: var(--white); }
.shuttle-banner .inner {
  display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
}
.shuttle-banner h2 { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; }
.shuttle-banner p { color: rgba(255, 255, 255, .92); max-width: 34rem; }
.shuttle-banner .btn-ghost-light { border-color: rgba(255,255,255,.7); }
.shuttle-banner .cta-side { margin-left: auto; display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
@media (max-width: 780px) { .shuttle-banner .cta-side { margin-left: 0; } }

/* ---------- Standorte / Paradas ---------- */
.depot-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 1.8rem);
}
.depot {
  background: var(--panel-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex; flex-direction: column; gap: .45rem;
}
.depot .code {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2rem; letter-spacing: .12em; line-height: 1;
  color: var(--amber);
  position: relative; display: inline-block; align-self: flex-start;
}
.depot .code::after {
  content: ""; position: absolute; inset: -3px;
  background-image: radial-gradient(circle, rgba(31,33,39,0) 0 1.0px, var(--panel-2) 1.3px);
  background-size: 3.6px 3.6px;
  pointer-events: none;
}
.depot h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: .04em; color: var(--white); }
.depot address { font-style: normal; color: #B9B5AF; font-size: .95rem; line-height: 1.5; }
.depot .links { margin-top: .6rem; display: flex; flex-direction: column; gap: .25rem; font-size: .95rem; }
.depot .links a { color: #EDEBE8; text-decoration: none; }
.depot .links a:hover { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.depot .links .maps { color: var(--amber-dim); font-size: .88rem; letter-spacing: .04em; }

/* ---------- Zertifikate ---------- */
.cert-row {
  display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
}
.cert-row img { height: 92px; width: auto; border-radius: 3px; }
.cert-row .cert-note { max-width: 30rem; color: var(--ink-soft); font-size: .95rem; }

/* ---------- CTA-Sektion ---------- */
.cta-final { text-align: center; }
.cta-final h2 { font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 800; }
.cta-final .lead { max-width: 38rem; margin: 1.2rem auto 0; color: #B9B5AF; }
.cta-final .hero-ctas { justify-content: center; }
.cta-final .contact-quick {
  margin-top: 2.4rem; display: flex; gap: 2.2rem; justify-content: center; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .08em;
}
.cta-final .contact-quick a { color: var(--white); text-decoration: none; }
.cta-final .contact-quick a:hover { color: var(--amber); }
.cta-final .contact-quick .lbl {
  display: block; font-family: var(--font-body); font-weight: 400;
  font-size: .8rem; letter-spacing: .12em; color: #8C8983; text-transform: uppercase;
  margin-bottom: .2rem;
}

/* ---------- Unterseiten-Hero ---------- */
.page-hero { position: relative; background: var(--panel); color: var(--white); overflow: hidden; }
.page-hero .hero-inner {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.6rem); font-weight: 800; color: var(--white); }
.page-hero .hero-sub { max-width: 40rem; }

/* ---------- Fleet / Galerie ---------- */
.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.04); }

/* Fahrzeugklassen */
.class-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.2rem); }
@media (max-width: 820px) { .class-grid { grid-template-columns: 1fr; } }
.vclass {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
}
.vclass .media { aspect-ratio: 16 / 9; overflow: hidden; }
.vclass .media img { width: 100%; height: 100%; object-fit: cover; }
.vclass .body { padding: 1.6rem 1.7rem 1.8rem; }
.vclass .pax {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.6rem; line-height: 1; color: var(--red);
}
.vclass .pax .unit { font-size: .45em; letter-spacing: .15em; color: var(--ink-faint); }
.vclass h3 { font-size: 1.5rem; margin-top: .4rem; }
.vclass p { color: var(--ink-soft); margin-top: .6rem; font-size: .98rem; }

/* Spec-Tabelle (Sicherheitssysteme) */
.spec-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line-dark);
  border: 1px solid var(--line-dark); border-radius: var(--radius); overflow: hidden;
}
@media (max-width: 820px) { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .spec-grid { grid-template-columns: 1fr; } }
.spec {
  background: var(--panel-2); padding: 1.3rem 1.4rem;
}
.spec .abbr {
  font-family: var(--font-display); font-weight: 800; font-size: 1.5rem;
  letter-spacing: .1em; color: var(--amber);
}
.spec .name { color: #EDEBE8; font-weight: 700; font-size: .98rem; margin-top: .25rem; }
.spec .desc { color: #A6A29C; font-size: .88rem; margin-top: .2rem; }

/* ---------- Service-Detailzeilen ---------- */
.svc-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.5rem, 5vw, 4rem);
}
.svc-row + .svc-row { border-top: 1px solid var(--line); }
.svc-row:nth-child(even) .svc-media { order: 2; }
.svc-media img {
  width: 100%; aspect-ratio: 3 / 2; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-card);
}
.svc-body .code-chip {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  letter-spacing: .22em; text-transform: uppercase;
  background: var(--panel); color: var(--amber);
  padding: .3rem .7rem; margin-bottom: .9rem;
}
.svc-body h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; }
.svc-body p { color: var(--ink-soft); margin-top: .8rem; }
.svc-body .aud { font-size: .9rem; color: var(--ink-faint); margin-top: .8rem; }
@media (max-width: 860px) {
  .svc-row { grid-template-columns: 1fr; }
  .svc-row:nth-child(even) .svc-media { order: 0; }
}

/* ---------- Werte (Empresa) ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }
.value {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.8rem 1.7rem;
}
.value .num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  letter-spacing: .2em; color: var(--red-text);
}
.value h3 { font-size: 1.45rem; margin-top: .5rem; }
.value p { color: var(--ink-soft); font-size: .97rem; margin-top: .6rem; }

/* Timeline light */
.era-band { display: flex; gap: 0; border-block: 1px solid var(--line); }
.era { flex: 1; padding: 1.6rem 1.4rem; border-right: 1px solid var(--line); }
.era:last-child { border-right: 0; }
.era .yr { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--red); }
.era p { font-size: .92rem; color: var(--ink-soft); margin-top: .3rem; }
@media (max-width: 820px) { .era-band { flex-direction: column; } .era { border-right: 0; border-bottom: 1px solid var(--line); } .era:last-child { border-bottom: 0; } }

/* ---------- Formulare ---------- */
.form-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field label {
  display: block; font-weight: 700; font-size: .9rem;
  letter-spacing: .04em; margin-bottom: .4rem;
}
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .8rem .95rem;
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226, 51, 45, .15);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--ink-faint); margin-top: 1rem; }

/* ---------- Utilities ---------- */
.h2-md { font-size: clamp(2.2rem, 4.2vw, 3.2rem); font-weight: 800; }
.lead-soft { color: var(--ink-soft); margin-top: 1rem; }
.form-actions { margin-top: 1.4rem; }
.sep-block { margin-block: 2.2rem; }
.stack-top { margin-top: 2rem; }
.cta-inline { margin-top: 2.4rem; }
.field .opt { font-weight: 400; color: var(--ink-faint); }
.chip-light { color: var(--white); }

/* ---------- Kontakt-Infos ---------- */
.contact-cols { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 900px) { .contact-cols { grid-template-columns: 1fr; } }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.1rem; }
.info-list .lbl {
  font-family: var(--font-display); font-weight: 700; font-size: .85rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint);
  display: block; margin-bottom: .15rem;
}
.info-list a { color: var(--ink); text-decoration: none; font-weight: 700; font-size: 1.12rem; }
.info-list a:hover { color: var(--red-text); }

.aside-figure { margin: 2.4rem 0 0; }
.aside-figure img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: var(--radius); box-shadow: var(--shadow-card);
}
.aside-figure figcaption {
  margin-top: .8rem; font-size: .9rem; color: var(--ink-faint); line-height: 1.5;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--panel); color: #B9B5AF; font-size: .95rem; }
.site-footer .top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-block: clamp(2.8rem, 6vw, 4.5rem);
}
@media (max-width: 960px) { .site-footer .top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-footer .top { grid-template-columns: 1fr; } }
.site-footer .brand-col img { height: 38px; width: auto; margin-bottom: 1rem; }
.site-footer h4 {
  color: var(--white); font-size: 1.02rem; font-weight: 700;
  letter-spacing: .14em; margin-bottom: .9rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; }
.site-footer a { color: #B9B5AF; text-decoration: none; }
.site-footer a:hover { color: var(--amber); }
.site-footer .legal-bar {
  border-top: 1px solid var(--line-dark);
  padding-block: 1.3rem;
  display: flex; flex-wrap: wrap; gap: .8rem 1.8rem; align-items: center;
  font-size: .84rem; color: #8A8680;
}
.site-footer .legal-bar .made {
  margin-left: auto;
}
.site-footer .legal-bar .made a { color: #B9B5AF; font-weight: 700; }
.site-footer .legal-bar .made a:hover { color: var(--amber); }
@media (max-width: 700px) { .site-footer .legal-bar .made { margin-left: 0; } }

/* ---------- Scroll-Reveal ---------- */
/* Nur ausblenden, wenn JS laeuft (main.js setzt html.js) — sonst bliebe Inhalt ohne JS unsichtbar */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; } }

/* ---------- Legal-Seiten ---------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: 1.9rem; margin: 2.4rem 0 .8rem; }
.prose h3 { font-size: 1.3rem; margin: 1.8rem 0 .6rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose a { color: var(--red-text); }
