/*
Theme Name: SolarSelbstversorger
Theme URI: https://solarselbstversorger.de
Author: SolarSelbstversorger
Description: Tech-editoriales Theme für solarselbstversorger.de — dunkel, präzise, mit Scroll-Animationen.
Version: 1.0
License: GNU General Public License v2
Text Domain: solar
*/

/* ══ RESET & BASE ═════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:     #0a0a08;
  --paper:   #f7f6f2;
  --paper2:  #efede7;
  --solar:   #e8a020;
  --solar2:  #f5c050;
  --night:   #0d1117;
  --night2:  #161b24;
  --night3:  #1e2530;
  --blue:    #1a3a5c;
  --muted:   #6b6860;
  --border:  #dddad2;
  --white:   #ffffff;
  --font-head: 'Syne', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius:  4px;
}

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

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

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

/* ══ SCROLL REVEAL ════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s 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 ═══════════════════════════════════════ */
#site-header {
  background: var(--night);
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 58px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-logo {
  font-family: var(--font-head);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-right: 2.5rem;
}

.logo-sun {
  width: 22px; height: 22px;
  background: var(--solar);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.main-nav { display: flex; align-items: center; flex: 1; }

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav ul li a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 6px 14px;
  transition: color 0.15s;
  display: block;
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item > a,
.main-nav ul li.current_page_item > a {
  color: var(--solar);
}

.header-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.btn-cta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--solar);
  color: var(--night);
  padding: 8px 18px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.15s;
  border-radius: var(--radius);
}
.btn-cta:hover { background: var(--solar2); color: var(--night); }

/* ══ NEWS TICKER ══════════════════════════════════════ */
.news-ticker {
  background: var(--solar);
  overflow: hidden;
  padding: 7px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 30s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--night);
  padding: 0 2rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ticker-item::after {
  content: '·';
  color: rgba(0,0,0,0.3);
}

/* ══ HERO ═════════════════════════════════════════════ */
.hero {
  background: var(--night);
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: 540px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  right: 420px;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.06);
}

.hero-left {
  padding: 4.5rem 3rem 4.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solar);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--solar);
}

.hero-title {
  font-family: var(--font-head);
  font-size: 4.5rem;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title em { color: var(--solar); font-style: normal; }

.hero-sub {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-primary {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: var(--solar);
  color: var(--night);
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.15s;
  display: inline-block;
  border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--solar2); color: var(--night); }

.btn-ghost {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,0.55);
  padding: 12px 24px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: all 0.15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--solar); color: var(--solar); }

.hero-right {
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1px;
  background: var(--night2);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.04);
  flex: 1;
}

.stat-card {
  background: var(--night2);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-card.full { grid-column: 1 / -1; }

.stat-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  letter-spacing: -0.025em;
  color: var(--solar);
  line-height: 1;
}
.stat-card.full .stat-num { font-size: 3.2rem; }

.stat-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
}

/* ══ SECTION HEADER ═══════════════════════════════════ */
.section-header { margin-bottom: 2rem; }

.section-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-title {
  font-family: var(--font-head);
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}

.section-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--solar);
  text-decoration: none;
  border-bottom: 1px solid var(--solar);
  padding-bottom: 1px;
  margin-left: auto;
  display: block;
  width: fit-content;
  margin-top: 0.5rem;
}
.section-link:hover { opacity: 0.7; }

/* ══ BLOG GRID — STARTSEITE ═══════════════════════════ */
.posts-section { padding: 4rem 0; }

.posts-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.post-card {
  background: var(--paper);
  transition: background 0.15s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.post-card:hover { background: var(--white); }
.post-card.featured { grid-row: 1 / 3; }

.post-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--night2);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.post-card.featured .post-thumb { aspect-ratio: 3 / 4; }

.post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.post-card:hover .post-thumb img { transform: scale(1.03); }

.post-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--night) 0%, var(--night2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  opacity: 0.3;
}
.post-card.featured .post-thumb-placeholder { font-size: 5rem; }

