/* ============================================================
   Die FranchiseMacher — neue Webseite
   Tokens aus brand.json / site.config.json
   ============================================================ */

:root {
  /* Primärfarben (CD-Guide) */
  --primary: #EB8B00;          /* Orange */
  --primary-deep: #EB7100;     /* Orange-Hover */
  --primary-soft: #FFE8CC;
  --grey: #808080;             /* CD-Grau */
  --white: #FFFFFF;

  /* Sekundärfarben */
  --cream: #EAE7DC;            /* CD-Cream */
  --brown: #63513f;
  --secondary: #303E60;        /* Navy */
  --secondary-deep: #1F2A45;
  --accent: #EE9C44;

  /* App-Tokens */
  --bg: #FFFFFF;
  --surface: #EAE7DC;          /* alle Surface-Sektionen */
  --surface-2: #DAD5C6;
  --text: #303E60;
  --text-muted: #565656;
  --line: #D8D2BF;
  --line-strong: #303E60;

  --font-heading: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Montserrat", "Helvetica Neue", Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { font-weight: 600; } /* Montserrat Semi-Bold per CD-Guide */

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.container {
  width: min(100% - 2 * var(--gutter), var(--container));
  margin-inline: auto;
}
.wide {
  width: min(100% - 2 * var(--gutter), 1480px);
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: -0.01em;
  margin: 0 0 .4em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); line-height: 1.02; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.08; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; line-height: 1.25; }
p  { margin: 0 0 1em; text-wrap: pretty; }
.lead { font-size: clamp(1.1rem, 1.4vw, 1.3rem); line-height: 1.55; color: var(--text-muted); }

.eyebrow {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--primary);
  display: inline-block;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  padding: 16px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
/* Briefing: Button soll bei Hover GRÖSSER werden, nicht kleiner */
.btn:hover { transform: scale(1.06); box-shadow: 0 14px 30px -14px rgba(235,139,0,.45); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-deep); color: #fff; }
.btn-dark { background: var(--secondary); color: #fff; }
.btn-dark:hover { background: var(--secondary-deep); }
.btn-ghost {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}
.btn-ghost:hover { background: var(--secondary); color: #fff; }
.btn-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.45);
  backdrop-filter: blur(6px);
}
.btn-light:hover { background: #fff; color: var(--secondary); border-color: #fff; }

.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* ========== Top Nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 2.2vw, 28px);
  padding: 14px 0;
}
.nav-logo {
  flex: 0 0 auto;
  display: block;
}
.nav-logo img {
  display: block;
  height: 42px;
  width: auto;
  max-width: none;
}
.nav-links {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  list-style: none;
  padding: 0; margin: 0;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: .94rem;
  text-decoration: none;
  color: var(--secondary);
  position: relative;
  padding: 6px 2px;
  transition: color .15s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--primary); }

/* Dropdowns */
.nav-links li.has-sub { position: relative; }
.nav-links li.has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  width: 6px; height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.nav-sub {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  min-width: 240px;
  list-style: none;
  margin: 0;
  box-shadow: 0 24px 50px -20px rgba(48,62,96,.18);
  opacity: 0; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 60;
}
/* Unsichtbare Brücke über die Lücke zwischen Menüpunkt und Untermenü,
   damit der Hover beim Runterziehen der Maus nicht abbricht. */
.nav-sub::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -14px; height: 14px;
}
.nav-links li.has-sub:hover .nav-sub,
.nav-links li.has-sub:focus-within .nav-sub {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-sub li { padding: 0; }
.nav-sub a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--secondary);
}
.nav-sub a:hover { background: var(--surface); color: var(--primary); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta .btn { padding: 10px 18px; font-size: .8rem; }
.nav-toggle { display: none; background: none; border: 0; color: var(--secondary); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  padding: 90px 0 110px;
  background: var(--surface);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -160px;
  width: 540px; height: 540px;
  border-radius: 50%;
  background: var(--primary-soft);
  z-index: 0;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hero h1 { font-size: clamp(1.9rem, 3.9vw, 3.35rem); }
.hero h1 .accent { color: var(--primary); }
.hero h1 .strike {
  display: inline-block;
  position: relative;
}
.hero h1 .strike::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%;
  bottom: .08em;
  height: .35em;
  background: var(--primary);
  opacity: .25;
  z-index: -1;
  border-radius: 4px;
}
.hero-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
  font-size: .92rem;
  color: var(--text-muted);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.hero-rating .stars { color: #F4B100; letter-spacing: 2px; }

.hero-photo {
  position: relative;
}
.hero-photo .frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -30px rgba(48,62,96,.35);
}
.hero-photo .frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-photo .badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: var(--secondary);
  color: #fff;
  padding: 18px 22px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  max-width: 240px;
  box-shadow: 0 20px 40px -20px rgba(48,62,96,.55);
}
.hero-photo .badge .num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-photo .badge .lbl { font-size: .85rem; font-weight: 500; letter-spacing: .02em; }

