/* ==========================================================================
   4BetterSales – globale Theme-CSS
   Gilt seitenübergreifend. Seitenspezifische Regeln kommen später separat.
   ========================================================================== */

/* ---------- Lokale Schriften ------------------------------------------ */
/*
 * Die Dateien liegen unter:
 * /wp-content/themes/blankpress/assets/fonts/
 *
 * Variable Fonts:
 * - Playfair Display: 400–900
 * - Raleway: 100–900
 */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfair-display-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfair-display-variable-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/raleway-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Raleway';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/raleway-variable-italic.woff2') format('woff2');
}

/* ---------- Design-System / Basis ------------------------------------ */
/* ---------- 1. Tokens ------------------------------------------------ */
:root {
  /* Marke (aus Live-Site gemessen, nicht erfunden) */
  --gold:        #B48454;   /* Logo-Gold (Hauptfarbton)        */
  --gold-soft:   #D69F6D;   /* Gold heller (Elementor-Akzent)  */
  --gold-deep:   #A97E63;   /* Bronze (Akzentlinien/Links-Deko)*/
  --champagne:   #EDD7B2;   /* Champagner (Flächen, dezent)    */
  --sand:        #FFF2DD;   /* Warmton sehr hell                */
  --ink:         #141414;   /* Tinte dunkel (Logo-Schwarz)      */
  --ink-soft:    #343434;   /* gemessener Textton               */
  --muted:       #6f6f6f;   /* Sekundärtext                     */
  --bg:          #ffffff;
  --bg-soft:     #f7f6f3;   /* heller Grau-Warmton              */
  --line:        #e4e1db;   /* Haarlinien                       */
  --line-strong: #cfcac1;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Raleway', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;

  --container: 1180px;
  --measure:   66ch;
  --radius:    3px;
  --header-h:  78px;

  --shadow-card: 0 1px 2px rgba(20,20,20,.05), 0 10px 30px -18px rgba(20,20,20,.22);
  --shadow-pop:  0 24px 60px -24px rgba(20,20,20,.35);

  --ease: cubic-bezier(.22,.61,.36,1);
  --dur:   .22s;

  --space-section: clamp(4.2rem, 9vw, 7.75rem);
}

/* ---------- 2. Reset / Basis ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-soft);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
html, body { overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
p { overflow-wrap: break-word; }
p, ul, ol, figure, blockquote { margin-top: 0; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.12; font-family: var(--font-display); color: var(--ink); font-weight: 700; text-wrap: balance; }
h1 { font-size: clamp(2.45rem, 5.4vw, 4.05rem); letter-spacing: -.012em; line-height: 1.04; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); letter-spacing: -.008em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.55rem); }
h4 { font-family: var(--font-body); font-weight: 700; font-size: 1.05rem; }
p { max-width: var(--measure); }
p + p { margin-top: 1em; }
a { color: var(--ink); text-decoration-color: var(--gold); text-decoration-thickness: 1.5px; text-underline-offset: .18em; transition: color var(--dur) var(--ease); }
a:hover { color: var(--gold-deep); }
:focus-visible { outline: 2px solid var(--gold-deep); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--champagne); color: var(--ink); }

/* Skip-Link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .7rem 1.2rem; font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; color:#fff; }

.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.section { padding-block: var(--space-section); }
.section--tight { padding-block: clamp(2.8rem, 6vw, 4.5rem); }
.section--soft { background: var(--bg-soft); }
.section--ink { background: var(--ink); color: rgba(255,255,255,.82); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink .kicker { color: var(--gold-soft); }
.section--ink p { color: rgba(255,255,255,.82); }

/* ---------- 3. Typo-Bausteine --------------------------------------- */
.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--font-body); font-weight: 700;
  font-size: .74rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-deep); margin: 0 0 1.1rem;
}
.kicker::before { content: ""; width: 34px; height: 1px; background: currentColor; }
.lead { font-size: 1.19rem; line-height: 1.65; color: var(--ink-soft); }
.section-head { max-width: 760px; margin-bottom: clamp(2.2rem, 5vw, 3.4rem); }

