/* === Reset & Base === */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-cream: #f2efe9;
  --color-cream-dark: #e8e4dc;
  --color-blue: #729EA8;
  --color-blue-dark: #5c7080;
  --color-blue-deep: #4a5e6e;
  --color-text: #2c2c2c;
  --color-text-light: #6b6b6b;
  --color-accent: #b5654a;
  --color-accent-hover: #9a5540;
  /* Aufgehellte Akzentfarbe für dunkle Flächen (.wege, .section-blue).
     Das normale Terrakotta ist dort zu dunkel und verschwindet. */
  --color-accent-light: #e8a88b;
  --color-white: #ffffff;
  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --max-width: 900px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-cream);
}

/* === Container === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Typography === */
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  font-size: 2.2rem;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

h2 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.8rem;
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
}

h3 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent-hover);
}

/* === Buttons === */
.btn {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-light {
  background-color: var(--color-cream);
  color: var(--color-text);
  border-color: var(--color-cream);
}

.btn-light:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-accent:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
  text-decoration: none;
}

.btn-large {
  padding: 0.9rem 2.8rem;
  font-size: 0.85rem;
}

/* === Hero === */
.hero {
  padding: 8rem 0 7rem;
  background-color: var(--color-blue);
  background-image: linear-gradient(rgba(90, 110, 120, 0.65), rgba(90, 110, 120, 0.65)), url('/img/mountains.jpg');
  background-size: cover;
  background-position: center 60%;
  color: var(--color-white);
  text-align: center;
}

.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.hero h1 {
  max-width: 650px;
  margin: 0 auto 1.2rem;
  font-weight: 400;
}

.hero-sub {
  font-size: 1rem;
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* === Sections === */
.section {
  padding: 5rem 0;
  text-align: center;
}

.section-blue {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.section-blue h2 {
  color: var(--color-white);
}

.section-blue h3 {
  color: var(--color-white);
}

.section-blue-deep {
  background-color: var(--color-blue-deep);
  color: var(--color-white);
}

.section-blue-deep h2 {
  color: var(--color-white);
}

.section-blue-deep h3 {
  color: var(--color-white);
}

.section-cream-dark {
  background-color: var(--color-cream-dark);
}

.section-white {
  background-color: var(--color-white);
}

.section-intro {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: inherit;
  opacity: 0.8;
  max-width: 620px;
  margin: -0.8rem auto 2.5rem;
  line-height: 1.8;
  font-style: italic;
}

.section-divider {
  width: 40px;
  height: 1px;
  background-color: var(--color-text);
  opacity: 0.2;
  margin: 0 auto 2rem;
  border: none;
}

/* === Problem & Lösung === */
.problem-text {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.problem-text p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--color-blue);
  margin-bottom: 1.2rem;
}

.problem-text p:last-child {
  margin-bottom: 0;
}

.problem-lösung {
  margin-top: 1.8rem !important;
}

.problem-quote {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-blue);
  font-style: italic;
  text-align: left;
  max-width: 560px;
  margin: 2.8rem auto 1.8rem;
  padding-left: 1.4rem;
  border-left: 2px solid var(--color-blue);
}

/* === Audience === */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: left;
}

.audience-item {
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.audience-icon {
  width: 36px;
  height: 36px;
  color: var(--color-blue);
  margin-bottom: 1rem;
}

.audience-item h3 {
  color: var(--color-blue-deep);
  margin-bottom: 0.5rem;
}

.audience-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0;
}

/* === About === */
.about-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: center;
  text-align: left;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.03);
  opacity: 0.9;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-blue);
  font-family: var(--font-heading);
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-text .about-more {
  margin-top: 1.6rem;
  font-family: var(--font-body);
  font-size: 1rem;
}

.about-text .about-more a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.about-text .about-more a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

/* === Projects === */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
  text-align: left;
}

.project-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 2.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.4s ease, background 0.4s ease;
}

.project-card:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.12);
}

