/* ============================================================
   Volker Rademacher HLA – Website Design Draft
   Stylesheet – zentrale Designsprache
   Farben, Typografie und Layout hier zentral steuerbar.
   Markenfarben & Futura direkt aus dem Logo abgeleitet.
   ============================================================ */

/* ---------- Hausschrift: Futura ---------- */
@font-face {
  font-family: "Futura"; font-style: normal; font-weight: 300; font-display: swap;
  src: url("../assets/fonts/futura-light.ttf") format("truetype");
}
@font-face {
  font-family: "Futura"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../assets/fonts/futura-book.ttf") format("truetype");
}
@font-face {
  font-family: "Futura"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("../assets/fonts/futura-bold.ttf") format("truetype");
}

:root {
  /* --- Markenfarben (aus dem Logo entnommen) --- */
  --brand:        #00ADEE;   /* Cyan-Blau: Wasser/Luft – Bildmarke */
  --brand-dark:   #0090cc;   /* tieferes Cyan: Links, Hover, Text auf Weiß */
  --brand-darker: #06344a;   /* Marine/Navy: dunkle Flächen, harmoniert mit Cyan */
  --accent:       #EE1C25;   /* Rot: Feuer/Wärme – primäre Handlungsaufrufe */
  --accent-dark:  #cc141c;
  --warm:         #EE1C25;   /* Alias Rot (Wärme-Akzent) */

  /* --- Neutrale Töne --- */
  --ink:      #191919;       /* Haupt-Textfarbe (Schwarz wie „rademacher") */
  --muted:    #5c6d75;       /* Sekundärtext */
  --line:     #e2edf2;       /* Trennlinien / Rahmen */
  --bg:       #ffffff;
  --bg-soft:  #ecf7fe;       /* leicht cyan-getönter Abschnittshintergrund */
  --bg-dark:  #06344a;       /* dunkler Abschnitt / Footer (Navy) */

  /* --- Form --- */
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 18px 40px -20px rgba(6, 52, 74, .35);
  --shadow-sm: 0 8px 24px -14px rgba(6, 52, 74, .4);

  --maxw: 1200px;
  --gap:  clamp(1.25rem, 3vw, 2.5rem);

  --font: "Futura", "Avant Garde", "Century Gothic", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Futura", var(--font);
}

/* ---------- Reset / Basis ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0 0 .5em; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: #dfeaed; }

/* ---------- Wiederkehrende Bausteine ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head);
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand-dark);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.section--dark .eyebrow { color: #5fc7f2; }

.h-lead { font-size: clamp(1.9rem, 4vw, 2.85rem); max-width: 22ch; }
.sub-lead { font-size: 1.075rem; color: var(--muted); max-width: 60ch; }
.section--dark .sub-lead { color: #b9cdd3; }

.section-head { max-width: 780px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .sub-lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--accent); --_fg: #fff;   /* Primär = Rot (Wärme/Handlung) */
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .9rem 1.5rem; border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  background: var(--_bg); color: var(--_fg);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); }
.btn--cyan { --_bg: var(--brand-dark); }   /* Sekundär = Cyan */
.btn--warm { --_bg: var(--accent); }
.btn--ghost {
  background: transparent; color: var(--brand-dark); border-color: var(--line); box-shadow: none;
}
.section--dark .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.btn--ghost:hover { border-color: var(--brand); }
.btn svg { width: 18px; height: 18px; }

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-head); font-weight: 700; color: var(--brand-dark);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Bild-Platzhalter ---------- */
.ph {
  position: relative; display: flex; align-items: flex-end;
  background:
    linear-gradient(135deg, rgba(6,52,74,.94), rgba(0,120,168,.92)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 12px, transparent 12px 24px);
  color: #eaf3f5; border-radius: var(--radius); overflow: hidden;
  min-height: 220px; padding: 1.1rem 1.25rem;
}
.ph--accent { background: linear-gradient(135deg, rgba(0,173,238,.92), rgba(6,52,74,.95)); }
.ph--tall { min-height: 420px; }
.ph::after {
  content: "◇ Platzhalter"; position: absolute; top: .85rem; right: 1rem;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  opacity: .7; font-family: var(--font-head);
}
.ph__label {
  position: relative; z-index: 1; font-size: .85rem; line-height: 1.4;
  background: rgba(0,0,0,.28); padding: .5rem .75rem; border-radius: 8px;
  backdrop-filter: blur(2px);
}
.ph__icon { position: absolute; inset: 0; display: grid; place-items: center; opacity: .35; }
.ph__icon svg { width: 54px; height: 54px; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--brand-darker); color: #cfe1e6;
  font-size: .85rem;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 42px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: .45rem; padding-block: .35rem; }
