/* ============================================================
   DL PALETTENHANDEL GMBH – Haupt-Stylesheet
   Design: Warm Amber Forge — Premium Industriehaus Wien
   Schriften: Fraunces (Display) + DM Sans (Body)
   Farben: Tiefes Anthrazit + Amber/Cognac + Cremegold
   ============================================================ */

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

:root {
  /* ── Hintergründe – warmes Anthrazit, fast Schwarz ── */
  --bg:        #0B0906;
  --bg-2:      #110D08;
  --bg-3:      #18120A;
  --bg-card:   #201809;

  /* ── Hauptakzent: Amber / Cognac (frisches Hartholz) ── */
  --blue:      #C87820;
  --blue-dark: #A06015;
  --blue-glow: rgba(200, 120, 32, 0.14);

  /* ── Gold – warm und satt ── */
  --gold:      #E09828;
  --gold-light:#F5BA40;
  --gold-dim:  rgba(224, 152, 40, 0.11);

  /* ── Text – warmes Cremeweiß ── */
  --text:          #F0E6D2;
  --text-primary:  #F0E6D2;
  --text-secondary:#C8A060;
  --text-muted:    #8A6840;
  --text-dim:      #5A4020;

  /* ── Rahmen ── */
  --border:      rgba(200, 120, 32, 0.17);
  --border-gold: rgba(224, 152, 40, 0.26);

  /* ── Statusfarben ── */
  --white: #FFFFFF;
  --red:   #D94848;
  --green: #4EC47A;

  /* ── System ── */
  --radius:     5px;
  --shadow:     0 10px 40px rgba(0, 0, 0, 0.60);
  --transition: 0.3s ease;

  /* ── Font-Variablen ── */
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans:  'DM Sans', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Grain Textur – subtiles Premium-Rauschen ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.80' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 9997;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-dark); border-radius: 3px; }
::selection { background: var(--blue); color: var(--white); }

/* ════════════════════════════════════════
   TYPOGRAFIE
════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
}

.eyebrow {
  font-size: 0.63rem;
  letter-spacing: 0.50em;
  text-transform: uppercase;
  color: var(--blue);
  font-family: var(--font-sans);
  font-weight: 500;
  display: block;
  margin-bottom: 0.9rem;
}

.eyebrow-gold { color: var(--gold); }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 1.2rem;
}

.section-lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 620px;
  text-align: justify;
}

.text-center { text-align: center; }
.text-center .section-lead { margin: 0 auto; }

/* ── GOLD DIVIDER ── */
.divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-bottom: 2rem;
}
.divider-center {
  margin: 0 auto 2rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.divider-blue {
  background: linear-gradient(90deg, var(--blue), transparent);
}

/* ════════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.82rem 2rem;
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(200, 120, 32, 0.36);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(200, 120, 32, 0.48);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--bg);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(3px); }

/* ════════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  background: transparent;
}

#nav.scrolled {
  background: rgba(11, 9, 6, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo img { height: 36px; width: auto; }

.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.nav-logo-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links > li { position: relative; }

.nav-links a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: color var(--transition);
  border-radius: var(--radius);
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-links a svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-links li:hover > a svg { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 220px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  box-shadow: var(--shadow);
  z-index: 100;
}
.nav-links li:hover .nav-dropdown,
.nav-links li:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-radius: 0;
  transition: background var(--transition), color var(--transition);
}
.nav-dropdown a:hover { background: var(--blue-glow); color: var(--text); }

.nav-dropdown a .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.15rem !important;
  border-radius: var(--radius) !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 12px rgba(200, 120, 32, 0.30) !important;
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(200, 120, 32, 0.45) !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg-2);
  z-index: 999;
  padding: 6rem 2rem 3rem;
  overflow-y: auto;
  flex-direction: column;
}
.nav-mobile.open { display: flex; }

.nav-mobile a {
  font-size: 1.05rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 400;
}
.nav-mobile a:hover { color: var(--text); }

.nav-mobile .mobile-section-title {
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0;
  border-bottom: none;
}
.nav-mobile .mobile-cta {
  margin-top: 2rem;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

/* Hero Video */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 5, 2, 0.78) 0%,
    rgba(11, 9, 6, 0.65) 50%,
    rgba(8, 5, 2, 0.80) 100%
  );
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-video { display: none; }
  .hero-video-overlay {
    background: url('../images/dl-palettenhandel-hero-poster.jpg') center/cover no-repeat;
  }
  .hero-video-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 5, 2, 0.76);
  }
}

