/* ============================================
   BRANDSTIFTER — Heizungsverkleidung
   Design System v1.0
   ============================================ */

/* --- Design Tokens --- */
:root {
  /* Wood Palette */
  --oak-dark: #5C4329;
  --oak-mid: #8B6F47;
  --oak-warm: #C9A876;
  --oak-light: #E8DCC4;
  --cream: #FAF7F2;
  --cream-warm: #F5EFE6;
  --paper: #FDFBF7;

  /* Neutrals */
  --ink: #1A1612;
  --ink-soft: #3A322A;
  --stone: #6B645B;
  --stone-light: #A39B8E;
  --line: #E8E2D5;
  --white: #FFFFFF;

  /* Accent */
  --forest: #2E3B2D;
  --terracotta: #B4624A;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale (8pt) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;
  --s-11: 160px;

  /* Container */
  --container: 1280px;
  --container-narrow: 960px;
  --container-text: 720px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 22, 18, 0.04), 0 1px 3px rgba(26, 22, 18, 0.06);
  --shadow-md: 0 4px 12px rgba(26, 22, 18, 0.08), 0 2px 4px rgba(26, 22, 18, 0.04);
  --shadow-lg: 0 12px 32px rgba(26, 22, 18, 0.12), 0 4px 8px rgba(26, 22, 18, 0.06);
  --shadow-xl: 0 24px 64px rgba(26, 22, 18, 0.18);

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 560ms;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oak-mid);
  display: inline-block;
}

.display {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.display em {
  font-style: italic;
  color: var(--oak-mid);
  font-weight: 300;
}

h1 { font-size: clamp(40px, 5.5vw, 72px); }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(24px, 3vw, 36px); }
h4 { font-size: clamp(20px, 2.2vw, 26px); }

.lead {
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
}

p { color: var(--ink-soft); }

/* --- Layout primitives --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

.container-text {
  width: 100%;
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

section {
  padding: clamp(64px, 10vw, 128px) 0;
}

.section-tight {
  padding: clamp(48px, 7vw, 96px) 0;
}

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.site-footer .brand-logo {
  filter: invert(1) brightness(2);
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oak-warm), var(--oak-mid));
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

/* --- Hero with Video Background (WoodUpp-Style emotional intro) --- */
.hero-video {
  position: relative;
  min-height: 90vh;
  max-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 0;
}
.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,22,18,0.0) 0%, rgba(26,22,18,0.0) 30%, rgba(26,22,18,0.55) 90%, rgba(26,22,18,0.85) 100%);
  z-index: 1;
}
.hero-video__content {
  position: relative;
  z-index: 2;
  width: 100%;
  /* DO NOT use shorthand padding here — it would kill .container's horizontal padding */
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 96px);
}
.hero-video__content .eyebrow {
  color: var(--oak-warm);
  margin-bottom: 16px;
}
.hero-video__content h1 {
  color: var(--paper);
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 900px;
}
.hero-video__content h1 em {
  font-style: italic;
  color: var(--oak-warm);
  font-weight: 300;
}
.hero-video__content p {
  color: rgba(253,251,247,0.92);
  font-size: clamp(17px, 1.5vw, 21px);
  max-width: 620px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero-video__content .hero-cta { margin-top: 32px; }
.hero-video__content .btn-primary {
  background: var(--paper);
  color: var(--ink);
}
.hero-video__content .btn-primary:hover {
  background: var(--oak-warm);
  color: var(--ink);
}
.hero-video__content .btn-ghost {
  color: var(--paper);
}
.hero-video__content .btn-ghost:hover { color: var(--oak-warm); }
.hero-video__meta {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(253,251,247,0.18);
  flex-wrap: wrap;
}
.hero-video__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(253,251,247,0.85);
  font-weight: 500;
}
.hero-video__meta-item svg {
  width: 18px; height: 18px; color: var(--oak-warm); flex-shrink: 0;
}
.hero-video__mute-toggle {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(253,251,247,0.18);
  backdrop-filter: blur(10px);
  color: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  transition: background 200ms;
}
.hero-video__mute-toggle:hover { background: rgba(253,251,247,0.32); }
@media (max-width: 720px) {
  .hero-video { min-height: 70vh; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--oak-mid);
  transition: width var(--dur-base) var(--ease-out);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: flex;
  gap: 2px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--stone);
}

.lang-switch a { padding: 4px 6px; }
.lang-switch a.active { color: var(--ink); }
.lang-switch span { color: var(--stone-light); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: all var(--dur-base) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--oak-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 20px;
}

.btn-ghost:hover { color: var(--oak-mid); }

.btn-large {
  padding: 20px 36px;
  font-size: 16px;
}

.btn .arrow {
  transition: transform var(--dur-base) var(--ease-out);
}

.btn:hover .arrow { transform: translateX(4px); }

/* --- Hero --- */
.hero {
  position: relative;
  padding: clamp(40px, 6vw, 80px) 0 clamp(64px, 8vw, 120px);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-title {
  margin-top: 24px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--oak-mid);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-warm);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--oak-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
}

.hero-floating-card {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(253, 251, 247, 0.96);
  backdrop-filter: blur(20px);
  padding: 16px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 240px;
}

.hero-floating-card .rating {
  display: flex;
  flex-direction: column;
}

.hero-floating-card .stars {
  color: var(--terracotta);
  font-size: 14px;
  letter-spacing: 2px;
}

.hero-floating-card .rating-text {
  font-size: 11px;
  color: var(--stone);
  font-weight: 500;
}

/* --- Trust strip / Logos --- */
.trust-strip {
  background: var(--paper);
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.trust-label {
  font-size: 12px;
  color: var(--stone);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

/* --- Section heading --- */
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 20px; }
.section-head p { font-size: 18px; }

.section-head.left {
  align-items: flex-start;
  text-align: left;
  margin-left: 0;
}

/* --- USP / Feature grid --- */
.usp-section {
  background: var(--paper);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
}

.usp-card {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background var(--dur-base) var(--ease-out);
}

.usp-card:hover { background: var(--cream-warm); }

.usp-card:nth-child(3n) { border-right: none; }
.usp-card:nth-last-child(-n+3) { border-bottom: none; }

.usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  color: var(--oak-dark);
}

.usp-icon svg { width: 24px; height: 24px; }

.usp-card h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.usp-card p {
  font-size: 15px;
  line-height: 1.6;
}

/* --- Product showcase --- */
.product-showcase {
  background: var(--cream);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.showcase-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-warm);
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-feature-list {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.showcase-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  color: var(--ink-soft);
}

.showcase-feature-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oak-mid);
  margin-top: 11px;
  flex-shrink: 0;
}

/* --- Inspiration grid --- */
.inspiration-section {
  background: var(--paper);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.insp-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  background: var(--cream-warm);
  cursor: pointer;
}

