/* ============================================================
   Friends4 Heritage — modern, aber Old Money.
   Elfenbein-Papier, Tinte, Waldgrün, sparsames Gold. Serifen nur
   für Überschriften, ruhige Sans für alles Lesbare. Hairlines statt
   Schatten, Luft statt Verläufe. Wird von den öffentlichen Seiten
   (Start, Login, Registrierung, Regeln, Transparenz, Vertrauen) geladen.
   ============================================================ */
:root {
  --h-paper: #f6f2ea;        /* Elfenbein-Grund */
  --h-paper-2: #fbf9f4;      /* helle Karte */
  --h-paper-3: #efe9dd;      /* abgesetzte Fläche */
  --h-ink: #1b1f1d;          /* Tinte */
  --h-ink-soft: #4a524d;     /* Fließtext gedämpft */
  --h-ink-mute: #7a827c;     /* Meta */
  --h-forest: #1f3d2b;       /* Primäre Akzentfarbe */
  --h-forest-2: #2b5239;     /* Hover */
  --h-gold: #b08d57;         /* Gold - nur Linien, Kicker, kleine Akzente */
  --h-gold-soft: rgba(176, 141, 87, 0.28);
  --h-line: rgba(27, 31, 29, 0.12);
  --h-line-strong: rgba(27, 31, 29, 0.22);
  --h-shadow: 0 1px 0 rgba(27, 31, 29, 0.04), 0 18px 40px -28px rgba(27, 31, 29, 0.35);
  --h-radius: 14px;
  --h-radius-lg: 20px;
  --h-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, "Times New Roman", serif;
  --h-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --h-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
  .heritage * { transition: none !important; animation: none !important; }
}

/* ---------- Grundfläche ---------- */
body.heritage {
  color: var(--h-ink);
  font-family: var(--h-sans);
  background:
    radial-gradient(1200px 600px at 50% -200px, rgba(176, 141, 87, 0.10), transparent 60%),
    var(--h-paper);
  -webkit-font-smoothing: antialiased;
}

.heritage h1, .heritage h2, .heritage h3,
.heritage .login-title, .heritage .reg-title {
  font-family: var(--h-serif);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--h-ink);
}
.heritage h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); line-height: 1.08; }
.heritage h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); line-height: 1.18; }
.heritage p { color: var(--h-ink-soft); }

/* Kicker: Kapitälchen mit Goldlinie - das Old-Money-Signal ohne Pomp */
.heritage .hero-pill,
.heritage .section-kicker,
.heritage .cta-badge,
.heritage .h-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--h-gold);
  border-radius: 0;
  padding: 0 0 0.35rem;
  color: var(--h-forest);
  font-family: var(--h-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: none;
}

/* ---------- Karten & Flächen ---------- */
.heritage .card,
.heritage .auth-card,
.heritage .login-shell,
.heritage .reg-shell,
.heritage .feature-item,
.heritage .journey-card,
.heritage .hero-metrics div {
  background: var(--h-paper-2);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-lg);
  box-shadow: var(--h-shadow);
  backdrop-filter: none;
}
.heritage .card h2 { color: var(--h-ink); }
.heritage .card p, .heritage .card li { color: var(--h-ink-soft); }
.heritage .card a, .heritage a { color: var(--h-forest); text-decoration-color: var(--h-gold); text-underline-offset: 3px; }
.heritage .hero-metrics strong, .heritage .feature-item h3, .heritage .journey-card strong { color: var(--h-forest); }
.heritage .feature-item .icon { background: var(--h-paper-3); color: var(--h-forest); }