/* Warmes Ambient-Leuchten hinter dem Inhalt */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 120, 32, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 120, 32, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 2;
}

/* Frame-Rahmen */
#hero::after {
  content: '';
  position: absolute;
  top: 5rem; left: 3rem; right: 3rem; bottom: 3rem;
  border: 1px solid rgba(200, 120, 32, 0.08);
  pointer-events: none;
  z-index: 2;
}

/* Ambientes Amber-Glühen unten links */
.hero-glow {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(200, 120, 32, 0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
  animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.08); }
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 8rem 2rem 5rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-glow);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-h1 .line-blue { color: var(--blue); }

.hero-lead {
  font-size: 1.02rem;
  color: var(--text-muted);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
  text-align: justify;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  display: block;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
  display: block;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s ease 0.5s forwards;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  z-index: 0;
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px; right: -12px;
  width: 70%; height: 50%;
  background: var(--blue-glow);
  border-radius: var(--radius);
  z-index: 0;
}
.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
}

.hero-img-label {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(11, 9, 6, 0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-img-label-text { font-size: 0.78rem; color: var(--text-muted); }
.hero-img-label-text strong { color: var(--text); display: block; font-size: 0.9rem; }
.hero-img-label-badge {
  background: var(--green);
  color: #022A12;
  font-size: 0.63rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-hint {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dim);
  font-size: 0.63rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  z-index: 3;
}
.scroll-hint-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  50%       { transform: scaleY(0.5) translateY(8px); opacity: 0.4; }
}

/* ════════════════════════════════════════
   STATS / TRUST BAR
════════════════════════════════════════ */
#stats {
  padding: 4rem 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-item:last-child { border-right: none; }

.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}
.stat-number span { color: var(--gold); }

.stat-label {
  font-size: 0.73rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-sub {
  font-size: 0.68rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
}

/* ════════════════════════════════════════
   PRODUKTE (Startseite)
════════════════════════════════════════ */
#produkte { background: var(--bg); }

.produkte-header {
  text-align: center;
  margin-bottom: 4rem;
}

.produkte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.produkt-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  position: relative;
}
.produkt-card:hover {
  border-color: rgba(200, 120, 32, 0.50);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
}

/* Amber Linie oben beim Hover */
.produkt-card::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.produkt-card:hover::before { opacity: 1; }

.produkt-img-wrap {
  position: relative;
  background: var(--bg-card);
  overflow: hidden;
}
.produkt-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.55s ease;
}
.produkt-card:hover .produkt-img-wrap img { transform: scale(1.06); }

.produkt-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.60rem;
  font-weight: 600;
  padding: 0.22rem 0.6rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.produkt-badge-gold  { background: var(--gold); color: var(--bg); }
.produkt-badge-green { background: var(--green); color: #022A12; }

.produkt-body { padding: 1.25rem 1.5rem 1.5rem; }

.produkt-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.produkt-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify;
}

.produkt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.produkt-link {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition);
  text-decoration: none;
}

.produkt-card:hover .produkt-link { gap: 0.6rem; }
.produkt-link svg { width: 14px; height: 14px; }

.produkt-tag {
  font-size: 0.63rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
}

/* Sonderpaletten Banner */
.sonder-banner {
  grid-column: 1 / -1;
  background: var(--bg-card);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.sonder-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}
.sonder-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: justify;
}

/* ════════════════════════════════════════
   QUALITÄTEN
════════════════════════════════════════ */
.qualitaet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.qualitaet-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
  cursor: default;
}
.qualitaet-card:hover {
  border-color: rgba(200, 120, 32, 0.38);
  transform: translateY(-3px);
}

.qualitaet-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.q-neu      .qualitaet-dot { background: var(--green); }
.q-neuwertig .qualitaet-dot { background: var(--blue); }
.q-gebraucht .qualitaet-dot { background: var(--gold); }
.q-repariert .qualitaet-dot { background: var(--text-muted); }

