/* ============================================================
   A8P — Deutsche Version · Design System v2
   Layout-DNA: tylko.com (weißer Grund, Pill-Buttons, scharfe
   Bildkacheln, Sentence case, enge Grids, breiter Container)
   Farben: a8p.pl (#C5A572 Gold, #1E1E1E Ink, #F2F2F2, Weiß)
   Schrift: Jost (variable, self-hosted) — Brandfont von a8p.pl
   Alle Tokens in :root. Nichts hardcoden.
   ============================================================ */

:root {
  /* Farben — Palette a8p.pl */
  --ink: #1e1e1e;            /* Text, Footer, dunkle Flächen */
  --ink-2: #141414;          /* tiefstes Schwarz (Hero-Overlay, Hover) */
  --ink-soft: #5c5850;       /* Sekundärtext, Eyebrows */
  --paper: #ffffff;          /* Grund */
  --tile: #f2f2f2;           /* Bildkacheln, Karten, Bänder (a8p primary) */
  --gold: #c5a572;           /* Akzent — CTA, Badges, Preise */
  --gold-strong: #b8935a;    /* Hover auf Gold */
  --gold-deep: #8a6b3d;      /* kleine Akzente/Preise auf Weiß (Kontrast) */
  --gold-tint: #f2e9db;      /* helles Goldband (B2B, Promos) */
  --line: rgba(30, 30, 30, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --text-on-dark: #f5f3ef;
  --text-on-dark-dim: rgba(245, 243, 239, 0.66);

  /* Typografie — Jost */
  --font: 'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --text-lead: clamp(1.1rem, 1.02rem + 0.4vw, 1.3rem);
  --text-h2: clamp(1.9rem, 1.2rem + 2.9vw, 3.4rem);
  --text-h3: clamp(1.35rem, 1.15rem + 0.9vw, 1.8rem);
  --text-hero: clamp(2.4rem, 1.4rem + 4.6vw, 4.6rem);

  /* Raum — breiter Container, enge Kartenabstände */
  --space-section: clamp(4rem, 3rem + 4.5vw, 7.5rem);
  --wrap: 1520px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --gap: 12px;
  --header-h: 4.5rem;

  /* Motion */
  --dur: 280ms;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(assets/fonts/jost-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(assets/fonts/jost-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-024F, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul[class] { list-style: none; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }

/* ── Typo-Bausteine ── */
.display {
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}
.eyebrow {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.lead { font-size: var(--text-lead); line-height: 1.5; color: var(--ink-soft); }
.dim { color: var(--ink-soft); }

/* ── Sektionen ── */
section { padding-block: var(--space-section); }
.sec-head { display: grid; gap: 0.9rem; max-width: 56rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.sec-head h2 { font-size: var(--text-h2); }
.sec-tight { padding-block: calc(var(--space-section) * 0.55); }
.sec-light { background: var(--paper); }
.sec-dark { background: var(--ink); color: var(--text-on-dark); }
.sec-dark .lead, .sec-dark .dim, .sec-dark .eyebrow { color: var(--text-on-dark-dim); }

/* ── Buttons — Pills ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-solid { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-solid:hover { background: var(--gold-strong); border-color: var(--gold-strong); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-white { background: var(--paper); border-color: var(--paper); color: var(--ink); }
.btn-white:hover { background: var(--tile); border-color: var(--tile); }
.btn-ghost-white { background: transparent; border-color: rgba(255, 255, 255, 0.8); color: #fff; }
.btn-ghost-white:hover { background: rgba(255, 255, 255, 0.14); }
.btn:focus-visible, a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* ── Topband ── */
.topband {
  background: var(--gold);
  color: var(--ink);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.55rem var(--gutter);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand img { width: 2.1rem; height: 2.1rem; }
.brand-name { font-weight: 700; font-size: 1.2rem; letter-spacing: 0.04em; }
.brand-name small {
  display: block;
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--gold-deep);
  text-transform: uppercase;
}
.main-nav { display: flex; align-items: center; gap: 1.7rem; }
.main-nav a {
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  opacity: 0.75;
  transition: opacity var(--dur);
}
.main-nav a:hover { opacity: 1; }
.main-nav .btn { padding: 0.55rem 1.3rem; font-size: 0.92rem; opacity: 1; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.4rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: min(88vh, 56rem);
  display: flex;
  align-items: flex-end;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20, 20, 20, 0.32) 0%, rgba(20, 20, 20, 0.05) 42%, rgba(20, 20, 20, 0.78) 100%);
}
.hero-inner { padding-block: 7rem clamp(2.5rem, 6vh, 4rem); width: 100%; }
.hero .eyebrow { color: rgba(255, 255, 255, 0.85); }
.hero h1 { font-size: var(--text-hero); max-width: 21ch; margin-block: 1rem 1.2rem; }
.hero .lead { max-width: 42rem; color: rgba(255, 255, 255, 0.88); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 2rem; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}
.hero-trust li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ── USP-Spalten ── */
.usp-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
}
.usp-cols article { border-top: 2px solid var(--ink); padding-top: 1.1rem; }
.usp-cols .usp-nr { font-size: 0.92rem; font-weight: 600; color: var(--gold-deep); letter-spacing: 0.08em; }
.usp-cols h3 { font-size: 1.25rem; font-weight: 600; margin-block: 0.35rem 0.4rem; }
.usp-cols p { font-size: 0.98rem; color: var(--ink-soft); }

/* ── Kategorie-Kacheln ── */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--gap);
}
.cat-tile { text-decoration: none; color: inherit; display: grid; gap: 0.7rem; }
.cat-tile .t-img { background: var(--tile); aspect-ratio: 4 / 5; overflow: hidden; }
.cat-tile .t-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 550ms var(--ease); }
.cat-tile:hover .t-img img { transform: scale(1.04); }
.cat-tile h3 { font-size: 1.15rem; font-weight: 600; }
.cat-tile .t-price { font-size: 0.95rem; font-weight: 600; color: var(--gold-deep); }
.cat-tile p { font-size: 0.92rem; color: var(--ink-soft); }