.insp-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-out);
}

.insp-card:hover img { transform: scale(1.04); }

.insp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 22, 18, 0.5) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}

.insp-card:hover::after { opacity: 1; }

.insp-card .caption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: var(--paper);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur-base) var(--ease-out);
}

.insp-card:hover .caption {
  opacity: 1;
  transform: translateY(0);
}

.insp-card.span-7 { grid-column: span 7; aspect-ratio: 7/5; }
.insp-card.span-5 { grid-column: span 5; aspect-ratio: 5/5; }
.insp-card.span-4 { grid-column: span 4; aspect-ratio: 4/5; }
.insp-card.span-6 { grid-column: span 6; aspect-ratio: 6/5; }
.insp-card.span-8 { grid-column: span 8; aspect-ratio: 8/5; }
.insp-card.span-3 { grid-column: span 3; aspect-ratio: 3/4; }

/* --- Story / Manufaktur --- */
.story-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
}

.story-section h1, .story-section h2, .story-section h3 {
  color: var(--paper);
}

.story-section .eyebrow { color: var(--oak-warm); }
.story-section p { color: rgba(253, 251, 247, 0.78); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.story-content { max-width: 520px; }

.story-image {
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Transparenter Produkt-Render auf dunklem Story-Panel (z. B. Nachhaltigkeit) */
.story-image--render {
  background: radial-gradient(ellipse 115% 82% at 50% 38%, #2b211a 0%, var(--ink) 78%);
  border: 1px solid rgba(201,168,118,0.18);
}
.story-image--render img {
  object-fit: contain;
  padding: 9% 8%;
  filter: drop-shadow(0 16px 30px rgba(0,0,0,0.42));
}

.story-quote {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.2vw, 32px);
  font-style: italic;
  line-height: 1.4;
  margin: 32px 0;
  padding-left: 24px;
  border-left: 2px solid var(--oak-warm);
  color: var(--paper);
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--paper);
  padding: 36px 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: var(--terracotta);
  letter-spacing: 2px;
  font-size: 14px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.testimonial-author .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--oak-warm), var(--oak-mid));
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
}

.testimonial-author .info {
  display: flex;
  flex-direction: column;
}

.testimonial-author .name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.testimonial-author .meta {
  font-size: 12px;
  color: var(--stone);
}

.testimonial-author .verified {
  margin-left: auto;
  font-size: 11px;
  color: var(--forest);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --- Configurator --- */
.configurator {
  background: var(--paper);
}

.config-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.config-preview {
  position: sticky;
  top: 100px;
  background: var(--cream-warm);
  border-radius: var(--r-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.config-svg-wrap {
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
}

.config-svg {
  width: 100%;
  height: 100%;
}

.config-dims {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--stone);
  font-weight: 500;
}

.config-dims span strong {
  color: var(--ink);
  font-weight: 600;
}

.config-controls {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.config-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.config-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.config-label span {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--oak-dark);
  letter-spacing: -0.01em;
  text-transform: none;
}

.config-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  outline: none;
}

.config-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  background: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  transition: transform var(--dur-fast);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.config-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--oak-dark);
}

.config-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  background: var(--ink);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.config-range {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--stone);
  font-variant-numeric: tabular-nums;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.option-card {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.option-card .opt-sub {
  font-size: 12px;
  color: var(--stone);
  font-weight: 400;
}

.option-card:hover {
  border-color: var(--oak-mid);
  transform: translateY(-1px);
}

.option-card.selected {
  border-color: var(--ink);
  background: var(--cream-warm);
  box-shadow: var(--shadow-sm);
}

.price-summary {
  margin-top: 16px;
  padding: 28px;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-lg);
}

.price-summary .label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253, 251, 247, 0.6);
  margin-bottom: 8px;
}

.price-summary .amount {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-summary .amount .currency {
  font-size: 0.6em;
  color: var(--oak-warm);
  margin-right: 8px;
}

.price-summary .vat {
  font-size: 12px;
  color: rgba(253, 251, 247, 0.55);
  margin-top: 8px;
}

.price-summary .btn {
  margin-top: 24px;
  width: 100%;
  background: var(--oak-warm);
  color: var(--ink);
}

.price-summary .btn:hover {
  background: var(--paper);
}

/* --- Shop / Product cards --- */
.shop-section {
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.product-card {
  background: var(--paper);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card .visual {
  aspect-ratio: 4/3;
  background: var(--cream-warm);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-card .visual svg {
  width: 60%;
  height: auto;
  color: var(--oak-mid);
}

.product-card .visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--oak-light) 100%);
  z-index: 0;
}

.product-card .visual svg { position: relative; z-index: 1; }

.product-card .visual .size-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  z-index: 2;
}

.product-card .body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.product-card h3 {
  font-size: 22px;
  margin: 0;
}

.product-card .dims {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--stone);
  font-variant-numeric: tabular-nums;
}

.product-card .dims span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 8px;
}

.product-card .price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.product-card .price small {
  font-size: 12px;
  color: var(--stone);
  display: block;
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0;
}

/* --- FAQ --- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  gap: 24px;
  letter-spacing: -0.01em;
}

.faq-q .plus {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--dur-base) var(--ease-out);
}

.faq-q .plus::before,
.faq-q .plus::after {
  content: '';
  position: absolute;
  background: var(--ink);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-q .plus::before { width: 14px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 14px; transition: transform var(--dur-base) var(--ease-out); }

.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-in-out);
}

.faq-a-inner {
  padding-bottom: 28px;
  padding-right: 56px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 600px;
}

/* --- CTA Band --- */
.cta-band {
  background: linear-gradient(135deg, var(--oak-dark) 0%, var(--oak-mid) 100%);
  color: var(--paper);
  text-align: center;
}

.cta-band h2,
.cta-band h3 { color: var(--paper); }

.cta-band p { color: rgba(253, 251, 247, 0.85); max-width: 600px; margin: 16px auto 32px; font-size: 18px; }

.cta-band .btn-primary {
  background: var(--paper);
  color: var(--ink);
}

.cta-band .btn-primary:hover {
  background: var(--ink);
  color: var(--paper);
}