.qualitaet-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.qualitaet-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  text-align: justify;
}

/* ════════════════════════════════════════
   DIENSTLEISTUNGEN
════════════════════════════════════════ */
#dienstleistungen { background: var(--bg-2); }

.dl-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}
.service-card:hover {
  border-color: rgba(200, 120, 32, 0.45);
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.5);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  transition: background var(--transition);
}
.service-ankauf::after   { background: var(--blue); }
.service-verkauf::after  { background: var(--gold); }
.service-miete::after    { background: var(--green); }

.service-icon {
  width: 52px; height: 52px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 1.6rem;
}
.service-ankauf  .service-icon { background: rgba(200, 120, 32, 0.12); }
.service-verkauf .service-icon { background: rgba(224, 152, 40, 0.12); }
.service-miete   .service-icon { background: rgba(78, 196, 122, 0.12); }

.service-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.service-steps {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.service-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.step-num {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.service-ankauf  .step-num { background: var(--blue); color: var(--bg); }
.service-verkauf .step-num { background: var(--gold); color: var(--bg); }
.service-miete   .step-num { background: var(--green); color: #022A12; }

.service-cta-link {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
  text-decoration: none;
}

.service-card:hover .service-cta-link { gap: 0.7rem; }
.service-cta-link svg { width: 14px; height: 14px; }

/* ════════════════════════════════════════
   USPs / WARUM DL
════════════════════════════════════════ */
#warum { background: var(--bg); }

.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.usp-item {
  padding: 2rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}
.usp-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.usp-icon { font-size: 1.8rem; margin-bottom: 1rem; display: block; }

.usp-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.usp-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.78;
  text-align: justify;
}

/* ════════════════════════════════════════
   KONTAKT SECTION (Startseite)
════════════════════════════════════════ */
#kontakt { background: var(--bg-2); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.kontakt-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.kontakt-item-icon {
  width: 42px; height: 42px;
  background: var(--blue-glow);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.kontakt-item-label {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.2rem;
}

.kontakt-item-value {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}
.kontakt-item-value a { color: var(--gold); transition: color var(--transition); }
.kontakt-item-value a:hover { color: var(--text); }

.oeffnungszeiten {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.oeffnungszeiten-title {
  font-size: 0.68rem;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.oz-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.oz-row:last-child { border-bottom: none; }
.oz-tag   { color: var(--text-muted); }
.oz-time  { color: var(--text); font-weight: 500; }

.kontakt-map {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.kontakt-map iframe {
  width: 100%; height: 200px; display: block;
  filter: sepia(25%) grayscale(60%) brightness(0.72) contrast(1.1);
}

.kontakt-form-wrap {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
  color: var(--text);
  font-family: var(--font-sans);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-glow);
}
.form-group select option { background: var(--bg-3); }
.form-group textarea { min-height: 110px; resize: vertical; }

.form-note {
  font-size: 0.73rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--green);
  font-size: 0.95rem;
}

/* ════════════════════════════════════════
   SOCIAL SHARING
════════════════════════════════════════ */
.share-section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.share-label {
  font-size: 0.66rem;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
  display: block;
}
.share-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  text-decoration: none;
  border: none;
  font-family: var(--font-sans);
}
.share-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.share-wa   { background: #25D366; color: #fff; }
.share-fb   { background: #1877F2; color: #fff; }
.share-tw   { background: #000; color: #fff; }
.share-li   { background: #0A66C2; color: #fff; }
.share-pin  { background: #E60023; color: #fff; }
.share-mail { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); }
.share-copy { background: var(--bg-card); color: var(--text); border: 1px solid var(--border); cursor: pointer; }
.share-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand a img { height: 28px !important; width: auto !important; }

.footer-logo-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.15rem;
}
.footer-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.85;
  text-align: justify;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social { display: flex; gap: 0.75rem; }
.footer-social-btn {
  width: 36px; height: 36px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
  color: var(--text-muted);
  font-size: 0.85rem;
  text-decoration: none;
}
.footer-social-btn:hover {
  border-color: var(--gold);
  background: var(--blue-glow);
  color: var(--text);
}

.footer-col-title {
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); }
.footer-contact-item a { color: var(--gold); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--text-dim); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--text-muted); }

/* ════════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════════ */
.floating-buttons {
  position: fixed;
  bottom: 2rem; right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 900;
}

.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform var(--transition), box-shadow var(--transition);
  border: none;
  position: relative;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0, 0, 0, 0.45); }
