/* =========================================================================
   CH Media Mind — main stylesheet
   ========================================================================= */

/* --- Fonts ---------------------------------------------------------------- */

@font-face { font-family: "CHMedia"; src: url("../fonts/CHMedia-Thin.otf") format("opentype"); font-weight: 100; font-style: normal; font-display: swap; }
@font-face { font-family: "CHMedia"; src: url("../fonts/CHMedia-ThinItalic.otf") format("opentype"); font-weight: 100; font-style: italic; font-display: swap; }
@font-face { font-family: "CHMedia"; src: url("../fonts/CHMedia-Book.otf") format("opentype"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "CHMedia"; src: url("../fonts/CHMedia-LightItalic.otf") format("opentype"); font-weight: 300; font-style: italic; font-display: swap; }
@font-face { font-family: "CHMedia"; src: url("../fonts/CHMedia-BookItalic.otf") format("opentype"); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: "CHMedia"; src: url("../fonts/CHMedia-Regular.otf") format("opentype"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "CHMedia"; src: url("../fonts/CHMedia-SemiBold.otf") format("opentype"); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: "CHMedia"; src: url("../fonts/CHMedia-SemiBoldItalic.otf") format("opentype"); font-weight: 600; font-style: italic; font-display: swap; }
@font-face { font-family: "Bagoss"; src: url("../fonts/BagossCollectionVF-TRIAL.ttf") format("truetype"); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: "Parabole"; src: url("../fonts/parabole-displayregular.woff2") format("woff2"); font-weight: 400; font-style: normal; font-display: swap; }

/* --- Custom property for transitionable lens radius --------------------- */
@property --lens-r {
  syntax: '<length>';
  inherits: true;
  initial-value: 0px;
}

/* --- Design tokens ------------------------------------------------------- */

:root {
  --c-black: #000;
  --c-white: #fff;
  --c-cream: #f1efe7;
  --c-grey-light: #e1e1e1;      /* matches original --_primitives---colors--neutral-lightest */
  --c-grey-mid: #c9c8c2;
  --c-lime: #96ff00;

  --c-bg: #fff;                  /* matches original body bg (--color-scheme-1--background = white) */
  --c-fg: var(--c-black);
  --c-accent: var(--c-lime);

  --font-display: "CHMedia", "Helvetica Neue", Arial, sans-serif;
  --font-body: "CHMedia", "Helvetica Neue", Arial, sans-serif;
  --font-marquee: "Parabole", "CHMedia", serif;

  --fs-body: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);

  --container-max: 100rem;
  --container-pad: clamp(1.25rem, 1rem + 2vw, 3rem);
  --section-pad-y: clamp(4rem, 2rem + 6vw, 10rem);
  --nav-h: 2.927734375rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 200ms;
  --dur-med: 500ms;
  --dur-slow: 900ms;
}

/* --- Reset --------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }   /* override flex/grid display when toggled */

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--c-bg);
  color: var(--c-fg);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }

.svg-defs { position: absolute; width: 0; height: 0; }

@media (hover: hover) and (pointer: fine) {
  html, body, a, button, input, textarea, select, label { cursor: none; }
}

/* --- Utilities ----------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* --- Custom cursor — always lime green; hidden inside lens sections ---- */

.cursor {
  position: fixed;
  top: 0; left: 0;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-lime);
  pointer-events: none;
  z-index: 1000;
  transform: translate3d(var(--mx, -100px), var(--my, -100px), 0) translate(-50%, -50%);
  transition: width var(--dur-fast) var(--ease-out),
              height var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast);
}
.cursor.is-hover { width: 32px; height: 32px; }
.cursor.is-hidden { opacity: 0; }

@media (hover: none), (pointer: coarse) { .cursor { display: none; } }
@media (prefers-reduced-motion: reduce) {
  .cursor { display: none; }
  html, body, a, button, input, textarea, select, label { cursor: auto !important; }
}

/* --- Navbar (matched to original sizes from ch-media-mind.webflow.css) - */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--nav-h);
  color: var(--c-black);
  padding-inline: 1rem;
  transition: color 180ms ease;
}
.nav.is-on-dark { color: var(--c-white); }
.nav__inner {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  max-width: 100%;
  padding-inline: 0;
}
.nav__logo {
  display: flex;
  align-items: center;
  width: 12rem;       /* original .icon-embed-custom */
  height: 1.6rem;
  flex: 0 0 auto;
}
.nav__logo svg { width: 100%; height: 100%; }

/* Menu is absolutely centred in the bar (original .nav-menu is margin:auto
   between fixed 13rem sides → visually viewport-centred) */
.nav__menu {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center;
  font-size: 1.3rem;     /* original .nav-menu */
  font-weight: 300;      /* original .nav-link */
}
.nav__link {
  padding: 0.6rem 0.8rem;  /* original .nav-link — no underline, like the original */
  font-weight: 300;
}
/* original: comma after every menu item except the last (style-overrides block) */
.nav__menu .nav__link:not(:last-child)::after { content: ","; }
.nav__cta {
  font-size: 1.3rem;       /* original .navbar-side.is-link */
  font-weight: 300;
  margin-right: -.5rem;
}
.nav__burger { display: none; flex-direction: column; gap: 6px; padding: 0.5rem 0; }
.nav__burger span { display: block; width: 32px; height: 2px; background: currentColor; transition: transform var(--dur-fast) var(--ease-out), opacity var(--dur-fast); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.nav__overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--c-black); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-med) var(--ease-out), visibility var(--dur-med);
}
.nav__overlay.is-open { opacity: 1; visibility: visible; }
.nav__overlay ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 1.5rem; text-align: center; }
.nav__overlay a { font-size: clamp(2.5rem, 1rem + 6vw, 5rem); }

