/* =====================================================================
   Cinque Terre — Funnel 1 (Freebie-Funnel)
   Gemeinsames Stylesheet für alle Funnel-Seiten.
   Farb- und Schriftsystem 1:1 aus typst-book/template.typ übernommen,
   damit sich die Seiten wie eine direkte Fortsetzung des Buches anfühlen.
   ===================================================================== */

:root {
  --ink:            #2B2420;
  --ink-soft:       #5C5248;
  --terracotta:     #BE5433;
  --terracotta-soft:#E8CBBB;
  --terracotta-deep:#7A3319;
  --sea:            #1F4B4A;
  --sea-soft:       #DCE6E2;
  --gold:           #B08A4E;
  --gold-soft:      #EFE4CE;
  --gold-deep:      #7A5820;
  --cream:          #FBF7EF;
  --paper:          #FFFEFB;
  --line:           #DCD2C0;
  --rose:           #D98E7B;

  --f-cover:  "Cinzel", "Trajan Pro 3", serif;
  --f-display:"Fraunces", "Sitka Display", Georgia, serif;
  --f-body:   Georgia, "Iowan Old Style", serif;
  --f-sans:   "Lato", "Segoe UI", sans-serif;
  --f-number: "Oswald", "Segoe UI", sans-serif;

  --content-w: 42rem;
  --wide-w: 64rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1.05rem;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--sea); }

:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

h1, h2, h3 { font-family: var(--f-display); font-weight: 500; color: var(--ink); margin: 0 0 0.5em; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
}

.eyebrow--light { color: var(--gold-soft); }

/* ---------- Laufende Kopfzeile (echoes book header/footer) ---------- */
.runninghead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  border-bottom: 0.35pt solid var(--line);
  background: var(--paper);
}
.runninghead__title {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.runninghead__label {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Hero: reproduziert das Cover-Layout des Buches ---------- */
.hero-cover {
  position: relative;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}
.hero-cover::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(20,16,12,0.82) 0%, rgba(20,16,12,0) 34%),
              linear-gradient(to top, rgba(20,16,12,0.9) 0%, rgba(20,16,12,0) 40%);
}
.hero-cover__inner { position: relative; z-index: 1; padding: 2.4rem 1.5rem 2.8rem; text-align: center; }
.hero-cover__badge {
  position: absolute; z-index: 2; top: 1.2rem; right: 1.2rem;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--f-sans);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.75rem;
  border-radius: 2px;
}
.hero-cover__kicker {
  font-family: var(--f-sans);
  font-size: 0.78rem;
  letter-spacing: 0.42em;
  color: var(--gold-soft);
  margin-bottom: 1.1rem;
}
.hero-cover__title {
  font-family: var(--f-cover);
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  letter-spacing: 0.03em;
  font-weight: 600;
  color: #fff;
  margin: 0;
}
.hero-cover__rule { width: 46px; height: 1px; background: var(--gold); border: none; margin: 1rem auto; }
.hero-cover__subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  color: var(--gold-soft);
  margin-bottom: 1.6rem;
}
.hero-cover__tagline {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 1.05rem;
  max-width: 30rem;
  margin: 0 auto 1.5rem;
  color: #fff;
}
.hero-cover__meta {
  font-family: var(--f-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
}
.hero-cover__trust {
  font-family: var(--f-sans);
  font-size: 0.72rem;
  color: var(--gold-soft);
  margin-top: 0.9rem;
}

/* ---------- Generic sections ---------- */
.section { max-width: var(--content-w); margin: 0 auto; padding: 4rem 1.5rem; }
.section--wide { max-width: var(--wide-w); }
.section--tight { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.section--cream { background: var(--cream); }
.section--sea { background: var(--sea); color: #fff; }
.section--sea h1, .section--sea h2, .section--sea .eyebrow { color: var(--gold-soft); }

.rule { width: 46px; height: 1px; background: var(--terracotta); border: none; margin: 1.1rem 0 1.6rem; }
.rule--center { margin-left: auto; margin-right: auto; }

.lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 34rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--terracotta-deep); }
.btn-block { display: block; width: 100%; text-align: center; }
.btn-ghost {
  background: transparent; color: var(--ink); border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink-soft); }
.btn-decline {
  display: inline-block; font-family: var(--f-sans); font-size: 0.85rem;
  color: var(--ink-soft); text-decoration: underline; background: none; border: none;
  cursor: pointer; padding: 0.6rem 0;
}
.btn-decline:hover { color: var(--ink); }

/* ---------- Karten (Formular, Angebote) ---------- */
.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 2rem;
  position: relative;
}
.card--paper { background: var(--paper); }

