/* SOFAHAUS – Premium-Design, Farbwelt aus dem Logo */
:root {
  --anthrazit: #2e3030;
  --anthrazit-dunkel: #1d1f1f;
  --anthrazit-tief: #161818;
  --anthrazit-hell: #3a3d3d;
  --rot: #e02428;
  --rot-dunkel: #b81d20;
  --weiss: #ffffff;
  --warmweiss: #f9f2e7;         /* Herbst-Design seit 06.09.2026; vorher #f7f3ec */
  --grau-hell: #f0e3d0;         /* vorher #f0ebe1 */
  --text: #2e3030;
  --text-soft: #5b5f63;
  --radius: 22px;
  --shadow: 0 10px 40px rgba(90, 50, 20, 0.10);        /* Herbst: warmer Schatten; vorher rgba(29,31,31,.10) */
  --shadow-hover: 0 18px 48px rgba(90, 50, 20, 0.16);  /* vorher rgba(29,31,31,.15) */
  --herbst: #9a3b1b; --herbst-dunkel: #7f2f14; --herbst-orange: #c9742a; --herbst-gold: #d9a441;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; overflow-x: hidden; overflow-x: clip; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--warmweiss);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; }

.label {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ Intro (Vorhang-Preloader) ============ */
#preloader { position: fixed; inset: 0; z-index: 1000; pointer-events: auto; }
#preloader .vorhang {
  position: absolute; top: 0; bottom: 0;
  left: calc(var(--v) * 20%); width: calc(20% + 1px);
  background: var(--anthrazit-tief);
  transition: transform 0.95s cubic-bezier(0.76, 0, 0.24, 1);
}
#preloader.fertig .vorhang {
  transform: translateY(-101%);
  transition-delay: calc(0.12s + var(--v) * 0.075s);
}
#preloader.fertig { pointer-events: none; }

#preloader .intro {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.55s ease, transform 0.65s cubic-bezier(0.6, 0, 0.3, 1), filter 0.55s ease;
}
#preloader.fertig .intro { opacity: 0; transform: scale(1.16); filter: blur(10px); }

#preloader .icon-halter { position: relative; margin-bottom: 30px; }
#preloader .icon-halter::before,
#preloader .icon-halter::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 120px; height: 120px; margin: -60px 0 0 -60px;
  border: 1.5px solid rgba(224, 36, 40, 0.55); border-radius: 50%;
  opacity: 0; transform: scale(0.4);
  animation: ring 1.4s cubic-bezier(0.2, 0.6, 0.2, 1) 0.55s forwards;
}
#preloader .icon-halter::after { animation-delay: 0.85s; }
@keyframes ring {
  0%   { opacity: 0.9; transform: scale(0.4); }
  100% { opacity: 0; transform: scale(2.4); }
}
#preloader .intro-icon {
  width: 74px; height: auto; display: block;
  opacity: 0;
  animation: icon-einflug 1s cubic-bezier(0.34, 1.45, 0.45, 1) 0.15s forwards;
  filter: drop-shadow(0 0 34px rgba(224, 36, 40, 0.45));
}
@keyframes icon-einflug {
  0%   { opacity: 0; transform: scale(0) rotate(-25deg); filter: blur(6px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

#preloader .intro-wort {
  position: relative;
  display: flex; overflow: hidden;
  letter-spacing: 0.5em;
  animation: spreiz 1.6s cubic-bezier(0.2, 0.6, 0.2, 1) 0.5s forwards;
}
#preloader .intro-wort::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.45) 50%, transparent 58%);
  transform: translateX(-110%);
  animation: sweep 1.1s cubic-bezier(0.4, 0, 0.2, 1) 1.55s forwards;
  pointer-events: none;
}
@keyframes sweep { to { transform: translateX(110%); } }
@keyframes spreiz { to { letter-spacing: 0.2em; } }
#preloader .intro-wort span {
  font-family: 'Playfair Display', serif; font-weight: 500;
  color: var(--weiss); font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.1; display: inline-block;
  opacity: 0; transform: translateY(110%);
  animation: buchstabe 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(0.5s + var(--i) * 0.07s);
}
@keyframes buchstabe {
  0%  { opacity: 0; transform: translateY(110%); filter: blur(8px); }
  60% { filter: blur(0); }
  100% { opacity: 1; transform: translateY(0); filter: none; }
}

#preloader .intro-linie {
  width: 0; height: 2px; background: var(--rot);
  margin: 26px 0 20px; border-radius: 2px;
  animation: linie 0.7s cubic-bezier(0.7, 0, 0.3, 1) 1.35s forwards;
  box-shadow: 0 0 18px rgba(224, 36, 40, 0.6);
}
@keyframes linie { to { width: min(320px, 60vw); } }

#preloader .intro-untertitel {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  opacity: 0; transform: translateY(12px);
  animation: einblenden 0.6s ease 1.7s forwards;
}
#preloader .intro-neu {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.3em; font-size: 0.72rem;
  color: var(--rot);
  margin-top: 18px;
  opacity: 0; transform: translateY(12px);
  animation: einblenden 0.6s ease 1.95s forwards;
}
@keyframes einblenden { to { opacity: 1; transform: none; } }

/* ============ Scroll-Fortschritt ============ */
#fortschritt {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: var(--rot); z-index: 300;
}

/* ============ Navigation ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
nav.fest {
  background: rgba(22, 24, 24, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  transition: padding 0.35s ease;
}
nav.fest .nav-inner { padding: 13px 24px; }
.nav-brand {
  font-family: 'Inter', sans-serif; font-weight: 600;
  color: var(--weiss); font-size: 1.3rem; letter-spacing: 0.14em;
  text-decoration: none; text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.nav-brand span { color: var(--rot); }
.nav-brand .nav-icon { height: 34px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255, 255, 255, 0.85); text-decoration: none;
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: 0.8rem; letter-spacing: 0.14em;
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--rot);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--weiss); }
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
  border: 1.5px solid var(--rot); border-radius: 999px;
  padding: 9px 22px 8px; color: var(--weiss);
}
.nav-links .nav-cta:hover { background: var(--rot); }
.nav-links .nav-cta::after { display: none; }

/* Burger (Mobile) */
#burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 220;
}
#burger span {
  width: 26px; height: 2px; background: var(--weiss);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#burger.offen span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#burger.offen span:nth-child(2) { opacity: 0; }
#burger.offen span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobilmenu {
  position: fixed; inset: 0; z-index: 210;
  background: rgba(22, 24, 24, 0.97);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 34px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s ease;
}
#mobilmenu.offen { opacity: 1; pointer-events: auto; }
#mobilmenu a {
  color: var(--weiss); text-decoration: none;
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: 1.5rem; letter-spacing: 0.14em;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#mobilmenu.offen a { opacity: 1; transform: none; }
#mobilmenu.offen a:nth-child(2) { transition-delay: 0.06s; }
#mobilmenu.offen a:nth-child(3) { transition-delay: 0.12s; }
#mobilmenu.offen a:nth-child(4) { transition-delay: 0.18s; }
#mobilmenu.offen a:nth-child(5) { transition-delay: 0.24s; }
#mobilmenu.offen a:nth-child(6) { transition-delay: 0.30s; }
#mobilmenu a:hover { color: var(--rot); }

