/* ============================================================
   dmduftzwillinge.de – style.css
   Design: Premium-Parfumguide
   Palette: Aubergine/Pflaume + Amber-Gold auf Porzellan
   Fonts: Systemschriften (DSGVO-freundlich, kein externer Load)
   ============================================================ */

:root {
  --plum: #5c2e4f;
  --plum-deep: #3c1e35;
  --amber: #b08434;
  --amber-soft: #d9b25f;
  --ink: #2a2029;
  --muted: #6f6272;
  --bg: #f8f4f1;
  --mist: #f1e9ee;
  --surface: #ffffff;
  --line: #e5dade;
  --radius: 14px;
  --shadow: 0 4px 18px rgba(60, 30, 53, 0.08);
  --shadow-lg: 0 12px 40px rgba(60, 30, 53, 0.14);
  --font-display: "Didot", "Bodoni MT", "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset & Basics ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 5rem; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

[hidden] { display: none !important; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--plum-deep);
  margin: 0 0 0.6em;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2rem, 5.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { margin: 0 0 1em; }
a { color: var(--plum); }
a:hover { color: var(--amber); }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--plum); color: #fff;
  padding: 0.6rem 1rem; z-index: 200; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container { width: min(1120px, 92%); margin: 0 auto; }
.container-narrow { width: min(800px, 92%); }

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-alt { background: var(--mist); }
.section-lead { max-width: 46rem; color: var(--muted); font-size: 1.1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font: inherit;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
  color: #fff;
  box-shadow: var(--shadow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: #fff; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-ghost {
  background: transparent;
  color: var(--plum);
  border-color: var(--plum);
}
.btn-ghost:hover { background: var(--plum); color: #fff; }
.btn-small { padding: 0.45rem 1.1rem; font-size: 0.9rem; }

/* ---------- Progress bar ---------- */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--amber), var(--plum));
  z-index: 120;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 244, 241, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  width: min(1120px, 92%); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 0;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--plum-deep); text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.logo-mark { width: 26px; height: 34px; flex: none; }
.nav-logo span { color: var(--amber); }
.nav-menu {
  list-style: none; display: flex; gap: 1.4rem;
  margin: 0; padding: 0;
}
.nav-menu a {
  text-decoration: none; color: var(--ink);
  font-size: 0.95rem; font-weight: 500;
}
.nav-menu a:hover { color: var(--plum); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; padding: 0.5rem; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--plum-deep); border-radius: 2px;
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { display: block; padding: 0.9rem 1.4rem; border-top: 1px solid var(--line); }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(176, 132, 52, 0.14), transparent 60%),
    radial-gradient(800px 500px at -10% 110%, rgba(92, 46, 79, 0.10), transparent 60%),
    var(--bg);
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem);
}
.hero-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.4fr 1fr; }
}
.hero-lead { font-size: 1.15rem; color: var(--muted); max-width: 34rem; }

.trust-list {
  list-style: none; padding: 0; margin: 1.2rem 0 1.6rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
}
.trust-list li {
  font-size: 0.88rem; font-weight: 600;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  color: var(--plum-deep);
}
.trust-list li::before { content: "✓ "; color: var(--amber); }

.hero-search {
  display: flex; gap: 0.6rem; flex-wrap: wrap;
  max-width: 34rem;
}
.hero-search input {
  flex: 1 1 220px;
  font: inherit;
  padding: 0.7rem 1.1rem;
  border: 2px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}
.hero-search input:focus { border-color: var(--plum); outline: none; }
.hero-secondary { margin-top: 0.9rem; }

/* CSS-Flakon (Signature-Element) */
.hero-visual { display: flex; justify-content: center; }
.flacon { position: relative; width: 190px; height: 300px; }
.flacon-cap {
  width: 54px; height: 40px; margin: 0 auto;
  background: linear-gradient(180deg, var(--amber-soft), var(--amber));
  border-radius: 8px 8px 4px 4px;
}
.flacon-neck {
  width: 30px; height: 20px; margin: 0 auto;
  background: linear-gradient(180deg, #ddd0d8, #cbb9c6);
}
.flacon-body {
  width: 150px; height: 210px; margin: 0 auto;
  background: linear-gradient(160deg, rgba(92,46,79,0.9), rgba(60,30,53,0.95));
  border-radius: 20px 20px 60px 60px;
  box-shadow: inset 8px 10px 22px rgba(255,255,255,0.22), var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}
.flacon-label {
  font-family: var(--font-display);
  font-size: 2.6rem; color: var(--amber-soft);
  border: 1px solid rgba(217,178,95,0.5);
  padding: 0.4rem 1rem; border-radius: 6px;
}
.scent-ring {
  position: absolute; border: 1.5px solid rgba(176,132,52,0.4);
  border-radius: 50%;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  animation: scent 5s ease-out infinite;
  opacity: 0;
}
.r1 { width: 60px; height: 30px; animation-delay: 0s; }
.r2 { width: 90px; height: 44px; animation-delay: 1.6s; }
.r3 { width: 120px; height: 58px; animation-delay: 3.2s; }
@keyframes scent {
  0% { opacity: 0; transform: translate(-50%, 10px) scale(0.7); }
  30% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(-50%, -46px) scale(1.25); }
}