.float-btn svg { width: 22px; height: 22px; }

.float-wa  { background: #25D366; color: #fff; }
.float-tel { background: var(--blue); color: #fff; }

.float-btn-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  font-size: 0.7rem;
  white-space: nowrap;
  color: var(--text-muted);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.float-btn:hover .float-btn-tooltip { opacity: 1; }

/* ════════════════════════════════════════
   PRODUKTDETAIL SEITE
════════════════════════════════════════ */
.page-hero {
  padding: 9rem 0 5rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}
.page-breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb span { color: var(--text-dim); }

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 7rem;
}

.product-gallery-main {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  cursor: zoom-in;
  position: relative;
}
.product-gallery-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  padding: 2rem;
  transition: transform 0.5s ease;
}
.product-gallery-main:hover img { transform: scale(1.05); }

.product-gallery-main .zoom-hint {
  position: absolute;
  bottom: 0.75rem; right: 0.75rem;
  background: rgba(11, 9, 6, 0.78);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  font-size: 0.63rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.gallery-thumbs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.gallery-thumb {
  flex: 1; min-width: 60px; max-width: 80px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.gallery-thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.gallery-thumb.active,
.gallery-thumb:hover { border-color: var(--gold); }

.product-h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.75rem; }

.product-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  text-align: justify;
  line-height: 1.75;
}

.product-specs {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.product-specs-title {
  padding: 0.75rem 1.25rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.spec-row {
  display: flex;
  padding: 0.7rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--text-muted); min-width: 140px; flex-shrink: 0; }
.spec-value { color: var(--text); font-weight: 500; }

.product-cta-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: nowrap;
  width: 100%;
}

.product-cta-group .btn {
  flex: 1;
  justify-content: center;
  text-align: center;
  padding: 0.6rem 0.75rem;
  font-size: 0.78rem;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .product-cta-group { flex-wrap: wrap; }
  .product-cta-group .btn { flex: 1 1 100%; }
}

/* FAQ */
.faq-list { margin-top: 1.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  gap: 1rem;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-sans);
}
.faq-q svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.85;
  text-align: justify;
}
.faq-item.open .faq-a { display: block; }

/* ════════════════════════════════════════
   LIGHTBOX
════════════════════════════════════════ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.7);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--text); font-size: 1.2rem; z-index: 10;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(11, 9, 6, 0.80);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; font-size: 2rem; line-height: 1;
  z-index: 10; transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--blue); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ════════════════════════════════════════
   DIENSTLEISTUNG DETAIL
════════════════════════════════════════ */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.service-customer-block {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
}
.customer-type {
  font-size: 0.63rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
}
.ct-privat   { background: rgba(200, 120, 32, 0.14); color: var(--blue); }
.ct-business { background: rgba(224, 152, 40, 0.14); color: var(--gold); }

.customer-steps { display: flex; flex-direction: column; gap: 1rem; }
.cstep { display: flex; gap: 1rem; align-items: flex-start; }
.cstep-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 0.73rem; font-weight: 700;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.ct-privat-num   { background: var(--blue); color: var(--bg); }
.ct-business-num { background: var(--gold); color: var(--bg); }

.cstep-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; text-align: justify; }
.cstep-text strong { color: var(--text); }

/* ════════════════════════════════════════
   KONTAKT SEITE
════════════════════════════════════════ */
.kontakt-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
}
.map-full {
  width: 100%; height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 2rem;
}
.map-full iframe {
  width: 100%; height: 100%;
  filter: sepia(25%) grayscale(60%) brightness(0.72) contrast(1.1);
}

