/* Kanzlei Stefanie Trautwein
   Grundfarbe: Tannengrün-Leiter. Akzent (Kupfer) nur für die Haupthandlung „Anrufen“. */

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin-ext.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --p-950: #0d1714;
  --p-900: #14241e;
  --p-800: #1d3129;
  --p-700: #284438;
  --p-600: #365a4a;
  --p-500: #4f7564;
  --p-400: #789a8a;
  --p-300: #a9c0b5;
  --p-200: #cfddd6;
  --p-100: #e6eee9;
  --p-50:  #f3f6f4;

  --ink: #151c19;
  --text: #2b332f;
  --muted: #5b6560;
  --line: #dce2de;
  --white: #fff;

  --accent: #a9532b;
  --accent-hover: #8f4321;

  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --wrap: 1360px;
  --wrap-wide: 1680px;
  --gutter: clamp(16px, 4vw, 44px);
  --section: clamp(76px, 10vw, 130px);
  --header-h: 76px;
  --radius: 6px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.68;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
}

img, video { display: block; max-width: 100%; height: auto; }

h1, h2, h3 {
  color: var(--ink);
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.4rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(1.8rem, 1.35rem + 1.9vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem); letter-spacing: -0.015em; line-height: 1.3; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--p-700); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--p-900); }
:focus-visible { outline: 2px solid var(--p-600); outline-offset: 3px; border-radius: 2px; }

address { font-style: normal; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-wide { max-width: var(--wrap-wide); }
.measure { max-width: 68ch; }
.lead { font-size: clamp(1.1rem, 1rem + 0.45vw, 1.3rem); line-height: 1.6; color: var(--text); max-width: 60ch; }
.muted { color: var(--muted); }
.eyebrow {
  display: block;
  margin: 0 0 1.2rem;
  color: var(--p-600);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip { position: absolute; left: -999px; top: 8px; background: var(--white); padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  min-height: 44px;
  padding: 0.6em 1.15em;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--accent); color: var(--white); border: 1px solid transparent; }
.btn-primary:hover { background: var(--accent-hover); color: var(--white); }
.btn-lg { font-size: 1.0625rem; padding: 0.8em 1.5em; min-height: 52px; }
.link-arrow {
  font-weight: 600;
  text-decoration: none;
  color: var(--p-700);
  border-bottom: 1px solid var(--p-300);
  padding-bottom: 2px;
}
.link-arrow::after { content: " →"; }
.link-arrow:hover { border-color: var(--p-700); }

/* Header ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.25; }
.brand-name { color: var(--ink); font-weight: 650; font-size: 1.125rem; letter-spacing: -0.015em; }
.brand-sub { color: var(--muted); font-size: 0.8125rem; white-space: nowrap; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav ul { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.nav ul a { color: var(--text); text-decoration: none; font-size: 0.9375rem; font-weight: 500; padding: 6px 0; border-bottom: 1px solid transparent; }
.nav ul a:hover { color: var(--ink); border-color: var(--p-300); }
.nav ul a[aria-current="page"] { color: var(--ink); border-color: var(--p-700); }

.nav-toggle { display: none; }

@media (max-width: 1180px) {
  :root { --header-h: 68px; }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 4px;
    background: none;
    border: 0;
    font: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
  }
  .nav-toggle-bars, .nav-toggle-bars::before, .nav-toggle-bars::after {
    display: block; width: 20px; height: 2px; background: currentColor; border-radius: 1px; transition: transform .2s ease;
  }
  .nav-toggle-bars { position: relative; }
  .nav-toggle-bars::before, .nav-toggle-bars::after { content: ""; position: absolute; left: 0; }
  .nav-toggle-bars::before { top: -6px; }
  .nav-toggle-bars::after { top: 6px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars { background: transparent; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { transform: translateY(-6px) rotate(-45deg); }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 8px var(--gutter) 28px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open { display: flex; }
  .nav ul { flex-direction: column; gap: 0; }
  .nav ul a { display: block; padding: 14px 0; font-size: 1.0625rem; border-bottom: 1px solid var(--line); }
  .nav ul a[aria-current="page"] { border-color: var(--line); color: var(--p-700); font-weight: 600; }
  .nav-call { width: 100%; }
}

/* Sections --------------------------------------------------------------- */
.section { padding: var(--section) 0; }
.section-tint { background: var(--p-50); }
.section-dark { background: var(--p-900); color: var(--p-100); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .lead { color: var(--p-100); }
.section-dark .muted { color: var(--p-300); }
.section-dark .eyebrow { color: var(--p-300); }
.section-dark a:not(.btn) { color: var(--white); }

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .lead { margin-top: 0.4em; }
.section-foot { margin-top: clamp(36px, 5vw, 52px); }

/* Video-Header über die volle Breite ------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(460px, 78vh, 860px);
  background: var(--p-950);
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}
/* Verlauf nur, damit die Schrift lesbar bleibt */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 18, 15, 0.88) 0%, rgba(10, 18, 15, 0.72) 38%, rgba(10, 18, 15, 0.34) 68%, rgba(10, 18, 15, 0.30) 100%),
    linear-gradient(to right, rgba(10, 18, 15, 0.45) 0%, rgba(10, 18, 15, 0) 62%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(80px, 16vh, 160px);
  padding-bottom: clamp(40px, 6vw, 72px);
  color: var(--white);
}
.hero-inner .eyebrow { color: var(--p-200); margin-bottom: 0.9rem; }
.hero h1 { color: var(--white); max-width: 15ch; margin-bottom: 0.35em; }
.hero .lead { color: var(--p-100); max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: clamp(24px, 3vw, 34px); }
.hero-actions .link-arrow { color: var(--white); border-color: rgba(255, 255, 255, 0.45); }
.hero-actions .link-arrow:hover { border-color: var(--white); }
@media (max-width: 700px) {
  .hero { min-height: clamp(420px, 66vh, 640px); }
  .hero-media { object-position: 62% 40%; }
  /* Auf schmalen Schirmen nur den Verlauf von unten – sonst verschwindet das Bild */
  .hero::after {
    background: linear-gradient(to top, rgba(10, 18, 15, 0.9) 0%, rgba(10, 18, 15, 0.7) 46%, rgba(10, 18, 15, 0.32) 76%, rgba(10, 18, 15, 0.26) 100%);
  }
  .hero-inner { padding-top: clamp(64px, 12vh, 120px); }
}