.project-mockup {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.project-type {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.6;
  margin-bottom: 0.75rem;
}

.project-card p {
  opacity: 0.8;
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.projects-proof {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.6;
  letter-spacing: 0.1em;
  text-align: center;
}

/* === Steps === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 0.5rem;
}

.step {
  text-align: center;
}

.step-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text);
  margin-bottom: 1rem;
  opacity: 0.2;
}

.step h3 {
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.step h3::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin: 0 auto 0.7rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.55' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 19 L9 7 L13.5 13.5 L17.5 8 L22 19 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.step p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.8;
}

.section-blue .step-number {
  color: var(--color-white);
}

.section-blue .step h3 {
  color: var(--color-white);
}

.section-blue .step p {
  color: var(--color-white);
  opacity: 0.8;
}

/* === Process (So arbeite ich) === */
/* Erklärung der Marke über den vier Schritten (/angebot/). Steht auf blauem
   Grund, deshalb helles Weiß statt der Akzentfarbe. */
.haltung__name {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1.1rem;
}

.prozess__marke {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.prozess__erklaerung {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.85;
  opacity: 0.9;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 0.5rem;
  position: relative;
}

/* verbindende Zeitleisten-Linie auf Höhe der Nummern */
.process-grid::before {
  content: "";
  position: absolute;
  top: 1.15rem;
  left: 16%;
  right: 16%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-number {
  display: inline-block;
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
  padding: 0 0.7rem;
  background-color: var(--color-blue);
}

.process-step h3 {
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.section-blue .process-step p {
  opacity: 0.85;
}

/* === FAQ === */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.1rem 0;
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-blue-deep);
  cursor: pointer;
  list-style: none;
  transition: color 0.15s ease;
}

.faq-item summary:hover {
  color: var(--color-accent);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Chevron-Pfeil aus zwei Borders, dreht sich beim Aufklappen */
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  margin-top: -0.2rem;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  margin-top: 0.2rem;
  transform: rotate(-135deg);
}

.faq-item p {
  margin: 0.8rem 0 0;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}


/* === Offers === */
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}

.offer-card {
  background: rgba(255, 255, 255, 0.07);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, background 0.4s ease;
}

.offer-card:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.11);
}

.offer-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.5;
  margin-bottom: 0.5rem;
}

.offer-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-cream);
  margin-bottom: 0.3rem;
}

.offer-card h3 {
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
}

.offer-card ul {
  list-style: none;
  margin-top: 0.75rem;
}

.offer-intro {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.75;
}

.offer-card li {
  padding: 0.3rem 0;
  padding-left: 1.4rem;
  position: relative;
  font-size: 0.9rem;
  opacity: 0.75;
}

.offer-card li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.offer-note {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  opacity: 0.5;
  font-style: italic;
}

/* === Hauptangebot (/angebot/) ===
   Bekommt eine eigene Sektion statt einer Karte unter anderen Karten.
   Einstieg ist der Satz, mit dem Leute tatsächlich kommen. */
.haupt {
  background: var(--color-cream-dark);
  padding: 4.5rem 0 7.5rem;
}

.haupt__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.9rem;
}

/* Name und Honorar des Hauptpakets stehen über dem Zitat, damit sofort klar
   ist, worüber der Block spricht. Der Preis unten im Fuß entfällt dadurch. */
.haupt__paket {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.haupt__paket-preis {
  font-size: 0.95rem;
  color: var(--color-text-light);
  font-variant-numeric: tabular-nums;
}

.haupt__paket-preis::before {
  content: '·';
  margin: 0 0.5rem;
  color: var(--color-text-light);
  opacity: 0.6;
}

.haupt__zitat {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  line-height: 1.35;
  color: var(--color-text);
  max-width: 24ch;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.haupt__antwort {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-light);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}

.haupt__antwort strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Die Punkte sind unterschiedlich lang, manche brauchen zwei Zeilen. Damit das
   ruhig bleibt: Zeilenabstand über row-gap statt Innenabstand (sonst kleben
   zweizeilige Punkte am nächsten), align-items:start gegen gestreckte Zellen,
   und text-wrap:balance verteilt den Umbruch gleichmäßig auf beide Zeilen
   statt „sechs Wörter / ein Wort". */
.haupt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 1.15rem 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(44, 44, 44, 0.14);
  list-style: none;
  max-width: 40rem;
}

.haupt__grid li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.92rem;
  line-height: 1.5;
  text-wrap: balance;
  color: var(--color-text-light);
}

.haupt__grid li::before {
  content: '';
  position: absolute;
  left: 0;
  /* Mitte der ERSTEN Zeile, damit der Punkt bei zweizeiligen Einträgen
     nicht nach unten rutscht. */
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.6;
}

/* Auf 42rem begrenzt wie das Leistungsraster darüber — dadurch bleibt rechts
   Platz für das überlappende Bild, statt dass es Text verdeckt. */
.haupt__fuss {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(44, 44, 44, 0.14);
}