/* ════════════════════════════════════════
   LEGAL (Impressum / AGB)
════════════════════════════════════════ */
.page-header-legal {
  padding: 130px 0 50px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.page-header-legal h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text);
  margin: 0.5rem 0;
}
.legal-page { max-width: 780px; margin: 2rem auto 0; }
.legal-subtitle { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
.legal-section { margin-bottom: 0.75rem; padding: 0; }
.legal-page h2 {
  font-size: 1.2rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gold);
  margin-top: 1.25rem; margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.legal-page h3 {
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--gold);
  margin-top: 1.25rem; margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.legal-page p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.88;
  margin-bottom: 0.85rem;
  text-align: justify;
}
.legal-page a { color: var(--blue); text-decoration: underline; }
.legal-table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; font-size: 0.9rem; }
.legal-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  vertical-align: top;
}
.legal-table td:first-child { width: 40%; color: var(--text-dim); white-space: nowrap; }
.legal-table td strong { color: var(--text); }
.legal-footer-note {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem; color: var(--text-dim);
}
.legal-footer-note a { color: var(--blue); }
.legal-page ul li {
  font-size: 0.9rem; color: var(--text-muted);
  line-height: 1.88;
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
}
.legal-page ul li::before {
  content: '›';
  position: absolute; left: 0;
  color: var(--gold);
}

/* ════════════════════════════════════════
   INFO / ARTIKEL SEITEN
════════════════════════════════════════ */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 5rem;
}
.article-body { min-width: 0; }
.article-sidebar { position: sticky; top: 90px; }

.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.toc-title {
  font-size: 0.68rem; letter-spacing: 0.33em;
  text-transform: uppercase; color: var(--text-dim);
  margin-bottom: 1rem;
}
.toc ol { list-style: none; padding: 0; counter-reset: toc; }
.toc ol li {
  counter-increment: toc;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}
.toc ol li:last-child { border-bottom: none; }
.toc ol li a {
  color: var(--text-muted); text-decoration: none;
  display: flex; align-items: baseline; gap: 0.5rem;
  transition: color 0.2s;
}
.toc ol li a::before {
  content: counter(toc);
  color: var(--blue);
  font-size: 0.75rem; font-weight: 600;
  min-width: 1.2rem;
}
.toc ol li a:hover { color: var(--text); }

.sidebar-cta {
  background: linear-gradient(135deg, var(--bg-3), var(--bg-card));
  border: 1px solid var(--blue-glow);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.sidebar-cta h3 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; }
.sidebar-cta p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.sidebar-cta .btn { width: 100%; justify-content: center; }
.sidebar-cta .btn + .btn { margin-top: 0.5rem; }

.article-body h2 {
  font-family: var(--font-serif);
  font-size: 1.7rem; color: var(--text);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: 100px;
}
.article-body h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.article-body h3 {
  font-size: 1.15rem; font-weight: 600;
  color: var(--gold);
  margin: 1.75rem 0 0.75rem;
}
.article-body p {
  font-size: 0.95rem; line-height: 1.92;
  color: var(--text-muted);
  margin-bottom: 1rem; text-align: justify;
}
.article-body strong { color: var(--text); }
.article-body a { color: var(--blue); text-decoration: underline; }
.article-body ul, .article-body ol { padding-left: 1.25rem; margin-bottom: 1rem; }
.article-body li {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.85; margin-bottom: 0.3rem;
}

/* Info-Boxen */
.info-box { border-radius: 10px; padding: 1.25rem 1.5rem; margin: 1.5rem 0; font-size: 0.9rem; line-height: 1.72; text-align: justify; }
.info-box-blue  { background: rgba(200, 120, 32, 0.08); border-left: 3px solid var(--blue); color: var(--text-muted); }
.info-box-gold  { background: rgba(224, 152, 40, 0.08); border-left: 3px solid var(--gold); color: var(--text-muted); }
.info-box-green { background: rgba(78, 196, 122, 0.08); border-left: 3px solid var(--green); color: var(--text-muted); }
.info-box strong { color: var(--text); display: block; margin-bottom: 0.3rem; }

/* Datentabelle */
.data-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.data-table th {
  background: var(--bg-3); color: var(--text);
  font-weight: 600; text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border);
}
.data-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted); vertical-align: top;
}
.data-table tr:hover td { background: rgba(255,255,255,0.015); }
.data-table td:first-child { font-weight: 500; color: var(--text); white-space: nowrap; }

