/* =========================================================
   Bäcker Chris – Stylesheet
   Mobile-first · DSGVO-konform (keine externen Ressourcen)
   ========================================================= */

/* ---------- Lokale Schriften (optional aktivierbar) ----------
   Eigene self-hosted Schrift aktivieren: .woff2 in assets/fonts/ ablegen,
   diesen Block einkommentieren und --font-display/--font-body anpassen.

@font-face {
  font-family: "BC Display";
  src: url("/assets/fonts/display.woff2") format("woff2");
  font-weight: 400 800; font-display: swap;
}
@font-face {
  font-family: "BC Body";
  src: url("/assets/fonts/body.woff2") format("woff2");
  font-weight: 400 700; font-display: swap;
}
------------------------------------------------------------- */

:root {
  /* Farbwelt – warm, handwerklich */
  --crust: #2b1d12;        /* fast-schwarz, Ofen/Krume */
  --crust-soft: #3a2616;
  --ember: #8a4f22;        /* primär, Kruste */
  --ember-dark: #6f3e1a;
  --gold: #c98a2e;         /* Akzent */
  --gold-light: #e8b765;
  --flour: #f7f1e7;        /* Hintergrund (warmes Papier) */
  --cream: #fbf7ef;        /* Kartenfläche */
  --ink: #2b1d12;          /* Fließtext */
  --muted: #6b5742;        /* Sekundärtext */
  --line: #e7dbc7;         /* Rahmen/Trennlinien */
  --white: #ffffff;

  /* Typografie */
  --font-display: "BC Display", "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --font-body: "BC Body", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Abstände (4/8er Raster) */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 48px; --sp-8: 64px; --sp-9: 96px;

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --shadow-sm: 0 1px 2px rgba(43, 29, 18, 0.06), 0 2px 8px rgba(43, 29, 18, 0.05);
  --shadow: 0 10px 30px rgba(43, 29, 18, 0.10);
  --shadow-lg: 0 24px 60px rgba(43, 29, 18, 0.16);

  --maxw: 1180px;
  --header-h: 72px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--flour);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--ember); text-decoration: none; }
a:hover { color: var(--ember-dark); }
button { font-family: inherit; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: var(--crust); letter-spacing: -0.01em; }
p { text-wrap: pretty; }

.visually-hidden, .skip-link:not(:focus) {
  position: absolute !important; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Fokus / A11y ---------- */
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }

.skip-link {
  position: absolute; left: 16px; top: 12px; z-index: 200;
  background: var(--crust); color: var(--white); padding: 10px 16px;
  border-radius: var(--radius-sm);
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--sp-5); }
.narrow { max-width: 760px; }
.section { padding-block: var(--sp-8); }
.section-alt { background: linear-gradient(180deg, var(--cream), var(--flour)); }

.section-head { max-width: 680px; margin-bottom: var(--sp-7); }
.section-head h2 { font-size: clamp(1.9rem, 5vw, 3rem); margin-top: var(--sp-2); }
.section-intro { color: var(--muted); font-size: 1.08rem; margin-top: var(--sp-4); }

.eyebrow {
  text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem;
  font-weight: 600; color: var(--ember);
}
.eyebrow-light { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2);
  min-height: 48px; padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 1rem; cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.18s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-align: center; line-height: 1.2;
}
.btn svg { flex: none; }
.btn-lg { min-height: 54px; padding: 15px 28px; font-size: 1.05rem; }
.btn-primary { background: var(--ember); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ember-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; color: var(--flour); border-color: rgba(247, 241, 231, 0.45); }
.btn-ghost:hover { background: rgba(247, 241, 231, 0.12); color: var(--white); transform: translateY(-2px); }

.link-btn {
  display: inline-flex; align-items: center; gap: var(--sp-2); background: none; border: none;
  color: var(--ember); font-weight: 600; cursor: pointer; padding: 8px 0; min-height: 44px;
}
.link-btn svg { transition: transform 0.25s var(--ease); }
.link-btn[aria-expanded="true"] svg { transform: rotate(180deg); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 241, 231, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled { background: rgba(247, 241, 231, 0.96); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: var(--sp-4); }

.brand { display: inline-flex; align-items: center; gap: var(--sp-3); color: var(--crust); }
.brand:hover { color: var(--crust); }
.brand-mark { border-radius: 12px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--crust); }
.brand-sub { font-size: 0.72rem; letter-spacing: 0.05em; color: var(--muted); text-transform: uppercase; }