/* ---------- TOC ---------- */
.toc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  margin-top: -1.5rem;
  position: relative; z-index: 2;
  box-shadow: var(--shadow);
}
.toc-title {
  font-size: 1rem; font-family: var(--font-body);
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 0.6rem;
}
.toc ol {
  margin: 0; padding: 0 0 0 1.2rem;
  columns: 2; column-gap: 2.5rem;
}
.toc li { margin-bottom: 0.35rem; }
.toc a { text-decoration: none; }
.toc a:hover { text-decoration: underline; }
@media (max-width: 640px) { .toc ol { columns: 1; } }

/* ---------- Duftfinder / Quiz ---------- */
.qz { display: grid; gap: 1.2rem; margin-top: 1.6rem; }
.qz-group {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1rem 1.2rem 1.2rem;
  margin: 0;
}
.qz-group legend {
  font-weight: 700; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--plum); padding: 0 0.4rem;
}
.qz-opts { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.qz-opt {
  font: inherit; font-size: 0.95rem; font-weight: 500;
  padding: 0.5rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  transition: all 0.15s ease;
}
.qz-opt:hover { border-color: var(--plum); }
.qz-opt.active {
  background: var(--plum); color: #fff; border-color: var(--plum);
}
.qz-results {
  margin-top: 1.6rem;
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.qz-hint, .qz-more { grid-column: 1 / -1; color: var(--muted); }
.qz-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
}
.qz-card h4 { margin: 0.2rem 0 0.5rem; }

/* ---------- Saison-Chips ---------- */
.season-chips {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin: 1.6rem 0 1rem;
}
.season-chip {
  font: inherit; font-size: 0.92rem; font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  transition: all 0.15s ease;
}
.season-chip:hover { border-color: var(--amber); }
.season-chip.active {
  background: var(--amber); border-color: var(--amber); color: #fff;
}

/* ---------- Filterbar ---------- */
.filterbar {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
  display: grid; gap: 0.9rem;
}
@media (min-width: 900px) {
  .filterbar {
    position: sticky; top: 4.2rem; z-index: 50;
  }
}
.filter-search input {
  width: 100%;
  font: inherit;
  padding: 0.65rem 1.1rem;
  border: 2px solid var(--line);
  border-radius: 999px;
}
.filter-search input:focus { border-color: var(--plum); outline: none; }
.filter-selects {
  display: flex; flex-wrap: wrap; gap: 0.7rem 1.1rem; align-items: end;
}
.filter-selects label {
  display: flex; flex-direction: column; gap: 0.25rem;
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted);
}
.filter-selects select {
  font: inherit; font-size: 0.95rem;
  padding: 0.45rem 0.7rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  min-width: 8.5rem;
}
.filter-favs-label {
  flex-direction: row !important;
  align-items: center; gap: 0.4rem !important;
  text-transform: none !important;
  font-size: 0.95rem !important;
  color: var(--ink) !important;
  cursor: pointer;
}
.dz-count { margin: 1rem 0 0.6rem; font-weight: 600; color: var(--muted); }

