/* Kaminbesteck-Kompass — Werkbank-Schiene
   Layout-Primitiv: die Schiene. Eine Linie, an der alles haengt. */

/* Eigene Schriften, lokal ausgeliefert (SIL OFL). */
@font-face {
  font-family: "KK Display";
  src: url("fonts/ZillaSlab-Bold.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "KK Display";
  src: url("fonts/ZillaSlab-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "KK Text";
  src: url("fonts/Archivo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "KK Text";
  src: url("fonts/Archivo-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}

:root {
  --schiefer: oklch(0.275 0.014 48);
  --schiefer-tief: oklch(0.205 0.013 45);
  --zink: oklch(0.955 0.007 78);
  --zink-2: oklch(0.915 0.010 78);
  --zink-3: oklch(0.845 0.013 78);
  --messing: oklch(0.755 0.115 82);
  --messing-tief: oklch(0.525 0.095 74);
  --glut: oklch(0.615 0.155 46);
  --tinte: oklch(0.235 0.016 48);
  --tinte-2: oklch(0.455 0.016 48);
  --display: "KK Display", Rockwell, "Roboto Slab", Georgia, serif;
  --text: "KK Text", Helvetica, Arial, sans-serif;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--zink);
  color: var(--tinte);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1, h2, h3 { font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -0.01em; margin: 0; }
h1 { font-size: clamp(34px, 6.2vw, 66px); }
h2 { font-size: clamp(26px, 3.6vw, 38px); }
h3 { font-size: clamp(19px, 2.2vw, 23px); line-height: 1.25; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--messing-tief); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
a:hover { color: var(--tinte); }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Kopf ---------- */
.kopf {
  background: var(--schiefer);
  color: var(--zink);
  border-bottom: 3px solid var(--messing);
}
.kopf .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 74px; flex-wrap: wrap; padding-top: 12px; padding-bottom: 12px; }
.marke { display: flex; flex-direction: column; gap: 2px; text-decoration: none; color: inherit; }
.marke b { font-family: var(--display); font-size: 20px; letter-spacing: 0.01em; }
.marke span { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: oklch(0.78 0.02 90); }
.kopf nav { display: flex; gap: 22px; flex-wrap: wrap; }
.kopf nav a { color: var(--zink); text-decoration: none; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 0; border-bottom: 2px solid transparent; }
.kopf nav a:hover, .kopf nav a[aria-current="page"] { border-bottom-color: var(--messing); color: #fff; }

/* ---------- Brotkrume ---------- */
.krume { background: var(--schiefer-tief); color: oklch(0.78 0.01 62); font-size: 13px; }
.krume .wrap { padding-top: 9px; padding-bottom: 9px; }
.krume ol { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 0; padding: 0; }
.krume li + li::before { content: "/"; margin-right: 10px; color: var(--messing-tief); }
.krume a { color: oklch(0.82 0.02 90); }

/* ---------- Hero ---------- */
.glut { position: absolute; inset: auto 0 0; height: 340px; pointer-events: none; z-index: 0; }
.glut-band { position: absolute; inset: auto 0 0 0; height: 200px;
  background:
    radial-gradient(58% 132% at 20% 108%, oklch(0.70 0.19 46 / 0.52), transparent 68%),
    radial-gradient(46% 124% at 52% 112%, oklch(0.76 0.17 66 / 0.42), transparent 70%),
    radial-gradient(60% 130% at 84% 108%, oklch(0.66 0.18 34 / 0.46), transparent 68%),
    linear-gradient(to top, oklch(0.62 0.16 44 / 0.30), transparent 78%);
  filter: blur(3px); animation: glut-atem 9s ease-in-out infinite; }
.glut i { position: absolute; bottom: 10px; left: var(--x); width: 3px; height: 3px; border-radius: 50%;
  background: oklch(0.92 0.14 80); box-shadow: 0 0 9px 2px oklch(0.80 0.18 58 / 0.7);
  opacity: 0; animation: funke var(--t) linear var(--d) infinite; }
@keyframes glut-atem { 0%, 100% { opacity: 0.78; } 50% { opacity: 1; } }
@keyframes funke {
  0%   { opacity: 0; transform: translate(0, 0) scale(0.6); }
  12%  { opacity: 0.9; }
  70%  { opacity: 0.5; }
  100% { opacity: 0; transform: translate(var(--dx), -240px) scale(0.3); }
}
@media (prefers-reduced-motion: reduce) {
  .glut i { display: none; }
  .glut-band { animation: none; }
}
.hero { position: relative; overflow: hidden; background: var(--schiefer); color: var(--zink); padding: clamp(26px, 2.6vw, 34px) 0 clamp(22px, 2.4vw, 32px); }
.hero::before { content: ""; position: absolute; inset: auto -10% -55% 30%; height: 90%; background: radial-gradient(60% 100% at 50% 100%, oklch(0.62 0.15 46 / 0.22), transparent 72%); pointer-events: none; }
.hero .wrap { position: relative; z-index: 1; }
.hero .wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
.hero .wrap > div { min-width: 0; }
.hero .wrap > h1, .hero .wrap > .messpunkte, .hero .wrap > .meta-schiene { grid-column: 1 / -1; }
.hero-text { align-self: start; }
.hero > .wrap { padding-bottom: 0; }
.hero h1 { color: #fff; font-size: clamp(28px, 3vw, 44px); line-height: 1.05; margin-bottom: 0; max-width: 36ch; }
.hero .lead { font-size: clamp(15px, 1.15vw, 16.5px); line-height: 1.55; color: oklch(0.88 0.008 62); }

/* Signature: annotiertes Produktbild */
.aufriss { margin: 0; padding: 0; position: relative; }
.aufriss-platte { position: relative; background: linear-gradient(168deg, oklch(0.975 0.006 82), oklch(0.925 0.010 78)); border: 1px solid oklch(0.94 0.010 82 / 0.28); box-shadow: 0 28px 60px oklch(0.16 0.014 45 / 0.45); }
.aufriss-platte::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 90px oklch(0.55 0.06 62 / 0.10); pointer-events: none; }
.aufriss-platte img { display: block; width: 100%; height: auto; }
.aufriss-marke { position: absolute; transform: translate(-50%, -50%); width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-size: 14px; color: var(--schiefer-tief); background: var(--messing); border: 2px solid oklch(0.99 0.004 82); box-shadow: 0 4px 14px oklch(0.20 0.02 45 / 0.4); }
.aufriss-marke::before { content: ""; position: absolute; inset: -7px; border-radius: 50%; border: 1px solid oklch(0.755 0.115 82 / 0.55); }
.aufriss-legende { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 1px; background: oklch(0.94 0.010 82 / 0.16); border-block: 1px solid oklch(0.94 0.010 82 / 0.24); }
.aufriss-legende li { display: grid; grid-template-columns: 26px minmax(0, 1fr); gap: 12px; align-items: baseline; padding: 11px 0; background: var(--schiefer); }
.aufriss-legende b { font-family: var(--display); font-size: 15px; color: var(--messing); }
.aufriss-legende span { font-size: 14px; color: oklch(0.88 0.010 62); text-wrap: pretty; }
.aufriss-legende span i { display: block; font-style: normal; font-size: 12.5px; color: oklch(0.70 0.012 62); margin-top: 2px; }
.aufriss[data-hell] .aufriss-platte { border-color: oklch(0.24 0.016 48 / 0.14); box-shadow: 0 16px 40px oklch(0.24 0.016 48 / 0.14); }
.aufriss[data-hell] .aufriss-marke { border-color: var(--schiefer); box-shadow: 0 3px 10px oklch(0.24 0.016 48 / 0.3); }
.aufriss[data-hell] .aufriss-legende { background: oklch(0.24 0.016 48 / 0.14); border-block-color: oklch(0.24 0.016 48 / 0.2); }
.aufriss[data-hell] .aufriss-legende li { background: var(--zink); }
.aufriss[data-hell] .aufriss-legende b { color: var(--messing-tief); }
.aufriss[data-hell] .aufriss-legende span { color: var(--tinte); }
.aufriss[data-hell] .aufriss-legende span i { color: var(--tinte-2); }
.aufriss[data-hell] figcaption { color: var(--tinte-2); }

.aufriss figcaption { margin-top: 14px; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.66 0.012 62); }

.feld { margin: 0; padding: 0; }
.feld-gitter { max-width: 660px; margin-left: auto; }
.feld-gitter { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; }
.feld-gitter > div { background: #fff; aspect-ratio: 1 / 1; display: grid; place-items: center; padding: 9px; box-shadow: 0 0 0 1px oklch(0.94 0.010 82 / 0.22); }
.feld-notiz { background: none !important; align-content: center; justify-items: center; gap: 5px; text-align: center; }
.feld-notiz b { font-family: var(--display); font-size: clamp(26px, 2.6vw, 38px); line-height: 1; color: var(--messing); }
.feld-notiz span { font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: oklch(0.74 0.012 62); line-height: 1.35; }
.feld-gitter img { width: 100%; aspect-ratio: 1 / 1; height: auto; object-fit: contain; }
.feld figcaption { margin-top: 11px; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: oklch(0.70 0.012 62); }

.messpunkte { list-style: none; margin: clamp(18px, 2vw, 24px) 0 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0 clamp(20px, 3vw, 38px); }
.messpunkte li { border-top: 2px solid var(--messing); padding-top: 11px; }
.messpunkte b { display: block; font-family: var(--display); font-size: clamp(14px, 1.15vw, 16px); font-weight: 400; color: #fff; margin-bottom: 5px; }
.messpunkte span { display: block; font-size: 12.5px; line-height: 1.45; color: oklch(0.80 0.012 62); text-wrap: pretty; }

.meta-schiene { margin-top: clamp(16px, 1.8vw, 22px); border-top: 1px solid oklch(0.94 0.008 90 / 0.3); padding-top: 13px; display: flex; flex-wrap: wrap; gap: 12px 40px; font-size: 13px; letter-spacing: 0.06em; color: oklch(0.86 0.01 62); align-items: baseline; }
.meta-schiene > span { display: flex; align-items: baseline; gap: 7px; }
.meta-schiene b { font-family: var(--display); font-size: 19px; line-height: 1; color: var(--messing); }

.knopfreihe { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.knopf, .knopf-linie {
  display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 26px; text-decoration: none; border: 1px solid transparent;
}
.knopf { background: var(--messing); color: oklch(0.24 0.03 88); }
.knopf:hover { background: oklch(0.82 0.12 88); color: oklch(0.2 0.03 88); }
.knopf-linie { border-color: oklch(0.94 0.008 90 / 0.45); color: var(--zink); }
.knopf-linie:hover { border-color: var(--messing); color: #fff; }
.hell .knopf-linie { border-color: var(--zink-3); color: var(--tinte); }
.hell .knopf-linie:hover { border-color: var(--messing-tief); }

/* ---------- Werbehinweis ---------- */
.hinweis { background: var(--schiefer); border-top: 1px solid oklch(0.94 0.008 90 / 0.16); }
.hinweis .wrap { padding-top: 22px; padding-bottom: 22px; display: flex; gap: 16px; align-items: flex-start; }
.hinweis .balken { width: 2px; align-self: stretch; background: oklch(0.94 0.008 90 / 0.22); flex: none; }
.hinweis p { font-size: 13.5px; line-height: 1.6; color: oklch(0.74 0.012 62); max-width: 86ch; }

/* ---------- Abschnitte ---------- */
section { padding: clamp(46px, 6vw, 84px) 0; }
section + section { border-top: 1px solid var(--zink-3); }
.dunkel { background: var(--schiefer); color: var(--zink); border-top: none !important; }
.dunkel h2, .dunkel h3 { color: #fff; }

.kopfzeile { display: flex; align-items: baseline; gap: 18px; margin-bottom: clamp(22px, 3vw, 38px); }
.kopfzeile .nr { font-family: var(--display); font-size: 14px; color: var(--messing-tief); letter-spacing: 0.1em; flex: none; padding-top: 6px; }
.dunkel .kopfzeile .nr { color: var(--messing); }
.kopfzeile .linie { flex: 1; height: 1px; background: var(--zink-3); }
.dunkel .kopfzeile .linie { background: oklch(0.94 0.008 90 / 0.28); }
.intro { max-width: 72ch; color: var(--tinte-2); }
.dunkel .intro { color: oklch(0.86 0.01 62); }

/* ---------- Empfehlung ---------- */
.empfehlung { display: grid; grid-template-columns: 320px 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.label {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--messing); color: oklch(0.24 0.03 88); padding: 6px 12px; margin-bottom: 14px;
}
.label.leise { background: none; color: var(--messing-tief); border: 1px solid var(--messing-tief); }

.kachel {
  aspect-ratio: 4 / 5; background: var(--schiefer); color: var(--zink);
  display: flex; flex-direction: column; justify-content: space-between; padding: 22px;
  border-top: 3px solid var(--messing);
}
.kachel .mono { font-family: var(--display); font-size: clamp(48px, 8vw, 82px); line-height: 1; color: var(--messing); }
.kachel .zeile { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: oklch(0.8 0.01 62); }
.kachel.klein { aspect-ratio: 1 / 1; padding: 14px; }
.produktbild { display: block; width: 100%; height: auto; border-top: 3px solid var(--messing); }
.modell .produktbild { border-top-width: 3px; object-fit: contain; background: #fff; max-height: 300px; border: 1px solid var(--zink-3); border-top: 3px solid var(--messing); padding: 8px; }
.bildnote { font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tinte-2); margin-top: 8px; }
.varianten + * { margin-top: 14px; }
.kachel.klein .mono { font-size: 34px; }

.usp { list-style: none; margin: 0 0 22px; padding: 0; }
.usp li { position: relative; padding: 12px 0 12px 34px; border-bottom: 1px solid var(--zink-3); }
.usp li::before { content: ""; position: absolute; left: 0; top: 21px; width: 20px; height: 3px; background: var(--messing-tief); }
.usp li b { font-weight: 600; }

.preiszeile { display: flex; align-items: baseline; flex-wrap: wrap; gap: 14px; margin-bottom: 6px; }
.preis { font-family: var(--display); font-size: clamp(32px, 4vw, 44px); }
.streich { color: var(--tinte-2); text-decoration: line-through; font-size: 19px; }
.stand { font-size: 13px; color: var(--tinte-2); }
.lager { font-size: 13px; color: var(--tinte-2); border-left: 3px solid var(--messing-tief); padding-left: 12px; margin: 14px 0 20px; }

.varianten { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; padding: 0; list-style: none; }
.varianten { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; list-style: none; padding: 0; margin: 14px 0 0; }
.varianten li { font-size: 12.5px; letter-spacing: 0.04em; border: 1px solid var(--zink-3); background: #fff; }
.varianten li[data-aktiv] { border-color: var(--messing-tief); box-shadow: inset 0 2px 0 var(--messing); }
.varianten a { display: flex; align-items: center; gap: 12px; padding: 9px 12px 9px 9px; text-decoration: none; color: var(--tinte); }
.varianten a:hover { color: var(--messing-tief); background: oklch(0.975 0.008 90); }
.varianten img { width: 52px; height: 52px; object-fit: contain; display: block; flex: none; background: #fff; }
.varianten span { white-space: nowrap; }
.variantennote { font-size: 12.5px; color: var(--tinte-2); margin-top: 14px; }
.varianten li[data-aktiv] { border-color: var(--messing-tief); color: var(--tinte); font-weight: 600; }

/* ---------- Werkzeug-Sektion (Signature gross) ---------- */
.werkbank { counter-reset: werkzeug; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(28px, 4vw, 56px); }
.wb-zeile { counter-increment: werkzeug; display: block; padding: 20px 0; border-top: 1px solid oklch(0.94 0.008 90 / 0.22); }
.wb-zeile:nth-child(-n+2) { border-top: none; padding-top: 0; }
.wb-marke { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.wb-marke .kreis {
  width: 26px; height: 26px; border: 2px solid var(--messing); border-radius: 50%; flex: none;
  display: grid; place-items: center; transition: background 500ms ease, color 500ms ease;
  font-family: var(--display); font-size: 12px; line-height: 1; color: var(--messing);
}
.wb-marke .kreis::before { content: counter(werkzeug, decimal-leading-zero); }
.wb-zeile.sichtbar .wb-marke .kreis { background: var(--messing); color: var(--schiefer); }
.wb-marke .titel { font-family: var(--display); font-size: 18px; color: #fff; }
.wb-daten { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 560ms cubic-bezier(.2,.7,.3,1); }
.wb-zeile.sichtbar .wb-daten { grid-template-rows: 1fr; }
.wb-daten > div { overflow: hidden; }
.wb-daten p { color: oklch(0.87 0.01 62); font-size: 15px; margin: 0; }
.wb-merk { margin-top: 14px; }
.wb-merk b { display: block; font-size: 10.5px; font-weight: 400; letter-spacing: 0.11em; text-transform: uppercase; color: var(--messing); margin-bottom: 7px; }
.wb-merk ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px; }
.wb-merk li { position: relative; padding-left: 15px; font-size: 13px; color: oklch(0.86 0.01 62); }
.wb-merk li::before { content: ""; position: absolute; left: 0; top: calc(0.5lh - 1px); width: 6px; height: 2px; background: var(--messing); }

.kopfzeile h2 sup { font-size: 0.42em; font-weight: 400; vertical-align: 0.9em; color: var(--messing); margin-left: 1px; }

/* ---------- Tabelle ---------- */
.tabelle .wrap { max-width: 1400px; }
.tabellen-hinweis { font-size: 13px; color: var(--tinte-2); margin-bottom: 14px; max-width: 90ch; }
.tabellenrahmen { border: 1px solid var(--zink-3); border-top: 3px solid var(--schiefer); background: #fff; }
table { border-collapse: collapse; width: 100%; table-layout: fixed; font-size: 16px; }
caption { text-align: left; font-size: 13px; color: var(--tinte-2); padding: 0 0 12px; }
th, td { padding: 24px 22px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--zink-3); }
thead th {
  position: sticky; top: 0; z-index: 2;
  background: var(--schiefer); color: var(--zink);
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding-top: 14px; padding-bottom: 14px; border-bottom: none;
}
tbody th { font-weight: 600; }
tbody tr:nth-child(even) th, tbody tr:nth-child(even) td { background: oklch(0.975 0.002 62); }
tbody tr:hover th, tbody tr:hover td { background: oklch(0.965 0.004 62); }
tbody tr:last-child th, tbody tr:last-child td { border-bottom: none; }
tr[data-empfehlung] th, tr[data-empfehlung] td,
tr[data-empfehlung]:hover th, tr[data-empfehlung]:hover td { background: oklch(0.965 0.024 90); }
tr[data-empfehlung] .datenliste dt, tr[data-empfehlung] .datenliste dd { border-bottom-color: oklch(0.9 0.03 90); }
tr[data-empfehlung] th:first-child { box-shadow: inset 4px 0 0 var(--messing); }

.rowlabel {
  display: inline-block; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: oklch(0.34 0.03 88); background: oklch(0.88 0.09 88); padding: 4px 8px; margin-bottom: 9px;
}
.produktzelle { display: flex; gap: 18px; align-items: flex-start; }
.produktzelle > span { min-width: 0; overflow-wrap: break-word; hyphens: auto; }
.produktzelle img {
  width: 104px; height: 104px; object-fit: contain; flex: none;
  background: #fff; border: 1px solid var(--zink-3); border-top: 3px solid var(--messing); padding: 5px;
}
.produktzelle .titel { font-family: var(--display); font-size: 19px; line-height: 1.2; display: block; margin-bottom: 8px; }
.produktzelle a { font-size: 13px; }

@media (min-width: 821px) and (max-width: 1120px) {
  .produktzelle { flex-direction: column; gap: 12px; }
  .produktzelle img { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .produktzelle .titel { font-size: 17px; }
}

.datenliste { display: grid; grid-template-columns: minmax(76px, auto) 1fr; margin: 0; font-size: 14.5px; line-height: 1.4; }
.datenliste dt { grid-column: 1; font-size: 12px; color: var(--tinte-2); padding: 8px 16px 8px 0; border-bottom: 1px solid oklch(0.9 0.005 62); align-self: stretch; }
.datenliste dd { grid-column: 2; margin: 0; text-align: right; padding: 8px 0; border-bottom: 1px solid oklch(0.9 0.005 62); }
.datenliste dt:last-of-type, .datenliste dd:last-of-type { border-bottom: none; }
.datenliste dd .kA { font-size: 12.5px; }
.hoehe { display: block; height: 4px; background: var(--zink-3); margin: 7px 0 1px auto; max-width: 120px; }
.hoehe i { display: block; height: 100%; background: var(--messing-tief); }

.plusliste { list-style: none; margin: 0; padding: 0; font-size: 14.5px; line-height: 1.45; }
.plusliste li { position: relative; padding-left: 18px; margin-bottom: 10px; }
.plusliste li:last-child { margin-bottom: 0; }
.plusliste li::before { content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 2px; background: var(--messing-tief); }

.preiszelle { text-align: right; }
.preiszelle .gross { font-family: var(--display); font-size: 25px; display: block; white-space: nowrap; }
.preiszelle .streich { font-size: 14.5px; display: block; margin-top: 2px; }
.preiszelle .knopf, .preiszelle .knopf-linie {
  display: block; width: 100%; text-align: center; padding: 13px 10px;
  font-size: 12.5px; letter-spacing: 0.08em; margin-top: 16px;
}
.preiszelle .knopf-linie { color: var(--tinte); border-color: oklch(0.78 0.008 62); }
.preiszelle .knopf-linie:hover { border-color: var(--messing-tief); color: var(--messing-tief); }
td .kA { color: var(--tinte-2); }
.tabelle a { font-size: 13px; }

/* ---------- Modelle im Detail ---------- */
.modelle { display: flex; flex-direction: column; }
.modell { display: grid; grid-template-columns: clamp(150px, 17vw, 220px) 1fr; gap: clamp(18px, 3vw, 34px); padding: 30px 0; border-top: 1px solid var(--zink-3); align-items: start; }
.modell:first-child { border-top: none; }
.modell h3 { margin-bottom: 4px; }
.modell .rolle { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--messing-tief); margin-bottom: 12px; }
.punkt { display: grid; grid-template-columns: 92px 1fr; gap: 14px; margin-bottom: 12px; }
.punkt span { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--messing-tief); padding-top: 3px; }
.punkt p { margin: 0; }
.bewertung { margin-top: 14px; }
.bw-titel { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--messing-tief); margin: 0 0 10px; }
.bewertung .bw-titel + ul + .bw-titel { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--zink-3); }
.dafuer, .dagegen { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.dafuer li, .dagegen li { position: relative; padding-left: 26px; font-size: 15px; line-height: 1.5; }
.dafuer li::before, .dagegen li::before {
  position: absolute; left: 0; top: 0; width: 16px; text-align: center;
  font-family: var(--display); font-size: 15px; line-height: 1.5;
}
.dafuer li::before { content: "+"; color: var(--messing-tief); }
.dagegen li::before { content: "−"; color: var(--tinte-2); }
.dafuer b, .dagegen b { font-weight: 600; }
.quelle { font-size: 12.5px; color: var(--tinte-2); border-top: 1px solid var(--zink-3); margin-top: 14px; padding-top: 10px; }

/* ---------- Kaufberatung ---------- */
.beratung { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(28px, 5vw, 64px); }
.b-punkt { padding: 22px 0 22px 28px; border-top: 1px solid var(--zink-3); position: relative; }
.b-punkt::before { content: ""; position: absolute; left: 0; top: 33px; width: 14px; height: 3px; background: var(--messing-tief); }
.b-punkt h3 { margin-bottom: 8px; }
.b-punkt p { font-size: 16px; color: var(--tinte-2); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--zink-3); }
.faq details { border-bottom: 1px solid var(--zink-3); }
.faq summary {
  cursor: pointer; list-style: none; padding: 20px 40px 20px 0; position: relative;
  font-family: var(--display); font-size: clamp(17px, 2vw, 21px);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ""; position: absolute; right: 6px; top: 50%; width: 16px; height: 3px; background: var(--messing-tief); transition: transform 260ms ease; }
.faq summary::before { content: ""; position: absolute; right: 12.5px; top: 50%; margin-top: -6.5px; width: 3px; height: 16px; background: var(--messing-tief); transition: transform 260ms ease, opacity 260ms ease; }
.faq details[open] summary::before { opacity: 0; transform: scaleY(0); }
.faq .antwort { padding: 0 0 22px; max-width: 78ch; color: var(--tinte-2); }

/* ---------- Absprungbrett ---------- */
.brett { display: grid; grid-template-columns: minmax(0, 620px); gap: clamp(20px, 3vw, 36px); }
.brett-zeile { display: grid; grid-template-columns: 112px 1fr; gap: 22px; align-items: start; padding-top: 22px; border-top: 3px solid var(--messing); }
.brett-zeile .kachel { width: 92px; height: 92px; aspect-ratio: auto; padding: 12px; overflow: hidden; }
.brett-zeile .kachel .mono { font-size: 30px; }
.brett-zeile .kachel .zeile { font-size: 9px; letter-spacing: 0.1em; }
.brett-bild { display: block; width: 112px; height: 112px; overflow: hidden; background: #fff; border-top: 3px solid var(--messing); }
.brett-bild img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 420ms cubic-bezier(.2,.7,.3,1); }
.brett-bild:hover img { transform: scale(1.06); }
.brett-zeile p { margin-bottom: 12px; }
.brett-zeile p:last-child { margin-bottom: 0; }
.brett-zeile h3 { margin-bottom: 6px; }
.brett-zeile p { font-size: 15px; color: oklch(0.86 0.01 62); }

/* ---------- Fuss ---------- */
.fuss { background: var(--schiefer-tief); color: oklch(0.84 0.01 62); padding: 44px 0 30px; font-size: 14px; }
.fuss .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
.fuss h4 { font-family: var(--display); font-size: 15px; color: #fff; margin: 0 0 12px; letter-spacing: 0.04em; }
.fuss ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.fuss a { color: oklch(0.86 0.02 90); }
.fuss .klein { font-size: 12.5px; color: oklch(0.72 0.01 62); margin-top: 26px; border-top: 1px solid oklch(0.94 0.008 90 / 0.16); padding-top: 16px; }

/* ---------- Fliesstext-Seiten ---------- */
.text-seite { max-width: 76ch; }
.text-seite h2 { margin-top: 40px; margin-bottom: 12px; }
.text-seite h3 { margin-top: 26px; margin-bottom: 8px; }
.text-seite ul { padding-left: 20px; }
.text-seite li { margin-bottom: 8px; }
.platzhalter { background: oklch(0.955 0.02 90); border-bottom: 2px dashed var(--messing-tief); padding: 1px 5px; font-size: 0.94em; }

/* ---------- Responsiv ---------- */
@media (max-width: 820px) {
  .tabellenrahmen { border-top: none; }
  table, tbody, tr, th, td { display: block; width: auto; }
  thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
  tbody tr { border-top: 3px solid var(--schiefer); padding: 6px 0 14px; }
  tbody tr[data-empfehlung] { border-top-color: var(--messing); }
  th, td { border-bottom: none; padding: 10px 0 0 !important; }
  tr[data-empfehlung] th, tr[data-empfehlung] td { background: none; }
  tr[data-empfehlung] th:first-child { box-shadow: none; }
  td::before { content: attr(data-spalte); display: block; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--messing-tief); margin-bottom: 6px; }

  /* Mobil ueberarbeitet 30.08.2026 */
  caption { display: block; padding: 15px 16px 0; }          /* stand vorher als schmale Spalte */
  th, td { padding: 13px 16px 0 !important; }                 /* Text klebte an der Rahmenkante */
  tbody tr { padding-bottom: 20px; }
  .datenliste { grid-template-columns: minmax(84px, min(33%, 150px)) 1fr; font-size: 15px; column-gap: 14px; }
  .datenliste dt { padding-right: 0; }
  .datenliste dd { text-align: left; }                        /* rechtsbuendig brach bei Umbruch auseinander */
  .hoehe { margin-left: 0; margin-right: auto; }
  .preiszelle { text-align: left; }
  .preiszelle .gross { font-size: 28px; }
  .produktzelle img { width: 88px; height: 88px; }
}

@media (max-width: 760px) {
  .messpunkte { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px clamp(16px, 4vw, 28px); }
  .feld-gitter { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .aufriss-marke { width: 25px; height: 25px; font-size: 12px; }
  .aufriss-legende li { padding: 10px 0; }
}

@media (max-width: 1000px) {
  .hero .wrap { grid-template-columns: minmax(0, 1fr); }
  .hero h1 { max-width: none; margin-bottom: 20px; }
  .feld { margin-top: 4px; }
}

@media (max-width: 900px) {
  .empfehlung, .beratung, .brett { grid-template-columns: 1fr; }
  .varianten { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .werkbank { grid-template-columns: 1fr; }
  .wb-zeile:nth-child(2) { border-top: 1px solid oklch(0.94 0.008 90 / 0.22); padding-top: 20px; }
  .modell { grid-template-columns: 1fr; gap: 14px; }
  .fuss .wrap { grid-template-columns: 1fr; }
  .kachel { aspect-ratio: 16 / 9; }
  .kopf .wrap { min-height: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .punkt { grid-template-columns: 1fr; gap: 2px; }

  /* Navigation: eine wischbare Zeile statt zwei umgebrochener Reihen */
  .kopf .wrap { min-height: 0; gap: 4px; padding-top: 15px; padding-bottom: 0; }
  .kopf nav {
    flex-wrap: nowrap; gap: 20px; width: 100%;
    overflow-x: auto; overscroll-behavior-x: contain;
    scrollbar-width: none; -ms-overflow-style: none;
    padding-bottom: 13px;
  }
  .kopf nav::-webkit-scrollbar { display: none; }
  .kopf nav a { white-space: nowrap; flex: none; }
  .kopf .wrap > nav { min-width: 0; }

  /* Bildfeld: sieben wischbare Kacheln statt 4+3 Briefmarken */
  .feld-gitter {
    display: flex; flex-wrap: nowrap; justify-content: flex-start; gap: 6px;
    overflow-x: auto; overscroll-behavior-x: contain;
    scrollbar-width: none; -ms-overflow-style: none;
    scroll-snap-type: x proximity; padding-bottom: 2px;
  }
  .feld-gitter::-webkit-scrollbar { display: none; }
  .feld-gitter > div { flex: 0 0 122px; scroll-snap-align: start; padding: 11px; }
  .feld, .feld-gitter { min-width: 0; max-width: 100%; }
  .feld-notiz { display: none; }

  .varianten img { width: 62px; height: 62px; }
  .varianten a { padding: 8px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .wb-daten { grid-template-rows: 1fr; }
}

@media print {
  .kopf nav, .knopfreihe { display: none; }
  body { background: #fff; }
}