.post-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  background: var(--solar);
  color: var(--night);
  font-weight: 500;
}

.post-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.post-title {
  font-family: var(--font-head);
  font-size: 1rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
}
.post-card.featured .post-title { font-size: 1.5rem; }
.post-card:hover .post-title { text-decoration: underline; text-decoration-thickness: 1px; }

.post-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.post-card.featured .post-excerpt { -webkit-line-clamp: 3; }

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

.post-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  display: flex;
  gap: 8px;
}

.post-read-more {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--solar);
  text-decoration: none;
  border-bottom: 1px solid var(--solar);
  padding-bottom: 1px;
}

/* ══ RECHNER BAND ═════════════════════════════════════ */
.rechner-band {
  background: var(--night);
  padding: 5rem 0;
}

.rechner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.rechner-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solar);
  margin-bottom: 1rem;
}

.rechner-title {
  font-family: var(--font-head);
  font-size: 2.8rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1rem;
}

.rechner-sub {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.rechner-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.rechner-tool {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: all 0.12s;
  text-decoration: none;
  display: block;
}
.rechner-tool:hover { border-color: var(--solar); color: var(--solar); }
.rechner-tool.full { grid-column: 1 / -1; }

/* ══ SHOPS SECTION ════════════════════════════════════ */
.shops-section { padding: 4rem 0; }

.shops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.shop-card {
  background: var(--paper);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: background 0.15s;
  cursor: pointer;
}
.shop-card:hover { background: var(--white); }

.shop-logo {
  height: 36px;
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}
.shop-logo img { max-height: 36px; width: auto; }

.shop-name {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.shop-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 1.25rem;
}

.shop-link {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--solar);
  text-decoration: none;
  border-bottom: 1px solid var(--solar);
  padding-bottom: 1px;
  display: inline-block;
  width: fit-content;
  transition: opacity 0.12s;
}
.shop-link:hover { opacity: 0.7; }

/* ══ BLOG / ARCHIVE PAGE ══════════════════════════════ */
.archive-header {
  background: var(--night);
  padding: 4rem 0 3rem;
}

.archive-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--solar);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.archive-eyebrow::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--solar);
}

.archive-title {
  font-family: var(--font-head);
  font-size: 3.5rem;
  letter-spacing: -0.02em;
  line-height: 0.95;
  color: var(--white);
}

.archive-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.archive-posts { padding: 3rem 2.5rem 3rem 0; border-right: 1px solid var(--border); }

.archive-post {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s;
  background: transparent;
}
.archive-post:hover { background: var(--paper2); }

.archive-post-thumb {
  aspect-ratio: 16 / 10;
  background: var(--night2);
  overflow: hidden;
  flex-shrink: 0;
}
.archive-post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.archive-post:hover .archive-post-thumb img { transform: scale(1.04); }

.archive-post-body { padding: 1.5rem; display: flex; flex-direction: column; }

.archive-post-cat {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--solar);
  margin-bottom: 8px;
}

.archive-post-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 8px;
}

.archive-post-excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.archive-post-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
  display: flex;
  gap: 10px;
}

/* Archive Sidebar */
.archive-sidebar { padding: 3rem 0 3rem 2rem; }

.sidebar-widget { margin-bottom: 2rem; }

.sidebar-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--ink);
  margin-bottom: 1rem;
}

.sidebar-cats { list-style: none; }
.sidebar-cats li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.12s;
}
.sidebar-cats li:last-child { border-bottom: none; }
.sidebar-cats li:hover { color: var(--solar); }
.sidebar-cats li a { text-decoration: none; color: inherit; flex: 1; }
.sidebar-cats .count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
}

/* ══ SINGLE POST ══════════════════════════════════════ */
.single-header {
  background: var(--night);
  padding: 4rem 0 3rem;
}

.single-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 0;
}

.single-content { padding: 3rem 3rem 3rem 0; border-right: 1px solid var(--border); }

.single-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 12px;
  margin-bottom: 1rem;
}
.single-eyebrow a { color: var(--solar); text-decoration: none; }

.single-title {
  font-family: var(--font-head);
  font-size: 3rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 0;
}

.single-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--ink);
}

.single-body h2 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 2.5rem 0 1rem;
}

.single-body h3 {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 2rem 0 0.75rem;
}

.single-body p { margin-bottom: 1.25rem; }

.single-body a { color: var(--solar); text-decoration: underline; }

.single-body ul, .single-body ol { margin: 0 0 1.25rem 1.5rem; }
.single-body li { margin-bottom: 0.4rem; }

.single-body blockquote {
  border-left: 3px solid var(--solar);
  padding: 0.75rem 0 0.75rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--muted);
  font-size: 1.1rem;
}

.single-body img {
  width: 100%;
  margin: 2rem 0;
}

/* Infobox */
.single-body .infobox {
  background: var(--night);
  border-left: 3px solid var(--solar);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.65;
}

.single-sidebar { padding: 3rem 0 3rem 2rem; }

/* ══ PAGINATION ═══════════════════════════════════════ */
.pagination {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 4px;
  align-items: center;
}

.page-numbers {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 12px;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  transition: all 0.12s;
  display: inline-block;
}
.page-numbers:hover, .page-numbers.current {
  border-color: var(--solar);
  color: var(--solar);
}
.page-numbers.current { background: var(--solar); color: var(--night); border-color: var(--solar); }

/* ══ SOLAR RECHNER PAGE ═══════════════════════════════ */
.rechner-page-header {
  background: var(--night);
  padding: 4rem 0 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.rechner-tabs {
  display: flex;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}

.rechner-tab {
  flex: 1;
  padding: 0.875rem 1rem;
  background: var(--paper2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-align: center;
  cursor: pointer;
  color: var(--muted);
  border: none;
  transition: all 0.15s;
}
.rechner-tab:hover { background: var(--paper); color: var(--ink); }
.rechner-tab.active { background: var(--night); color: var(--solar); }

.rechner-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem;
}

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-input {
  padding: 10px 12px;
  border: 1px solid var(--border);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.12s;
}
.form-input:focus { border-color: var(--solar); }

.rechner-results {
  background: var(--night);
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: rgba(255,255,255,0.04);
  margin-top: 1rem;
}

.result-card {
  background: var(--night2);
  padding: 1.25rem;
}

.result-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  color: var(--solar);
  display: block;
  margin-bottom: 4px;
}

.result-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ══ FOOTER ═══════════════════════════════════════════ */
#site-footer {
  background: var(--night);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand {}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-affiliate {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.2);
  line-height: 1.6;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1rem;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.12s;
}
.footer-links a:hover { color: var(--solar); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.2);
}

/* ══ BREADCRUMB ═══════════════════════════════════════ */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 0.875rem 0 0;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.12s; }
.breadcrumb a:hover { color: var(--solar); }
.breadcrumb span { color: rgba(255,255,255,0.15); }

/* ══ RESPONSIVE ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-title { font-size: 3.5rem; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .post-card.featured { grid-row: auto; grid-column: 1 / -1; }
  .shops-grid { grid-template-columns: 1fr 1fr; }
  .rechner-inner { grid-template-columns: 1fr; gap: 3rem; }
  .archive-layout { grid-template-columns: 1fr; }
  .archive-sidebar { padding: 0 0 2rem; border-top: 1px solid var(--border); }
  .single-layout { grid-template-columns: 1fr; }
  .single-sidebar { padding: 2rem 0 0; border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .hero { min-height: auto; }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-title { font-size: 2.8rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .shops-grid { grid-template-columns: 1fr; }
  .archive-post { grid-template-columns: 1fr; }
  .archive-post-thumb { aspect-ratio: 16/9; }
  .form-row { grid-template-columns: 1fr; }
  .rechner-results { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .single-title { font-size: 2.2rem; }
  .single-content { padding: 2rem 0; }
  .container { padding: 0 1.25rem; }
}
