/* ═══════════════════════════════════════════
   pfannenvergleich.de — Design System
   ═══════════════════════════════════════════ */

@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/libre-baskerville-latin-ext.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/libre-baskerville-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
                 U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/libre-baskerville-700-latin-ext.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Libre Baskerville';
  src: url('../fonts/libre-baskerville-700-latin.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
                 U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
                 U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-600-latin-ext.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/dm-sans-600-latin.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
                 U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191,
                 U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  /* Surface — cool blue-gray */
  --bg:          #F7FAFC;
  --bg-warm:     #EAF2F9;
  --bg-dark:     #1A2B3D;
  --bg-dark-mid: #243648;

  /* Text */
  --ink:       #1A2B3D;
  --body:      #3D4F61;
  --muted:     #7A8B9C;
  --light:     #A8B6C4;

  /* Accent — brand blue #4E95D9 + navy secondary */
  --terra:       #4E95D9;
  --terra-dark:  #3478B8;
  --terra-light: #E8F2FB;
  --olive:       #2B5A8A;
  --olive-dark:  #1E4469;
  --olive-light: #E6EEF7;

  /* Structural */
  --rule:      #D5E0EB;
  --rule-dark: #314557;
  --white:     #FFFFFF;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 10px;
  --r-xl: 999px;

  /* Shadows */
  --sh-xs:   none;
  --sh-sm:   none;
  --sh-md:   0 2px 12px rgba(26, 43, 61, 0.07);
  --sh-lg:   0 4px 20px rgba(26, 43, 61, 0.08);
  --sh-glow: 0 0 0 3px rgba(78, 149, 217, 0.25);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur: 0.3s;

  /* Typography */
  --serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --sans:  'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI',
           Helvetica, Arial, sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  :root { --dur: 0s; }
}

/* ── Base ── */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
@media (max-width: 640px) {
  html { scroll-padding-top: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  background: var(--terra-light);
  color: var(--terra-dark);
}

/* ── Typography ── */

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 700;
  text-wrap: balance;
}

h1 {
  font-size: clamp(34px, 5.4vw, 52px);
  line-height: 1.14;
  letter-spacing: -0.012em;
}

h2 {
  font-size: clamp(25px, 3.4vw, 33px);
  line-height: 1.22;
  letter-spacing: -0.008em;
}

h3 {
  font-size: clamp(19px, 2.3vw, 22px);
  line-height: 1.32;
  letter-spacing: 0;
}

.label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
}

.subtitle {
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.65;
  color: var(--body);
  max-width: 580px;
}

a {
  color: var(--terra);
  text-decoration-line: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  transition: text-decoration-color var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out);
}
a:hover {
  text-decoration-color: var(--terra);
  color: var(--terra-dark);
}
a:focus-visible {
  outline: none;
  box-shadow: var(--sh-glow);
  border-radius: 3px;
}

strong, b { color: var(--ink); font-weight: 600; }

blockquote {
  position: relative;
  padding: 4px 0 4px 20px;
  margin: 28px 0;
  background: none;
  border-left: 2px solid var(--terra);
  border-radius: 0;
  font-family: var(--serif);
  font-style: normal;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.55;
}
blockquote::before { content: none; }

ol, ul { padding-left: 24px; }
li { margin-top: 10px; }
li::marker { color: var(--terra); }

hr {
  border: none;
  height: 1px;
  background: var(--rule);
  margin: 64px 0;
}

/* ── LAYOUT ── */

.wrap {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .section { padding: 56px 0; }
}

.section-warm { background: var(--bg-warm); }
.section-dark {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.72);
}
.section-dark h2,
.section-dark h3,
.section-dark strong { color: #fff; }
.section-dark .label { color: var(--terra); }
.section-dark a { color: var(--terra); }

/* ── HEADER ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  transition: box-shadow var(--dur) var(--ease-out);
}
.site-header.scrolled {
  box-shadow: var(--sh-sm);
}
.header-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--dur);
  line-height: 0;
}
.wordmark img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(280px, 52vw);
}
.wordmark:hover { opacity: 0.75; text-decoration: none; }

.site-nav { display: flex; gap: 8px; }
.site-nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--r-xl);
  transition: color var(--dur), background var(--dur);
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: var(--bg-warm);
}

@media (max-width: 640px) {
  .header-inner { height: 64px; }
  .wordmark img { height: 40px; }
  .site-nav { gap: 0; }
  .site-nav a { font-size: 13px; padding: 6px 6px; }
}

/* ── HERO ── */

.hero {
  position: relative;
  padding: 100px 24px 88px;
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
}
.hero::before { content: none; }
.hero-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.hero .label { margin-bottom: 16px; }
.hero h1 { margin-bottom: 28px; }
.hero .subtitle { margin-bottom: 12px; }

@media (max-width: 767px) {
  .hero { padding: 64px 24px 56px; }
}

/* ── STAT STRIP ── */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  margin-top: 48px;
}
.stat-item {
  background: var(--white);
  padding: 28px 24px;
  text-align: center;
}
.stat-value {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--terra);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-unit {
  font-size: 18px;
  color: var(--muted);
  margin-left: 2px;
}
.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 600;
}