/* ---------- Wiederverwendete Typografie ------------------------------- */
/* Statement / Pull-Quote */
.band-split { display: grid; grid-template-columns: 1.3fr .85fr; gap: clamp(1.6rem, 4vw, 4rem); align-items: end; }
.band-split .statement { max-width: none; margin: 0; }
.band-split > p:not(.statement) { margin: 0; }
.band-split .link-more { justify-self: start; }
@media (max-width: 920px) { .band-split { grid-template-columns: 1fr; align-items: start; } }
.statement {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 2.85rem);
  line-height: 1.18; color: #fff; letter-spacing: -.01em; text-wrap: balance;
  max-width: 26ch;
}
.statement em { font-style: italic; color: var(--gold-soft); font-weight: 600; }
.statement--gold em { color: var(--gold-soft); }
.pullquote {
  margin: 0; padding: 0 0 0 1.4rem; border-left: 2px solid var(--gold);
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem); line-height: 1.4; color: var(--ink);
}
.pullquote .quote-src { display:block; margin-top: .8rem; font-family: var(--font-body); font-style: normal; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------- Buttons / Links ------------------------------------------ */
/* ---------- 4. Buttons / Links -------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  padding: .95rem 1.7rem; border-radius: var(--radius); text-decoration: none;
  border: 1.5px solid transparent; cursor: pointer;
  min-height: 50px; transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform .12s var(--ease);
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--gold-deep); color: #fff; }
.btn--gold { background: var(--gold); color: var(--ink); font-weight: 800; }
.btn--gold:hover { background: var(--gold-deep); color: #fff; }
.btn--outline { border-color: rgba(255,255,255,.45); color: #fff; background: transparent; }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,.06); color: #fff; }
.btn--sm { padding: .62rem 1.1rem; min-height: 42px; font-size: .9rem; }
.btn .arr { transition: transform var(--dur) var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.link-more {
  display: inline-flex; align-items: center; gap: .45rem; font-weight: 700; font-size: .95rem;
  text-decoration: none; color: var(--ink); border-bottom: 1.5px solid var(--gold);
  padding-bottom: .15rem;
}
.link-more .arr { color: var(--gold-deep); transition: transform var(--dur) var(--ease); }
.link-more:hover { color: var(--gold-deep); }
.link-more:hover .arr { transform: translateX(4px); }

/* ---------- Header / Navigation -------------------------------------- */
/* ---------- 5. Header / Navigation ----------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 90;
  background: color-mix(in srgb, #fff 88%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 6px 24px -18px rgba(20,20,20,.28); }
.nav-wrap { display: flex; align-items: center; gap: 1.4rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.site-nav { margin-left: auto; }
.site-nav > ul { display: flex; align-items: center; gap: .35rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { text-decoration: none; font-weight: 600; font-size: .97rem; color: var(--ink); padding: .5rem .72rem; border-radius: 3px; }
.site-nav a:hover { color: var(--gold-deep); }
.site-nav > ul > li > a.is-active, .site-nav .nav-btn.is-active { color: var(--gold-deep); box-shadow: inset 0 -2px 0 var(--gold); border-radius:0; }

/* Dropdown „Leistungen“ */
.has-drop { position: relative; }
.nav-btn {
  display: inline-flex; align-items: center; gap: .4rem; border: 0; background: none; cursor: pointer;
  font: inherit; font-weight: 600; font-size: .97rem; color: var(--ink); padding: .5rem .72rem;
}
.nav-btn .caret { width: 9px; height: 9px; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform var(--dur) var(--ease); }
.has-drop:hover .nav-btn .caret, .has-drop.is-open .nav-btn .caret { transform: rotate(225deg) translateY(-1px); }
.drop-panel {
  position: absolute; top: calc(100% + 12px); left: 50%; translate: -50% 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-pop); min-width: 620px;
  padding: 1.1rem; display: none; z-index: 95;
}
.drop-panel::before { content:""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-drop:hover .drop-panel, .has-drop.is-open .drop-panel { display: block; animation: drop-in .16s var(--ease); }
@keyframes drop-in { from { opacity: 0; transform: translateY(-6px);} to { opacity:1; transform: translateY(0);} }
.drop-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: .4rem; }
.drop-col h4 {
  font-family: var(--font-body); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin: .4rem .7rem .5rem;
}
.drop-link {
  display: block; padding: .62rem .7rem; border-radius: 3px; text-decoration: none;
}
.drop-link strong { display: block; font-size: .98rem; color: var(--ink); font-weight: 700; margin-bottom: .05rem; transition: color var(--dur); }
.drop-link small { display: block; font-size: .82rem; color: var(--muted); line-height: 1.45; }
.drop-link:hover { background: var(--bg-soft); }
.drop-link:hover strong { color: var(--gold-deep); }
.drop-sub { border-top: 1px solid var(--line); margin-top: .35rem; padding-top: .45rem; }