.haupt__preis {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.haupt__dauer {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Kein auto-Margin: der Link würde sonst an die rechte Kante rutschen und
   unter dem überlappenden Bild landen. */
.haupt__cta {
  font-size: 0.95rem;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(181, 101, 74, 0.4);
  padding-bottom: 0.15rem;
  transition: border-color 0.2s ease;
}

.haupt__cta:hover { border-bottom-color: var(--color-accent); }

/* === Die drei anderen Wege (/angebot/) ===
   Bewusst untergeordnet: eine Liste, keine Karten. */
.wege {
  background: var(--color-blue-deep);
  color: var(--color-cream);
  padding: 4rem 0 4.5rem;
}

.wege h2 {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 0.6rem;
}

/* Kopf zentriert, die Karten darunter bleiben linksbündig. */
.wege__intro {
  font-size: 0.95rem;
  opacity: 0.7;
  margin: 0 auto 2.5rem;
  max-width: 34rem;
  text-align: center;
  text-wrap: balance;
}

/* Papier-Karte als Auftakt zu „So arbeite ich“: ragt aus der dunklen Wege-
   Fläche in die hellblaue. Zweite Papier-Geste der Seite, aber mit der ganzen
   Wege-Sektion Abstand zum Bild oben — konkurriert nicht mit ihm. */
.arbeit__kopf {
  position: relative;
  z-index: 3;
  background: var(--color-cream);
  padding: 2.25rem 2.5rem;
  max-width: 34rem;
  margin: 0 auto 3.5rem;
  box-shadow: 0 20px 50px rgba(44, 44, 44, 0.24);
  text-align: center;
}

.arbeit__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.arbeit__titel {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.arbeit__intro {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin: 0;
}

.weg {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 0.4rem 2rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.weg:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }

/* Der Paketname steht oben, nicht klein am Fuß */
.weg__name {
  grid-column: 1 / -1;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.35rem;
}

.weg__zitat {
  grid-column: 1;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-white);
}

.weg__preis {
  grid-column: 2;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.weg__text {
  grid-column: 1 / -1;
  font-size: 0.92rem;
  line-height: 1.7;
  opacity: 0.72;
  max-width: 42rem;
  margin-top: 0.3rem;
}

.weg__punkte {
  grid-column: 1 / -1;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.75rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.weg__punkte li {
  position: relative;
  padding-left: 1rem;
}

.weg__punkte li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.55;
}

.weg__meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  align-items: baseline;
  font-size: 0.85rem;
  margin-top: 0.9rem;
}

.weg__dauer { opacity: 0.5; }

.weg__cta {
  color: var(--color-cream);
  border-bottom: 1px solid rgba(242, 239, 233, 0.4);
  padding-bottom: 0.1rem;
  transition: border-color 0.2s ease;
}

.weg__cta:hover { border-bottom-color: var(--color-cream); }

@media (max-width: 700px) {
  .haupt__zitat { font-size: 1.5rem; }
  .haupt__grid { grid-template-columns: 1fr; }

  .weg { grid-template-columns: 1fr; }
  .weg__preis { grid-column: 1; }
  .weg__punkte { flex-direction: column; gap: 0.3rem; }
}

/* === Haltungs-Block mit Porträt (/angebot/) ===
   Der persönlichste Text der Seite bekommt ein Gesicht. Anderes Muster als
   das Kanten-Bild, damit sich die beiden nicht wiederholen. */
.haltung {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
  text-align: left;
  max-width: 780px;
  margin: 0 auto;
}

.haltung__bild {
  background: var(--color-cream);
  padding: 0.7rem;
  box-shadow: 0 14px 36px rgba(44, 44, 44, 0.16);
}

.haltung__bild img {
  width: 100%;
  display: block;
  filter: saturate(0.6);
}

.haltung__text p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.haltung__text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 700px) {
  .haltung {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .haltung__bild {
    max-width: 200px;
  }
}

/* Drei Wege als gestapelte Karten. Innen zweispaltig: links die Identität
   (Label, Honorar, Titel), rechts Leistungen und Kontakt. Nutzt die Breite,
   damit der Text nicht als schmale Spalte umbricht. */
.wege-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.wegkarte {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 2rem 2.25rem;
  transition: background 0.4s ease;
}

.wegkarte:hover { background: rgba(255, 255, 255, 0.11); }

.wegkarte h3 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: none;
  letter-spacing: 0;
  margin: 0.15rem 0 0;
}

/* Das Label ist hier nur noch die Wegnummer — als Ziffer gesetzt statt als
   gesperrte Versalzeile, sonst wirkt eine einzelne Zahl wie ein Fehler. */
.wegkarte .offer-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-accent-light);
  opacity: 0.85;
  margin-bottom: 0.9rem;
}

.wegkarte .offer-price {
  font-size: 1.4rem;
  margin-bottom: 0.15rem;
}

/* Erklärabsatz über der Punkteliste. Etwas heller als die Liste, damit die
   Karte nicht zur Textwand wird. */
.wegkarte__text {
  font-size: 0.92rem;
  line-height: 1.75;
  opacity: 0.78;
  margin-bottom: 1.35rem;
}

.wegkarte__for {
  margin-top: 0.9rem;
  font-size: 0.88rem;
  line-height: 1.55;
  opacity: 0.68;
}

.wegkarte__body {
  display: flex;
  flex-direction: column;
}

.wegkarte__body ul {
  list-style: none;
  margin: 0 0 auto;
}

.wegkarte__body li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1.15rem;
  font-size: 0.92rem;
  opacity: 0.82;
}

.wegkarte__body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-light);
}