@media (max-width: 500px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-strip:has(> .stat-item:nth-child(3)) {
    grid-template-columns: repeat(3, 1fr);
  }
  .stat-item { padding: 20px 8px; }
  .stat-value { font-size: 26px; }
  .stat-unit { font-size: 14px; }
  .stat-label { font-size: 11px; line-height: 1.35; }
}

/* ── CRITERION CARDS ── */

.criterion-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0 24px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 24px 48px;
  position: relative;
}
.criterion-row::after {
  content: '';
  position: absolute;
  left: calc(24px + 28px);
  top: 56px;
  bottom: 0;
  width: 1px;
  background: var(--rule);
}
.criterion-row:last-child::after { display: none; }

.criterion-num {
  width: 56px;
  height: 56px;
  background: var(--terra);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 22px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.criterion-body h3 { margin-bottom: 4px; }
.criterion-body .data-highlight {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  margin: 12px 0 8px;
  padding: 8px 20px;
  background: var(--terra-light);
  border-radius: var(--r-xl);
}
.criterion-body .data-highlight .val {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--terra);
  line-height: 1;
  letter-spacing: -0.02em;
}
.criterion-body .data-highlight .unit {
  font-size: 15px;
  color: var(--muted);
  font-weight: 600;
}
.criterion-body p { margin-top: 12px; font-size: 16px; line-height: 1.7; }

.criterion-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--terra);
  text-decoration: none;
  padding: 8px 18px;
  border: 1.5px solid var(--rule);
  border-radius: var(--r-xl);
  transition: all var(--dur) var(--ease-out);
}
.criterion-link:hover {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
  text-decoration: none;
}
.criterion-link .arrow { transition: transform var(--dur) var(--ease-spring); }
.criterion-link:hover .arrow { transform: translateX(4px); }

@media (max-width: 640px) {
  .criterion-row { grid-template-columns: 1fr; gap: 16px 0; }
  .criterion-row::after { display: none; }
  .criterion-num { width: 44px; height: 44px; font-size: 18px; }
}

/* ── NAV CARDS (Where to start) ── */

.nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.nav-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--dur) var(--ease-out),
              border-color var(--dur);
}
.nav-card:hover {
  transform: none;
  box-shadow: var(--sh-md);
  border-color: var(--terra);
  text-decoration: none;
}
.nav-card h3 { font-size: 20px; margin: 0; }
.nav-card p { font-size: 15px; color: var(--body); margin: 0; line-height: 1.6; }
.nav-card .card-arrow {
  font-weight: 600;
  font-size: 14px;
  color: var(--terra);
  margin-top: auto;
  padding-top: 4px;
}

/* ── SPEC TABLE ── */

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 1px solid var(--rule);
}
.spec-table thead th {
  background: var(--bg-warm);
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule);
}
.spec-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  font-size: 16px;
  vertical-align: top;
}
.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table td:first-child { font-weight: 600; color: var(--ink); }

@media (max-width: 639px) {
  .spec-table, .spec-table thead, .spec-table tbody,
  .spec-table tr, .spec-table th, .spec-table td { display: block; }
  .spec-table {
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-sm);
    overflow: hidden;
  }
  .spec-table thead { display: none; }
  .spec-table tr {
    background: var(--white);
    border: none;
    border-bottom: 1px solid var(--rule);
    border-radius: 0;
    padding: 16px 18px;
    margin-bottom: 0;
    box-shadow: none;
  }
  .spec-table tbody tr:last-child {
    border-bottom: none;
  }
  .spec-table td {
    padding: 0;
    border: none;
    white-space: normal;
  }
  .spec-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-top: 12px;
  }
  .spec-table td:first-child::before { margin-top: 0; }

  /* 2-Spalten: Kriterium + Antwort, ohne data-label */
  .spec-table td:first-child:nth-last-child(2)::before,
  .spec-table td:last-child:nth-child(2)::before { content: none; }
  .spec-table td:first-child:nth-last-child(2) {
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.45;
  }
  .spec-table td:last-child:nth-child(2) {
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
  }
}

/* ── PRODUCT EXAMPLE ── */