/* --- Footer --- */
.site-footer {
  background: var(--ink);
  color: rgba(253, 251, 247, 0.65);
  padding: clamp(64px, 8vw, 96px) 0 32px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .brand {
  color: var(--paper);
  font-size: 24px;
}

.footer-brand p {
  color: rgba(253, 251, 247, 0.6);
  font-size: 14px;
  max-width: 320px;
}

.footer-col h4 {
  color: var(--paper);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(253, 251, 247, 0.6);
  font-size: 14px;
  transition: color var(--dur-fast);
}

.footer-col a:hover { color: var(--oak-warm); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid rgba(253, 251, 247, 0.1);
  font-size: 12px;
  color: rgba(253, 251, 247, 0.5);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom .legal {
  display: flex;
  gap: 24px;
}

/* --- Process steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 32px 24px 32px 0;
  counter-increment: step;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 400;
  color: var(--oak-warm);
  line-height: 1;
  display: block;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 15px;
  line-height: 1.6;
}

/* --- Form --- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--oak-mid);
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.12);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: inherit;
}

/* --- Utility --- */
.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mt-6 { margin-top: 48px; }

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-grid,
  .showcase-grid,
  .story-grid,
  .config-layout {
    grid-template-columns: 1fr;
  }

  .config-preview {
    position: relative;
    top: 0;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usp-card:nth-child(3n) { border-right: 1px solid var(--line); }
  .usp-card:nth-child(2n) { border-right: none; }
  .usp-card:nth-last-child(-n+3) { border-bottom: 1px solid var(--line); }
  .usp-card:nth-last-child(-n+2) { border-bottom: none; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }

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

  .process-grid { grid-template-columns: repeat(2, 1fr); }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .inspiration-grid { grid-template-columns: repeat(6, 1fr); }
  .insp-card.span-7,
  .insp-card.span-8 { grid-column: span 6; aspect-ratio: 8/5; }
  .insp-card.span-5,
  .insp-card.span-6 { grid-column: span 6; aspect-ratio: 6/5; }
  .insp-card.span-4,
  .insp-card.span-3 { grid-column: span 3; aspect-ratio: 3/4; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .nav { padding: 14px 0; }

  .hero { padding: 24px 0 48px; }
  .hero-meta { gap: 16px; }

  .usp-grid { grid-template-columns: 1fr; }
  .usp-card { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .usp-card:last-child { border-bottom: none !important; }

  .product-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .inspiration-grid { grid-template-columns: 1fr; }
  .insp-card { grid-column: span 1 !important; aspect-ratio: 4/5 !important; }
}

/* --- Mobile nav drawer --- */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: none;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}

.mobile-nav.open { display: flex; }

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 24px;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-links a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

/* --- Logo strip details --- */
.logo-strip {
  background: var(--paper);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.55;
}

.logo-strip-inner .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 500;
}

.logo-strip-inner .item {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.02em;
}

/* --- Materials section --- */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.material-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.material-card .swatch {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--oak-warm), var(--oak-mid));
  position: relative;
}

.material-card .swatch::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 14px,
    rgba(0, 0, 0, 0.08) 14px,
    rgba(0, 0, 0, 0.08) 15px
  );
}

.material-card .body { padding: 24px 28px 28px; }
.material-card h3 { font-size: 22px; margin-bottom: 8px; }
.material-card p { font-size: 15px; line-height: 1.55; }

.material-card.natural .swatch { background: linear-gradient(135deg, #D4B690, #A88662); }
.material-card.dunkel .swatch { background: linear-gradient(135deg, #6B4F30, #3F2D1A); }
.material-card.weiss .swatch { background: linear-gradient(135deg, #F5F1E8, #E1D7C0); }

/* --- Anchor links --- */
.anchor-offset {
  scroll-margin-top: 96px;
}

/* --- Article (Magazin) --- */
.article-hero { padding: 64px 0 48px; }
.article-meta { display: flex; gap: 16px; font-size: 13px; color: var(--stone); letter-spacing: 0.04em; flex-wrap: wrap; }
.article-body { padding: 32px 0 96px; }
.article-body h2 { margin-top: 48px; margin-bottom: 16px; font-size: clamp(28px, 3vw, 36px); }
.article-body h3 { margin-top: 32px; margin-bottom: 12px; font-size: 22px; }
.article-body p { font-size: 17px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 16px; }
.article-body ul, .article-body ol { margin: 16px 0 24px 24px; color: var(--ink-soft); }
.article-body li { margin-bottom: 8px; line-height: 1.65; }
.article-body strong { color: var(--ink); }
.article-body table { width: 100%; border-collapse: collapse; margin: 32px 0; background: var(--paper); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); font-size: 14px; }
.article-body th { text-align: left; padding: 14px 16px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); background: var(--cream-warm); border-bottom: 1px solid var(--line); }
.article-body td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--ink-soft); }
.article-body tr:last-child td { border-bottom: none; }
.article-cover { aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; margin: 32px 0; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }
.callout { background: var(--cream-warm); padding: 24px 32px; border-radius: var(--r-md); border-left: 3px solid var(--oak-mid); margin: 32px 0; }
.callout strong { color: var(--oak-dark); }
.inline-cta { background: var(--ink); color: var(--paper); padding: 32px 36px; border-radius: var(--r-lg); margin: 48px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.inline-cta h3 { color: var(--paper); margin: 0; font-size: 24px; }
.inline-cta p { color: rgba(253, 251, 247, 0.7); margin: 4px 0 0; font-size: 14px; }
.inline-cta .btn-primary { background: var(--oak-warm); color: var(--ink); }
.breadcrumb { font-size: 13px; color: var(--stone); margin-bottom: 16px; }
.breadcrumb a { color: var(--stone); }
.breadcrumb a:hover { color: var(--ink); }

/* --- Email-Capture-Popup --- */
#bs-popup {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms var(--ease-out);
}
#bs-popup.bs-popup-open {
  opacity: 1;
  pointer-events: auto;
}
.bs-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 18, 0.55);
  backdrop-filter: blur(4px);
}
.bs-popup-card {
  position: relative;
  background: var(--paper);
  border-radius: var(--r-lg);
  width: min(420px, calc(100vw - 32px));
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.96);
  transition: transform 320ms var(--ease-out);
}
#bs-popup.bs-popup-open .bs-popup-card {
  transform: translateY(0) scale(1);
}
.bs-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(253, 251, 247, 0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  transition: background 200ms;
}
.bs-popup-close:hover { background: var(--cream-warm); }
.bs-popup-visual {
  aspect-ratio: 5/2;
  background: linear-gradient(135deg, var(--oak-dark) 0%, var(--oak-mid) 100%);
  display: grid;
  place-items: center;
}
.bs-popup-body {
  padding: 28px 32px 32px;
}
.bs-popup-body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.bs-popup-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 20px;
}
.bs-popup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bs-popup-form input[type="email"] {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--white);
  font-size: 15px;
  transition: border-color 180ms;
}
.bs-popup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--oak-mid);
  box-shadow: 0 0 0 3px rgba(139, 111, 71, 0.12);
}
.bs-popup-form button {
  padding: 14px 20px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 200ms, transform 200ms;
}
.bs-popup-form button:hover:not(:disabled) {
  background: var(--oak-dark);
  transform: translateY(-1px);
}
.bs-popup-form button:disabled {
  opacity: 0.6;
  cursor: wait;
}
.bs-popup-meta {
  font-size: 12px !important;
  color: var(--stone) !important;
  margin: 14px 0 0 !important;
  text-align: center;
}

