/* Holzenergie Hase — Dark Forest Cinematic */
@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,500;0,600;0,700;0,800;0,900;1,800&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  /* one true black everywhere — depth comes from hairlines + type, not tints */
  --bg-0: #000000;
  --bg-1: #000000;
  --surface: #0a0a09;
  --surface-2: #121211;
  --line: rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.055);
  --line-strong: rgba(255,255,255,0.18);

  --ink: #f3f4f0;
  --ink-soft: #b9bdb2;
  --ink-mute: #74776c;

  --lime: #99d420;
  --lime-bright: #aae539;
  --lime-deep: #7bb015;
  --forest: #16240d;

  --maxw: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --r: 3px;
  --r-lg: 6px;

  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  /* fixed brand accent — no theming */
  --accent: #99d420;
  --accent-bright: #aae539;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
h1.display { font-size: clamp(2.6rem, 7vw, 6.2rem); }
h2.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.0;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; }
.muted { color: var(--ink-mute); }
.lime { color: var(--accent); }

/* ---------- layout ---------- */
.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding: clamp(72px, 11vh, 150px) 0; position: relative; }
.section--tight { padding: clamp(48px, 7vh, 90px) 0; }
.grid { display: grid; gap: 22px; }
.section-head { display: flex; flex-direction: column; gap: 18px; max-width: 760px; margin-bottom: 56px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 15px 28px; border-radius: var(--r);
  border: 1px solid transparent; transition: all .2s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--accent); color: #0a0c07; }
.btn--primary:hover { background: var(--accent-bright); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--lg { padding: 18px 34px; font-size: 1rem; }
.btn svg { width: 1.05em; height: 1.05em; }

/* ---------- top contact strip ---------- */
.topbar {
  background: #000;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}
.topbar__inner { display: flex; align-items: center; gap: 40px; height: 46px; }
.topbar__item { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); }
.topbar__item svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.topbar__item b { color: var(--ink); font-weight: 600; }
.topbar__spacer { margin-left: auto; }
.topbar__item a:hover { color: var(--accent); }

/* ---------- main nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(7,8,6,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.nav__inner { display: flex; align-items: center; gap: 32px; height: 76px; }
.nav__logo { display: flex; align-items: center; height: 100%; }
.nav__logo img { height: 50px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav__link {
  position: relative; padding: 10px 14px; border-radius: var(--r);
  font-weight: 600; font-size: 0.86rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink-soft); transition: color .18s ease;
  white-space: nowrap;
}
.nav__link:hover { color: var(--ink); }
.nav__link.is-active { color: var(--accent); }
.nav__link.is-active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px;
  height: 2px; background: var(--accent);
}
.nav__cta { margin-left: auto; }
.nav__burger { display: none; margin-left: auto; background: none; border: 1px solid var(--line-strong); color: var(--ink); width: 46px; height: 46px; border-radius: var(--r); align-items: center; justify-content: center; }
.nav__burger svg { width: 22px; height: 22px; }

/* mobile drawer */
.drawer { display: none; }

@media (max-width: 1080px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
  .topbar__inner { gap: 22px; overflow-x: auto; }
  .drawer {
    display: block; position: fixed; inset: 0; z-index: 80;
    background: rgba(4,5,3,0.97); backdrop-filter: blur(8px);
    opacity: 0; pointer-events: none; transition: opacity .25s ease;
  }
  .drawer.is-open { opacity: 1; pointer-events: auto; }
  .drawer__inner { display: flex; flex-direction: column; padding: 28px var(--pad); gap: 4px; height: 100%; }
  .drawer__close { align-self: flex-end; background: none; border: none; color: var(--ink); font-size: 2rem; line-height: 1; padding: 8px; }
  .drawer__link { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--ink); }
  .drawer__link.is-active { color: var(--accent); }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; overflow: hidden; background: #000; }
.hero__video { position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: 0; transition: opacity 1.1s ease; }
.hero__video.is-on { opacity: 1; }
.hero__video iframe {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100vw; height: 56.25vw; min-height: 100%; min-width: 177.78vh;
  pointer-events: none; border: 0;
}
.hero__poster { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__poster img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transform-origin: 60% 40%;
  animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.16); } }
