/* ==========================================================================
   Daria Klisch — Stylesheet
   Aufbau: 1 Tokens · 2 Basis · 3 Layout · 4 Kopf/Fuss · 5 Bausteine
           6 Seitenteile · 7 Journal · 8 Formulare · 9 Responsive · 10 A11y
   Farben und Schriften stehen ausschliesslich in Abschnitt 1.
   ========================================================================== */

/* 0 — SCHRIFTEN =========================================================
   Lokal ausgelieferte Schriften — keine Verbindung zu Google.
   Quelle: Google Fonts, Lizenz SIL Open Font License 1.1.
   Nur die Zeichensaetze latin und latin-ext (deutsche Umlaute, Anfuehrungszeichen). */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-400-latin-ext.woff2') format('woff2');
  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;
}
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/anton-400-latin.woff2') format('woff2');
  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: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/archivo-400-latin-ext.woff2') format('woff2');
  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;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/archivo-400-latin.woff2') format('woff2');
  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: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/archivo-600-latin-ext.woff2') format('woff2');
  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;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/archivo-600-latin.woff2') format('woff2');
  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;
}


/* 1 — TOKENS ============================================================== */
:root {
  /* Lila (ersetzt das fruehere Schwarz) */
  --plum:        #33063D;   /* Ueberschriften, dunkle Flaechen */
  --plum-deep:   #2A0632;   /* Rahmen, Linien */
  --plum-ink:    #1E0524;   /* dunkelster Ton, Logo, Betonung */
  --plum-soft:   #5A2065;   /* Lila-Akzent */
  --plum-tint:   #F7F1F3;   /* Text auf lila Flaechen */

  /* Orange (Akzent)
     --accent      = dekoratives Orange: grosse Flaechen, grosse Ueberschriften.
     --accent-text = funktionales Orange fuer kleine Schrift AUF Sandtoenen:
                     dunkler, damit der Kontrast WCAG AA (4.5:1) erfuellt —
                     --accent schafft dort bei 10-12px nur 3.7-4.1.
                     Buttons dagegen tragen --accent mit reinweisser Schrift:
                     #ffffff auf #C8501F erreicht 4.54:1 und besteht AA. */
  --accent:      #C8501F;
  --accent-text: #AE4217;
  --accent-warm: #E4602B;
  --accent-deep: #A63A1E;

  /* Sand (Hintergruende) */
  --sand:        #F3EEE5;
  --sand-2:      #EDE6DA;
  --sand-3:      #F7F3EC;
  --sand-4:      #E2DACB;

  /* Linien */
  --line:        #D6CEBF;
  --line-soft:   #C6BEAF;

  /* Text */
  --text:        #4B453B;
  --text-mute:   #6B655B;
  --text-strong: #37322A;
  --text-faint:  #9A9184;

  /* Schrift */
  --font-head: Anton, "Arial Narrow", Impact, sans-serif;
  --font-body: Archivo, "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Raster */
  --wrap:  1440px;
  --gutter: 40px;

  /* Laufweiten */
  --ls-label: 0.2em;
  --ls-btn:   0.16em;
}

/* 2 — BASIS =============================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--sand);
  color: var(--plum-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  overflow-wrap: break-word;
  hyphens: auto;
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--plum);
  line-height: 1.14;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.2vw, 80px); letter-spacing: -0.015em; }  /* Größe der Startseite gilt überall */
h2 { font-size: clamp(34px, 3.6vw, 58px); }
h3 { font-size: clamp(22px, 1.7vw, 28px); }

p  { margin: 0; text-wrap: pretty; }

a { color: var(--accent-text); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--plum-ink); }

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

strong { font-weight: 600; }

::selection { background: var(--accent-warm); color: var(--sand); }

/* 3 — LAYOUT ============================================================== */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }

.band          { border-bottom: 1px solid var(--plum-deep); }
.band--pad     { padding: 64px 0; }
.band--sand2   { background: var(--sand-2); }
.band--plum    { background: var(--plum); color: var(--plum-tint); }
.band--plum h2, .band--plum h3 { color: var(--sand); }