/* ---------- Formular ---------- */
.form-field { margin-bottom: 0.9rem; }
.form-field label {
  display: block; font-family: var(--f-sans); font-size: 0.75rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.form-field input {
  width: 100%; font-family: var(--f-body); font-size: 1rem;
  padding: 0.7rem 0.8rem; border: 1px solid var(--line); border-radius: 2px;
  background: var(--paper); color: var(--ink);
}
.form-field input:focus { border-color: var(--gold); }
.form-note { font-size: 0.78rem; color: var(--ink-soft); margin-top: 0.8rem; }

/* ---------- Preis-Anzeige ---------- */
.price {
  font-family: var(--f-number); font-weight: 600; color: var(--terracotta-deep);
}
.price--old {
  font-family: var(--f-number); font-weight: 500; color: var(--ink-soft);
  text-decoration: line-through; margin-right: 0.5rem;
}
.price--lg { font-size: 2.6rem; }

/* ---------- Wertversprechen-Liste mit Doodle-Icons ---------- */
.value-list { list-style: none; margin: 2rem 0; padding: 0; display: grid; gap: 1.4rem; }
.value-list li { display: flex; align-items: flex-start; gap: 0.9rem; }
.value-list img { width: 34px; height: 34px; object-fit: contain; flex-shrink: 0; margin-top: 2px; }
.value-list strong { display: block; color: var(--ink); }
.value-list span { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Tabellen im Buch-Stil ---------- */
.styled-table { width: 100%; border-collapse: collapse; font-family: var(--f-sans); font-size: 0.88rem; margin: 1.5rem 0; }
.styled-table th {
  background: var(--gold-soft); color: var(--gold-deep); text-align: left;
  padding: 0.6rem 0.8rem; font-weight: 700; letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
}
.styled-table td { padding: 0.7rem 0.8rem; border-bottom: 1px solid var(--line); color: var(--ink); vertical-align: top; }
.styled-table tr:last-child td { border-bottom: none; }

/* ---------- Marginalie / Doodle-Akzente ---------- */
.doodle {
  position: absolute;
  width: 46px; height: 46px; object-fit: contain;
  opacity: 0.92; pointer-events: none;
}
@media (max-width: 640px) { .doodle { display: none; } }

/* ---------- Bestell-Zeilen ---------- */
.order-line { display: flex; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line); }
.order-line:last-of-type { border-bottom: none; }

/* ---------- Zweispaltiges Layout (Checkout) ---------- */
.grid-2 { display: grid; gap: 2.5rem; }
@media (min-width: 780px) { .grid-2 { grid-template-columns: 1.1fr 0.9fr; align-items: start; } }

.payment-box {
  border: 1px solid var(--line); border-radius: 3px; padding: 1.3rem;
  background: var(--paper); position: relative;
}
.payment-box input, .payment-box select {
  width: 100%; font-family: var(--f-body); font-size: 0.95rem;
  padding: 0.65rem 0.75rem; border: 1px solid var(--line); border-radius: 2px;
  background: #fff; color: var(--ink-soft); margin-bottom: 0.7rem;
}

/* ---------- Footer ---------- */
.footer-mini {
  text-align: center; padding: 2.5rem 1.5rem 3rem; border-top: 0.35pt solid var(--line);
  font-family: var(--f-sans); font-size: 0.72rem; color: var(--ink-soft);
}
.footer-mini img { width: 26px; margin: 0 auto 0.8rem; opacity: 0.85; }

/* ---------- Trust / Ehrlichkeits-Hinweis ---------- */
.trust-note {
  font-family: var(--f-sans); font-size: 0.82rem; color: var(--ink-soft);
  border-left: 2px solid var(--gold); padding-left: 1rem; margin: 2rem 0;
}

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack-lg > * + * { margin-top: 2.5rem; }

/* =====================================================================
   AMBLE MAGAZINE — Dachmarke
   Nameplate in Cinzel (wie das Ausgaben-Cover), Terrakotta/Creme-Familie,
   tiefes Ink für Masthead & Footer als Magazin-Rahmen.
   ===================================================================== */

/* ---------- Masthead / Nav ---------- */
.masthead {
  position: sticky; top: 0; z-index: 50;
  background: var(--ink); color: var(--cream);
}
.masthead__inner {
  max-width: var(--wide-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.7rem 1.5rem;
}
.brandmark { display: flex; align-items: baseline; gap: 0.6rem; text-decoration: none; white-space: nowrap; }
.brandmark__name {
  font-family: var(--f-cover); font-size: 1.35rem; letter-spacing: 0.16em;
  color: var(--cream); line-height: 1;
}
.brandmark__kicker {
  font-family: var(--f-sans); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
}
.brandmark__est {
  font-family: var(--f-sans); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); opacity: 0.5; white-space: nowrap;
}
.masthead__nav { display: flex; align-items: center; gap: 1.7rem; }
.masthead__nav a {
  font-family: var(--f-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; opacity: 0.78;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.masthead__nav a:hover, .masthead__nav a:focus-visible { opacity: 1; }
.masthead__nav a.is-cta { color: var(--rose); opacity: 1; }
.masthead__context {
  font-family: var(--f-sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft);
  white-space: nowrap;
}
@media (max-width: 620px) {
  .brandmark__name { font-size: 1.15rem; }
  .masthead__nav { gap: 1.1rem; }
  .masthead__nav a { font-size: 0.66rem; letter-spacing: 0.09em; }
  .masthead__nav a.hide-sm { display: none; }
  .brandmark__est { display: none; }
}

/* ---------- Marken-Hero (Magazin-Titelseite) ---------- */
.brand-hero {
  position: relative; min-height: 90vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  background-size: cover; background-position: center;
  color: #fff; overflow: hidden;
}
.brand-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(24,18,13,0.55) 0%, rgba(24,18,13,0) 26%),
              linear-gradient(to top, rgba(24,18,13,0.92) 4%, rgba(24,18,13,0.30) 42%, rgba(24,18,13,0) 68%);
}
.brand-hero__top {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.9rem;
  padding: 2.2rem 1.5rem 0; text-align: center;
}
.brand-hero__top .brandmark__name { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.brand-hero__inner {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--wide-w); margin: 0 auto; margin-top: auto;
  padding: 3rem 1.5rem clamp(2.4rem, 5vw, 3.6rem);
  animation: heroIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes heroIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.brand-hero__kicker {
  font-family: var(--f-sans); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-soft);
  margin-bottom: 1rem;
}
.brand-hero__title {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(2.6rem, 6.2vw, 4.8rem); line-height: 1.03;
  letter-spacing: -0.02em; color: #fff; margin: 0 0 1.1rem;
  max-width: 15ch; text-wrap: balance;
}
.brand-hero__title em { font-style: italic; color: var(--gold-soft); }
.brand-hero__lead {
  font-family: var(--f-body); font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.6; color: rgba(255,255,255,0.92); max-width: 46ch; margin: 0 0 1.8rem;
}
.brand-hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.brand-hero__issue {
  margin-top: 2rem; padding-top: 1.3rem; border-top: 1px solid rgba(255,255,255,0.22);
  font-family: var(--f-sans); font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-soft);
}
@media (prefers-reduced-motion: reduce) { .brand-hero__inner { animation: none; } }