/* --- Vorher / Nachher Toggle --- */
.vn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .vn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .vn-grid { grid-template-columns: 1fr; } }
.vn-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.vn-images {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream-warm);
}
.vn-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 400ms var(--ease-out);
}
.vn-img-before { opacity: 1; z-index: 1; }
.vn-img-after { opacity: 0; z-index: 1; }
.vn-card.show-after .vn-img-before { opacity: 0; }
.vn-card.show-after .vn-img-after { opacity: 1; }
.vn-pending-overlay {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(26, 22, 18, 0.85);
  color: var(--paper);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  z-index: 3;
  display: none;
  pointer-events: none;
}
.vn-images.vn-pending .vn-pending-overlay { display: block; }
.vn-toggle {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  padding: 4px;
  z-index: 2;
  gap: 4px;
  box-shadow: var(--shadow-sm);
}
.vn-btn {
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all 200ms;
}
.vn-btn-active {
  background: var(--ink);
  color: var(--paper);
}
.vn-meta {
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vn-meta strong {
  font-size: 14px;
  color: var(--ink);
}
.vn-meta span {
  font-size: 12px;
  color: var(--stone);
}

/* Magazin grid */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1024px) { .article-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .article-grid { grid-template-columns: 1fr; } }
.article-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.article-card .visual { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-warm); }
.article-card .visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease-out); }
.article-card:hover .visual img { transform: scale(1.04); }
.article-card .body { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.article-card .meta { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--oak-mid); font-weight: 500; }
.article-card h3 { font-size: 22px; line-height: 1.2; margin: 0; }
.article-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }
.article-card .read { margin-top: auto; padding-top: 8px; font-size: 14px; font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; }
.article-card .read .arrow { transition: transform var(--dur-base) var(--ease-out); }
.article-card:hover .read .arrow { transform: translateX(4px); }
.article-card.featured { grid-column: span 2; }
.article-card.featured .visual { aspect-ratio: 16/9; }
.article-card.featured h3 { font-size: 32px; }
@media (max-width: 640px) { .article-card.featured { grid-column: span 1; } }

/* ============================================================
   PREMIUM DESIGN UPGRADE v2 (2026)
   Refined icons · Cinematic hero · Sequential fade · Ghost CTA
   ============================================================ */

/* --- Icon refinement: smaller, more elegant strokes --- */
.usp-icon { width: 40px; height: 40px; background: transparent; color: var(--oak-warm); }
.usp-icon svg { width: 22px; height: 22px; stroke-width: 1.4; }

.hero-meta-item svg,
.hero-video__meta-item svg { width: 14px; height: 14px; stroke-width: 1.6; opacity: 0.85; }

.trust-item svg { width: 18px; height: 18px; stroke-width: 1.4; }

.process-step svg,
.feature-list svg,
.story-content svg,
.cta-band svg { width: 18px; height: 18px; stroke-width: 1.5; }

/* (Removed over-aggressive svg:not(...) safety rule — was shrinking
   .product-card visualizations and other illustrative SVGs to 18px.
   Icons now sized explicitly via their parent class rules below.) */

/* --- Cinematic hero: deeper overlay + Ken-Burns slow zoom --- */
.hero-video {
  min-height: 92vh;
  max-height: 880px;
}
.hero-video__media {
  animation: kenBurns 22s ease-in-out infinite alternate;
  transform-origin: center 60%;
}
@keyframes kenBurns {
  0%   { transform: scale(1.00); }
  100% { transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video__media { animation: none; }
}

/* Layered overlay: vignette + warm bottom gradient (Gemma4 spec) */
.hero-video__overlay {
  background:
    radial-gradient(ellipse 120% 90% at 50% 40%, transparent 0%, transparent 35%, rgba(16,12,8,0.35) 75%, rgba(16,12,8,0.55) 100%),
    linear-gradient(to bottom, rgba(16,12,8,0.12) 0%, rgba(16,12,8,0.0) 35%, rgba(16,12,8,0.55) 80%, rgba(16,12,8,0.85) 100%);
}

/* --- Sequential staggered fade-in for hero content (premium reveal) --- */
.hero-video__content > * {
  opacity: 0;
  transform: translateY(20px);
  animation: heroReveal 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-video__content > .eyebrow  { animation-delay: 200ms; }
.hero-video__content > h1        { animation-delay: 450ms; }
.hero-video__content > p         { animation-delay: 750ms; }
.hero-video__content > .hero-cta { animation-delay: 1000ms; }
.hero-video__content > .hero-video__meta,
.hero-video__content > .hero-meta { animation-delay: 1250ms; }
@keyframes heroReveal {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video__content > * { opacity: 1; transform: none; animation: none; }
}

/* --- Refined headline typography (more breathing room) --- */
.hero-video__content h1 {
  font-size: clamp(44px, 6.8vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 920px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-video__content h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--oak-warm);
}
.hero-video__content p {
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 540px;
  font-weight: 400;
  color: rgba(253,251,247,0.88);
  line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}

/* --- Premium CTA: filled-paper primary + elegant ghost with underline-draw --- */
.hero-video__content .btn-primary {
  background: var(--paper);
  color: var(--ink);
  padding: 18px 32px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 4px 30px rgba(0,0,0,0.18);
  transition: transform 320ms cubic-bezier(0.16,1,0.3,1), box-shadow 320ms, background 320ms;
}
.hero-video__content .btn-primary:hover {
  background: var(--oak-warm);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.32);
}

.hero-video__content .btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(253,251,247,0.0);
  padding: 18px 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}
.hero-video__content .btn-ghost::after {
  content: '';
  position: absolute;
  left: 24px; right: 24px; bottom: 14px;
  height: 1px;
  background: rgba(253,251,247,0.6);
  transform: scaleX(0.3);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(0.16,1,0.3,1), background 320ms;
}
.hero-video__content .btn-ghost:hover::after {
  transform: scaleX(1);
  background: var(--oak-warm);
}
.hero-video__content .btn-ghost:hover { color: var(--oak-warm); }

/* --- Hero meta as quiet credibility row (no top border, looser spacing) --- */
.hero-video__meta {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid rgba(253,251,247,0.14);
  gap: 28px;
}
.hero-video__meta-item {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,251,247,0.72);
  font-weight: 500;
}

/* --- Scroll-cue at hero bottom (subtle, classy) --- */
.hero-video__scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(253,251,247,0.6);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: color 320ms;
}
.hero-video__scroll-cue:hover { color: var(--paper); }
.hero-video__scroll-cue::after {
  content: '';
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(253,251,247,0.6), transparent);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; transform-origin: top; }
  50%      { transform: scaleY(1.0); opacity: 1; transform-origin: top; }
}
@media (max-width: 720px) {
  .hero-video__scroll-cue { display: none; }
}