/* Fotos über die ganze Bildschirmbreite ---------------------------------- */
.photo-band, .photo-strip { margin: 0; }
.photo-band { background: var(--p-900); }
.photo-band img {
  width: 100%;
  height: clamp(260px, 44vw, 620px);
  object-fit: cover;
  object-position: 50% 42%;
}
/* Schmaler Bildstreifen als ruhige Zäsur */
.photo-strip { background: var(--p-100); }
.photo-strip img {
  width: 100%;
  /* Höhe nah an den natürlichen Bildproportionen, damit die Sonnenuhr ganz zu sehen ist */
  height: clamp(180px, 31vw, 480px);
  object-fit: cover;
  object-position: 50% 34%;
}

/* Zweispaltig: Überschrift links, Inhalt rechts ------------------------- */
.split { display: grid; gap: 40px 72px; }
@media (min-width: 900px) {
  .split { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .split-sticky > :first-child { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; }
}
.split figure { margin: 32px 0 0; }
.split figure img { border-radius: var(--radius); width: 100%; }
.split figcaption { margin-top: 10px; font-size: 0.875rem; color: var(--muted); }

/* Listen mit Trennlinien -------------------------------------------------- */
.rule-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.rule-list > li { padding: 18px 0; border-bottom: 1px solid var(--line); }
.section-dark .rule-list, .section-dark .rule-list > li { border-color: rgba(255, 255, 255, 0.14); }
.rule-list strong { color: var(--ink); font-weight: 600; }
.section-dark .rule-list strong { color: var(--white); }

.cred-list > li { font-size: 1.0625rem; color: var(--ink); }
.cred-list > li:first-child { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); font-weight: 620; letter-spacing: -0.015em; }

/* Fachgebiete ------------------------------------------------------------ */
.areas { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.area-row { border-bottom: 1px solid var(--line); }
.area-row a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 40px;
  padding: 26px 0;
  color: inherit;
  text-decoration: none;
}
.area-row h3 { margin: 0; }
.area-row p { margin: 0; color: var(--muted); grid-column: 1; max-width: 62ch; }
.area-row .arrow { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: var(--p-500); font-size: 1.4rem; transition: transform .15s ease; }
.area-row a:hover h3 { color: var(--p-700); }
.area-row a:hover .arrow { transform: translateX(4px); color: var(--p-800); }
.area-row.is-main a { padding: 36px 0; }
.area-row.is-main h3 { font-size: clamp(1.5rem, 1.25rem + 1vw, 2rem); letter-spacing: -0.025em; }
.area-row.is-main p { color: var(--text); font-size: 1.0625rem; }
@media (min-width: 900px) {
  .area-row a { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr) auto; align-items: baseline; }
  .area-row p { grid-column: 2; }
  .area-row .arrow { grid-column: 3; grid-row: 1; }
}

