/* ============================================================
   Brüser & Beerbaum Haustechnik GbR - Event-Artikel Verleih
   Corporate Design: Marineblau & Grün (aus dem Logo abgeleitet)
   ============================================================ */

:root {
  --navy-900: #101725;
  --navy-800: #151e30;
  --navy-700: #1b2438;
  --navy-600: #232f49;
  --navy-100: #e8ebf2;
  --navy-50:  #f3f5f9;
  --orange-600: #2c7400;
  --orange-500: #459226;
  --orange-400: #7cbf52;
  --orange-50:  #edf5e6;
  --ink: #20242c;
  --ink-soft: #4c5563;
  --ink-muted: #6b7382;
  --paper: #ffffff;
  --paper-warm: #faf8f5;
  --line: #e7e4de;
  --line-cool: #e3e7ee;
  --shadow-sm: 0 1px 2px rgba(16, 23, 37, .05), 0 2px 8px rgba(16, 23, 37, .05);
  --shadow-md: 0 6px 18px rgba(16, 23, 37, .08), 0 2px 6px rgba(16, 23, 37, .05);
  --shadow-lg: 0 18px 46px rgba(16, 23, 37, .13), 0 6px 16px rgba(16, 23, 37, .07);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-head: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --container: 1290px;
  --header-h: 84px;
}

/* ---------- Reset & Basis ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

@supports (overflow: clip) {
  html, body { overflow-x: clip; }
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--navy-900);
  color: #fff;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

:where(a, button, input, select, [tabindex]):focus-visible {
  outline: 3px solid var(--orange-600);
  outline-offset: 5px;
}

::selection { background: var(--orange-500); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy-700);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -.015em;
}

.container { width: 100%; max-width: var(--container); min-width: 0; margin-inline: auto; padding-inline: 24px; }
main, section { min-width: 0; max-width: 100%; }

.section { padding: 96px 0; }
.section--warm { background: var(--paper-warm); }
.section--navy { background: var(--navy-800); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }

/* ---------- Eyebrow & Überschriften ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--orange-500);
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--orange-400); }

.section-title { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 20px; }
.section-lead { font-size: 1.125rem; color: var(--ink-soft); max-width: 720px; }
.section--navy .section-lead { color: #c6cede; }
.section-head { margin-bottom: 56px; }
.section-head--center { text-align: center; }
.section-head--center .section-lead { margin-inline: auto; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn i { font-size: .92em; }
.btn--primary {
  background: var(--orange-600);
  color: #fff;
  box-shadow: 0 10px 26px rgba(44, 116, 0, .3);
}
.btn--primary:hover { background: #245f00; transform: translateY(-2px); box-shadow: 0 14px 32px rgba(36, 95, 0, .36); }
.btn.is-disabled,
.btn[aria-disabled="true"] { opacity: .5; pointer-events: none; box-shadow: none; }
.btn--dark { background: var(--navy-700); color: #fff; box-shadow: var(--shadow-md); }
.btn--dark:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--ghost { border: 1.5px solid var(--line-cool); color: var(--navy-700); background: rgba(255,255,255,.7); }
.btn--ghost:hover { border-color: var(--navy-700); background: #fff; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy-700); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,.35); color: #fff; }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn--sm { padding: 11px 22px; font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 24px rgba(16, 23, 37, .06); }

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: .98rem; color: var(--navy-700); line-height: 1.25; white-space: nowrap; }
.brand-name small { display: block; font-size: .66rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-600); }

/* Desktop Navigation (mittig zwischen Logo und CTA) */
.main-nav { margin-inline: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li > a,
.main-nav > ul > li > button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy-700);
  padding: 12px 13px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > button:hover { background: var(--navy-50); color: var(--orange-600); }
.main-nav > ul > li > a.is-active { color: var(--orange-600); }
.main-nav .nav-caret { font-size: .7rem; transition: transform .3s ease; }

