@import url("../fonts/fonts.css");

/* ============================================================
   LEJOS Sanierungshelden GmbH: Design System
   CI aus Logo extrahiert: Navy #003D6B / Gelb #EDCA35
   Schrift: Montserrat (Logoschrift) + Inter
   ============================================================ */

:root {
  /* Marke */
  --navy: #003d6b;
  --navy-900: #002845;
  --navy-950: #001b2f;
  --navy-700: #004e88;
  --navy-100: #e6eef4;
  --yellow: #edca35;
  --yellow-600: #d3ae1c;
  --yellow-100: #fdf6db;

  /* Neutral */
  --ink: #10161d;
  --ink-2: #46525f;
  --ink-3: #6b7885;
  --line: #dfe5ec;
  --line-2: #eef2f6;
  --bg: #ffffff;
  --bg-soft: #f5f8fa;

  /* Typo */
  --f-display: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --f-text: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --wrap: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --r: 6px;
  --r-lg: 12px;

  --shadow-1: 0 1px 2px rgba(0, 40, 69, .06), 0 4px 14px rgba(0, 40, 69, .06);
  --shadow-2: 0 12px 40px rgba(0, 40, 69, .14);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-text);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--navy); text-decoration-color: color-mix(in srgb, var(--navy) 35%, transparent); text-underline-offset: 3px; }
a:hover { text-decoration-color: var(--yellow); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--navy-900);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-weight: 800; font-size: clamp(2.1rem, 5.2vw, 3.85rem); }
h2 { font-weight: 800; font-size: clamp(1.75rem, 3.6vw, 2.7rem); }
h3 { font-weight: 700; font-size: clamp(1.15rem, 1.7vw, 1.35rem); letter-spacing: -0.01em; }
p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--yellow); color: var(--navy-900); }

/* ---------- Layout ---------- */
.wrap { width: min(var(--wrap), 100% - 2 * var(--pad)); margin-inline: auto; }
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-900); color: #cddbe6; }
.section--navy h2, .section--navy h3 { color: #fff; }

.grid { display: grid; gap: clamp(1rem, 2.5vw, 1.75rem); }
.g-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g-3 { grid-template-columns: repeat(auto-fit, minmax(285px, 1fr)); }
.g-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* ---------- Eyebrow / Section head ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--f-display); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy-700); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--yellow); }
.section--navy .eyebrow { color: var(--yellow); }
.section--navy .eyebrow::before { background: var(--yellow); }

.sect-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.sect-head p { font-size: 1.075rem; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--yellow); --btn-fg: var(--navy-900); --btn-bd: var(--yellow);
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--f-display); font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  padding: .95rem 1.6rem; border-radius: var(--r);
  background: var(--btn-bg); color: var(--btn-fg);
  border: 2px solid var(--btn-bd); cursor: pointer; text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0, 40, 69, .22); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn--navy { --btn-bg: var(--navy); --btn-fg: #fff; --btn-bd: var(--navy); }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--navy-900); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bd: var(--navy); }
.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .35); }
.btn--ghost-light:hover { --btn-bd: var(--yellow); --btn-fg: var(--yellow); }
.btn--sm { padding: .65rem 1.1rem; font-size: .87rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-950); color: #9fb6c7;
  font-size: .82rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; flex-wrap: wrap; gap: .35rem 1.6rem; align-items: center; min-height: 40px; padding-block: .35rem; }