/* Qualitätsbalken */
.quality-bar { display: flex; flex-direction: column; gap: 0.75rem; margin: 1.5rem 0; }
.quality-bar-item { display: grid; grid-template-columns: 130px 1fr 60px; align-items: center; gap: 1rem; }
.quality-bar-label { font-size: 0.85rem; color: var(--text); font-weight: 500; }
.quality-bar-track { background: var(--bg-3); border-radius: 100px; height: 8px; overflow: hidden; }
.quality-bar-fill { height: 100%; border-radius: 100px; transition: width 1.5s cubic-bezier(0.4,0,0.2,1); width: 0; }
.quality-bar-fill.animate { width: var(--w); }
.quality-bar-pct { font-size: 0.8rem; color: var(--text-dim); text-align: right; }

/* Holzarten */
.wood-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.wood-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; text-align: center; }
.wood-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.wood-name { font-weight: 600; color: var(--text); font-size: 0.9rem; margin-bottom: 0.25rem; }
.wood-latin { font-size: 0.73rem; color: var(--text-dim); font-style: italic; margin-bottom: 0.5rem; }
.wood-desc { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

/* Schaden-Karten */
.damage-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 1.5rem 0; }
.damage-card { background: var(--bg-card); border: 1px solid var(--border); border-left: 3px solid var(--blue); border-radius: 10px; padding: 1.25rem; }
.damage-card.severe { border-left-color: #ef4444; }
.damage-card.medium { border-left-color: var(--gold); }
.damage-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; }
.damage-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Artikel Tags */
.article-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.article-tag { background: var(--bg-3); border: 1px solid var(--border); color: var(--text-muted); font-size: 0.78rem; padding: 0.25rem 0.75rem; border-radius: 100px; text-decoration: none; }

/* Related Articles */
.related-articles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.related-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 1.25rem; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.related-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.related-card-cat { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.4rem; }
.related-card h4 { font-size: 0.9rem; font-weight: 600; color: var(--text); margin-bottom: 0.4rem; line-height: 1.4; }
.related-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* ════════════════════════════════════════
   ÜBER UNS SECTION
════════════════════════════════════════ */
.ueber-uns-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: center;
}
.ueber-uns-photo-col { display: flex; justify-content: center; }
.ueber-uns-photo {
  width: 160px; height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--border-gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45), 0 0 0 6px var(--blue-glow);
}

/* ════════════════════════════════════════
   PRODUKT ANFRAGE FORMULAR
════════════════════════════════════════ */
.produkt-anfrage-section {
  background: var(--bg-2);
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}
.produkt-anfrage-form {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 640px;
  margin: 0 auto;
}
.produkt-anfrage-form .form-group { margin-bottom: 1rem; }
.produkt-anfrage-form .form-success {
  display: none; text-align: center;
  padding: 1.5rem; color: var(--green); font-size: 0.95rem;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; border-bottom: none; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .toc { display: none; }
}