.topbar a:hover { color: #fff; }
.topbar__group { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar svg { width: 15px; height: 15px; color: var(--accent); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 76px; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--ink); }
.brand__mark {
  width: 44px; height: 44px; border-radius: 11px; flex: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff; display: grid; place-items: center; font-weight: 700; letter-spacing: -.03em;
  box-shadow: var(--shadow-sm);
}
.brand__mark small { font-size: .62rem; }
.brand span small { display: block; font-family: var(--font); font-weight: 500; font-size: .72rem; color: var(--muted); letter-spacing: .02em; }

.nav__links { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: block; padding: .55rem .85rem; border-radius: 8px;
  font-weight: 500; font-size: .97rem; color: var(--ink); transition: background .15s, color .15s;
}
.nav__links a:hover { background: var(--bg-soft); color: var(--brand); }
.nav__cta { display: flex; align-items: center; gap: .75rem; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; color: var(--ink); }
.nav__toggle svg { width: 28px; height: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; background: var(--bg-soft); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center; padding-block: clamp(3rem, 7vw, 5.5rem);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: .4rem .9rem; font-size: .84rem; font-weight: 600; color: var(--brand-dark);
  box-shadow: var(--shadow-sm); margin-bottom: 1.4rem;
}
.hero__badge svg { width: 16px; height: 16px; color: var(--accent); }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); margin-bottom: 1.1rem; }
.hero h1 .hl { color: var(--brand); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .06em; height: .28em;
  background: rgba(0,173,238,.25); z-index: -1; border-radius: 3px;
}
.hero p.sub-lead { font-size: 1.15rem; margin-bottom: 1.9rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; }
.hero__trust div { display: flex; align-items: center; gap: .55rem; font-size: .92rem; font-weight: 500; }
.hero__trust svg { width: 20px; height: 20px; color: var(--accent-dark); flex: none; }

.hero__media { position: relative; }
.hero__media .ph { min-height: 480px; }
.hero__float {
  position: absolute; left: -22px; bottom: 28px;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 1rem 1.15rem; display: flex; align-items: center; gap: .85rem; max-width: 250px;
}
.hero__float .ico { width: 42px; height: 42px; border-radius: 10px; background: var(--accent); color: #fff; display: grid; place-items: center; flex: none; }
.hero__float .ico svg { width: 22px; height: 22px; }
.hero__float b { display: block; font-family: var(--font-head); font-size: 1.35rem; line-height: 1; }
.hero__float small { color: var(--muted); font-size: .82rem; }

/* ============================================================
   USP-Leiste
   ============================================================ */
.usps { border-bottom: 1px solid var(--line); }
.usps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem); }
.usp { display: flex; gap: .9rem; align-items: flex-start; }
.usp__ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--bg-soft); color: var(--brand); display: grid; place-items: center; }
.usp__ic svg { width: 24px; height: 24px; }
.usp h3 { font-size: 1.02rem; margin-bottom: .15rem; }
.usp p { font-size: .9rem; color: var(--muted); margin: 0; }

/* ============================================================
   Leistungen
   ============================================================ */
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.1rem, 2.5vw, 1.75rem); }
.service-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.service-card .ph { border-radius: 0; min-height: 180px; }
.service-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.service-card__ic {
  width: 48px; height: 48px; border-radius: 12px; margin: -3.4rem 0 1rem; position: relative; z-index: 2;
  background: #fff; box-shadow: var(--shadow-sm); color: var(--brand); display: grid; place-items: center;
}
.service-card__ic svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.22rem; margin-bottom: .5rem; }
.service-card p { font-size: .95rem; color: var(--muted); margin-bottom: 1.1rem; }
.service-card .link-arrow { margin-top: auto; font-size: .93rem; }

/* großes Feature-Angebot */
.feature__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.feature__media .ph { min-height: 440px; }
.check-list { list-style: none; margin: 1.5rem 0; padding: 0; display: grid; gap: .85rem; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; font-weight: 500; }
.check-list svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 1px; }
.feature__note {
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1.4rem;
  background: rgba(238,28,37,.1); color: var(--accent-dark); border-radius: 999px;
  padding: .45rem 1rem; font-weight: 700; font-size: .9rem;
}
.feature__note svg { width: 18px; height: 18px; }