/* Webflow "medium" collapse: nav becomes burger at 991px (matches original) */
@media (max-width: 991px) {
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* --- SCREEN 1: Hero (lens) — logo & tagline absolutely positioned so
   both layers (under green, over white) lock to the SAME coordinates. */

.hero {
  position: relative;
  height: 100svh;
  overflow: hidden;
  --cx: 50%;
  --cy: -100%;
  --lens-r: 0px;
  transition: --lens-r 350ms var(--ease-out);
  background: #fff;
}
.hero.is-hovering { --lens-r: 130px; }

.hero__layer {
  position: absolute; inset: 0;
}
.hero__under {
  background: var(--c-lime);
  color: var(--c-black);
  z-index: 3;
  visibility: hidden;
  clip-path: circle(var(--lens-r) at var(--cx) var(--cy));
  -webkit-clip-path: circle(var(--lens-r) at var(--cx) var(--cy));
}
.hero__over {
  background: #fff;
  color: var(--c-black);
  z-index: 2;
}
.hero.is-hovering .hero__under { visibility: visible; }

.hero__cymatics {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.94;
  pointer-events: none;
}

/* Logo: 100% width to match original (.icon-embed-mind absolute inset:0) */
.hero__logo {
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.hero__logo-mobile { display: none; }

/* Lens trigger: matches the logo's visible bounding rectangle, invisible */
.hero__hitzone {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 100%;
  aspect-ratio: 1053 / 200;
  z-index: 5;
  pointer-events: auto;
  touch-action: pan-y;
}

/* OVER tagline: small CHMedia at the bottom (matches original .text-style-body) */
.hero__over .hero__tagline {
  position: absolute;
  z-index: 1;
  left: 0; right: 0;
  bottom: 1.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--c-black);
  margin: 0;
  padding: 0 1rem;
}

/* UNDER tagline: white Parabole copy, held to two rows over the MIND logo */
.hero__under .hero__tagline {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84%;
  max-width: 84rem;
  text-align: center;
  font-family: var(--font-marquee);   /* Parabole */
  font-weight: 400;
  font-size: clamp(2.5rem, 1rem + 4.25vw, 6.25rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin: 0;
}

.hero__under .hero__tagline-line {
  display: block;
  white-space: nowrap;
}

/* --- SCREEN 2: Über uns (lens, layered) ------------------------------- */

.uber-uns {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  --cx: 50%;
  --cy: -100%;
  --lens-r: 0px;
  transition: --lens-r 350ms var(--ease-out);
}
.uber-uns.is-hovering { --lens-r: 120px; }

.uber-uns__layer {
  position: absolute; inset: 0;
  display: flex; align-items: center;
}

.uber-uns__under {
  background: var(--c-black);
  color: var(--c-white);
  z-index: 3;
  visibility: hidden;
  clip-path: circle(var(--lens-r) at var(--cx) var(--cy));
  -webkit-clip-path: circle(var(--lens-r) at var(--cx) var(--cy));
}
.uber-uns__over {
  background: var(--c-grey-light);
  color: var(--c-black);
  z-index: 2;
}
.uber-uns.is-hovering .uber-uns__under { visibility: visible; }

.uber-uns__marquee {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  pointer-events: none;
  overflow: hidden;
}
.uber-uns__mobile-art { display: none; }
/* Over-layer marquee captures pointer events so the "über uns" letters trigger the lens */
.uber-uns__over .uber-uns__marquee { pointer-events: auto; }
.uber-uns__marquee-track {
  display: flex;
  gap: 4vw;
  font-family: var(--font-marquee);
  /* original .icon-embed-uber is height:100% of the section — the letters fill
     the whole screen height. Size the marquee so the line box ≈ section height. */
  font-size: clamp(16rem, 12rem + 60vw, 120rem);
  letter-spacing: -0.04em;
  line-height: 0.85;
  white-space: nowrap;
  will-change: transform;
}
/* Under = black bg, white outlined "über uns" (revealed by cursor lens) */
.uber-uns__under .uber-uns__marquee-track {
  color: transparent;
  -webkit-text-stroke: 2px var(--c-white);
}
/* Over = grey bg, LIME GREEN filled "über uns" (matches original .uber_wrap accent color) */
.uber-uns__over .uber-uns__marquee-track {
  color: var(--c-lime);
}

.uber-uns__content {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.uber-uns__copy {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 0.75rem + 1.4vw, 2.25rem);
  line-height: 1.4;
  max-width: 40ch;
  letter-spacing: normal;
}

.uber-uns__under .uber-uns__copy { color: var(--c-white); }
.uber-uns__over .uber-uns__copy { color: var(--c-black); }

/* Lens trigger band over the central "über uns" text (mirrors .hero__hitzone).
   Sits above both layers so hovering the text — and the copy that overlaps it —
   reliably opens the lens (no more closing when the cursor crosses the copy). */
.uber-uns__hitzone {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 66%;
  z-index: 5;
  pointer-events: auto;
}

@media (hover: none), (pointer: coarse) {
  .uber-uns__under { display: none; }
}

/* On tablet/phone the body copy becomes a clean centred column
   (original moves .intro_text into static flow below 991) */
@media (max-width: 991px) {
  .uber-uns__content { justify-content: center; }
  .uber-uns__copy { max-width: 38ch; text-align: center; }
}
@media (max-width: 479px) {
  .uber-uns__copy { font-size: 1.4rem; max-width: 92%; }
}

/* --- SCREEN 3: Best Cases ---------------------------------------------- */

.best-cases {
  padding-block: var(--section-pad-y);
  background: #fff;
  color: var(--c-black);
  min-height: 100svh;
  display: flex; align-items: center;
}

.best-cases__inner {
  display: flex; flex-direction: column;
  align-items: center;
}

.best-cases__pitch {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  /* original .text-style-heading.is-work: 3.3vw, line-height 1.8;
     .work_component max-width: 72vw — text wraps naturally (no forced <br>) */
  font-size: 3.3vw;
  line-height: 1.8;
  letter-spacing: normal;
  max-width: 72vw;
  text-align: center;
  margin: 0 auto;
}

.best-cases__line { display: block; }
.best-cases__lead { display: block; }

/* original breakpoint scaling for the pitch (is-work): 4.2vw / 5vw / 6vw */
@media (max-width: 991px) { .best-cases__pitch { font-size: 4.2vw; } }
@media (max-width: 767px) {
  .best-cases__pitch { font-size: 5vw; }
  .best-cases__line { display: inline; }
  .best-cases__lead { display: block; }
  .best-cases__pitch br { display: none; } /* let it wrap naturally on phones */
}
@media (max-width: 479px) { .best-cases__pitch { font-size: 6vw; } }

.best-cases__pitch b {
  font-weight: 500;
  font-style: italic;
}

.best-cases__pitch .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 800ms var(--ease-out), opacity 500ms var(--ease-out);
  white-space: pre;
}

.best-cases__pitch.is-visible .word {
  transform: translateY(0);
  opacity: 1;
}

.best-cases__pitch img {
  display: inline-block;
  height: auto;
  width: auto;
  vertical-align: middle;
  object-fit: fill;
  max-width: 2.85em;
  max-height: 2.15em;
  border-radius: 2px;
  margin: -0.25em 0;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 800ms var(--ease-out), opacity 500ms var(--ease-out);
}

.best-cases__pitch.is-visible img {
  transform: translateY(0);
  opacity: 1;
}

.best-cases__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  margin-top: 4rem;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.33;
  width: 11.9023rem;
  justify-content: center;
}
.best-cases__link .arrow,
.chladni__link .arrow,
.contact__submit .arrow {
  width: 0.5em; height: 0.85em;
  transition: transform var(--dur-fast) var(--ease-out);
}
.best-cases__link:hover .arrow,
.chladni__link:hover .arrow,
.contact__submit:hover .arrow {
  transform: translateX(0.25em);
}