/* ---------- Button-Varianten für Foto-Hero ---------- */
.btn-solid-cream { background: var(--cream); color: var(--ink); }
.btn-solid-cream:hover, .btn-solid-cream:focus-visible { background: #fff; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.55); }
.btn-outline-light:hover, .btn-outline-light:focus-visible { border-color: #fff; background: rgba(255,255,255,0.10); }

/* ---------- Manifest ---------- */
.manifesto__lead {
  font-family: var(--f-display); font-weight: 500;
  font-size: clamp(1.5rem, 3.1vw, 2.15rem); line-height: 1.34;
  color: var(--ink); max-width: 26ch; margin: 0.4rem 0 0; text-wrap: pretty;
}
.manifesto__lead em { font-style: italic; color: var(--terracotta-deep); }
.principles {
  display: grid; gap: clamp(1.6rem, 3vw, 2.6rem); margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.principle__head {
  display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.6rem;
}
.principle__head img { width: 30px; height: 30px; object-fit: contain; }
.principle h3 { font-size: 1.12rem; margin: 0; }
.principle p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; }

/* ---------- Ausgaben-Feature (Produkt) ---------- */
.issue { display: grid; gap: clamp(2rem, 5vw, 3.8rem); align-items: center; }
@media (min-width: 820px) { .issue { grid-template-columns: 0.82fr 1fr; } }
.issue__cover {
  position: relative; max-width: 340px; margin: 0 auto;
  box-shadow: 0 20px 50px rgba(43,36,32,0.30), 0 3px 10px rgba(43,36,32,0.18);
  border-radius: 2px; transform: rotate(-1.4deg);
}
.issue__badge {
  position: absolute; z-index: 2; top: -0.7rem; left: -0.7rem;
  background: var(--terracotta); color: #fff;
  font-family: var(--f-sans); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45rem 0.8rem; border-radius: 2px; transform: rotate(1.4deg);
}
.issue__num {
  font-family: var(--f-number); font-size: 0.82rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600;
}
.issue__contents { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; }
.issue__contents li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.7rem;
  color: var(--ink); line-height: 1.5;
}
.issue__contents li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 7px; height: 7px; background: var(--terracotta); border-radius: 50%;
}
.issue__buy { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.issue__price .price--lg { font-size: 2.2rem; }

/* ---------- Kommende Ausgaben ---------- */
.upcoming-grid {
  display: grid; gap: 1.5rem; margin-top: 2.2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.upcoming-item { border-top: 2px solid var(--line); padding-top: 0.9rem; }
.upcoming-item .issue__num { color: var(--ink-soft); }
.upcoming-item h3 { font-size: 1.25rem; margin: 0.3rem 0 0.2rem; }
.upcoming-item p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
.upcoming-item--soon h3 { color: var(--ink); }

/* ---------- Vollwertiger Footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 3.2rem 1.5rem 2.4rem; }
.site-footer__inner {
  max-width: var(--wide-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 2rem 3rem; justify-content: space-between;
}
.site-footer .brandmark__name { color: var(--cream); }
.site-footer__tag { font-family: var(--f-body); font-style: italic; color: var(--gold-soft); margin: 0.8rem 0 0; max-width: 30ch; }
.site-footer__links { display: flex; flex-direction: column; gap: 0.55rem; }
.site-footer__links a {
  font-family: var(--f-sans); font-size: 0.82rem; color: var(--cream);
  text-decoration: none; opacity: 0.82;
}
.site-footer__links a:hover { opacity: 1; text-decoration: underline; }
.site-footer__legal {
  max-width: var(--wide-w); margin: 2.4rem auto 0; padding-top: 1.5rem;
  border-top: 1px solid rgba(251,247,239,0.16);
  font-family: var(--f-sans); font-size: 0.72rem; color: rgba(251,247,239,0.6);
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.2rem; justify-content: space-between;
}
.site-footer__legal a { color: rgba(251,247,239,0.72); text-decoration: none; }
.site-footer__legal a:hover { color: var(--cream); text-decoration: underline; }

/* ---------- Footer-mini: Rechts-Links (auf allen Unterseiten) ---------- */
.footer-mini__links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.4rem 1rem;
  margin: 0.9rem 0 0.2rem;
}
.footer-mini__links a { color: var(--ink-soft); text-decoration: none; }
.footer-mini__links a:hover { color: var(--ink); text-decoration: underline; }

/* =====================================================================
   RECHTSSEITEN (Impressum, Datenschutz, AGB/Widerruf) & Fehlerseiten
   ===================================================================== */

/* ---------- Prosa-Container für Rechtstexte ---------- */
.legal { max-width: 44rem; margin: 0 auto; padding: 3.2rem 1.5rem 4rem; }
.legal__kicker {
  font-family: var(--f-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep);
  margin: 0 0 0.5rem;
}
.legal h1 { font-size: clamp(2rem, 5vw, 2.9rem); margin: 0 0 0.4rem; }
.legal__meta {
  font-family: var(--f-sans); font-size: 0.8rem; color: var(--ink-soft);
  margin: 0 0 2rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-size: 1.4rem; margin: 2.6rem 0 0.4rem; scroll-margin-top: 4.5rem;
  padding-top: 0.4rem;
}
.legal h3 { font-family: var(--f-sans); font-size: 1rem; font-weight: 700; color: var(--ink); margin: 1.6rem 0 0.3rem; }
.legal p, .legal li { color: var(--ink); font-size: 1rem; line-height: 1.7; }
.legal a { color: var(--sea); }
.legal ul, .legal ol { padding-left: 1.3rem; margin: 0.6rem 0 1.1rem; }
.legal li { margin-bottom: 0.4rem; }
.legal strong { color: var(--ink); }
.legal small, .legal .muted { color: var(--ink-soft); }

/* Impressum-Angabenblock */
.legal dl.identity { margin: 0.6rem 0 1.4rem; }
.legal dl.identity div { display: flex; gap: 0.8rem; padding: 0.35rem 0; border-bottom: 1px solid var(--line); }
.legal dl.identity dt {
  flex: 0 0 11rem; font-family: var(--f-sans); font-size: 0.78rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); margin: 0;
}
.legal dl.identity dd { margin: 0; color: var(--ink); }
@media (max-width: 560px) {
  .legal dl.identity div { flex-direction: column; gap: 0.1rem; }
  .legal dl.identity dt { flex-basis: auto; }
}