/* ============================================================
   Kennzahlen / Warum wir
   ============================================================ */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat b {
  display: block; font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.1rem); line-height: 1; color: #fff;
}
.stat b .u { color: var(--accent); }
.stat span { color: #b9cdd3; font-size: .95rem; }
.stat + .stat { position: relative; }

/* ============================================================
   Referenzen
   ============================================================ */
.projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.project-card .ph { min-height: 300px; border-radius: 0; }
.project-card__overlay {
  position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem; color: #fff;
  background: linear-gradient(to top, rgba(7,53,66,.85) 15%, rgba(7,53,66,.15) 60%, transparent);
}
.project-card__tag { align-self: flex-start; background: var(--accent); color: #fff; font-size: .74rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .25rem .7rem; border-radius: 999px; margin-bottom: .6rem; }
.project-card h3 { font-size: 1.2rem; margin: 0 0 .2rem; }
.project-card p { font-size: .88rem; margin: 0; opacity: .9; }

/* ============================================================
   Ablauf / Schritte
   ============================================================ */
.steps__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.5vw, 1.75rem); counter-reset: step; }
.step { position: relative; padding-top: 1rem; }
.step__num {
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--brand); color: #fff; margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.step p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ============================================================
   Karriere
   ============================================================ */
.career {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(6,52,74,.95) 0%, rgba(6,52,74,.86) 45%, rgba(10,71,88,.74) 100%),
    url("../assets/img/karriere.jpg") center/cover no-repeat;
  color: #eaf3f5; padding: clamp(2.25rem, 5vw, 3.75rem);
}
.career__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.career h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.career .sub-lead { color: #bcd3d9; }
.career__jobs { display: grid; gap: .8rem; }
.job-pill {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem; transition: background .2s, transform .2s;
}
.job-pill:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.job-pill b { font-family: var(--font-head); font-size: 1.05rem; }
.job-pill small { color: #a8c4cb; display: block; font-size: .82rem; }
.job-pill svg { width: 22px; height: 22px; color: var(--accent); flex: none; }

/* ============================================================
   Kontakt / CTA
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact__info { display: grid; gap: 1.15rem; margin: 1.75rem 0; }
.contact__row { display: flex; gap: .9rem; align-items: flex-start; }
.contact__row .ic { width: 44px; height: 44px; flex: none; border-radius: 12px; background: var(--bg-soft); color: var(--brand); display: grid; place-items: center; }
.contact__row .ic svg { width: 22px; height: 22px; }
.contact__row b { display: block; font-family: var(--font-head); }
.contact__row span { color: var(--muted); font-size: .95rem; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem .95rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; font-size: .95rem; background: var(--bg-soft); transition: border-color .15s, background .15s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand); background: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form small { color: var(--muted); font-size: .8rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--bg-dark); color: #a9c1c8; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer .brand span small { color: #90aab2; }
.footer__about { font-size: .92rem; max-width: 32ch; }
.footer__col h4 { color: #fff; font-size: .95rem; letter-spacing: .03em; text-transform: uppercase; margin-bottom: 1rem; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer__col a { font-size: .93rem; transition: color .15s; }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: clamp(2rem, 5vw, 3.5rem); padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem;
}
.footer__bottom a:hover { color: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid, .feature__grid, .contact__grid, .career__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media .ph { min-height: 320px; }
  .usps__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid, .projects__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: .75rem clamp(1.1rem, 4vw, 2rem) 1.25rem;
    display: none;
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: .8rem .5rem; border-bottom: 1px solid var(--line); }
  .nav__toggle { display: block; }
  .nav__cta .btn { display: none; }
  .topbar { display: none; }
  .hero__float { left: 12px; right: 12px; max-width: none; }
}

@media (max-width: 540px) {
  .usps__grid, .services__grid, .projects__grid, .steps__grid, .form__row, .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ERWEITERUNG: echte Fotos, Bewegung & individuelle Elemente
   ============================================================ */

/* ---------- Scroll-Reveal (Fade-in) ----------
   Nur aktiv, wenn JS läuft (.js am <html>). Ohne JS ist alles sichtbar. */
.js [data-reveal]{
  opacity:0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.js [data-reveal="left"]{ transform: translateX(-36px); }
.js [data-reveal="right"]{ transform: translateX(36px); }
.js [data-reveal="zoom"]{ transform: scale(.94); }
.js [data-reveal].in{ opacity:1; transform: none; }

/* ---------- Foto-Rahmen ---------- */
.media{ position:relative; border-radius: var(--radius); overflow:hidden; background:var(--brand-darker); }
.media img{ width:100%; height:100%; object-fit:cover; display:block; transition: transform .8s cubic-bezier(.2,.6,.2,1); }
.media--tall{ aspect-ratio: 4/5; }
.media--wide{ aspect-ratio: 16/10; }
.media--port{ aspect-ratio: 3/4; }
/* dezenter Marken-Verlauf über Fotos für einheitlichen Look */
.media--tint::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(150deg, rgba(0,173,238,.10) 0%, rgba(6,52,74,.30) 100%);
}
/* dekorativer Cyan-Rahmen, leicht versetzt hinter dem Bild */
.media-deco{ position:relative; isolation:isolate; }
.media-deco::before{
  content:""; position:absolute; z-index:-1; inset:auto -14px -14px auto;
  width:62%; height:62%; border:3px solid var(--brand);
  border-radius: var(--radius); opacity:.55;
}
.media-deco::after{
  content:""; position:absolute; z-index:-1; left:-16px; top:-16px;
  width:78px; height:78px; border-radius:14px;
  background: repeating-linear-gradient(45deg, var(--brand) 0 6px, transparent 6px 12px);
  opacity:.5;
}
/* Cyan-Eck-Akzent (L-Form) auf Medien */
.media__corner{ position:absolute; left:16px; bottom:16px; width:34px; height:34px; z-index:2;
  border-left:3px solid #fff; border-bottom:3px solid #fff; opacity:.9; }

/* ---------- Parallax ---------- */
[data-parallax]{ will-change: transform; }
.parallax-band{ position:relative; overflow:hidden; }
.parallax-band__bg{ position:absolute; inset:-12% 0; z-index:0; }
.parallax-band__bg img{ width:100%; height:100%; object-fit:cover; }
.parallax-band__bg::after{ content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(6,52,74,.92), rgba(6,52,74,.72)); }
.parallax-band > .container{ position:relative; z-index:1; }

/* ---------- Wellen-Trenner (aus dem Logo abgeleitet) ---------- */
.wave{ display:block; width:100%; height:auto; line-height:0; }
.wave svg{ display:block; width:100%; height:70px; }
@media (max-width:640px){ .wave svg{ height:44px; } }

/* ---------- Keyword-Laufband ---------- */
.marquee{ background:var(--brand-darker); color:#eaf3f5; overflow:hidden; border-block:1px solid rgba(255,255,255,.06); }
.marquee__track{ display:flex; gap:0; width:max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track{ animation-play-state: paused; }
.marquee__item{ display:inline-flex; align-items:center; gap:1.5rem; padding:1rem 0; font-family:var(--font-head); font-weight:700; font-size:1.05rem; letter-spacing:.02em; }
.marquee__item span{ padding-inline:1.5rem; }
.marquee__item svg{ width:16px; height:16px; color:var(--brand); }
@keyframes marquee{ to{ transform: translateX(-50%); } }

/* ---------- Header: kompakter beim Scrollen ---------- */
.site-header{ transition: box-shadow .25s ease, background .25s ease; }
.site-header.scrolled{ box-shadow: 0 10px 30px -18px rgba(6,52,74,.5); background: rgba(255,255,255,.96); }
.site-header.scrolled .nav{ min-height: 66px; }
.site-header .nav{ transition: min-height .25s ease; }

/* ---------- Hero mit Foto ---------- */
.hero{ position:relative; }
.hero__media .media{ aspect-ratio: 4/5; box-shadow: var(--shadow); }
.hero__media .media img{ height:118%; }               /* Reserve für Parallax */
.hero__scrollcue{ display:inline-flex; align-items:center; gap:.5rem; margin-top:1.75rem; color:var(--muted); font-size:.85rem; font-weight:600; }
.hero__scrollcue .dot{ width:26px; height:40px; border:2px solid var(--brand); border-radius:14px; position:relative; }
.hero__scrollcue .dot::after{ content:""; position:absolute; left:50%; top:8px; width:4px; height:8px; border-radius:2px; background:var(--brand); transform:translateX(-50%); animation: cue 1.5s ease-in-out infinite; }
@keyframes cue{ 0%,100%{ opacity:0; transform:translate(-50%,0);} 50%{opacity:1; transform:translate(-50%,8px);} }

/* ---------- Kennzahlen auf Parallax ---------- */
.stats--band{ padding-block: clamp(3.5rem,7vw,5.5rem); }

/* ---------- Service-Karten: Foto-Zoom bei Hover ---------- */
.service-card .media{ border-radius:0; aspect-ratio:16/10; }
.service-card:hover .media img{ transform: scale(1.07); }

/* ---------- Projekt-Karten: echtes Foto ---------- */
.project-card .media{ border-radius:0; aspect-ratio: 4/5; }
.project-card:hover .media img{ transform: scale(1.06); }

/* ---------- feiner Wellen-Hintergrund in soften Sektionen ---------- */
.section--soft{ position:relative; }

/* ---------- Ablauf: große Kontur-Ziffern ---------- */
.step{ position:relative; }
.step::before{
  content: attr(data-n);
  position:absolute; right:6px; top:-18px; z-index:0;
  font-family:var(--font-head); font-weight:700; font-size:4.5rem; line-height:1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(0,173,238,.25);
}
.step > *{ position:relative; z-index:1; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity:1 !important; transform:none !important; transition:none !important; }
  .marquee__track{ animation:none !important; }
  .hero__scrollcue .dot::after{ animation:none !important; }
  [data-parallax]{ transform:none !important; }
  html{ scroll-behavior:auto; }
}

/* ============================================================
   HERO – full-bleed mit Foto & Parallax (ersetzt Zwei-Spalten-Hero)
   ============================================================ */
.hero-full{ position:relative; min-height: 90vh; display:flex; align-items:center; overflow:hidden; background:var(--brand-darker); color:#fff; }
.hero-full__bg{ position:absolute; inset:-8% 0; z-index:0; }
.hero-full__bg img{ width:100%; height:100%; object-fit:cover; display:block; }
.hero-full__bg::after{ content:""; position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(6,52,74,.94) 0%, rgba(6,52,74,.78) 40%, rgba(6,52,74,.34) 100%); }
.hero-full > .container{ position:relative; z-index:2; padding-block: clamp(4.5rem,10vw,7.5rem); width:100%; }
.hero-full__inner{ max-width: 660px; }
.hero-full__badge{
  display:inline-flex; align-items:center; gap:.5rem; margin-bottom:1.5rem;
  background: rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.2);
  border-radius:999px; padding:.45rem 1rem; font-size:.85rem; font-weight:700; color:#fff;
  backdrop-filter: blur(6px);
}
.hero-full__badge svg{ width:16px; height:16px; color:var(--brand); }
.hero-full h1{ color:#fff; font-size: clamp(2.4rem, 5.4vw, 4rem); margin-bottom:1.15rem; }
.hero-full h1 .hl{ color:#fff; position:relative; white-space:nowrap; }
.hero-full h1 .hl::after{ content:""; position:absolute; left:0; right:0; bottom:.05em; height:.22em; background:var(--brand); z-index:-1; border-radius:3px; opacity:.85; }
.hero-full .sub-lead{ color:#d2e3e9; font-size:1.18rem; max-width:52ch; margin-bottom:1.9rem; }
.hero-full__actions{ display:flex; flex-wrap:wrap; gap:.85rem; margin-bottom:2rem; }
.hero-full__trust{ display:flex; flex-wrap:wrap; gap:1rem 2rem; }
.hero-full__trust div{ display:flex; align-items:center; gap:.55rem; font-size:.95rem; font-weight:600; color:#eaf3f5; }
.hero-full__trust svg{ width:20px; height:20px; color:var(--brand); flex:none; }
.hero-full__stat{
  position:absolute; right: clamp(1rem,4vw,3rem); bottom: clamp(1.5rem,5vw,3.5rem); z-index:2;
  background: rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(10px); border-radius: var(--radius); padding:1.1rem 1.4rem;
  display:flex; align-items:center; gap:.9rem; color:#fff; box-shadow: var(--shadow);
}
.hero-full__stat .ic{ width:44px; height:44px; border-radius:12px; background:var(--accent); display:grid; place-items:center; flex:none; }
.hero-full__stat .ic svg{ width:24px; height:24px; }
.hero-full__stat b{ display:block; font-family:var(--font-head); font-size:1.5rem; line-height:1; }
.hero-full__stat small{ color:#cfe0e6; font-size:.82rem; }
.hero-full__cue{ position:absolute; left:50%; bottom:1.1rem; transform:translateX(-50%); z-index:2; }
.hero-full__cue .dot{ width:26px; height:42px; border:2px solid rgba(255,255,255,.6); border-radius:14px; display:block; position:relative; }
.hero-full__cue .dot::after{ content:""; position:absolute; left:50%; top:8px; width:4px; height:8px; border-radius:2px; background:#fff; transform:translateX(-50%); animation: cue 1.5s ease-in-out infinite; }
@media (max-width:640px){
  .hero-full{ min-height: 82vh; }
  .hero-full__stat{ display:none; }
}