.grid      { display: grid; gap: 56px; }
/* Grid-Kinder duerfen schrumpfen. Ohne min-width:0 sprengen lange deutsche
   Komposita ("Entscheidungsklarheit") auf schmalen Bildschirmen das Layout. */
.grid > *, .tiles > *, .postcards > *, .offer > * { min-width: 0; }
.grid--2   { grid-template-columns: 1fr 1fr; }
.grid--3   { grid-template-columns: repeat(3, 1fr); }
.grid--side{ grid-template-columns: 1fr 1.4fr; align-items: start; }
.grid--hero{ grid-template-columns: 1.35fr 1fr; }

/* Kachelraster mit Haarlinien-Fugen.
   Die Linien kommen per box-shadow von den Kacheln selbst, nicht als
   Hintergrund des Rasters. Dadurch bleiben nicht gefuellte Zellen
   unsichtbar — wichtig, wenn die Anzahl kein Vielfaches der Spalten ist. */
.tiles {
  display: grid;
  gap: 1px;
}
.tiles--2 { grid-template-columns: 1fr 1fr; }
.tiles--3 { grid-template-columns: repeat(3, 1fr); }
.tiles--4 { grid-template-columns: repeat(4, 1fr); }
.tile { background: var(--sand); padding: 28px 26px; box-shadow: 0 0 0 1px var(--line); }
.tile__no {
  font-family: var(--font-head); font-size: 13px;
  letter-spacing: 0.12em; color: var(--accent-text); display: block; margin-bottom: 12px;
}
.tile__title { font-size: clamp(19px, 1.4vw, 23px); margin-bottom: 10px; }
.tile__text  { font-size: 14.5px; line-height: 1.62; color: var(--text); }

/* 4 — KOPF UND FUSS ======================================================= */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--sand);
  border-bottom: 1px solid var(--plum-deep);
}
.site-header__inner {
  max-width: var(--wrap); margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: var(--font-head); font-size: 20px;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--plum);
  display: inline-flex; align-items: baseline; gap: 0.28em; white-space: nowrap;
}
/* Bewusst --plum und nicht --plum-ink: der dunkelste Ton liest sich bei
   20px wie Schwarz. --plum ist derselbe Lilaton wie die Ueberschriften. */
.logo:hover { color: var(--accent-text); }
.logo em { font-style: normal; color: var(--accent); }
.logo__tag {
  font-family: var(--font-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; color: var(--text-mute); text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-size: 12px; letter-spacing: var(--ls-btn); text-transform: uppercase;
  color: var(--text-mute); padding-bottom: 4px; border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav a:hover { color: var(--plum); }
.nav a[aria-current="page"] { color: var(--plum); border-bottom-color: var(--accent); }
/* Der CTA in der Navigation ist ein Button, kein Navigationslink.
   Ohne diese Regel gewinnt ".nav a" und faerbt die Schrift grau auf Orange. */
.nav a.btn { color: #ffffff; border-bottom: 0; padding: 12px 18px; }
.nav a.btn:hover { color: var(--sand); }

.site-footer { background: var(--plum); color: var(--plum-tint); }
.site-footer a { color: var(--sand); }
.site-footer a:hover { color: var(--accent-warm); }
/* Ohne diese Regel faerbt ".site-footer a" den hellen CTA sandfarben —
   sand auf Orange erreicht nur 3.0:1. Dunkles Pflaume erreicht 5.5:1. */
.site-footer a.btn--light { color: var(--plum-ink); }
.site-footer a.btn--light:hover { color: var(--plum-ink); }
.site-footer h2 { color: var(--sand); }
.footer__cols {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 56px;
  padding: 56px 0 40px;
}
.footer__label {
  font-size: 10px; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--accent-warm); display: block; margin-bottom: 18px;
}
.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; font-size: 14px; }
.footer__credit { font-size: 11px; opacity: .75; }
.footer__credit a { color: var(--sand-4); text-decoration: underline; text-underline-offset: 3px; }
.footer__credit a:hover { color: var(--accent-warm); }

.footer__bottom {
  border-top: 1px solid var(--plum-soft);
  padding: 22px 0 34px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-size: 12px; color: var(--sand-4);
}

/* Laufband */

/* 5 — BAUSTEINE =========================================================== */
.label {
  font-size: 10px; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--accent-text); display: block;
}
.label--mute { color: var(--text-mute); }