/* --- Mute toggle refinement: smaller, more elegant --- */
.hero-video__mute-toggle {
  width: 38px; height: 38px;
  background: rgba(253,251,247,0.10);
  border: 1px solid rgba(253,251,247,0.18);
  backdrop-filter: blur(14px);
}
.hero-video__mute-toggle svg { width: 14px; height: 14px; }
.hero-video__mute-toggle:hover {
  background: rgba(253,251,247,0.22);
  border-color: rgba(253,251,247,0.32);
}

/* --- USP icons: refine the row look (smaller circle, more whitespace) --- */
.usp-card { padding: 36px 28px; }
.usp-card h3 { font-size: 19px; line-height: 1.3; margin-top: 12px; }

@media (max-width: 720px) {
  .hero-video { min-height: 78vh; }
  .hero-video__content { padding-top: 80px; padding-bottom: 96px; /* horizontal stays from .container */ }
  .hero-video__content h1 { font-size: clamp(36px, 9vw, 56px); }
  .hero-video__meta { gap: 18px 24px; margin-top: 36px; }
}

/* ============================================================
   PAGE-HERO (Premium subpage header — consistent with hero-video)
   Used on configurator, shop, inspiration, manufactory, guide, etc.
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(72px, 9vw, 128px) 0 clamp(40px, 5vw, 72px);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,118,0.10) 0%, transparent 60%),
    linear-gradient(to bottom, var(--paper) 0%, var(--cream-warm) 100%);
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 60px; height: 1px;
  background: var(--oak-warm);
  transform: translateX(-50%);
  opacity: 0.55;
}
.page-hero__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero__inner .eyebrow {
  color: var(--oak-warm);
  margin-bottom: 20px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
}
.page-hero__inner h1.display {
  margin: 0 0 24px;
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.page-hero__inner h1.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--oak-warm);
}
.page-hero__inner .lead {
  margin: 0 auto;
  max-width: 580px;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  font-weight: 400;
}

/* Sequential reveal — same rhythm as hero-video */
.page-hero__inner > * {
  opacity: 0;
  transform: translateY(16px);
  animation: heroReveal 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-hero__inner > .eyebrow { animation-delay: 120ms; }
.page-hero__inner > h1       { animation-delay: 320ms; }
.page-hero__inner > .lead    { animation-delay: 560ms; }
.page-hero__inner > .page-hero__cta { animation-delay: 780ms; }
@media (prefers-reduced-motion: reduce) {
  .page-hero__inner > * { opacity: 1; transform: none; animation: none; }
}

/* Optional CTA row below lead */
.page-hero__cta {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Compact variant (visualizer, danke etc.) */
.page-hero--compact {
  padding: clamp(56px, 6vw, 88px) 0 clamp(32px, 4vw, 56px);
}
.page-hero--compact .page-hero__inner h1.display {
  font-size: clamp(34px, 4.5vw, 58px);
}

/* Magazine variant (slightly darker, more editorial) */
.page-hero--magazine {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,118,0.14) 0%, transparent 65%),
    linear-gradient(to bottom, var(--cream-warm) 0%, var(--paper) 100%);
}

@media (max-width: 720px) {
  .page-hero { padding: 72px 0 32px; }
  .page-hero__inner h1.display { font-size: clamp(32px, 8vw, 44px); }
}

/* --- Article-hero premium upgrade (Magazin) --- */
.article-hero {
  padding: clamp(72px, 9vw, 120px) 0 clamp(36px, 4vw, 56px) !important;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,118,0.10) 0%, transparent 60%),
    linear-gradient(to bottom, var(--cream-warm) 0%, var(--paper) 100%);
}
.article-hero h1.display {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.06;
  letter-spacing: -0.022em;
  font-weight: 300;
  margin: 16px 0 24px;
}
.article-hero h1.display em { color: var(--oak-warm); font-style: italic; font-weight: 300; }
.article-hero .lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 640px;
}
.article-hero .breadcrumb {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}
.article-hero .breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.article-hero .breadcrumb a:hover { color: var(--oak-warm); }
.article-hero .eyebrow {
  color: var(--oak-warm);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.article-hero .article-meta {
  margin-top: 28px;
  font-size: 13px;
  color: var(--stone);
  letter-spacing: 0.04em;
}
.article-hero > .container-text > * {
  opacity: 0;
  transform: translateY(14px);
  animation: heroReveal 720ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.article-hero > .container-text > .breadcrumb  { animation-delay: 100ms; }
.article-hero > .container-text > .eyebrow     { animation-delay: 260ms; }
.article-hero > .container-text > h1           { animation-delay: 420ms; }
.article-hero > .container-text > .lead        { animation-delay: 620ms; }
.article-hero > .container-text > .article-meta{ animation-delay: 820ms; }
@media (prefers-reduced-motion: reduce) {
  .article-hero > .container-text > * { opacity: 1; transform: none; animation: none; }
}

/* --- Thanks-hero premium polish (Stripe success / order confirmed) --- */
.thanks-hero {
  padding: clamp(72px, 9vw, 120px) 0 clamp(40px, 5vw, 64px);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201,168,118,0.14) 0%, transparent 60%),
    linear-gradient(to bottom, var(--cream-warm) 0%, var(--paper) 100%);
  text-align: center;
  position: relative;
}
.thanks-hero::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  width: 60px; height: 1px;
  background: var(--oak-warm);
  transform: translateX(-50%);
  opacity: 0.55;
}
.thanks-hero .container-text { max-width: 640px; margin: 0 auto; }
.thanks-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--oak-warm);
  color: var(--paper);
  display: grid;
  place-items: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 32px rgba(201,168,118,0.32);
}
.thanks-icon svg { width: 28px; height: 28px; }
.thanks-hero h1.display {
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 0 0 20px;
}
.thanks-hero h1.display em { color: var(--oak-warm); font-style: italic; font-weight: 300; }
.thanks-hero .eyebrow {
  color: var(--oak-warm);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 16px;
  display: inline-block;
}
.thanks-hero .lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--ink-soft);
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
}
.thanks-hero > .container-text > * {
  opacity: 0;
  transform: translateY(14px);
  animation: heroReveal 720ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.thanks-hero > .container-text > .thanks-icon { animation-delay: 120ms; }
.thanks-hero > .container-text > .eyebrow     { animation-delay: 320ms; }
.thanks-hero > .container-text > h1            { animation-delay: 480ms; }
.thanks-hero > .container-text > .lead         { animation-delay: 680ms; }
.thanks-hero > .container-text > .order-card   { animation-delay: 880ms; }
@media (prefers-reduced-motion: reduce) {
  .thanks-hero > .container-text > * { opacity: 1; transform: none; animation: none; }
}

/* ============================================================
   HERO BUG FIXES (Padding, Overlay-Readability, Text-Column)
   ============================================================ */

/* Stronger overlay: left-side darkening for text + bottom vignette */
.hero-video__overlay {
  background:
    linear-gradient(to right,
      rgba(16,12,8,0.72) 0%,
      rgba(16,12,8,0.55) 25%,
      rgba(16,12,8,0.28) 50%,
      rgba(16,12,8,0.12) 70%,
      rgba(16,12,8,0.05) 100%),
    linear-gradient(to bottom,
      rgba(16,12,8,0.15) 0%,
      rgba(16,12,8,0.10) 30%,
      rgba(16,12,8,0.45) 80%,
      rgba(16,12,8,0.78) 100%);
}

/* Constrain text column so content doesn't get covered by visual focal points */
.hero-video__content h1 {
  max-width: 760px;
}
.hero-video__content p {
  max-width: 540px;
}
.hero-video__content .hero-cta,
.hero-video__content .hero-video__meta,
.hero-video__content .hero-meta {
  max-width: 760px;
}

/* Eyebrow on hero needs background-tint for readability over bright frames */
.hero-video__content .eyebrow {
  background: rgba(16,12,8,0.18);
  backdrop-filter: blur(2px);
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,118,0.32);
}