.badge {
  display: inline-block;
  margin-left: 10px;
  padding: 3px 9px;
  border: 1px solid var(--p-300);
  border-radius: 4px;
  color: var(--p-700);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: 0.3em;
}

/* Fachgebiete-Seite */
.area-block { padding: clamp(48px, 7vw, 80px) 0; border-top: 1px solid var(--line); }
.area-block:first-child { border-top: 0; padding-top: 0; }
.area-block h2 { font-size: clamp(1.6rem, 1.3rem + 1.3vw, 2.3rem); }
.area-items { columns: 2 240px; column-gap: 40px; margin: 28px 0 0; padding: 0; list-style: none; }
.area-items li { break-inside: avoid; padding: 10px 0; border-bottom: 1px solid var(--line); }
.related { margin-top: 32px; font-size: 0.9375rem; }
.related p { margin: 0 0 6px; font-weight: 600; color: var(--ink); }
.related ul { margin: 0; padding: 0; list-style: none; }
.related li { padding: 3px 0; }

/* Haltung (dunkel) ------------------------------------------------------- */
.stance { display: grid; gap: 48px 72px; align-items: center; }
.stance-quote { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3.4rem); line-height: 1.1; letter-spacing: -0.03em; font-weight: 600; color: var(--white); margin: 0 0 0.6em; max-width: 16ch; }
.stance figure { margin: 0; }
.stance img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 20%; border-radius: var(--radius); }
.stance-points { margin-top: 36px; }
.stance-points strong { display: block; margin-bottom: 2px; }
@media (min-width: 900px) {
  .stance { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}

/* Videos ----------------------------------------------------------------- */
.videos { list-style: none; margin: 0; padding: 0; display: grid; gap: 40px 28px; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr)); }
@media (min-width: 1100px) { .videos { grid-template-columns: repeat(3, 1fr); gap: 48px 36px; } }
.video h3 { margin: 16px 0 6px; font-size: 1.125rem; }
.video p { margin: 0; color: var(--muted); font-size: 0.9375rem; }
.video-frame { position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; background: var(--p-900); }
.video-frame video, .video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--p-100);
  border: 1px solid var(--p-200);
  border-radius: var(--radius);
  color: var(--p-600);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section-tint .video-empty { background: var(--white); border-color: var(--line); }
.video-num { font-size: 2.6rem; font-weight: 300; letter-spacing: -0.03em; color: var(--p-300); line-height: 1; }
.video-consent {
  position: absolute; inset: 0; width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 20px; border: 0; cursor: pointer;
  background: var(--p-800) center / cover no-repeat;
  color: var(--white); font: inherit; text-align: center;
}
.video-consent span { font-weight: 600; font-size: 1.0625rem; padding: 10px 18px; background: rgba(13, 23, 20, 0.72); border-radius: var(--radius); }
.video-consent small { font-size: 0.75rem; padding: 4px 10px; background: rgba(13, 23, 20, 0.72); border-radius: 4px; }

/* Blog ------------------------------------------------------------------- */
.posts { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.posts > li { border-bottom: 1px solid var(--line); }
.posts a { display: grid; gap: 6px 40px; padding: 26px 0; color: inherit; text-decoration: none; }
.posts h3 { margin: 0; }
.posts a:hover h3 { color: var(--p-700); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
.posts p { margin: 0; color: var(--muted); max-width: 70ch; }
.post-meta { font-size: 0.875rem; color: var(--muted); }
.post-meta span + span::before { content: "·"; margin: 0 8px; }
@media (min-width: 900px) {
  .posts a { grid-template-columns: 200px minmax(0, 1fr); }
  .posts .post-meta { grid-row: 1 / span 2; padding-top: 4px; }
}

.article { max-width: 70ch; margin: 0 auto; }
.article-head { margin-bottom: 40px; }
.article-head h1 { font-size: clamp(2rem, 1.5rem + 2.2vw, 3.2rem); }
.article-body { font-size: clamp(1.0625rem, 1rem + 0.25vw, 1.15rem); }
.article-body ul, .article-body ol { padding-left: 1.3em; margin: 0 0 1.1em; }
.article-body li { margin-bottom: 0.4em; }
.article-body strong { color: var(--ink); }
.article-author { display: grid; grid-template-columns: 72px 1fr; gap: 18px; align-items: center; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 0.9375rem; }
.article-author img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; object-position: 60% 20%; }
.article-author p { margin: 0; }
.back { display: inline-block; margin-bottom: 28px; font-size: 0.9375rem; text-decoration: none; }
.back::before { content: "← "; }

/* Seitenkopf der Unterseiten -------------------------------------------- */
.page-intro { padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px); background: var(--p-50); border-bottom: 1px solid var(--line); }
.page-intro h1 { max-width: 18ch; }

