/* ============================================================
   GALERIE SITTICH — Mobile-Stylesheet (Touch-first)
   Kein Hover, keine backdrop-filter-Overlays, Bottom-Navigation,
   Safe-Area-Unterstützung, dvh/svh-Viewport-Einheiten.
   ============================================================ */

/* ---------- Design-Token (identisch zum Desktop) ---------- */
:root {
  --gesso:    #f6f3ee;
  --gesso-2:  #eee8df;
  --paper:    #fffdf9;
  --ink:      #201c18;
  --ink-soft: #6b6257;
  --hairline: rgba(32, 28, 24, .16);
  --dark:     #14110e;
  --dark-2:   #1d1915;

  --erde:   #a4643a;
  --wasser: #39758f;
  --luft:   #5b84a6;
  --zeit:   #7d6a9e;
  --accent: var(--erde);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Jost', 'Segoe UI', Helvetica, Arial, sans-serif;

  --top-h: 56px;
  --bar-h: 62px;
  --safe-b: env(safe-area-inset-bottom, 0px);
  --pad-x: clamp(16px, 4.5vw, 32px);
  --ease: cubic-bezier(.22, .61, .21, 1);
  --shadow-1: 0 1px 2px rgba(32,28,24,.08), 0 8px 24px -12px rgba(32,28,24,.25);
  --shadow-2: 0 -6px 30px -10px rgba(32,28,24,.28);
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--gesso) url('../img/site/grain.png') repeat;
  line-height: 1.6;
  min-height: 100svh;
  overflow-x: hidden;
  padding-top: var(--top-h);
  padding-bottom: calc(var(--bar-h) + var(--safe-b));
  -webkit-tap-highlight-color: rgba(164, 100, 58, .12);
}
body.fade-out { opacity: 0; transition: opacity .18s; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.14; }
em { font-style: italic; }

main, .page-hero, .home-hero { animation: page-in .55s var(--ease) both; }
@keyframes page-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   TOP-BAR (opak, schlank)
   ============================================================ */
.top-bar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  height: var(--top-h);
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--gesso);
  border-bottom: 1px solid var(--hairline);
}
.top-bar .brand { display: flex; align-items: center; gap: 10px; }
.top-bar .brand-icon { width: 30px; height: 30px; border-radius: 50%; }
.top-bar .brand-name {
  font-family: var(--serif); font-size: 1.22rem; font-weight: 600; letter-spacing: .04em;
}
.top-bar .brand-name em { font-weight: 400; }

/* ============================================================
   BOTTOM-NAVIGATION (Daumenreichweite, Safe-Area)
   ============================================================ */
.tab-bar {
  position: fixed; inset: auto 0 0 0; z-index: 55;
  height: calc(var(--bar-h) + var(--safe-b));
  padding-bottom: var(--safe-b);
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  box-shadow: var(--shadow-2);
}
.tab {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  transition: color .2s;
}
.tab svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.tab.active { color: var(--ink); }
.tab.active::after {
  content: ""; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); margin-top: 1px;
}
.tab:active { color: var(--ink); }

/* ============================================================
   BOTTOM-SHEETS (opak, iOS-sichere Scroll-Sperre via JS)
   ============================================================ */