.hero-photo .association-seal {
  position: absolute;
  top: 18px;
  right: -6px;
  width: clamp(82px, 16vw, 112px);
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 12px 16px rgba(48,62,96,.18));
}

@media (max-width: 900px) {
  .hero { padding: 60px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { max-width: 420px; margin-inline: auto; }
}

/* ========== Press strip ========== */
.press {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 22px 0;
  overflow: hidden;
}
.press-label {
  display: block;
  margin: 0 0 22px;
  font-family: var(--font-heading);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--secondary);
  text-align: center;
}
.press-marquee {
  position: relative;
  overflow: hidden;
  padding: 4px 0 20px;
}
.press-marquee::before,
.press-marquee::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(36px, 11vw, 160px);
  pointer-events: none;
}
.press-marquee::before { left: 0; background: linear-gradient(to right, #fff 10%, transparent); }
.press-marquee::after { right: 0; background: linear-gradient(to left, #fff 10%, transparent); }
.press-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
  animation: press-scroll 29s linear infinite;
}
.press-marquee:hover .press-track { animation-play-state: paused; }
.press-logo {
  display: flex;
  width: clamp(110px, 12vw, 155px);
  height: 58px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.press-logo.prosieben {
  width: clamp(138px, 15vw, 182px);
  gap: 13px;
}
.press-logo.prosieben img { width: 32px; }
.press-logo.prosieben span {
  font-family: Arial, sans-serif;
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  font-weight: 700;
  color: var(--secondary);
}
.press-logo img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(23%) sepia(21%) saturate(1226%) hue-rotate(185deg) brightness(89%) contrast(88%);
}
.press-wordmark {
  flex: 0 0 auto;
  color: var(--secondary);
  line-height: 1;
  white-space: nowrap;
}
.press-wordmark.morgenpost {
  font-family: Georgia, serif;
  font-size: clamp(1.1rem, 1.9vw, 1.45rem);
  font-weight: 700;
}
.press-wordmark.focus {
  font-family: Arial, sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.05em;
}
.press-wordmark.focus span { font-weight: 400; letter-spacing: -.02em; }
.press-wordmark.journal {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(.92rem, 1.4vw, 1.1rem);
  letter-spacing: .12em;
  line-height: 1.14;
}
.press-wordmark.springer {
  font-family: Georgia, serif;
  font-size: clamp(1rem, 1.7vw, 1.36rem);
  font-weight: 700;
}
.press-wordmark.hogapage {
  font-family: Arial, sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  letter-spacing: .08em;
}
@keyframes press-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - clamp(25px, 3.5vw, 50px))); }
}
@media (prefers-reduced-motion: reduce) {
  .press-track { animation: none; transform: translateX(0); }
}

/* ========== Section base ========== */
section {
  padding: clamp(70px, 9vw, 130px) 0;
}
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head .lead { margin-top: 10px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.bg-surface { background: var(--surface); }
.bg-navy { background: var(--secondary); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .lead { color: rgba(255,255,255,.78); }
.bg-navy .eyebrow { color: var(--accent); }
.bg-navy .eyebrow::before { background: var(--accent); }

/* ========== Promise / outcome cards ========== */
.promise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.promise-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.promise-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px -28px rgba(48,62,96,.25);
  border-color: var(--primary);
}
.promise-card .step {
  font-family: var(--font-heading);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--primary);
  margin-bottom: 18px;
}
.promise-card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.promise-card p { color: var(--text-muted); margin: 0; }
@media (max-width: 860px) { .promise { grid-template-columns: 1fr; } }