.nav-desktop { display: none; align-items: center; gap: var(--sp-5); }
.nav-desktop a { color: var(--crust); font-weight: 500; font-size: 0.98rem; }
.nav-desktop a:not(.btn) { position: relative; padding: 6px 2px; }
.nav-desktop a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width 0.25s var(--ease);
}
.nav-desktop a:not(.btn):hover { color: var(--ember); }
.nav-desktop a:not(.btn):hover::after { width: 100%; }
.nav-cta { color: var(--white) !important; }

/* Burger */
.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 48px; height: 48px; padding: 12px; background: none; border: none; cursor: pointer; border-radius: 12px;
}
.burger span { display: block; height: 2.5px; width: 100%; background: var(--crust); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 90;
  background: var(--cream); border-bottom: 1px solid var(--line);
  padding: var(--sp-4) var(--sp-5) var(--sp-6);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
  box-shadow: var(--shadow);
}
.mobile-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav nav { display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-nav a { color: var(--crust); font-size: 1.15rem; font-weight: 500; padding: 14px 8px; border-radius: 12px; min-height: 48px; display: flex; align-items: center; }
.mobile-nav a:hover { background: var(--flour); color: var(--ember); }
.mobile-nav a.btn { justify-content: center; color: var(--white); margin-top: var(--sp-3); }
.nav-scrim { position: fixed; inset: 0; z-index: 80; background: rgba(43, 29, 18, 0.45); opacity: 0; transition: opacity 0.28s var(--ease); }
.nav-scrim.is-open { opacity: 1; }

/* ===================== HERO ===================== */
.hero { position: relative; color: var(--flour); overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--crust); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.hero-glow {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 70% 30%, rgba(201, 138, 46, 0.40), transparent 70%),
    linear-gradient(180deg, rgba(43, 29, 18, 0.55), rgba(43, 29, 18, 0.92));
}
.hero-inner { padding-block: clamp(var(--sp-8), 14vw, 140px) var(--sp-9); max-width: 760px; }
.hero h1 { font-size: clamp(2.6rem, 9vw, 5.2rem); color: var(--flour); margin-top: var(--sp-4); letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--gold-light); }
.hero-lead { font-size: clamp(1.05rem, 2.5vw, 1.3rem); color: #efe3d0; margin-top: var(--sp-5); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); }
.hero-meta { margin-top: var(--sp-6); font-size: 0.9rem; letter-spacing: 0.04em; color: rgba(239, 227, 208, 0.8); text-transform: uppercase; }

/* ===================== TRUST ===================== */
.trust { background: var(--crust); color: var(--flour); }
.trust-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); padding-block: var(--sp-7); }
.trust-item svg { width: 30px; height: 30px; color: var(--gold-light); margin-bottom: var(--sp-3); }
.trust-item h3 { color: var(--flour); font-size: 1.15rem; }
.trust-item p { color: rgba(239, 227, 208, 0.82); font-size: 0.96rem; margin-top: var(--sp-2); }

/* ===================== SORTIMENT ===================== */
.sortiment-grid { display: grid; grid-template-columns: 1fr; gap: var(--sp-3); }
.sortiment-item {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.sortiment-item summary {
  display: flex; align-items: center; gap: var(--sp-4); padding: var(--sp-4) var(--sp-5);
  cursor: pointer; list-style: none; min-height: 64px;
}
.sortiment-item summary::-webkit-details-marker { display: none; }
.sortiment-ico { flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: rgba(201, 138, 46, 0.14); color: var(--ember); }
.sortiment-ico svg { width: 26px; height: 26px; }
.sortiment-title { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--crust); flex: 1; }
.chev { flex: none; width: 12px; height: 12px; border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted); transform: rotate(45deg); transition: transform 0.25s var(--ease); margin-right: 4px; }
.sortiment-item[open] .chev { transform: rotate(-135deg); }
.sortiment-item .panel { padding: 0 var(--sp-5) var(--sp-5) calc(var(--sp-5) + 48px + var(--sp-4)); }
.sortiment-item .panel p { color: var(--muted); }

/* ===================== SPLIT (Über uns / Standort) ===================== */
.split { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); align-items: center; }
.split-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.split-media img { width: 100%; height: auto; }
.media-tag {
  position: absolute; top: var(--sp-3); left: var(--sp-3); background: rgba(43, 29, 18, 0.78); color: var(--flour);
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px;
}
.split-body h2 { font-size: clamp(1.8rem, 5vw, 2.7rem); margin: var(--sp-2) 0 var(--sp-4); }
.split-body p { color: var(--muted); }
.split-body .more p { margin-top: var(--sp-3); }