/* --- SCREEN 4: Chladni ------------------------------------------------- */

.chladni {
  position: relative;
  background: var(--c-black);
  color: var(--c-white);
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}

.chladni__canvas-wrap {
  position: absolute; inset: -2%;
  z-index: 0;
  /* Canvas needs pointer events so its mousemove fires */
}
#chladniCanvas {
  display: block;
  width: 100%; height: 100%;
}

.chladni__math {
  position: absolute;
  top: calc(var(--nav-h) + 1rem);
  left: var(--container-pad);
  z-index: 2;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
  pointer-events: none;
}

/* The copy block sits on top visually but lets the mouse through to the canvas */
.chladni__content {
  position: relative;
  z-index: 1;
  width: 100%;
  pointer-events: none;
}
.chladni__copy { max-width: 34.5rem; }
.chladni__copy p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  /* original .text-style-heading.is-html: 1.6rem, line-height 1.4 */
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--c-white);
}
.chladni__copy strong { color: var(--c-lime); font-weight: inherit; }
.chladni__link {
  display: flex; align-items: center; gap: 0.4em;
  margin-top: 4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 100;
  font-size: 1.2rem;
  line-height: 1.33;
  width: 12.4004rem;
  pointer-events: auto;
}

.chladni__controls {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; align-items: center; gap: 1.25rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--c-lime);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.75rem;
  color: var(--c-lime);
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  letter-spacing: 0.04em;
  pointer-events: auto;
}
.chladni__controls.minimized > .chladni__control { display: none; }