/* ── Produkt-Karten (Grid + Karussell) ── */
.kollektion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  gap: var(--gap) ;
  row-gap: 2.2rem;
}
.kollektion-grid.single { grid-template-columns: minmax(15rem, 24rem); }
a.k-card, a.g-card { text-decoration: none; color: inherit; }
.k-card { position: relative; display: flex; flex-direction: column; gap: 0.75rem; }
.k-card .k-img { background: var(--tile); aspect-ratio: 4 / 5; overflow: hidden; }
.k-card .k-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 550ms var(--ease); }
.k-card:hover .k-img img { transform: scale(1.04); }
.k-body { display: grid; gap: 0.15rem; }
.k-body h3 { font-size: 1.08rem; font-weight: 600; }
.k-price { font-size: 0.95rem; font-weight: 600; color: var(--gold-deep); }
.k-body p { font-size: 0.9rem; color: var(--ink-soft); }
.k-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  z-index: 2;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
}

/* Karussell — horizontales Scroll-Snap */
.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(15rem, 24vw, 19rem);
  gap: var(--gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.75rem;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel > * { scroll-snap-align: start; }
.carousel-head { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.carousel-head .sec-head { margin-bottom: 0; }
.carousel-link { font-weight: 600; font-size: 0.98rem; color: var(--gold-deep); text-decoration: none; white-space: nowrap; }
.carousel-link:hover { text-decoration: underline; }

/* Musterset-Karte im Grid (Vorbild: tylko Próbki-Karte) */
.muster-card {
  background: var(--gold-tint);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.6rem 1.4rem;
  text-decoration: none;
  color: inherit;
}
.muster-card h3 { font-size: 1.15rem; font-weight: 600; max-width: 14ch; }
.muster-card p { font-size: 0.92rem; color: var(--ink-soft); }
.muster-card .m-cta { font-weight: 600; font-size: 0.95rem; color: var(--gold-deep); }
.muster-card:hover .m-cta { text-decoration: underline; }

/* Inspo-Reihe */
.inspo-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: var(--gap); }
.inspo-strip img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--tile); }

/* ── Split-Layout ── */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr));
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-img { background: var(--tile); }
.split h2 { font-size: var(--text-h2); margin-block: 0.9rem 1.1rem; }