.lead { font-size: 15px; line-height: 1.65; color: var(--text); max-width: 46ch; }

.btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--accent); color: #ffffff;
  padding: 18px 26px; border: 1px solid var(--accent);
  font-size: 12px; letter-spacing: var(--ls-btn); text-transform: uppercase;
  font-family: var(--font-body); cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn:hover { background: var(--plum); border-color: var(--plum); color: var(--sand); }
.btn--ghost { background: transparent; color: var(--plum); border-color: var(--plum-deep); }
.btn--ghost:hover { background: var(--plum); color: var(--sand); }
.btn--light { background: var(--accent-warm); border-color: var(--accent-warm); color: var(--plum-ink); }
.btn--light:hover { background: var(--sand); border-color: var(--sand); color: var(--plum-ink); }

.meta { font-size: 12px; color: var(--text-mute); letter-spacing: 0.04em; }

/* Kapitelmarke: Weiterlesen ————— 01 / Situation */
.ticker { background: var(--plum); color: var(--plum-tint); overflow: hidden; border-bottom: 1px solid var(--plum-deep); }
.ticker__track { display: flex; width: max-content; animation: dk-ticker 42s linear infinite; }
.ticker__run { display: flex; align-items: center; padding: 16px 0; }
.ticker__item {
  display: flex; align-items: center; gap: 28px; padding: 0 28px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
}
.ticker__star { color: var(--accent-warm); }
@keyframes dk-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

@keyframes dk-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* 5 — BAUSTEINE =========================================================== */
.label {
  font-size: 10px; letter-spacing: var(--ls-label); text-transform: uppercase;
  color: var(--accent-text); display: block;
}

.rule { display: flex; align-items: center; gap: 16px; padding: 40px 0 28px; }
.rule span:first-child, .rule span:last-child {
  font-size: 11px; letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-mute);
}
.rule__line { flex: 1; height: 1px; background: var(--line-soft); }

/* Bild mit versetzter Farbflaeche */
.framed { position: relative; padding-top: 8px; }
.framed::before {
  content: ""; position: absolute; top: 0; right: 0;
  width: 78%; height: 62%; background: var(--accent);
}
.framed img {
  position: relative; width: 100%; margin: 24px 0 0;
  object-fit: cover; border: 1px solid var(--plum-deep);
}

/* Zitat */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.testimonials__col { display: grid; gap: 24px; }
.testimonial {
  position: relative; margin: 0; background: var(--sand); padding: 50px 28px 26px;
  box-shadow: 0 0 0 1px var(--line); border-top: 3px solid var(--accent);
}
.testimonial::before {
  content: "„"; position: absolute; top: -30px; left: 22px;
  font-family: var(--font-head); font-size: 72px; line-height: 1; color: var(--accent);
}
.testimonial blockquote { margin: 0; font-size: 15.5px; line-height: 1.68; color: var(--text-strong); }
.testimonial figcaption { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mute); line-height: 1.5; }
.testimonial figcaption b { display: block; font-size: 13px; letter-spacing: 0.04em; color: var(--plum); font-weight: 600; margin-bottom: 2px; }
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
  .testimonials__col { display: contents; }
}

.quote { font-family: var(--font-head); font-size: clamp(28px, 3vw, 46px); line-height: 1.2; color: var(--plum); text-transform: none; }
.quote__by { font-size: 12px; letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--text-mute); margin-top: 20px; }