.scrim {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(20, 17, 14, .45);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility 0s .3s;
}
.scrim.show { opacity: 1; visibility: visible; transition: opacity .3s; }
.sheet {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
  background: var(--paper);
  border-radius: 18px 18px 0 0;
  padding: 10px var(--pad-x) calc(18px + var(--safe-b));
  box-shadow: 0 -14px 44px -12px rgba(0, 0, 0, .35);
  transform: translateY(105%);
  transition: transform .38s var(--ease);
}
.sheet.show { transform: none; }
.sheet-handle {
  width: 42px; height: 4px; border-radius: 4px;
  background: var(--hairline);
  margin: 6px auto 14px;
}
.sheet-title {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .26em;
  color: var(--ink-soft);
  text-align: center; margin-bottom: 10px;
}
.sheet-link {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 6px;
  min-height: 52px;
  border-bottom: 1px solid var(--hairline);
}
.sheet-link:last-child { border-bottom: 0; }
.sheet-link:active { background: var(--gesso); }
.sheet-link .el-dot {
  width: 12px; height: 12px; border-radius: 50%;
  flex: 0 0 auto;
}
.sheet-link .sl-name {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 500;
}
.sheet-link .sl-sub {
  margin-left: auto;
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============================================================
   STARTSEITE
   ============================================================ */
.home-hero {
  text-align: center;
  padding: clamp(26px, 5vh, 48px) var(--pad-x) clamp(18px, 3vh, 30px);
}
.hero-eyebrow {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .28em;
  color: var(--ink-soft); margin-bottom: 8px;
}
.hero-title { font-size: clamp(2.2rem, 10vw, 3.2rem); font-weight: 600; letter-spacing: .04em; }
.hero-title em { font-weight: 400; }
.hero-line {
  margin-top: 6px;
  font-family: var(--serif); font-style: italic;
  font-size: 1.02rem; color: var(--ink-soft);
}

/* ---------- Elemente-Karussell (horizontales Swipen) ---------- */
.el-carousel {
  display: flex; gap: 14px;
  overflow-x: auto;
  padding: 6px var(--pad-x) 10px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--pad-x);
  scrollbar-width: none;
}
.el-carousel::-webkit-scrollbar { display: none; }
.el-card {
  position: relative;
  flex: 0 0 min(82%, 420px);
  height: clamp(340px, 56dvh, 560px);
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: center;
  box-shadow: var(--shadow-1);
}
.el-card:active { transform: scale(.985); transition: transform .15s; }
.el-media, .el-media img, .el-canvas, .el-veil { position: absolute; inset: 0; }
.el-media img { width: 100%; height: 100%; object-fit: cover; }
.el-veil {
  background:
    linear-gradient(to top, rgba(10, 8, 6, .78) 0%, rgba(10, 8, 6, .16) 46%, rgba(10, 8, 6, .1) 100%),
    color-mix(in srgb, var(--accent) 14%, transparent);
}
.el-canvas { width: 100%; height: 100%; mix-blend-mode: screen; }
.el-label {
  position: absolute; left: 18px; right: 14px; bottom: 18px;
  color: #f7f3ec; z-index: 2;
}
.el-num { display: block; font-size: .66rem; letter-spacing: .36em; opacity: .8; margin-bottom: 4px; }
.el-label h2 {
  font-size: 2rem; font-weight: 500;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .45);
}
.el-count {
  display: block; font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  opacity: .75; margin-top: 4px;
}
.el-hint {
  display: inline-block; margin-top: 10px;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  opacity: .85;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.el-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 12px 0 4px;
}
.el-dots span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--hairline);
  transition: background .3s, transform .3s;
}
.el-dots span.on { background: var(--ink); transform: scale(1.25); }

/* ---------- Statement ---------- */
.statement {
  padding: clamp(44px, 8vh, 80px) var(--pad-x);
  text-align: center;
  max-width: 640px; margin: 0 auto;
}
.statement-kicker {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .26em;
  color: var(--ink-soft); margin-bottom: 18px;
}
.statement p {
  font-family: var(--serif);
  font-size: 1.18rem; line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 88%, transparent);
}
.statement p + p { margin-top: 1.1em; }
.signature {
  margin-top: 28px;
  font-family: var(--serif); font-style: italic;
  font-size: 1.55rem;
}
.signature::before {
  content: ""; display: block; width: 54px; height: 1px;
  background: var(--hairline); margin: 0 auto 20px;
}