/* ---------- Buttons: ruhig, eine Primärfarbe, Pille ---------- */
.heritage .hero-cta-btn,
.heritage .auth-card button[type="submit"],
.heritage .login-submit,
.heritage .reg-submit,
.heritage .f4-btn-dark,
.heritage .btn-accept,
.heritage .btn-save,
.heritage button.h-primary {
  background: var(--h-forest);
  color: #f6f2ea;
  border: 1px solid var(--h-forest);
  border-radius: 999px;
  padding: 0.7rem 1.35rem;
  font: 600 0.95rem/1 var(--h-sans);
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: background-color 0.18s var(--h-ease), transform 0.18s var(--h-ease);
}
.heritage .hero-cta-btn:hover,
.heritage .auth-card button[type="submit"]:hover,
.heritage .login-submit:hover,
.heritage .reg-submit:hover,
.heritage .f4-btn-dark:hover,
.heritage button.h-primary:hover { background: var(--h-forest-2); transform: translateY(-1px); }

.heritage .hero-secondary-link,
.heritage .cta-store-buttons .cta-band-link,
.heritage .btn-reject,
.heritage .footer-nav a,
.heritage button.h-secondary {
  background: transparent;
  color: var(--h-forest);
  border: 1px solid var(--h-line-strong);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font: 600 0.9rem/1 var(--h-sans);
  box-shadow: none;
}
.heritage .hero-secondary-link:hover,
.heritage .footer-nav a:hover { border-color: var(--h-gold); }