/* Schritt-Liste (01/02/03 — tylko-Stil) */
.steps { display: grid; gap: 1.4rem; margin-top: 1.8rem; counter-reset: step; }
.steps li { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; align-items: start; }
.steps li::before {
  counter-increment: step;
  content: '0' counter(step);
  font-weight: 600;
  font-size: 1.45rem;
  color: var(--gold-deep);
  line-height: 1.15;
}
.steps strong { display: block; font-weight: 600; font-size: 1.08rem; margin-bottom: 0.15rem; }
.steps p { font-size: 0.95rem; color: var(--ink-soft); }
.sec-dark .steps p { color: var(--text-on-dark-dim); }

/* Spec-Tabelle */
.spec { margin-top: 1.4rem; border-top: 1px solid var(--line); }
.spec div { display: flex; justify-content: space-between; gap: 2rem; padding-block: 0.7rem; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.spec dt { color: var(--ink-soft); }
.spec dd { font-weight: 600; text-align: right; }

/* ── Preise ── */
.price-note { margin-top: 1.8rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 2.2rem; }
.price-big { font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2.1rem); letter-spacing: -0.01em; }
.price-big small { font-size: 0.55em; font-weight: 500; color: var(--ink-soft); }
.g-price { font-weight: 600; font-size: 1.05rem; color: var(--gold-deep); }

/* ── B2B — Goldband ── */
.b2b { background: var(--gold-tint); color: var(--ink); }
.b2b .wrap { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.b2b h2 { font-size: clamp(1.5rem, 2.8vw, 2.4rem); font-weight: 600; letter-spacing: -0.015em; }
.b2b p { color: var(--ink-soft); max-width: 46rem; margin-top: 0.5rem; }
.b2b .btn { border-color: var(--ink); color: var(--ink); border-radius: 999px; }
.b2b .btn:hover { background: var(--ink); color: var(--paper); }

/* ── FAQ ── */
.faq-list { max-width: 52rem; display: grid; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.15rem 0.2rem;
  font-weight: 600;
  font-size: 1.05rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--gold-deep); transition: transform var(--dur); flex-shrink: 0; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 0.2rem 1.2rem; color: var(--ink-soft); font-size: 0.98rem; max-width: 46rem; }

/* ── Kontakt / Formular ── */
.kontakt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 24rem), 1fr)); gap: clamp(2rem, 5vw, 4rem); }
.kontakt-side { display: grid; gap: 1.3rem; align-content: start; }
.kontakt-side a { color: var(--gold-deep); font-weight: 500; text-decoration: none; }
.kontakt-side a:hover { text-decoration: underline; }
.kontakt-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
}
.form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); }
.field { display: grid; gap: 0.3rem; }
.field label, .rechner .field span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 0;
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color var(--dur);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--ink); }
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-deep) 50%), linear-gradient(135deg, var(--gold-deep) 50%, transparent 50%);
  background-position: calc(100% - 1.3rem) 55%, calc(100% - 1rem) 55%;
  background-size: 0.32rem 0.32rem;
  background-repeat: no-repeat;
}
.gdpr { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; color: var(--ink-soft); }
.gdpr input { margin-top: 0.25rem; accent-color: var(--gold-deep); width: 1.05rem; height: 1.05rem; flex-shrink: 0; }
.gdpr a { color: var(--gold-deep); }
.form-status { font-size: 0.95rem; padding: 0.9rem 1.1rem; display: none; }
.form-status.ok { display: block; background: var(--gold-tint); border: 1px solid var(--gold); color: var(--ink); }
.form-status.err { display: block; background: rgba(140, 40, 30, 0.08); border: 1px solid #8c281e; color: #8c281e; }
.hp { position: absolute; left: -6000px; }
.form .btn { justify-self: start; }

/* ── Footer — dunkel ── */
.site-footer { background: var(--ink); color: var(--text-on-dark-dim); padding-block: 3.5rem 6.5rem; font-size: 0.95rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 2rem; }
.site-footer a { color: var(--text-on-dark-dim); }
.site-footer a:hover { color: var(--gold); }
.site-footer .brand-name { color: var(--text-on-dark); }
.site-footer .brand-name small { color: var(--gold); }
.footer-legal { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dark); display: flex; flex-wrap: wrap; gap: 1rem 2rem; font-size: 0.85rem; }