/* ---------- Duftzwilling Cards ---------- */
.dz-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
}
.dz-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem 1.3rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.dz-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dz-card-top {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.7rem;
}
.chip {
  font-size: 0.74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.2rem 0.7rem; border-radius: 999px;
}
.chip-damen { background: #f6e3ef; color: #8c3b70; }
.chip-herren { background: #e2e9f2; color: #2f4a6b; }
.chip-unisex { background: #eee8da; color: #7a6224; }

.fav-btn {
  background: none; border: 0; cursor: pointer;
  color: #cbb9c6; padding: 0.25rem;
  transition: color 0.15s ease, transform 0.15s ease;
}
.fav-btn:hover { color: var(--plum); transform: scale(1.12); }
.fav-btn.active { color: #c2452d; }

.dz-orig { font-size: 0.9rem; color: var(--muted); margin-bottom: 0.15rem; }
.dz-orig .lbl {
  display: block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--amber);
}
.dz-orig .brand { color: var(--muted); }
.dz-alt { margin: 0.1rem 0 0.15rem; font-size: 1.3rem; }
.dz-altbrand { font-size: 0.88rem; color: var(--muted); margin-bottom: 0.6rem; }

/* Signature: "Duftspur" – Ähnlichkeit als verklingende Duftpunkte */
.dz-sim { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.4rem; }
.duftspur { display: inline-flex; gap: 4px; align-items: center; }
.duftspur i {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--line);
}
.duftspur i.on { background: linear-gradient(135deg, var(--amber-soft), var(--amber)); }
.duftspur i:nth-child(2) { width: 10px; height: 10px; }
.duftspur i:nth-child(3) { width: 9px; height: 9px; }
.duftspur i:nth-child(4) { width: 8px; height: 8px; }
.sim-label { font-size: 0.85rem; font-weight: 600; color: var(--plum-deep); }

.dz-price { font-weight: 700; color: var(--plum); margin-bottom: 0.7rem; }

.dz-more {
  font: inherit; font-size: 0.9rem; font-weight: 600;
  background: none; border: 0; padding: 0;
  color: var(--plum); cursor: pointer;
  text-decoration: underline;
  align-self: flex-start;
  margin-top: auto;
}
.dz-more:hover { color: var(--amber); }
.dz-details {
  margin-top: 0.8rem; padding-top: 0.8rem;
  border-top: 1px dashed var(--line);
  font-size: 0.93rem;
}
.dz-details p { margin-bottom: 0.5rem; }
.dz-source { font-size: 0.8rem; color: var(--muted); }
.cmp-label {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: 600; cursor: pointer;
}

.loadmore-wrap { text-align: center; margin-top: 1.8rem; }

.empty-state {
  grid-column: 1 / -1;
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

/* ---------- Top Empfehlungen ---------- */
.top-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  margin-top: 1.6rem;
}
.top-card {
  position: relative;
  background: linear-gradient(160deg, var(--surface) 60%, var(--mist));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.top-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--plum));
}
.top-orig { font-size: 0.85rem; color: var(--muted); margin-bottom: 0.3rem; }
.top-card h3 { margin-bottom: 0.4rem; }
.top-card p { font-size: 0.95rem; }
.top-price {
  display: inline-block;
  font-weight: 700; color: var(--plum);
  background: var(--mist);
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  font-size: 0.9rem;
}

/* ---------- Pair lists & Kategorie-Karten ---------- */
.pair-list {
  padding-left: 1.2rem;
  max-width: 50rem;
}
.pair-list li { margin-bottom: 0.6rem; }

.cat-cards {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 1.6rem;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.3rem;
  box-shadow: var(--shadow);
}
.cat-card h4 { margin-bottom: 0.4rem; }
.cat-card p { font-size: 0.95rem; margin: 0; }

.note-box {
  margin-top: 1.6rem;
  background: var(--surface);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow);
  font-size: 0.97rem;
  max-width: 52rem;
}

/* ---------- Duftnoten-Pyramide ---------- */
.pyramid {
  display: grid; gap: 0.9rem;
  max-width: 620px;
  margin: 2rem auto 0;
}
.pyr-layer {
  border-radius: var(--radius);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow);
  color: #fff;
}
.pyr-layer h3 { color: #fff; margin-bottom: 0.2rem; }
.pyr-layer p { margin: 0; font-size: 0.95rem; opacity: 0.94; }
.pyr-top {
  width: 68%; margin: 0 auto;
  background: linear-gradient(135deg, var(--amber-soft), var(--amber));
}
.pyr-mid {
  width: 84%; margin: 0 auto;
  background: linear-gradient(135deg, #8a4a76, var(--plum));
}
.pyr-base {
  width: 100%;
  background: linear-gradient(135deg, var(--plum), var(--plum-deep));
}
@media (max-width: 560px) {
  .pyr-top, .pyr-mid { width: 100%; }
}

/* ---------- Tipps ---------- */
.tips-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 1.8rem;
}
.tip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow);
}
.tip-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: var(--mist);
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  margin-bottom: 0.6rem;
}
.tip h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.tip p { margin: 0; font-size: 0.95rem; }