.wegkarte__fuss {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.wegkarte__fuss .offer-note {
  margin: 0;
  max-width: 24rem;
}

.wegkarte__fuss .offer-cta { flex-shrink: 0; }

@media (max-width: 640px) {
  .wegkarte {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
  }
  .wegkarte__fuss {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
  }
}

/* === Bild über der Sektionskante (/angebot/) ===
   Ein einzelnes Bild sitzt auf der Grenze zwischen der cremefarbenen Intro-
   und der dunkelblauen Paket-Sektion und deckt ein Stück beider Flächen ab.
   Text weicht seitlich aus, statt darunter zu verschwinden. Passiert genau
   einmal auf der Seite. */
.kante {
  position: relative;
}

/* Das Bild hängt an der UNTERKANTE der hellen Sektion und ragt von dort in
   die dunkle hinein — unabhängig davon, wie lang der Text darüber wird. */
.kante__quelle {
  position: relative;
}

.kante__bild {
  position: absolute;
  bottom: -8rem;
  /* Bricht bewusst nach rechts aus dem Textraster aus — schafft links Platz
     für den Fließtext und lässt die Seite atmen. */
  right: max(1.5rem, calc((100vw - var(--max-width)) / 2 - 5rem));
  width: min(42%, 27rem);
  z-index: 2;
  background: var(--color-cream);
  padding: 0.8rem;
  box-shadow: 0 20px 50px rgba(44, 44, 44, 0.22);
}

.kante__bild img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 72%;
  filter: saturate(0.45) sepia(0.12) brightness(0.95);
  display: block;
}

/* Die Zeichnung ist hochformatig und läuft ungeschnitten. Damit sie nach oben
   nicht über den Textblock hinauswächst, ist der Rahmen schmaler als beim
   Querformat-Foto — die Höhe ergibt sich aus der Breite. */
.kante__bild--zeichnung {
  width: min(32%, 20rem);
}

/* Volle Höhe, damit Krone und Wurzel im Bild bleiben — ein Beschnitt auf
   Fotohöhe würde beide abschneiden. Der Filter bleibt schwächer, sonst kippt
   das warme Holz ins Graue. */
.kante__bild--zeichnung img {
  height: auto;
  object-fit: contain;
  filter: saturate(0.7) sepia(0.06);
}

/* Die Textbereiche, die dem Bild ausweichen müssen */
.kante .problem-text,
.kante .pakete-kopf {
  text-align: left;
  padding-right: min(36%, 23rem);
}

/* Oberhalb des Bildes ist Platz — der erste Absatz läuft auf volle Breite und
   erst der Text auf Bildhöhe rückt ein. */
.kante .problem-text > p:first-child {
  padding-right: 0;
  margin-right: calc(min(36%, 23rem) * -1);
}

.kante .pakete-kopf h2,
.kante .pakete-kopf .section-divider {
  text-align: left;
  margin-left: 0;
}

.kante .offer-chooser {
  margin-left: 0;
}

/* Genug Platz unter dem Text, damit das Bild nicht hineinragt */
.kante__quelle {
  padding-bottom: 4rem;
}

/* Nur die Überschrift der dunklen Sektion liegt auf Bildhöhe und weicht aus.
   Die Entscheidungshilfe darunter läuft wieder auf volle Breite. */
.kante .pakete-kopf {
  padding-right: min(36%, 23rem);
}

@media (max-width: 900px) {
  .kante__bild {
    position: static;
    width: auto;
    margin: 0 0 -3rem;
  }

  .kante__quelle {
    padding-bottom: 0;
  }

  .kante .problem-text,
  .kante .pakete-kopf {
    padding-right: 0;
  }
}

/* === Pakete auf /angebot/ ===
   Gestapelte Zeilen statt Kachel-Raster: links die harten Fakten (Honorar,
   Dauer), rechts der Text. Vollständige Leistungen liegen im Akkordeon, damit
   die Seite nicht als Vergleichstabelle gelesen wird. */
/* Abstand ZWISCHEN den Paketen deutlich größer als der Innenabstand — sonst
   verschwimmen die vier Blöcke zu einer Fläche (Nähe gruppiert stärker als
   jeder Rahmen). */
.offers-stack {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: left;
}

.offer-row {
  display: grid;
  grid-template-columns: 215px 1fr;
  gap: 2.5rem;
  padding: 1.75rem 2rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.4s ease, border-color 0.4s ease;
}

/* Das Kernangebot bekommt mehr Luft als die drei kompakten darunter */
.offer-row--kern {
  padding: 2.5rem 2rem;
}

.offer-row:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Das Kernangebot wird über Fläche und Typografie markiert, nicht zusätzlich
   über einen Akzentbalken — ein Signal genügt, drei sind Dekoration. */
.offer-row--kern {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.28);
}

.offer-eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.55;
  margin-bottom: 0.6rem;
}