/* Mega-Menü */
.has-mega { position: relative; }
.mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: min(880px, calc(100vw - 48px));
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 14px);
  transition: opacity .28s ease, transform .28s cubic-bezier(.22, 1, .36, 1), visibility .28s;
  pointer-events: none;
}
/* Unsichtbare Brücke, damit das Menü beim Herunterfahren nicht schließt */
.has-mega::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 18px;
}
.mega::before {
  content: "";
  position: absolute;
  top: -8px; left: 50%;
  width: 16px; height: 16px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}
/* Öffnen nur per Klick (JS setzt .is-open), nicht bei bloßem Hover */
.has-mega.is-open .mega {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.has-mega.is-open .nav-caret { transform: rotate(180deg); }

.mega-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mega-col h4 {
  font-size: .76rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.mega-col li { opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
.has-mega.is-open .mega-col li { opacity: 1; transform: translateY(0); }
.mega-col li:nth-child(1) { transition-delay: .04s; }
.mega-col li:nth-child(2) { transition-delay: .08s; }
.mega-col li:nth-child(3) { transition-delay: .12s; }
.mega-col li:nth-child(4) { transition-delay: .16s; }
.mega-col li:nth-child(5) { transition-delay: .2s; }
.mega-col li:nth-child(6) { transition-delay: .24s; }

.mega-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 10px;
  border-radius: 12px;
  transition: background-color .2s ease;
}
.mega-link:hover { background: var(--paper-warm); }
.mega-link i {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  font-size: .9rem;
  color: var(--orange-600);
  background: var(--orange-50);
  border-radius: 10px;
  margin-top: 2px;
  transition: background-color .25s ease, color .25s ease;
}
.mega-link:hover i { background: var(--orange-500); color: #fff; }
.mega-link strong { display: block; font-family: var(--font-head); font-size: .92rem; font-weight: 600; color: var(--navy-700); line-height: 1.35; }
.mega-link span { display: block; font-size: .8rem; color: var(--ink-muted); line-height: 1.45; }

.mega-foot {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.mega-foot p { font-size: .85rem; color: var(--ink-muted); }

.header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy-700);
  padding: 10px 4px;
  white-space: nowrap;
}
.header-phone i { color: var(--orange-600); }
.header-phone:hover { color: var(--orange-600); }

/* Mobile Navigation */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--navy-50);
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--navy-700);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  background: #fff;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.22, 1, .36, 1);
  visibility: hidden;
}
.mobile-nav.is-open { transform: translateX(0); visibility: visible; }
.mobile-nav details { border-bottom: 1px solid var(--line); }
.mobile-nav summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-700);
  padding: 16px 4px;
  cursor: pointer;
  list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary i { color: var(--orange-600); transition: transform .3s ease; }
.mobile-nav details[open] summary i { transform: rotate(180deg); }
.mobile-nav .mobile-group {
  padding: 4px 4px 16px;
  animation: mobileGroup .35s ease;
}
@keyframes mobileGroup { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
.mobile-group h5 { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-muted); margin: 12px 0 6px; }
.mobile-group a { display: block; padding: 9px 4px; color: var(--ink-soft); font-size: .98rem; }
.mobile-group a strong { color: var(--navy-700); font-weight: 600; }
.mobile-group a span { display: block; font-size: .82rem; color: var(--ink-muted); }
.mobile-nav > a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy-700);
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-cta { display: grid; gap: 10px; margin-top: 24px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 88px;
  background:
    radial-gradient(760px 460px at 92% 6%, rgba(69, 146, 38, .12), transparent 64%),
    linear-gradient(135deg, #fbfaf7 0%, var(--paper-warm) 100%);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: clamp(48px, 6vw, 88px);
  align-items: center;
}
.hero-copy { max-width: 560px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  font-size: .84rem;
  font-weight: 700;
  font-family: var(--font-head);
  color: var(--orange-600);
  letter-spacing: .045em;
  text-transform: uppercase;
  box-shadow: none;
  margin-bottom: 24px;
}
.hero-badge i { color: var(--orange-600); }
.hero h1 { max-width: 620px; font-size: clamp(2.65rem, 5vw, 4.45rem); font-weight: 800; margin-bottom: 24px; letter-spacing: -.035em; }
.hero h1 .accent { color: var(--orange-600); }
.hero-lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 510px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero-points li { display: flex; align-items: center; gap: 9px; font-size: .94rem; font-weight: 500; color: var(--ink-soft); }
.hero-points i { color: var(--orange-600); font-size: .9rem; }

.hero-visual { position: relative; min-width: 0; min-height: 500px; }
.hero-frame {
  width: 100%;
  height: 500px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 0;
  transform: none;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: calc(100% - 40px);
}
.hero-card i {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--orange-50);
  color: var(--orange-600);
  font-size: 1.05rem;
}
.hero-card strong { display: block; font-family: var(--font-head); font-size: 1rem; color: var(--navy-700); }
.hero-card span { font-size: .82rem; color: var(--ink-muted); }