/* ---------- Werk-Band ---------- */
.featured {
  padding: clamp(40px, 7vh, 70px) 0;
  background: var(--gesso-2) url('../img/site/grain.png') repeat;
  border-block: 1px solid var(--hairline);
}
.featured-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 14px;
  padding-inline: var(--pad-x); margin-bottom: 20px;
}
.featured-head h2 { font-size: 1.55rem; }
.featured-head a {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .14em;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px; white-space: nowrap;
  opacity: .8;
}
.strip {
  display: flex; gap: 16px;
  overflow-x: auto;
  padding: 6px var(--pad-x) 18px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--pad-x);
  scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip .art-card { flex: 0 0 min(66vw, 300px); scroll-snap-align: center; }

/* ---------- Angebotskarten ---------- */
.offers {
  display: grid; gap: 14px;
  padding: clamp(40px, 7vh, 70px) var(--pad-x);
}
.offer-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--accent);
  padding: 22px 22px 24px;
  box-shadow: var(--shadow-1);
}
.offer-card:active { background: var(--gesso); }
.offer-card h3 { font-size: 1.4rem; margin-bottom: 8px; }
.offer-card p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 14px; }
.offer-card .link {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .18em;
  border-bottom: 1px solid var(--ink); padding-bottom: 2px;
}

/* ============================================================
   UNTERSEITEN
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(30px, 6vh, 56px) var(--pad-x) clamp(26px, 5vh, 44px);
  text-align: center;
  overflow: hidden;
}
.page-hero .hero-kicker {
  font-size: .68rem; text-transform: uppercase; letter-spacing: .28em;
  color: var(--ink-soft); margin-bottom: 8px;
}
.page-hero h1 { font-size: clamp(2rem, 9vw, 2.9rem); font-weight: 500; }
.page-hero .hero-sub {
  margin: 10px auto 0; max-width: 480px;
  font-family: var(--serif); font-style: italic;
  font-size: 1rem; color: var(--ink-soft);
}

/* Elementseiten: dunkles Animations-Banner */
.element-hero {
  background:
    radial-gradient(140% 100% at 50% -12%,
      color-mix(in srgb, var(--accent) 42%, transparent), transparent 62%),
    var(--dark-2) url('../img/site/grain.png') repeat;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: clamp(22px, 4vh, 40px);
  min-height: clamp(180px, 30dvh, 300px);
  display: flex; flex-direction: column; justify-content: center;
}
.element-hero .element-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.element-hero > * { position: relative; }
.element-hero .hero-kicker { color: rgba(241, 236, 228, .6); }
.element-hero h1 { color: #f6f1e9; text-shadow: 0 2px 20px rgba(0, 0, 0, .4); }
.element-hero .hero-sub { color: rgba(241, 236, 228, .74); }
.element-hero .hero-rule {
  width: 56px; height: 3px; margin: 18px auto 0;
  background: var(--accent); border: 0;
}

/* ============================================================
   GALERIE-FEED + WERK-KARTEN
   ============================================================ */
.gallery-wrap { padding: 0 var(--pad-x) clamp(44px, 7vh, 80px); }
.gallery-grid { columns: 1; column-gap: 16px; }
@media (min-width: 560px) { .gallery-grid { columns: 2; } }
@media (min-width: 900px) { .gallery-grid { columns: 3; max-width: 1200px; margin: 0 auto; } }
.gallery-grid .art-card { margin-bottom: 16px; }

.art-card {
  break-inside: avoid;
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 10px;
  box-shadow: var(--shadow-1);
}
.art-card:active { transform: scale(.988); transition: transform .15s; }
.art-frame {
  overflow: hidden;
  border: 1px solid rgba(32, 28, 24, .1);
  background: var(--frame-bg, var(--gesso-2));
}
.art-frame img { width: 100%; }
.art-caption { padding: 10px 4px 3px; }
.art-title { font-family: var(--serif); font-style: italic; font-size: 1.06rem; line-height: 1.3; }
.art-title .art-year { font-style: normal; font-size: .8rem; color: var(--ink-soft); }
.art-meta { font-size: .78rem; color: var(--ink-soft); margin-top: 2px; }
.art-price {
  display: inline-block; margin-top: 6px;
  font-size: .78rem; letter-spacing: .06em;
  color: color-mix(in srgb, var(--accent) 75%, var(--ink));
}
.art-badge {
  display: inline-block; margin-top: 6px;
  font-size: .64rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--ink-soft);
  border: 1px solid var(--hairline); border-radius: 20px;
  padding: 2px 9px;
}
.art-note { display: block; font-size: .72rem; color: var(--ink-soft); margin-top: 4px; font-style: italic; }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.in {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  transition-delay: var(--d, 0s);
}