.offer-row--kern .offer-eyebrow {
  opacity: 0.8;
}

/* Vier Honorare stehen exakt untereinander — Ziffern in einer Kolonne halten */
.offer-row .offer-price {
  margin-bottom: 0.2rem;
  font-variant-numeric: tabular-nums;
}

.offer-duration {
  font-size: 0.8rem;
  opacity: 0.5;
}

.offer-row h3 {
  color: var(--color-white);
  font-size: 1.15rem;
  font-family: var(--font-heading);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.9rem;
}

/* „Für dich, wenn …“ steht links bei den Fakten — der Satz, an dem sich die
   Leserin wiedererkennt, bevor sie irgendetwas über Leistungen liest. */
.offer-for {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.75;
}

/* Rechts steht genau EIN starker Satz: das Ergebnis. */
.offer-result {
  font-size: 1rem;
  line-height: 1.75;
  opacity: 0.85;
  margin-bottom: 1.1rem;
}

.offer-row--kern .offer-result {
  font-size: 1.2rem;
  line-height: 1.65;
  opacity: 1;
  font-family: var(--font-heading);
}

/* Akkordeon auf dunklem Grund — gleiche Mechanik wie .faq-item, helle Farben */
.offer-details {
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 0.9rem;
}

.offer-details summary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  cursor: pointer;
  list-style: none;
  transition: opacity 0.15s ease;
}

.offer-details summary:hover {
  opacity: 1;
}

.offer-details summary::-webkit-details-marker {
  display: none;
}

.offer-details summary::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.2rem;
  border-right: 2px solid var(--color-cream);
  border-bottom: 2px solid var(--color-cream);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.offer-details[open] summary::after {
  margin-top: 0.2rem;
  transform: rotate(-135deg);
}

.offer-details ul {
  list-style: none;
  margin-top: 1rem;
}

.offer-details li {
  padding: 0.3rem 0 0.3rem 1.4rem;
  position: relative;
  font-size: 0.9rem;
  opacity: 0.75;
}

.offer-details li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  opacity: 0.4;
}

.offer-details p {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  opacity: 0.6;
  font-style: italic;
}

/* Ein Weg nach vorn in jedem Paket — dezent, damit die Sektion ruhig bleibt */
.offer-cta {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--color-cream);
  border-bottom: 1px solid rgba(242, 239, 233, 0.4);
  padding-bottom: 0.15rem;
  transition: border-color 0.2s ease;
}

.offer-cta:hover {
  border-bottom-color: var(--color-cream);
}

/* Entscheidungshilfe über den Paketen: drei Wege in drei Zeilen */
.offer-chooser {
  max-width: 620px;
  margin: 0 auto 2.5rem;
  text-align: left;
  font-size: 0.95rem;
}

.offer-chooser li {
  list-style: none;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.85;
}

.offer-chooser li:last-child {
  border-bottom: none;
}

.offer-chooser a {
  color: var(--color-cream);
  border-bottom: 1px solid rgba(242, 239, 233, 0.35);
}

.offer-chooser a:hover {
  border-bottom-color: var(--color-cream);
}

.offers-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  opacity: 0.6;
  text-align: center;
  letter-spacing: 0.05em;
}

.offers-note a {
  color: var(--color-cream);
  text-decoration: underline;
}

/* === Image Divider === */
.image-divider {
  width: 100%;
  overflow: hidden;
}

.image-divider img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 60%;
  filter: saturate(0.4) sepia(0.15) brightness(0.95);
}

@media (max-width: 700px) {
  .image-divider img {
    height: 200px;
  }
}

/* === Gallery Strip === */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0.5rem;
  background-color: var(--color-cream);
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: saturate(0.4) sepia(0.15) brightness(0.95);
  transition: filter 0.6s ease;
}

.gallery-strip img:hover {
  filter: saturate(0.7) sepia(0.05) brightness(1);
}

@media (max-width: 700px) {
  .gallery-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-strip img {
    height: 180px;
  }
}

/* === Freebie === */
.freebie-box {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.freebie-box h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-blue-deep);
}

.freebie-box p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.freebie-box form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.freebie-box input[type="email"] {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  border: 1px solid #d0d0d0;
  background: white;
  font-family: var(--font-body);
  width: 260px;
}

.freebie-box input[type="email"]:focus {
  outline: none;
  border-color: var(--color-blue);
}

.freebie-note {
  font-size: 0.8rem !important;
  opacity: 0.5;
  font-style: italic;
}

