/* OrthoConnect Landing — „Passform & Akte" (design-guidelines v2.1, as amended
   by landing-amendment-bild-hero.md)
   Register: Neuralink × Exo — dark, visual-led, monochrome, scene-based.
   Self-hosted Switzer (ADR-038) + Plex Mono (data-only). Zero third-party origins.
   CSP note: style-src 'self' / script-src 'self' — NO inline styles or scripts.

   PHASE STATE: NAV + HERO text/layout are the v2.1 base; the hero IMAGE is added
   by M1-R5 Phase 1. Scenes 3–11 still carry the M1-R2 markup so their 10 locked
   blocks keep locked-verify green; they ride the small INTERIM block at the end
   of this file (readable, monochrome, no banned artifacts) and are rebuilt to
   v2.1 §4 in Phase 2. */

/* ---------- Fonts (self-hosted, font-display: swap) ---------- */
@font-face { font-family: "Switzer"; font-style: normal; font-weight: 400; font-display: swap; src: url("./fonts/switzer-400.woff2") format("woff2"); }
@font-face { font-family: "Switzer"; font-style: normal; font-weight: 500; font-display: swap; src: url("./fonts/switzer-500.woff2") format("woff2"); }
@font-face { font-family: "Switzer"; font-style: normal; font-weight: 600; font-display: swap; src: url("./fonts/switzer-600.woff2") format("woff2"); }
@font-face { font-family: "Plex Mono"; font-style: normal; font-weight: 400; font-display: swap; src: url("./fonts/plex-mono-400.woff2") format("woff2"); }
@font-face { font-family: "Plex Mono"; font-style: normal; font-weight: 500; font-display: swap; src: url("./fonts/plex-mono-500.woff2") format("woff2"); }