/* ============ Hero ============ */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  color: var(--weiss);
  text-align: center;
  padding: 140px 24px 120px;
  position: relative;
  overflow: hidden;
}
.hero .bg {
  position: absolute; inset: -6%;
  background: url('assets/hero.jpg') center center / cover no-repeat;
  animation: kenburns 24s ease-in-out infinite alternate;
}
.hero .bg video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.12) translateX(-1.5%); }
}
.hero .schleier {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(22, 24, 24, 0.55) 0%,
    rgba(22, 24, 24, 0.18) 35%,
    rgba(22, 24, 24, 0.30) 65%,
    rgba(22, 24, 24, 0.72) 100%);
}
.hero .riese {
  position: absolute; z-index: 1; bottom: -0.13em; left: 50%; transform: translateX(-50%);
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: clamp(6rem, 17vw, 15rem); letter-spacing: 0.04em; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.09);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.hero > *:not(.bg):not(.schleier):not(.riese):not(.scroll-hint):not(.laubfall) { position: relative; z-index: 2; }   /* .laubfall = Herbstlaub, bleibt absolut */
.hero .scroll-hint { z-index: 2; }
.hero img.logo {
  max-width: 380px; width: 82%; height: auto; margin-bottom: 36px;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 500; margin-bottom: 22px; letter-spacing: 0.01em;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.hero h1 em { font-style: italic; color: inherit; }
.hero p.slogan {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.95rem; color: rgba(255, 255, 255, 0.75);
  margin-bottom: 46px;
}
.hero p.slogan span { color: var(--rot); padding: 0 12px; }
.hero .neu-hinweis {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.34em; font-size: 0.76rem; color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}
.hero .neu-hinweis, .hero img.logo, .hero h1, .hero p.slogan, .hero .hero-buttons { opacity: 0; }
body.bereit .hero .neu-hinweis    { animation: einflug 0.9s 0.15s ease forwards; }
body.bereit .hero img.logo        { animation: einflug 0.9s 0.3s ease forwards; }
body.bereit .hero h1              { animation: einflug 0.9s 0.5s ease forwards; }
body.bereit .hero p.slogan        { animation: einflug 0.9s 0.7s ease forwards; }
body.bereit .hero .hero-buttons   { animation: einflug 0.9s 0.9s ease forwards; }
body.bereit .hero .bg video       { animation: settle 2.6s cubic-bezier(0.22, 0.6, 0.2, 1) forwards; }
@keyframes settle {
  from { transform: scale(1.1); }
  to   { transform: scale(1); }
}
@keyframes einflug {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5); font-size: 1.4rem; z-index: 2;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(9px); }
}

/* ============ Buttons ============ */
.btn {
  display: inline-block; padding: 16px 42px;
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.88rem;
  text-decoration: none; border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s, color 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-rot {
  background: var(--rot); color: var(--weiss);
  box-shadow: 0 6px 18px rgba(29, 31, 31, 0.18);
}
.btn-rot:hover { background: var(--rot-dunkel); box-shadow: 0 10px 26px rgba(29, 31, 31, 0.24); }
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.5); color: var(--weiss); margin-left: 14px;
}
.btn-outline:hover { border-color: var(--rot); color: var(--rot); }

/* ============ Marquee ============ */
.marquee {
  background: var(--rot); color: var(--weiss);
  overflow: hidden; white-space: nowrap;
  padding: 15px 0; transform: rotate(-1.2deg) scale(1.02);
  position: relative; z-index: 5;
}
.marquee.dunkel { background: var(--anthrazit-tief); transform: rotate(1.2deg) scale(1.02); }
.marquee-spur { display: inline-block; animation: lauf 28s linear infinite; }
.marquee span {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: 1.1rem; letter-spacing: 0.14em; padding: 0 26px;
}
.marquee span b { color: rgba(255, 255, 255, 0.4); font-weight: 600; }
@keyframes lauf {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ Sections ============ */
section { padding: 120px 0; position: relative; }
.section-head { margin-bottom: 58px; }
.section-head .label { color: var(--rot); font-size: 0.8rem; display: block; margin-bottom: 14px; }
.section-head h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.2; letter-spacing: 0.01em;
}
.section-head h2 em { font-style: italic; color: inherit; }

/* Scroll-Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1); }
.reveal.links  { transform: translateX(-50px); }
.reveal.rechts { transform: translateX(50px); }
.reveal.zoom   { transform: scale(0.9); }
.reveal.sichtbar { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.08s; }
.reveal:nth-child(5) { transition-delay: 0.16s; }
.reveal:nth-child(6) { transition-delay: 0.24s; }

/* ============ Eröffnungsangebote (dunkles Editorial) ============ */
.angebote { background: var(--anthrazit-tief); color: var(--weiss); }
.angebote-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px;
  align-items: start;
}
.angebote-links .label { color: var(--rot); font-size: 0.8rem; display: block; margin-bottom: 14px; }
.angebote-links h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.2;
  margin-bottom: 24px; color: var(--weiss);
}
.angebote-links h2 em { font-style: italic; color: inherit; }
.angebote-links p { color: rgba(255, 255, 255, 0.62); font-size: 1.08rem; max-width: 440px; }
.angebot { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 30px 0 26px; }
.angebot:last-of-type { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.angebot h3 {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 1rem; margin-bottom: 8px; color: var(--weiss);
}
.angebot p { color: rgba(255, 255, 255, 0.62); font-size: 0.98rem; max-width: 480px; }
.angebot-cta {
  display: inline-block; margin-top: 28px;
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.85rem; color: var(--weiss);
  text-decoration: none; border-bottom: 1px solid var(--rot); padding-bottom: 6px;
  transition: color 0.25s ease;
}
.angebot-cta:hover { color: var(--rot); }

/* ============ Werte (editorial) ============ */
.werte-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 90px;
  align-items: start;
}
.werte-links .label { color: var(--rot); font-size: 0.8rem; display: block; margin-bottom: 14px; }
.werte-links h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.2;
  margin-bottom: 24px;
}
.werte-links h2 em { font-style: italic; color: inherit; }
.werte-links p { color: var(--text-soft); font-size: 1.08rem; max-width: 440px; }
.wert { border-top: 1px solid #ddd9d3; padding: 30px 0 26px; }
.wert:last-child { border-bottom: 1px solid #ddd9d3; }
.wert h3 {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 1rem; margin-bottom: 8px;
}
.wert p { color: var(--text-soft); font-size: 0.98rem; max-width: 480px; }

/* ============ Vorteile ============ */
.vorteile { background: var(--grau-hell); }
.vorteile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.vorteil {
  background: var(--weiss); padding: 48px 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative; overflow: hidden;
}
.vorteil::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: var(--rot); transform: scaleY(0); transform-origin: top;
  transition: transform 0.35s ease;
}
.vorteil:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.vorteil:hover::after { transform: scaleY(1); }
.vorteil .num {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.14em; color: var(--rot);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 20px;
}
.vorteil .num::after {
  content: ''; display: block; width: 38px; height: 1.5px; background: rgba(224, 36, 40, 0.4);
}
.vorteil h3 { font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 1.15rem; margin-bottom: 12px; }
.vorteil p { color: var(--text-soft); font-size: 0.96rem; }

/* ============ Highlights (Editorial-Stil) ============ */
.highlights .highlight-reihe {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 70px;
  align-items: center; margin-bottom: 110px;
}
.highlights .highlight-reihe:last-child { margin-bottom: 0; }
.highlights .highlight-reihe.umgekehrt .bild { order: 2; }
.highlights .bild {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-hover);
  aspect-ratio: 1 / 1; /* reserviert Platz vor dem Lazy-Load – sonst verrutschen Anker-Sprünge */
}
.highlights .bild img {
  width: 100%; height: 100%; display: block; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.highlights .bild:hover img { transform: scale(1.05); }
.highlights .text .label { color: var(--rot); font-size: 0.78rem; display: block; margin-bottom: 14px; }
.highlights .text h3 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem); font-weight: 500;
  line-height: 1.15; margin-bottom: 20px;
}
.highlights .text h3 em { font-style: italic; color: inherit; }
.highlights .text p { color: var(--text-soft); margin-bottom: 28px; max-width: 460px; }
.highlights .mehr {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.85rem;
  color: var(--text); text-decoration: none;
  display: inline-flex; align-items: center; gap: 12px;
}
.highlights .mehr::after {
  content: '⟶'; color: var(--rot); transition: transform 0.25s ease;
}
.highlights .mehr:hover::after { transform: translateX(8px); }

/* ============ Filter ============ */
.filter-leiste { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 42px; }
.filter-knopf {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; font-size: 0.8rem;
  padding: 11px 24px 10px; border-radius: 999px;
  border: 1.5px solid #ddd; background: var(--weiss); color: var(--text-soft);
  cursor: pointer;
  transition: all 0.25s ease;
}
.filter-knopf:hover { border-color: var(--rot); color: var(--rot); }
.filter-knopf.aktiv {
  background: var(--anthrazit-dunkel); border-color: var(--anthrazit-dunkel); color: var(--weiss);
  box-shadow: 0 8px 24px rgba(29, 31, 31, 0.25);
}