.chladni__control { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; min-width: 4.5rem; }
.chladni__control label { text-transform: capitalize; color: var(--c-grey-mid); font-size: 0.7rem; }
.chladni__control input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 4.5rem; height: 4px;
  background: rgba(150, 255, 0, 0.25);
  border-radius: 2px; outline: none;
}
.chladni__control input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 10px; height: 10px;
  background: var(--c-lime); border-radius: 50%; cursor: none;
}
.chladni__control input[type="range"]::-moz-range-thumb {
  width: 10px; height: 10px;
  background: var(--c-lime); border: 0; border-radius: 50%;
}
.chladni__value { color: var(--c-lime); font-weight: 600; }
.select-wrap { position: relative; }
.chladni__control select {
  appearance: none; -webkit-appearance: none;
  background: transparent; color: var(--c-lime);
  border: 1px solid rgba(150, 255, 0, 0.4); border-radius: 4px;
  padding: 0.25rem 0.5rem; font-size: 0.75rem; font-family: inherit;
  letter-spacing: 0.04em;
}
.chladni__control select option { background: var(--c-black); color: var(--c-lime); }
.minimize-btn {
  margin-left: 0.5rem;
  width: 1.5rem; height: 1.5rem;
  border: 1px solid var(--c-lime); border-radius: 4px;
  color: var(--c-lime); font-weight: 700; line-height: 1;
}

@media (max-width: 767px) {
  .chladni__copy p { font-size: 1.5rem; } /* original is-html @479≈1.5rem */
  .chladni__controls { font-size: 0.6rem; gap: 0.5rem; padding: 0.4rem 0.6rem; max-width: 96%; bottom: 1rem; }
  .chladni__control { min-width: 0; gap: 0.15rem; }
  .chladni__control label { font-size: 0.55rem; }
  .chladni__control input[type="range"] { width: 2.5rem; }
  .chladni__control select { font-size: 0.55rem; padding: 0.15rem 0.35rem; }
  .chladni__value { font-size: 0.55rem; }
  .minimize-btn { width: 1.1rem; height: 1.1rem; margin-left: 0.25rem; }
  .chladni__math { font-size: 0.55rem; top: calc(var(--nav-h) + 0.5rem); }
}

/* --- SCREEN 5: Kontakt (model on original .footer + .footer_grid) ------ */

.contact {
  position: relative;
  background: var(--c-grey-light);
  color: var(--c-black);
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: 2rem;
  overflow: hidden;
}

.contact__inner { position: relative; }

.contact__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 200;   /* lighter CHMedia Light-Italic — was 300 (too thick) */
  /* original .text-style-heading.is-footer: 1.5rem → 1.3rem(767) → 1.125rem(479) */
  font-size: 1.5rem;
  line-height: 1.4;
  text-align: center;
  max-width: 50ch;
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
}
@media (max-width: 767px) { .contact__heading { font-size: 1.3rem; } }
@media (max-width: 479px) { .contact__heading { font-size: 1.125rem; } }

.contact__form {
  display: block;
  max-width: 64rem;                    /* original footer content width */
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
  position: relative;
  z-index: 2;
}

.contact__form-fields {
  display: grid;
  grid-template-columns: 24rem 1fr;
  gap: 5rem;
  align-items: stretch;
}

/* original footer: form stacks to one column at 991 */
@media (max-width: 991px) {
  .contact__form { width: 90vw; max-width: none; }
  .contact__form-fields { grid-template-columns: 1fr; gap: .5rem; }
  .contact__form-right { min-height: 0; }
}

.contact__form-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact__form-right { display: flex; }

.field {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-black);
  color: var(--c-black);
  padding: 0.5rem 0;
  font-size: 1.125rem;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 200;
  line-height: 1.42857;
  letter-spacing: -0.03em;
  width: 100%;
  border-radius: 0;
}
.field::placeholder {
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
}
.field:focus {
  outline: none;
  border-bottom-color: var(--c-lime);
}

.textarea {
  flex: 1;
  resize: both;
  /* original .textarea-field: left + right borders only — no top or bottom bar */
  border: none;
  border-left: 1px solid var(--c-black);
  border-right: 1px solid var(--c-black);
  padding: 0.75rem 1rem;
  min-height: 100%;
  font-size: 1.125rem;
}

.contact__submit {
  align-self: flex-end;   /* original .is-button: justify-content flex-end */
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  padding: 0.25rem 1.8rem 0.25rem 0;
  margin-top: 1rem;
  position: relative;
}
.contact__submit .arrow {
  position: absolute;
  top: 50%;
  right: 0;
  width: 1.0664em;
  height: 1.3333em;
  flex: none;
  transform: translateY(-50%);
}
.contact__submit:hover .arrow {
  transform: translate(.25em, -50%);
}

@media (max-width: 991px) {
  .textarea {
    min-height: 2.75rem;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--c-black);
    padding: .5rem 0;
  }
  .contact__submit { margin-left: auto; }
}

.contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
  max-width: 64rem;                 /* original footer content width */
  margin-left: auto; margin-right: auto;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 100;
  font-size: 1.5rem;
  line-height: 1.33;
  position: relative;
  z-index: 2;
}
/* original .max-width-footer: each info block caps at 16rem, so e.g.
   "Sign up to our Newsletter!" wraps to two lines like the original */
.contact__info > * { width: 16rem; max-width: 16rem; }