/* ---------- Vergleichstabelle ---------- */
.vs-table-wrap { overflow-x: auto; margin-top: 1.6rem; }
.vs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 560px;
}
.vs-table th, .vs-table td {
  padding: 0.9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.vs-table thead th {
  background: var(--plum-deep);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.vs-table tbody th {
  font-weight: 700; color: var(--plum-deep);
  background: var(--mist);
  width: 11rem;
}
.vs-table tbody tr:last-child th,
.vs-table tbody tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list { margin-top: 1.6rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq-item h3 { margin: 0; }
.faq-q {
  width: 100%;
  font: inherit; font-weight: 600; font-size: 1.05rem;
  font-family: var(--font-body);
  text-align: left;
  background: none; border: 0;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  cursor: pointer;
  color: var(--plum-deep);
  position: relative;
}
.faq-q::after {
  content: "+";
  position: absolute; right: 1.2rem; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; color: var(--amber);
  transition: transform 0.2s ease;
}
.faq-q[aria-expanded="true"]::after { transform: translateY(-50%) rotate(45deg); }
.faq-q:hover { background: var(--mist); }
.faq-a { padding: 0 1.3rem 1.1rem; }
.faq-a p { margin: 0; }

/* ---------- Disclaimer ---------- */
.disclaimer-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow);
}
.disclaimer-box ul { margin: 0; padding-left: 1.2rem; }
.disclaimer-box li { margin-bottom: 0.55rem; font-size: 0.97rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--plum-deep);
  color: #e9dde6;
  padding: 3rem 0 1.5rem;
  margin-top: 0;
}
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: #fff; margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--amber-soft); }
.footer-h {
  font-family: var(--font-body);
  font-size: 0.82rem; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--amber-soft);
  margin-bottom: 0.7rem;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a { color: #e9dde6; text-decoration: none; }
.site-footer a:hover { color: var(--amber-soft); text-decoration: underline; }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.85rem;
  color: #c9b6c4;
}

/* ---------- Vergleichs-Bar & Modal ---------- */
.compare-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--plum-deep);
  color: #fff;
  z-index: 110;
  box-shadow: 0 -6px 24px rgba(60,30,53,0.3);
}
.compare-inner {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  padding: 0.7rem 0;
}
.compare-title { font-weight: 700; color: var(--amber-soft); }
#compare-names { flex: 1; font-size: 0.95rem; min-width: 150px; }
.compare-actions { display: flex; gap: 0.5rem; }
.compare-bar .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.compare-bar .btn-ghost:hover { background: rgba(255,255,255,0.15); color: #fff; }

.modal {
  position: fixed; inset: 0;
  background: rgba(42, 32, 41, 0.6);
  z-index: 130;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-content {
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 760px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  padding: 1.8rem;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; top: 0.8rem; right: 1rem;
  font-size: 1.8rem; line-height: 1;
  background: none; border: 0; cursor: pointer;
  color: var(--muted);
}
.modal-close:hover { color: var(--plum); }
.cmp-table {
  width: 100%; border-collapse: collapse; font-size: 0.95rem;
}
.cmp-table th, .cmp-table td {
  padding: 0.6rem 0.7rem;
  border-bottom: 1px solid var(--line);
  text-align: left; vertical-align: top;
}
.cmp-table thead th {
  font-family: var(--font-display);
  font-size: 1.05rem; color: var(--plum-deep);
}
.cmp-table tbody th {
  font-weight: 700; color: var(--muted);
  width: 8rem; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ---------- Ratgeber-Sektion (Startseite) ---------- */
.ratgeber-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-top: 1.8rem;
}
.ratgeber-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ratgeber-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.ratgeber-card .eyebrow { margin-bottom: 0.35rem; }
.ratgeber-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.ratgeber-card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.9rem; }
.ratgeber-more {
  margin-top: auto;
  font-weight: 700; font-size: 0.92rem;
  color: var(--plum);
}
.ratgeber-card:hover .ratgeber-more { color: var(--amber); }

/* ---------- Artikelseiten ---------- */
.article-hero {
  background:
    radial-gradient(900px 420px at 90% -20%, rgba(176, 132, 52, 0.14), transparent 60%),
    var(--mist);
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.4rem;
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--plum); text-decoration: underline; }
.breadcrumbs span[aria-current] { color: var(--plum-deep); font-weight: 600; }

.article-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin: -0.2rem 0 1rem;
}
.article-teaser {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 0;
}

.article-body {
  padding: clamp(2.2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}
.article-body h2 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  margin-top: 2.2rem;
}
.article-body h2:first-child { margin-top: 0; }
.article-body ul { padding-left: 1.2rem; }
.article-body li { margin-bottom: 0.55rem; }
.article-body a { font-weight: 600; }
.art-note {
  margin-top: 2rem;
  padding: 0.9rem 1.2rem;
  background: var(--mist);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---------- Related Articles ---------- */
.related { padding: clamp(2.5rem, 6vw, 4rem) 0; }
.related-grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  margin-top: 1.4rem;
}
.related-card {
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.related-card h3 { font-size: 1.1rem; margin: 0.25rem 0 0.4rem; }
.related-card p { font-size: 0.92rem; color: var(--muted); margin-bottom: 0.8rem; }
.related-more { margin-top: auto; font-weight: 700; font-size: 0.9rem; color: var(--plum); }
.related-card:hover .related-more { color: var(--amber); }
.related-home { margin-top: 1.8rem; }