@media (prefers-reduced-motion: reduce) { .hero__poster img { animation: none; } }
.hero__veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, #000 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.45) 100%),
    linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0) 100%);
}
.hero__grain { position: absolute; inset: 0; z-index: 2; opacity: .28; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E"); }
.hero__content { position: relative; z-index: 3; width: 100%; display: flex; }

/* hero variant A — cinematic center/bottom-left */
.hero--a .hero__content { align-items: flex-end; padding-bottom: clamp(56px, 9vh, 110px); }
.hero--a .hero__inner { max-width: 980px; }
.hero--a .hero__sub { margin-top: 26px; }

/* hero variant B — editorial split */
.hero--b .hero__content { align-items: stretch; }
.hero--b .hero__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 0; width: 100%; align-items: end; }
.hero--b .hero__panel { align-self: stretch; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(to right, rgba(0,0,0,0.88) 30%, rgba(0,0,0,0.2)); }
.hero--b .hero__col-r { display: flex; align-items: flex-end; justify-content: flex-end; padding-bottom: clamp(40px,7vh,90px); }
@media (max-width: 900px) { .hero--b .hero__inner { grid-template-columns: 1fr; } .hero--b .hero__col-r { display: none; } }

.hero__eyebrow { margin-bottom: 26px; }
.hero h1 { color: #fff; text-shadow: 0 4px 40px rgba(0,0,0,0.5); }
.hero h1 .accent-word { color: var(--accent); }
.hero__sub { color: var(--ink-soft); font-size: clamp(1.05rem,1.5vw,1.32rem); max-width: 52ch; margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero__stats { display: flex; gap: 44px; margin-top: 52px; flex-wrap: wrap; }
.hero__stat .n { font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; line-height: 1; color: #fff; }
.hero__stat .l { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-mute); margin-top: 8px; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4; color: var(--ink-mute); font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll .line { width: 1px; height: 40px; background: linear-gradient(var(--accent), transparent); animation: scrolldrop 1.8s ease-in-out infinite; }
@keyframes scrolldrop { 0%,100% { opacity:.3; transform: scaleY(.6); transform-origin: top;} 50% { opacity:1; transform: scaleY(1);} }

/* video toggle pill */
.hero__sound { position: absolute; z-index: 4; bottom: 26px; right: var(--pad);
  display: inline-flex; align-items: center; gap: 9px; padding: 9px 16px; border-radius: 40px;
  background: rgba(0,0,0,0.4); border: 1px solid var(--line-strong); color: var(--ink-soft); font-size: 0.78rem; }
.hero__sound:hover { border-color: var(--accent); color: var(--accent); }
.hero__sound svg { width: 16px; height: 16px; }

/* ---------- cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .25s ease, border-color .25s ease, background .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); border-color: rgba(153,212,32,0.5); background: var(--surface-2); }
.card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: #000; }
.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--contain img { object-fit: contain; padding: 18px; }
.card__num { position: absolute; top: 14px; left: 16px; font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; color: var(--accent); letter-spacing: 0.1em; }
.card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.card__title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.25rem; letter-spacing: -0.005em; }
.card__list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-top: 2px; }
.card__list li { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: 0.95rem; }
.card__list li::before { content: ""; width: 6px; height: 6px; background: var(--accent); flex: none; transform: rotate(45deg); }

/* service big rows */
.srv { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px,5vw,70px); align-items: center; }
.srv--rev { grid-template-columns: 1.15fr 0.85fr; }
.srv--rev .srv__media { order: 2; }
.srv__media { aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: #000; }
.srv__media img { width:100%; height:100%; object-fit: cover; }
.srv__media--contain img { object-fit: contain; padding: 30px; }
.srv__num { font-family: var(--font-display); font-weight: 900; font-size: 3.4rem; color: rgba(153,212,32,0.25); line-height: 1; }
.srv__title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.8rem,3vw,2.6rem); line-height: 1; margin: 10px 0 18px; }
.srv__tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.tag { font-size: 0.84rem; font-weight: 600; padding: 8px 15px; border: 1px solid var(--line-strong); border-radius: 40px; color: var(--ink-soft); }
.tag::before { content: "+ "; color: var(--accent); }
@media (max-width: 820px) { .srv, .srv--rev { grid-template-columns: 1fr; } .srv--rev .srv__media { order: 0; } }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; grid-auto-flow: dense; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--line); background:#000; cursor: pointer; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%); opacity: 0; transition: opacity .3s; }
.gallery__item:hover::after { opacity: 1; }
.gallery__cap { position: absolute; left: 16px; bottom: 14px; z-index: 2; font-weight: 600; font-size: 0.9rem; opacity: 0; transform: translateY(6px); transition: all .3s; }
.gallery__item:hover .gallery__cap { opacity: 1; transform: translateY(0); }
.g-w6 { grid-column: span 6; } .g-w4 { grid-column: span 4; } .g-w8 { grid-column: span 8; } .g-w3 { grid-column: span 3; } .g-w12 { grid-column: span 12; }
.g-h1 { aspect-ratio: 16/10; } .g-h2 { aspect-ratio: 1/1; } .g-tall { aspect-ratio: 3/4; }
@media (max-width: 720px) { .gallery__item { grid-column: span 6 !important; } }