/* Mute toggle: ensure it stays visible (raise above scroll-cue) */
.hero-video__mute-toggle { z-index: 4; }
.hero-video__scroll-cue { z-index: 3; }

/* RTL safety for hero-cta button stack on tablet */
@media (max-width: 960px) {
  .hero-video__content h1 { max-width: 100%; }
  .hero-video__content p  { max-width: 100%; }
}

/* ============================================================
   MOBILE & DETAIL BUG FIXES (header logo, eyebrow pill, ghost CTA)
   ============================================================ */

/* Mobile header: keep logo visible, collapse extras into burger */
@media (max-width: 880px) {
  .site-header .brand { flex-shrink: 0; }
  .site-header .nav-cta .lang-switch { display: none; }
  .site-header .nav-cta .btn-primary { display: none; }
  .site-header .nav-cta { gap: 8px; }
}

/* Eyebrow-pill: prevent ugly wrap on narrow viewports — drop pill style on mobile */
@media (max-width: 720px) {
  .hero-video__content .eyebrow {
    background: none;
    border: none;
    padding: 0;
    backdrop-filter: none;
    text-shadow: 0 1px 8px rgba(0,0,0,0.5);
    display: block;
  }
}

/* Ghost-CTA underline: invisible at rest, full reveal on hover */
.hero-video__content .btn-ghost::after {
  transform: scaleX(0) !important;
  opacity: 0.7;
}
.hero-video__content .btn-ghost:hover::after {
  transform: scaleX(1) !important;
  opacity: 1;
}

/* Hero H1: prevent rightward overflow on mobile, allow word-break */
@media (max-width: 720px) {
  .hero-video__content h1 {
    font-size: clamp(34px, 8.5vw, 48px);
    letter-spacing: -0.018em;
    word-spacing: -0.02em;
  }
  .hero-video__content h1 em { display: inline; }
}

/* Lang-switch in mobile nav: surface it inside the menu */
.mobile-nav .mobile-lang {
  margin: 16px 24px 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.mobile-nav .mobile-lang a { color: var(--ink-soft); padding: 4px 8px; }
.mobile-nav .mobile-lang a.active { color: var(--oak-warm); border-bottom: 1px solid var(--oak-warm); }

/* ============================================================
   SOCIAL MEDIA — Footer icons + JSON-LD sameAs
   ============================================================ */
.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  align-items: center;
}
.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream-warm);
  color: var(--oak-dark);
  transition: background 200ms, color 200ms, transform 200ms;
  border: 1px solid var(--line);
}
.social-row a:hover {
  background: var(--oak-warm);
  color: var(--paper);
  transform: translateY(-2px);
}
.social-row svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.6;
}
.site-footer .social-row a {
  background: rgba(253,251,247,0.08);
  border-color: rgba(253,251,247,0.18);
  color: var(--paper);
}
.site-footer .social-row a:hover {
  background: var(--oak-warm);
  color: var(--ink);
  border-color: var(--oak-warm);
}

/* ============================================================
   ANIMATION TIMING TUNE — schneller, weniger Verzögerung
   Vorher: 2150 ms gesamt (Hero erscheint langsam, wirkt broken)
   Nachher: max ~700 ms (alles sichtbar in unter 1 Sek)
   ============================================================ */
.hero-video__content > * { animation-duration: 450ms !important; }
.hero-video__content > .eyebrow            { animation-delay: 40ms  !important; }
.hero-video__content > h1                  { animation-delay: 100ms !important; }
.hero-video__content > p                   { animation-delay: 180ms !important; }
.hero-video__content > .hero-cta           { animation-delay: 260ms !important; }
.hero-video__content > .hero-video__meta,
.hero-video__content > .hero-meta          { animation-delay: 340ms !important; }

.page-hero__inner > * { animation-duration: 400ms !important; }
.page-hero__inner > .eyebrow      { animation-delay: 30ms  !important; }
.page-hero__inner > h1            { animation-delay: 90ms  !important; }
.page-hero__inner > .lead         { animation-delay: 170ms !important; }
.page-hero__inner > .page-hero__cta { animation-delay: 250ms !important; }

.article-hero > .container-text > * { animation-duration: 400ms !important; }
.article-hero > .container-text > .breadcrumb    { animation-delay: 20ms  !important; }
.article-hero > .container-text > .eyebrow       { animation-delay: 80ms  !important; }
.article-hero > .container-text > h1             { animation-delay: 160ms !important; }
.article-hero > .container-text > .lead          { animation-delay: 240ms !important; }
.article-hero > .container-text > .article-meta  { animation-delay: 320ms !important; }

.thanks-hero > .container-text > * { animation-duration: 400ms !important; }
.thanks-hero > .container-text > .thanks-icon { animation-delay: 40ms  !important; }
.thanks-hero > .container-text > .eyebrow     { animation-delay: 120ms !important; }
.thanks-hero > .container-text > h1           { animation-delay: 200ms !important; }
.thanks-hero > .container-text > .lead        { animation-delay: 280ms !important; }
.thanks-hero > .container-text > .order-card  { animation-delay: 360ms !important; }

/* Fallback: wenn JS langsam lädt, NICHT auf transparent stehen bleiben */
@media (prefers-reduced-motion: no-preference) {
  .hero-video__content > *,
  .page-hero__inner > *,
  .article-hero > .container-text > *,
  .thanks-hero > .container-text > * {
    animation-fill-mode: both !important;  /* hält Endzustand vor und nach Animation */
  }
}

/* ============================================================
   PRODUCT-CARD VISUAL — Premium-Upgrade (Wand + Boden + Schatten)
   ============================================================ */
