/* =========================================================================
   TITT FLACHDACHSYSTEME
   Restraint over decoration. Typography, spacing, hairlines.
   Ink #0a2540 · one blue accent · Schibsted Grotesk
   ========================================================================= */

:root {
  /* ---- ink scale (brand-aligned navy) ---- */
  --ink: #0c1d44;          /* headings */
  --body: #404e69;         /* body copy */
  --muted: #69748b;        /* secondary */
  --faint: #8b94a8;        /* tertiary / placeholders */

  --bg: #ffffff;
  --soft: #f4f7fc;         /* alternating section */
  --line: #e7ecf4;         /* hairline (rest) */
  --line-2: #d8dfeb;       /* hairline (controls) */

  /* ---- brand: sampled from logo (#143382) ---- */
  --brand: #143382;        /* logo / primary */
  --brand-hover: #0f2868;
  --brand-700: #1b3f96;
  --brand-600: #2349a8;
  --brand-500: #3460d4;    /* bright accent / glow */
  --brand-400: #4f7ce8;    /* highlight on dark */
  --brand-300: #8aa6ef;
  --brand-100: #d4ddf2;
  --brand-50:  #eef2fb;

  /* ---- dark surfaces ---- */
  --brand-deep: #0a1c4d;
  --brand-ink: #07153b;
  --glow: #3460d4;

  --green: #14a06a;
  --green-50: #e6f6ef;
  --green-300: #59c79a;
  --rose: #c1502f;
  --rose-50: #f7ebe6;

  --font: 'Schibsted Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --maxw: 1200px;
  --pad: clamp(20px, 5vw, 44px);
  --sec: clamp(80px, 8vw, 120px);

  --r-xs: 6px;
  --r-sm: 8px;
  --r: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* ---- elevation ---- */
  --shadow-xs: 0 1px 1px rgba(12,29,68,.05);
  --shadow-sm: 0 1px 2px rgba(12,29,68,.06), 0 1px 3px rgba(12,29,68,.05);
  --shadow: 0 2px 5px -1px rgba(12,29,68,.07), 0 1px 3px -1px rgba(12,29,68,.06);
  --shadow-md: 0 8px 18px -6px rgba(12,29,68,.12), 0 3px 7px -3px rgba(12,29,68,.07);
  --shadow-lg: 0 24px 50px -14px rgba(12,29,68,.2), 0 8px 18px -10px rgba(12,29,68,.1);
  --shadow-brand: 0 10px 26px -8px rgba(20,51,130,.5), 0 2px 6px -2px rgba(10,28,77,.4);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.45, .5, 1);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: var(--font); color: var(--body); background: var(--bg);
  font-size: 17px; line-height: 1.6; -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility;
  overflow-x: hidden; letter-spacing: -0.011em;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