/* ---------- Filter-Chips (horizontal scrollbar) ---------- */
.chips {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding: 0 var(--pad-x) 20px;
  scrollbar-width: none;
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 18px;
  min-height: 40px;
  border: 1px solid var(--hairline); border-radius: 30px;
  color: var(--ink-soft);
  background: var(--paper);
}
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--gesso); }

/* ============================================================
   LIGHTBOX (Touch: Wischen, großes Schließen-Ziel)
   ============================================================ */
.lb {
  position: fixed; inset: 0; z-index: 80;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(16, 13, 10, .94);
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility 0s .3s;
  padding: 0 8px;
}
.lb.open { opacity: 1; visibility: visible; transition: opacity .3s; }
.lb figure { max-width: 100%; text-align: center; }
.lb img {
  max-height: 66dvh; max-width: 100%;
  width: auto; margin: 0 auto;
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, .7);
  background: #262220;
}
.lb figcaption { color: #ece7df; padding: 16px 12px 0; }
.lb-title { font-family: var(--serif); font-style: italic; font-size: 1.2rem; }
.lb-meta { font-size: .8rem; opacity: .75; margin-top: 4px; }
.lb-price { font-size: .84rem; margin-top: 6px; letter-spacing: .06em; }
.lb-hint {
  margin-top: 14px;
  font-size: .64rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(236, 231, 223, .45);
}
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 56px;
  color: rgba(236, 231, 223, .8); font-size: 1.6rem;
  display: grid; place-items: center;
}
.lb-prev { left: 2px; }
.lb-next { right: 2px; }
.lb-close {
  position: absolute; top: calc(10px + env(safe-area-inset-top, 0px)); right: 10px;
  width: 48px; height: 48px;
  color: #ece7df; font-size: 1.9rem;
  display: grid; place-items: center;
}
.lb-counter {
  position: absolute; top: calc(22px + env(safe-area-inset-top, 0px)); left: 18px;
  color: rgba(236, 231, 223, .6);
  font-size: .76rem; letter-spacing: .2em;
}

/* ============================================================
   TEXTSEITEN
   ============================================================ */
.article { max-width: 640px; margin: 0 auto; padding: 0 var(--pad-x) clamp(44px, 7vh, 80px); }
.article .lead {
  font-family: var(--serif);
  font-size: 1.15rem; line-height: 1.55;
  text-align: center;
  margin-bottom: clamp(26px, 5vh, 44px);
}
.article h2 { font-size: 1.45rem; margin: clamp(28px, 5vh, 44px) 0 14px; }
.article p + p { margin-top: 1em; }

.info-cards { display: grid; gap: 14px; margin-top: 20px; }
.info-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-top: 3px solid var(--accent);
  padding: 20px 22px;
  box-shadow: var(--shadow-1);
}
.info-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.info-card ul { list-style: none; }
.info-card li {
  padding: 8px 0 8px 20px;
  position: relative;
  font-size: .93rem;
  border-bottom: 1px dashed var(--hairline);
}
.info-card li:last-child { border-bottom: 0; }
.info-card li::before {
  content: ""; position: absolute; left: 1px; top: 16px;
  width: 7px; height: 7px; border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 55%, var(--paper));
  border: 1px solid var(--accent);
}
.price-tag {
  font-family: var(--serif); font-size: 1.9rem;
  color: color-mix(in srgb, var(--accent) 70%, var(--ink));
}
.price-tag small { font-size: .55em; color: var(--ink-soft); font-family: var(--sans); }