/* Kontakt ---------------------------------------------------------------- */
.contact-grid { display: grid; gap: 48px 72px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.dl { margin: 0; border-top: 1px solid var(--line); }
.dl > div { display: grid; grid-template-columns: minmax(120px, 1fr) 2fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.dl dt { color: var(--muted); font-size: 0.9375rem; }
.dl dd { margin: 0; color: var(--ink); }
.big-phone { font-size: clamp(1.8rem, 1.4rem + 1.6vw, 2.6rem); font-weight: 620; letter-spacing: -0.03em; color: var(--ink); text-decoration: none; }
.big-phone:hover { color: var(--p-700); }

.band-grid { display: grid; gap: 36px 72px; align-items: center; }
@media (min-width: 900px) { .band-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); } }
.band-actions p { margin: 14px 0 0; }
.contact-band { padding: clamp(64px, 8vw, 104px) 0; }

/* Service / Downloads ---------------------------------------------------- */
.downloads a { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; color: var(--ink); text-decoration: none; font-weight: 550; font-size: 1.0625rem; }
.downloads a:hover { color: var(--p-700); }
.downloads small { color: var(--muted); font-weight: 400; font-size: 0.875rem; white-space: nowrap; }

/* Rechtstexte ------------------------------------------------------------ */
.legal { max-width: 72ch; }
.legal h2 { font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.7rem); margin-top: 2.2em; }
.legal h3 { font-size: 1.125rem; margin-top: 1.8em; }
.legal ul { padding-left: 1.2em; }

/* Toni ------------------------------------------------------------------- */
.pair { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); margin: 0; }
.pair img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; border-radius: var(--radius); }
.pair-large { gap: clamp(20px, 2.5vw, 32px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr)); }
.pair-large img { aspect-ratio: 3 / 2; }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--p-950); color: var(--p-300); font-size: 0.9375rem; padding: 64px 0 32px; }
.site-footer a { color: var(--p-100); }
.footer-grid { display: grid; gap: 32px 48px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.footer-name { color: var(--white); font-weight: 600; margin-bottom: 4px; }
.footer-label { color: var(--p-100); font-weight: 600; margin-bottom: 6px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 32px; padding-top: 24px; font-size: 0.875rem; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 8px 24px; list-style: none; margin: 0; padding: 0; }

/* Abstands-Helfer -------------------------------------------------------- */
.flush-top { margin-top: 0 !important; }
.mt-s { margin-top: 16px; }
.mt-m { margin-top: 28px; }
.mt-l { margin-top: 40px; }
.mt-xl { margin-top: 3em; }
.mb-xs { margin-bottom: 4px; }
.subhead { margin-top: 2.2em; }

/* Play-Symbol im Video-Platzhalter */
.video-empty::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  margin: -11px 0 0 -7px;
  border-style: solid;
  border-width: 11px 0 11px 18px;
  border-color: transparent transparent transparent var(--p-300);
}

@media (max-width: 560px) {
  .brand-sub { white-space: normal; }
  .header-inner { gap: 12px; }
}

/* Zwischenüberschriften in Blogbeiträgen */
.article-body h2 { font-size: clamp(1.35rem, 1.2rem + 0.6vw, 1.65rem); margin: 1.8em 0 0.6em; }
.article-body h3 { font-size: 1.2rem; margin: 1.6em 0 0.5em; }
.article-body blockquote { margin: 1.4em 0; padding-left: 1.2em; border-left: 2px solid var(--p-200); color: var(--muted); }