/* original footer_grid: stacks + centers at 991, font 1.5rem → 1.3rem(479) */
@media (max-width: 991px) {
  .contact__info {
    grid-template-columns: 1fr;
    width: 90vw;
    max-width: none;
    text-align: center;
    justify-items: center;
    gap: 1.5rem;
  }
}
@media (max-width: 479px) {
  .contact__info { font-size: 1.3rem; }
}

.contact__address { font-style: italic; }
.contact__channels a {
  display: inline-block;
  transition: text-decoration-color var(--dur-fast);
}
.contact__channels a:hover { text-decoration: underline; }

.newsletter p { margin-bottom: 0; }
.newsletter__input {
  background: transparent; border: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 100;
  font-size: 1.4rem;
  line-height: 1.42857;
  padding: 0;
  width: 100%;
  height: 2rem;
  box-sizing: border-box;
}
.newsletter__input::placeholder { color: rgba(0, 0, 0, 0.6); }
.newsletter__input:focus { outline: none; border-bottom-color: var(--c-lime); }

/* ----- Form success states (contact + newsletter) -------------------- */
.form-success {
  max-width: 64rem;
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
  text-align: center;
  padding: clamp(1.5rem, 4vw, 3rem) 1rem;
}
.form-success__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.25rem; height: 3.25rem;
  border-radius: 50%;
  background: var(--c-lime);
  margin-bottom: 1.25rem;
  transform: scale(0);
  animation: success-pop 520ms var(--ease-out) forwards;
}
.form-success__mark::after {
  content: "";
  width: 1.1rem; height: 0.6rem;
  border-left: 2.5px solid var(--c-black);
  border-bottom: 2.5px solid var(--c-black);
  transform: rotate(-45deg) translate(1px, -2px);
}
.form-success__title {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.2;
}
.form-success__sub {
  font-family: var(--font-display); font-style: italic; font-weight: 200;
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.55);
  margin-top: 0.6rem;
}
.newsletter__form { margin: 0 0 .9375rem; }
.newsletter__success {
  font-family: var(--font-display); font-style: italic; font-weight: 200;
  font-size: 1.5rem;
  color: var(--c-black);
  animation: success-fade 420ms var(--ease-out) both;
}
.form-error, .newsletter__error {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 1rem; line-height: 1.4;
  color: #c0392b;
  margin-top: 0.75rem;
}
.form-error {
  max-width: 64rem; margin-left: auto; margin-right: auto;
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}
.form-error a { border-bottom: 1px solid currentColor; }
@keyframes success-pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.12); }
  100% { transform: scale(1); }
}
@keyframes success-fade {
  from { opacity: 0; transform: translateY(0.4rem); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .form-success__mark, .newsletter__success { animation: none; transform: none; }
}

/* ----- 404 page ------------------------------------------------------- */
.notfound {
  min-height: 100svh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--c-bg);
  color: var(--c-black);
}
.notfound__code {
  font-family: var(--font-marquee);
  font-weight: 400;
  font-size: clamp(7rem, 26vw, 24rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
}
.notfound__code em { font-style: normal; color: var(--c-lime); }
.notfound__msg {
  font-family: var(--font-display); font-style: italic; font-weight: 200;
  font-size: clamp(1.25rem, 1rem + 1.5vw, 2rem);
  line-height: 1.3;
  margin-top: 1.5rem;
  max-width: 28ch;
}
.notfound__link {
  display: inline-flex; align-items: center; gap: 0.4em;
  margin-top: 2.5rem;
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(1rem, 0.85rem + 0.5vw, 1.25rem);
  border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.notfound__link .arrow { width: 0.5em; height: 0.85em; transition: transform var(--dur-fast) var(--ease-out); }
.notfound__link:hover .arrow { transform: translateX(0.25em); }
.notfound__brand {
  position: fixed; top: 1.5rem; left: 1.5rem; z-index: 10;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  letter-spacing: 0.03em;
}

.contact__decor {
  position: absolute;
  left: 1.25rem;
  right: auto;
  bottom: -1.431rem;
  width: 90vw;
  pointer-events: none;
  z-index: 0;
  color: var(--c-lime);
  line-height: 0;
}
.contact__decor svg {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 992px) {
  .contact__decor {
    left: 50%;
    bottom: -8.3998rem;
    width: 64rem;
    transform: translateX(-50%);
  }
}

.contact__bottom {
  max-width: 64rem;                /* original footer content width */
  margin-top: clamp(2.5rem, 5vw, 5rem);
  text-align: left;                /* original .text-style-footer_end is left-aligned */
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 200;
  font-size: 0.75rem;
  position: relative;
  z-index: 2;
}
.contact__bottom a { display: inline; }

.contact__bottom a:hover { text-decoration: underline; }

/* --- Generic content pages (Insights, Impressum) ----------------------- */

.page-grey { background: var(--c-grey-light); }

.page {
  min-height: 100svh;
}

.page-header {
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.page-header__title {
  font-family: var(--font-marquee);
  font-weight: 400;
  font-size: clamp(4rem, 2rem + 12vw, 18rem);
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: var(--c-black);
}

.page-body {
  padding-bottom: clamp(4rem, 8vw, 10rem);
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem);
  line-height: 1.55;
}

.page-body p + p { margin-top: 1.2em; }
.page-body a { border-bottom: 1px solid currentColor; }
.page-body a:hover { border-bottom-color: var(--c-lime); }

.insight-empty {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 0.9rem + 0.8vw, 1.75rem);
  color: var(--c-black);
  padding-block: 3rem;
}

.impressum {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 100;
  font-size: clamp(1.25rem, 1rem + 0.5vw, 1.75rem);
  line-height: 1.4;
  max-width: 50ch;
}

.impressum strong { font-weight: 500; font-style: italic; }

.impressum__h2 {
  margin-top: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  font-family: var(--font-marquee);
  font-weight: 400;
  font-size: clamp(2rem, 1.25rem + 2.5vw, 4rem);
  letter-spacing: -0.02em;
  color: var(--c-black);
}

.impressum--prose {
  max-width: 60ch;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.25rem);
  font-weight: 200;
  line-height: 1.6;
}