/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 22px 0;
  font-size: clamp(16px, 1.3vw, 19px); font-weight: 600; color: var(--plum);
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-head); color: var(--accent); font-size: 22px; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { padding: 0 0 24px; font-size: 15px; line-height: 1.65; color: var(--text); max-width: 68ch; }

/* Faktenliste (zitierbar fuer KI und Suchmaschinen) */
.facts { margin: 0; border-top: 1px solid var(--line); }
.facts > div {
  display: grid; grid-template-columns: 220px 1fr; gap: 24px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.facts dt { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); }
.facts dd { margin: 0; font-size: 15px; line-height: 1.6; color: var(--text-strong); }

/* Ablauf-Schritte: bewusst anders als die Kachelraster */
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--plum-deep); }
.steps li {
  display: grid; grid-template-columns: 110px 220px 1fr; gap: 28px;
  align-items: baseline; padding: 26px 0; border-bottom: 1px solid var(--line);
}
.steps .steps__no {
  font-family: var(--font-head); font-size: clamp(30px, 3vw, 44px);
  color: var(--accent); line-height: 1;
}
.steps h3 { font-size: clamp(19px, 1.5vw, 24px); }
.steps p { font-size: 15px; line-height: 1.6; color: var(--text); max-width: 56ch; }
@media (max-width: 760px) {
  .steps li { grid-template-columns: 64px 1fr; }
  .steps p { grid-column: 2; }
}

/* Ablauf: drei Kästen mit großen Ziffern */
.ablauf { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ablauf li {
  position: relative; background: var(--sand); padding: 32px 28px 30px;
  box-shadow: 0 0 0 2px var(--plum-soft);
}
.ablauf__no {
  display: block; font-family: var(--font-head); font-size: clamp(56px, 5vw, 84px);
  line-height: 0.9; color: var(--accent); margin-bottom: 18px;
}
.ablauf h3 { font-size: clamp(20px, 1.6vw, 26px); margin-bottom: 10px; }
.ablauf p { font-size: 15.5px; line-height: 1.62; color: var(--text-strong); }
@media (max-width: 860px) { .ablauf { grid-template-columns: 1fr; } }

/* Kräftige Kästchen (Erkennst du dich?) */
.tiles--strong .tile { box-shadow: 0 0 0 2px var(--plum-soft); }
.tiles--strong .tile__text { color: var(--plum); font-weight: 600; font-size: 15.5px; }

/* Hervorgehobene Kachel (empfohlenes Angebot) */
.tile--featured { box-shadow: 0 0 0 2px var(--accent); }
.offer--featured .offer__side { box-shadow: 0 0 0 2px var(--accent); }
.tile__tag {
  display: inline-block; margin-bottom: 14px; font-size: 10px; letter-spacing: var(--ls-label);
  text-transform: uppercase; color: var(--accent-text); font-weight: 600;
}

/* Ruhige Fakten-Zeile unter dem Angebot */
.facts-line {
  margin-top: 36px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-mute); line-height: 1.9;
}

/* Zeitleiste */
.timeline { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.timeline li {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-size: 15px; color: var(--text);
}
.timeline b { font-family: var(--font-head); font-weight: 400; color: var(--accent-text); letter-spacing: 0.06em; }

/* 6 — SEITENTEILE ========================================================= */
.eyebrow {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute);
}
.eyebrow > :last-child { text-align: right; }
.eyebrow--single { grid-template-columns: 1fr; }
.eyebrow--single > :last-child { text-align: left; }

.hero { padding: 64px 0 0; }
.hero__col { display: flex; flex-direction: column; gap: 40px; }
.hero__split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  padding-top: 8px; border-top: 1px solid var(--plum-deep);
}
.hero__split p { margin-top: 18px; font-size: 16px; line-height: 1.55; max-width: 44ch; color: var(--text-strong); }
.hero__cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; padding-top: 18px; }
/* Akzentzeile in Ueberschriften — gilt auf allen Seiten, nicht nur im
   Startseiten-Hero (das war der Grund, warum Unterseiten komplett
   violett blieben, obwohl die Spans im Markup standen). */