input, textarea { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--brand-100); color: var(--ink); }
.sec--brand ::selection, .hero ::selection, .cta ::selection, .footer ::selection { background: rgba(143,176,251,.32); color: #fff; }
:focus-visible { outline: 2px solid var(--brand-500); outline-offset: 2px; border-radius: 4px; }

/* thin, branded scrollbar (desktop) — quiet SOTA detail */
@media (pointer: fine) {
  html { scrollbar-width: thin; scrollbar-color: var(--line-2) transparent; }
  ::-webkit-scrollbar { width: 11px; height: 11px; }
  ::-webkit-scrollbar-track { background: transparent; }
  ::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 999px; border: 3px solid var(--bg); background-clip: padding-box; }
  ::-webkit-scrollbar-thumb:hover { background: #b4bdcc; background-clip: padding-box; }
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.sec { padding-block: var(--sec); position: relative; }
.sec--soft { background: var(--soft); border-block: 1px solid var(--line); }
.sec--brand { position: relative; overflow: hidden; isolation: isolate; background: linear-gradient(180deg, var(--brand-deep), var(--brand-ink)); color: #aeb9cc; }
.sec--brand::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background: radial-gradient(720px 400px at 86% -12%, rgba(52,96,212,.26), transparent 60%), radial-gradient(560px 360px at 6% 112%, rgba(52,96,212,.16), transparent 62%); }

/* ---- typography: tight, confident, restrained weights ---- */
h1, h2, h3, h4 { color: var(--ink); font-weight: 600; line-height: 1.12; letter-spacing: -0.022em; text-wrap: balance; }
/* emphasized headline words = brand gradient (same signature as the hero accent) */
h1 b, h2 b, .h1 b, .h2 b { font-weight: 700; font-style: normal; color: var(--brand-600);
  background: linear-gradient(92deg, var(--brand) 10%, var(--brand-500) 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sec--brand h1, .sec--brand h2, .sec--brand h3 { color: #fff; }
.sec--brand h1 b, .sec--brand h2 b, .cta h2 b { color: var(--brand-300);
  background: linear-gradient(92deg, var(--brand-300) 10%, var(--brand-400) 90%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.h1 { font-size: clamp(2.25rem, 1.55rem + 3.1vw, 3.4rem); letter-spacing: -0.032em; line-height: 1.06; font-weight: 600; }
.h2 { font-size: clamp(1.7rem, 1.3rem + 1.7vw, 2.35rem); letter-spacing: -0.028em; line-height: 1.12; font-weight: 600; }
.h3 { font-size: 1.1875rem; letter-spacing: -0.016em; font-weight: 600; }
.lead { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); line-height: 1.58; color: var(--muted); text-wrap: pretty; font-weight: 400; }
.sec--brand .lead { color: #9fabc1; }
.tac { text-align: center; }
.measure { max-width: 60ch; }
.measure-s { max-width: 46ch; }

/* head block */
.head { max-width: 720px; margin-bottom: clamp(30px, 3.4vw, 44px); }
.head--center { margin-inline: auto; text-align: center; }
.head .eyebrow { margin-bottom: 14px; }
.head .lead { margin-top: 14px; }

/* ---- eyebrow: clean uppercase label, single accent ---- */
.eyebrow {
  --roof: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 18'%3E%3Cpath d='M2 17 L18 4 L42 4 L58 17 Z'/%3E%3C/svg%3E");
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600;
  font-size: 0.8125rem; letter-spacing: 0.07em; text-transform: uppercase; color: var(--brand);
}
.eyebrow::before { content: ""; width: 15px; height: 8px; flex: none; background: currentColor; -webkit-mask: var(--roof) center/contain no-repeat; mask: var(--roof) center/contain no-repeat; }
.sec--brand .eyebrow { color: #6f9af0; }
.eyebrow--center { justify-content: center; }

/* ---- buttons: solid, calm, precise ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; font-size: 0.975rem; letter-spacing: -0.01em; padding: 11px 22px; border-radius: var(--r-pill); transition: background .15s var(--ease), box-shadow .15s var(--ease), color .15s, transform .15s var(--ease); white-space: nowrap; line-height: 1.4; }
.btn svg { width: 17px; height: 17px; transition: transform .2s var(--ease); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,.12), var(--shadow-sm); }
.btn--primary:hover { background: var(--brand-hover); box-shadow: inset 0 1px 0 rgba(255,255,255,.14), var(--shadow-md); transform: translateY(-1px); }
.btn--primary:hover svg { transform: translateX(3px); }
.btn--primary:active { transform: translateY(0); }
.btn--white { background: #fff; color: var(--brand); box-shadow: var(--shadow-sm); }
.btn--white:hover { box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.btn--white:hover svg { transform: translateX(3px); }
.btn--white:active { transform: translateY(0); }
.btn--ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1px var(--line-2); }
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--brand); color: var(--brand); background: var(--brand-50); }
.btn--ghost svg { color: var(--brand); }
.btn--lg { padding: 13px 28px; font-size: 1.0125rem; }
.btn--block { width: 100%; }

.phone-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: inherit; transition: color .15s; }
.phone-link:hover { color: var(--brand); }
.phone-link svg { width: 17px; height: 17px; }

/* ---- header (transparent over light hero → glass on scroll) ----
   Negative bottom margin pulls the hero up underneath so the page starts at
   the very top; the dark logo and nav work on the light hero from scroll 0. */
.header { position: sticky; top: 0; z-index: 100; margin-bottom: -86px; background: transparent; box-shadow: inset 0 -1px 0 transparent; transition: background .3s var(--ease), box-shadow .3s; }
.header.scrolled { background: rgba(255,255,255,.86); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); box-shadow: inset 0 -1px 0 var(--line), var(--shadow-sm); }
.header__bar { display: flex; align-items: center; justify-content: space-between; height: 86px; gap: 24px; transition: height .3s var(--ease); }
.header.scrolled .header__bar { height: 70px; }
.brand { display: inline-flex; align-items: center; line-height: 0; flex: none; }
.brand img { height: 54px; width: auto; transition: height .3s var(--ease); }
.header.scrolled .brand img { height: 42px; }
.brand__dark { display: none; }
.header.scrolled .brand__light { display: none; }
.header.scrolled .brand__dark { display: block; }

.nav { display: flex; align-items: center; gap: 2px; }
.nav a { position: relative; font-weight: 500; font-size: 0.945rem; color: rgba(255,255,255,.86); padding: 9px 14px; border-radius: var(--r-xs); transition: color .15s, background .15s; }
.nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px; border-radius: 2px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); opacity: .85; }
.nav a:hover { color: #fff; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: #fff; }
.header.scrolled .nav a { color: var(--body); }
.header.scrolled .nav a:hover { color: var(--brand); }
.header.scrolled .nav a.active { color: var(--brand); }
.header__cta { display: flex; align-items: center; gap: 12px; }
.header__cta .phone-link { display: inline-flex; align-items: center; justify-content: center; gap: 0; width: 44px; height: 44px; border-radius: var(--r-pill); color: #fff; background: rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transition: background .15s, box-shadow .15s, color .15s; }
.header__cta .phone-link:hover { background: rgba(255,255,255,.18); }
.header.scrolled .header__cta .phone-link { color: var(--brand); background: #fff; box-shadow: inset 0 0 0 1px var(--line-2); backdrop-filter: none; -webkit-backdrop-filter: none; }
.header.scrolled .header__cta .phone-link:hover { background: var(--brand-50); box-shadow: inset 0 0 0 1px var(--brand-100); }
.burger { display: none; width: 44px; height: 44px; border-radius: var(--r-xs); align-items: center; justify-content: center; color: #fff; transition: background .15s; }
.burger:hover { background: rgba(255,255,255,.14); }
.header.scrolled .burger { color: var(--ink); }
.header.scrolled .burger:hover { background: var(--soft); }
.burger svg { width: 24px; height: 24px; }

/* ---- mobile drawer ---- */
/* overflow clip on the fixed container keeps the off-canvas panel from
   creating horizontal page-scroll on real mobile browsers */
.drawer { position: fixed; inset: 0; z-index: 200; visibility: hidden; overflow: hidden; }
.drawer__scrim { position: absolute; inset: 0; background: rgba(10,37,64,.45); opacity: 0; transition: opacity .25s; }
.drawer__panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(86vw, 360px); background: #fff; padding: 20px; transform: translateX(100%); transition: transform .3s var(--ease); display: flex; flex-direction: column; overflow-y: auto; box-shadow: var(--shadow-lg); }
.drawer.open { visibility: visible; }
.drawer.open .drawer__scrim { opacity: 1; }
.drawer.open .drawer__panel { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.drawer__head img { height: 34px; width: auto; }
.drawer a.dlink { font-weight: 600; font-size: 1.0625rem; padding: 14px 6px; border-bottom: 1px solid var(--line); color: var(--ink); transition: color .15s; }
.drawer a.dlink:hover { color: var(--brand); }
.drawer .btn { margin-top: 20px; }
.drawer__contact { margin-top: auto; padding-top: 18px; display: grid; gap: 8px; font-size: 0.94rem; }

/* ============================ HERO (cinematic photo + brand gradient) ============================
   Real aerial of a commercial flat roof behind everything, with a navy brand
   gradient for legible white type. Header sits white over the photo, the page
   opens onto the soft props band. */
.hero { position: relative; overflow: hidden; isolation: isolate; background: var(--brand-ink); }
.hero__bg { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; transform: scale(1.06); will-change: transform; }
/* hero background video (desktop) – poster img stays as fallback below it */
.hero__video { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
@media (max-width: 820px) { .hero__video { display: none; } }
@media (prefers-reduced-motion: reduce) { .hero__video { display: none; } }
/* gradient scrim: dark at the top (header) and bottom (props seam), opened a
   touch through the middle so the building + autumn colours read through */
.hero__scrim { position: absolute; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6,18,50,.86) 0%, rgba(7,20,56,.62) 30%, rgba(8,22,60,.66) 60%, rgba(7,18,50,.92) 100%),
    radial-gradient(120% 90% at 50% 8%, rgba(20,51,130,.28), transparent 60%); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, transparent 78%, rgba(7,18,50,.4) 92%, var(--brand-ink) 100%); }

.hero__copy { position: relative; z-index: 1; max-width: 840px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  padding-top: calc(86px + clamp(64px, 8vw, 128px)); padding-bottom: clamp(80px, 10vw, 148px); }
.hero .eyebrow { color: #cdd9f6; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-pill); padding: 7px 15px 7px 13px; backdrop-filter: blur(6px); }
.hero h1 { color: #fff; margin-top: 22px; font-size: clamp(2.4rem, 1.4rem + 4vw, 3.9rem); letter-spacing: -0.04em; line-height: 1.04; max-width: 18ch; text-shadow: 0 2px 30px rgba(4,12,36,.5); }
.hero h1 .hl { font-weight: inherit; color: var(--brand-300);
  background: linear-gradient(92deg, #8fb0fb 8%, var(--brand-400) 92%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__lead { margin-top: 20px; max-width: 56ch; color: #c3cfe8; text-shadow: 0 1px 16px rgba(4,12,36,.4); }
.hero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; margin-top: 28px; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: #c8d3ea; font-weight: 500; white-space: nowrap; }
.hero__trust svg { width: 17px; height: 17px; color: var(--green-300); background: rgba(89,199,154,.18); border-radius: 50%; padding: 3px; box-sizing: border-box; flex: none; }
/* ghost button reads on the photo */
.hero .btn--ghost { background: rgba(255,255,255,.08); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.3); backdrop-filter: blur(6px); }
.hero .btn--ghost:hover { background: #fff; color: var(--brand); box-shadow: inset 0 0 0 1px #fff; }
.hero .btn--ghost svg { color: currentColor; }

/* ===== STÄRKEN — clean light feature cards (icon · title · one line) ===== */
.markband { background: var(--soft); border-block: 1px solid var(--line); padding-block: clamp(48px, 5.5vw, 76px); }
.markband__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 1.8vw, 26px); }
.mprop { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 2.3vw, 34px); box-shadow: var(--shadow-sm); transition: box-shadow .25s var(--ease-out), border-color .25s var(--ease-out); }
.mprop:hover { box-shadow: var(--shadow-md); border-color: var(--line-2); }
.mprop__ic { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--brand); background: var(--brand-50); box-shadow: inset 0 0 0 1px var(--brand-100); margin-bottom: 20px; transition: transform .25s var(--ease-out); }
.mprop:hover .mprop__ic { transform: translateY(-2px); }
.mprop__ic svg { width: 23px; height: 23px; }
.mprop__title { font-size: 1.125rem; margin-bottom: 9px; }
.mprop__desc { font-size: 0.95rem; line-height: 1.6; color: var(--muted); }
@media (max-width: 860px) { .markband__grid { grid-template-columns: 1fr; gap: 14px; } }

/* ---- alternating image+text ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5.5vw, 80px); align-items: stretch; }
.split > div:not(.split__media) { display: flex; flex-direction: column; justify-content: center; }
.split--rev .split__media { order: 2; }
/* frame clips the photo so it can drift on scroll (parallax) */
.split__media { position: relative; display: flex; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); }
.split__media .ph { width: 100%; height: 100%; aspect-ratio: auto; min-height: 440px; object-fit: cover; border: 0; border-radius: 0; box-shadow: none; will-change: transform; }
/* quiet navy grade so mixed photography reads as one art-directed set */
.split__media::after { content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,28,77,0) 55%, rgba(10,28,77,.16)); box-shadow: inset 0 0 0 1px rgba(12,29,68,.06); }
.split__media .float { z-index: 1; }
.split__media .float { position: absolute; right: 16px; bottom: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-md); padding: 12px 15px; display: flex; align-items: center; gap: 11px; }
.split__media .float svg { width: 26px; height: 26px; color: var(--green); flex: none; }
.split__media .float b { display: block; color: var(--ink); font-size: 0.95rem; font-weight: 600; white-space: nowrap; }
.split__media .float span { font-size: 0.85rem; color: var(--muted); white-space: nowrap; }
.split h2 { margin-bottom: 16px; }
.sec--brand .split__media .ph { border-color: rgba(255,255,255,.12); }

/* checklist */
.checks { display: grid; gap: 13px; margin: 26px 0; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.0rem; color: var(--ink); font-weight: 500; }
.checks .ck { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--green-50); color: var(--green); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.checks .ck svg { width: 13px; height: 13px; }
.sec--brand .checks li { color: #d4dded; }
.sec--brand .checks .ck { background: rgba(26,135,90,.2); color: #4cc187; }

/* ---- benefit cards: bento grid — two feature cells anchor the diagonal ---- */
.bgrid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 16px; }
.bcard { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 26px; display: flex; flex-direction: column; justify-content: center; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
.bcard:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.bcard--lg { grid-column: span 2; padding: 30px 32px;
  background:
    radial-gradient(540px 320px at 102% -10%, rgba(52,96,212,.10), transparent 66%),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(20,51,130,.03); }
.bcard--lg h3 { font-size: 1.25rem; }
.bcard--lg p { font-size: 1rem; max-width: 46ch; }
.bcard__ic { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-50); box-shadow: inset 0 0 0 1px rgba(20,51,130,.08); color: var(--brand); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease); }
.bcard:hover .bcard__ic { background: var(--brand); color: #fff; box-shadow: inset 0 0 0 1px var(--brand); }
.bcard__ic svg { width: 24px; height: 24px; }
.bcard h3 { font-size: 1.0625rem; margin-bottom: 8px; }
.bcard p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

/* ---- comparison ---- */
.cmp { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: stretch; }
.cmp__col { min-width: 0; border-radius: var(--r-lg); padding: clamp(28px, 3vw, 38px); }
.cmp__col--old { background: var(--soft); border: 1px solid var(--line); }
.cmp__col--new { background: linear-gradient(160deg, #0d2459, var(--brand-ink)); color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.08), var(--shadow-lg); }
.cmp__top { display: flex; align-items: center; flex-wrap: wrap; justify-content: space-between; gap: 10px 12px; margin-bottom: 22px; }
.cmp__top h3 { font-size: 1.3rem; }
.cmp__col--new .cmp__top h3 { color: #fff; }
.cmp__tag { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 11px; border-radius: var(--r-pill); }
.cmp__col--old .cmp__tag { background: #e6eaf1; color: var(--muted); }
.cmp__col--new .cmp__tag { background: rgba(76,193,135,.18); color: #7ad8a4; }
.cmp li { display: flex; gap: 12px; padding: 13px 0; align-items: flex-start; font-size: 1.0rem; }
.cmp__col--old li { border-bottom: 1px solid var(--line); color: var(--body); }
.cmp__col--new li { border-bottom: 1px solid rgba(255,255,255,.12); color: #d4dded; }
.cmp li:last-child { border-bottom: 0; }
.cmp .ic { flex: none; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.cmp .ic svg { width: 13px; height: 13px; }
.cmp__col--old .ic { background: var(--rose-50); color: var(--rose); }
.cmp__col--new .ic { background: rgba(76,193,135,.2); color: #4cc187; }

/* ---- CTA band: full-bleed, sits flush against the next section ---- */
.cta { position: relative; overflow: hidden; isolation: isolate; text-align: center;
  background: linear-gradient(150deg, #0d2459 0%, var(--brand-ink) 56%, #102a66 100%);
  padding-block: 50px; }
.cta::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 66px 66px;
  -webkit-mask: radial-gradient(90% 140% at 50% -20%, #000 30%, transparent 74%);
  mask: radial-gradient(90% 140% at 50% -20%, #000 30%, transparent 74%); }
.cta::after { content: ""; position: absolute; z-index: -1; left: 50%; top: -340px; width: 1100px; height: 720px; transform: translate(-50%, var(--plx, 0px)); border-radius: 50%;
  background: radial-gradient(closest-side, rgba(52,96,212,.34), transparent 70%); filter: blur(18px); will-change: transform; }
.cta__copy { max-width: 640px; margin-inline: auto; }
.cta__copy h2 { color: #fff; letter-spacing: -0.03em; }
.cta__copy .lead { color: #c9d5ea; margin-top: 16px; max-width: 46ch; margin-inline: auto; }
.cta__copy .btn { margin-top: 32px; }

/* ---- spec strip: one segmented card, hairline dividers via 1px gap ---- */
.specs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.spec { background: #fff; padding: 30px 20px 28px; text-align: center; transition: background .2s var(--ease); }
.spec:hover { background: #fbfcfe; }
.spec__v { font-size: clamp(1.6rem, 2.4vw, 2.1rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1; color: var(--ink); }
.spec__v small { font-size: 0.45em; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.spec__l { margin-top: 9px; font-size: 0.9rem; color: var(--muted); font-weight: 500; }

/* ---- brandschutz badge ---- */
.din { display: inline-flex; flex-direction: column; gap: 4px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 16px 20px; }
.din .a { font-weight: 700; color: #fff; font-size: 1.2rem; letter-spacing: -0.02em; }
.din .b { font-size: 0.9rem; color: #9fabc1; font-weight: 500; }
.sec:not(.sec--brand) .din { background: #fff; border-color: var(--line); box-shadow: var(--shadow-sm); }
.sec:not(.sec--brand) .din .a { color: var(--brand); }
.sec:not(.sec--brand) .din .b { color: var(--muted); }

/* ---- steps: editorial numbered rows — ghost digits, hairlines, no boxes ---- */
.steps { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(48px, 6vw, 88px); counter-reset: step; border-top: 1px solid var(--line); max-width: 1040px; margin-inline: auto; }
.step { display: grid; grid-template-columns: 76px 1fr; align-items: start; padding: 30px 0 28px; border-bottom: 1px solid var(--line); }
.step__n { grid-row: 1 / 3; font-size: 0; padding-top: 2px; }
.step__n::before { counter-increment: step; content: "0" counter(step); font-size: 2.5rem; font-weight: 700; letter-spacing: -0.04em; line-height: .9; color: var(--brand-100); font-variant-numeric: tabular-nums; transition: color .3s var(--ease); }
.step:hover .step__n::before, .step--on .step__n::before { color: var(--brand-500); }
.step h3 { font-size: 1.0625rem; margin-bottom: 6px; }
.step p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

/* ---- segments ---- */
.segs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.seg { display: flex; align-items: center; gap: 15px; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
.seg:hover { border-color: var(--line-2); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.seg:hover .seg__ic { background: var(--brand); color: #fff; box-shadow: inset 0 0 0 1px var(--brand); }
.seg__ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--brand-50); box-shadow: inset 0 0 0 1px rgba(20,51,130,.08); color: var(--brand); display: flex; align-items: center; justify-content: center; transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease); }
.seg__ic svg { width: 22px; height: 22px; }
.seg h3 { font-size: 1.0rem; margin-bottom: 2px; }
.seg p { font-size: 0.95rem; color: var(--muted); }

/* ---- FAQ ---- */
.faq { max-width: 760px; margin-inline: auto; }
.faq__i { border-bottom: 1px solid var(--line); }
.faq__i:first-child { border-top: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; padding: 22px 4px; font-weight: 600; font-size: 1.075rem; color: var(--ink); transition: color .15s; }
.faq__q:hover { color: var(--brand); }
.faq__q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; color: var(--muted); display: flex; align-items: center; justify-content: center; transition: color .2s; }
.faq__q .pm svg { width: 18px; height: 18px; transition: transform .3s var(--ease-out); }
.faq__q[aria-expanded="true"] { color: var(--brand); }
.faq__q[aria-expanded="true"] .pm { color: var(--brand); }
.faq__q[aria-expanded="true"] .pm svg { transform: rotate(45deg); }
.faq__a { overflow: hidden; height: 0; transition: height .3s var(--ease); }
.faq__a-in { padding: 0 4px 24px; color: var(--muted); font-size: 1rem; line-height: 1.62; max-width: 64ch; }

/* ---- contact ---- */
#anfrage.sec { padding-bottom: clamp(72px, 8vw, 104px); }
.contact { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.contact__pts { display: grid; gap: 16px; margin: 30px 0; }
.contact__pts li { display: flex; gap: 14px; align-items: center; }
.contact__pts .ic { flex: none; width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.06); color: #8aa9ee; display: flex; align-items: center; justify-content: center; box-shadow: inset 0 0 0 1px rgba(255,255,255,.1); }
.contact__pts .ic svg { width: 19px; height: 19px; }
.contact__pts b { display: block; color: #fff; font-size: 1rem; font-weight: 600; }
.contact__pts b a { font-size: 1rem; }
.contact__pts span, .contact__pts a { color: #9fabc1; font-size: 0.95rem; }
.contact__pts a:hover { color: #fff; }
.contact__person { display: flex; align-items: center; gap: 14px; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.contact__person .av { width: 56px; height: 56px; border-radius: 50%; flex: none; box-shadow: inset 0 0 0 1px rgba(255,255,255,.16); color: #aebbd6; }
.contact__person .av::part(frame) { background: rgba(255,255,255,.08); }
.contact__person .av::part(ring) { border-color: rgba(255,255,255,.3); }
.contact__person b { color: #fff; display: block; font-weight: 600; }
.contact__person span { font-size: 0.88rem; color: #9fabc1; }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 3vw, 40px); box-shadow: var(--shadow-lg); color: var(--body); }
.form h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 6px; }
.form__sub { font-size: 0.95rem; margin-bottom: 26px; color: var(--muted); }
.f { margin-bottom: 16px; }
.f label { display: block; font-weight: 600; font-size: 0.85rem; color: var(--ink); margin-bottom: 7px; }
.f label .rq { color: var(--brand); }
.f input, .f textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--line-2); border-radius: var(--r-sm); background: #fff; transition: border-color .15s, box-shadow .15s; font-size: 0.975rem; }
.f input::placeholder, .f textarea::placeholder { color: var(--faint); }
.f input:hover, .f textarea:hover { border-color: #c4ccd9; }
.f input:focus, .f textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-50); }
.f textarea { resize: vertical; min-height: 100px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__note { font-size: 0.8rem; color: var(--muted); margin-top: 16px; line-height: 1.5; }
.form__err { margin-top: 14px; padding: 11px 14px; border-radius: var(--r-sm); background: var(--rose-50); color: var(--rose); font-size: 0.875rem; line-height: 1.45; border: 1px solid rgba(193,80,47,.2); }
.form__err a { color: inherit; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.form button[type="submit"]:disabled { opacity: .72; cursor: progress; }
.form__ok { display: none; text-align: center; padding: 30px 6px; }
.form__ok .ok-ic { width: 60px; height: 60px; border-radius: 50%; background: var(--green-50); color: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form__ok .ok-ic svg { width: 30px; height: 30px; }
.form__ok h3 { color: var(--ink); margin-bottom: 8px; }
.form.sent .form__body { display: none; }
.form.sent .form__ok { display: block; }

/* ---- Kontakt: richer navy with a top glow so it reads as its own zone ---- */
#anfrage.sec--brand { background: linear-gradient(180deg, var(--brand-deep) 0%, var(--brand-ink) 100%); }
#anfrage.sec--brand::before { background: radial-gradient(820px 460px at 88% -16%, rgba(52,96,212,.26), transparent 62%); }

/* ---- footer: distinctly darker base of the page, crisp hairline boundary so
   it clearly separates from the Kontakt section above ---- */
.footer { background: #050c1f; border-top: 1px solid rgba(255,255,255,.07); color: #828ea6; padding-block: clamp(48px, 5.5vw, 68px) 28px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer img.flogo { height: 36px; width: auto; margin-bottom: 18px; }
.footer__about { font-size: 0.95rem; max-width: 32ch; line-height: 1.6; color: #828ea4; }
.footer h4 { color: #fff; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; font-weight: 600; }
.fnav li { margin-bottom: 11px; }
.fnav a { font-size: 0.95rem; color: #a3aec2; transition: color .15s; }
.fnav a:hover { color: #fff; }
.fc div { margin-bottom: 14px; font-size: 0.95rem; }
.fc b { color: #6f7c95; display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; font-weight: 600; }
.fc a { color: #c8d1e1; transition: color .15s; }
.fc a:hover { color: #fff; }
.footer__bot { display: flex; flex-wrap: wrap; gap: 12px 26px; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.86rem; color: #79859b; }
.footer__bot nav { display: flex; gap: 22px; }
.footer__bot a:hover { color: #fff; }

/* ---- images / placeholder ---- */
.ph { border: 1px solid var(--line-2); background: linear-gradient(160deg, #eef2f8, #f7f9fc); }
img.ph { object-fit: cover; }


/* ---- motion: quiet reveal ---- */
@media (prefers-reduced-motion: no-preference) {
  html.anim .head, html.anim .mprop, html.anim .bcard, html.anim .split > div,
  html.anim .cmp__col, html.anim .spec, html.anim .step, html.anim .seg,
  html.anim .faq__i, html.anim .contact > div, html.anim .form {
    opacity: 0; transform: translateY(14px);
  }
  .reveal-in { opacity: 1 !important; transform: none !important; transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
}
.reveal-force { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (prefers-reduced-motion: no-preference) {
  html.anim .hero__copy > * { animation: heroRise .65s var(--ease-out) both; }
  html.anim .hero__copy > *:nth-child(2) { animation-delay: .06s; }
  html.anim .hero__copy > *:nth-child(3) { animation-delay: .12s; }
  html.anim .hero__copy > *:nth-child(4) { animation-delay: .18s; }
  html.anim .hero__copy > *:nth-child(5) { animation-delay: .24s; }
}
@keyframes heroRise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ============================ responsive ============================ */
@media (max-width: 1000px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .bgrid, .steps, .segs { grid-template-columns: repeat(2, 1fr); }
  .specs { grid-template-columns: repeat(2, 1fr); }
  .specs .spec:last-child { grid-column: 1 / -1; }
}
@media (max-width: 1080px) {
  /* Logo + 6 Nav-Links + Telefon + CTA brauchen ~1075px — darunter Burger. */
  .nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 860px) {
  .split, .cmp, .contact { grid-template-columns: 1fr; align-items: start; }
  .split > div:not(.split__media) { display: block; }
  .split__media { display: block; order: -1; max-width: 560px; width: 100%; margin-inline: auto; }
  .split__media .ph { aspect-ratio: 4/3; height: auto; min-height: 0; }
  .split--rev .split__media { order: -1; }
}
@media (max-width: 640px) {
  /* Drawer + Topbar-Telefon übernehmen den CTA; Logo + Anruf-Icon + Burger bleiben. */
  .header__cta .btn { display: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .bgrid, .steps, .segs, .f-row { grid-template-columns: 1fr; }
  .bgrid { grid-auto-rows: auto; }
  .bcard { justify-content: flex-start; }
  .bcard--lg { grid-column: auto; padding: 28px 26px; }
  .bcard--lg h3 { font-size: 1.0625rem; }
  .bcard--lg p { font-size: 0.95rem; }
  .step { grid-template-columns: 58px 1fr; }
  .step__n::before { font-size: 2rem; }
  .specs { grid-template-columns: 1fr; }
  .specs .spec:last-child { grid-column: auto; }
  .footer__top { grid-template-columns: 1fr; gap: 30px; }
}

/* ============================ MULTIPAGE COMPONENTS ============================ */

/* --- solid header for pages without a photo hero (Kontakt / Impressum / Datenschutz) --- */
.body--solid .header { margin-bottom: 0; background: rgba(255,255,255,.88); backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px); box-shadow: inset 0 -1px 0 var(--line), var(--shadow-sm); }
.body--solid .brand__light { display: none; }
.body--solid .brand__dark { display: block; }
.body--solid .nav a { color: var(--body); }
.body--solid .nav a:hover, .body--solid .nav a.active { color: var(--brand); }
.body--solid .header__cta .phone-link { color: var(--brand); background: #fff; box-shadow: inset 0 0 0 1px var(--line-2); backdrop-filter: none; -webkit-backdrop-filter: none; }
.body--solid .burger { color: var(--ink); }

/* --- breadcrumb --- */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 500; }
.crumbs a { color: inherit; opacity: .82; transition: opacity .15s, color .15s; }
.crumbs a:hover { opacity: 1; }
.crumbs .sep { opacity: .4; }
.crumbs svg { width: 14px; height: 14px; opacity: .5; }

/* --- compact page hero (subpages with a photo) --- */
.hero--page .hero__copy { max-width: 800px; padding-top: calc(86px + clamp(44px,5.5vw,80px)); padding-bottom: clamp(48px,6vw,80px); }
.hero--page h1 { font-size: clamp(2.1rem, 1.4rem + 2.8vw, 3.15rem); margin-top: 0; }
.hero--page .crumbs { justify-content: center; color: #c7d3ec; margin-bottom: 20px; }

/* --- light page header band (legal / contact pages) --- */
.page-head { position: relative; background: var(--soft); border-bottom: 1px solid var(--line);
  padding-top: calc(86px + clamp(40px,5vw,64px)); padding-bottom: clamp(36px,4.5vw,56px);
  background-image: radial-gradient(760px 300px at 86% -30%, rgba(52,96,212,.08), transparent 60%); }
.page-head .crumbs { color: var(--muted); margin-bottom: 16px; }
.page-head .crumbs a:hover { color: var(--brand); }
.page-head h1 { font-size: clamp(2rem, 1.4rem + 2.4vw, 2.85rem); }
.page-head .lead { margin-top: 14px; max-width: 64ch; }

/* --- service cards (homepage) --- */
.scards { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(20px,2.5vw,28px); }
.scard { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease); }
.scard:hover { border-color: var(--line-2); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.scard__media { position: relative; aspect-ratio: 16/9; overflow: hidden; border-bottom: 1px solid var(--line); }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.scard:hover .scard__media img { transform: scale(1.05); }
.scard__tag { position: absolute; left: 16px; top: 16px; z-index: 1; font-size: 0.72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: rgba(7,21,59,.5); border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); padding: 6px 12px; border-radius: var(--r-pill); }
.scard__body { display: flex; flex-direction: column; flex: 1; padding: clamp(24px,2.5vw,34px); }
.scard__body h3 { font-size: 1.4rem; margin-bottom: 10px; }
.scard__body > p { color: var(--muted); line-height: 1.6; }
.scard__list { display: grid; gap: 11px; margin: 20px 0 26px; }
.scard__list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.scard__list .ck { flex: none; width: 21px; height: 21px; border-radius: 50%; background: var(--green-50); color: var(--green); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.scard__list .ck svg { width: 12px; height: 12px; }
.scard__cta { margin-top: auto; }
.scard__link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 1.0125rem; color: var(--brand); }
.scard__link svg { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.scard:hover .scard__link svg { transform: translateX(4px); }

/* --- about / company strip --- */
.about { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(32px,5vw,72px); align-items: center; }
.about__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.afact { background: #fff; padding: 24px 22px; }
.afact__v { font-size: 1.75rem; font-weight: 700; letter-spacing: -.03em; color: var(--brand); line-height: 1; font-variant-numeric: tabular-nums; }
.afact__v small { font-size: .55em; color: var(--muted); font-weight: 600; letter-spacing: 0; }
.afact__l { margin-top: 7px; font-size: 0.9rem; color: var(--muted); font-weight: 500; }

/* ===== Über TITT — balanced split + full-width proof band ===== */
.about { display: flex; flex-direction: column; gap: clamp(24px,3.4vw,40px); align-items: stretch; }

/* top: two equal-height columns (text | photo) */
.about__top { display: grid; grid-template-columns: 1.04fr .96fr; gap: clamp(28px,4.4vw,64px); align-items: stretch; }

/* text column: flows from the TOP, signature pinned to the floor */
.about__intro { display: flex; flex-direction: column; }
.about__intro .checks { margin-bottom: 0; }
.about__sig { margin-top: auto; padding-top: 26px; font-size: .875rem; line-height: 1.5; color: var(--faint); font-weight: 500; letter-spacing: -.005em; }

/* photo stretches to the text-driven row height; modest floor only */
.about__media { min-height: 100%; }
.about__media .ph { min-height: clamp(340px,30vw,440px); }

/* full-width proof band: 4 real stats, hairline cell dividers */
.about__band { margin: 0; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.aband { background: #fff; padding: clamp(22px,2.4vw,30px) clamp(20px,2vw,30px); display: flex; flex-direction: column; gap: 8px; }
.aband__v { margin: 0; font-size: clamp(1.9rem,1.5rem+1vw,2.5rem); font-weight: 700; line-height: 1; letter-spacing: -.02em; color: var(--brand); font-variant-numeric: tabular-nums; }
.aband__v small { font-size: .5em; font-weight: 600; color: var(--muted); }
.aband__l { margin: 0; font-size: .95rem; line-height: 1.4; color: var(--muted); }

@media (max-width: 860px) {
  .about__top { grid-template-columns: 1fr; gap: clamp(24px,5vw,36px); }
  .about__media { order: 2; min-height: 0; }
  .about__media .ph { aspect-ratio: 4/3; min-height: 0; height: auto; }
  .about__sig { padding-top: 22px; }
  .about__band { grid-template-columns: repeat(2,1fr); }
  .aband:nth-child(2n) { border-left: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .about__band { grid-template-columns: 1fr; }
  .aband:nth-child(2n) { border-left: 0; }
}

/* --- contact info (light) --- */
.cinfo { display: grid; gap: 14px; }
.cinfo li { display: flex; gap: 15px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; box-shadow: var(--shadow-xs); }
.cinfo .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: var(--brand-50); box-shadow: inset 0 0 0 1px rgba(20,51,130,.08); color: var(--brand); display: flex; align-items: center; justify-content: center; }
.cinfo .ic svg { width: 21px; height: 21px; }
.cinfo b { display: block; color: var(--ink); font-size: 1.02rem; margin-bottom: 2px; }
.cinfo a { color: var(--brand); font-weight: 600; }
.cinfo a:hover { text-decoration: underline; text-underline-offset: 2px; }
.cinfo span { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

/* --- legal / prose pages --- */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.4rem; margin: 38px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.1rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--body); line-height: 1.7; font-size: 1rem; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 0; display: grid; gap: 8px; }
.legal ul li { position: relative; padding-left: 20px; }
.legal ul li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 6px; height: 6px; border-radius: 50%; background: var(--brand-300); }
.legal a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; word-break: break-word; }
.legal strong { color: var(--ink); }
.legal .legal__meta { display: grid; gap: 3px; margin-bottom: 14px; }

/* --- intro lead under a section head, centered --- */
.head--center .crumbs { justify-content: center; }

.contact--light { align-items: start; }
.bgrid--3 { grid-template-columns: repeat(3, 1fr); }

/* --- credential / trust strip --- */
.creds { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 12px 30px; }
.creds li { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; font-weight: 600; color: var(--muted); }
.creds li svg { width: 18px; height: 18px; color: var(--brand); flex: none; }
.sec--brand .creds li { color: #aebbd6; }
.sec--brand .creds li svg { color: var(--brand-300); }

/* --- inline spec chips --- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 26px; }
.chips li { display: inline-flex; align-items: center; gap: 8px; background: var(--brand-50); color: var(--brand); border: 1px solid var(--brand-100); border-radius: var(--r-pill); padding: 8px 15px; font-size: 0.9rem; font-weight: 600; }
.chips li svg { width: 15px; height: 15px; }

/* --- YouTube facade (lazy, DSGVO-friendly: loads only on click) --- */
.ytwrap { max-width: 940px; margin-inline: auto; }
.ytfacade { position: relative; display: block; width: 100%; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 30px 70px -22px rgba(2,8,30,.6); background: #06122e; }
.ytfacade img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.ytfacade::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(7,21,59,.12), rgba(7,21,59,.5)); transition: background .3s; }
.ytfacade:hover img { transform: scale(1.04); }
.ytfacade__play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; width: 78px; height: 78px; border-radius: 50%; background: rgba(255,255,255,.96); border: 0; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 34px rgba(0,0,0,.45); transition: transform .2s var(--ease), background .2s; }
.ytfacade:hover .ytfacade__play { transform: translate(-50%,-50%) scale(1.09); background: #fff; }
.ytfacade__play svg { width: 30px; height: 30px; color: var(--brand); margin-left: 4px; }
.ytfacade__label { position: absolute; left: 20px; bottom: 17px; z-index: 2; color: #fff; font-weight: 600; font-size: 0.95rem; text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.ytfacade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.ytfacade--on { cursor: default; }
.ytfacade--on::after, .ytfacade--on .ytfacade__play, .ytfacade--on .ytfacade__label { display: none; }

/* --- Brandtest: cinematic proof frame --- */
.cineframe { max-width: 1080px; margin: clamp(34px,4.6vw,56px) auto 0; }

/* stage = the lit object: blue halo + crisp hairline ring around the player */
.cineframe__stage { position: relative; border-radius: calc(var(--r-lg) + 4px); }
.cineframe__stage::before {
  content: ""; position: absolute; inset: -10% -6% -16%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 70% at 50% 38%, rgba(52,96,212,.42), transparent 70%),
    radial-gradient(40% 50% at 50% 96%, rgba(79,124,232,.22), transparent 72%);
  filter: blur(28px); opacity: .9;
}
.cineframe__stage .ytfacade {
  position: relative; z-index: 1;
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 1px 0 rgba(255,255,255,.10) inset,
    0 0 0 1px rgba(255,255,255,.05),
    0 44px 120px -38px rgba(2,8,30,.9);
}
.cineframe__stage .ytfacade__play { width: 86px; height: 86px; }
.cineframe__stage .ytfacade__play svg { width: 33px; height: 33px; }

/* provenance motif — ties the frame to the real footage */
.cinestamp {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 13px; border-radius: var(--r-pill);
  background: rgba(7,18,50,.52); border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: #eaf0ff; font-size: .82rem; font-weight: 600; letter-spacing: .01em;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.cinestamp__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); box-shadow: 0 0 0 4px rgba(193,80,47,.22); flex: none; }
.ytfacade--on .cinestamp { display: none; }

/* vorher/nachher proof caption — intentional framing, not filler */
.cinecap {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: clamp(14px,3vw,40px); margin-top: clamp(20px,2.4vw,28px);
}
.cinecap__side { display: flex; flex-direction: column; gap: 4px; }
.cinecap__side--no { text-align: right; }
.cinecap__side--yes { text-align: left; }
.cinecap__k { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.cinecap__side--no .cinecap__k { color: #e0966f; }
.cinecap__side--yes .cinecap__k { color: var(--green-300); }
.cinecap__v { font-size: clamp(.98rem,1.4vw,1.12rem); font-weight: 600; color: #fff; letter-spacing: -.01em; }
.cinecap__rule { width: 1px; align-self: stretch; min-height: 38px; background: linear-gradient(180deg, transparent, rgba(255,255,255,.22), transparent); }

.cinecreds { margin-top: clamp(28px,3.4vw,42px); }

@media (max-width: 760px) {
  .cineframe__stage .ytfacade__play { width: 70px; height: 70px; }
  .cineframe__stage .ytfacade__play svg { width: 28px; height: 28px; }
  .cinestamp { top: 12px; right: 12px; font-size: .76rem; padding: 6px 11px; }
  .cinecap { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .cinecap__side--no, .cinecap__side--yes { text-align: center; padding: 14px 0; }
  .cinecap__side--no { border-bottom: 1px solid rgba(255,255,255,.12); }
  .cinecap__rule { display: none; }
}

/* --- captioned figure --- */
.figure { margin: 0; }
.figure img { width: 100%; height: auto; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--shadow-md); display: block; }
.sec--brand .figure img { border-color: rgba(255,255,255,.14); }
.figure figcaption { margin-top: 13px; text-align: center; color: var(--muted); font-size: 0.92rem; }
.sec--brand .figure figcaption { color: #9fb0d4; }
.figrow { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.5vw,28px); }
@media (max-width: 700px){ .figrow { grid-template-columns: 1fr; } }

@media (max-width: 860px){
  .scards, .about, .bgrid--3 { grid-template-columns: 1fr; }
}
/* ===== KONTAKT — slim photo hero + clean light contact (intro + form) ===== */
.hero--slim .hero__copy { padding-top: calc(86px + clamp(36px,4.4vw,64px)); padding-bottom: clamp(40px,5vw,64px); }
.contact__form { display: flex; }
.contact__form .form { width: 100%; }