/* --- Insights list page (values copied from original .insights_*) ----- */

.section_insights {
  position: relative;
  background-color: var(--c-grey-light);
  color: var(--c-black);
  min-height: 100vh;
}

.section_insights .container-large {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
}

.div-block-8 {
  display: flex;
  flex-flow: row;
  height: 100vh;
  padding-left: 2vw;
  overflow: hidden;
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
}

.div-block-7 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  gap: 2rem;
  overflow: hidden;
}

.insights_sticky {
  display: flex;
  align-items: center;
  height: 100vh;
  position: sticky;
  top: 138px;
}

.div-block-6 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  gap: 4vw;
}

.text-style-insights {
  font-family: var(--font-display);
  letter-spacing: -.02em;
  font-size: 6.5vw;
  font-weight: 400;
  line-height: 1.2;
}

@media (min-width: 992px) {
  .div-block-7 > .width-full {
    flex: none;
    height: 18.0835rem;
  }
}

.width-full {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 80%;
}

.insights_component {
  list-style: none;
  scroll-snap-type: y mandatory;
  box-sizing: border-box;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100vh;
  padding: 25vh 14vw 25vh 45vw;
  position: absolute;
  inset: 0;
  overflow-y: scroll;
  margin: 0;
}

.insight_wrap {
  opacity: .94;
  scroll-snap-align: center;
  flex: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 50vh;
}

.full-size {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  color: var(--c-black);
}

.text-style-insight {
  font-family: var(--font-marquee);
  letter-spacing: -.02em;
  font-size: 6.5vw;
  font-weight: 400;
  line-height: 1.2;
  transition: opacity .2s ease;
}

.text-style-insight.is-outline {
  color: var(--c-grey-light);
  -webkit-text-stroke: 1px var(--c-black);
  position: absolute;
  inset: 0;
  overflow: hidden;
  transition: opacity .2s ease;
}

/* Crossfade: active item is solid black; inactive items are outlined */
.full-size.active .is-outline { opacity: 0; }
.full-size:not(.active) .text-style-insight:not(.is-outline) { opacity: 0; }

/* Below the medium breakpoint, the sticky layout collapses to a single column */
@media (max-width: 991px) {
  .div-block-8 { flex-flow: column; height: auto; padding: 0 1.25rem; }
  .div-block-7 { margin-top: 5rem; padding-bottom: 0; gap: 0; }
  .width-full { width: 100%; height: auto; flex: 0 1 auto; justify-content: flex-start; align-items: flex-start; }
  .insights_sticky { position: static; height: auto; padding: 0; }
  .insights_component { position: static; padding: 0 0 3rem; height: auto; overflow: visible; }
  .insight_wrap { height: auto; padding: .7rem 0; }
  .text-style-insight { font-size: 3rem; line-height: 1.2; }
  .text-style-insights { font-size: 3rem; line-height: 1.2; }
  .div-block-6 .text-style-insights[aria-hidden="true"] { display: none; }
  .full-size:not(.active) .text-style-insight:not(.is-outline) { opacity: 1; }
}

/* Source-matched responsive geometry for the custom home implementation. */
@media (min-width: 992px) {
  .hero__logo { transform: scale(1.145); }
  .best-cases {
    min-height: auto;
    padding-block: clamp(7rem, 8vw, 9rem);
  }
  .best-cases__pitch {
    max-width: min(72vw, 68rem);
    font-size: clamp(2rem, calc(1.2rem + 1.25vw), 2.75rem);
    line-height: 1.45;
  }
  .best-cases__line,
  .best-cases__lead { display: inline; }
  .uber-uns {
    height: calc(100vw * 1360 / 2920);
    min-height: 0;
  }
  .uber-uns__content { padding-right: 5rem; }
  .uber-uns__copy {
    max-width: 46rem;
    font-size: 2.2rem;
    font-weight: 300;
  }
  .chladni__content { max-width: 64rem; padding-inline: 0; }

  .contact {
    padding-top: 4rem;
    padding-bottom: 1.5rem;
  }
  .contact__heading { margin-bottom: 5rem; }
  .contact__form { margin-bottom: 5rem; }
  .contact__form-left { gap: .625rem; }
  .textarea {
    height: 12.8833rem;
    min-height: 12.8833rem;
    margin-bottom: -3rem;
  }
  .contact__submit {
    display: flex;
    width: 6.44775rem;
    margin-top: 0;
    margin-left: 17.55225rem;
    padding: .5625rem 1.8rem .5625rem .9375rem;
    font-size: 1.125rem;
    font-weight: 100;
    line-height: 1.33;
  }
  .contact__bottom {
    margin-top: 3rem;
    line-height: 1.33;
  }
}