/* ---------- Vertrauensleiste ---------- */
.trustbar { border-block: 1px solid var(--line); background: #fff; }
.trustbar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 20px;
}
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.trust-item i { font-size: 1.3rem; color: var(--orange-500); }
.trust-item strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--navy-700); line-height: 1.35; }
.trust-item span { font-size: .84rem; color: var(--ink-muted); }

/* ---------- Kategorien & Artikel-Karten ---------- */
.cat-block { margin-bottom: 72px; }
.cat-block:last-child { margin-bottom: 0; }
.cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 32px; }
.cat-head h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); display: flex; align-items: center; gap: 14px; }
.cat-head h3 i {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--orange-500);
  background: var(--orange-50);
  border-radius: 14px;
}
.cat-head p { color: var(--ink-muted); font-size: .95rem; margin-top: 8px; max-width: 560px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.article-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.article-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-media { position: relative; aspect-ratio: 16 / 10.5; overflow: hidden; background: var(--navy-50); }
.card-media img { width: 100%; height: 100%; object-fit: contain; background: #f3f3ef; }
.card-price {
  position: absolute;
  left: 16px; bottom: 16px;
  background: rgba(16, 23, 37, .82);
  backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}
.card-price b { color: var(--orange-400); }
.card-body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.card-body h4 { font-size: 1.18rem; margin-bottom: 10px; }
.card-body > p { font-size: .95rem; color: var(--ink-soft); margin-bottom: 18px; flex: 1; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.card-meta li {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy-600);
  background: var(--navy-50);
  border-radius: 999px;
  padding: 5px 12px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--orange-600);
}
.card-link i { transition: transform .25s ease; font-size: .8rem; }
.article-card:hover .card-link i { transform: translateX(5px); }

/* ---------- Preisrechner ---------- */
.calc-wrap {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 40px;
  align-items: start;
}
.calc-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px;
}
.calc-panel h3 { font-size: 1.25rem; margin-bottom: 6px; }
.calc-panel > p { color: var(--ink-muted); font-size: .93rem; margin-bottom: 26px; }
.calc-items { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-item {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: border-color .25s ease, background-color .25s ease, box-shadow .25s ease;
  user-select: none;
}
.calc-item:hover { border-color: #d9d2c6; }
.calc-item.is-active { border-color: var(--orange-500); background: var(--orange-50); box-shadow: 0 4px 14px rgba(69, 146, 38, .14); }
.calc-select { display: block; cursor: pointer; }
.calc-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.calc-select:has(.calc-toggle:focus-visible) {
  outline: 3px solid var(--orange-600);
  outline-offset: 8px;
  border-radius: 4px;
}
.calc-item-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.calc-item-head strong { font-family: var(--font-head); font-size: .95rem; color: var(--navy-700); font-weight: 600; }
.calc-check {
  width: 22px; height: 22px;
  flex-shrink: 0;
  border: 1.5px solid #cfc9bd;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: transparent;
  font-size: .68rem;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.calc-item.is-active .calc-check { background: var(--orange-500); border-color: var(--orange-500); color: #fff; }
.calc-item small { display: block; font-size: .8rem; color: var(--ink-muted); margin-bottom: 12px; }
.calc-item small b { color: var(--orange-600); }
.calc-qty { display: flex; align-items: center; gap: 10px; opacity: .35; pointer-events: none; transition: opacity .25s ease; }
.calc-item.is-active .calc-qty { opacity: 1; pointer-events: auto; }
.calc-qty button {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-700);
  font-weight: 700;
  font-size: .9rem;
  display: grid;
  place-items: center;
  transition: background-color .2s ease, border-color .2s ease;
}
.calc-qty button:hover { background: var(--navy-700); color: #fff; border-color: var(--navy-700); }
.calc-qty input {
  width: 46px;
  text-align: center;
  font: inherit;
  font-weight: 600;
  color: var(--navy-700);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 3px 4px;
  background: #fff;
}
.calc-qty :disabled { cursor: not-allowed; }
.calc-days { margin-top: 26px; padding-top: 24px; border-top: 1px dashed var(--line); display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.calc-days label { font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--navy-700); }
.calc-days select {
  font: inherit;
  font-weight: 600;
  color: var(--navy-700);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  background: #fff;
}

.calc-summary {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--navy-800);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
  contain: paint;
}
.calc-summary h3 { color: #fff; font-size: 1.15rem; margin-bottom: 20px; }
.calc-duration {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: -4px 0 20px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  font-size: .84rem;
  color: #c6cede;
}
.calc-duration strong { flex: none; color: #fff; font-weight: 700; }
.calc-lines { display: grid; gap: 10px; margin-bottom: 20px; min-height: 40px; }
.calc-lines li { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; color: #c6cede; }
.calc-lines li b { color: #fff; font-weight: 600; }
.calc-empty { font-size: .9rem; color: #8d97ac; }
.calc-total { border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 18px; margin-bottom: 8px; display: flex; align-items: baseline; justify-content: space-between; }
.calc-total span { font-size: .9rem; color: #c6cede; }
.calc-total strong { font-family: var(--font-head); font-size: 2rem; color: var(--orange-400); transition: transform .2s ease; }
.calc-total strong.bump { transform: scale(1.07); }
.calc-note { font-size: .78rem; color: #8d97ac; margin-bottom: 22px; }
.calc-summary .btn { width: 100%; }
.calc-actions { display: grid; gap: 10px; }
.calc-reset {
  min-height: 44px;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.calc-reset:disabled { color: #8d97ac; cursor: not-allowed; text-decoration: none; }
.calc-logistics {
  margin-top: 28px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper-warm);
}
.calc-logistics h3 { font-size: 1.18rem; margin-bottom: 22px; }
.calc-logistics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.calc-logistics-grid > div { display: grid; grid-template-columns: 32px minmax(0, 1fr); gap: 10px; align-items: start; }
.calc-logistics-grid i { color: var(--orange-600); margin-top: 4px; }
.calc-logistics-grid p { font-size: .84rem; line-height: 1.55; color: var(--ink-soft); }
.calc-logistics-grid strong { display: block; color: var(--navy-700); margin-bottom: 3px; }

/* ---------- Ablauf / Schritte ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  background: var(--navy-700);
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1.5px dashed rgba(69, 146, 38, .5);
  border-radius: 18px;
}
.step h4 { font-size: 1.08rem; margin-bottom: 10px; }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Feature-Split (Bild + Text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split + .split { margin-top: 96px; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.image-no-radius { border-radius: 0 !important; }
.product-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.product-media-grid::before { display: none; }
.product-media-grid figure {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.product-media-grid img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f3f3ef;
  border-radius: 0;
  box-shadow: none;
}
.product-media-grid figcaption {
  padding: 12px 14px;
  color: var(--navy-700);
  font-family: var(--font-head);
  font-size: .86rem;
  font-weight: 600;
}
.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.product-gallery-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-gallery-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.product-gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f3f3ef;
}
.product-gallery-card figcaption { display: grid; gap: 5px; padding: 20px; }
.product-gallery-card figcaption strong { color: var(--navy-700); font-family: var(--font-head); }
.product-gallery-card figcaption span { color: var(--ink-soft); font-size: .9rem; }
.split-media::before {
  content: "";
  position: absolute;
  inset: 24px -18px -18px 24px;
  border: 2px solid var(--orange-50);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split--reverse .split-media::before { inset: 24px 24px -18px -18px; }
.split-content h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 18px; }
.split-content > p { color: var(--ink-soft); margin-bottom: 18px; }
.check-list { display: grid; gap: 12px; margin: 22px 0 28px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; color: var(--ink); }
.check-list i { color: var(--orange-500); margin-top: 5px; font-size: .85rem; }

/* ---------- Preistabellen ---------- */
.price-table { width: 100%; border-collapse: separate; border-spacing: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { text-align: left; padding: 15px 22px; font-size: .96rem; }
.price-table thead th {
  background: var(--navy-700);
  color: #fff;
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.price-table tbody tr + tr td { border-top: 1px solid var(--line); }
.price-table tbody tr:hover td { background: var(--paper-warm); }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-weight: 600; color: var(--navy-700); white-space: nowrap; }
.price-table .price-hl { color: var(--orange-600); }
.price-service-note {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}
.price-service-note span { display: grid; grid-template-columns: 22px minmax(0, 1fr); column-gap: 8px; font-size: .78rem; line-height: 1.45; color: var(--ink-soft); }
.price-service-note i { grid-row: span 2; color: var(--orange-600); margin-top: 3px; }
.price-service-note strong { display: block; color: var(--navy-700); font-size: .82rem; }

/* ---------- Info-Box / Konditionen ---------- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.info-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: transform .3s ease, box-shadow .3s ease;
}
.info-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.info-box i {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--orange-500);
  background: var(--orange-50);
  border-radius: 14px;
  margin-bottom: 20px;
}
.info-box h4 { font-size: 1.08rem; margin-bottom: 10px; }
.info-box p { font-size: .93rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 14px; max-width: 820px; }
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow .3s ease, border-color .3s ease;
}
.faq[open] { border-color: rgba(69, 146, 38, .45); box-shadow: var(--shadow-md); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-700);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { color: var(--orange-500); font-size: .85rem; transition: transform .3s ease; flex-shrink: 0; }
.faq[open] summary i { transform: rotate(180deg); }
.faq-body { padding: 0 24px 22px; color: var(--ink-soft); font-size: .96rem; }

/* ---------- CTA-Band ---------- */
.cta-band {
  position: relative;
  background: var(--navy-800);
  border-radius: var(--radius-lg);
  padding: 72px 56px;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -140px; left: 50%;
  width: 560px; height: 320px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(69, 146, 38, .28), transparent 68%);
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 16px; position: relative; }
.cta-band p { color: #c6cede; max-width: 620px; margin: 0 auto 34px; position: relative; }
.cta-band .hero-actions { justify-content: center; margin-bottom: 0; position: relative; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #aab4c6; margin-top: 0; }
.footer-cta-strip { border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 72px 0 56px;
}
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 20px; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; max-width: 300px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  transition: background-color .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--orange-500); transform: translateY(-3px); }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: .93rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--orange-400); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; font-size: .93rem; align-items: flex-start; }
.footer-contact i { color: var(--orange-400); margin-top: 4px; width: 16px; text-align: center; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .85rem;
}
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--orange-400); }

/* ---------- Seiten-Hero (Unterseiten) ---------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 72px) 0 72px;
  background:
    radial-gradient(620px 360px at 90% -20%, rgba(69, 146, 38, .12), transparent 60%),
    linear-gradient(180deg, #fdfcfa, var(--paper-warm));
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: .85rem; color: var(--ink-muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--ink-soft); font-weight: 500; }
.breadcrumb a:hover { color: var(--orange-600); }
.breadcrumb i { font-size: .65rem; color: #c3c9d4; }
.breadcrumb [aria-current] { color: var(--navy-700); font-weight: 600; }
.page-hero h1 { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 18px; max-width: 780px; }
.page-hero .section-lead { margin-bottom: 30px; }
.page-hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.page-hero-tags li {
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-head);
  color: var(--navy-700);
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.page-hero-tags i { color: var(--orange-500); font-size: .8rem; }

/* ---------- Rechtstexte ---------- */
.legal-content { max-width: 820px; }
.legal-content h2 { font-size: 1.4rem; margin: 44px 0 14px; }
.legal-content h3 { font-size: 1.12rem; margin: 30px 0 10px; }
.legal-content p { color: var(--ink-soft); margin-bottom: 14px; font-size: .98rem; }
.legal-content ul { margin: 0 0 16px 4px; }
.legal-content ul li { position: relative; padding-left: 22px; color: var(--ink-soft); margin-bottom: 8px; font-size: .98rem; }
.legal-content ul li::before { content: ""; position: absolute; left: 0; top: .68em; width: 7px; height: 7px; border-radius: 2px; background: var(--orange-500); }
.legal-note {
  background: var(--orange-50);
  border: 1px solid rgba(69, 146, 38, .3);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: .9rem;
  color: #2f5c0f;
  margin: 18px 0;
}
.legal-note i { margin-right: 8px; }

/* ---------- Kontaktseite ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-card i {
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  color: #fff;
  background: var(--navy-700);
  border-radius: 18px;
  margin-bottom: 22px;
}
.contact-card:nth-child(2) i { background: var(--orange-500); }
.contact-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.contact-card p { font-size: .92rem; color: var(--ink-soft); margin-bottom: 20px; flex: 1; }
.contact-card a.contact-value { font-family: var(--font-head); font-weight: 600; color: var(--navy-700); font-size: 1.02rem; display: block; margin-bottom: 22px; }
.contact-card a.contact-value:hover { color: var(--orange-600); }
.instagram-qr-panel {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  max-width: 900px;
  margin: 48px auto 0;
  padding: 34px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.instagram-qr-image { display: block; background: #fff; padding: 14px; border-radius: var(--radius-md); }
.instagram-qr-image img { display: block; width: 100%; height: auto; }
.instagram-qr-panel h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); margin-bottom: 14px; }
.instagram-qr-panel p { color: var(--ink-soft); margin-bottom: 24px; }

/* ---------- Sortiment-Showcase (Studio-Index) ---------- */
.showcase-nav { display: flex; flex-wrap: wrap; gap: 10px; }
.showcase-nav a {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 12px;
  min-height: 50px; padding: 11px 18px; border: 1px solid #cdd4c7;
  border-radius: 8px; background: #fff; font-size: .98rem; font-weight: 600;
}
.showcase-nav a:hover, .showcase-nav a:focus-visible { background: var(--orange-50); border-color: var(--orange-600); }
.showcase-nav span { color: var(--orange-600); font-variant-numeric: tabular-nums; }
.showcase-help { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 8px 24px; margin: 18px 0 32px; font-size: .88rem; color: var(--ink-soft); }
.showcase-help a { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; color: var(--orange-600); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; }
.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}
.showcase-list, .showcase-title { min-width: 0; max-width: 100%; }

/* Linke Seite: typografischer Index */
.showcase-group { margin-bottom: 40px; }
.showcase-group:last-child { margin-bottom: 0; }
.showcase-group-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 26px 0 14px;
}
.showcase-group-toggle { display: contents; color: inherit; font: inherit; text-align: left; }
.showcase-group-toggle .group-caret { display: none; }
.showcase-group-label i { color: var(--orange-500); font-size: 1.08rem; }
.showcase-group-label::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.showcase-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 24px 8px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.showcase-item:first-of-type { border-top: 1px solid var(--line); }

.showcase-index {
  display: none;
}
.showcase-title h4 {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.showcase-title span {
  display: block;
  font-size: .88rem;
  color: var(--ink-muted);
  margin-top: 5px;
}
.showcase-price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy-700);
  white-space: nowrap;
  text-align: right;
}
.showcase-price small { display: block; font-size: .8rem; font-weight: 500; color: var(--ink-soft); }
.showcase-price::after { content: "Details ansehen"; display: block; margin-top: 10px; color: var(--orange-600); font-family: var(--font-body); font-size: .78rem; font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.showcase-thumb { display: block; width: 72px; height: 88px; border-radius: 8px; overflow: hidden; background: var(--orange-50); }
.showcase-thumb img { width: 100%; height: 100%; object-fit: contain; background: #f3f3ef; }

.showcase-item:hover .showcase-title h4,
.showcase-item:focus-visible .showcase-title h4,
.showcase-item.is-active .showcase-title h4 { color: var(--orange-600); }
.showcase-item:hover, .showcase-item:focus-visible, .showcase-item.is-active { background: var(--orange-50); }

/* Rechte Seite: feststehende Bildbühne */
.showcase-stage {
  display: none;
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}
.showcase.has-preview .showcase-stage { display: block; }
.showcase:not(.has-preview) { grid-template-columns: 1fr; }
.showcase-stage img {
  width: 100%; height: clamp(120px, calc(100dvh - var(--header-h) - 290px), 440px);
  object-fit: contain;
  background: #f3f3ef;
}
.showcase-stage img[src*="tiffany-stuehle-hochzeit"] {
  object-fit: cover;
  object-position: center;
}
.stage-caption {
  padding: 22px 26px;
  color: var(--navy-700);
}
.stage-caption small {
  display: block;
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange-600);
  margin-bottom: 8px;
}
.stage-caption strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1.2;
}
.stage-caption b {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.stage-action { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 14px; margin-top: 14px; border-top: 1px solid var(--line); color: var(--orange-600); font-size: .88rem; font-weight: 700; }
.showcase-stage:hover .stage-action, .showcase-stage:focus-visible .stage-action { text-decoration: underline; text-underline-offset: 4px; }

@media (min-width: 901px) and (max-width: 1100px) {
  .showcase { gap: 28px; }
  .showcase-item { grid-template-columns: 64px minmax(0, 1fr); gap: 10px 16px; }
  .showcase-thumb { width: 64px; grid-row: span 2; }
  .showcase-price { grid-column: 2; text-align: left; }
  .showcase-price small { display: inline; margin-left: 6px; }
}
@media (max-height: 600px) {
  .showcase-stage { position: static; }
}

/* Hinweis-Banner unter der Liste */
.showcase-note {
  margin-top: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  background: var(--navy-800);
  border-radius: 20px;
  padding: 28px 32px;
  color: #fff;
  width: 100%;
  max-width: 100%;
}
.showcase-note p { font-size: .96rem; color: #c6cede; max-width: 480px; }
.showcase-note p strong { display: block; font-family: var(--font-head); color: #fff; font-size: 1.1rem; margin-bottom: 4px; }

.mobile-contact-bar { display: none; }

/* Inhalte bleiben auch ohne JavaScript und Observer immer sichtbar. */
.reveal { opacity: 1; transform: none; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1280px) {
  .main-nav, .header-cta .header-phone { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .header-cta { margin-left: auto; }
  .header-cta + .nav-toggle { margin-left: 0; }
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 44px; }
  .hero { padding-top: calc(var(--header-h) + 56px); }
  .hero-card { left: 20px; }
  .calc-wrap { grid-template-columns: 1fr; }
  .calc-summary { position: static; }
  .calc-logistics-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 720px; }
  .hero-lead { max-width: 620px; }
  .hero-visual { min-height: 420px; }
  .hero-frame { height: 420px; }
  .card-grid, .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .showcase { display: block; width: 100%; max-width: 100%; }
  .showcase.has-preview .showcase-stage, .showcase-stage { display: none !important; }
  .trustbar .container { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item:nth-child(n+3) { border-top: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .split--reverse .split-media { order: 0; }
  .info-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .product-gallery-grid--three { grid-template-columns: 1fr 1fr; }
  .instagram-qr-panel { grid-template-columns: 180px minmax(0, 1fr); gap: 28px; }
  .cta-band { padding: 56px 28px; }
  .price-service-note { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --header-h: 72px; }
  .hero { padding: calc(var(--header-h) + 40px) 0 56px; }
  .hero-grid { gap: 32px; }
  .hero-badge { font-size: .76rem; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(2.25rem, 11vw, 3rem); margin-bottom: 20px; }
  .hero-lead { font-size: 1.05rem; margin-bottom: 28px; }
  .hero-actions { margin-bottom: 26px; }
  .hero-points { display: grid; gap: 8px; }
  .hero-visual { min-height: 300px; }
  .hero-frame { height: 300px; border-radius: 20px; }
  .showcase-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .showcase-nav a { padding: 11px 12px; gap: 8px; font-size: .9rem; line-height: 1.35; }
  .showcase-item { grid-template-columns: 76px minmax(0, 1fr); gap: 10px 14px; padding: 22px 4px; }
  .showcase-thumb { width: 76px; height: 96px; grid-row: span 2; align-self: start; }
  .showcase-title h4 { font-size: 1.15rem; line-height: 1.3; }
  .showcase-title span { font-size: .875rem; line-height: 1.55; }
  .showcase-price { grid-column: 2; text-align: left; white-space: normal; }
  .showcase-price small { display: inline; margin-left: 6px; }
  .showcase-price::after { margin-top: 6px; }
  .showcase-group { margin-bottom: 12px; }
  .showcase-group.is-collapsed { margin-bottom: 6px; }
  .showcase-group-label { padding: 12px 0; font-size: 1rem; letter-spacing: .035em; }
  .showcase-group-label::after { display: none; }
  .showcase-group-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    gap: 10px;
    color: inherit;
    font: inherit;
    text-align: left;
  }
  .showcase-group-toggle .group-caret { display: inline-block; margin-left: auto; font-size: .95rem; transition: transform .2s ease; }
  .showcase-group.is-collapsed .group-caret { transform: rotate(-90deg); }
  .showcase-group.is-collapsed .showcase-item { display: none; }
  .showcase-note { padding: 24px; }
  body { font-size: 1rem; }
  .product-media-grid, .product-gallery-grid, .product-gallery-grid--three { grid-template-columns: 1fr; }
  .instagram-qr-panel { grid-template-columns: 1fr; padding: 24px; }
  .instagram-qr-image { width: min(240px, 100%); margin-inline: auto; }
  .card-grid, .card-grid--2 { grid-template-columns: 1fr; }
  .header-cta { display: none; }
  .header-cta + .nav-toggle, .nav-toggle { margin-left: auto; }
  .calc-items { grid-template-columns: 1fr; }
  .calc-panel, .calc-summary { padding: 24px; }
  .calc-logistics { padding: 24px; }
  .calc-logistics-grid { grid-template-columns: 1fr; gap: 18px; }
  .steps { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 44px; }
  .cat-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .hero-card { position: absolute; left: 12px; right: 12px; bottom: 12px; max-width: none; margin-top: 0; padding: 12px 14px; }
  .hero-card i { width: 38px; height: 38px; }
  .header-cta .btn { padding: 11px 18px; font-size: .86rem; }
  .price-table th, .price-table td { padding: 12px 14px; font-size: .88rem; }
  .price-service-note { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  body { padding-bottom: 70px; }
  .mobile-contact-bar {
    position: fixed;
    inset: auto 0 0 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 9px max(12px, env(safe-area-inset-right)) calc(9px + env(safe-area-inset-bottom)) max(12px, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 -8px 24px rgba(16, 23, 37, .12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    max-width: 100%;
  }
  .mobile-contact-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    font-family: var(--font-head);
    font-size: .9rem;
    font-weight: 700;
  }
  .mobile-contact-bar .mobile-call { color: var(--navy-700); background: var(--navy-50); }
  .mobile-contact-bar .mobile-whatsapp { color: #fff; background: var(--orange-600); }
}


/* Fotobox Bilder: einheitliches Format ohne Stauchung */
.photobox-media {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #f3f3ef;
  box-shadow: var(--shadow-lg);
}
.split-media.photobox-media img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  box-shadow: none;
}