/* === Testimonials === */
.testimonials-grid {
  margin-bottom: 1.5rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 2rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 550px;
  margin: 0 auto;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.testimonial-author {
  font-size: 0.8rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.testimonial-note {
  font-size: 0.8rem;
  opacity: 0.4;
  font-style: italic;
}

/* === Contact === */
.section-cta {
  background-color: var(--color-blue);
  color: var(--color-white);
  text-align: center;
  padding: 6rem 0;
}

.section-cta h2 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  text-transform: none;
  letter-spacing: 0;
  max-width: 500px;
  margin: 0 auto 1rem;
}

.section-cta .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.contact-location {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  opacity: 0.5;
  letter-spacing: 0.1em;
}

.section-kontakt {
  background-color: var(--color-cream) !important;
  color: var(--color-text);
}

.section-kontakt h2 {
  color: var(--color-text);
}

.section-kontakt .section-intro {
  color: var(--color-text-light);
}

.section-kontakt .btn-light {
  background-color: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.section-kontakt .btn-light:hover {
  background-color: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: var(--color-white);
}

.section-kontakt .contact-location {
  color: var(--color-text-light);
}

/* === Legal Pages (Impressum, Datenschutz) === */
.legal-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 22rem;
  padding: 3rem 0;
  background-color: var(--color-blue);
  background-image: linear-gradient(rgba(90, 110, 120, 0.65), rgba(90, 110, 120, 0.65)), url('/img/mountains.jpg');
  background-size: cover;
  background-position: center 60%;
  color: var(--color-white);
  text-align: center;
}

.legal-hero .back-home {
  margin: 1.8rem 0 0;
  font-size: 0.95rem;
}

.legal-hero .back-home a {
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 2px;
}

.legal-hero .back-home a:hover {
  opacity: 1;
}

.legal-hero h1 {
  max-width: 650px;
  margin: 0 auto 1rem;
  font-weight: 400;
  font-size: 2.2rem;
}

.legal-hero .hero-sub {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-page {
  background-color: var(--color-cream);
  padding: 5rem 0 5rem;
  text-align: left;
}

.legal-page--impressum .legal-content {
  text-align: center;
}

.legal-page .container {
  max-width: 680px;
}

.legal-content {
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--color-text);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--color-blue-deep);
  letter-spacing: normal;
  text-transform: none;
  text-align: center;
  margin: 4.5rem 0 2rem;
  padding-top: 3rem;
  position: relative;
}

.legal-content h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background-color: var(--color-text);
  opacity: 0.2;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
}

.legal-content h2:first-child::before {
  display: none;
}

.legal-content h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-blue-deep);
  margin: 2.4rem 0 0.8rem;
}

.legal-content p {
  margin-bottom: 1.1rem;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 1.1rem 1.4rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--color-blue-deep);
  font-weight: 600;
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--color-accent-hover);
}

/* === Seiten-Portrait (Über mich) === */
.page-portrait {
  margin: 0 0 3rem;
  text-align: center;
}

.page-portrait img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-cta {
  margin-top: 3.5rem;
  text-align: center;
}

/* === Essay-Typografie (Über mich) — ruhig & gut lesbar === */
.legal-page .legal-content {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.legal-page .legal-content p {
  margin-bottom: 1.5rem;
}

/* Lead: erster Absatz nur ganz dezent betont */
.legal-page .legal-content > p:first-of-type {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--color-blue-deep);
  margin-bottom: 1.8rem;
}

/* Zwischenüberschriften: linksbündig & schlicht statt zentriert */
.legal-page .legal-content h2 {
  text-align: left;
  font-size: 1.5rem;
  margin: 3.4rem 0 1.1rem;
  padding-top: 0;
}

.legal-page .legal-content h2::before {
  display: none;
}

/* Kapitelnummern — nur für Ratgeber-Artikel (nicht für Impressum etc.) */
.legal-page--blog .legal-content {
  counter-reset: kapitel;
}
.legal-page--blog .legal-content h2 {
  counter-increment: kapitel;
  margin-top: 4.2rem;
  padding-top: 2.8rem;
  /* kurze Trennlinie statt durchgehender Linie */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.16));
  background-repeat: no-repeat;
  background-size: 48px 1px;
  background-position: center top;
}
.legal-page--blog .legal-content h2::before {
  display: block;
  content: 'Kapitel ' counter(kapitel, decimal-leading-zero);
  position: static;
  width: auto;
  height: auto;
  transform: none;
  background: none;
  opacity: 1;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.7rem;
}

/* Schluss-Teile (FAQ, Fazit): Trennlinie ja, aber keine Kapitelnummer */
.legal-page--blog .legal-content h2.kapitel-aus::before {
  display: none;
}

/* H3 als echte Unterüberschrift im Ratgeber (statt Mini-Großbuchstaben) */
.legal-page--blog .legal-content h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: normal;
  color: var(--color-blue-deep);
  margin: 2.6rem 0 1rem;
}