/* ---------- Tokens (v2.1 §2–§3) ---------- */
:root {
  /* Dark scenes */
  --d-canvas:  #0A0B0D;
  --d-text:    #F2F1EE;
  --d-annot:   #9BA1A8;
  --d-hair:    #1C1F24;
  /* Light scenes (Phase 2) */
  --l-canvas:  #FAFAF8;
  --l-ink:     #141619;
  --l-second:  #5D6369;
  --l-hair:    #E4E3DD;
  /* Visual vocabulary (monochrome line work) */
  --v-dim:     #5C6670;
  /* the hero raster's own black, sampled at its bottom-left corner */
  --hero-black: #0F0E0C;

  --f-sans: "Switzer", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --f-mono: "Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Type scale (§3): H1 ceiling 72px */
  --t-h1:    clamp(2.5rem, 4.5vw, 4.25rem);
  --t-scene: clamp(1.75rem, 3vw, 2.75rem);
  --t-body:  1.1875rem;   /* 19px */
  --t-annot: 0.875rem;    /* 14px */

  --container: 72rem;
  --measure: 62ch;
  --scene-pad: clamp(96px, 14vh, 200px);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  font-family: var(--f-sans);
  font-size: var(--t-body);
  line-height: 1.65;
  color: var(--l-ink);
  background: var(--l-canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -webkit-hyphens: auto; hyphens: auto;
}
h1, h2, h3 { margin: 0 0 0.5em; font-weight: 600; -webkit-hyphens: manual; hyphens: manual; letter-spacing: -0.01em; }
h1 { font-size: var(--t-h1); line-height: 1.08; }
h2 { font-size: var(--t-scene); line-height: 1.12; }
h3 { font-size: 1.1875rem; line-height: 1.3; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
svg { display: block; max-width: 100%; }
strong { font-weight: 600; }
:focus-visible { outline: 2px solid currentColor; outline-offset: 2px; border-radius: 2px; }

.skip-link { position: absolute; left: 8px; top: -60px; z-index: 100; background: var(--d-text); color: var(--d-canvas); padding: 10px 16px; text-decoration: none; border-radius: 4px; transition: top 0.15s; }
.skip-link:focus { top: 8px; }

.container { max-width: var(--container); margin: 0 auto; padding-inline: clamp(1.25rem, 5vw, 2.5rem); }

/* ---------- Buttons (§6) ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; min-height: 48px; padding: 0.7rem 1.5rem; font: inherit; font-weight: 500; text-decoration: none; cursor: pointer; border: 1px solid transparent; border-radius: 4px; transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease); }
/* light scenes: solid ink */
.btn--primary { background: var(--l-ink); color: var(--l-canvas); border-color: var(--l-ink); }
.btn--primary:hover { background: #000; }
.btn--ghost { background: transparent; color: var(--l-ink); border-color: var(--l-ink); }
.btn--ghost:hover { background: var(--l-ink); color: var(--l-canvas); }
/* on dark (nav + hero): 1px light outline, hover fills */
.nav .btn, .hero .btn { background: transparent; color: var(--d-text); border-color: var(--d-text); border-radius: 4px; }
.nav .btn:hover, .hero .btn:hover { background: var(--d-text); color: var(--d-canvas); }

/* ======================================================================
   NAV (§4.1) — transparent over hero; dark scrim + hairline on scroll
   ====================================================================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: background 0.25s var(--ease), border-color 0.25s var(--ease); background: transparent; border-bottom: 1px solid transparent; }
.nav.is-scrolled { background: rgba(10, 11, 13, 0.86); -webkit-backdrop-filter: saturate(140%) blur(8px); backdrop-filter: saturate(140%) blur(8px); border-bottom-color: var(--d-hair); }
.nav__inner { max-width: var(--container); margin: 0 auto; padding: 0.9rem clamp(1.25rem, 5vw, 2.5rem); display: flex; align-items: center; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; font-weight: 600; font-size: 1.0625rem; letter-spacing: -0.01em; color: var(--d-text); text-decoration: none; }
.nav__links { display: flex; gap: 1.75rem; margin-left: auto; align-items: center; }
.nav__links a { color: var(--d-text); text-decoration: none; font-size: 1rem; opacity: 0.82; }
.nav__links a:hover { opacity: 1; }
.nav__meta { display: flex; align-items: center; gap: 1.1rem; }
.lang-switch { font-size: var(--t-annot); letter-spacing: 0.02em; color: var(--d-annot); }
.lang-switch__on, .lang-switch [aria-current] { color: var(--d-text); font-weight: 500; }
.lang-switch a { color: var(--d-annot); text-decoration: none; }
.lang-switch a:hover { color: var(--d-text); }

/* mobile disclosure (CSS-only checkbox) */
.nav__check { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
@media (min-width: 861px) { .nav__check { display: none; } }
.nav__toggle { display: none; }
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .i-close { display: none; }
.nav__check:checked ~ .nav__toggle .i-open { display: none; }
.nav__check:checked ~ .nav__toggle .i-close { display: block; }
@media (max-width: 860px) {
  .nav { background: rgba(10, 11, 13, 0.86); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
  .nav__inner { flex-wrap: wrap; }
  .nav__toggle { display: inline-flex; align-items: center; justify-content: center; min-width: 48px; min-height: 48px; margin-left: auto; border: 1px solid var(--d-hair); border-radius: 4px; background: transparent; color: var(--d-text); cursor: pointer; }
  .nav__links, .nav__meta { display: none; }
  .nav__check:checked ~ .nav__links { display: flex; flex-direction: column; align-items: stretch; gap: 0; flex-basis: 100%; order: 10; margin-top: 0.75rem; border-top: 1px solid var(--d-hair); }
  .nav__check:checked ~ .nav__links a { padding: 0.85rem 0.25rem; border-bottom: 1px solid var(--d-hair); min-height: 48px; display: flex; align-items: center; opacity: 1; }
  .nav__check:checked ~ .nav__meta { display: flex; flex-basis: 100%; order: 11; justify-content: space-between; padding: 0.85rem 0; }
}

/* ======================================================================
   HERO (amendment §2) — dark canvas, generated raster.

   LAYOUT (CTO decision 2026-07-22, supersedes the overlay variant):
     >= 860px  two columns — raster right at ~55vw, text block left in the dark
               area, the WHOLE block above the fold at 1440x900.
     <  860px  stacked — portrait raster on top, text below, three terms as
               HTML annotations.

   GEOMETRY CONTRACT (measured off the masters, not estimated — re-measure if
   the assets are ever re-rendered):
     desktop 2204x1422 · TEXT-FREE (label-free re-render 2026-07-23). Scene
       occupies x 20-95 %, y 30-70 %; clear black x 0-20 % and top/bottom bands.
     mobile 1856x2304 · text-free; the implant ends at y 85 %, empty below.
   In the two-column desktop layout the raster lives in its own grid column, so
   the text never overlays it; the media box carries the master's own
   aspect-ratio (object-fit: cover therefore never crops). object-position is
   declared per amendment §2 and is inert while the box keeps that ratio.
   In the stacked layout the text is pulled up into the raster by a percentage
   margin; percentages resolve against the containing block's WIDTH, so the
   pull tracks the image height exactly at every viewport:
     mobile  -(1 - 0.88) * (2304/1856) = -14.9 %  -> text starts at y 88 %
   ====================================================================== */
/* The raster's black is WARM (#0F0E0C bottom-left, measured) while --d-canvas
   is cool (#0A0B0D); butting the two produced a visible seam at the image edge.
   The hero therefore carries the raster's own black and the image dissolves
   into it through the scrim, instead of ending on a hard line. */
.hero { background: var(--hero-black); color: var(--d-text); position: relative; overflow: hidden; min-height: 100svh; }
.hero__media { position: relative; width: 100%; aspect-ratio: 1856 / 2304; }
.hero__img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
/* stacked: bottom edge only — doubles as AA guard and seam blend */
.hero__media::after { content: ""; position: absolute; inset: auto 0 0 0; height: 34%; background: linear-gradient(to top, var(--hero-black) 0%, rgba(15, 14, 12, 0.82) 10%, rgba(15, 14, 12, 0) 100%); pointer-events: none; }

.hero__inner { position: relative; margin-top: -14.9%; padding: 0 clamp(1.25rem, 5vw, 2.5rem) clamp(2.5rem, 7vh, 5rem); }
.hero__text { max-width: none; }
.hero__kicker { color: var(--d-annot); font-size: var(--t-annot); line-height: 1.55; margin: 0 0 1.25rem; max-width: 54ch; }
/* balance evens the rag and clears the orphaned "Der" on line 1 in the narrow
   two-column measure; it changes wrapping only, never the v2.1 type scale */
.hero h1 { color: var(--d-text); margin: 0 0 1.4rem; text-wrap: balance; }
.hero__sub { color: var(--d-annot); font-size: var(--t-annot); line-height: 1.6; max-width: 50ch; margin: 0 0 2rem; }
.hero .btn-row { display: flex; margin: 0; }

/* The three process terms. Both assets are now text-free, so these render as
   dotted annotations at every width (amendment §2). Base = mobile: in flow
   below the text block. The desktop overlay is in the min-width:860 block. */
.hero__terms { list-style: none; margin: 2.75rem 0 0; padding: 0; display: grid; gap: 1.1rem; max-width: 22rem; }
/* No auto-hyphenation: the page sets hyphens:auto globally, which breaks these
   short labels as "manufactur-ers". They wrap at spaces only. */
.hero__terms li { color: var(--d-annot); font-size: var(--t-annot); line-height: 1.35; padding-bottom: 0.55rem; border-bottom: 1px dotted var(--d-hair); hyphens: manual; -webkit-hyphens: manual; }

@media (min-width: 860px) {
  /* Two columns. padding-left keeps the text on the site grid (same inset as
     .nav__inner); the raster bleeds off the right edge, so no right padding. */
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 49vw;
    align-items: center;
    /* 49vw leaves the H1 first line ("Der strukturierte") just 0.47px of slack
       at 1440 — one font update from wrapping to 6 lines again. The image stays
       at the specified 49vw; the safety margin comes out of the gap instead. */
    column-gap: clamp(1.25rem, 2.6vw, 2.75rem);
    padding-left: max(clamp(1.25rem, 5vw, 2.5rem), calc((100vw - var(--container)) / 2 + 2.5rem));
    padding-block: 5.5rem 3rem;   /* top clears the fixed nav */
  }
  .hero__media { grid-column: 2; grid-row: 1; aspect-ratio: 2204 / 1422; }
  .hero__img { object-position: 50% 50%; }
  /* Top and bottom edges fade into the canvas so the raster has no hard border
     (bottom carries a lighter floor reflection). Left/right are left alone: the
     image bleeds off the right, and its black-left matches --hero-black. */
  .hero__media::after { inset: 0; height: auto; background: linear-gradient(to bottom, var(--hero-black) 0%, rgba(15, 14, 12, 0) 9%, rgba(15, 14, 12, 0) 91%, var(--hero-black) 100%); }
  .hero__inner { grid-column: 1; grid-row: 1; margin: 0; padding: 0; }

  /* Three process terms as annotations that sit IN the glass plane's
     perspective, over the image's black-left band (amendment §2; CTO
     2026-07-23). Small, muted, letter-spaced, and tilted along the panel's
     vanishing axis so they read as part of the scene rather than a flat legend.
     Each term is one line where the cube clearance allows; the collision check
     measures the TRANSFORMED boxes against the cubes per row. */
  /* The container spans the image box (same width + height, vertically centred
     like the image), so both the per-term top: and right: percentages below are
     image fractions and track the raster at every width. Each term is
     RIGHT-anchored to where the cubes begin in its row (measured cube-start),
     pulled ~25px left of that edge so it hugs the cloud with a small constant
     gap. text-align:right + transform-origin:right keeps that right edge pinned
     under the tilt; the text recedes leftward into the plane's vanishing. */
  .hero__terms {
    position: absolute; top: 50%; left: 51vw; transform: translateY(-50%);
    width: 49vw; max-width: none; height: calc(49vw / 1.5499);
    margin: 0; padding: 0; border: 0; overflow: visible; clip: auto; z-index: 2;
  }
  .hero__terms li {
    position: absolute; width: auto;
    font-size: 9px; letter-spacing: 0.06em; line-height: 1.35;
    /* 80 %, nicht 65 %: bei 65 % ergibt sich über dem Bild-Schwarz 3.73:1 und
       damit unter AA (gemessen); 80 % liefert 5.08:1 und bleibt gedämpft.
       Kais Vorgabe lautete „etwa 65 %" — die Anhebung ist die AA-Korrektur. */
    color: color-mix(in srgb, var(--d-annot) 80%, transparent);
    text-align: right;
    padding-bottom: 0.28rem;
    border-bottom: 1px dotted color-mix(in srgb, var(--d-annot) 25%, transparent);
    transform: perspective(600px) rotateY(-30deg); transform-origin: right center;
  }
  /* right: (1 − cubeStart) + 25px gap · true cube-start per rendered row
     (fine-measured): 57% @y22 · 40% @y33 (the flat shelf) · 34% @y62 */
  .hero__terms li:nth-child(1) { top: 20%; right: calc(43% + 25px); max-width: 44%; }
  .hero__terms li:nth-child(2) { top: 31%; right: calc(60% + 25px); max-width: 34%; }
  .hero__terms li:nth-child(3) { top: 60%; right: calc(66% + 25px); max-width: 30%; }
}

/* ======================================================================
   SCENES 3–12 (M1-R6) — dark = argument, light = information.
   Scene-Reihenfolge: 3 Status quo · 4 Plattform · 5 Vergleich (dunkel) ·
   6 Vertrauen · 7 Ablauf · 8 Für Hersteller · 9 Team · 10 FAQ · 11 Kontakt
   · 12 Footer (hell). Keine Karten, Chips, Badges, Icon-Kreise, Stat-Boxen,
   Stepper-Grafiken, Versalien, Akzentfarben, Radius > 4px, keine Animation.
   ====================================================================== */
main > section { padding-block: var(--scene-pad); }
#hero.hero { padding-block: 0; }

/* Dunkle Szenen tragen dasselbe Schwarz wie der Hero, damit Hero → Sektion 3
   ohne sichtbare Kante übergeht. */
.scene-dark { background: var(--hero-black); color: var(--d-text); }
.scene-dark h2, .scene-dark h3 { color: var(--d-text); }
.scene-dark .eyebrow, .scene-dark .lede { color: var(--d-annot); }
.scene-dark .btn { background: transparent; color: var(--d-text); border-color: var(--d-text); }
.scene-dark .btn:hover { background: var(--d-text); color: var(--hero-black); }

.section-head { max-width: var(--measure); margin-bottom: clamp(2rem, 5vh, 3.5rem); }
.eyebrow { font-size: var(--t-annot); color: var(--l-second); margin: 0 0 0.75rem; }
.lede { font-size: 1.2rem; line-height: 1.55; color: var(--l-ink); max-width: var(--measure); margin: 0; }
.prose { max-width: var(--measure); }
.prose p:last-child { margin-bottom: 0; }

/* ---------- 3 · Status quo: Zwei-Spalten-Kontrast ----------
   Jede <li> ist EIN Paar und damit eine Rasterzeile — dadurch stehen linke und
   rechte Zeile immer auf gleicher Höhe, unabhängig vom Umbruch. Die Haarlinie
   liegt exakt auf der Mitte (1fr 1fr + symmetrischer Gap). */
.contrast { position: relative; max-width: 66rem; }
.contrast__heads, .contrast__pairs li { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(1.5rem, 4vw, 3.5rem); }
.contrast__heads { margin: 0 0 1.25rem; font-size: var(--t-annot); color: var(--d-annot); }
.contrast__pairs { list-style: none; margin: 0; padding: 0; display: grid; gap: clamp(1rem, 2.4vh, 1.6rem); }
.contrast__pairs li { line-height: 1.5; }
.contrast__pairs li > span { display: block; }
.contrast__pairs li > span:first-child { color: var(--d-annot); }
.contrast__tag { display: block; font-size: var(--t-annot); color: var(--d-annot); margin-bottom: 0.2rem; }
@media (min-width: 821px) {
  .contrast::after { content: ""; position: absolute; top: 0; bottom: 0; left: calc(50% - 0.5px); width: 1px; background: var(--d-hair); }
  .contrast__tag { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); border: 0; }
}
@media (max-width: 820px) {
  .contrast__heads { display: none; }
  .contrast__pairs { gap: 2rem; }
  .contrast__pairs li { grid-template-columns: 1fr; row-gap: 0.9rem; }
}

/* ---------- 4 · Plattform: vier Beats ---------- */
.legend { font-size: var(--t-annot); color: var(--d-annot); margin: 1rem 0 0; max-width: var(--measure); }
.beats { display: grid; gap: clamp(3rem, 8vh, 5.5rem); }
.beat { display: grid; gap: 1rem; max-width: 62rem; }
.beat h3 { margin: 0; font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
.beat__state { color: var(--d-annot); font-weight: 400; }
.beat p { margin: 0; color: var(--d-annot); max-width: var(--measure); }
@media (min-width: 900px) {
  .beat { grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); column-gap: clamp(2rem, 4vw, 4rem); align-items: start; }
  .beat h3, .beat p { grid-column: 1; }
  .beat .slot { grid-column: 2; grid-row: 1 / span 2; }
}

/* ---------- MEDIA SLOT ----------
   Leerer, gerahmter Platzhalter mit fixem Seitenverhältnis: ein späteres
   Bild/Video ist ein reiner Dateitausch ohne Layoutänderung. Kein <img>, kein
   alt, keine role — dekorative Struktur; die Bildunterschrift ist echter Text. */
.slot { display: grid; place-items: center; border: 1px solid var(--l-hair); border-radius: 2px; background: transparent; }
.slot__caption { font-size: var(--t-annot); color: var(--l-second); }
.scene-dark .slot { border-color: var(--d-hair); }
/* Volle --d-annot-Deckkraft: bei 70 % über #0F0E0C ergibt sich 4.12:1 und damit
   unter AA (gemessen). Der Slot bleibt trotzdem ruhig — der Rahmen trägt ihn. */
.scene-dark .slot__caption { color: var(--d-annot); }
.slot--16x9 { aspect-ratio: 16 / 9; }
.slot--4x3 { aspect-ratio: 4 / 3; max-width: 34rem; margin-top: clamp(2rem, 5vh, 3rem); }
.slot--1x1 { aspect-ratio: 1 / 1; max-width: 13rem; margin-top: 1.25rem; }

/* ---------- 5 · Vergleich: Mockup ---------- */
.mockup { margin: 0; }
.mockup picture { display: block; }
.mockup img { display: block; width: 100%; height: auto; border: 1px solid var(--d-hair); border-radius: 2px; }
/* Pflicht-Label (M1-R6 §5, Claim 14). Nicht ausblenden, nicht verkleinern. */
.mockup__label { margin-top: 0.9rem; font-size: var(--t-annot); line-height: 1.5; color: var(--d-annot); }
.btn-row--center { justify-content: flex-start; margin-top: clamp(2rem, 5vh, 3rem); }

/* ---------- 6 · Vertrauen ---------- */
.statement { font-size: clamp(1.25rem, 2.2vw, 1.75rem); line-height: 1.45; max-width: 40ch; margin: 0; color: var(--l-ink); }
/* Die sieben LOCKED-Labels als EINE ruhige Zeile. Das <ul>/<li>-Markup bleibt
   (locked-verify vergleicht Listenpunkte); die Trenner sind rein visuell. */
.trust-list { display: block; margin: clamp(2rem, 5vh, 3rem) 0 0; padding: 0; list-style: none; font-size: var(--t-annot); line-height: 1.9; color: var(--l-second); max-width: 62rem; }
.trust-list li { display: inline; }
.trust-list li::after { content: " · "; color: var(--l-hair); }
.trust-list li:last-child::after { content: ""; }
.disclaimer { margin: clamp(1.75rem, 4vh, 2.5rem) 0 0; max-width: 62ch; color: var(--l-second); font-size: var(--t-annot); line-height: 1.6; }

/* ---------- 7 · Ablauf: vier nummerierte Zeilen ---------- */
.flow { list-style: none; counter-reset: flow; margin: 0; padding: 0; display: grid; gap: clamp(1.5rem, 4vh, 2.5rem); max-width: 56rem; }
.flow li { counter-increment: flow; display: grid; grid-template-columns: 3rem 1fr; column-gap: 0.5rem; line-height: 1.5; }
.flow li::before { content: counter(flow, decimal-leading-zero); font-family: var(--f-mono); font-size: var(--t-annot); color: var(--l-second); }

/* ---------- 9 · Team ---------- */
.team { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(2rem, 5vw, 4rem); max-width: 62rem; }
@media (max-width: 820px) { .team { grid-template-columns: 1fr; } }
.team__person h3 { margin: 0 0 0.15rem; }
.team__initials { font-family: var(--f-mono); font-size: var(--t-annot); color: var(--l-second); margin: 0 0 0.6rem; }
.team__role { color: var(--l-second); font-size: var(--t-annot); margin: 0 0 0.9rem; }

/* ---------- 10 · FAQ ---------- */
.faq { display: grid; gap: 0; max-width: 52rem; }
.faq details { border-top: 1px solid var(--l-hair); }
.faq details:last-child { border-bottom: 1px solid var(--l-hair); }
.faq summary { cursor: pointer; padding: 1.1rem 0; font-weight: 500; list-style: none; display: flex; justify-content: space-between; gap: 0.75rem; min-height: 48px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--l-second); }
.faq details[open] summary::after { content: "\2212"; }
.faq details > div { padding: 0 0 1.1rem; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- 8 · Für Hersteller ---------- */
.pullquote { margin-top: clamp(2rem, 5vh, 3rem); max-width: 50rem; font-size: clamp(1.15rem, 1.8vw, 1.35rem); line-height: 1.5; }

/* ---------- 11 · Kontakt ---------- */
.placeholder { border: 1px dashed var(--l-second); padding: 0.75rem 1rem; color: var(--l-second); font-size: var(--t-annot); font-style: italic; border-radius: 2px; }
.placeholder--inline { display: inline-block; margin-top: 0.4rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }
.form-note { color: var(--l-second); font-size: var(--t-annot); margin-bottom: 1.25rem; }
form.contact label { display: block; font-size: var(--t-annot); color: var(--l-second); margin: 1rem 0 0.35rem; }
form.contact input, form.contact select, form.contact textarea { width: 100%; font: inherit; font-size: 1rem; padding: 0.55rem 0; min-height: 44px; border: 0; border-bottom: 1px solid var(--l-second); background: transparent; color: var(--l-ink); border-radius: 0; }
form.contact textarea { min-height: 110px; resize: vertical; }
form.contact input:focus, form.contact select:focus, form.contact textarea:focus { outline: none; border-bottom-color: var(--l-ink); border-bottom-width: 2px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 0.9rem; font-size: var(--t-annot); display: none; }
.form-status.is-ok, .form-status.is-err { display: block; }
.data-note { color: var(--l-second); font-size: var(--t-annot); margin-top: 0.75rem; }
.contact-aside { margin-top: 1rem; }
.contact-aside h3 { margin-top: 0; }
.contact-aside dt { font-size: var(--t-annot); color: var(--l-second); margin-top: 0.9rem; }
.contact-aside dd { margin: 0.2rem 0 0; }
.aside-hint { margin-top: 1.25rem; color: var(--l-second); font-size: var(--t-annot); }

/* ---------- 12 · Grenzband + Footer ---------- */
.grenze { background: #F4F3EF; border-top: 1px solid var(--l-hair); }
.grenze .container { padding-block: 2.25rem; }
.grenze__legal { max-width: var(--measure); margin: 0 auto; text-align: center; color: var(--l-second); font-size: var(--t-annot); line-height: 1.6; }
.footer { background: #F4F3EF; }
.footer .container { padding-block: 2rem; display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: space-between; align-items: center; font-size: var(--t-annot); color: var(--l-second); }
.footer__links { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }

/* ---------- Legal / stub pages ---------- */
.legal { max-width: 46rem; }
.legal h2 { margin-top: 2rem; font-size: 1.3rem; }
.legal-back { display: inline-block; margin-bottom: 1.5rem; font-weight: 500; }
.stub-note { display: inline-block; font-size: var(--t-annot); color: var(--l-second); margin-bottom: 1.25rem; }