.facts { display: grid; gap: var(--sp-3); margin-top: var(--sp-6); border-top: 1px solid var(--line); padding-top: var(--sp-5); }
.facts div { display: flex; flex-direction: column; }
.facts dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ember); font-weight: 600; }
.facts dd { color: var(--crust); font-weight: 500; }

/* ===================== CARDS (Warum) ===================== */
.cards { display: grid; grid-template-columns: 1fr; gap: var(--sp-4); }
.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--sp-6); box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-num { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); font-weight: 700; margin-bottom: var(--sp-2); }
.card h3 { font-size: 1.25rem; }
.card p { color: var(--muted); margin-top: var(--sp-2); }

/* ===================== TAGWERK (Signature) ===================== */
.tagwerk { background: var(--crust); color: var(--flour); position: relative; overflow: hidden; }
.tagwerk::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(50% 40% at 80% 10%, rgba(201, 138, 46, 0.22), transparent 70%);
  pointer-events: none;
}
.tagwerk .container { position: relative; z-index: 1; }
.section-head-light h2 { color: var(--flour); }
.section-intro-light { color: rgba(239, 227, 208, 0.82); }

.timeline { list-style: none; padding: 0; display: grid; gap: 0; position: relative; max-width: 760px; }
.t-step { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-5); padding-bottom: var(--sp-6); position: relative; }
.t-step::before { /* Linie */
  content: ""; position: absolute; left: 39px; top: 14px; bottom: -6px; width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(201, 138, 46, 0.25));
}
.t-step:last-child { padding-bottom: 0; }
.t-step:last-child::before { display: none; }
.t-time {
  position: relative; z-index: 1; font-variant-numeric: tabular-nums; font-weight: 700;
  font-size: 0.95rem; color: var(--crust); background: var(--gold-light);
  width: 80px; height: 36px; display: grid; place-items: center; border-radius: 999px; flex: none;
}
.t-body h3 { color: var(--flour); font-size: 1.25rem; }
.t-body p { color: rgba(239, 227, 208, 0.82); margin-top: var(--sp-1); }

/* ===================== STANDORT ===================== */
.addr { font-style: normal; color: var(--muted); margin: var(--sp-4) 0 var(--sp-5); line-height: 1.9; }
.addr strong { color: var(--crust); font-family: var(--font-display); font-size: 1.15rem; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: var(--sp-2); max-width: 420px; }
.hours th, .hours td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); }
.hours th { font-weight: 500; color: var(--crust); }
.hours td { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }
.hours-note { font-size: 0.85rem; color: var(--muted); margin-bottom: var(--sp-5); font-style: italic; }
.map-link { display: block; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-link img { width: 100%; height: auto; transition: transform 0.4s var(--ease); }
.map-link:hover img { transform: scale(1.03); }

/* ===================== KONTAKT ===================== */
.contact-form { display: grid; gap: var(--sp-5); margin-top: var(--sp-6); }
.field { display: grid; gap: var(--sp-2); }
.field-row { display: grid; grid-template-columns: 1fr; gap: var(--sp-5); }
.field label { font-weight: 600; color: var(--crust); font-size: 0.95rem; }
.req { color: var(--ember); }
.opt { color: var(--muted); font-weight: 400; font-size: 0.85rem; }
.field input, .field textarea {
  font: inherit; color: var(--ink); background: var(--white); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); padding: 13px 15px; min-height: 50px; width: 100%;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--ember); box-shadow: 0 0 0 4px rgba(138, 79, 34, 0.12); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #c0392b; }