/* ---------- video feature ---------- */
.videofeat { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/9; background:#000; }
.videofeat iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.videofeat__poster { position: absolute; inset: 0; cursor: pointer; }
.videofeat__poster img { width: 100%; height: 100%; object-fit: cover; }
.videofeat__poster::after { content:""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.15)); }
.playbtn { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; }
.playbtn span { width: 86px; height: 86px; border-radius: 50%; background: var(--accent); color: #0a0c07; display: flex; align-items: center; justify-content: center; transition: transform .2s ease; box-shadow: 0 10px 40px rgba(153,212,32,0.35); }
.videofeat__poster:hover .playbtn span { transform: scale(1.08); }
.playbtn svg { width: 32px; height: 32px; margin-left: 4px; }
.videolist { display: flex; flex-direction: column; gap: 12px; }
.vrow { display: flex; gap: 16px; padding: 12px; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--surface); cursor: pointer; transition: all .2s; align-items: center; }
.vrow:hover { border-color: rgba(153,212,32,0.5); background: var(--surface-2); }
.vrow.is-active { border-color: var(--accent); }
.vrow__thumb { width: 116px; aspect-ratio: 16/9; border-radius: 4px; overflow: hidden; flex: none; position: relative; background:#000; }
.vrow__thumb img { width: 100%; height: 100%; object-fit: cover; }
.vrow__thumb .mini { position: absolute; inset: 0; display:flex; align-items:center; justify-content:center; }
.vrow__thumb .mini svg { width: 26px; height: 26px; color: #fff; filter: drop-shadow(0 2px 6px rgba(0,0,0,.6)); }
.vrow__meta b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.95rem; display:block; }
.vrow__meta span { color: var(--ink-mute); font-size: 0.82rem; }

/* ---------- CTA band ---------- */
.ctaband { position: relative; overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #000; }
.ctaband::before { content:""; position:absolute; inset:0; pointer-events:none; background: radial-gradient(80% 140% at 12% 50%, rgba(153,212,32,0.14), transparent 60%); }
.ctaband__inner { display: grid; grid-template-columns: 1.3fr auto; gap: 40px; align-items: center; padding: clamp(48px,8vh,92px) 0; }
.ctaband h2 { color:#fff; }
@media (max-width: 760px){ .ctaband__inner { grid-template-columns: 1fr; } }

/* ---------- stats strip ---------- */
.stats { 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; }
.stats__cell { background: #000; padding: 34px 28px; }
.stats__cell .n { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.2rem,4vw,3.2rem); line-height: 1; color: var(--accent); overflow-wrap: break-word; word-break: break-word; hyphens: auto; }
.stats__cell .l { margin-top: 10px; color: var(--ink-soft); font-weight: 600; font-size: 0.92rem; }
@media (max-width: 720px){
  .stats { grid-template-columns: repeat(2,1fr);}
  .stats__cell { padding: 26px 18px; }
  /* schrumpft mit der Viewport-Breite, damit lange Werte wie „Region" nie abgeschnitten werden */
  .stats__cell .n { font-size: clamp(1.55rem,6.4vw,2.4rem); }
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,64px); }
@media (max-width: 860px){ .contact-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); }
.field input, .field textarea, .field select {
  background: var(--surface); border: 1px solid var(--line-strong); border-radius: var(--r);
  color: var(--ink); padding: 14px 16px; font-family: inherit; font-size: 1rem; transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 130px; }
/* Honeypot — visuell und für Screenreader ausgeblendet, aber im DOM */
.hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
/* DSGVO-Einwilligung */
.consent { display: flex; gap: 11px; align-items: flex-start; margin: 4px 0 22px; cursor: pointer;
  font-size: 0.85rem; line-height: 1.5; color: var(--ink-soft); }
.consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px; accent-color: var(--accent); cursor: pointer; }
.consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.form-error { margin: 0 0 16px; font-size: 0.86rem; line-height: 1.5; color: #ff8a8a; }
.form-error a { color: #ff8a8a; text-decoration: underline; }
.contact-info { display: flex; flex-direction: column; gap: 4px; }
.cinfo { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.cinfo__ic { width: 46px; height: 46px; border: 1px solid var(--line-strong); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; color: var(--accent); }
.cinfo__ic svg { width: 20px; height: 20px; }
.cinfo b { display:block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-mute); margin-bottom: 4px; }
.cinfo .v { font-size: 1.15rem; color: var(--ink); font-weight: 600; }

/* ---------- footer ---------- */
.footer { background: #000; border-top: 1px solid var(--line); padding: 72px 0 32px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
@media (max-width: 860px){ .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer__logo img { height: 44px; margin-bottom: 20px; }
.footer__col h4 { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 0.1em; margin-bottom: 18px; color: var(--ink); }
.footer__col a, .footer__col p { display: block; color: var(--ink-mute); font-size: 0.94rem; padding: 5px 0; transition: color .18s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 26px; color: var(--ink-mute); font-size: 0.84rem; }
.footer__bottom a:hover { color: var(--accent); }

/* ---------- page header (subpages) ---------- */
.pagehead { position: relative; padding: clamp(64px,12vh,150px) 0 clamp(40px,6vh,70px); overflow: hidden; border-bottom: 1px solid var(--line); background:#000; }
.pagehead__bg { position: absolute; inset: 0; z-index: 0; opacity: 0.32; }
.pagehead__bg img { width: 100%; height: 100%; object-fit: cover; }
.pagehead::after { content:""; position: absolute; inset: 0; z-index:1; background:
  radial-gradient(60% 100% at 6% 100%, rgba(153,212,32,0.16), transparent 58%),
  linear-gradient(to top, var(--bg-0), rgba(0,0,0,0.45)); }
.pagehead .container { position: relative; z-index: 2; }
.pagehead h1 { font-size: clamp(2.4rem,6vw,4.6rem); color:#fff; }
.crumbs { display:flex; gap: 10px; align-items: center; color: var(--ink-mute); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 20px; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { color: var(--accent); }

/* note / placeholder flag */
.note { border: 1px dashed var(--line-strong); border-radius: var(--r-lg); padding: 18px 22px; color: var(--ink-mute); font-size: 0.9rem; background: rgba(255,255,255,0.015); }
.note b { color: var(--ink-soft); }

/* fade-in */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* utility */
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px){ .cols-4 { grid-template-columns: repeat(2,1fr);} .cols-3 { grid-template-columns: repeat(2,1fr);} }
@media (max-width: 620px){ .cols-4, .cols-3, .cols-2 { grid-template-columns: 1fr; } }
.center { text-align: center; align-items: center; }
.center .lead { margin-left:auto; margin-right:auto; }
.prose p { color: var(--ink-soft); margin-bottom: 18px; max-width: 68ch; }
.prose p:last-child { margin-bottom: 0; }

/* ---------- green glow accent (reusable) ---------- */
.glow { position: relative; isolation: isolate; }
.glow::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.glow--tl::before  { background: radial-gradient(62% 90% at 6% 0%,    rgba(153,212,32,0.15), transparent 60%); }
.glow--left::before  { background: radial-gradient(60% 120% at 0% 50%,  rgba(153,212,32,0.14), transparent 62%); }
.glow--right::before { background: radial-gradient(60% 120% at 100% 50%, rgba(153,212,32,0.13), transparent 62%); }
.glow--bl::before  { background: radial-gradient(62% 90% at 6% 100%,  rgba(153,212,32,0.14), transparent 60%); }

/* ---------- marquee ticker ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; background: #000; padding: 22px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.4rem, 3vw, 2.4rem); letter-spacing: -0.01em; color: var(--ink); padding: 0 30px; white-space: nowrap; }
.marquee__item.is-ghost { color: transparent; -webkit-text-stroke: 1px var(--ink-mute); }
.marquee__sep { color: var(--accent); font-size: 1.2rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- editorial reveal list (Leistungen) — inline Accordion ---------- */
.rlist { border-top: 1px solid var(--line); position: relative; }
.racc { border-bottom: 1px solid var(--line); }
.rrow { position: relative; display: grid; width: 100%; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px;
  padding: clamp(26px,4vw,46px) 4px; cursor: pointer; text-align: left;
  background: none; border: none; color: inherit; font: inherit;
  transition: padding-left .35s cubic-bezier(.2,.7,.2,1); }
.rrow__idx { font-family: var(--font-body); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.2em; color: var(--ink-mute); transition: color .3s; }
.rrow > div { min-width: 0; }
.rrow__title { display: block; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; line-height: 0.95;
  font-size: clamp(1.9rem, 5.2vw, 4.1rem); letter-spacing: -0.02em; color: var(--ink); transition: color .3s;
  overflow-wrap: anywhere; hyphens: auto; }
.rrow__sub { display:block; font-family: var(--font-body); font-weight: 500; text-transform: none; letter-spacing: 0; font-size: 0.98rem; color: var(--ink-mute); margin-top: 10px; max-width: 52ch; }
.rrow__go { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-strong); display:flex; align-items:center; justify-content:center; color: var(--ink-soft); flex:none; transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s, border-color .3s, color .3s; }
.rrow__go svg { width: 20px; height: 20px; }
.rrow:hover { padding-left: 18px; }
.rrow:hover .rrow__idx { color: var(--accent); }
.rrow:hover .rrow__title { color: var(--accent); }
.rrow:hover .rrow__go { border-color: var(--accent); color: var(--accent); }
/* geöffneter Zustand (Leaf-Klassen — robust gegen Cascade-Eigenheiten) */
.rrow__idx.is-active { color: var(--accent); }
.rrow__title.is-active { color: var(--accent); }
.rrow__go.is-rot { transform: rotate(90deg); background: var(--accent); border-color: var(--accent); color: #000; }

/* aufklappendes Detail-Panel (max-height per Inline-Style gesteuert) */
.rpanel { overflow: hidden; max-height: 0; transition: max-height .55s cubic-bezier(.2,.7,.2,1); }
.rpanel__inner { overflow: hidden; }
.rpanel__grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(28px,4vw,72px); align-items: stretch;
  padding: 2px 4px clamp(46px,5vw,70px); }
.rpanel__media { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  background: var(--surface); min-height: 330px; }
.rpanel__media::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(130% 90% at 50% 0%, rgba(153,212,32,0.07), transparent 62%); }
.rpanel__media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; padding: clamp(22px,3vw,46px); }
.rpanel__media--cover img { object-fit: cover; padding: 0; }
.rpanel__tag { position: absolute; left: 18px; top: 15px; z-index: 2; font-family: var(--font-display); font-weight: 800;
  font-size: 0.9rem; letter-spacing: 0.14em; color: var(--accent); }

.rpanel__body { display: flex; flex-direction: column; align-items: flex-start; min-width: 0; }
.rpanel__kicker { font-family: var(--font-body); font-weight: 700; font-size: 0.72rem; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 18px; }
.rpanel__lead { color: var(--ink-soft); font-size: clamp(1.06rem,1.45vw,1.3rem); line-height: 1.6; max-width: 46ch; margin-bottom: 30px; }
.rpanel__checks { list-style: none; display: grid; gap: 0; width: 100%; margin-bottom: 36px; }
.rpanel__checks li { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-top: 1px solid var(--line-soft);
  font-family: var(--font-body); font-weight: 600; font-size: 1.04rem; color: var(--ink); }
.rpanel__checks li:last-child { border-bottom: 1px solid var(--line-soft); }
.rpanel__checks svg { width: 18px; height: 18px; color: var(--accent); flex: none; stroke-width: 2.4; }
.rpanel__cta { margin-top: auto; }
@media (max-width: 760px){
  .rpanel__grid { grid-template-columns: 1fr; gap: 22px; }
  .rpanel__media { min-height: 0; aspect-ratio: 16/10; }
}

/* ---------- showreel (full-bleed video band) ---------- */
.showreel { position: relative; background: #000; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.showreel__frame { position: relative; aspect-ratio: 21/9; overflow: hidden; }
.showreel__frame iframe { position:absolute; inset:0; width:100%; height:100%; border:0; }
.showreel__poster { position:absolute; inset:0; cursor:pointer; }
.showreel__poster img { width:100%; height:100%; object-fit: cover; opacity:.78; }
.showreel__poster::after { content:""; position:absolute; inset:0; background: radial-gradient(60% 80% at 50% 50%, rgba(0,0,0,0.1), rgba(0,0,0,0.75)); }
.showreel__cap { position:absolute; left: clamp(20px,4vw,56px); bottom: clamp(20px,4vw,48px); z-index:3; }
.showreel__cap h2 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; color:#fff; font-size: clamp(1.8rem,4vw,3.4rem); line-height:0.95; max-width: 16ch; }
.showreel__cap .eyebrow { margin-bottom: 16px; }
.showreel__big { position:absolute; top: clamp(18px,3vw,40px); right: clamp(20px,4vw,56px); z-index:3; font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
@media (max-width: 720px){ .showreel__frame { aspect-ratio: 16/11; } }

/* section index label */
.sec-index { font-family: var(--font-body); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.22em; color: var(--ink-mute); }
.sec-index b { color: var(--accent); }

/* ======================================================================
   RESPONSIVE — formerly-inline section grids + phone refinements
   ====================================================================== */

/* two-column content grids that used inline styles (now collapse on mobile) */
.home-intro-grid { grid-template-columns: 1.1fr 0.9fr; gap: clamp(32px,6vw,90px); align-items: start; }
.media-grid      { grid-template-columns: 1.55fr 0.95fr; gap: 24px; align-items: start; }
.about-grid      { grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,70px); align-items: center; }
@media (max-width: 880px){
  .home-intro-grid, .media-grid, .about-grid { grid-template-columns: 1fr; }
  .home-intro-grid { gap: clamp(24px,5vw,40px); }
}

/* ---- tablet & down (<=820) ---- */
@media (max-width: 820px){
  body { font-size: 16px; }
  .section-head { margin-bottom: 40px; }
}

/* ---- phones (<=620) ---- */
@media (max-width: 620px){
  /* Announcement-Bar auf dem Handy ausblenden — Fokus aufs Video */
  .topbar { display: none; }
  .topbar__inner { gap: 18px; height: 42px; overflow: hidden; }
  .topbar__inner > .topbar__spacer { display: none; }
  .topbar__item span:not(:has(b)) { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* nav */
  .nav__inner { height: 64px; }
  .nav__logo img { height: 40px; }

  /* hero: shorter, content breathes, full-width tap targets */
  .hero { min-height: 84vh; }
  .hero--a .hero__content { padding-bottom: clamp(40px,7vh,72px); }
  /* Header-Text etwas kleiner auf dem Handy */
  .hero .display { font-size: clamp(1.7rem, 7.4vw, 2.6rem); }
  .hero__eyebrow { margin-bottom: 18px; }
  .hero__sub { margin-top: 16px; font-size: 0.98rem; }
  /* Buttons im Hero auf dem Handy komplett ausblenden — Fokus aufs Video */
  .hero__actions { display: none; }
  .hero__stats { gap: 28px; margin-top: 38px; }
  .hero__stat .n { font-size: 2rem; }

  /* generous tap targets everywhere */
  .btn--lg { padding: 16px 26px; }

  /* sections: trim vertical rhythm so the page isn't endless on a phone */
  .section { padding: clamp(56px,9vh,90px) 0; }

  /* editorial leistungen list — calmer on phone */
  .rrow { gap: 14px; padding-left: 0; padding-right: 0; }
  .rrow__idx { font-size: 0.72rem; letter-spacing: 0.16em; }
  .rrow__title { font-size: clamp(1.5rem, 6.6vw, 2.3rem); letter-spacing: -0.01em; }
  .rrow__sub { font-size: 0.9rem; margin-top: 8px; }
  .rrow__go { width: 42px; height: 42px; }
  .rrow:hover { padding-left: 0; }

  /* video mediathek list scrolls under player nicely (already stacked) */
  .vrow__thumb { width: 96px; }

  /* CTA buttons full width */
  .ctaband__inner .btn { justify-content: center; }

  /* footer: single, readable column stack */
  .footer { padding: 56px 0 28px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .footer__bottom { flex-direction: column; gap: 10px; }

  /* page headers a touch tighter */
  .pagehead { padding: clamp(52px,10vh,96px) 0 clamp(32px,5vh,52px); }
}

/* ---- very small phones (<=400) ---- */
@media (max-width: 400px){
  /* hide email on the strip — phone is what matters on a tiny screen */
  .topbar__inner > a:nth-of-type(2) { display: none; }
  .footer__top { grid-template-columns: 1fr; }
}

/* ============================================================
   One-Pager: Anker-Offset unter der Sticky-Nav
   ============================================================ */
section[id] { scroll-margin-top: 92px; }

/* ============================================================
   Rechtstexte (Impressum / Datenschutz)
   ============================================================ */
.legal { max-width: 860px; }
.legal__body p { color: var(--ink-soft); margin-bottom: 1.05em; }
.legal__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; word-break: break-word; }
.legal__body a:hover { color: var(--accent-bright); }
.legal__h {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: -0.005em; font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--ink); margin: 2.2em 0 0.7em; padding-top: 1.2em;
  border-top: 1px solid var(--line);
}
.legal__body > .legal__h:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal__sh {
  font-family: var(--font-body); font-weight: 700; font-size: 1.06rem;
  color: var(--ink); margin: 1.5em 0 0.5em;
}
.legal__note { font-size: 0.95rem; }
@media (max-width: 620px){
  .legal__h { font-size: 1.2rem; }
}