.nav-cta { margin-left: .35rem; }
.nav-toggle { display: none; }

/* Mobile Navigation */
.mobile-nav { display: none; }
@media (max-width: 1060px) {
  .site-nav, .nav-cta { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    margin-left: auto; width: 46px; height: 46px; border: 1px solid var(--line);
    background: #fff; border-radius: var(--radius); cursor: pointer; color: var(--ink);
  }
  .nav-toggle .icon-open, .nav-toggle[aria-expanded="true"] .icon-close { display: block; }
  .nav-toggle .icon-close, .nav-toggle[aria-expanded="true"] .icon-open { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav {
    border-top: 1px solid var(--line); background: #fff;
    box-shadow: 0 30px 40px -30px rgba(20,20,20,.25);
  }
  .mobile-nav .container { padding-block: .9rem 1.3rem; }
  .mobile-nav ul { list-style: none; margin: 0; padding: 0; }
  .mobile-nav a, .mobile-nav .acc-btn {
    display: flex; align-items: center; justify-content: space-between; width: 100%;
    padding: .85rem .2rem; text-decoration: none; font-weight: 600; color: var(--ink);
    border: 0; background: none; font-size: 1.06rem; font-family: var(--font-body);
    border-bottom: 1px solid var(--line); text-align: left; cursor: pointer;
  }
  .mobile-nav .acc-panel a { font-weight: 500; color: var(--ink-soft); padding-left: 1rem; font-size: .98rem; }
  .mobile-nav .acc-panel { display: none; }
  .mobile-nav .acc-item.is-open .acc-panel { display: block; }
  .mobile-nav .acc-btn .caret { width: 9px; height: 9px; border-right: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
  .mobile-nav .acc-item.is-open .caret { transform: rotate(225deg) translateY(-1px); }
  .mobile-nav .mnav-cta { margin-top: 1.2rem; width: 100%; }
  .mobile-nav .mnav-meta { margin-top: 1.4rem; font-size: .88rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 1rem; }
  .mobile-nav .mnav-meta a { border: 0; width: auto; padding: 0; font-size: .88rem; font-weight: 600; }
}

/* WordPress Admin-Bar: Sticky Header bleibt beim Bearbeiten sichtbar. */
body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* Aktive Unterseite im Dropdown / Mobile-Menü. */
.drop-link[aria-current="page"] {
  background: var(--bg-soft);
}
.drop-link[aria-current="page"] strong,
.mobile-nav a[aria-current="page"] {
  color: var(--gold-deep);
}

/* ---------- Wiederverwendete Problem-/Listen-Komponente -------------- */
.problem-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2.4rem, 6vw, 5rem); align-items: start; }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; } }
.problem-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.problem-list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: baseline;
  padding: 1.05rem 0; border-bottom: 1px solid var(--line); font-size: 1.03rem; color: var(--ink);
}
.problem-list .idx { font-family: var(--font-display); font-style: italic; color: var(--gold-deep); font-size: 1.05rem; min-width: 2ch; }
.problem-list li span strong { display:block; }
.problem-list li .fix { display: block; font-size: .9rem; color: var(--muted); margin-top: .2rem; }
.problem-list li .fix::before { content:"→ "; color: var(--gold-deep); font-weight: 700; }