/* ── Sticky Mobile CTA ── */
.sticky-cta {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 60;
  display: none;
  gap: 1px;
  background: var(--ink);
}
.sticky-cta a { flex: 1; text-align: center; padding: 0.95rem 0.5rem; font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.sticky-cta .s-angebot { background: var(--gold); color: var(--ink); }
.sticky-cta .s-wa { background: var(--ink); color: var(--text-on-dark); }

/* ── Reveal on scroll ── */
.rv { opacity: 0; transform: translateY(18px); transition: opacity 500ms var(--ease), transform 500ms var(--ease); }
.rv.in { opacity: 1; transform: none; }

/* ── Produktseiten & Katalog ── */
.product-hero, .katalog-head { padding-top: clamp(1.6rem, 3vw, 2.8rem); }
.katalog-head { padding-bottom: 0; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.55rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}
.breadcrumb a { text-decoration: none; color: var(--ink-soft); transition: color var(--dur); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb span { color: var(--ink-soft); opacity: 0.5; }
.breadcrumb b { font-weight: 600; color: var(--gold-deep); }
.product-hero .split { align-items: start; }
.product-img { position: relative; background: var(--tile); }
.product-info { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.product-title { font-size: clamp(2rem, 1.3rem + 2.6vw, 3.2rem); margin-block: 0.7rem 1rem; }
.product-price { margin-top: 1.4rem; }
.product-trust { border-top: 1px solid var(--line); margin-top: 2rem; padding-top: 1.3rem; display: flex; flex-wrap: wrap; gap: 0.6rem 1.8rem; }
.product-trust li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; color: var(--ink-soft); }
.product-trust li::before { content: '✓'; color: var(--gold-deep); font-weight: 700; }

.price-table { width: 100%; border-collapse: collapse; font-size: 0.98rem; }
.price-table th {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-align: left;
  padding: 0.6rem 0.8rem;
  border-bottom: 2px solid var(--ink);
}
.price-table td { padding: 0.85rem 0.8rem; border-bottom: 1px solid var(--line); }
.price-table td:not(:first-child), .price-table th:not(:first-child) { text-align: right; font-variant-numeric: tabular-nums; }
.price-table tbody td:not(:first-child) { font-weight: 600; }

.rechner { background: var(--tile); padding: 1.5rem; display: grid; gap: 1.1rem; }
.rechner input {
  font: inherit;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.7rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
}
.rechner input:focus { outline: none; border-color: var(--ink); }
.rechner-out { display: grid; gap: 0.45rem; font-size: 0.98rem; }
.rechner-out strong { font-weight: 600; }
.rechner-out .re-preis { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; border-top: 1px solid var(--line); padding-top: 0.5rem; }
.rechner-out .re-preis b { font-weight: 600; font-size: 1.15rem; color: var(--gold-deep); }

.dekor-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(7.5rem, 1fr)); gap: var(--gap); }
.dekor-thumb { text-decoration: none; display: grid; gap: 0.45rem; opacity: 0.85; transition: opacity var(--dur), transform var(--dur) var(--ease); }
.dekor-thumb:hover { opacity: 1; transform: translateY(-3px); }
.dekor-thumb img { aspect-ratio: 1; object-fit: cover; width: 100%; background: var(--tile); border: 2px solid transparent; }
.dekor-thumb.aktiv { opacity: 1; }
.dekor-thumb.aktiv img { border-color: var(--gold); }
.dekor-thumb span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-soft); }
.dekor-thumb.aktiv span { color: var(--gold-deep); }

/* ── Unterseiten (Impressum/Datenschutz/404) ── */
.legal-page { padding-block: 3rem 5rem; max-width: 50rem; }
.legal-page h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; letter-spacing: -0.015em; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.15rem; font-weight: 600; margin: 2.2rem 0 0.7rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0.7rem; }
.legal-page ul { padding-left: 1.2rem; }
.legal-page a { color: var(--gold-deep); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0 1.2rem;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.85rem var(--gutter); opacity: 1; }
  .main-nav .btn { margin: 0.8rem var(--gutter) 0; }
  .nav-toggle { display: block; }
  .sticky-cta { display: flex; }
  .b2b .wrap { grid-template-columns: 1fr; }
  .product-info { position: static; }
  .carousel { grid-auto-columns: min(72vw, 17rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rv { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}