.product-card .visual {
  aspect-ratio: 4/3;
  background:
    /* Bodenkante */
    linear-gradient(to bottom, transparent 78%, rgba(168,152,127,0.18) 78.5%, rgba(168,152,127,0.05) 80%, transparent 80%),
    /* Wand-Verlauf */
    radial-gradient(ellipse 90% 60% at 50% 30%, #F5EFE3 0%, #EADFC8 70%, #DCC9A8 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

/* Bodenschatten unter dem Cover */
.product-card .visual::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 18%;
  width: 70%; height: 8px;
  background: radial-gradient(ellipse, rgba(70,50,30,0.22) 0%, transparent 70%);
  transform: translateX(-50%);
  z-index: 0;
  filter: blur(2px);
}

.product-card .visual::before {
  background: none !important;  /* override old gradient block */
}

.product-card .visual svg {
  width: 78% !important;
  height: auto !important;
  color: #B59169;  /* warm oak tone */
  filter:
    drop-shadow(0 2px 4px rgba(122,93,63,0.16))
    drop-shadow(0 8px 18px rgba(122,93,63,0.22));
  position: relative;
  z-index: 2;
}

/* Make slats more visible with warmer contrast */
.product-card .visual svg g[opacity="0.85"] rect {
  fill: #B89469;
}
.product-card .visual svg g[opacity="0.2"] rect {
  fill: #6E512F;
  opacity: 0.35;
}

/* Size-tag refinement */
.product-card .visual .size-tag {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(184,148,105,0.32);
  color: var(--oak-dark);
  font-weight: 600;
  letter-spacing: 0.08em;
  box-shadow: 0 2px 8px rgba(122,93,63,0.12);
  z-index: 3;
}

/* Dimension label visible in top-left */
.product-card .visual .dim-label {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(0,0,0,0.55);
  color: var(--paper);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  z-index: 3;
  backdrop-filter: blur(4px);
}

/* ============================================================
   PRODUCT-RENDER IMAGE in shop cards (replaces inline SVG)
   ============================================================ */
.product-card .visual .product-render {
  width: 78%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 8px 22px rgba(122,93,63,0.20));
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}
.product-card:hover .visual .product-render {
  transform: scale(1.04);
}

/* ============================================================
   PRODUCT-RENDER on transparent PNG — wall background shows through
   ============================================================ */
.product-card .visual .product-render {
  /* Override earlier 78% sizing — full bleed for transparent cutout */
  width: 88% !important;
  height: 88% !important;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(0 4px 8px rgba(122,93,63,0.18))
    drop-shadow(0 14px 28px rgba(122,93,63,0.22));
  margin-bottom: 0;
}
/* Bring back the floor-contact shadow under the cutout */
.product-card .visual::after {
  width: 60% !important;
  bottom: 14% !important;
  height: 10px !important;
  background: radial-gradient(ellipse, rgba(50,35,18,0.28) 0%, transparent 70%) !important;
  filter: blur(3px) !important;
}

/* ============================================================
   FIX: .showcase-feature-list innerhalb dunkler story-section
   Vorher: --ink-soft (dunkles Grau) auf schwarz → unlesbar
   Nachher: helle Paper-Farbe + oak-warm bullet
   ============================================================ */
.story-section .showcase-feature-list li {
  color: rgba(253, 251, 247, 0.88);
  font-weight: 400;
}
.story-section .showcase-feature-list li::before {
  background: var(--oak-warm);
}
.story-section .lead {
  color: rgba(253, 251, 247, 0.82);
}

/* Helle Variante der Story-Section (z. B. Nachhaltigkeit) — kein dunkler Hintergrund */
.story-section--light { background: var(--cream-warm); color: var(--ink); }
.story-section--light h1,
.story-section--light h2,
.story-section--light h3 { color: var(--ink); }
.story-section--light p,
.story-section--light .lead { color: var(--ink-soft); }
.story-section--light .eyebrow { color: var(--oak-dark); }
.story-section--light .showcase-feature-list li { color: var(--ink-soft); }
.story-section--light .story-image--render {
  background: radial-gradient(ellipse 115% 82% at 50% 38%, #F6F0E4 0%, #EADFC8 66%, #DCC9A8 100%);
  border: 1px solid rgba(168,152,127,0.30);
}
.story-section--light .story-image--render img {
  filter: drop-shadow(0 16px 30px rgba(92,67,41,0.20));
}

/* ============================================================
   CINEMATIC HERO — Liquid Glass + BlurText + Premium Manufaktur
   Replaces the original .hero-video on index.html (DE+EN)
   Pure CSS + vanilla JS — no React/Tailwind dependency
   ============================================================ */

/* @import removed — fonts loaded via <link> in HTML head instead */

.cine-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  background: #0a0807;
  overflow: hidden;
  color: #fff;
  font-family: 'Barlow', 'Inter', system-ui, sans-serif;
}

.cine-hero__video {
  position: absolute;
  left: 50%; top: 0;
  transform: translateX(-50%);
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: top;
  z-index: 0;
  opacity: 1;
  animation: cineKenBurns 28s ease-in-out infinite alternate, cineFadeIn 700ms ease-out 200ms both;
}
@keyframes cineFadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes cineKenBurns {
  0%   { transform: translateX(-50%) scale(1.00); }
  100% { transform: translateX(-50%) scale(1.06); }
}

/* Dark overlay for white text contrast */
.cine-hero__overlay {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(10,8,7,0.55) 0%,
      rgba(10,8,7,0.62) 35%,
      rgba(10,8,7,0.55) 70%,
      rgba(10,8,7,0.42) 100%);
}

.cine-hero__wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

/* Liquid Glass utilities */
.cine-glass {
  background: rgba(255,255,255,0.01);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
}
.cine-glass::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.45) 0%,
    rgba(255,255,255,0.15) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.15) 80%,
    rgba(255,255,255,0.45) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.cine-glass-strong {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  box-shadow: 4px 4px 4px rgba(0,0,0,0.05), inset 0 1px 1px rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
  border-radius: 9999px;
}
.cine-glass-strong::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  background: linear-gradient(180deg,
    rgba(255,255,255,0.5) 0%,
    rgba(255,255,255,0.2) 20%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.2) 80%,
    rgba(255,255,255,0.5) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Navbar inside hero */