h1 .accent, h2 .accent { color: var(--accent); }

/* Seitenkopf der Unterseiten */
.pagehead { padding: 56px 0 48px; }
.pagehead .lead { margin-top: 22px; font-size: 16px; max-width: 52ch; }

/* Angebotskarten */
.offer {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px;
  padding: 44px 0; border-bottom: 1px solid var(--line);
}
.offer:last-child { border-bottom: 0; }
.offer__no { font-family: var(--font-head); font-size: 13px; letter-spacing: 0.12em; color: var(--accent-text); }
.offer__meta { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-mute); margin-left: 14px; }
.offer h2, .offer h3 { margin: 14px 0 16px; font-size: clamp(26px, 2.4vw, 40px); }
.offer__long { font-size: 15.5px; line-height: 1.65; color: var(--text); max-width: 56ch; }
.offer__fit {
  margin-top: 22px; padding: 16px 20px; background: var(--sand-2);
  border-left: 3px solid var(--accent); font-size: 14.5px; line-height: 1.6; color: var(--text-strong);
}
.offer__fit b { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 6px; font-weight: 400; }
.offer__side { border: 1px solid var(--plum-deep); padding: 26px 24px; align-self: start; background: var(--sand-3); }
.offer__price { font-family: var(--font-head); font-size: clamp(26px, 2.2vw, 34px); color: var(--plum); }
.offer__list { list-style: none; margin: 20px 0 24px; padding: 0; display: grid; gap: 11px; }
.offer__list li { position: relative; padding-left: 26px; font-size: 14px; line-height: 1.55; color: var(--text); }
.offer__list li::before { content: "\2014"; position: absolute; left: 0; color: var(--accent-text); }

/* 7 — JOURNAL ============================================================= */
.postcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; }
.postcards--2 { grid-template-columns: 1fr 1fr; }
.postcard { background: var(--sand); padding: 28px 26px; display: flex; flex-direction: column; gap: 12px; box-shadow: 0 0 0 1px var(--line); }
.postcard:hover { background: var(--sand-3); }
.postcard__cat { font-size: 10px; letter-spacing: var(--ls-label); text-transform: uppercase; color: var(--accent-text); }
.postcard h3 { font-size: clamp(18px, 1.35vw, 22px); }
.postcard h3 a { color: var(--plum); }
.postcard h3 a:hover { color: var(--accent); }
.postcard p { font-size: 14px; line-height: 1.6; color: var(--text); }
.postcard__read { margin-top: auto; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-mute); }

/* Beitragsseite */
.article { max-width: 760px; }
.article__head { padding: 48px 0 32px; border-bottom: 1px solid var(--line); }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-mute); }
.crumbs a { color: var(--accent-text); }
.crumbs [aria-current] { color: var(--text-mute); }

.article h1 { font-size: clamp(34px, 4vw, 62px); }
.article__meta { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 20px; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); }

/* „Die kurze Antwort" — der Block, den KI-Assistenten zitieren */
.answer { margin: 36px 0; padding: 26px 28px; background: var(--sand-2); border-left: 4px solid var(--accent); }
.answer b { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 10px; font-weight: 400; }
.answer p { font-size: 16.5px; line-height: 1.62; color: var(--text-strong); }

.article__body h2 { font-size: clamp(24px, 2.2vw, 34px); margin: 44px 0 16px; }
.article__body p  { font-size: 16.5px; line-height: 1.72; color: var(--text-strong); margin-bottom: 18px; }
.article__body ul { margin: 0 0 22px; padding: 0; list-style: none; display: grid; gap: 12px; }
/* Kein Grid im <li>: gemischte Inhalte (<strong> + Fliesstext) wuerden
   sonst als eigene Grid-Zellen umbrechen — der Text landete in der
   schmalen Spiegelstrich-Spalte, ein Wort pro Zeile. */