.product-box {
  position: relative;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 40px;
  margin: 56px 0 32px;
  box-shadow: var(--sh-sm);
  overflow: hidden;
}
.product-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--olive);
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--olive-light);
  color: var(--olive-dark);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: var(--r-xl);
}
.product-box h3 {
  font-size: 24px;
  margin-top: 16px;
}
.product-attribution {
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.product-intro { margin-top: 16px; }
.product-specs {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  gap: 8px;
}
.product-specs li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 16px;
  padding: 14px 18px;
  background: var(--bg);
  border-radius: var(--r-sm);
  font-size: 15px;
  line-height: 1.6;
  align-items: start;
}
.product-specs .spec-label {
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.product-specs .spec-value { color: var(--body); }

.product-carousel {
  margin-top: 32px;
}
.product-carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3.2);
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 2px 8px;
  background: transparent;
}
.product-carousel-track::-webkit-scrollbar { display: none; }
.product-carousel-slide {
  scroll-snap-align: start;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 1;
}
.product-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--white);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.product-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}
.product-carousel-btn {
  appearance: none;
  width: 36px;
  height: 36px;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out);
}
.product-carousel-btn:hover {
  border-color: var(--olive);
  background: var(--olive-light);
}
.product-carousel-btn:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}
.product-carousel-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.product-carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.product-carousel-dot {
  appearance: none;
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--rule);
  cursor: pointer;
  transition: background var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out);
}
.product-carousel-dot.is-active {
  background: var(--olive);
  transform: scale(1.2);
}
.product-carousel-dot:focus-visible {
  outline: 2px solid var(--olive);
  outline-offset: 2px;
}
@media (max-width: 600px) {
  .product-box { padding: 28px 20px; }
  .product-specs li { grid-template-columns: 1fr; gap: 4px; }
  .product-carousel-track {
    grid-auto-columns: calc((100% - 24px) / 2.2);
    gap: 12px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border-radius: var(--r-xl);
  transition: all var(--dur) var(--ease-out);
}
.btn-primary {
  background: var(--olive);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--olive-dark);
  color: var(--white);
  transform: none;
  box-shadow: var(--sh-md);
  text-decoration: none;
}

/* ── NEXT STEP ── */

.next-steps {
  display: grid;
  gap: 16px;
  margin-top: 56px;
}
.next-step-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  text-decoration: none;
  color: inherit;
  transition: all var(--dur) var(--ease-out);
}
.next-step-card:hover {
  border-color: var(--terra);
  box-shadow: none;
  transform: none;
  text-decoration: none;
}
.next-step-card .step-icon {
  width: 44px;
  height: 44px;
  background: var(--terra-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  transition: background var(--dur);
}
.next-step-card:hover .step-icon { background: var(--terra); color: var(--white); }
.next-step-card .step-text strong { display: block; color: var(--ink); font-size: 16px; }
.next-step-card .step-text span { font-size: 14px; color: var(--muted); }

/* ── MATERIAL CARDS ── */

.material-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.material-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: box-shadow var(--dur), border-color var(--dur);
}
.material-card:hover {
  border-color: var(--rule);
  box-shadow: var(--sh-md);
  transform: none;
}
.material-card h3 {
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}
.material-card p { font-size: 15px; line-height: 1.65; }
.material-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: var(--r-xl);
  margin-top: 12px;
}
.tag-positive { background: var(--olive-light); color: var(--olive-dark); }
.tag-neutral  { background: var(--bg-warm); color: var(--muted); }
.tag-caution  { background: #FFF1E6; color: #B86A2A; }

/* ── SOURCE LIST ── */

.source-list {
  padding-top: 32px;
  margin-top: 56px;
  border-top: 1px solid var(--rule);
}
.source-list h2 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0;
}
.source-list ul { list-style: none; padding: 0; margin-top: 12px; font-size: 14px; }
.source-list li { margin-top: 8px; }

.footnote {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--bg-warm);
  border-radius: var(--r-md);
  font-size: 14px;
  font-style: italic;
  color: var(--muted);
}

/* ── FOOTER ── */

.site-footer {
  background: var(--bg-dark);
  margin-top: 0;
}
.site-footer .footer-inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.site-footer .footer-left {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
  transition: opacity var(--dur);
}
.site-footer .footer-left img {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(280px, 52vw);
}
.site-footer .footer-left:hover {
  opacity: 0.8;
  text-decoration: none;
}
@media (max-width: 640px) {
  .site-footer .footer-left img { height: 40px; }
}
.site-footer .footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}
.site-footer .footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--dur);
}
.site-footer .footer-links a:hover { color: #fff; }
.site-footer .footer-note {
  width: 100%;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--rule-dark);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

/* ── Prose Spacing ── */

.prose p { margin-top: 18px; }
.prose p:first-child { margin-top: 0; }
.prose h2 { margin-top: 56px; margin-bottom: 12px; }
.prose h3 { margin-top: 40px; margin-bottom: 8px; }

/* ── DIVIDER ── */

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 64px 0;
  color: var(--light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* ── CHECKLIST (keramikpfanne) ── */

.checklist-row {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.checklist-row:last-child { border-bottom: none; }
.checklist-icon {
  width: 28px;
  height: 28px;
  background: var(--olive-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--olive);
  font-size: 14px;
  margin-top: 2px;
}
.checklist-text strong { display: block; color: var(--ink); font-size: 15px; }
.checklist-text span { font-size: 14px; color: var(--body); }