/* Antwort-Box am Artikelanfang (Shortcode {{< kurz-knapp >}}) */
.legal-page--blog .legal-content .kurz-knapp {
  background: var(--color-cream-dark);
  border-radius: 6px;
  padding: 1.4rem 1.7rem;
  margin: 0 0 2.6rem;
}
.legal-page--blog .legal-content .kurz-knapp__label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin: 0 0 0.7rem;
}
.legal-page--blog .legal-content .kurz-knapp > p:last-child {
  margin-bottom: 0;
}
.legal-page--blog .legal-content .kurz-knapp ul {
  margin: 0.7rem 0;
}

/* Eigenständiger Trenner (Shortcode {{< trenner >}}) — kurze zentrierte Linie */
.legal-page--blog .legal-content .text-trenner {
  border: none;
  width: 48px;
  height: 1px;
  margin: 2.8rem auto;
  background: rgba(0, 0, 0, 0.16);
}

/* Bilder im Essay-Fließtext */
.legal-page .essay-figure {
  margin: 2.8rem 0;
}

.legal-page .essay-figure img {
  width: auto;
  max-width: 100%;
  max-height: 75vh;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}

.legal-page .essay-figure figcaption {
  margin-top: 0.7rem;
  font-size: 0.92rem;
  font-style: italic;
  color: var(--color-text-light);
  text-align: center;
}

/* Breiter Kapitel-Trenner (Banner zwischen Abschnitten) */
.legal-page .essay-figure--divider {
  margin: 3.8rem 0;
}
.legal-page .essay-figure--divider img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

/* Pull-Quotes: im Maß deiner Startseiten-Zitate */
.legal-page .legal-content blockquote {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--color-blue);
  font-style: italic;
  margin: 2.6rem 0;
  padding-left: 1.4rem;
  border-left: 2px solid var(--color-blue);
}

.legal-page .legal-content blockquote p {
  margin: 0;
}

@media (max-width: 700px) {
  .legal-page .legal-content > p:first-of-type {
    font-size: 1.12rem;
  }
  .legal-page .legal-content h2 {
    font-size: 1.3rem;
    margin: 2.8rem 0 1rem;
  }
  .legal-page .legal-content blockquote {
    font-size: 1.18rem;
  }
}

@media (max-width: 700px) {
  .legal-hero {
    min-height: 17rem;
    padding: 2.5rem 0;
  }
  .page-portrait img {
    width: 160px;
    height: 160px;
  }
  .legal-hero h1 {
    font-size: 1.7rem;
  }
  .legal-page {
    padding: 3.5rem 0;
  }
  .legal-content h2 {
    font-size: 1.3rem;
    margin: 3.5rem 0 1.6rem;
    padding-top: 2.2rem;
  }
}

/* === Footer === */
.footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
  background-color: var(--color-cream);
  letter-spacing: 0.05em;
}

.footer a {
  color: var(--color-text-light);
}

.footer a:hover {
  color: var(--color-accent);
}

/* === Responsive === */
@media (max-width: 700px) {
  h1 {
    font-size: 1.7rem;
  }

  .hero {
    padding: 5rem 0 4.5rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    max-width: 200px;
    margin: 0 auto;
  }

  .projects-grid,
  .offers-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  /* Pakete auf /angebot/: Meta-Spalte wandert über den Text */
  .offer-row,
  .offer-row--kern {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.75rem 1.5rem;
  }

  .offer-for {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  .offer-row--kern .offer-result {
    font-size: 1.1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .process-grid::before {
    display: none;
  }

  .freebie-box form {
    flex-direction: column;
    align-items: center;
  }
  .freebie-box input[type="email"] {
    width: 100%;
  }

  .section-cta {
    padding: 4rem 0;
  }

  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* === Site-Header / Navigation === */
.site-header {
  background-color: var(--color-cream);
  border-bottom: 1px solid var(--color-cream-dark);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}
.site-header__brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text);
  text-decoration: none;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.site-nav a {
  font-size: 0.95rem;
  color: var(--color-text-light);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.site-nav a:hover { color: var(--color-text); }
.site-nav a.is-active {
  color: var(--color-text);
  border-bottom-color: var(--color-accent);
}

/* === Breadcrumb (Blog-Artikel) === */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb a {
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.breadcrumb a:hover { opacity: 0.85; }
.breadcrumb__current { opacity: 0.8; }
.blog-meta { margin-top: 0.8rem; font-size: 0.9rem; opacity: 0.85; }

/* Autor/Datum am Anfang des Artikeltextes (nicht im Header) */
.blog-meta--inline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  margin: 0 0 1.8rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--color-text-light);
  font-size: 0.95rem;
}
/* höhere Spezifität als die „Lead"-Regel (.legal-content > p:first-of-type) */
.legal-page .legal-content p.blog-meta--inline {
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--color-text-light);
}
.blog-meta--inline .byline-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url('/img/viktoria.jpg');
  background-repeat: no-repeat;
  background-size: 165%;
  background-position: 50% 34%;
}
.blog-meta--inline a { color: var(--color-text-light); }
.blog-meta--inline a:hover { color: var(--color-accent); }
.blog-cta {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-cream-dark);
  font-size: 1.05rem;
  color: var(--color-text);
}
.blog-cta a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent);
  white-space: nowrap;
}
.blog-cta a:hover { color: var(--color-accent-hover); border-color: var(--color-accent-hover); }
.blog-back { margin-top: 1.5rem; font-size: 0.95rem; }
.blog-back a { color: var(--color-blue-dark); text-decoration: none; }
.blog-back a:hover { text-decoration: underline; }