/* ========== Stages Quadrant Grid (Briefing) ========== */
.stages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.stage {
  position: relative;
  background: var(--cream);
  border-radius: 22px;
  padding: 40px 38px 38px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.stage:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -34px rgba(48,62,96,.3);
}
.stage:hover h3, .stage:hover .stage-eyebrow { color: #fff; }
.stage:hover .stage-sub,
.stage:hover .stage-body p,
.stage:hover .stage-list li { color: rgba(255,255,255,.9); }
.stage:hover .stage-tag { color: rgba(255,255,255,.45); }
.stage--dark { background: var(--secondary); color: #fff; }
.stage--dark h3, .stage--dark .stage-eyebrow { color: #fff; }
.stage--dark .stage-body p { color: rgba(255,255,255,.82); }
.stage--dark .stage-list li { color: rgba(255,255,255,.92); }
.stage--dark .stage-list li::before { background: var(--primary); }
.stage-eyebrow {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.stage h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.18;
  margin-bottom: 6px;
  color: var(--secondary);
}
.stage--dark h3 { color: #fff; }
.stage-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 18px;
}
.stage--dark .stage-sub { color: rgba(255,255,255,.9); }
.stage-body p { color: var(--text-muted); margin: 0 0 18px; font-size: 1rem; }
.stage-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 10px;
}
.stage-list li {
  position: relative;
  padding-left: 26px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
}
.stage-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
}
.stage-cta { margin-top: auto; }
.stage-tag {
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .14em;
  color: rgba(48,62,96,.4);
}
.stage--dark .stage-tag { color: rgba(255,255,255,.45); }
@media (max-width: 900px) {
  .stages { grid-template-columns: 1fr; }
  .stage { padding: 32px 28px; }
}

/* ========== Method (4 steps) ========== */
.method {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.method-step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  position: relative;
}
.method-step:last-child { border-right: 0; }
.method-step .num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  letter-spacing: -.04em;
}
.method-step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.method-step p { color: var(--text-muted); font-size: .95rem; margin: 0; }
@media (max-width: 900px) {
  .method { grid-template-columns: 1fr 1fr; }
  .method-step:nth-child(2) { border-right: 0; }
  .method-step:nth-child(1), .method-step:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 540px) {
  .method { grid-template-columns: 1fr; }
  .method-step { border-right: 0; border-bottom: 1px solid var(--line); }
  .method-step:last-child { border-bottom: 0; }
}

/* ========== Services grid ========== */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.service-card .num {
  font-family: var(--font-heading);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--primary);
  margin-bottom: 22px;
  display: block;
}
.service-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: .95rem; margin: 0; }
.service-card:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}
.service-card:hover h3 { color: #fff; }
.service-card:hover p  { color: rgba(255,255,255,.82); }
.service-card:hover .num { color: var(--accent); }
@media (max-width: 1000px) { .services { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px)  { .services { grid-template-columns: 1fr; } }

/* ========== Why us / 4 Erfolgsfaktoren ========== */
.factors-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}
.factors-list { list-style: none; padding: 0; margin: 0; }
.factors-list li {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.13);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  align-items: start;
}
.factors-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.13); }
.factors-list .k {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: -.03em;
}
.factors-list h3 { color: #fff; font-size: 1.2rem; margin: 0 0 6px; }
.factors-list p  { color: rgba(255,255,255,.74); margin: 0; font-size: .98rem; }

.factors-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
}
.factors-image img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .factors-grid { grid-template-columns: 1fr; } }