/* ============ Modelle ============ */
.sortiment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.kachel {
  position: relative; aspect-ratio: 1/1; overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(150deg, var(--anthrazit-hell) 0%, var(--anthrazit-dunkel) 100%);
  display: flex; align-items: flex-end;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
  cursor: zoom-in;
}
.kachel:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.kachel.weg { display: none; }
.kachel img.foto {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.kachel:hover img.foto { transform: scale(1.07); }
.kachel .titel {
  position: relative; width: 100%; padding: 16px 24px 18px;
  background: linear-gradient(180deg, transparent, rgba(20, 22, 22, 0.94) 55%);
  color: var(--weiss);
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 1rem; padding-top: 56px;
  display: flex; align-items: baseline; justify-content: space-between; gap: 4px 12px; flex-wrap: wrap;
}
.kachel .titel::before {
  content: ''; position: absolute; left: 24px; top: 38px;
  width: 36px; height: 3px;
  background: var(--rot); border-radius: 2px;
  transition: width 0.3s ease;
}
.kachel:hover .titel::before { width: 64px; }
.kachel .titel small {
  font-size: 0.68rem; letter-spacing: 0.14em; color: rgba(255, 255, 255, 0.55);
  font-weight: 400;
}
.kachel .titel .preis {
  margin-left: auto; font-size: 0.74rem; letter-spacing: 0.1em;
  font-weight: 600; white-space: nowrap;
}

/* ============ Produkt-Karten (Kollektion) ============ */
.produkt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.produkt-karte {
  background: var(--weiss); border-radius: var(--radius);
  overflow: hidden; cursor: zoom-in;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.produkt-karte:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.produkt-karte { position: relative; }
.produkt-karte .pk-bild {
  aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center;
  background: var(--weiss); overflow: hidden; padding: 14px;
}
.produkt-karte .pk-bild img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.produkt-karte:hover .pk-bild img { transform: scale(1.07); }
.produkt-karte .pk-text {
  padding: 14px 20px 16px;
  border-top: 1px solid #efeeea;
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.92rem;
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
}
.produkt-karte .pk-text small {
  font-size: 0.66rem; letter-spacing: 0.12em; color: var(--text-soft); font-weight: 400;
}
.produkt-karte .pk-text { flex-wrap: wrap; }
.produkt-karte .pk-text .preis {
  flex-basis: 100%; margin-top: 3px; font-size: 0.76rem; letter-spacing: 0.1em;
  font-weight: 700; color: var(--rot); white-space: nowrap;
}
.produkt-karte .pk-fotos {
  flex-basis: 100%; margin-top: 5px; font-size: 0.62rem; letter-spacing: 0.14em;
  font-weight: 400; color: var(--text-soft);
}

/* ============ Lightbox ============ */
.lightbox {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(243, 240, 234, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.lightbox.offen { opacity: 1; pointer-events: auto; touch-action: none; }
html.galerie-offen, html.galerie-offen body,
html.swipe-offen, html.swipe-offen body { overflow: hidden; }

/* ============ Sofa-Swipe + Merkliste ============ */
.filter-leiste .aktion-knopf { border-color: var(--rot); color: var(--rot); }
.filter-leiste .aktion-knopf:hover { background: var(--rot); color: var(--weiss); }

.swiper-overlay, .merkliste-overlay {
  position: fixed; inset: 0; z-index: 240;
  background: rgba(16, 18, 18, 0.95);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.swiper-overlay.offen, .merkliste-overlay.offen { opacity: 1; pointer-events: auto; }
.swiper-overlay .schliessen, .merkliste-overlay .schliessen {
  position: absolute; top: 18px; right: 24px; color: rgba(255, 255, 255, 0.65);
  cursor: pointer; font-size: 1.5rem; padding: 14px; user-select: none;
  transition: color 0.2s ease;
}
.swiper-overlay .schliessen:hover, .merkliste-overlay .schliessen:hover { color: var(--weiss); }
/* Swipe-Vollbild hell (Kundenwunsch 30.07.) — Merkliste bleibt dunkel */
.swiper-overlay { background: rgba(243, 240, 234, 0.96); }
.swiper-overlay .schliessen { color: rgba(46, 48, 48, 0.55); }
.swiper-overlay .schliessen:hover { color: var(--text); }
.swiper-overlay .swiper-zaehler { color: var(--text-soft); }
.swiper-overlay .swiper-hinweis { color: var(--text-soft); }
.swiper-overlay .sw-nein { border-color: rgba(46, 48, 48, 0.4); color: var(--text); }
.swiper-overlay .sw-fertig { color: var(--text); }
.swiper-overlay .sw-fertig p { color: var(--text-soft); }
.swiper-overlay .btn-outline { border-color: rgba(46, 48, 48, 0.4); color: var(--text); }
.swiper-overlay .btn-outline:hover { border-color: var(--rot); color: var(--rot); }
.swiper-overlay .sw-karte { box-shadow: 0 18px 55px rgba(29, 31, 31, 0.22); }

.swiper-kopf { display: flex; align-items: baseline; gap: 18px; margin-bottom: 22px; }
.swiper-kopf .label { color: var(--rot); font-size: 0.8rem; letter-spacing: 0.2em; }
.swiper-zaehler { color: rgba(255, 255, 255, 0.6); font-family: 'Inter', sans-serif; font-size: 0.85rem; letter-spacing: 0.1em; }

.swiper-stapel { position: relative; width: min(86vw, 400px); aspect-ratio: 4 / 5; }
.sw-karte {
  position: absolute; inset: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--anthrazit-dunkel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  cursor: grab; touch-action: none; user-select: none; -webkit-user-select: none;
}
.sw-karte:active { cursor: grabbing; }
.sw-karte img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.sw-karte:nth-last-child(2) { transform: translateY(16px) scale(0.955); }
.sw-karte:nth-last-child(3) { transform: translateY(32px) scale(0.91); }
.sw-karte .sw-name {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 46px 22px 16px;
  background: linear-gradient(180deg, transparent, rgba(20, 22, 22, 0.94) 60%);
  color: var(--weiss); font-family: 'Inter', sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.95rem;
  display: flex; align-items: baseline; justify-content: space-between;
}
.sw-karte .sw-name small { font-size: 0.66rem; letter-spacing: 0.13em; color: rgba(255, 255, 255, 0.55); font-weight: 400; }
.sw-label {
  position: absolute; top: 24px;
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.95rem;
  padding: 8px 16px; border-radius: 4px; border: 2.5px solid;
  opacity: 0; pointer-events: none;
}
.sw-label-ja   { left: 18px;  color: #fff; border-color: var(--rot); background: rgba(224, 36, 40, 0.85); transform: rotate(-11deg); }
.sw-label-nein { right: 18px; color: rgba(255, 255, 255, 0.9); border-color: rgba(255, 255, 255, 0.8); background: rgba(30, 32, 32, 0.6); transform: rotate(11deg); }

.swiper-hinweis { color: rgba(255, 255, 255, 0.55); font-size: 0.8rem; letter-spacing: 0.06em; margin-top: 20px; }
.swiper-aktionen { display: flex; gap: 30px; margin-top: 16px; }
.swiper-aktionen button {
  width: 62px; height: 62px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.4rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.swiper-aktionen button:hover { transform: scale(1.1); }
.sw-nein { background: transparent; border: 1.5px solid rgba(255, 255, 255, 0.5); color: rgba(255, 255, 255, 0.85); }
.sw-ja   { background: var(--rot); border: none; color: var(--weiss); }
.sw-ja:hover { background: var(--rot-dunkel); }

.sw-fertig { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: var(--weiss); gap: 10px; padding: 20px; }
.sw-fertig h3 { font-size: 1.7rem; }
.sw-fertig p { color: rgba(255, 255, 255, 0.7); }
.sw-fertig-knoepfe { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }

.merk-inhalt { width: min(92vw, 540px); color: var(--weiss); }
.merk-inhalt .label { color: var(--rot); font-size: 0.8rem; letter-spacing: 0.2em; }
.merk-inhalt h3 { font-size: clamp(1.5rem, 4.5vw, 2rem); margin: 8px 0 22px; }
.merk-liste { display: flex; flex-direction: column; gap: 12px; max-height: 55vh; overflow-y: auto; padding-right: 4px; }
.merk-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px; padding: 10px 14px 10px 10px;
}
.merk-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.merk-text { flex: 1; display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.merk-text b { font-family: 'Inter', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.9rem; }
.merk-text small { color: rgba(255, 255, 255, 0.55); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.merk-ansehen {
  background: transparent; border: 1.5px solid var(--rot); color: var(--weiss);
  border-radius: 999px; padding: 7px 16px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.72rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  transition: background 0.2s ease;
}
.merk-ansehen:hover { background: var(--rot); }
.merk-entfernen {
  background: none; border: none; color: rgba(255, 255, 255, 0.45);
  cursor: pointer; font-size: 1rem; padding: 8px;
  transition: color 0.2s ease;
}
.merk-entfernen:hover { color: var(--weiss); }
.merk-leer { color: rgba(255, 255, 255, 0.65); }
.merk-hinweis { color: rgba(255, 255, 255, 0.45); font-size: 0.8rem; margin-top: 18px; }
.merkliste-overlay:not(.leer) .merk-leer { display: none; }
.merkliste-overlay.leer .merk-hinweis { display: none; }
.merkliste-overlay.leer .anfrage-bereich { display: none; }

/* WhatsApp-Anfrage aus der Merkliste */
.merk-inhalt { max-height: 88vh; overflow-y: auto; padding: 4px; }
.merk-inhalt.anfrage-offen .merk-liste { max-height: 24vh; }
.anfrage-bereich { margin-top: 20px; }
.anfrage-bereich .anfrage-formular { display: none; }
.anfrage-bereich.offen #anfrage-oeffnen { display: none; }
.anfrage-bereich.offen .anfrage-formular { display: block; }
.anfrage-titel { color: rgba(255, 255, 255, 0.75); font-size: 0.9rem; margin-bottom: 18px; }
.anfrage-gruppe { margin-bottom: 16px; }
.anfrage-label {
  display: block; color: rgba(255, 255, 255, 0.55);
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: 0.7rem; letter-spacing: 0.14em; margin-bottom: 9px;
}
.anfrage-label small { text-transform: none; letter-spacing: 0.02em; font-weight: 400; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips button {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.22); color: rgba(255, 255, 255, 0.85);
  border-radius: 999px; padding: 8px 14px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: 0.04em;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.chips button i { width: 14px; height: 14px; border-radius: 50%; display: inline-block; border: 1px solid rgba(255, 255, 255, 0.35); }
.chips button.aktiv { border-color: var(--rot); background: rgba(224, 36, 40, 0.18); color: var(--weiss); }
#anfrage-notiz, #anfrage-name {
  width: 100%; margin: 4px 0 16px; padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06); border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px; color: var(--weiss);
  font-family: 'Inter', sans-serif; font-size: 0.85rem; resize: vertical;
}
#anfrage-notiz::placeholder, #anfrage-name::placeholder { color: rgba(255, 255, 255, 0.4); }
#anfrage-notiz:focus, #anfrage-name:focus { outline: none; border-color: var(--rot); }
#anfrage-name { margin-bottom: 4px; }
#anfrage-name.fehlt { border-color: var(--rot); background: rgba(224, 36, 40, 0.12); }

.anfrage-datenschutz {
  display: flex; gap: 10px; align-items: flex-start;
  margin: 0 0 16px; padding: 10px 12px; border-radius: 12px;
  border: 1.5px solid transparent;
  font-size: 0.76rem; line-height: 1.5; color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
}
.anfrage-datenschutz input {
  flex: 0 0 auto; width: 17px; height: 17px; margin-top: 2px;
  accent-color: var(--rot); cursor: pointer;
}
.anfrage-datenschutz a { color: var(--weiss); text-decoration: underline; }
.anfrage-datenschutz.fehlt { border-color: var(--rot); background: rgba(224, 36, 40, 0.12); color: rgba(255, 255, 255, 0.85); }

#anfrage-modelle.fehlt {
  border: 1.5px solid var(--rot); background: rgba(224, 36, 40, 0.12);
  border-radius: 12px; padding: 8px;
}
#anfrage-senden { display: inline-block; }
.lightbox { gap: 30px; padding: 0 84px; }
.lightbox img {
  max-width: min(calc(100vw - 480px), 860px); max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(29, 31, 31, 0.22);
  transform: scale(0.94); transition: transform 0.3s ease;
}
.lightbox.offen img { transform: scale(1); }
/* Info-Karte rechts neben dem Bild */
.lightbox .lb-fuss {
  display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
  flex-shrink: 0; width: 272px;
  background: var(--weiss);
  border-radius: 18px; padding: 30px 30px 26px;
  box-shadow: 0 18px 55px rgba(29, 31, 31, 0.16);
}
.lightbox .lb-name {
  color: var(--text); font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; text-align: left; width: 100%;
}
.lightbox .lb-nr {
  display: block; color: var(--rot); font-size: 0.66rem; font-weight: 600;
  letter-spacing: 0.2em; margin-bottom: 8px;
}
.lightbox .lb-modell { display: block; font-size: 1.25rem; font-weight: 700; letter-spacing: 0.16em; }
.lightbox .lb-preis {
  display: block; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid #eceae4;
  color: var(--rot); font-size: 1.15rem; font-weight: 700; letter-spacing: 0.12em;
}
.lightbox .lb-masse {
  display: block; margin-top: 8px;
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.12em;
  color: var(--text-soft);
}
.lightbox .lb-lager {
  display: flex; align-items: center; gap: 9px;
  margin-top: 11px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  color: #1c7a43;
}
.lightbox .lb-lager::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: #21a557; flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(33, 165, 87, 0.16);
}
.lightbox .lb-hinweis {
  font-family: 'Inter', sans-serif; font-size: 0.76rem; font-weight: 400;
  text-transform: none; letter-spacing: 0.04em; line-height: 1.55;
  color: var(--text-soft);
  border-top: 1px solid #eceae4;
  padding-top: 14px; width: 100%;
}
.lightbox .schliessen, .lightbox .pfeil {
  position: absolute; color: rgba(46, 48, 48, 0.55); cursor: pointer;
  font-size: 1.5rem; padding: 14px; user-select: none;
  transition: color 0.2s ease, transform 0.2s ease;
}
.lightbox .schliessen:hover, .lightbox .pfeil:hover { color: var(--text); transform: scale(1.15); }
.lightbox .schliessen { top: 18px; right: 24px; }
.lightbox .pfeil.links  { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox .pfeil.rechts { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox .pfeil.links:hover  { transform: translateY(-50%) scale(1.15); }
.lightbox .pfeil.rechts:hover { transform: translateY(-50%) scale(1.15); }
.lightbox.einzeln .pfeil { display: none; }
@media (max-width: 900px) {
  /* Bild oben, Karte darunter — nie übereinander */
  .lightbox { flex-direction: column; gap: 14px; padding: 54px 0 16px; overflow-y: auto; }
  .lightbox img { max-width: 90vw; max-height: min(56vh, calc(100vh - 330px)); }
  .lightbox .lb-fuss {
    width: auto; max-width: 92vw; align-items: center;
    gap: 10px; padding: 16px 24px 14px; border-radius: 14px;
  }
  .lightbox .lb-name { text-align: center; }
  .lightbox .lb-nr { font-size: 0.6rem; margin-bottom: 4px; }
  .lightbox .lb-modell { font-size: 0.9rem; }
  .lightbox .lb-preis { font-size: 0.95rem; margin-top: 8px; padding-top: 8px; }
  .lightbox .lb-masse { font-size: 0.64rem; margin-top: 5px; }
  .lightbox .lb-lager { font-size: 0.63rem; margin-top: 7px; gap: 7px; justify-content: center; }
  .lightbox .lb-lager::before { width: 7px; height: 7px; }
  .lightbox .lb-hinweis { font-size: 0.58rem; padding-top: 10px; text-align: center; }
  .lightbox .pfeil.links, .lightbox .pfeil.rechts { top: 35%; }
}
.kachel .foto-anzahl {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: rgba(16, 18, 18, 0.55); color: rgba(255, 255, 255, 0.92);
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.08em; padding: 5px 11px; border-radius: 2px;
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  pointer-events: none;
}
.lightbox img { background: var(--weiss); }

/* ============ Service ============ */
.service {
  background:
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(224, 36, 40, 0.13), transparent 65%),
    var(--anthrazit-tief);
  color: var(--weiss);
}
.service-split {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 80px;
  align-items: center;
}
.service-bild { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5); aspect-ratio: 964 / 768; }
.service-bild img { width: 100%; height: 100%; display: block; object-fit: cover; }
.service-text .label { color: var(--rot); font-size: 0.8rem; display: block; margin-bottom: 14px; }
.service-text h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.2;
  color: var(--weiss); margin-bottom: 34px;
}
.service-text h2 em { font-style: italic; color: inherit; }
.service-punkt { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 24px 0 20px; }
.service-punkt:last-child { padding-bottom: 0; }
.service-punkt h3 {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.98rem; margin-bottom: 6px;
}
.service-punkt p { color: rgba(255, 255, 255, 0.68); font-size: 0.95rem; max-width: 460px; }

/* ============ Über uns ============ */
.ueber-text { max-width: 740px; color: var(--text-soft); font-size: 1.1rem; }

/* ============ Stimmen ============ */
.stimmen { background: var(--grau-hell); overflow: hidden; }
.stimmen-buehne { position: relative; max-width: 780px; margin: 0 auto; min-height: 240px; }
.stimme {
  position: absolute; inset: 0;
  background: var(--weiss); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 44px 48px;
  opacity: 0; transform: translateX(40px); pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stimme.aktiv { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.stimme .sterne { color: var(--rot); letter-spacing: 4px; margin-bottom: 16px; }
.stimme p.zitat { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.2rem; line-height: 1.6; margin-bottom: 20px; }
.stimme .wer { font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; color: var(--text-soft); }
.stimmen-punkte { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.stimmen-punkte button {
  width: 10px; height: 10px; border-radius: 50%; border: none;
  background: #cfcecb; cursor: pointer; transition: all 0.25s ease;
}
.stimmen-punkte button.aktiv { background: var(--rot); transform: scale(1.3); }

/* ============ CTA-Band ============ */
.cta-band {
  background: var(--rot); color: var(--weiss);
  text-align: center; padding: 100px 24px;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'SOFA'; position: absolute; top: 50%; left: -2%; transform: translateY(-50%);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 22rem; line-height: 1;
  color: rgba(255, 255, 255, 0.06); pointer-events: none;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.15; margin-bottom: 18px;
  position: relative;
}
.cta-band h2 em { font-style: italic; }
.cta-band p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 40px; position: relative; }
.cta-band .btn { background: var(--weiss); color: var(--rot); box-shadow: 0 14px 44px rgba(0,0,0,0.25); position: relative; }
.cta-band .btn:hover { background: var(--anthrazit-tief); color: var(--weiss); }

/* ============ FAQ ============ */
.faq-liste { max-width: 780px; margin: 0 auto; }
.faq {
  border-bottom: 1px solid #e4e3df;
}
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 26px 4px;
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; font-size: 1rem;
  transition: color 0.2s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.6rem; color: var(--rot); font-family: 'Inter', sans-serif;
  transition: transform 0.3s ease; flex-shrink: 0; line-height: 1;
}
.faq[open] summary { color: var(--rot); }
.faq[open] summary::after { transform: rotate(45deg); }
.faq .antwort { padding: 0 4px 26px; color: var(--text-soft); max-width: 660px; overflow: hidden; }

/* ============ Kontakt ============ */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.kontakt-info h3 { font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.92rem; margin: 26px 0 6px; color: var(--rot); }
.kontakt-info h3:first-child { margin-top: 0; }
.kontakt-info p { color: var(--text-soft); }
.kontakt-form {
  background: var(--weiss); padding: 44px;
  border-radius: var(--radius); box-shadow: var(--shadow-hover);
}
form label { display: block; font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.12em; margin: 18px 0 8px; color: var(--text-soft); }
form label:first-child { margin-top: 0; }
form input, form textarea {
  width: 100%; padding: 15px 18px; border: 1.5px solid #e2e2df;
  border-radius: 14px; font-family: inherit; font-size: 0.95rem;
  background: var(--grau-hell);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
form input:focus, form textarea:focus { outline: none; border-color: var(--rot); background: var(--weiss); transform: translateY(-2px); }
form button { margin-top: 26px; border: none; cursor: pointer; width: 100%; }

/* ============ Footer ============ */
footer {
  background: var(--anthrazit-tief); color: rgba(255, 255, 255, 0.55);
  padding: 70px 24px 0; font-size: 0.9rem;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 46px;
  padding-bottom: 50px;
}
.footer-brand {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--weiss); font-size: 1.2rem; margin-bottom: 16px;
}
.footer-brand span { color: var(--rot); }
.footer-grid h4 {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.82rem; color: var(--weiss); margin-bottom: 18px;
}
.footer-grid ul { list-style: none; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color 0.2s ease; }
.footer-grid a:hover { color: var(--rot); }
.footer-unten {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0; text-align: center; font-size: 0.8rem;
  max-width: 1200px; margin: 0 auto;
}

/* ============ Nach-oben-Knopf ============ */
#nachoben {
  position: fixed; right: 26px; bottom: 26px; z-index: 150;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--rot); color: var(--weiss); border: none; cursor: pointer;
  font-size: 1.2rem; box-shadow: 0 8px 24px rgba(29, 31, 31, 0.25);
  opacity: 0; transform: translateY(16px); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
#nachoben.da { opacity: 1; transform: none; pointer-events: auto; }
#nachoben:hover { background: var(--rot-dunkel); }

/* ============ Wort-Reveal in Headlines ============ */
.wort-maske { display: inline-block; overflow: hidden; vertical-align: bottom; }
.wort {
  display: inline-block; transform: translateY(115%);
  transition: transform 0.85s cubic-bezier(0.2, 0.65, 0.2, 1);
  transition-delay: calc(var(--wi) * 0.06s);
}
h2.sichtbar .wort { transform: none; }

/* ============ Bild-Wipe-Reveal ============ */
.reveal.wipe {
  transform: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.1s cubic-bezier(0.65, 0, 0.25, 1), opacity 0.4s ease;
}
.reveal.wipe.sichtbar { clip-path: inset(0 0 0 0); }
.reveal.wipe img { transform: scale(1.14); transition: transform 1.4s cubic-bezier(0.2, 0.6, 0.2, 1); }
.reveal.wipe.sichtbar img { transform: scale(1); }

/* ============ Hero-Parallaxe ============ */
.hero .bg { transition: translate 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
.hero .riese { transition: transform 0.5s ease-out; }

/* ============ Punkt-Navigation ============ */
#punktnav {
  position: fixed; left: auto; right: 22px; top: 50%; transform: translateY(-50%);
  z-index: 90; display: flex; flex-direction: column; gap: 14px; align-items: flex-end;
}
#punktnav a { display: flex; align-items: center; justify-content: flex-end; gap: 10px; text-decoration: none; }
#punktnav a i {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(120, 122, 124, 0.5);
  transition: background 0.25s ease, transform 0.25s ease;
}
#punktnav a.aktiv i { background: var(--rot); transform: scale(1.5); }
#punktnav a b {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  font-size: 0.62rem; letter-spacing: 0.12em; color: var(--text-soft);
  opacity: 0; transform: translateX(6px); transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
#punktnav a:hover b, #punktnav a.aktiv b { opacity: 1; transform: none; }
@media (max-width: 1100px) { #punktnav { display: none; } }

/* ============ Abschied ============ */
.abschied { background: var(--grau-hell); text-align: center; padding: 130px 24px; }
.abschied .label { color: var(--rot); font-size: 0.78rem; display: block; margin-bottom: 18px; }
.abschied h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem); line-height: 1.15; margin-bottom: 20px;
}
.abschied p { color: var(--text-soft); }

/* ============ WhatsApp-Button ============ */
#whatsapp {
  position: fixed; left: 26px; bottom: 26px; z-index: 150;
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--weiss);
  border-radius: 999px; padding: 13px 20px 13px 15px;
  text-decoration: none;
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.8rem;
  box-shadow: 0 8px 24px rgba(29, 31, 31, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
#whatsapp:hover { transform: translateY(-3px); background: #1fb757; box-shadow: 0 12px 30px rgba(29, 31, 31, 0.28); }
#whatsapp svg { flex-shrink: 0; }
@media (max-width: 700px) {
  #whatsapp span { display: none; }
  #whatsapp { padding: 14px; }
}

/* ============ Reduced Motion ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .hero .neu-hinweis, .hero img.logo, .hero h1, .hero p.slogan, .hero .hero-buttons { opacity: 1; }
  .wort { transform: none; }
  .reveal.wipe { clip-path: none; }
  .reveal.wipe img { transform: none; }
  #preloader { display: none; }
}

/* ============ Mobile ============ */
@media (max-width: 920px) {
  section { padding: 80px 0; }
  .vorteile-grid, .service-split, .kontakt-grid, .werte-grid, .angebote-grid { grid-template-columns: 1fr; }
  .service-split { gap: 36px; }
  .werte-grid { gap: 40px; }
  .sortiment-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .nav-links { display: none; }
  #burger { display: flex; }
  .btn-outline { margin-left: 0; margin-top: 14px; }
  .kontakt-form { padding: 28px; }
  .cta-band::before { font-size: 10rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .stimme { padding: 32px 26px; }
  .highlights .highlight-reihe { grid-template-columns: 1fr; gap: 30px; margin-bottom: 70px; }
  .highlights .highlight-reihe.umgekehrt .bild { order: 0; }
  .produkt-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 920px) {
  /* Seitliche Einflug-Animationen am Handy nur vertikal – kein horizontaler Overflow */
  .reveal.links, .reveal.rechts { transform: translateY(40px); }
  /* Riesiger Deko-Schriftzug wirkt angeschnitten wie ein Fehler – am Handy weg */
  .hero .riese { display: none; }
}
@media (max-width: 540px) {
  section { padding: 64px 0; }
  .sortiment-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero p.slogan { font-size: 0.78rem; letter-spacing: 0.1em; }
  .hero p.slogan span { padding: 0 7px; }
  .kachel .titel { font-size: 0.9rem; letter-spacing: 0.12em; padding-left: 18px; padding-right: 18px; flex-wrap: wrap; gap: 4px 10px; }
  .kachel .titel::before { left: 18px; }
  .produkt-karte .pk-text {
    flex-direction: column; align-items: flex-start; gap: 3px;
    padding: 12px 16px 14px; font-size: 0.85rem;
  }
  .produkt-karte .pk-text .preis { flex-basis: auto; margin-top: 2px; }
  .kontakt-form { padding: 22px 18px; }
  .cta-band::before { font-size: 6rem; }
}

/* Kontaktformular: Honeypot (für Menschen unsichtbar) + Sende-Rückmeldung */
.hp-feld { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-meldung { display: none; margin-top: 14px; font-size: 0.92rem; line-height: 1.5; }
.form-meldung.gut, .form-meldung.schlecht,
.form-meldung:not(:empty) { display: block; }
.form-meldung.gut { color: #2e7d43; }
.form-meldung.schlecht { color: var(--rot); }

/* Datenschutz-Checkbox im Kontaktformular */
.form-datenschutz { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0 18px; font-size: 0.85rem; line-height: 1.5; cursor: pointer; color: inherit; text-transform: none; letter-spacing: normal; font-weight: 400; }
.form-datenschutz input { width: auto; margin-top: 3px; accent-color: var(--rot); flex-shrink: 0; }
.form-datenschutz span { min-width: 0; }
.form-datenschutz a { color: var(--rot); }

/* ===== Sofa-Swipe-Teaser ===== */
.swipe-teaser { overflow: hidden; }
.swipe-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.swipe-text .label { color: var(--rot); }
.swipe-text p { margin: 22px 0 28px; line-height: 1.7; max-width: 46ch; }
.swipe-probier { font-size: 0.88rem; opacity: 0.65; margin-top: 16px !important; }
.swipe-buehne { position: relative; height: 440px; }
.teaser-stapel { position: absolute; inset: 0; }
.teaser-karte {
  position: absolute; inset: 0; margin: auto;
  width: min(340px, 90%); height: 400px;
  border-radius: 16px; overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 60px rgba(20, 18, 16, 0.18);
  cursor: grab; touch-action: pan-y; user-select: none;
}
.teaser-karte:active { cursor: grabbing; }
.teaser-karte img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  pointer-events: none;
}
.tk-label {
  position: absolute; top: 22px; padding: 7px 14px;
  border: 2px solid #fff; border-radius: 8px;
  color: #fff; font-weight: 600; letter-spacing: 0.06em;
  opacity: 0; pointer-events: none;
}
.tk-ja { left: 18px; transform: rotate(-8deg); background: rgba(46, 125, 67, 0.85); }
.tk-nein { right: 18px; transform: rotate(8deg); background: rgba(224, 36, 40, 0.85); }
/* Stapel-Versatz: 2. und 3. Karte schauen hinten heraus */
.teaser-karte:nth-last-child(2) { transform: translateY(14px) scale(0.955) rotate(1.6deg); }
.teaser-karte:nth-last-child(3) { transform: translateY(26px) scale(0.91) rotate(-1.8deg); }
/* Einladung: oberste Karte neigt sich sachte, bis jemand anfasst */
@keyframes teaser-wink {
  0%, 86%, 100% { transform: translate(0, 0) rotate(0deg); }
  90% { transform: translate(14px, -4px) rotate(2.2deg); }
  95% { transform: translate(-6px, 0) rotate(-1deg); }
}
.teaser-stapel:not(.benutzt) .teaser-karte:last-child { animation: teaser-wink 5.5s ease-in-out infinite; }
@media (max-width: 900px) {
  .swipe-grid { grid-template-columns: 1fr; gap: 42px; }
  .swipe-buehne { height: 400px; }
  .teaser-karte { width: min(300px, 88%); height: 370px; }
}


/* ============ Individuell / Maßanfertigung ============ */
.individuell {
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(224, 36, 40, 0.12), transparent 65%),
    var(--anthrazit-tief);
  color: var(--weiss);
}
.indi-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.indi-bild {
  border-radius: var(--radius); overflow: hidden;
  background: #f4f4f2;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.indi-bild img { width: 100%; display: block; transition: opacity 0.18s ease; }
.indi-bildhinweis { text-align: center; font-size: 0.82rem; color: rgba(255, 255, 255, 0.45); margin-top: 14px; line-height: 1.6; }
.indi-bildhinweis b { color: rgba(255, 255, 255, 0.8); font-weight: 600; }
.indi-preis { color: #ff5a5e; font-weight: 700; }
.indi-text .label { color: var(--rot); font-size: 0.8rem; display: block; margin-bottom: 14px; }
.indi-text h2 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem); line-height: 1.2;
  color: var(--weiss); margin-bottom: 20px;
}
.indi-text h2 em { font-style: italic; }
.indi-intro { color: rgba(255, 255, 255, 0.68); font-size: 0.98rem; max-width: 460px; margin-bottom: 10px; }
.indi-punkt { border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 20px 0 16px; }
.indi-punkt h3 {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.98rem; margin-bottom: 6px;
}
.indi-punkt p { color: rgba(255, 255, 255, 0.68); font-size: 0.95rem; max-width: 460px; }
.indi-text .btn { margin-top: 26px; }
@media (max-width: 900px) {
  .indi-split { grid-template-columns: 1fr; gap: 40px; }
}

/* Swipe-Kachel im Modell-Raster */
.swipe-kachel {
  cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; text-align: center;
  background: linear-gradient(150deg, #353838 0%, var(--anthrazit-dunkel) 100%);
}
.sk-stapel { position: relative; width: 40%; aspect-ratio: 3/4; }
.sk-karte {
  position: absolute; inset: 0; border-radius: 12px;
  background: var(--anthrazit-hell); border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease;
}
.sk-k3 { transform: rotate(-9deg) translateX(-12%); }
.sk-k2 { transform: rotate(7deg) translateX(10%); }
.sk-k1 { overflow: hidden; }
.sk-k1 img { width: 100%; height: 100%; object-fit: cover; display: block; }
.swipe-kachel:hover .sk-k3 { transform: rotate(-14deg) translateX(-18%); }
.swipe-kachel:hover .sk-k2 { transform: rotate(12deg) translateX(16%); }
.swipe-kachel:hover .sk-k1 { transform: rotate(-2deg); }
.sk-text { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 18px; }
.sk-text strong { font-family: 'Playfair Display', serif; font-weight: 500; font-size: clamp(1.3rem, 1.8vw, 1.6rem); color: var(--weiss); }
.sk-text span { font-size: 0.92rem; color: rgba(255, 255, 255, 0.72); }
.sk-cta {
  margin-top: 8px;
  background: var(--rot); color: var(--weiss);
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.76rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  padding: 10px 20px; border-radius: 999px;
  transition: transform 0.3s ease;
}
.swipe-kachel:hover .sk-cta { transform: scale(1.05); }
@media (max-width: 640px) {
  .swipe-kachel { gap: 14px; }
  .sk-stapel { width: 34%; }
}

/* ============ Gewinnspiel zur Neueröffnung (22.08.2026) ============ */
.gewinnspiel-teaser { background: var(--anthrazit); color: var(--weiss); padding: 96px 0; }
.gewinnspiel-teaser .container { display: grid; grid-template-columns: 1.15fr 1fr; gap: 70px; align-items: center; }
.gewinnspiel-teaser .label, .gs-kopf .label { color: var(--rot); font-size: 0.8rem; display: block; margin-bottom: 14px; }
.gewinnspiel-teaser h2, .gs-kopf h1 {
  font-family: 'Playfair Display', serif; font-weight: 500;
  line-height: 1.18; margin-bottom: 20px;
}
.gewinnspiel-teaser h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.gewinnspiel-teaser h2 em, .gs-kopf h1 em { font-style: italic; color: inherit; }
.gewinnspiel-teaser p, .gs-kopf p { color: rgba(255, 255, 255, 0.72); font-size: 1.08rem; max-width: 560px; }
.gewinnspiel-teaser .btn { margin-top: 30px; }
.gewinnspiel-teaser .hinweis { margin-top: 18px; font-size: 0.86rem; color: rgba(255, 255, 255, 0.5); }
.gewinnspiel-fakten { list-style: none; margin: 0; padding: 0; }
.gewinnspiel-fakten li {
  border-top: 1px solid rgba(255, 255, 255, 0.14); padding: 20px 0;
  display: grid; grid-template-columns: 170px 1fr; gap: 18px; align-items: start;
}
.gewinnspiel-fakten li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.gewinnspiel-fakten b {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.76rem; color: rgba(255, 255, 255, 0.55); padding-top: 4px;
}
.gewinnspiel-fakten span { font-size: 1.02rem; color: var(--weiss); }
@media (max-width: 900px) {
  .gewinnspiel-teaser { padding: 72px 0; }
  .gewinnspiel-teaser .container { grid-template-columns: 1fr; gap: 36px; }
  .gewinnspiel-fakten li { grid-template-columns: 1fr; gap: 4px; }
}

/* Unterseite gewinnspiel.html */
.gs-kopf { background: var(--anthrazit); color: var(--weiss); padding: 170px 0 96px; }
.gs-kopf h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 820px; }
.gs-kopf .lead { font-size: 1.3rem; color: var(--weiss); font-weight: 500; max-width: 640px; margin-bottom: 14px; }
.gs-kopf .gs-ende { color: var(--weiss); background: rgba(224, 36, 40, 0.18); border-left: 3px solid var(--rot); padding: 14px 18px; margin-bottom: 14px; }
.gs-kopf .gewinnspiel-fakten { margin-top: 36px; max-width: 680px; }
.gs-sprung { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.gs-sprung .btn-outline { margin-left: 0; }
.gs-text { padding: 96px 0; }
.gs-text .container { max-width: 780px; }
.gs-text.hell { background: var(--grau-hell); }
.gs-text h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 500; line-height: 1.2; margin-bottom: 8px; }
.gs-text .stand { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 40px; }
.gs-text h3 {
  font-family: 'Inter', sans-serif; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; font-size: 0.86rem; margin: 40px 0 12px;
}
.gs-text p { color: var(--text-soft); margin-bottom: 12px; }
.gs-text ul { color: var(--text-soft); margin: 0 0 12px 22px; }
.gs-text li { margin-bottom: 4px; }
.gs-text address { font-style: normal; color: var(--text); margin-bottom: 12px; line-height: 1.6; }
.gs-text a { color: var(--rot); }
@media (max-width: 700px) {
  .gs-kopf { padding: 130px 0 70px; }
  .gs-sprung .btn { width: 100%; text-align: center; padding: 15px 20px; }
  .gs-text { padding: 64px 0; }
}
@media (max-width: 540px) {
  .gewinnspiel-teaser .btn { display: block; width: 100%; text-align: center; padding: 15px 18px; font-size: 0.8rem; }
}

/* ---------- Aktions-Banner unter dem Hero (Danke-Aktion 31.08.2026, seit 06.09.2026 Herbst-Deal) ---------- */
.aktion-banner {
  --herbst: #9a3b1b;            /* Rostrot wie in der Kundengrafik */
  --herbst-dunkel: #7f2f14;
  --herbst-orange: #c9742a;
  --herbst-gold: #d9a441;
  background: linear-gradient(180deg, #f9f2e7 0%, #f1e3d0 100%);
  border-top: 4px solid var(--herbst);
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}
.aktion-banner .container { position: relative; z-index: 1; }
.aktion-banner .btn-rot { background: var(--herbst); }
.aktion-banner .btn-rot:hover { background: var(--herbst-dunkel); }
.aktion-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}
.aktion-text .label { color: var(--herbst); display: block; margin-bottom: 14px; font-size: 0.82rem; }
.aktion-text h2 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); line-height: 1.1; margin-bottom: 16px; }
.aktion-text h2 em { color: var(--herbst); font-style: italic; }
.aktion-text p { color: var(--text-soft); max-width: 46ch; }

.aktion-rabatt {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin: 30px 0 28px;
  padding: 26px 38px 30px;
  background: linear-gradient(135deg, #a8431f 0%, var(--herbst) 55%, var(--herbst-dunkel) 100%);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(154, 59, 27, 0.30);
  transform: rotate(-1.5deg);
}
.aktion-zahl {
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 11vw, 8rem);
  font-weight: 700;
  line-height: 0.82;
  color: var(--weiss);
  letter-spacing: -0.02em;
}
.aktion-zahl small { font-size: 0.42em; margin-left: 4px; vertical-align: super; }
.aktion-zahl-wrap { display: inline-flex; flex-direction: column; align-items: center; }
.aktion-bis {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.28em;
  padding-left: 0.28em;        /* gleicht den Buchstabenabstand am Wortende aus */
  font-size: clamp(0.72rem, 1.1vw, 0.88rem);
  color: var(--weiss);
  margin-bottom: 8px;
}
.aktion-wort {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.35;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  color: var(--weiss);
}
.aktion-wort b {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  font-weight: 600;
  font-size: 0.5em;
  letter-spacing: 0.12em;
  line-height: 1.3;
  color: var(--weiss);
}
.aktion-wort em {
  font-family: 'Playfair Display', serif;
  font-style: normal;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.55em;
  line-height: 1;
  margin-top: 4px;
}
.aktion-nach { margin-bottom: 28px; }
.aktion-buttons { display: flex; flex-wrap: wrap; gap: 12px; }
.aktion-buttons .btn { padding: 15px 30px; }
.aktion-banner .btn-outline { border-color: var(--anthrazit); color: var(--anthrazit); }
.aktion-banner .btn-outline:hover { background: var(--anthrazit); color: var(--weiss); }

.aktion-bild { position: relative; }
.aktion-bild img {
  width: 100%;
  height: auto;                 /* Herbst-Szene komplett, nichts angeschnitten */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.nav-aktion { color: var(--rot) !important; font-weight: 600; }

@media (max-width: 900px) {
  .aktion-banner { padding: 56px 0 72px; }
  .aktion-grid { grid-template-columns: 1fr; gap: 40px; }
  .aktion-text p { max-width: none; }
  .aktion-rabatt { margin: 22px 0 20px; padding: 16px 20px 18px; gap: 14px; }
  .aktion-zahl { font-size: 4.4rem; }
  .aktion-wort { font-size: 1.15rem; }
  .aktion-buttons .btn { flex: 1 1 auto; text-align: center; }
}

/* Herbst-Deal-Störer: Einblenden + dezenter Puls */
.aktion-rabatt.bereit { opacity: 0; transform: rotate(-1.5deg) scale(0.82); }
.aktion-rabatt.an {
  animation: rabatt-pop 0.75s cubic-bezier(0.18, 0.9, 0.25, 1.35) forwards,
             rabatt-puls 3.4s 1.1s ease-in-out infinite;
}
.aktion-zahl { display: inline-block; min-width: 2.05ch; text-align: center; }
@keyframes rabatt-pop {
  0%   { opacity: 0; transform: rotate(-7deg) scale(0.82); }
  60%  { opacity: 1; transform: rotate(0.8deg) scale(1.06); }
  100% { opacity: 1; transform: rotate(-1.5deg) scale(1); }
}
@keyframes rabatt-puls {
  0%, 100% { transform: rotate(-1.5deg) scale(1); box-shadow: 0 16px 38px rgba(154, 59, 27, 0.30); }
  50%      { transform: rotate(-0.6deg) scale(1.035); box-shadow: 0 22px 50px rgba(154, 59, 27, 0.40); }
}
@media (prefers-reduced-motion: reduce) {
  .aktion-rabatt.an { animation: none; }
}

/* Herbstblätter: dezente Ahornblätter in den Ecken der Sektion, schweben leicht */
.herbst-blaetter { position: absolute; inset: 0; pointer-events: none; }
.herbst-blaetter .blatt {
  position: absolute;
  width: var(--g, 110px);
  height: auto;
  fill: var(--f, var(--herbst-orange));
  opacity: var(--o, 0.55);
  transform: rotate(var(--r, 0deg));
  filter: drop-shadow(0 6px 10px rgba(127, 47, 20, 0.12));
  animation: blatt-schweben var(--d, 8s) ease-in-out infinite;
}
.herbst-blaetter .stiel { fill: none; stroke: var(--f, var(--herbst-orange)); stroke-width: 3.5; stroke-linecap: round; }
.herbst-blaetter .ader  { fill: none; stroke: rgba(255, 255, 255, 0.55); stroke-width: 1.4; stroke-linecap: round; }
.herbst-blaetter .b1 { --g: 118px; --f: var(--herbst-gold);   --o: 0.6;  --r: 38deg;   --d: 9s;   top: -10px; right: 7%; }
.herbst-blaetter .b2 { --g: 76px;  --f: var(--herbst-orange); --o: 0.65; --r: -48deg;  --d: 7.5s; top: 36%; right: -6px; }
.herbst-blaetter .b3 { --g: 96px;  --f: var(--herbst);        --o: 0.5;  --r: 152deg;  --d: 10s;  bottom: -26px; left: 46%; }
.herbst-blaetter .b4 { --g: 62px;  --f: var(--herbst-orange); --o: 0.55; --r: -118deg; --d: 8.5s; top: 9%; left: -8px; }
@keyframes blatt-schweben {
  0%, 100% { transform: rotate(var(--r, 0deg)) translate(0, 0); }
  30%      { transform: rotate(calc(var(--r, 0deg) + 9deg)) translate(8px, -14px); }
  65%      { transform: rotate(calc(var(--r, 0deg) - 5deg)) translate(-7px, -6px); }
}
@media (max-width: 900px) {
  .herbst-blaetter .b1 { --g: 80px; top: -8px; right: 4px; }
  .herbst-blaetter .b2 { display: none; }
  .herbst-blaetter .b3 { --g: 70px; left: auto; right: 8%; bottom: -14px; }
  .herbst-blaetter .b4 { display: none; }   /* Handy: kein Blatt hinter dem Text */
}
@media (prefers-reduced-motion: reduce) {
  .herbst-blaetter .blatt { animation: none; }
}

/* ---------- Herbst-Design „Blätterfall" (06.09.2026, Efes Wahl aus 4 Mustern) ---------- */
.hero .schleier { background: linear-gradient(180deg, rgba(40, 22, 10, 0.55) 0%, rgba(120, 60, 20, 0.22) 35%, rgba(90, 40, 15, 0.32) 65%, rgba(30, 18, 10, 0.78) 100%); }
.wert { border-top-color: #e6d6c2; }
footer { border-top: 4px solid var(--herbst-gold); }

/* Sektionen mit Blättern: Laub liegt hinter dem Inhalt */
.werte, .highlights, #kollektion, #ueber-uns, #faq, #kontakt, .cta-band, .abschied { position: relative; overflow: hidden; }
.werte > .container, .highlights > .container, #kollektion > .container, #ueber-uns > .container, #faq > .container, #kontakt > .container, .cta-band > .container, .abschied > .container { position: relative; z-index: 1; }
.herbst-blaetter { z-index: 0; }
.hb-s2 .b1 { --r: -22deg; right: 34%; top: -18px; }      .hb-s2 .b3 { left: 8%; --r: 168deg; }
.hb-s3 .b1 { --f: var(--herbst-orange); right: 40%; }    .hb-s3 .b2 { top: 70%; }   .hb-s3 .b4 { top: 55%; }
.hb-s4 .b1 { --g: 90px; right: 2%; --r: 52deg; }         .hb-s4 .b3 { left: 30%; }
.hb-s5 .b1 { --f: var(--herbst); right: 12%; }           .hb-s5 .b2 { display: none; } .hb-s5 .b3 { left: 60%; --f: var(--herbst-gold); }
.hb-s6 .b1 { right: 46%; --g: 80px; }                    .hb-s6 .b4 { top: 60%; }
.cta-band .herbst-blaetter .blatt { --f: rgba(255, 255, 255, 0.28); }
.cta-band .herbst-blaetter .ader { stroke: rgba(224, 36, 40, 0.5); }
.cta-band .herbst-blaetter .b3 { left: 16%; } .cta-band .herbst-blaetter .b2 { top: 10%; }

/* Laubfall im Hero: 11 Blätter, jedes mit eigener Bahn (--x, --g, --f, --d, --v, --r, --o im Inline-Style) */
.hero .laubfall { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 0; }
.laubfall .blatt { position: absolute; top: -14%; left: var(--x); width: var(--g); height: auto; fill: var(--f); opacity: var(--o, 0.75);
  animation: laub-fallen var(--d) linear infinite; animation-delay: var(--v); filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.25)); will-change: transform; }
.laubfall .stiel { fill: none; stroke: var(--f); stroke-width: 3.5; stroke-linecap: round; }
.laubfall .ader  { fill: none; stroke: rgba(255, 255, 255, 0.4); stroke-width: 1.4; stroke-linecap: round; }
@keyframes laub-fallen {
  0%   { transform: translate(0, 0) rotate(var(--r)); }
  25%  { transform: translate(34px, 30vh) rotate(calc(var(--r) + 70deg)); }
  50%  { transform: translate(-22px, 58vh) rotate(calc(var(--r) + 130deg)); }
  75%  { transform: translate(28px, 86vh) rotate(calc(var(--r) + 190deg)); }
  100% { transform: translate(-6px, 120vh) rotate(calc(var(--r) + 260deg)); }
}
@media (max-width: 600px) { .laubfall .blatt:nth-child(2n) { display: none; } }   /* Handy: halb so viele Blätter */
@media (prefers-reduced-motion: reduce) { .laubfall .blatt { animation: none; opacity: 0; } }