/* === Blog-Liste === */
.blog-list { padding: 4rem 0 5rem; }
.blog-intro { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.blog-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid var(--color-cream-dark);
  border-radius: 4px;
  padding: 1.6rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.blog-card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.blog-card__img { display: block; margin-bottom: 1.2rem; }
.blog-card__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.blog-card__date {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}
.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.3;
  margin: 0 0 0.7rem;
}
.blog-card__title a { color: var(--color-text); text-decoration: none; }
.blog-card__title a:hover { color: var(--color-accent); }
.blog-card__summary {
  color: var(--color-text-light);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.4rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__btn { align-self: flex-start; margin-top: auto; }
.blog-empty { text-align: center; color: var(--color-text-light); padding: 2rem 0; }

@media (max-width: 600px) {
  .site-header__inner { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .site-nav { gap: 1.1rem; }
  .blog-cards { grid-template-columns: 1fr; }
}

/* ── Inhaltsverzeichnis (Ratgeber-Artikel) ───────────────────────────── */
.ratgeber-layout .legal-content { min-width: 0; }

.toc {
  background: var(--color-cream-dark);
  border-radius: 6px;
  padding: 1.1rem 1.5rem;
  margin: 0 0 2.5rem;
}

.toc summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  cursor: pointer;
  list-style: none;
}

.toc summary::-webkit-details-marker { display: none; }

.toc summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.2rem;
  border-right: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.toc[open] summary::after {
  margin-top: 0.15rem;
  transform: rotate(-135deg);
}

.toc #TableOfContents ul {
  margin: 1rem 0 0.2rem;
  padding: 0;
  list-style: none;
  columns: 2;
  column-gap: 2.5rem;
  counter-reset: tocnum;
}

.toc #TableOfContents li {
  margin: 0 0 0.7rem;
  position: relative;
  break-inside: avoid;
  counter-increment: tocnum;
}

.toc #TableOfContents a {
  display: flex;
  align-items: baseline;
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 0.15s ease;
}

/* Kapitelnummer vor dem Eintrag — spiegelt die Nummern im Artikel */
.toc #TableOfContents a::before {
  content: counter(tocnum, decimal-leading-zero);
  flex-shrink: 0;
  margin-right: 0.55rem;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
}

/* FAQ + Fazit (letzte zwei) ohne Nummer — wie im Artikel */
.toc #TableOfContents li:nth-last-child(-n+2) a::before {
  content: '';
  margin-right: 0;
}

.toc #TableOfContents a:hover {
  color: var(--color-accent);
}

/* Handy: eine Spalte */
@media (max-width: 600px) {
  .toc #TableOfContents ul { columns: 1; }
}

/* Breites Fenster: echtes zweispaltiges Layout — breite TOC-Spalte links,
   Überschrift und Text nach rechts eingerückt und miteinander ausgerichtet. */
@media (min-width: 1200px) {
  /* Textbereich verbreitern, damit links Platz für die TOC-Spalte ist.
     Der Header bleibt unverändert (volle Breite, normale Position). */
  .legal-page--blog .container {
    max-width: 1180px;
  }
  .ratgeber-layout {
    display: flex;
    align-items: flex-start;
    gap: 3.5rem;
  }
  .ratgeber-layout .legal-content {
    flex: 1 1 auto;
    min-width: 0;
  }
  .toc-side {
    flex: 0 0 280px;
    position: sticky;
    top: 2rem;
  }
  /* CTA + Zurück-Link unter dem Text ebenfalls einrücken */
  .legal-page--blog > .container > .blog-cta,
  .legal-page--blog > .container > .blog-back {
    padding-left: calc(280px + 3.5rem);
  }
  /* Spalten-Optik: leichter, ohne Box, einspaltig */
  .toc-side .toc {
    background: none;
    border-left: 2px solid var(--color-blue);
    border-radius: 0;
    padding: 0.1rem 0 0.1rem 1.1rem;
    margin: 0;
  }
  .toc-side #TableOfContents ul {
    columns: 1;
    margin-top: 0.9rem;
  }
  .toc-side #TableOfContents li {
    padding: 0;
    margin-bottom: 0.85rem;
  }
  .toc-side #TableOfContents a {
    color: var(--color-text-light);
    font-size: 0.88rem;
    line-height: 1.4;
  }
}