@media (max-width: 991px) {
  :root {
    --nav-h: 3.25rem;
    --container-pad: 1.25rem;
  }

  .nav { padding-inline: 1rem; }
  .nav__logo { width: 11rem; height: 1.4rem; }
  .nav__burger { width: 1.5rem; height: 1.5rem; gap: 4px; padding: 4px 0; }
  .nav__burger span { width: 1.5rem; height: 1px; }
  .nav__burger.is-open {
    position: fixed;
    top: 0;
    right: .3125rem;
    width: 3.7rem;
    height: 3.5rem;
    padding: 0;
    border: 1px solid var(--c-lime);
    justify-content: center;
    align-items: center;
  }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }

  .nav__overlay {
    inset: 0 0 auto;
    height: 13.556rem;
    align-items: flex-start;
    justify-content: flex-start;
    background: var(--c-white);
    color: var(--c-black);
    box-shadow: 0 14px 22px rgba(0, 0, 0, .12);
  }
  .nav__overlay ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    column-gap: 0;
    row-gap: .75rem;
    width: 100%;
    padding: 4.75rem 1.25rem 1.5rem;
    text-align: left;
  }
  .nav__overlay a { font-size: 1.3rem; font-weight: 300; }
  .nav__overlay li:not(:last-child) a::after { content: ","; }
  .nav__overlay li:nth-last-child(2) a::after { content: none; }
  .nav__overlay li:last-child:nth-child(3) { grid-column: 2; grid-row: 1; }
  .nav__overlay li:last-child { justify-self: end; }

  .hero__logo { display: none; }
  .hero__logo-mobile {
    display: block;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 2.5rem;
    width: calc(100% - 5rem);
    height: auto;
    transform: translateY(-50%);
    pointer-events: none;
  }
  .hero__hitzone {
    left: 2.5rem;
    width: calc(100% - 5rem);
    aspect-ratio: 628 / 200;
  }
  .hero__under .hero__tagline {
    z-index: 2;
    width: calc(100% - 1.5rem);
    max-width: none;
    font-size: clamp(1.25rem, 6.5vw, 3.75rem);
    line-height: 1.05;
    letter-spacing: 0;
  }
  .uber-uns {
    min-height: 0;
    height: auto;
  }
  .uber-uns__layer { position: absolute; }
  .uber-uns__over { position: relative; }
  .uber-uns__over {
    background-image: none;
  }
  .uber-uns__over::after { display: none; }
  .uber-uns__mobile-art {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 240vw;
    height: 46vw;
    z-index: 0;
    color: var(--c-lime);
    pointer-events: none;
    will-change: transform;
  }
  .uber-uns__mobile-art svg {
    width: 100%;
    height: 100%;
    max-width: none;
  }
  .uber-uns__over .uber-uns__marquee { display: none; }
  .uber-uns__over .uber-uns__marquee,
  .uber-uns__over .uber-uns__content { visibility: visible; }
  .uber-uns__content {
    justify-content: flex-start;
    padding-block: 4rem;
  }
  .uber-uns__copy {
    max-width: 38ch;
    text-align: left;
    font-size: 1.75rem;
  }
  .uber-uns__hitzone { display: none; }

  .best-cases,
  .chladni { min-height: 0; padding-block: 4rem; }

  .best-cases__link {
    margin-top: 2.5rem;
    border-bottom: 0;
    padding-bottom: 0;
    font-size: 1.35rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.33;
    width: 10.887rem;
    justify-content: center;
  }
  .chladni__link {
    margin-top: 2.5rem;
    border-bottom: 0;
    padding-bottom: 0;
    font-size: 1.2rem;
    font-weight: 100;
    line-height: 1.33;
    width: 12.4004rem;
  }
}

@media (max-width: 479px) {
  .uber-uns__copy { max-width: calc(90vw - 2.5rem); font-size: 6.4vw; }
  .best-cases__pitch { max-width: 100%; }
  .chladni__copy { max-width: none; }
  .chladni__math,
  .chladni__controls { display: none; }
  .contact { padding-top: 2.5rem; padding-bottom: 2rem; }
  .contact__heading { margin-bottom: 3rem; }
  .contact__form { margin-bottom: 3rem; }
  .contact__form-fields { gap: 2.375rem; }
  .textarea { height: 4.2764rem; min-height: 4.2764rem; }
  .contact__submit {
    display: flex;
    width: 6.44775rem;
    margin-left: auto;
    padding: .5625rem 1.8rem .5625rem .9375rem;
    font-size: 1.125rem;
    font-weight: 100;
    line-height: 1.33;
  }
  .contact__info { gap: 1rem; }
  .newsletter__input,
  .newsletter__success { font-size: 1.3rem; line-height: 1.42857; }
  .newsletter__input { height: 1.85645rem; }
  .contact__bottom { margin-top: 2rem; line-height: 1.33; }
  .contact { padding-bottom: 1.25rem; }
}