/* ========== Cases ========== */
.cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.case {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.case-img {
  aspect-ratio: 16 / 10;
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}
.case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.case:hover .case-img img { transform: scale(1.03); }
.case-body { padding: 28px; }
.case-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.case-body h3 { font-size: 1.4rem; margin-bottom: 8px; }
.case-body p  { color: var(--text-muted); margin: 0 0 18px; }
.case-stats {
  display: flex;
  gap: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.case-stats .item .v {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  line-height: 1;
}
.case-stats .item .l {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}
@media (max-width: 800px) { .cases { grid-template-columns: 1fr; } }

/* ========== Scale (DE map) ========== */
.scale-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 84px);
  align-items: center;
}
.scale-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.scale-stats .stat {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px 24px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 8px 24px -20px rgba(48,62,96,.32);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.scale-stats .stat:hover {
  transform: translateY(-4px);
  border-color: var(--primary-deep);
  box-shadow: 0 22px 38px -22px rgba(48,62,96,.38);
}
.scale-stats .stat .v {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -.02em;
  line-height: 1;
}
.scale-stats .stat .l {
  font-size: .92rem;
  color: var(--text-muted);
  margin-top: 8px;
  display: block;
}
.scale-map { display: flex; justify-content: center; }
.scale-map img {
  max-width: 450px;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
@media (max-width: 900px) { .scale-grid { grid-template-columns: 1fr; } }

/* ========== Team ========== */
.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.team-card .photo {
  aspect-ratio: 1 / 1;
  background: var(--surface-2);
  overflow: hidden;
}
.team-card .photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.team-card:hover .photo img { transform: scale(1.05); }
.team-card .body { padding: 18px 20px 22px; }
.team-card .name {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  margin: 0;
  font-size: 1.05rem;
}
.team-card .role {
  font-size: .88rem;
  color: var(--primary);
  margin-top: 4px;
  font-weight: 600;
}
@media (max-width: 1000px) { .team { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px)  { .team { grid-template-columns: 1fr; } }

/* ========== Reviews ========== */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 28px 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.review .stars { color: #F4B100; letter-spacing: 3px; margin-bottom: 14px; font-size: 1rem; }
.review p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.55;
  flex: 1;
  margin: 0 0 22px;
}
.review .author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  font-size: .95rem;
}
.review .date {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 2px;
}
@media (max-width: 980px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews { grid-template-columns: 1fr; } }

/* ========== FAQ ========== */
.faq-wrap { max-width: 860px; margin-inline: auto; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--secondary);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .ico {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, transform .25s ease;
  color: var(--secondary);
}
.faq-item[open] .ico { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-item .a {
  padding: 0 4px 22px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ========== Final CTA ========== */
.final-cta {
  background:
    radial-gradient(800px 380px at 12% 20%, rgba(238,156,68,.16), transparent 60%),
    radial-gradient(700px 400px at 95% 100%, rgba(235,139,0,.18), transparent 60%),
    var(--secondary);
  color: #fff;
  border-radius: 24px;
  padding: clamp(40px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  overflow: hidden;
  position: relative;
}
.final-cta h2 { color: #fff; margin-bottom: 14px; }
.final-cta .lead { color: rgba(255,255,255,.82); }
.final-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.final-cta-side {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 28px;
}
.final-cta-side h3 { color: #fff; font-size: 1.1rem; margin-bottom: 14px; }
.final-cta-side ul { list-style: none; padding: 0; margin: 0; }
.final-cta-side li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  color: rgba(255,255,255,.85);
  font-size: .96rem;
}
.final-cta-side .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .7rem;
}
@media (max-width: 900px) { .final-cta { grid-template-columns: 1fr; } }

/* ========== Footer ========== */
footer {
  background: #131A2B;
  color: rgba(255,255,255,.7);
  padding: 70px 0 32px;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
footer h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { padding: 5px 0; }
footer a {
  text-decoration: none;
  color: rgba(255,255,255,.7);
  transition: color .15s ease;
}
footer a:hover { color: var(--primary); }
.footer-logo img { height: 42px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.6); max-width: 36ch; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 20px;
  padding-top: 26px; font-size: .85rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
}
.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease;
}
.socials a svg { width: 17px; height: 17px; display: block; }
.socials a:hover { background: var(--primary); color: #fff; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ========== Sub-pages (kontakt/impressum/datenschutz) ========== */
.page-hero {
  background: var(--surface);
  padding: 90px 0 60px;
  position: relative;
}
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); }

.prose {
  max-width: 760px;
  margin-inline: auto;
}
.prose h2 { margin-top: 1.5em; }
.prose h3 { margin-top: 1.4em; font-size: 1.15rem; }
.prose p, .prose li { color: var(--text-muted); }
.prose strong { color: var(--secondary); }
.prose ul { padding-left: 1.2em; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
}
.contact-info h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--primary);
  margin: 24px 0 6px;
}
.contact-info h3:first-of-type { margin-top: 0; }
.contact-info address { font-style: normal; color: var(--text); line-height: 1.65; }
.contact-info a { color: var(--secondary); font-weight: 600; }
.contact-info a:hover { color: var(--primary); }

form.contact-form { display: grid; gap: 16px; }
.contact-form label {
  display: block;
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--text);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(235,139,0,.18);
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
}