/* ---------- Formulare ---------- */
.heritage .auth-card input,
.heritage .field input,
.heritage .field select,
.heritage .field textarea,
.heritage input[type="text"],
.heritage input[type="email"],
.heritage input[type="password"] {
  background: #fff;
  border: 1px solid var(--h-line-strong);
  border-radius: 12px;
  color: var(--h-ink);
  font-family: var(--h-sans);
  transition: border-color 0.18s var(--h-ease), box-shadow 0.18s var(--h-ease);
}
.heritage .auth-card input:focus,
.heritage .field input:focus,
.heritage input:focus {
  outline: none;
  border-color: var(--h-forest);
  box-shadow: 0 0 0 3px rgba(31, 61, 43, 0.14);
}
.heritage .field, .heritage .auth-card label { color: var(--h-ink-soft); font-size: 0.9rem; }
.heritage .field-hint, .heritage .auth-hint, .heritage .login-subtitle, .heritage .reg-subtitle { color: var(--h-ink-mute); }
.heritage .text-error { color: #8a2f2a; }

/* Tabs auf der Startseite: Unterstreichung statt Kachel */
.heritage .tab-nav { background: transparent; border-bottom: 1px solid var(--h-line); border-radius: 0; padding: 0; }
.heritage .tab-nav a {
  background: transparent; color: var(--h-ink-mute); border-radius: 0; box-shadow: none;
  padding: 0.6rem 0.2rem; margin-right: 1.2rem; font-weight: 600; border-bottom: 2px solid transparent;
}
.heritage .tab-nav a.active { color: var(--h-forest); border-bottom-color: var(--h-gold); }
.heritage .auth-switch-link, .heritage .auth-back-link button { color: var(--h-forest) !important; }

/* ---------- Abschnitte ---------- */
.heritage .cta-band {
  background: var(--h-forest);
  border: 1px solid rgba(176, 141, 87, 0.35);
  border-radius: var(--h-radius-lg);
  box-shadow: var(--h-shadow);
}
.heritage .cta-band h2, .heritage .cta-band p { color: #f6f2ea; }
.heritage .cta-badge { color: var(--h-gold); border-bottom-color: var(--h-gold); }
.heritage .hero-metrics div { border-top: 2px solid var(--h-gold-soft); }

/* Hairline-Trenner mit kleinem Goldpunkt - modern, nicht verspielt */
.heritage .h-rule {
  border: 0; height: 1px; background: var(--h-line); margin: 2.2rem auto; max-width: 1140px; position: relative;
}
.heritage .h-rule::after {
  content: ""; position: absolute; left: 50%; top: -3px; width: 7px; height: 7px; border-radius: 50%;
  background: var(--h-gold); transform: translateX(-50%);
}

/* ---------- Cookie-Banner & Fußzeile ---------- */
.heritage #cookie-banner { border: 1px solid var(--h-line); background: var(--h-paper-2); box-shadow: var(--h-shadow); }
.heritage .banner-header { background: var(--h-forest); }
.heritage .cookie-category { background: var(--h-paper-3); border: 1px solid var(--h-line); }
.heritage .btn-accept, .heritage .btn-save { color: #f6f2ea; }
.heritage .btn-reject { color: var(--h-forest); }

.heritage .site-footer {
  background: transparent;
  color: var(--h-ink-mute);
  border-top: 1px solid var(--h-line);
  box-shadow: none;
}
.heritage .footer-logo { font-family: var(--h-serif); color: var(--h-ink); font-size: 1.2rem; letter-spacing: 0.02em; }
.heritage .footer-nav a { background: transparent; border-color: var(--h-line); color: var(--h-ink-soft); padding: 0.4rem 0.85rem; font-size: 0.8rem; }
.heritage .footer-language label { color: var(--h-ink-mute); }
.heritage .footer-language select, .heritage .footer-language button {
  background: #fff; color: var(--h-ink); border: 1px solid var(--h-line-strong); border-radius: 999px;
}
.heritage .site-footer p { color: var(--h-ink-mute); }

/* Rechts-/Vertrauensseiten (legal-pages.css) */
.heritage.legal, body.heritage .page { --legal-bg: transparent; --legal-card: var(--h-paper-2); --legal-text: var(--h-ink); --legal-muted: var(--h-ink-soft); --legal-border: var(--h-line); --legal-shadow: var(--h-shadow); --legal-brand: var(--h-forest); --legal-highlight: var(--h-forest); }
.heritage .hero { padding-top: 4.5rem; }
.heritage .hero p { max-width: 62ch; }

/* App-Band: Icons statt Bilddateien, ruhige Aufzaehlung mit Goldpunkt */
.heritage .cta-band-link-icon { width: 1.05rem; height: 1.05rem; flex: 0 0 auto; }
.heritage .cta-band-link { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--h-paper-2); color: var(--h-forest); border-color: transparent; }
.heritage .cta-band-link:hover { background: #fff; }
.heritage .cta-features { list-style: none; padding: 0; margin: 0.9rem 0 0; display: grid; gap: 0.45rem; }
.heritage .cta-features li { position: relative; padding-left: 1.1rem; color: rgba(246, 242, 234, 0.88); }
.heritage .cta-features li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border-radius: 50%; background: var(--h-gold); }
.heritage .footer-seo-nav { display: flex; justify-content: center; gap: 0.6rem; margin-top: 0.4rem; }
.heritage .footer-seo-nav a { background: transparent; border: 1px solid var(--h-line); border-radius: 999px; color: var(--h-ink-soft); padding: 0.4rem 0.85rem; font-size: 0.8rem; text-decoration: none; }
.heritage .footer-seo-nav a:hover { border-color: var(--h-gold); }

/* ---------- Anmeldekarte auf der Startseite (Feinschliff) ---------- */
.heritage .auth-card { padding: 1.5rem 1.5rem 1.35rem; border-radius: var(--h-radius-lg); }
.heritage .tab-nav { display: flex; gap: 1.4rem; background: transparent; border-bottom: 1px solid var(--h-line); border-radius: 0; padding: 0; margin: 0 0 1.1rem; }
.heritage .tab-nav a,
.heritage .tab-nav a.active {
  flex: 0 0 auto; text-align: left; background: transparent !important; box-shadow: none !important; border-radius: 0;
  padding: 0.4rem 0 0.6rem; min-height: 0; font-family: var(--h-serif); font-size: 1.05rem; font-weight: 500;
  letter-spacing: 0.01em; color: var(--h-ink-mute); border-bottom: 2px solid transparent; margin-bottom: -1px;
}
.heritage .tab-nav a.active { color: var(--h-ink); border-bottom-color: var(--h-gold); }
.heritage .auth-card label {
  display: block; margin: 0 0 0.9rem; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--h-ink-mute);
}
.heritage .auth-card input {
  display: block; width: 100%; margin: 0.35rem 0 0; padding: 0.62rem 0.8rem; min-height: 42px;
  font-size: 0.95rem; letter-spacing: 0; text-transform: none; color: var(--h-ink);
  background: #fff; border: 1px solid var(--h-line-strong); border-radius: 12px;
}
.heritage .auth-card input:focus { border-color: var(--h-forest); box-shadow: 0 0 0 3px rgba(31, 61, 43, 0.14); outline: none; }
.heritage .auth-card button[type="submit"] {
  width: 100%; margin-top: 0.3rem; padding: 0.78rem 1rem; min-height: 46px;
  background: var(--h-forest); color: var(--h-paper); border: 1px solid var(--h-forest); border-radius: 999px;
  font: 600 0.95rem/1 var(--h-sans); letter-spacing: 0.02em;
}
.heritage .auth-card button[type="submit"]:hover { background: var(--h-forest-2); }
.heritage .auth-switch-row { margin-top: 0.9rem; text-align: right; }
.heritage .auth-card .auth-switch-link {
  background: none !important; color: var(--h-ink-mute) !important; width: auto !important; padding: 0 !important; min-height: 0;
  font: 500 0.85rem/1.4 var(--h-sans); text-decoration: underline; text-decoration-color: var(--h-gold); text-underline-offset: 3px; box-shadow: none !important;
}
.heritage .auth-card .auth-switch-link:hover { color: var(--h-forest) !important; }
.heritage .auth-hint { margin: 0.9rem 0 0; font-size: 0.82rem; line-height: 1.5; color: var(--h-ink-mute); text-align: center; }
.heritage .auth-back-link { margin-top: 0.8rem; text-align: center; }
.heritage .auth-card .auth-back-link button {
  width: 100%; background: transparent !important; color: var(--h-forest) !important; border: 1px solid var(--h-line-strong); border-radius: 999px;
  padding: 0.7rem 1rem; min-height: 44px; font: 600 0.9rem/1 var(--h-sans); text-decoration: none; box-shadow: none;
}
.heritage .auth-card .auth-back-link button:hover { border-color: var(--h-gold); background: transparent !important; }
.heritage .auth-card .text-error { margin: 0 0 0.8rem; padding: 0.55rem 0.75rem; border: 1px solid rgba(138, 47, 42, 0.25); border-radius: 10px; background: rgba(138, 47, 42, 0.06); color: #8a2f2a; font-size: 0.88rem; }
.heritage .auth-card .text-success { margin: 0 0 0.8rem; padding: 0.55rem 0.75rem; border: 1px solid rgba(31, 61, 43, 0.25); border-radius: 10px; background: rgba(31, 61, 43, 0.06); color: var(--h-forest); font-size: 0.88rem; }
.heritage .auth-card input[type="date"] { font-family: var(--h-sans); }
.heritage .auth-card input[type="checkbox"] { display: inline-block; width: auto; min-height: 0; margin: 0 0.45rem 0 0; accent-color: var(--h-forest); vertical-align: middle; }

/* ---------- Inhaltsseiten (Impressum, Kontakt, Hilfe, Über uns …) ---------- */
body.heritage.site-page, body.heritage.site-page.site-page--light, body.heritage.site-page.site-page--dark {
  background: radial-gradient(1200px 600px at 50% -200px, rgba(176, 141, 87, 0.10), transparent 60%), var(--h-paper);
  color: var(--h-ink); font-family: var(--h-sans);
}
.heritage.site-page .wrap { max-width: 900px; margin: 3rem auto 2.5rem; padding: 0 1rem; }
.heritage.site-page .card, .heritage.site-page.site-page--light .card, .heritage.site-page.site-page--dark .card {
  background: var(--h-paper-2); border: 1px solid var(--h-line); border-radius: var(--h-radius-lg); box-shadow: var(--h-shadow); padding: 2rem 2rem 1.8rem; color: var(--h-ink);
}
.heritage.site-page .card h1, .heritage.site-page .card h2, .heritage.site-page .card h3,
.heritage.site-page.site-page--light .card h1, .heritage.site-page.site-page--light .card h2, .heritage.site-page.site-page--light .card h3 {
  font-family: var(--h-serif); font-weight: 500; color: var(--h-ink); letter-spacing: -0.005em;
}
/* Goldlinie so lang wie der Titel selbst (width: fit-content), nicht 44px. */
.heritage.site-page .card h1 { width: fit-content; max-width: 100%; font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin: 0 0 1.2rem; padding-bottom: 0.45rem; border-bottom: 0; }
.heritage.site-page .card h1::after { content: ""; display: block; width: 100%; height: 2px; background: var(--h-gold); margin-top: 0.45rem; }
.heritage.site-page .card h2 { font-size: 1.35rem; margin: 1.6rem 0 0.5rem; }
.heritage.site-page .card p, .heritage.site-page .card li { color: var(--h-ink-soft); line-height: 1.65; }
.heritage.site-page .card a { color: var(--h-forest); text-decoration-color: var(--h-gold); text-underline-offset: 3px; }
.heritage.site-page .card a.hero-cta-btn, .heritage.site-page .card a.hero-cta-btn:hover { color: var(--h-paper); text-decoration: none; }
.heritage.site-page .card a.hero-secondary-link { text-decoration: none; }
.heritage .kontakt-form { max-width: 100%; margin-top: 1.6rem; gap: 1rem; }
.heritage .kontakt-field label { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--h-ink-mute); }
.heritage .kontakt-field input, .heritage .kontakt-field select, .heritage .kontakt-field textarea {
  background: #fff; border: 1px solid var(--h-line-strong); border-radius: 12px; padding: 0.65rem 0.8rem; color: var(--h-ink); font-family: var(--h-sans);
}
.heritage .kontakt-field input:focus, .heritage .kontakt-field select:focus, .heritage .kontakt-field textarea:focus { outline: none; border-color: var(--h-forest); box-shadow: 0 0 0 3px rgba(31, 61, 43, 0.14); }
.heritage .kontakt-submit { background: var(--h-forest); color: var(--h-paper); border: 1px solid var(--h-forest); border-radius: 999px; padding: 0.75rem 1.4rem; font: 600 0.95rem/1 var(--h-sans); }
.heritage .kontakt-submit:hover { background: var(--h-forest-2); }
.heritage .kontakt-notice { border-radius: 10px; }
.heritage .kontakt-notice--success { background: rgba(31, 61, 43, 0.06); border: 1px solid rgba(31, 61, 43, 0.25); color: var(--h-forest); }
.heritage .kontakt-notice--error { background: rgba(138, 47, 42, 0.06); border: 1px solid rgba(138, 47, 42, 0.25); color: #8a2f2a; }

/* ---------- Cookie-Banner: Waldgrün-Kopf mit Goldakzent, lesbar ---------- */
.heritage .visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.heritage #cookie-banner { border-radius: var(--h-radius-lg); overflow: hidden; }
.heritage .banner-header { background: var(--h-forest); padding: 1.1rem 1.4rem; align-items: center; gap: 0.9rem; }
.heritage .banner-header .cookie-icon { display: none; }
.heritage .banner-header > div::before {
  content: "Privatsphäre"; display: block; margin-bottom: 0.35rem; padding-bottom: 0.25rem; width: max-content;
  border-bottom: 1px solid var(--h-gold); color: var(--h-gold); font: 600 0.68rem/1 var(--h-sans); letter-spacing: 0.16em; text-transform: uppercase;
}
.heritage .banner-header h2 { font-family: var(--h-serif); font-weight: 500; font-size: 1.25rem; color: var(--h-paper); margin: 0; }
.heritage .banner-sub { color: rgba(246, 242, 234, 0.78); font-size: 0.82rem; }
.heritage .banner-text { color: var(--h-ink-soft); }
.heritage .banner-text a { color: var(--h-forest); text-decoration-color: var(--h-gold); }
.heritage .cookie-category { background: var(--h-paper-3); border: 1px solid var(--h-line); border-radius: 14px; }
.heritage .category-info strong { color: var(--h-ink); font-family: var(--h-sans); }
.heritage .category-info p { color: var(--h-ink-soft); }
.heritage .badge-required { background: var(--h-forest); color: var(--h-paper); }
.heritage .cookie-toggle { background: var(--h-line-strong); }
.heritage .cookie-toggle:checked { background: var(--h-forest); }
.heritage .cookie-toggle:disabled { opacity: 0.55; }
.heritage .cookie-btn { border-radius: 999px; font-weight: 600; font-family: var(--h-sans); }
.heritage .btn-accept, .heritage .btn-save { background: var(--h-forest); color: var(--h-paper); border: 1px solid var(--h-forest); }
.heritage .btn-accept:hover, .heritage .btn-save:hover { background: var(--h-forest-2); }
.heritage .btn-reject { background: transparent; color: var(--h-forest); border: 1px solid var(--h-line-strong); }
.heritage .btn-reject:hover { border-color: var(--h-gold); }
.heritage #cookie-reopen { background: var(--h-paper-2); color: var(--h-forest); border: 1px solid var(--h-line-strong); border-radius: 999px; font-family: var(--h-sans); }
.heritage #cookie-success { background: var(--h-forest); color: var(--h-paper); }
.heritage .cookie-toggle:focus-visible, .heritage .cookie-btn:focus-visible, .heritage #cookie-reopen:focus-visible { outline: 3px solid rgba(31, 61, 43, 0.35); }

/* ---------- Heritage-Motion: sanfte Einblendungen (nur mit JS, nie bei reduzierter Bewegung) ---------- */
html.h-motion [data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s var(--h-ease), transform 0.7s var(--h-ease);
  transition-delay: var(--h-delay, 0ms);
  will-change: opacity, transform;
}
html.h-motion [data-reveal].is-in { opacity: 1; transform: none; }
html.h-motion .cta-band[data-reveal] { transform: translateY(18px) scale(0.985); }
html.h-motion .cta-band[data-reveal].is-in { transform: none; }
html.h-motion .hero h1[data-reveal] { transition-duration: 0.9s; }
@media (prefers-reduced-motion: reduce) {
  html.h-motion [data-reveal] { opacity: 1; transform: none; transition: none; }
}
/* Ruhige Hover-Antworten statt Effekthascherei */
.heritage .feature-item, .heritage .journey-card, .heritage .legal .card, .heritage .hero-metrics div {
  transition: transform 0.25s var(--h-ease), border-color 0.25s var(--h-ease), box-shadow 0.25s var(--h-ease);
}
.heritage .feature-item:hover, .heritage .journey-card:hover, .heritage .legal .disc-post:hover {
  transform: translateY(-2px);
  border-color: var(--h-gold-soft);
  box-shadow: 0 1px 0 rgba(27, 31, 29, 0.04), 0 24px 44px -28px rgba(27, 31, 29, 0.4);
}
.heritage a, .heritage button { transition: color 0.18s var(--h-ease), background-color 0.18s var(--h-ease), border-color 0.18s var(--h-ease), transform 0.18s var(--h-ease); }

/* ---------- Fußzeile: überall derselbe Kasten wie auf der Startseite ---------- */
.heritage .site-footer {
  max-width: 1140px;
  margin: 2.5rem auto 2rem;
  padding: 1.3rem 1.2rem 1.1rem;
  background: var(--h-paper-2);
  border: 1px solid var(--h-line);
  border-radius: var(--h-radius-lg);
  box-shadow: var(--h-shadow);
  text-align: center;
}
.heritage.site-page .site-footer, .heritage.legal .site-footer { width: calc(100% - 2rem); }

/* ── Über uns ─────────────────────────────────────────────────────────────── */
.heritage.ueber-page .ueber-lead { font-size: 1.08rem; max-width: 640px; }
.heritage.ueber-page .card section { margin-top: 2.4rem; }
.heritage.ueber-page .card h3 { font-size: 1.05rem; margin: 0 0 0.35rem; }
.heritage.ueber-page .ueber-values { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1rem; margin-top: 1rem; }
.heritage.ueber-page .ueber-value { background: var(--h-paper-2); border: 1px solid var(--h-line); border-radius: 16px; padding: 1.1rem 1.2rem; }
.heritage.ueber-page .ueber-value-icon { display: block; font-size: 1.5rem; margin-bottom: 0.5rem; }
.heritage.ueber-page .ueber-value p { margin: 0; font-size: 0.92rem; }
.heritage.ueber-page .ueber-list { padding-left: 1.2rem; }
.heritage.ueber-page .ueber-list li { margin: 0.3rem 0; }

/* ── Kopfzeile auf Inhaltsseiten: schmale Papierleiste statt Riesentitel ── */
.heritage.site-page .site-header {
  position: static;
  background: var(--h-paper);
  border-bottom: 1px solid var(--h-line);
  box-shadow: none;
  padding: 0;
}
.heritage.site-page .site-header-inner { max-width: 1140px; margin: 0 auto; min-height: 52px; padding: 0.55rem 1rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.heritage.site-page .site-header h1 { position: relative; margin: 0; font-size: 0; line-height: 0; color: transparent; }
.heritage.site-page .site-header h1::before {
  content: "Friends4";
  font: 600 1.2rem/1 var(--h-serif);
  letter-spacing: -0.01em;
  color: var(--h-ink);
}
.heritage.site-page .site-header nav { display: flex; align-items: center; gap: 0.75rem; }
.heritage.site-page .site-header nav a,
.heritage.site-page .site-header .btn-link {
  font: 600 0.9rem/1 var(--h-sans);
  color: var(--h-forest);
  background: transparent;
  border: 1px solid var(--h-line-strong);
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  text-decoration: none;
  transition: background-color 0.18s var(--h-ease), border-color 0.18s var(--h-ease);
}
.heritage.site-page .site-header nav a:hover,
.heritage.site-page .site-header .btn-link:hover { background: var(--h-paper-3); border-color: var(--h-gold-soft); }

/* ── Hilfe & Kontakt ─────────────────────────────────────────────────────── */
.heritage.help-page .help-lead { font-size: 1.05rem; max-width: 640px; }
.heritage.help-page .help-wiki-search { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 1.4rem 0 0.4rem; }
.heritage.help-page .help-wiki-search input {
  flex: 1 1 260px; min-height: 46px; padding: 0.6rem 1.1rem;
  background: var(--h-paper); border: 1px solid var(--h-line-strong); border-radius: 999px;
  color: var(--h-ink); font: 1rem var(--h-sans);
}
.heritage.help-page .help-wiki-search input:focus { outline: none; border-color: var(--h-forest); box-shadow: 0 0 0 3px rgba(31, 61, 43, 0.12); }
.heritage.help-page .help-wiki-search .hero-cta-btn { min-height: 46px; }
.heritage.help-page .card section { margin-top: 2.2rem; }
.heritage.help-page .help-topics { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0.9rem; margin-top: 0.8rem; }
.heritage.help-page .help-topic {
  display: grid; gap: 0.3rem; padding: 1rem 1.1rem;
  background: var(--h-paper-2); border: 1px solid var(--h-line); border-radius: 16px;
  color: var(--h-ink); text-decoration: none;
  transition: border-color 0.18s var(--h-ease), transform 0.18s var(--h-ease), box-shadow 0.18s var(--h-ease);
}
.heritage.help-page .help-topic:hover { border-color: var(--h-gold-soft); transform: translateY(-2px); box-shadow: var(--h-shadow); }
.heritage.help-page .help-topic strong { font-family: var(--h-serif); font-weight: 600; font-size: 1.05rem; }
.heritage.help-page .help-topic span { color: var(--h-ink-soft); font-size: 0.92rem; }
.heritage.help-page .help-wiki-link { margin-top: 0.9rem; }
.heritage.help-page .help-article-list { padding-left: 1.2rem; }
.heritage.help-page .help-article-list li { margin: 0.3rem 0; }
.heritage.help-page .card a.hero-secondary-link { display: inline-flex; }
@media (prefers-reduced-motion: reduce) { .heritage.help-page .help-topic:hover { transform: none; } }