/* --- Insight detail page (values copied verbatim from original CSS) --- */

/* Container & layout helpers */
.padding-global { padding-left: 2.5%; padding-right: 2.5%; }
.container-large-detail { width: 100%; max-width: 80rem; margin-left: auto; margin-right: auto; }
.padding-section-large-detail { padding-top: 7rem; padding-bottom: 7rem; }
.padding-section-medium-detail { padding-top: 5rem; padding-bottom: 5rem; }

/* Detail body uses the white default background; alternating sections use grey/black */
.background-color-grey { background-color: var(--c-grey-light); }
.background-color-black { background-color: var(--c-black); }
.text-color-white { color: var(--c-white); }

/* H1 */
.heading-style-insight {
  font-family: var(--font-display);
  letter-spacing: -.03em;
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.2;
}

/* Outlined Parabole H2 */
.heading-style-insight_study {
  font-family: var(--font-marquee);
  color: transparent;
  -webkit-text-stroke-color: var(--c-black);
  -webkit-text-stroke-width: 1px;
  font-size: 3.66rem;
  font-weight: 400;
  line-height: 1.1;
}
.heading-style-insight_study.is-header {
  font-size: 7.25vw;
  line-height: 1;
  overflow-wrap: break-word;
  word-break: break-word;
}
.heading-style-insight_study.is-small { font-size: 2.85rem; line-height: 1; }
.heading-style-insight_study.is-white {
  -webkit-text-stroke-color: var(--c-white);
}
.heading-style-insight_study.is-white.is-tiny {
  font-size: 2.5rem; line-height: 1.125;
}

.heading-style-h5 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
}

/* Header grid: 1fr 2.66fr (eyebrow + body) */
.insight_grid-header {
  display: grid;
  grid-template-columns: 1fr 2.66fr;
  gap: 4rem;
}

/* Two-column grid for sections */
.insight_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.insight_grid.is-half { gap: 0; }

/* KPI stats grid */
.insight_stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4rem;
}
.insight_stat {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  gap: .25rem;
}
.insight_stat.is-alt {
  text-align: right;
  align-items: flex-end;
}

.text-style-stat {
  font-family: var(--font-marquee);
  font-size: 8.5vw;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.text-style-stat.smaller { font-size: 3rem; }

/* Rich text content */
.text-rich-text {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.5;
  max-width: 60ch;
}
.text-rich-text p { margin-top: 0; margin-bottom: 1rem; }
.text-rich-text p:last-child { margin-bottom: 0; }
.text-rich-text strong { font-weight: 600; }
.text-rich-text em { font-style: italic; }
.text-rich-text h2, .text-rich-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
  margin: 1.5rem 0 1rem;
}
.text-rich-text ol, .text-rich-text ul { margin: 1rem 0; padding-left: 1.5rem; }
.text-rich-text li { margin: .25rem 0; padding-left: .5rem; }
.text-rich-text a { border-bottom: 1px solid currentColor; }

/* Italic icon-link (e.g. "Mehr erfahren ›", "Download Studie (PDF)") */
.link-icon {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 100;
}
.link-icon.is-regular { font-style: normal; }
.link-icon.is-sober { font-size: 1.5rem; font-style: normal; font-weight: 400; }
.link-icon.is-insight { font-size: 1.125rem; font-style: normal; }
.link-icon .arrow {
  width: 0.5em; height: 0.85em;
  transition: transform var(--dur-fast) var(--ease-out);
}
.link-icon:hover .arrow { transform: translateX(0.25em); }

.button-group { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.button-group.align-right { justify-content: flex-end; }

.cms_image-full {
  display: block;
  width: 90%;
  max-width: 80rem;        /* same as .container-large-detail */
  height: auto;            /* natural aspect ratio — show the full image, no crop */
  margin: 0 auto;
}

.max-width-large { width: 100%; max-width: 48rem; }
.text-size-small { font-size: .875rem; line-height: 1.45; }
.margin-bottom-small { margin-bottom: 1.5rem; }
.margin-bottom-medium { margin-bottom: 2rem; }
.margin-bottom-large { margin-bottom: 3rem; }
.margin-bottom-xsmall { margin-bottom: 1rem; }
.margin-bottom-xxsmall { margin-bottom: .5rem; }

/* "Entdecke weitere Insights" black band */
.more-insights { display: flex; gap: 1rem; align-items: stretch; }
.grid-insights {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  flex: 1;
}
.grid-insights .insight {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 2rem;
}

@media (max-width: 991px) {
  .heading-style-insight { font-size: 2rem; }
  .heading-style-insight_study { font-size: 2rem; }
  .heading-style-insight_study.is-header { font-size: 12vw; }
  .text-style-stat { font-size: 16vw; }
  .insight_grid-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .insight_grid { grid-template-columns: 1fr; gap: 2rem; }
  .insight_stats { grid-template-columns: 1fr; gap: 2rem; }
  .grid-insights { grid-template-columns: 1fr; gap: 2rem; }
  .padding-section-large-detail { padding-top: 4rem; padding-bottom: 4rem; }
  .padding-section-medium-detail { padding-top: 3rem; padding-bottom: 3rem; }
}