/* Platzhalter, die vor Livegang gefüllt werden müssen */
.legal .fill {
  background: var(--gold-soft); color: var(--gold-deep);
  padding: 0.05em 0.35em; border-radius: 2px; font-family: var(--f-sans);
  font-size: 0.9em; font-weight: 700;
}

/* Inhaltsverzeichnis */
.legal .toc {
  background: var(--cream); border: 1px solid var(--line); border-radius: 3px;
  padding: 1.2rem 1.4rem; margin: 0 0 2.2rem;
}
.legal .toc p { font-family: var(--f-sans); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin: 0 0 0.6rem; }
.legal .toc ol { margin: 0; padding-left: 1.2rem; }
.legal .toc li { margin-bottom: 0.25rem; font-size: 0.94rem; }

/* Hervorgehobener Hinweiskasten (z. B. Widerrufsverzicht) */
.legal .callout {
  border-left: 3px solid var(--terracotta); background: var(--cream);
  padding: 1rem 1.3rem; margin: 1.4rem 0; border-radius: 0 3px 3px 0;
}
.legal .callout p:last-child { margin-bottom: 0; }

/* Muster-Widerrufsformular */
.legal .form-sample {
  border: 1px dashed var(--line); background: var(--paper);
  padding: 1.3rem 1.5rem; margin: 1.2rem 0; font-size: 0.94rem;
}