.field-error { color: #c0392b; font-size: 0.85rem; }

.checkbox-field { gap: var(--sp-2); }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-3); align-items: start; cursor: pointer; font-weight: 400; }
.checkbox input { position: absolute; opacity: 0; width: 24px; height: 24px; cursor: pointer; }
.checkbox-box {
  width: 24px; height: 24px; border: 1.5px solid var(--muted); border-radius: 7px; background: var(--white);
  display: grid; place-items: center; flex: none; margin-top: 2px; transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease);
}
.checkbox-box::after {
  content: ""; width: 6px; height: 11px; border: solid var(--white); border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0); transition: transform 0.18s var(--ease); margin-top: -2px;
}
.checkbox input:checked + .checkbox-box { background: var(--ember); border-color: var(--ember); }
.checkbox input:checked + .checkbox-box::after { transform: rotate(45deg) scale(1); }
.checkbox input:focus-visible + .checkbox-box { outline: 3px solid var(--gold); outline-offset: 2px; }
.checkbox-text { color: var(--muted); font-size: 0.95rem; line-height: 1.55; }
.form-status { font-weight: 500; min-height: 1.2em; }
.form-status.is-ok { color: var(--ember-dark); }
.form-status.is-err { color: #c0392b; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--crust); color: var(--flour); padding-block: var(--sp-7) var(--sp-5); }
.footer-top { display: grid; grid-template-columns: 1fr; gap: var(--sp-6); padding-bottom: var(--sp-6); }
.footer-brand .brand-name { color: var(--flour); font-size: 1.4rem; }
.footer-brand p { color: rgba(239, 227, 208, 0.72); font-size: 0.95rem; margin-top: var(--sp-2); }
.footer-brand a { color: var(--gold-light); }
.footer-nav, .footer-legal { display: flex; flex-wrap: wrap; gap: var(--sp-4); }
.footer-nav a, .footer-legal a { color: rgba(239, 227, 208, 0.82); }
.footer-nav a:hover, .footer-legal a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex; flex-direction: column; gap: var(--sp-2); align-items: center; text-align: center;
  border-top: 1px solid rgba(239, 227, 208, 0.16); padding-top: var(--sp-5);
}
.copyright { color: rgba(239, 227, 208, 0.6); font-size: 0.88rem; }
.powered { font-size: 0.9rem; color: rgba(239, 227, 208, 0.7); }
.wowobot { color: #22b8e0; font-weight: 600; }
.wowobot:hover { color: #22b8e0; text-decoration: underline; }

/* ===================== LEGAL / PROSE ===================== */
.legal-hero { background: var(--crust); color: var(--flour); padding-block: var(--sp-7); }
.legal-hero .eyebrow { color: var(--gold-light); }
.legal-hero h1 { color: var(--flour); font-size: clamp(2rem, 6vw, 3rem); margin-top: var(--sp-2); }
.prose { max-width: 760px; }
.prose h2 { font-size: 1.4rem; margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 1.2em; margin-top: var(--sp-2); }
.prose li { margin-bottom: var(--sp-1); }
.prose a { word-break: break-word; }
.ph { color: var(--ember-dark); background: rgba(201, 138, 46, 0.16); border-radius: 6px; padding: 1px 6px; font-weight: 600; }
.notice {
  border: 1px dashed var(--gold); background: rgba(201, 138, 46, 0.08);
  border-radius: var(--radius); padding: var(--sp-5); margin-bottom: var(--sp-6); color: var(--crust);
}
.notice strong { color: var(--ember-dark); }
.back-link { display: inline-flex; align-items: center; gap: var(--sp-2); margin-top: var(--sp-7); font-weight: 600; }

/* ===================== REVEAL-ANIMATIONEN ===================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================== BREAKPOINTS ===================== */
@media (min-width: 600px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr 1fr; }
  .facts { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 880px) {
  body { font-size: 18px; }
  .nav-desktop { display: flex; }
  .burger { display: none; }
  .mobile-nav, .nav-scrim { display: none !important; }
  .section { padding-block: var(--sp-9); }

  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(4, 1fr); }

  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }

  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  #ueber-uns .split { grid-template-columns: 0.9fr 1.1fr; }
  #standort .split-media { order: 2; }

  /* Sortiment: Raster mit dauerhaft sichtbarem Inhalt (kein Accordion) */
  .sortiment-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
  .sortiment-item { display: flex; flex-direction: column; }
  .sortiment-item summary { cursor: default; padding: var(--sp-6) var(--sp-6) var(--sp-3); flex-direction: column; align-items: flex-start; gap: var(--sp-4); min-height: 0; }
  .sortiment-item .panel { display: block !important; padding: 0 var(--sp-6) var(--sp-6); }
  .sortiment-item .chev { display: none; }
  .sortiment-item:hover { box-shadow: var(--shadow); border-color: var(--gold); transform: translateY(-3px); }
  .sortiment-ico { width: 54px; height: 54px; }

  .timeline { grid-template-columns: 1fr; }
}

@media (min-width: 1100px) {
  .timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); max-width: none; }
  .t-step { grid-template-columns: 1fr; gap: var(--sp-4); padding-bottom: 0; }
  .t-step::before { left: 0; right: -16px; top: 18px; bottom: auto; width: auto; height: 2px; }
  .t-step:last-child::before { display: none; }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .map-link:hover img, .card:hover, .btn:hover, .sortiment-item:hover { transform: none; }
}