.article__body li { position: relative; padding-left: 30px; font-size: 16px; line-height: 1.65; color: var(--text-strong); }
.article__body li::before { content: "\2014"; position: absolute; left: 0; color: var(--accent-text); }

/* Gesundheitshinweis. Bei Themen rund um Erschoepfung, Schlaf und Burnout
   rechtlich noetig und ein Vertrauenssignal fuer Google (E-E-A-T). */
.hinweis {
  margin-top: 44px; padding: 20px 24px;
  background: var(--sand-2); border-left: 4px solid var(--plum-soft);
}
.hinweis b {
  display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--plum-soft); margin-bottom: 8px; font-weight: 400;
}
.hinweis p { font-size: 14.5px; line-height: 1.62; color: var(--text-strong); }

.author {
  margin-top: 52px; padding: 26px 0 0; border-top: 1px solid var(--plum-deep);
  display: grid; grid-template-columns: 84px 1fr; gap: 22px; align-items: start;
}
.author img { border: 1px solid var(--plum-deep); }

.backlink { display: inline-block; margin: 34px 0 0; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }

/* 8 — FORMULARE =========================================================== */
.form { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.form input[type="email"], .form input[type="text"], .form textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--plum-ink);
  background: var(--sand-3); border: 1px solid var(--plum-deep);
  padding: 16px 18px; min-width: 260px; flex: 1;
}
.form textarea { width: 100%; min-height: 160px; resize: vertical; }
.form input::placeholder, .form textarea::placeholder { color: var(--text-faint); }
.form input:focus, .form textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.form__note { flex-basis: 100%; font-size: 12px; color: var(--text-mute); margin-top: 4px; }
.field { display: grid; gap: 8px; flex-basis: 100%; }
.field label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-mute); }

/* 9 — RESPONSIVE ========================================================== */
@media (max-width: 1100px) {
  :root { --gutter: 28px; }
  .grid--hero, .grid--side, .grid--2 { grid-template-columns: 1fr; gap: 40px; }
  .offer { grid-template-columns: 1fr; gap: 28px; }
  .tiles--4 { grid-template-columns: 1fr 1fr; }
  .postcards { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .logo__tag { display: none; }
}

@media (max-width: 760px) {
  :root { --gutter: 20px; }
  h1 { font-size: clamp(30px, 8.4vw, 52px); }
  h2 { font-size: clamp(24px, 6.6vw, 38px); }
  .eyebrow { grid-template-columns: 1fr; gap: 6px; }
  .eyebrow > :last-child { text-align: left; }
  .grid--3, .tiles--2, .tiles--3, .tiles--4, .postcards { grid-template-columns: 1fr; }
  .hero__split { grid-template-columns: 1fr; }
  .facts > div, .timeline li { grid-template-columns: 1fr; gap: 6px; }
  .footer__cols { grid-template-columns: 1fr; }
  .band--pad { padding: 44px 0; }
  .site-header__inner { flex-wrap: wrap; gap: 10px; padding-top: 12px; padding-bottom: 10px; }
  .nav { gap: 22px; width: 100%; }
  /* Der CTA verschwindet aus der Navigation: er wuerde abgeschnitten und
     ist ohnehin gleich darunter im Hero und im Fuss vorhanden. */
  .nav a.btn { display: none; }
  .author { grid-template-columns: 1fr; }
  .author img { width: 84px; }
}

/* 10 — ZUGAENGLICHKEIT ==================================================== */
:where(a, button, summary, input, textarea):focus-visible {
  outline: 3px solid var(--accent); outline-offset: 2px;
}
.skip {
  position: absolute; left: 0; top: 0; z-index: 100;
  transform: translateY(-120%);
  background: var(--plum); color: var(--sand); padding: 14px 20px; font-size: 13px;
}
.skip:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

@media print {
  .site-header, .site-footer, .ticker, .btn { display: none; }
  body { background: #fff; }
}