.topbar a { color: #d6e4ee; text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--yellow); }
.topbar .sep { margin-left: auto; }
.topbar .dot { color: var(--yellow); }
@media (max-width: 700px) {
  .topbar .wrap { justify-content: space-between; }
  .topbar span:nth-child(2), .topbar span:nth-child(4), .topbar span:nth-child(5) { display: none; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 1.25rem; min-height: 78px; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 46px; width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.nav a {
  font-family: var(--f-display); font-weight: 600; font-size: .93rem;
  color: var(--navy-900); text-decoration: none;
  padding: .55rem .8rem; border-radius: var(--r); position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: .8rem; right: .8rem; bottom: .3rem;
  height: 2px; background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover::after, .nav a.is-active::after { transform: scaleX(1); }
.nav .btn { margin-left: .7rem; }
.nav .btn::after { display: none; }

.burger {
  display: none; margin-left: auto; width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: var(--r); background: #fff; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.burger span { display: block; width: 20px; height: 2px; background: var(--navy-900); transition: .2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1000px) {
  .burger { display: flex; }
  .nav {
    position: fixed; inset: 118px 0 auto; background: #fff; flex-direction: column;
    align-items: stretch; gap: 0; padding: 1rem var(--pad) 2rem;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow-2);
    transform: translateY(-140%); transition: transform .28s ease; max-height: calc(100dvh - 118px); overflow: auto;
  }
  .nav.is-open { transform: translateY(0); }
  .nav a { padding: .95rem .2rem; border-bottom: 1px solid var(--line-2); font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav .btn { margin: 1rem 0 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--navy-900); color: #c9dae7; overflow: hidden;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3.5rem, 8vw, 6rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 90% at 15% 0%, #000 20%, transparent 75%);
}
.hero::after {
  content: ""; position: absolute; right: -12%; top: -30%; width: 55vw; height: 130%;
  background: radial-gradient(circle at 50% 50%, rgba(237, 202, 53, .16), transparent 62%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; grid-template-columns: 1.05fr .95fr; }
@media (max-width: 940px) { .hero .wrap { grid-template-columns: 1fr; } }

.hero h1 { color: #fff; margin-bottom: .5em; }
.hero h1 .hl { color: var(--yellow); display: inline-block; }
.hero .lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); max-width: 54ch; color: #b9cede; }
.hero .btn-row { margin-top: 2rem; }

.hero-claim {
  display: inline-flex; align-items: center; gap: .65rem;
  background: rgba(237, 202, 53, .12); border: 1px solid rgba(237, 202, 53, .35);
  color: var(--yellow); border-radius: 100px; padding: .45rem 1rem .45rem .6rem;
  font-family: var(--f-display); font-weight: 700; font-size: .82rem; letter-spacing: .06em;
  text-transform: uppercase; margin-bottom: 1.6rem;
}
.hero-claim .pip { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 4px rgba(237, 202, 53, .2); }

.hero-media { position: relative; }
.hero-media img { border-radius: var(--r-lg); box-shadow: 0 30px 70px rgba(0, 0, 0, .45); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-media::before {
  content: ""; position: absolute; left: -14px; top: -14px; width: 78px; height: 78px;
  border-left: 5px solid var(--yellow); border-top: 5px solid var(--yellow); border-radius: 4px 0 0 0;
}
.hero-media::after {
  content: ""; position: absolute; right: -14px; bottom: -14px; width: 78px; height: 78px;
  border-right: 5px solid var(--yellow); border-bottom: 5px solid var(--yellow); border-radius: 0 0 4px 0;
}
.hero-badge {
  position: absolute; left: -18px; bottom: 28px; z-index: 3;
  background: #fff; color: var(--navy-900); border-radius: var(--r);
  padding: .9rem 1.15rem; box-shadow: var(--shadow-2); max-width: 230px;
  border-left: 5px solid var(--yellow);
}
.hero-badge b { font-family: var(--f-display); font-size: 1.9rem; display: block; line-height: 1; color: var(--navy); }
.hero-badge span { font-size: .8rem; line-height: 1.35; display: block; margin-top: .3rem; color: var(--ink-2); }
@media (max-width: 560px) { .hero-badge { left: 8px; bottom: 8px; } }

/* ---------- Trustbar ---------- */
.trustbar { background: var(--navy-950); border-top: 1px solid rgba(255, 255, 255, .07); }
.trustbar .wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: rgba(255, 255, 255, .08); }
.trustbar .ti { background: var(--navy-950); padding: 1.35rem 1.25rem; display: flex; gap: .8rem; align-items: flex-start; }
.trustbar svg { flex: 0 0 22px; margin-top: 2px; color: var(--yellow); }
.trustbar b { display: block; font-family: var(--f-display); font-weight: 700; color: #fff; font-size: .95rem; line-height: 1.25; }
.trustbar span { display: block; font-size: .8rem; color: #8fa9bd; line-height: 1.4; margin-top: .15rem; }

/* ---------- Cards / Leistungen ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); border-color: color-mix(in srgb, var(--navy) 25%, var(--line)); }
.card__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--navy-100); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__media::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 4px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.card:hover .card__media::after { transform: scaleX(1); }
.card__body { padding: 1.5rem 1.5rem 1.7rem; flex: 1; display: flex; flex-direction: column; }
.card__body h3 { margin-bottom: .5rem; }
.card__body p { font-size: .96rem; }
.card__list { list-style: none; margin: .9rem 0 0; padding: 0; font-size: .9rem; }
.card__list li { position: relative; padding-left: 1.4rem; margin-bottom: .35rem; }
.card__list li::before { content: ""; position: absolute; left: 0; top: .58em; width: 8px; height: 8px; background: var(--yellow); border-radius: 2px; }

/* ---------- Prozess ---------- */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; }
.step { position: relative; padding-top: 3.9rem; }
.step::before {
  counter-increment: s; content: counter(s, decimal-leading-zero);
  position: absolute; top: 0; left: 0; width: 56px; height: 56px;
  display: grid; place-items: center; border-radius: var(--r);
  background: var(--yellow); color: var(--navy-900);
  font-family: var(--f-display); font-weight: 800; font-size: 1.15rem;
}
.step::after {
  content: ""; position: absolute; top: 27px; left: 68px; right: -1.5rem; height: 2px;
  background: repeating-linear-gradient(90deg, rgba(237, 202, 53, .5) 0 8px, transparent 8px 16px);
}
.step:last-child::after { display: none; }
@media (max-width: 760px) { .step::after { display: none; } }
.step h3 { color: #fff; font-size: 1.08rem; margin-bottom: .4rem; }
.step p { font-size: .93rem; color: #a8c1d4; }

/* ---------- Nachweise ---------- */
.proof { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 1.15rem; }
.proof__item {
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--navy);
  border-radius: var(--r); padding: 1.35rem 1.4rem;
}
.proof__item h3 { font-size: 1.02rem; margin-bottom: .35rem; display: flex; align-items: center; gap: .55rem; }
.proof__item h3 svg { flex: 0 0 18px; color: var(--navy); }
.proof__item p { font-size: .9rem; color: var(--ink-3); }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.75rem; }
.chip {
  font-family: var(--f-display); font-weight: 700; font-size: .8rem; letter-spacing: .03em;
  background: var(--navy-100); color: var(--navy-900); border: 1px solid color-mix(in srgb, var(--navy) 18%, transparent);
  padding: .5rem .9rem; border-radius: 100px; display: inline-flex; align-items: center; gap: .45rem;
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); }

.note {
  margin-top: 1.5rem; font-size: .84rem; color: var(--ink-3);
  border-left: 3px solid var(--yellow); padding: .3rem 0 .3rem .9rem;
}



/* ---------- Split (Über uns) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split--rev .split__media { order: -1; }
@media (max-width: 900px) { .split--rev .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; box-shadow: var(--shadow-1); }
.split__media .stack { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.split__media .stack img { aspect-ratio: 1/1; }
.split__media .stack img:first-child { grid-column: 1 / -1; aspect-ratio: 16/9; }
.split__media .stack--2 { grid-template-columns: 1fr; }
.split__media .stack--2 img { aspect-ratio: 16/10; }
.split__media .stack--2 img:first-child { grid-column: auto; aspect-ratio: 16/10; }

.ticks { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.ticks li { position: relative; padding-left: 2rem; margin-bottom: .7rem; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 20px; height: 20px; border-radius: 4px;
  background: var(--yellow) no-repeat center / 12px 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23002845' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 8.5l4 4L14 3.5'/%3E%3C/svg%3E");
}
.section--navy .ticks li { color: #c9dae7; }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--navy-100); grid-column: span 4; }
.gallery figure img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; transition: transform .6s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figure.wide { grid-column: span 8; }
.gallery figure.wide img { aspect-ratio: 16/9; }
.gallery figure.tall { grid-column: span 4; }
.gallery figure.tall img { aspect-ratio: 3/4; }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 1.6rem 1.1rem .9rem;
  background: linear-gradient(transparent, rgba(0, 27, 47, .88));
  color: #fff; font-family: var(--f-display); font-weight: 600; font-size: .88rem;
}
@media (max-width: 860px) {
  .gallery figure, .gallery figure.wide, .gallery figure.tall { grid-column: span 6; }
  .gallery figure.tall img { aspect-ratio: 4/3; }
}
@media (max-width: 520px) { .gallery figure, .gallery figure.wide, .gallery figure.tall { grid-column: span 12; } }

/* Platzhalter, falls ein Foto (noch) fehlt */
.img-missing {
  display: grid; place-items: center; text-align: center; padding: 1.5rem;
  background: repeating-linear-gradient(45deg, #eef3f7 0 12px, #e4ecf2 12px 24px);
  color: var(--navy); font-family: var(--f-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .04em; line-height: 1.5; width: 100%; height: 100%; min-height: 180px;
}

/* ---------- Zahlen ---------- */
.kpis { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: rgba(255, 255, 255, .12); border-radius: var(--r-lg); overflow: hidden; }
.kpi { background: var(--navy-900); padding: 1.7rem 1.4rem; }
.kpi b { display: block; font-family: var(--f-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--yellow); line-height: 1; }
.kpi span { display: block; font-size: .87rem; color: #a8c1d4; margin-top: .5rem; }

/* ---------- FAQ ---------- */
.faq-wrap { display: grid; grid-template-columns: 380px 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 940px) { .faq-wrap { grid-template-columns: 1fr; } }
.faq-aside { position: sticky; top: 110px; }
@media (max-width: 940px) { .faq-aside { position: static; } }
.faq-card {
  background: var(--navy-900); color: #c1d5e3; border-radius: var(--r-lg);
  padding: 1.6rem 1.7rem; margin-top: 1.5rem;
}
.faq-card h3 { color: #fff; font-size: 1.05rem; margin-bottom: .5rem; }
.faq-card p { font-size: .93rem; margin-bottom: 1.1rem; }
.faq { max-width: 860px; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--r); background: #fff;
  margin-bottom: .8rem; overflow: hidden; transition: border-color .2s;
}
.faq details[open] { border-color: color-mix(in srgb, var(--navy) 32%, transparent); box-shadow: var(--shadow-1); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 3.2rem 1.15rem 1.3rem; position: relative;
  font-family: var(--f-display); font-weight: 700; color: var(--navy-900); font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 1.2rem; top: 50%; width: 13px; height: 13px;
  margin-top: -7px; border-right: 2.5px solid var(--navy); border-bottom: 2.5px solid var(--navy);
  transform: rotate(45deg); transition: transform .2s ease; transform-origin: 60% 60%;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq__body { padding: 0 1.3rem 1.3rem; font-size: .97rem; }

/* ---------- Kontakt ---------- */
.contact { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 3.5rem); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.contact-list { list-style: none; padding: 0; margin: 1.75rem 0 0; }
.contact-list li { display: flex; gap: .95rem; padding: .95rem 0; border-bottom: 1px solid rgba(255, 255, 255, .1); align-items: flex-start; }
.contact-list svg { flex: 0 0 20px; color: var(--yellow); margin-top: 3px; }
.contact-list b { display: block; font-family: var(--f-display); color: #fff; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: .15rem; }
.contact-list a { color: #dbe8f1; text-decoration: none; font-size: 1.06rem; font-weight: 500; }
.contact-list a:hover { color: var(--yellow); }

.form { background: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-2); }
.section--navy .form h3, .form h3 { color: var(--navy-900); margin-bottom: .3rem; }
.form .hint { font-size: .87rem; color: var(--ink-3); margin-bottom: 1.5rem; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-family: var(--f-display); font-weight: 600; font-size: .84rem; color: var(--navy-900); margin-bottom: .4rem; }
.field .req { color: #c0392b; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: .97rem; color: var(--ink);
  padding: .8rem .9rem; border: 1px solid var(--line); border-radius: var(--r); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(0, 61, 107, .12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .84rem; color: var(--ink-3); margin: 1.1rem 0 1.4rem; }
.consent input { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 2px; accent-color: var(--navy); }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- CTA-Band ---------- */
.cta-band { background: var(--yellow); }
.cta-band .wrap { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; padding-block: clamp(2rem, 4vw, 3rem); }
.cta-band h2 { margin: 0; font-size: clamp(1.4rem, 2.6vw, 2rem); }
.cta-band p { color: var(--navy-900); opacity: .8; margin: .4rem 0 0; font-weight: 500; }


/* ---------- CTA-Bausteine ---------- */
.cta-micro {
  display: flex; flex-wrap: wrap; gap: .35rem 1.4rem;
  margin: 1.4rem 0 0; font-size: .87rem; color: #9db6cb;
}
.cta-micro span { display: inline-flex; align-items: center; gap: .45rem; }
.cta-micro span::before {
  content: ""; width: 15px; height: 15px; flex: 0 0 15px; border-radius: 50%;
  background: rgba(237, 202, 53, .18) no-repeat center / 9px 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23EDCA35' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 8.5l4 4L14 3.5'/%3E%3C/svg%3E");
}

.cta-kicker {
  display: block; font-family: var(--f-display); font-weight: 700; font-size: .74rem;
  letter-spacing: .17em; text-transform: uppercase; margin-bottom: .5rem;
  color: color-mix(in srgb, var(--navy-900) 62%, transparent);
}
.cta-band--split .wrap { align-items: center; }
.cta-band--split h2 { margin: 0 0 .35rem; }
.cta-band--split p { max-width: 56ch; }

.cta-box {
  margin-top: clamp(2rem, 4vw, 2.75rem);
  background: var(--navy-900); color: #c3d7e5; border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid; grid-template-columns: 1fr auto; gap: 1.5rem 2.5rem; align-items: center;
  border-left: 6px solid var(--yellow);
}
@media (max-width: 820px) { .cta-box { grid-template-columns: 1fr; } }
.cta-box h3 { color: #fff; margin-bottom: .5rem; }
.cta-box p { font-size: .96rem; margin: 0; max-width: 58ch; }
.cta-box .btn--ghost { --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .32); }
.cta-box .btn--ghost:hover { --btn-bd: var(--yellow); --btn-fg: var(--yellow); }
.cta-box--soft { background: var(--navy); }

.chips-intro {
  margin: 1.9rem 0 0; font-family: var(--f-display); font-weight: 600;
  font-size: .85rem; letter-spacing: .02em; color: var(--ink-3);
}
.chips-intro + .chips { margin-top: .7rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: #8ba5b9; font-size: .92rem; padding: clamp(3rem, 6vw, 4.5rem) 0 0; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer a { color: #b8cdda; text-decoration: none; }
.footer a:hover { color: var(--yellow); }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: .55rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; }
@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo { height: 52px; width: auto; margin-bottom: 1.2rem; }
.kleingedruckt {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.kleingedruckt p {
  margin: 0; max-width: 100ch;
  font-size: .78rem; line-height: 1.6; color: #6f8698;
}
.kleingedruckt strong { color: #8ba5b9; font-weight: 600; }

.footer__bar {
  margin-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .1); padding: 1.35rem 0;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .84rem;
}

/* ---------- Floating Aktionen ---------- */
.fab { position: fixed; right: 18px; bottom: 18px; z-index: 70; display: flex; flex-direction: column; gap: .6rem; }
.fab a {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: var(--shadow-2); color: #fff; text-decoration: none;
  transition: transform .18s ease;
}
.fab a:hover { transform: scale(1.08); }
.fab .f-tel { background: var(--navy); }
.fab .f-wa { background: #25d366; }
@media (min-width: 1001px) { .fab { display: none; } }

/* ---------- Motion ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- A11y ---------- */
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--yellow); color: var(--navy-900);
  padding: .8rem 1.2rem; font-weight: 700; z-index: 100; border-radius: 0 0 var(--r) 0;
}
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--yellow); outline-offset: 2px; border-radius: 3px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