@media (max-width: 900px) {
  section { padding: 4rem 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; padding: 7rem 2rem 4rem; }
  .hero-visual { order: -1; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .dl-service-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .product-gallery { position: static; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .kontakt-page-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .ueber-uns-grid { grid-template-columns: 1fr; gap: 2rem; }
  .ueber-uns-photo-col { justify-content: flex-start; }
  .ueber-uns-photo { width: 130px; height: 130px; }
}

@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  section { padding: 3.5rem 0; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-inner { padding: 6.5rem 1.25rem 3rem; }
  .hero-actions { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 1.2rem; }
  .hero-stat { display: flex; gap: 1rem; align-items: center; }
  .hero-stat-num { font-size: 1.8rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .sonder-banner { flex-direction: column; }
  #hero::after { display: none; }
  .floating-buttons { bottom: 1.25rem; right: 1.25rem; }
  .share-buttons { gap: 0.5rem; }
  .share-btn span { display: none; }
  .wood-grid { grid-template-columns: 1fr 1fr; }
  .damage-grid { grid-template-columns: 1fr; }
  .related-articles { grid-template-columns: 1fr; }
  .quality-bar-item { grid-template-columns: 100px 1fr 45px; }
  .produkt-anfrage-section { padding: 3rem 0; }
  .produkt-anfrage-form { padding: 1.5rem; }
  #nachhaltigkeit .container > div { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .co2-highlight { padding: 1rem; }
}

/* ════════════════════════════════════════
   MOBILE OPTIMIERUNGEN – PHASE 2
   Optimiert für iPhone, Samsung, iPad
════════════════════════════════════════ */

/* ── iOS: Verhindert Auto-Zoom bei Formularen (kritisch!) ── */
@media (max-width: 768px) {
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px !important;
  }

  /* Tabellen mit horizontalem Scroll */
  .data-table,
  .legal-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    border-radius: var(--radius);
  }

  /* Breitere Touch-Targets für Mobile-Nav Links */
  .nav-mobile a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.9rem 0;
  }

  /* Hero-Video Poster mit neuem Namen */
  .hero-video-overlay {
    background-image: url('../images/dl-palettenhandel-hero-poster.webp');
  }

  /* Floating Buttons – nicht zu nah am Rand */
  .floating-buttons {
    bottom: 1.5rem;
    right: 1.25rem;
  }
  .floating-btn {
    width: 52px;
    height: 52px;
  }

  /* Kontakt Form auf Mobile – voller Padding */
  .kontakt-form-wrap {
    padding: 1.5rem;
  }

  /* Produkt-Anfrage Formular */
  .produkt-anfrage-form {
    border-radius: 0;
    border-left: none;
    border-right: none;
  }

  /* Data-Table Zellen nicht abschneiden */
  .data-table td:first-child,
  .legal-table td:first-child {
    white-space: normal;
    min-width: 120px;
  }
}

/* ── Tablet (iPad 768px – 1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-inner {
    padding: 8rem 2rem 5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .kontakt-page-grid {
    gap: 3rem;
  }
  .produkt-anfrage-form {
    max-width: 100%;
  }
}

/* ── Kleine Smartphones (≤480px: Samsung Galaxy S, iPhone 12 mini) ── */
@media (max-width: 480px) {
  .section-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .hero-h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }
  .hero-lead {
    font-size: 0.92rem;
  }
  .hero-inner {
    padding: 6rem 1.25rem 3rem;
    gap: 2rem;
  }
  .hero-badge {
    font-size: 0.62rem;
    padding: 0.35rem 0.8rem;
  }

  /* Buttons volle Breite auf sehr kleinen Screens */
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* Price Cards – 1 Spalte */
  .price-cards {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  /* Stats-Grid 2-spaltig */
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item {
    padding: 1.25rem 0.75rem;
  }
  .stat-number {
    font-size: 1.8rem;
  }

  /* Produkt-Karten Mindestbreite */
  .produkte-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }
  .produkt-card-img { aspect-ratio: 1; }

  /* Product-Thumbs scrollbar auf Mobile */
  .product-thumbs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.5rem;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }
  .product-thumbs::-webkit-scrollbar { display: none; }
  .product-thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
  }

  /* Service-Karten */
  .service-customer-block {
    padding: 1.5rem;
  }

  /* Liefergebiete */
  .liefergebiete-grid {
    grid-template-columns: 1fr !important;
  }

  /* Footer Kontakt */
  .footer-contact-item {
    font-size: 0.82rem;
  }

  /* Article */
  .article-body h2 {
    font-size: 1.4rem;
  }

  /* Wood Grid → 1 Spalte */
  .wood-grid {
    grid-template-columns: 1fr;
  }

  /* Lightbox Buttons größer */
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ── Sehr kleine Screens (iPhone SE, ≤390px) ── */
@media (max-width: 390px) {
  html { font-size: 15px; }
  .container { padding: 0 1rem; }
  .hero-h1 { font-size: 1.85rem; }
  .hero-inner { padding: 5.5rem 1rem 2.5rem; }
  .section-title { font-size: 1.5rem; }
  .nav-logo-name { font-size: 0.9rem; }
  .btn {
    padding: 0.75rem 1.4rem;
    font-size: 0.82rem;
  }
  .hero-stat-num { font-size: 1.5rem; }
  .produkte-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: 1fr !important; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .kontakt-form-wrap { padding: 1.25rem; }
  .service-customer-block { padding: 1.25rem; }
  .page-header { padding-top: 5rem; }
}
