/* ============================================================================
   Gaubitz Prints — One-Pager
   Designsystem aus dem Claude-Design-Handoff, Tokens 1:1 uebernommen.
   Farben in OKLCH; Hex-/RGBA-Fallback im @supports-Block darunter.
   Keine Radien, keine Schatten, keine Gradienten ausser den Bild-Platzhaltern.
   ============================================================================ */

:root {
  /* Flaechen */
  --bg:            oklch(0.19 0.012 250);
  --bg-sunken:     oklch(0.16 0.012 250);
  --surface:       oklch(0.22 0.012 250);
  --surface-hover: oklch(0.25 0.012 250);

  /* Linien */
  --border:        oklch(0.30 0.012 250);
  --border-soft:   oklch(0.28 0.012 250);
  --border-strong: oklch(0.36 0.012 250);

  /* Text */
  --text:          oklch(0.95 0.005 250);
  --text-quote:    oklch(0.90 0.005 250);
  --text-btn:      oklch(0.82 0.01  250);
  --text-spec:     oklch(0.78 0.01  250);
  --text-muted:    oklch(0.76 0.01  250);
  --text-dim:      oklch(0.74 0.01  250);
  --text-nav:      oklch(0.72 0.01  250);
  --text-soft:     oklch(0.70 0.01  250);
  --text-place:    oklch(0.66 0.01  250);
  --text-faint:    oklch(0.62 0.01  250);
  --text-note:     oklch(0.60 0.01  250);

  /* Akzent */
  --accent:        oklch(0.78 0.14 190);
  --accent-hover:  oklch(0.86 0.12 190);
  --on-accent:     oklch(0.17 0.02 200);

  /* Formularfelder auf der Akzentflaeche */
  --field-border:   oklch(0.17 0.02 200 / 0.35);
  --field-bg:       oklch(1 0 0 / 0.35);
  --field-bg-focus: oklch(1 0 0 / 0.60);

  /* Typografie */
  --sans: Helvetica, Arial, "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;

  /* Raster */
  --pad: clamp(20px, 5vw, 64px);   /* Seitenrand, im Design 64px */
  --sec: clamp(48px, 7vw, 76px);   /* Sektions-Innenabstand, im Design 76px */
  --t: 140ms ease-out;
}

@supports not (color: oklch(0 0 0)) {
  :root {
    --bg: #1b1f26;            --bg-sunken: #15181e;
    --surface: #20242c;       --surface-hover: #252a33;
    --border: #2f343d;        --border-soft: #2c3038;   --border-strong: #383e48;
    --text: #f0f1f3;          --text-quote: #e2e3e6;    --text-btn: #c6cad0;
    --text-spec: #bec2c9;     --text-muted: #b7bbc2;    --text-dim: #b1b5bc;
    --text-nav: #abaeb6;      --text-soft: #a4a8b0;     --text-place: #999da5;
    --text-faint: #8f939b;    --text-note: #8a8e96;
    --accent: #3fd3d8;        --accent-hover: #71e6e8;  --on-accent: #131b1e;
    --field-border: rgba(19, 27, 30, 0.35);
    --field-bg: rgba(255, 255, 255, 0.35);
    --field-bg-focus: rgba(255, 255, 255, 0.6);
  }
}

/* --------------------------------------------------------------- Grundlagen */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, p { margin: 0; text-wrap: pretty; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Fliesstext-Links ausserhalb der Rechtstexte (dort macht das .legal a).
   Ohne diese Regel erben Inline-Links die Textfarbe und sind erst beim Hover
   als Link erkennbar — fuer die interne Verlinkung zwischen den Seiten zu
   wenig. Betrifft nur Links IM Text; Buttons und Navigation bleiben unberuehrt. */
.card p a,
.callout p a,
.step p a,
.faq-list p a,
.small-note a,
.lede a { color: var(--accent); }

img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 20;
  background: var(--accent); color: var(--on-accent);
  padding: 12px 18px; font-family: var(--mono); font-size: 13px;
}
.skip:focus { left: 0; text-decoration: none; }

/* Container: Inhalt auf 1280px begrenzt, Hintergrundbaender voll breit. */
.wrap {
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--pad);
}