.legal .back-home {
  display: inline-block; margin-top: 2.6rem; font-family: var(--f-sans);
  font-size: 0.85rem; font-weight: 700; color: var(--sea); text-decoration: none;
}
.legal .back-home:hover { text-decoration: underline; }

/* ---------- Fehlerseiten (404 / 500) ---------- */
.errorpage {
  min-height: 70vh; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 4rem 1.5rem;
  max-width: 40rem; margin: 0 auto;
}
.errorpage__code {
  font-family: var(--f-cover); font-size: clamp(4.5rem, 18vw, 8rem);
  line-height: 1; color: var(--terracotta); letter-spacing: 0.04em; margin: 0;
}
.errorpage__doodle { width: 60px; height: 60px; object-fit: contain; opacity: 0.9; margin-bottom: 1rem; }
.errorpage h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin: 0.8rem 0 0.5rem; }
.errorpage p { color: var(--ink-soft); font-size: 1.08rem; max-width: 30rem; margin: 0 auto 1.6rem; }
.errorpage .btn { margin: 0.3rem; }
.errorpage__links { margin-top: 2rem; font-family: var(--f-sans); font-size: 0.85rem; }
.errorpage__links a { color: var(--sea); margin: 0 0.6rem; }

/* =====================================================================
   EINWILLIGUNG: Cookie-/Consent-Banner + Zwei-Klick-Lösung (MailerLite)
   ===================================================================== */

/* ---------- Consent-Banner ---------- */
.cookie-banner {
  position: fixed; z-index: 200; left: 0; right: 0; bottom: 0;
  background: var(--ink); color: var(--cream);
  box-shadow: 0 -6px 24px rgba(24,18,13,0.25);
  padding: 1.1rem 1.5rem;
  animation: bannerIn 0.4s ease both;
}
@keyframes bannerIn { from { transform: translateY(100%); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .cookie-banner { animation: none; } }
.cookie-banner__inner {
  max-width: var(--wide-w); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem 1.6rem;
}
.cookie-banner__text {
  flex: 1 1 22rem; font-family: var(--f-sans); font-size: 0.82rem;
  line-height: 1.55; color: rgba(251,247,239,0.88); margin: 0;
}
.cookie-banner__text a { color: var(--gold-soft); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cookie-banner .btn { padding: 0.7rem 1.3rem; font-size: 0.78rem; }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover, .btn-cream:focus-visible { background: #fff; }
.btn-line-light { background: transparent; color: var(--cream); border-color: rgba(251,247,239,0.4); }
.btn-line-light:hover, .btn-line-light:focus-visible { border-color: var(--cream); }

/* ---------- Platzhalter für gesperrte Drittanbieter-Formulare ---------- */
.ml-consent {
  border: 1px dashed var(--gold); background: var(--paper);
  border-radius: 3px; padding: 1.6rem 1.4rem; text-align: center;
}
.ml-consent__title { font-family: var(--f-sans); font-weight: 700; font-size: 0.95rem; color: var(--ink); margin: 0 0 0.4rem; }
.ml-consent p { font-size: 0.85rem; color: var(--ink-soft); margin: 0 auto 1rem; max-width: 30rem; line-height: 1.55; }
.ml-consent p a { color: var(--sea); }
.ml-consent .btn { margin-top: 0.2rem; }