/* ========== Book promo ========== */
.book {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: var(--cream);
  border-radius: 24px;
  padding: clamp(36px, 5vw, 64px);
}
.book-photo {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
}
.book-photo img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 36px 70px -28px rgba(48,62,96,.55);
  display: block;
}
.book-photo .badge {
  position: absolute;
  top: 14px;
  right: -8px;
  z-index: 2;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -8px rgba(235,139,0,.6);
}
.book-body h2 { margin-bottom: 12px; }
.book-body .lead { margin-bottom: 22px; }
@media (max-width: 800px) {
  .book { grid-template-columns: 1fr; }
}

/* ========== Social channels ========== */
.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.channel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 10px 30px -28px rgba(48,62,96,.35);
  transition: border-color .2s ease, transform .25s ease, box-shadow .25s ease;
}
.channel:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 26px 44px -26px rgba(48,62,96,.32);
}
.channel-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.channel-icon {
  width: 48px; height: 48px;
  border-radius: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 48px;
}
.channel-icon svg { width: 27px; height: 27px; display: block; }
.channel-icon.youtube { background: #fff1f2; }
.channel-icon.youtube svg { width: 29px; height: auto; }
.channel-icon.youtube svg path:first-child { fill: #ff0033; }
.channel-icon.youtube svg .play { fill: #fff; }
.channel-icon.instagram { background: linear-gradient(135deg, #feda75, #d62976 54%, #4f5bd5); }
.channel-icon.instagram svg * { fill: none; stroke: #fff; stroke-width: 2; }
.channel-icon.instagram svg .dot { fill: #fff; stroke: none; }
.channel-icon.tiktok { background: #101319; }
.channel-icon.tiktok svg { width: 28px; height: 28px; }
.channel-icon.tiktok .shadow-cyan { fill: #25f4ee; transform: translate(-1px, 1px); }
.channel-icon.tiktok .shadow-red { fill: #fe2c55; transform: translate(1px, -1px); }
.channel-icon.tiktok .mark { fill: #fff; }
.channel h3 { font-size: 1.2rem; margin: 0; color: var(--secondary); }
.channel-handle { font-size: .85rem; color: var(--text-muted); margin: 2px 0 0; }
.channel p { color: var(--text-muted); margin: 0 0 14px; font-size: .98rem; flex: 1; }
.channel-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
}
.channel-link:hover { color: var(--primary-deep); }
@media (max-width: 900px) { .channels { grid-template-columns: 1fr; } }

/* ========== Top announcement bar ========== */
.topbar {
  background: var(--secondary);
  color: rgba(255,255,255,.88);
  font-size: .85rem;
  padding: 9px 0;
}
.topbar-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.topbar a { color: #fff; text-decoration: none; font-weight: 500; }
.topbar a:hover { color: var(--primary); }
.topbar .star { color: #F4B100; letter-spacing: 1px; }
@media (max-width: 640px) {
  .topbar { font-size: .78rem; }
}

/* ========== Video-Kundenstimmen ========== */
.vid-sub-head {
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 22px;
}
.vid-cases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 52px;
}
.vid-case {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.vid-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--secondary-deep);
}
.vid-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vid-body { padding: 28px; }
.vid-body h3 { font-size: 1.5rem; margin-bottom: 6px; }
.vid-sub {
  color: var(--text);
  font-weight: 600;
  margin: 0 0 20px;
}
.pzl { margin: 0; display: grid; gap: 14px; }
.pzl > div { display: block; }
.pzl dt {
  font-family: var(--font-heading);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--primary);
  margin-bottom: 2px;
}
.pzl dd {
  margin: 0;
  color: var(--text-muted);
  font-size: .96rem;
  line-height: 1.55;
}
.reviews-cta { text-align: center; margin-top: 44px; }
.reviews-cta p { font-size: 1.05rem; max-width: 640px; margin: 0 auto 20px; color: var(--text); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 800px) { .vid-cases { grid-template-columns: 1fr; } }

/* ========== Franchise vs. Lizenz ========== */
.compare-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}
.compare-card {
  background: var(--secondary);
  color: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
}
.compare-card .ico {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  color: var(--accent);
}
.compare-card .ico svg { width: 100%; height: 100%; }
.compare-card p { color: rgba(255,255,255,.82); margin: 0; font-size: .98rem; line-height: 1.6; }
.compare-card strong { color: #fff; }
.compare-table {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.compare-table thead th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--secondary);
  text-align: center;
  background: var(--surface);
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody td:not(:first-child) { text-align: center; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table td .label { color: var(--text); }
.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}
.mark.yes { background: #E3F2E8; color: #2E9E5B; }
.mark.no  { background: var(--primary-soft); color: var(--primary-deep); }
@media (max-width: 800px) {
  .compare-cards { grid-template-columns: 1fr; }
  .compare-table th, .compare-table td { padding: 14px 16px; }
}

/* ============================================================
   Blog-Artikel (Franchise Wiki) — GEO-Best-Practice-Layout
   ============================================================ */
.art-hero { background: var(--surface); padding: 80px 0 44px; }
.art-hero .container { max-width: 900px; }
.art-breadcrumb { font-size: .85rem; color: var(--text-muted); margin-bottom: 18px; }
.art-breadcrumb a { color: var(--primary); text-decoration: none; }
.art-breadcrumb a:hover { text-decoration: underline; }
.art-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.art-tag {
  font-family: var(--font-heading); font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--primary-deep);
  background: var(--primary-soft); border-radius: 999px; padding: 5px 13px;
}
.art-h1 { font-size: clamp(1.675rem, 3.6vw, 2.675rem); line-height: 1.13; margin-bottom: 16px; }
.art-dek { font-size: 1.12rem; color: var(--text-muted); line-height: 1.5; max-width: 720px; margin: 0 0 26px; }
.art-trust { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--line); }
.art-trust-av {
  width: 46px; height: 46px; border-radius: 50%; background: var(--secondary); color: #fff;
  font-family: var(--font-heading); font-weight: 700; display: flex; align-items: center;
  justify-content: center; font-size: .92rem; flex: 0 0 auto; letter-spacing: .02em;
  overflow: hidden;
}
.art-trust-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-trust-meta { font-size: .9rem; line-height: 1.4; }
.art-trust-meta .who { font-weight: 700; color: var(--secondary); }
.art-trust-meta .role { color: var(--text-muted); }
.art-trust-dates { margin-left: auto; font-size: .8rem; color: var(--text-muted); text-align: right; line-height: 1.5; }
.art-trust-dates strong { color: var(--secondary); font-weight: 600; }

.art-main { padding-top: clamp(32px, 4vw, 52px); }
.art-figure { margin: 0 auto 38px; max-width: 900px; }
.art-figure img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--line); display: block; }
.art-figure figcaption { font-size: .82rem; color: var(--text-muted); margin-top: 10px; text-align: center; }

.art-body { max-width: 760px; margin: 0 auto; }
.art-body p { color: var(--text); line-height: 1.75; margin: 0 0 20px; font-size: 1.05rem; }
.art-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 50px 0 14px; scroll-margin-top: 90px; }
.art-body h3 { font-size: 1.2rem; margin: 32px 0 10px; color: var(--secondary); }
.art-body ul { margin: 0 0 22px; padding: 0; list-style: none; display: grid; gap: 12px; }
.art-body ul li { position: relative; padding-left: 30px; line-height: 1.6; color: var(--text); }
.art-body ul li::before { content: "→"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 700; }

/* „Auf einen Blick" / TL;DR */
.art-tldr { background: var(--surface); border-left: 4px solid var(--primary); border-radius: 12px; padding: 22px 26px; margin: 0 0 34px; }
.art-tldr .lbl { font-family: var(--font-heading); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 8px; }
.art-tldr p { margin: 0; font-size: 1.05rem; line-height: 1.6; color: var(--secondary); font-weight: 500; }

/* Inhaltsverzeichnis */
.art-toc { border: 1px solid var(--line); border-radius: 14px; padding: 24px 26px; margin: 0 0 38px; background: #fff; }
.art-toc .lbl { font-family: var(--font-heading); font-weight: 700; color: var(--secondary); margin-bottom: 14px; font-size: 1.05rem; }
.art-toc ol { margin: 0; padding-left: 20px; display: grid; gap: 9px; }
.art-toc a { color: var(--text); text-decoration: none; }
.art-toc a:hover { color: var(--primary); text-decoration: underline; }

/* Fakten-Karten */
.art-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 0 0 42px; }
.art-fact { border: 1px solid var(--line); border-radius: 14px; padding: 22px 20px; background: #fff; }
.art-fact .v { font-family: var(--font-heading); font-weight: 800; font-size: 1.8rem; color: var(--primary); line-height: 1; letter-spacing: -.02em; }
.art-fact .l { font-size: .92rem; color: var(--text); margin-top: 8px; line-height: 1.4; }
.art-fact .src { font-size: .72rem; color: var(--text-muted); margin-top: 8px; }
@media (max-width: 760px) { .art-facts { grid-template-columns: 1fr; } }

/* Kurzantwort-Box je Sektion */
.art-answer { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--secondary); border-radius: 10px; padding: 14px 18px; margin: 0 0 22px; font-style: italic; color: var(--secondary); font-size: 1rem; line-height: 1.55; }
.art-answer strong { font-style: normal; }

/* Quellen-Verzeichnis */
.art-sources { margin: 50px auto 0; max-width: 760px; padding: 26px; border-radius: 14px; background: var(--surface); }
.art-sources .lbl { font-family: var(--font-heading); font-weight: 700; color: var(--secondary); margin-bottom: 12px; }
.art-sources ol { margin: 0; padding-left: 20px; display: grid; gap: 8px; font-size: .92rem; }
.art-sources a { color: var(--primary-deep); }

/* Abschluss-CTA + verwandte Artikel */
.art-cta { margin: 50px auto 0; max-width: 760px; background: var(--secondary); color: #fff; border-radius: 18px; padding: clamp(28px, 4vw, 44px); text-align: center; }
.art-cta h2 { color: #fff; margin-bottom: 10px; }
.art-cta p { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 20px; }
.art-cta .proof { font-size: .85rem; color: var(--accent); margin-top: 16px; }
.art-cta .proof .star { color: #F4B100; letter-spacing: 1px; }

.art-related { max-width: 900px; margin: 56px auto 0; }
.art-related .lbl { font-family: var(--font-heading); font-weight: 700; color: var(--secondary); margin-bottom: 18px; font-size: 1.2rem; }
.art-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.art-related-card { border: 1px solid var(--line); border-radius: 14px; padding: 22px; text-decoration: none; color: inherit; display: block; transition: border-color .15s, transform .15s; background: #fff; }
.art-related-card:hover { border-color: var(--primary); transform: translateY(-2px); }
.art-related-card .k { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--primary); }
.art-related-card h3 { font-size: 1.02rem; margin: 8px 0 0; line-height: 1.35; }
@media (max-width: 760px) { .art-related-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Blog-Index (Franchise Wiki)
   ============================================================ */
.blog-meta-line { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-muted); }
.blog-cat {
  font-family: var(--font-heading); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--primary);
}

/* Featured (neuester) Beitrag */
.blog-featured {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit; margin-bottom: 44px;
  transition: box-shadow .15s, border-color .15s;
}
.blog-featured:hover { box-shadow: 0 26px 54px -30px rgba(48,62,96,.45); border-color: var(--primary); }
.blog-featured-img { position: relative; min-height: 320px; overflow: hidden; background: var(--surface-2); }
.blog-featured-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-badge {
  position: absolute; top: 16px; left: 16px; z-index: 1;
  background: var(--primary); color: #fff; font-family: var(--font-heading);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 999px;
}
.blog-featured-body { padding: clamp(28px, 3.5vw, 44px); display: flex; flex-direction: column; }
.blog-featured-body h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.2; margin: 12px 0 14px; }
.blog-featured-body p { color: var(--text-muted); line-height: 1.6; margin: 0 0 22px; }
.blog-featured-more { margin-top: auto; color: var(--primary); font-weight: 700; font-family: var(--font-heading); display: inline-flex; align-items: center; gap: 7px; }
.blog-featured:hover .blog-featured-more .arrow { transform: translateX(3px); }
.blog-featured-more .arrow { transition: transform .2s ease; }
@media (max-width: 820px) { .blog-featured { grid-template-columns: 1fr; } .blog-featured-img { min-height: 220px; aspect-ratio: 16/9; } }

/* Beitrags-Raster */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; text-decoration: none; color: inherit;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(48,62,96,.4); border-color: var(--primary); }
.blog-card-img { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-2); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card h2 { font-size: 1.16rem; line-height: 1.3; margin: 10px 0 10px; }
.blog-card p { color: var(--text-muted); font-size: .94rem; line-height: 1.55; margin: 0 0 18px; }
.blog-card-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-size: .82rem; color: var(--text-muted); }
.blog-card-more { color: var(--primary); font-weight: 700; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }
