:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-soft: #fbfcfe;
  --text: #16181d;
  --text-soft: #656b74;
  --line: #e9edf2;
  --shadow: 0 18px 40px rgba(16, 24, 40, 0.06);
  --shadow-soft: 0 6px 16px rgba(16, 24, 40, 0.05);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  font-family: "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  padding-bottom: 3.2rem;
}

.masthead-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.45rem 1rem 0.7rem;
  display: flex;
  justify-content: center;
  z-index: 20;
}

.masthead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(220, 226, 236, 0.9);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(6px);
}

.masthead-brand {
  display: none;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.top-nav a {
  font-size: 0.78rem;
  color: #6d7686;
  text-decoration: none;
  padding: 0.28rem 0.16rem;
  border-radius: 999px;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  color: #2f3745;
  outline: none;
}

.ambient {
  position: fixed;
  width: 35rem;
  height: 35rem;
  border-radius: 999px;
  filter: blur(40px);
  z-index: -1;
}

.ambient-left {
  left: -16rem;
  top: -10rem;
  background: radial-gradient(circle at 35% 35%, rgba(205, 230, 255, 0.85), rgba(205, 230, 255, 0));
}

.ambient-right {
  right: -14rem;
  bottom: -12rem;
  background: radial-gradient(circle at 50% 50%, rgba(255, 228, 208, 0.86), rgba(255, 228, 208, 0));
}

.shell {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.view {
  display: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.5rem, 2vw, 2.5rem);
}

.view.is-active {
  display: block;
}

.hero {
  text-align: center;
  margin: 0 auto 1.8rem;
  max-width: 720px;
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: var(--text-soft);
}

h1,
h2 {
  margin: 0.55rem 0 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
}

h2 {
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
}

.subtitle,
.detail-header p,
.detail-range,
.disclaimer {
  color: var(--text-soft);
}

.subtitle {
  margin: 0.9rem auto 0;
  max-width: 60ch;
}

.subtitle-soft {
  margin: 0.55rem auto 0;
  max-width: 58ch;
  color: #768091;
  font-size: 0.95rem;
}

.hero-highlights {
  margin-top: 0.95rem;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.hero-highlights span {
  font-size: 0.8rem;
  color: #4e5767;
  background: #f4f7fb;
  border: 1px solid #e3e9f1;
  border-radius: 999px;
  padding: 0.32rem 0.66rem;
}

.hero-gallery {
  margin: 1.2rem auto 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.65rem;
  max-width: 860px;
}

.hero-gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid #e2e8f1;
  box-shadow: 0 10px 22px rgba(20, 28, 40, 0.08);
}

.hero-gallery-single {
  grid-template-columns: 1fr;
}

.hero-gallery-single img {
  height: 260px;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.month-link {
  display: block;
  text-decoration: none;
}

.month-link .month-tile {
  height: 100%;
}

.quick-steps {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0.2rem 0;
}

.quick-steps-title {
  grid-column: 1 / -1;
  margin: 0 0 0.1rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.quick-steps article {
  padding: 0.35rem 0.15rem;
}

.quick-steps h3 {
  margin: 0;
  font-size: 0.9rem;
}

.quick-steps p {
  margin: 0.35rem 0 0;
  font-size: 0.84rem;
  color: #626b7a;
  line-height: 1.4;
}

.month-tile {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface-soft), #ffffff);
  color: var(--text);
  border-radius: var(--radius-md);
  min-height: 6.5rem;
  padding: 0.9rem 1rem;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.month-tile:hover,
.month-tile:focus-visible {
  border-color: #d0d8e3;
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
  outline: none;
}

.month-label {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.month-desc {
  margin: 0.35rem 0 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.detail-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.back-button {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--text);
  border-radius: 999px;
  padding: 0.72rem 1.2rem;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
}

.back-button:hover,
.back-button:focus-visible {
  border-color: #d1d8e2;
  outline: none;
}

.detail-range {
  margin: 0;
  font-size: 0.9rem;
}

.detail-header {
  margin: 1.1rem 0 1.4rem;
}

.detail-header p {
  margin: 0.7rem 0 0;
  max-width: 62ch;
}

.month-nav {
  display: flex;
  gap: 0.65rem;
  margin: 0 0 1rem;
}

.month-nav-button {
  appearance: none;
  border: 1px solid var(--line);
  background: #fff;
  color: #2f3644;
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.84rem;
  cursor: pointer;
}

.month-nav-button:hover,
.month-nav-button:focus-visible {
  border-color: #cfd7e3;
  background: #f9fbff;
  outline: none;
}

.month-nav-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.product-list {
  display: grid;
  gap: 0.95rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: linear-gradient(160deg, var(--surface-soft), #ffffff);
}

.product-top {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 0.9rem;
  align-items: center;
}

.product-media {
  width: 96px;
  height: 96px;
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #f6f8fb;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.product-why {
  margin: 0.6rem 0 0;
  color: #2f3440;
  line-height: 1.42;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.pros,
.cons {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.65rem;
  background: #fff;
}

.label {
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.pros p,
.cons p {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  color: #343a46;
}

.affiliate {
  margin-top: 0.85rem;
}

.affiliate a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: #111318;
  border-radius: 999px;
  padding: 0.58rem 0.98rem;
  font-size: 0.89rem;
}

.affiliate a:hover,
.affiliate a:focus-visible {
  background: #1f2430;
  outline: none;
}

.disclaimer {
  margin: 1rem 0 0;
  font-size: 0.82rem;
  text-align: center;
}

.site-footer {
  padding: 1.1rem 1rem 0.7rem;
  display: flex;
  justify-content: center;
}

.footer-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(220, 226, 236, 0.9);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(6px);
}

.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.01em;
  color: #7b8391;
  text-decoration: none;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: #303743;
  outline: none;
}

.legal-shell {
  width: min(880px, 92vw);
}

.legal-content {
  line-height: 1.55;
}

.legal-content h1 {
  margin-top: 0;
}

.legal-content h2 {
  font-size: 1.15rem;
  margin-top: 1.4rem;
}

.legal-content p,
.legal-content li {
  color: #3a4150;
  font-size: 0.96rem;
}

.legal-content ul {
  padding-left: 1.1rem;
}

.legal-note {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  color: #727b8a;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: #3a4150;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: var(--text);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.contact-submit {
  justify-self: start;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #111318;
  color: #fff;
  padding: 0.58rem 1rem;
  cursor: pointer;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #1f2430;
  outline: none;
}

.back-link {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.86rem;
  text-decoration: none;
  color: #677082;
}

.back-link:hover,
.back-link:focus-visible {
  color: #2c3442;
  outline: none;
}

.hub-hero {
  text-align: center;
  margin: 0 0 1.2rem;
  max-width: none;
  border: 1px solid #e6ebf3;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, #ffffff, #f6fbff);
  padding: 1rem 1rem 1.1rem;
}

.hub-hero h1 {
  margin: 0;
}

.hub-hero .subtitle {
  margin-top: 0.7rem;
}

.home-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0 0 1rem;
}

.start-hero-media {
  margin: 0 0 1rem;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

.start-hero-media img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

.start-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(22, 24, 29, 0.12));
  pointer-events: none;
}

.home-points article {
  padding: 0.1rem 0.1rem;
}

.home-point-head {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #344156;
  display: flex;
  align-items: center;
  gap: 0.42rem;
}

.home-point-head span {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.home-points article > p:last-child {
  margin: 0.45rem 0 0;
  font-size: 0.86rem;
  color: #566073;
  line-height: 1.45;
}

.rubric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.rubric-tile {
  min-height: 8rem;
}

.rubric-tile h2 {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
}

.rubric-tile > p:not(.rubric-kicker) {
  margin: 0.55rem 0 0;
  color: #4e5666;
}

.rubric-kicker {
  display: inline-block;
  margin: 0;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #667287;
}

.rubric-soon {
  background: linear-gradient(165deg, #ffffff, #fafbfd);
}

.beikost-teaser {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(150deg, #fff, #f7fafc);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.beikost-teaser h2 {
  margin-top: 0.2rem;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.guide-card {
  min-height: 8rem;
}

.guide-card h3 {
  margin: 0;
  font-size: 1rem;
}

.rubric-hero-placeholder {
  margin: 0.9rem 0 1rem;
  min-height: 240px;
  border: 1px dashed #d6dfeb;
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, #ffffff, #f6f9ff);
  display: grid;
  place-items: center;
}

.rubric-hero-placeholder span {
  font-size: 0.92rem;
  color: #6a7384;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rubric-hero-media {
  margin: 0.9rem 0 1rem;
}

.rubric-hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  display: block;
}

.travel-hero-media {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f6f8fc;
  padding: 0.35rem;
}

.travel-hero-media img {
  max-height: 300px;
  object-fit: contain;
  border: 0;
}

.recipe-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  background: #fff;
}

.recipe-card h3 {
  margin: 0;
  font-size: 1rem;
}

.recipe-meta {
  margin: 0.45rem 0 0;
  font-size: 0.82rem;
  color: #697286;
}

.recipe-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: #1f2d44;
  text-decoration: none;
}

.recipe-link:hover,
.recipe-link:focus-visible {
  text-decoration: underline;
  outline: none;
}

.recipe-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.recipe-mode-switch {
  display: inline-flex;
  border: 1px solid #d6e0ed;
  border-radius: 999px;
  padding: 0.2rem;
  background: #f8fbff;
  gap: 0.28rem;
  margin-top: 0.35rem;
}

.recipe-mode-btn {
  appearance: none;
  border: 0;
  border-radius: 999px;
  padding: 0.42rem 0.78rem;
  font-size: 0.82rem;
  color: #526074;
  background: transparent;
  cursor: pointer;
}

.recipe-mode-btn.is-active {
  background: #fff;
  color: #1f2b3f;
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.08);
}

.recipe-panel {
  display: none;
  margin-top: 0.75rem;
}

.recipe-panel.is-active {
  display: block;
}

.recipe-badge {
  border: 1px solid #dbe4ef;
  background: #f7fbff;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.76rem;
  color: #4d5f78;
  white-space: nowrap;
}

.recipe-ingredients {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.recipe-steps {
  margin: 0.6rem 0 0;
  padding-left: 1.15rem;
}

.recipe-tips {
  margin-top: 0.9rem;
  border: 1px dashed #d6dfeb;
  border-radius: 12px;
  padding: 0.7rem;
  background: #fbfdff;
}

.beikost-hero-media {
  margin: 0.9rem 0 1rem;
}

.beikost-hero-media img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  display: block;
}

@media (max-width: 860px) {
  .month-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .hero-gallery img:first-child {
    grid-column: 1 / -1;
    height: 170px;
  }

  .quick-steps {
    grid-template-columns: 1fr;
  }

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

  .home-points {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 700px) {
  body {
    padding-bottom: calc(5.2rem + env(safe-area-inset-bottom));
  }

  .shell {
    width: min(620px, 94vw);
    padding-top: 1rem;
  }

  .masthead-wrap {
    padding: 0.3rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom));
  }

  .masthead {
    width: 100%;
    max-width: min(620px, 94vw);
    padding: 0.3rem 0.35rem;
    display: grid;
    gap: 0.28rem;
  }

  .masthead-brand {
    display: inline-block;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #707a8d;
    text-decoration: none;
    padding-left: 0.2rem;
    white-space: nowrap;
  }

  .top-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.42rem;
    justify-content: flex-start;
    width: 100%;
    scrollbar-width: none;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    white-space: nowrap;
    font-size: 0.74rem;
    padding: 0.36rem 0.56rem;
    border: 1px solid #e1e7f0;
    background: #fff;
  }

  .legal-shell {
    width: min(620px, 94vw);
  }

  .view {
    border-radius: 18px;
    padding: 1rem;
  }

  .month-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero-gallery img,
  .hero-gallery img:first-child {
    height: 150px;
  }

  .month-tile {
    min-height: 5.8rem;
  }

  .detail-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .month-nav {
    flex-direction: column;
  }

  .beikost-teaser {
    flex-direction: column;
    align-items: flex-start;
  }

  .hub-hero {
    text-align: left;
    padding: 0.9rem;
  }

  .hub-hero .subtitle {
    margin-top: 0.55rem;
    max-width: none;
  }

  .start-hero-media img {
    max-height: 240px;
  }

  .rubric-tile h2 {
    font-size: 1.05rem;
  }

  .recipe-mode-switch {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .recipe-mode-switch::-webkit-scrollbar {
    display: none;
  }

  .recipe-mode-btn {
    flex: 0 0 auto;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .product-top {
    grid-template-columns: 80px 1fr;
  }

  .product-media {
    width: 80px;
    height: 80px;
  }
}

/* ── Affiliate-Sektion auf Content-Seiten ─────────────────────── */
.affiliate-section {
  margin-top: 2.4rem;
  padding: 1.4rem 1.2rem;
  background: #f0f7f2;
  border-radius: var(--radius-lg);
  border: 1px solid #d4eadb;
}

.affiliate-section h2 {
  margin: 0 0 1.1rem;
  font-size: 1.15rem;
  color: #1a3a24;
}

.affiliate-section .product-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.affiliate-section .affiliate a {
  background: #2d7d46;
}

.affiliate-section .affiliate a:hover,
.affiliate-section .affiliate a:focus-visible {
  background: #235f36;
}

/* ── Vergleichs-Grid für Kinderwagen etc. ─────────────────────── */
.comparison-intro {
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.decision-box {
  background: #fff8ec;
  border: 1px solid #f0d9a0;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.2rem;
  margin: 1.6rem 0;
}

.decision-box h3 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  color: #6b4c00;
}

.decision-box ul {
  margin: 0;
  padding-left: 1.3rem;
}

.decision-box li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

.section-heading {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.8rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--line);
}

.product-list + .section-heading {
  margin-top: 2rem;
}

/* ============================================================
   REDESIGN v2 — 2026-02-21
   Warmes Design: Creme/Pfirsich/Mint, Top-Header, Footer
   ============================================================ */

/* Neue CSS-Variablen (ergänzt bestehende) */
:root {
  --green:       #1e6e3a;
  --green2:      #2d9150;
  --green-light: #eaf4ee;
  --peach:       #fff4ed;
  --cream:       #fffbf7;
  --mint:        #f0f9f4;
}

/* ── SITE HEADER (ersetzt .masthead-wrap) ── */
.site-header {
  background: rgba(255,251,247,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--text);
}
.site-logo em { color: var(--green2); font-style: normal; }

.header-nav {
  display: flex;
  gap: 0.15rem;
  align-items: center;
  flex-wrap: wrap;
}
.header-nav a {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 0.88rem;
  padding: 0.38rem 0.7rem;
  border-radius: 8px;
  transition: background .12s, color .12s;
}
.header-nav a:hover {
  background: var(--mint);
  color: var(--green);
}
.header-nav .nav-pill {
  background: var(--text);
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  margin-left: 0.4rem;
}
.header-nav .nav-pill:hover { background: #2c3040 !important; }

@media (max-width: 600px) {
  .header-nav .hide-mobile { display: none; }
}

/* ── HERO v2 ── */
.hero-v2 {
  background: var(--peach);
  border-bottom: 1px solid var(--line);
  padding: 0 1.5rem;
  overflow: hidden;
}
.hero-v2-inner {
  max-width: 1080px;
  margin: 0 auto;
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}
@media (max-width: 720px) {
  .hero-v2-inner { grid-template-columns: 1fr; padding: 2.5rem 0; }
  .hero-v2-visual { display: none !important; }
}
.hero-v2-tag {
  display: inline-block;
  background: #fff;
  border: 1px solid #f0c8a8;
  color: #b05e28;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 1.2rem;
}
.hero-v2 h1 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 1rem;
}
.hero-v2 h1 .accent { color: var(--green2); }
.hero-v2-sub {
  font-size: 1.03rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 46ch;
  margin-bottom: 1.8rem;
}
.hero-btns { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.btn-dark {
  display: inline-block;
  background: var(--text);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.65rem 1.3rem;
  border-radius: 10px;
  transition: background .15s;
}
.btn-dark:hover { background: #2c3040; }
.btn-outline-sm {
  display: inline-block;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.65rem 1.3rem;
  border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.18);
  transition: border-color .15s;
}
.btn-outline-sm:hover { border-color: rgba(0,0,0,0.35); }

/* Floating preview cards in hero */
.hero-v2-visual {
  position: relative;
  height: 280px;
}
.hv-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 0.85rem 1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  font-size: 0.84rem;
}
.hv-c1 { width: 190px; top: 10px; left: 50px; transform: rotate(-4deg); }
.hv-c2 { width: 190px; top: 75px; left: 10px; transform: rotate(2deg); background: var(--mint); border-color: #c5e3cf; }
.hv-c3 { width: 190px; top: 140px; left: 55px; transform: rotate(-1.5deg); background: #fff8f0; border-color: #f0d0b0; }
.hv-label { font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: #999; margin-bottom: 0.25rem; }
.hv-title { font-weight: 700; font-size: 0.88rem; margin-bottom: 0.15rem; }
.hv-sub   { font-size: 0.78rem; color: #888; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--green);
  padding: 1rem 1.5rem;
}
.stats-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item { text-align: center; color: #fff; }
.stat-num  { font-size: 1.5rem; font-weight: 800; letter-spacing: -0.03em; }
.stat-lbl  { font-size: 0.76rem; opacity: 0.7; margin-top: 0.1rem; }

/* ── CATEGORY GRID v2 ── */
.cat-grid-v2 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.9rem;
}
@media (max-width: 720px) {
  .cat-grid-v2 { grid-template-columns: 1fr 1fr; }
  .cat-card-main { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 440px) {
  .cat-grid-v2 { grid-template-columns: 1fr; }
  .cat-card-main { grid-column: span 1; padding-top: 4.5rem; }
}
.cat-card-v2 {
  text-decoration: none;
  color: var(--text);
  display: block;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 1.3rem 1.2rem;
  transition: transform .15s, box-shadow .15s;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.cat-card-v2:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(0,0,0,0.1); }

.cat-card-main {
  background: #e8f0fe;
  border-color: #c5d8f8;
  color: var(--text);
  grid-row: span 2;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
}
.cat-card-main::before {
  content: "📅";
  position: absolute;
  top: 1.5rem; left: 1.8rem;
  font-size: 2.3rem;
}
.cat-card-main .cat-kicker-v2 { color: var(--text-soft); }
.cat-card-main h2 { color: var(--text); font-size: 1.35rem; }
.cat-card-main p  { color: var(--text-soft); }
.cat-card-main .cat-cta {
  margin-top: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: #fff;
  background: var(--text);
  padding: 0.38rem 0.75rem;
  border-radius: 8px;
}
.cat-beikost-v2 { background: var(--mint); border-color: #c8e8d2; }
.cat-schlaf-v2  { background: #f0eeff; border-color: #d8d2f4; }
.cat-travel-v2  { background: var(--peach); border-color: #f0d0b8; }
.cat-saison-v2  { background: #fef9ec; border-color: #f0e0a0; }
.cat-check-v2   { background: #f0fdf4; border-color: #b8dfc6; }

.cat-emoji-v2    { font-size: 1.75rem; margin-bottom: 0.55rem; display: block; }
.cat-kicker-v2   { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--text-soft); margin-bottom: 0.3rem; }
.cat-card-v2 h2  { font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.3rem; line-height: 1.3; }
.cat-card-v2 p   { font-size: 0.83rem; color: var(--text-soft); line-height: 1.45; }

/* ── HOW IT WORKS ── */
.how-section {
  background: var(--mint);
  border-top: 1px solid #d4ecdc;
  border-bottom: 1px solid #d4ecdc;
  padding: 3rem 1.5rem;
}
.how-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 1.8rem;
}
@media (max-width: 580px) { .steps-grid { grid-template-columns: 1fr; } }
.step-item { display: flex; gap: 1rem; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--green2);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.step-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.3rem; }
.step-text  { font-size: 0.85rem; color: var(--text-soft); line-height: 1.5; }

/* ── SITE FOOTER (neu, echter Footer) ── */
.site-footer-new {
  border-top: 1px solid var(--line);
  padding: 1.5rem 1.5rem 2rem;
  background: var(--cream);
}
.footer-inner-new {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo-new {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}
.footer-logo-new em { color: var(--green2); font-style: normal; }
.footer-links-new { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links-new a { font-size: 0.82rem; color: var(--text-soft); text-decoration: none; }
.footer-links-new a:hover { color: var(--text); }
.footer-disclaimer-new {
  width: 100%;
  text-align: center;
  font-size: 0.74rem;
  color: #aaa;
  margin-top: 0.75rem;
}

/* Neue Section-Wrapper für Startseite */
.home-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green2);
  margin-bottom: 0.5rem;
}
.section-heading-v2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.section-sub-v2 {
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 58ch;
  margin-bottom: 2rem;
}

/* ── AD SLOTS ── */
.ad-slot {
  text-align: center;
  margin: 1.2rem 0;
  overflow: hidden;
  min-height: 10px; /* collapse wenn kein Ad geladen */
}
.ad-slot ins { display: block; }