.steps { list-style: none; counter-reset: step; margin-top: 18px; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 14px 0 14px 58px;
  border-bottom: 1px solid var(--hairline);
  font-size: .96rem;
}
.steps li::before {
  content: counter(step, upper-roman);
  position: absolute; left: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--serif); font-size: 1.4rem; font-style: italic;
  color: color-mix(in srgb, var(--accent) 70%, var(--ink));
  width: 42px;
}

.cta-band {
  text-align: center;
  margin-top: clamp(28px, 5vh, 44px);
  padding: 26px 20px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-1);
}
.cta-band p { font-family: var(--serif); font-size: 1.1rem; margin-bottom: 16px; }

.btn {
  display: block; width: 100%;
  text-align: center;
  font-size: .78rem;
  text-transform: uppercase; letter-spacing: .2em;
  padding: 16px 20px;
  min-height: 48px;
  border: 1px solid var(--ink);
}
.btn:active { background: var(--ink); color: var(--gesso); }
.btn-accent { border-color: var(--accent); color: color-mix(in srgb, var(--accent) 75%, var(--ink)); }
.btn-accent:active { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Boutique */
.product-grid { display: grid; gap: 16px; padding: 0 var(--pad-x) clamp(44px, 7vh, 80px); }
@media (min-width: 560px) { .product-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-wrap { max-width: 560px; margin: 0 auto; padding: 0 var(--pad-x) clamp(44px, 7vh, 80px); }
.contact-form {
  background: var(--paper);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-1);
  padding: 24px 20px 26px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: .7rem; text-transform: uppercase; letter-spacing: .16em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.field input, .field textarea {
  width: 100%;
  font-family: inherit; font-size: 16px; /* verhindert iOS-Auto-Zoom */
  color: var(--ink);
  background: transparent;
  border: 0; border-bottom: 1px solid var(--hairline);
  padding: 10px 2px;
  border-radius: 0;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}
.form-note { font-size: .78rem; color: var(--ink-soft); margin-top: 14px; font-style: italic; }
.contact-alt { text-align: center; margin-top: 26px; font-size: .9rem; color: var(--ink-soft); }
.contact-alt a { border-bottom: 1px solid var(--hairline); padding-bottom: 2px; }

/* ============================================================
   FUSSZEILE
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: #cfc8be;
}
.footer-inner { padding: clamp(36px, 6vh, 56px) var(--pad-x) 20px; }
.footer-brand .brand-name { color: #f1ece4; font-size: 1.35rem; font-family: var(--serif); font-weight: 600; }
.footer-brand p { font-family: var(--serif); font-style: italic; font-size: .96rem; margin-top: 8px; opacity: .7; }
.footer-nav { margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 2px 18px; }
.footer-nav a { display: block; padding: 9px 0; min-height: 40px; font-size: .9rem; opacity: .82; }
.footer-nav a:active { opacity: 1; }
.footer-nav .el-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  margin-right: 9px;
}
.desktop-link {
  display: block; margin-top: 22px; padding: 12px 0;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .16em;
  color: #8d857a;
  border-top: 1px solid rgba(236, 231, 223, .12);
}
.legal {
  padding: 0 var(--pad-x) 18px;
  font-size: .74rem; line-height: 1.65; color: #8d857a;
}
.legal summary {
  cursor: pointer; letter-spacing: .08em; text-transform: uppercase;
  font-size: .68rem; padding: 10px 0; min-height: 40px;
}
.legal p { margin-top: 8px; }
.copyright {
  text-align: center;
  padding: 14px var(--pad-x) 20px;
  font-size: .74rem; letter-spacing: .12em;
  color: #8d857a;
  border-top: 1px solid rgba(236, 231, 223, .08);
}

.gallery-note {
  text-align: center; font-family: var(--serif); font-style: italic;
  font-size: .96rem; color: var(--ink-soft);
  padding: 0 var(--pad-x) 24px;
}

/* ============================================================
   REDUZIERTE BEWEGUNG
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .el-carousel, .strip, .chips { scroll-behavior: auto; }
}