.band { border-top: 1px solid var(--border); }
.band--sunken { background: var(--bg-sunken); }
.band--plain { padding-block: var(--sec); }
/* Nur die Material-Sektion hat im Entwurf oben UND unten eine Linie. */
.band--closed { border-bottom: 1px solid var(--border); }

[id] { scroll-margin-top: 88px; }

/* ----------------------------------------- Bausteine, mehrfach verwendet -- */

.sec-head {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 16px 32px; flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  margin-bottom: 34px;
}
.eyebrow {
  margin: 0; color: var(--accent);
  font-family: var(--mono); font-size: 13px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.sec-note {
  font-family: var(--mono); font-size: 11px; color: var(--text-note);
}

/* Bild-Platzhalter — vor dem Livegang durch echte Fotos ersetzen. */
.ph {
  background: repeating-linear-gradient(135deg,
              var(--surface-hover) 0 10px, var(--surface) 10px 20px);
  border: 1px solid var(--border);
  display: flex; align-items: flex-end;
  padding: 16px;
}
.ph span {
  font-family: var(--mono); font-size: 11px; color: var(--text-place);
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid transparent;
  transition: background-color var(--t), border-color var(--t), color var(--t);
}
.btn:hover { text-decoration: none; }
.btn--accent {
  background: var(--accent); color: var(--on-accent);
  font-weight: 500; padding: 16px 28px;
}
.btn--accent:hover { background: var(--accent-hover); }
.btn--ghost {
  border-color: var(--border-strong); color: var(--text-btn);
  padding: 16px 24px;
}
.btn--ghost:hover { border-color: var(--accent); }
.btn--sm { padding: 15px 26px; }

/* ------------------------------------------------------------------- Header */

.site-head {
  position: sticky; top: 0; z-index: 10;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px 26px; flex-wrap: wrap;
  padding-block: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand:hover { text-decoration: none; }
.brand-dot { width: 12px; height: 12px; background: var(--accent); flex: none; }
.brand-name { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.brand-sub {
  font-family: var(--mono); font-size: 11px; color: var(--text-faint);
  white-space: nowrap;
}
.site-nav {
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--text-nav);
}
.site-nav .btn--nav {
  background: var(--accent); color: var(--on-accent); padding: 9px 16px;
}
.site-nav .btn--nav:hover { background: var(--accent-hover); text-decoration: none; }

/* --------------------------------------------------------------------- Hero */

.hero {
  padding-block: clamp(48px, 6vw, 80px) var(--sec);
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
}
.hero-text { display: flex; flex-direction: column; gap: 26px; }
.status {
  display: flex; align-items: center; gap: 10px;
  color: var(--accent);
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.status::before {
  content: ""; width: 6px; height: 6px; flex: none;
  background: var(--accent); border-radius: 50%;
}
.hero h1 {
  font-size: clamp(2.25rem, 5.2vw, 66px);
  line-height: 1.03; font-weight: 700; letter-spacing: -0.03em;
}
.lede {
  max-width: 48ch; font-size: 17px; line-height: 1.6; color: var(--text-muted);
}
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; padding-top: 6px; }
.hero-media {
  margin: 0; aspect-ratio: 4 / 3;
  border: 1px solid var(--border); overflow: hidden;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ------------------------------------------------------------------ Statbar */

.statbar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stat {
  background: var(--bg); padding: 22px 26px;
  display: flex; flex-direction: column; gap: 5px;
}
.stat dt {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint);
}
.stat dd {
  margin: 0; font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
}
/* Ein Stat-Wert als Aussage statt Kennzahl — kleiner, damit er in die Zeile passt. */
.stat dd.stat-text {
  font-size: 14.5px; line-height: 1.35; letter-spacing: -0.005em;
}

/* -------------------------------------------------------------- Leistungen */

.cardgrid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.card {
  background: var(--surface); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background-color var(--t);
}
.card:hover { background: var(--surface-hover); }
.card h3 { font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.card p { font-size: 14.5px; line-height: 1.6; color: var(--text-dim); }
/* Die siebte Leistungskarte schliesst die Reihe ab. Ohne das bliebe im Raster
   eine angebrochene Zeile mit leeren Zellen stehen — und leere Zellen zeigen
   die Rasterfarbe, sehen also aus wie ein Fehler. `1 / -1` spannt ueber alle
   vorhandenen Spalten, funktioniert damit auch in den 2- und 1-spaltigen
   Breakpoints. */
.card--wide { grid-column: 1 / -1; }

/* ------------------------------------------------------------- Maschinen */

.specs { display: flex; flex-direction: column; }
.specs--grid {
  display: grid; grid-template-columns: 1fr 1fr;
  column-gap: 48px; row-gap: 0;
}
.spec-row {
  display: grid; grid-template-columns: 100px 1fr; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--border-soft);
}
.spec-row b {
  font-family: var(--mono); font-size: 14px; font-weight: 400; color: var(--accent);
}
.spec-row span { font-size: 14.5px; color: var(--text-spec); }

/* --------------------------------------------------------------- Material */

.finder { display: flex; flex-direction: column; gap: 22px; }

.chipbar { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.chip {
  font-family: var(--sans); font-size: 14px; font-weight: 500; line-height: 1;
  padding: 11px 16px;
  border: 1px solid var(--border-strong);
  background: transparent; color: var(--text-btn);
  cursor: pointer;
  transition: border-color var(--t), color var(--t), background-color var(--t);
}
.chip:hover { border-color: var(--accent); color: var(--text); }
.chip[aria-pressed="true"] {
  background: var(--accent); border-color: var(--accent); color: var(--on-accent);
}

.chip-count {
  margin: 0; font-family: var(--mono); font-size: 11px; color: var(--text-note);
}

.tilegrid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1px; background: var(--border);
}
.tile {
  background: var(--surface); padding: 20px 22px;
  display: flex; flex-direction: column; gap: 8px; min-height: 108px;
  transition: background-color var(--t);
}
.tile:hover { background: var(--surface-hover); }
.tile[hidden] { display: none; }
.tile-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.tile-head b { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.tile-temp {
  font-family: var(--mono); font-size: 10.5px; color: var(--text-faint);
  white-space: nowrap;
}
.tile-use { font-size: 13.5px; line-height: 1.5; color: var(--text-dim); }

.small-note { font-size: 12.5px; line-height: 1.5; color: var(--text-note); }
.specs + .small-note { margin-top: 18px; }

/* ------------------------------------------------------------------ Ablauf */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { display: flex; flex-direction: column; gap: 12px; }
.step-num { display: flex; align-items: center; gap: 12px; }
.step-num b {
  font-family: var(--mono); font-size: 34px; font-weight: 500;
  color: var(--accent); line-height: 1;
}
.step-num i { flex: 1; height: 1px; background: var(--border); }
.step h3 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; }
.step p { font-size: 14.5px; line-height: 1.6; color: var(--text-dim); }

.callout {
  margin-top: 12px; background: var(--surface); border: 1px solid var(--border);
  padding: 32px 36px;
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.callout-text { display: flex; flex-direction: column; gap: 8px; }
.callout h3 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; }
.callout p {
  max-width: 68ch; font-size: 14.5px; line-height: 1.6; color: var(--text-dim);
}
.callout .btn { flex: none; }

/* ---------------------------------------------------------------- Arbeiten */

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery .ph { aspect-ratio: 1; padding: 12px; }
.gallery .ph span { font-size: 10.5px; }

.gallery .photo {
  margin: 0; aspect-ratio: 1; position: relative;
  border: 1px solid var(--border); overflow: hidden;
  /* Gleiche Streifen wie .ph: solange die Bilddatei fehlt, sieht die Kachel
     aus wie ein Platzhalter und nicht wie ein Fehler. Liegt das Foto da,
     deckt es den Verlauf vollstaendig ab. */
  background: repeating-linear-gradient(135deg,
              var(--surface-hover) 0 10px, var(--surface) 10px 20px);
}
.gallery .photo img {
  width: 100%; height: 100%; object-fit: cover;
}
/* Setzt das Skript in index.html, wenn eine Bilddatei nicht geladen werden
   konnte — sonst zeichnet der Browser sein Kaputt-Bild-Symbol in die Kachel. */
.gallery .photo--leer img { display: none; }
.gallery .photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 8px 12px;
  font-family: var(--mono); font-size: 10.5px; color: #fff;
  background: linear-gradient(to top, oklch(0 0 0 / 0.55), oklch(0 0 0 / 0));
}

/* -------------------------------------------------------------- Ueber mich */

.about {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.about-media { aspect-ratio: 5 / 4; }
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-lead {
  font-size: 26px; line-height: 1.35; font-weight: 700; letter-spacing: -0.015em;
}
.about-text p:last-child {
  max-width: 52ch; font-size: 15.5px; line-height: 1.7; color: var(--text-muted);
}

/* ----------------------------------------------------------- Kundenstimmen */

.quotes {
  padding-block: clamp(40px, 5vw, 60px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
}
.quote { display: flex; flex-direction: column; gap: 12px; padding-right: 36px; }
.quote + .quote { border-left: 1px solid var(--border-soft); padding-left: 36px; }
.quote p { font-size: 16px; line-height: 1.55; color: var(--text-quote); }
.quote cite {
  font-style: normal;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-note);
}

/* --------------------------------------------------------------------- FAQ */

.faq { display: grid; grid-template-columns: 300px 1fr; gap: 56px; }
.faq-list { display: flex; flex-direction: column; }
.faq-list details { border-top: 1px solid var(--border-soft); padding: 18px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-list summary {
  display: flex; justify-content: space-between; gap: 24px;
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  list-style: none; cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; font-family: var(--mono); font-weight: 400; color: var(--accent);
}
.faq-list p {
  margin-top: 12px; max-width: 74ch;
  font-size: 14.5px; line-height: 1.65; color: var(--text-dim);
}

/* ----------------------------------------------------------------- Kontakt */

.contact {
  background: var(--accent); color: var(--on-accent);
  padding-block: var(--sec);
}
.contact .wrap { display: grid; grid-template-columns: 1fr 1.15fr; gap: 64px; }
.contact-intro { display: flex; flex-direction: column; gap: 22px; }
.contact-intro .eyebrow { color: inherit; font-size: 11.5px; }
.contact-intro h2 {
  font-size: clamp(1.875rem, 3.2vw, 40px);
  line-height: 1.08; font-weight: 700; letter-spacing: -0.03em;
}
.contact-intro p { max-width: 38ch; font-size: 16px; line-height: 1.6; }
.contact-data {
  display: flex; flex-direction: column; gap: 7px; padding-top: 10px;
  font-family: var(--mono); font-size: 13px;
}
.contact :focus-visible { outline-color: var(--on-accent); }

.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: flex; flex-direction: column; gap: 6px; }
.form .lbl {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.08em; text-transform: uppercase;
}
/* Radio und Checkbox bleiben native Steuerelemente — Rahmen und Flaeche
   gelten nur fuer Text-, Datums-, Auswahl- und Textfelder. */
.form input:not([type="radio"]):not([type="checkbox"]),
.form select, .form textarea {
  border: 1px solid var(--field-border);
  background: var(--field-bg);
  padding: 12px; font-size: 15.5px; font-family: var(--sans);
  color: var(--on-accent); outline: none;
  border-radius: 0;
  transition: background-color var(--t), border-color var(--t);
}
.form textarea { resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--on-accent); background: var(--field-bg-focus);
}
.form input::placeholder, .form textarea::placeholder {
  color: var(--on-accent); opacity: 0.55;
}
.form .consent {
  flex-direction: row; gap: 10px; align-items: flex-start;
  font-size: 13px; line-height: 1.5;
}
.form .consent input { margin-top: 3px; flex: none; padding: 0; }
.form .consent a { text-decoration: underline; }
.form .req { color: var(--on-accent); opacity: 0.6; }

.form-legend { margin: 0; font-size: 12.5px; line-height: 1.5; opacity: 0.8; }

/* Radiogruppe: fieldset/legend statt div, damit die Gruppe auch fuer
   Screenreader eine Gruppe mit Beschriftung ist. */
.fieldset {
  border: 0; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.fieldset .lbl { padding: 0; }
.radio-row { display: flex; gap: 24px; flex-wrap: wrap; }
.form .radio {
  flex-direction: row; align-items: center; gap: 8px;
  font-size: 15px; cursor: pointer;
}
.form .radio input { flex: none; margin: 0; cursor: pointer; }
.field-block { display: flex; flex-direction: column; gap: 6px; }
.field-note { margin: 0; font-size: 12.5px; line-height: 1.45; opacity: 0.8; }
.drop {
  border: 1.5px dashed var(--field-border);
  padding: 20px; text-align: center;
  transition: border-color var(--t), background-color var(--t);
}
.drop.is-over { border-color: var(--on-accent); background: var(--field-bg); }
.drop input[type="file"] {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.drop-label { cursor: pointer; display: inline-flex; flex-direction: column; gap: 4px; }
.drop-label b { font-size: 15px; font-weight: 700; }
.drop-label span { font-size: 12.5px; opacity: 0.75; }
.filelist {
  list-style: none; margin: 14px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 5px;
  font-family: var(--mono); font-size: 12.5px; text-align: left;
}
.filelist li { display: flex; justify-content: space-between; gap: 16px; }
.filelist li.too-big { font-weight: 700; }
.form button {
  align-self: flex-start; margin-top: 4px; border: none;
  background: var(--bg); color: var(--text);
  padding: 15px 30px;
  font-family: var(--mono); font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  transition: background-color var(--t);
}
.form button:hover { background: var(--surface-hover); }
.form-hint { font-size: 12.5px; line-height: 1.5; opacity: 0.85; }
.form-hint a { text-decoration: underline; }
/* Honeypot — fuer Menschen unsichtbar, fuer Bots ein Koeder. */
.hp { position: absolute; left: -9999px; }

/* ------------------------------------------------------------------ Footer */

.site-foot .wrap {
  padding-block: 26px;
  display: flex; justify-content: space-between; gap: 12px 22px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.04em; color: var(--text-faint);
}
.foot-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ------------------------------------------------------------ Rechtsseiten */

.legal { padding-block: var(--sec); }
.legal-inner { max-width: 74ch; }
.legal h1 {
  font-size: clamp(1.875rem, 4vw, 40px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 28px;
}
.legal h2 {
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em;
  margin: 34px 0 10px;
}
.legal p, .legal li { font-size: 14.5px; line-height: 1.7; color: var(--text-dim); }
.legal p + p { margin-top: 10px; }
.legal ul { margin: 10px 0 0; padding-left: 20px; }
.legal li + li { margin-top: 6px; }
.legal a { color: var(--accent); }
.legal dl {
  margin: 12px 0 0;
  display: grid; grid-template-columns: 200px 1fr; gap: 10px 20px;
}
.legal dt {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint);
  padding-top: 3px;
}
.legal dd { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--text); }
.note {
  border-left: 2px solid var(--accent); background: var(--surface);
  padding: 16px 20px; margin: 18px 0;
}
/* Nur das Label direkt im Note-Block, nicht fettgesetzte Wörter im Fließtext. */
.note > b:first-child {
  display: block; margin-bottom: 6px;
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent);
  font-weight: 500;
}
.note p { font-size: 13.5px; color: var(--text-muted); }
.note p b { font-weight: 700; color: var(--text); }

/* ================================================================= Responsiv
   Das Design ist auf fixer Breite 1280px entworfen. Alles darunter sind
   Entscheidungen aus der Umsetzung, nicht aus dem Entwurf.
   ========================================================================= */

@media (max-width: 1040px) {
  .cardgrid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .specs--grid { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; gap: 32px; }
  .about-text { order: -1; }
  .faq { grid-template-columns: 1fr; gap: 26px; }
  .contact .wrap { grid-template-columns: 1fr; gap: 40px; }
  [id] { scroll-margin-top: 132px; }
}

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .callout { flex-direction: column; align-items: flex-start; gap: 24px; padding: 26px; }
  .quotes { grid-template-columns: 1fr; gap: 0; }
  .quote { padding: 22px 0; border-top: 1px solid var(--border-soft); }
  .quote + .quote { border-left: none; padding-left: 0; }
}

@media (max-width: 720px) {
  .statbar { grid-template-columns: repeat(2, 1fr); }
  .cardgrid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .legal dl { grid-template-columns: 1fr; gap: 4px 0; }
  .legal dt { padding-top: 12px; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 84px 1fr; gap: 12px; }
  .btn-row .btn { flex: 1 1 100%; text-align: center; }
  .brand-sub { display: none; }
  .site-nav { gap: 16px; font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0s !important; animation: none !important; }
}

@media print {
  .site-head, .site-foot, .form { display: none; }
  body { background: #fff; color: #000; }
}