/* ---------- Vertriebssystem-Diagramm (auf mehreren Seiten) ----------- */
/* ---------- 8. System-Diagramm --------------------------------------- */
.sys-diagram { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: clip; }
.sys-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.sys-mod { position: relative; padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; }
.sys-mod + .sys-mod { border-left: 1px solid var(--line); }
.sys-mod::after {
  content: ""; position: absolute; top: 50%; right: -9px; translate: 0 -50%; z-index: 2;
  width: 18px; height: 18px; border-top: 2px solid var(--gold); border-right: 2px solid var(--gold);
  transform: rotate(45deg); background: #fff;
}
.sys-mod:last-child::after { display: none; }
.sys-mod .num {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  color: var(--gold-soft); font-size: 2.6rem; line-height: 1; display: block; margin-bottom: .8rem;
}
.sys-mod h3 { margin-bottom: .5rem; }
.sys-mod p { font-size: .95rem; color: var(--muted); margin-bottom: 1rem; flex: 1 0 auto; }
.sys-mod a.link-more { font-size: .88rem; margin-top: auto; }
.sys-found {
  border-top: 2px solid var(--ink); background: var(--ink); color: rgba(255,255,255,.8);
  display: grid; grid-template-columns: auto 1fr auto; gap: clamp(1.2rem, 3vw, 2rem);
  align-items: center; padding: clamp(1.4rem, 3vw, 1.9rem) clamp(1.4rem, 3vw, 2.4rem);
  position: relative;
}
.sys-found .num { font-family: var(--font-display); font-style: italic; font-weight: 600; color: var(--gold-soft); font-size: 2.6rem; line-height: 1; }
.sys-found h3 { color: #fff; margin-bottom: .15rem; }
.sys-found p { margin: 0; font-size: .98rem; }
.sys-found .link-more { color: #fff; white-space: nowrap; }
.sys-found .link-more:hover { color: var(--gold-soft); }
.sys-loop { display: flex; gap: .8rem; align-items: center; padding: 1rem clamp(1.4rem,3vw,2.4rem) 1.25rem; background: var(--sand); font-size: .9rem; color: var(--ink-soft); border-top: 1px solid var(--line); }
.sys-loop svg { flex: 0 0 auto; }
@media (max-width: 1024px) {
  .sys-cols { grid-template-columns: 1fr; }
  .sys-mod + .sys-mod { border-left: 0; border-top: 1px solid var(--line); }
  .sys-mod::after { top: auto; right: auto; bottom: -11px; left: 2rem; transform: rotate(135deg); }
  .sys-mod:last-child::after { display: none; }
}
@media (max-width: 760px) {
  .sys-found { grid-template-columns: auto 1fr; }
  .sys-found .num { font-size: 2rem; }
  .sys-found .sys-cta { grid-column: 1 / -1; }
}

/* ---------- Wiederverwendete Checkliste ------------------------------ */
.tick-list { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: .55rem; }
.tick-list li { position: relative; padding-left: 1.9rem; max-width: 56ch; }
.tick-list li::before {
  content: ""; position: absolute; left: 0; top: .62em; width: .95em; height: .55em;
  border-left: 2px solid var(--gold-deep); border-bottom: 2px solid var(--gold-deep);
  transform: rotate(-45deg);
}

/* ---------- Karten / Raster ------------------------------------------ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
}
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.4rem, 2.4vw, 1.9rem); box-shadow: var(--shadow-card); }
.card--soft { background: var(--bg-soft); border-color: transparent; }
.card h3 { font-size: 1.3rem; }
.card .num { font-family: var(--font-display); font-style: italic; color: var(--gold-deep); font-weight: 600; font-size: 1.15rem; display: block; margin-bottom: .7rem; }
.card p { font-size: .96rem; color: var(--muted); margin-bottom: 1rem; }
.card ul { padding-left: 1.1rem; margin-bottom: 0; font-size: .95rem; }
.card li { margin-bottom: .35rem; }

/* Denkfehler (Statement-Karten) */
.denkfehler .card { border-left: 3px solid var(--gold); display: flex; flex-direction: column; }
.denkfehler .card .d-statement { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; line-height: 1.3; color: var(--ink); margin-bottom: .6rem; }
.denkfehler .card p { font-size: .93rem; }

/* ---------- Split / Bild-Text ---------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5.5vw, 5rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-card); }
.split-media::after { content:""; position:absolute; inset:auto auto -14px -14px; width:45%; height:45%; border:1px solid var(--gold); border-radius: var(--radius); z-index:-1; }
.split-figcap { margin-top: .9rem; font-size: .86rem; color: var(--muted); }
@media (max-width: 920px) { .split { grid-template-columns: 1fr; } .split--reverse .split-media { order: 0; } }

/* ---------- CTA-Band ------------------------------------------------- */
/* ---------- 14. CTA-Band ---------------------------------------------- */
.cta-band { background: var(--ink); color: #fff; position: relative; overflow: clip; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 320px at 85% 110%, rgba(180,132,84,.32), transparent 60%); pointer-events:none; }
.cta-inner { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; padding-block: clamp(2.6rem, 6vw, 4.4rem); }
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.8rem); margin-bottom: .25em; }
.cta-inner h2 em { font-style: italic; color: var(--gold-soft); font-weight: 600; }
.cta-inner p { color: rgba(255,255,255,.75); margin-bottom: 0; }
.cta-actions { display: flex; flex-direction: column; gap: .8rem; align-items: stretch; }
.cta-actions .btn { min-width: 250px; }
@media (max-width: 860px) { .cta-inner { grid-template-columns: 1fr; } .cta-actions { flex-direction: row; flex-wrap: wrap; } .cta-actions .btn { min-width: 0; } }

/* ---------- Footer --------------------------------------------------- */
/* ---------- 15. Footer ------------------------------------------------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 2.4rem; padding-block: clamp(2.6rem, 5.5vw, 4rem) 1.6rem; }
.site-footer .brand img { height: 44px; }
.footer-claim { font-size: .95rem; color: var(--muted); max-width: 34ch; margin: 1rem 0 0; }
.footer-claim strong { color: var(--ink); font-weight: 600; }
.site-footer h3 { font-family: var(--font-body); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); font-weight: 700; margin-bottom: 1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-links a { text-decoration: none; color: var(--ink-soft); font-size: .95rem; }
.footer-links a:hover { color: var(--gold-deep); }
.footer-contact { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; font-size: .95rem; color: var(--ink-soft); }
.footer-contact a { font-weight: 600; text-decoration: none; }
.footer-contact small { display:block; color: var(--muted); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; }
.footer-bottom { border-top: 1px solid var(--line); padding-block: 1.15rem; display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; align-items: center; font-size: .85rem; color: var(--muted); }
.footer-bottom .fb-claim { margin-right: auto; font-family: var(--font-display); font-style: italic; font-size: .98rem; color: var(--gold-deep); }
.footer-bottom a { color: var(--ink-soft); text-decoration: none; font-weight: 600; }
.footer-bottom a:hover { color: var(--gold-deep); }
@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Innenseiten: Page-Head ----------------------------------- */
/* ---------- 16. Innenseiten: Page-Head -------------------------------- */
.page-head { padding: clamp(2.6rem, 6vw, 4.6rem) 0 clamp(1.6rem, 3.5vw, 2.6rem); border-bottom: 1px solid var(--line); background: var(--bg); }
.page-head h1 { max-width: 18ch; }
.page-head p.lead { margin-top: 1.1rem; max-width: 60ch; }
.page-head .ph-meta { margin-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .5rem 2rem; font-size: .86rem; color: var(--muted); font-weight: 600; letter-spacing: .04em; }
.page-head .ph-meta span strong { color: var(--gold-deep); font-family: var(--font-display); font-style: italic; font-weight: 600; }
.page-head--dark { background: var(--ink); }
.page-head--dark h1 { color: #fff; }
.page-head--dark p.lead { color: rgba(255,255,255,.78); }
.page-head--dark .kicker { color: var(--gold-soft); }

/* ---------- Rechtstexte: Impressum + Datenschutz --------------------- */
/* ---------- 17. Inhaltsseiten / Rechtstexte ---------------------------- */
.legal { padding-block: clamp(2.4rem, 5vw, 4rem); }
.legal article { max-width: 780px; }
.legal h2 { font-size: 1.45rem; margin-top: 2em; }
.legal h3 { font-size: 1.15rem; margin-top: 1.6em; }
.legal p, .legal li { font-size: .98rem; overflow-wrap: anywhere; }
.legal h2 { font-size: 1.45rem; margin-top: 2em; overflow-wrap: anywhere; }
.legal ul, .legal ol { padding-left: 1.2rem; }
.legal li { margin-bottom: .4rem; }

/* ---------- Kleine globale Hilfsklassen ------------------------------ */
.small-note { font-size: .84rem; color: var(--muted); }