.cine-nav {
  position: absolute;
  top: 24px; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
@media (min-width: 1024px) { .cine-nav { padding: 0 64px; } }
.cine-nav__logo {
  width: 48px; height: 48px;
  display: grid; place-items: center;
}
.cine-nav__logo img { width: 32px; height: auto; filter: brightness(0) invert(1); }
.cine-nav__center {
  display: none;
  align-items: center;
  padding: 6px;
  gap: 0;
}
@media (min-width: 768px) { .cine-nav__center { display: flex; } }
.cine-nav__center a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
  white-space: nowrap;
}
.cine-nav__center a:hover { color: #C9A876; }
.cine-nav__cta {
  background: #fff !important;
  color: #0a0807 !important;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 9999px;
  text-decoration: none;
  margin-left: 8px;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  text-shadow: none;
}
.cine-nav__cta:hover { background: #C9A876 !important; color: #0a0807 !important; }

/* Center content */
.cine-hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 16px 0;
}

.cine-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px 4px 4px;
  margin-bottom: 32px;
  opacity: 0;
  animation: cineFadeUp 800ms cubic-bezier(0.16,1,0.3,1) 200ms forwards;
}
.cine-badge__chip {
  background: #fff; color: #000;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 9999px;
  font-family: 'Barlow', sans-serif;
}
.cine-badge__text {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-family: 'Barlow', sans-serif;
}

.cine-headline {
  font-family: 'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  color: #fff;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  max-width: 920px;
  margin: 0;
  text-shadow: 0 4px 32px rgba(0,0,0,0.6), 0 1px 8px rgba(0,0,0,0.4);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 0.1em;
  font-weight: 400;
}
.cine-headline .word {
  display: inline-block;
  margin-right: 0.28em;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(40px);
  animation: cineWord 800ms cubic-bezier(0.16,1,0.3,1) forwards;
}

@keyframes cineWord {
  0%   { opacity: 0; filter: blur(10px); transform: translateY(40px); }
  50%  { opacity: 0.5; filter: blur(5px); transform: translateY(-5px); }
  100% { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.cine-sub {
  margin-top: 16px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  opacity: 0;
  animation: cineFadeUp 800ms cubic-bezier(0.16,1,0.3,1) 800ms forwards;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.cine-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: cineFadeUp 800ms cubic-bezier(0.16,1,0.3,1) 1100ms forwards;
}
.cine-cta-row .cine-glass-strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
}
.cine-cta-row a.ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
}
.cine-cta-row a.ghost:hover { color: #C9A876; }

/* Stats row */
.cine-stats {
  display: flex;
  align-items: stretch;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: cineFadeUp 800ms cubic-bezier(0.16,1,0.3,1) 1300ms forwards;
}
.cine-stat {
  padding: 20px;
  width: 220px;
  border-radius: 1.25rem;
  text-align: left;
}
.cine-stat svg { width: 28px; height: 28px; color: #fff; }
.cine-stat__num {
  margin-top: 12px;
  font-family: 'Instrument Serif', 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 38px;
  letter-spacing: -0.01em;
  line-height: 1;
}
.cine-stat__label {
  margin-top: 8px;
  font-size: 12px;
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: #fff;
}

/* Partners */
.cine-partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
  opacity: 0;
  animation: cineFadeUp 800ms cubic-bezier(0.16,1,0.3,1) 1400ms forwards;
}
.cine-partners__chip {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  font-family: 'Barlow', sans-serif;
}
/* Marken-Leitsatz im Hero (ersetzt die frühere Referenz-Liste) */
.cine-manifesto__line {
  margin: 0;
  font-family: 'Instrument Serif', 'Cormorant Garamond', serif;
  font-style: italic;
  color: #fff;
  font-size: clamp(26px, 4.6vw, 44px);
  line-height: 1.12;
  text-align: center;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.38);
}
.cine-partners__row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) { .cine-partners__row { gap: 48px; } }
.cine-partners__row span {
  font-family: 'Instrument Serif', 'Cormorant Garamond', serif;
  font-style: italic;
  color: #fff;
  font-size: 22px;
  letter-spacing: -0.01em;
  opacity: 0.85;
  white-space: nowrap;
}
@media (min-width: 768px) { .cine-partners__row span { font-size: 26px; } }

@keyframes cineFadeUp {
  from { opacity: 0; transform: translateY(20px); filter: blur(10px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@media (prefers-reduced-motion: reduce) {
  .cine-hero__video { animation: none; }
  .cine-headline .word,
  .cine-badge, .cine-sub, .cine-cta-row, .cine-stats, .cine-partners {
    opacity: 1; transform: none; filter: none; animation: none;
  }
}

@media (max-width: 720px) {
  .cine-stats { flex-direction: column; align-items: center; }
  .cine-partners__row { gap: 16px; }
  .cine-partners__row span { font-size: 18px; }
}

/* Hide static site-header + mobile-nav on cinematic homepage (cine-nav handles it) */
body.home-cinematic > header.site-header,
body.home-cinematic > .mobile-nav { display: none !important; }

/* Region/Markt-Umschalter (DACH € / UK £) */
.market-switch {
  display: flex;
  width: fit-content;
  gap: 4px;
  margin: 20px auto 0;
  padding: 4px;
  background: rgba(168,152,127,0.14);
  border: 1px solid rgba(168,152,127,0.30);
  border-radius: 999px;
}
.market-switch button {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 200ms ease, color 200ms ease;
}
.market-switch button:hover { color: var(--ink); }
.market-switch button.market-active {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 2px 10px rgba(26,22,18,0.18);
}
@media (max-width: 560px) {
  .market-switch { flex-direction: column; width: 100%; max-width: 320px; border-radius: 18px; }
  .market-switch button { width: 100%; border-radius: 14px; }
}

/* "Das Produkt" — transparenter Eichen-Render auf warmem Studio-Hintergrund (kein Weiß) */
.product-showcase .showcase-image {
  background:
    linear-gradient(to bottom, transparent 74%, rgba(168,152,127,0.18) 74.5%, rgba(168,152,127,0.05) 78%, transparent 78%),
    radial-gradient(ellipse 105% 72% at 50% 34%, #F6F0E4 0%, #EADFC8 66%, #DCC9A8 100%);
}
.product-showcase .showcase-image img {
  object-fit: contain;
  padding: 7% 6%;
  filter: drop-shadow(0 18px 34px rgba(92,67,41,0.22));
}

/* ============ Direkt-Bestellen-Section (Homepage) ============ */
/* Vier Bestseller-Größen in einer Reihe (Desktop), 2×2 (Tablet), 1-spaltig (Mobil) */
#bestellen .product-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1100px) { #bestellen .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { #bestellen .product-grid { grid-template-columns: 1fr; } }

/* Bestseller-Badge — hebt die meistbestellte Größe hervor */
.product-card .visual .size-tag-featured {
  width: auto;
  min-width: 0;
  height: auto;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--oak-dark);
  border: 1px solid var(--oak-dark);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(92,67,41,0.32);
}

/* Trust-Row unter den Karten */
.order-trust {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
}
.order-trust li {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* CTA-Reihe (sekundäre Buttons) */
.order-cta-row {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

@media (max-width: 720px) {
  .order-trust { gap: 10px 18px; }
  .order-trust li { font-size: 13px; }
  .order-cta-row { flex-direction: column; }
  .order-cta-row .btn { width: 100%; max-width: 340px; text-align: center; justify-content: center; }
}
