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

  :root {
    --paper: #F4EFE6;
    --paper-warm: #EDE6D7;
    --paper-deep: #E4DBC8;
    --sage: #7C9E7A;
    --sage-mid: #5F8260;
    --sage-deep: #44623F;
    --sage-whisper: #DCE4D5;
    --ink: #23271F;
    --ink-soft: #4A4F42;
    --ink-mute: #837C6A;
    --cream: #FBF8F1;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    background-image:
      radial-gradient(circle at 18% 12%, rgba(124,158,122,0.06), transparent 42%),
      radial-gradient(circle at 85% 8%, rgba(124,158,122,0.05), transparent 38%);
    background-attachment: fixed;
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* subtle paper grain (removed — caused black overlay on some mobile browsers) */

  .wrap { max-width: 1180px; margin: 0 auto; padding: 0 2.5rem; }
  .narrow { max-width: 760px; margin: 0 auto; padding: 0 2.5rem; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 2.5rem;
    transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
  }
  nav.scrolled {
    background: rgba(244,239,230,0.92);
    backdrop-filter: blur(14px);
    padding: 0.9rem 2.5rem;
    box-shadow: 0 1px 0 rgba(124,158,122,0.15);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0;
  }
  .nav-logo svg { display: block; }
  .nav-links { display: flex; gap: 2.4rem; list-style: none; }
  .nav-links a {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -4px;
    width: 0; height: 1px;
    background: var(--sage-mid);
    transition: width 0.25s;
  }
  .nav-links a:hover { color: var(--sage-deep); }
  .nav-links a:hover::after { width: 100%; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 9rem 0 5rem;
  }
  .hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--sage-mid);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    opacity: 0;
    animation: rise 0.9s ease 0.1s forwards;
  }
  .hero-eyebrow::before {
    content: '';
    width: 38px; height: 1px;
    background: var(--sage);
    display: inline-block;
  }
  .hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.04;
    letter-spacing: -0.015em;
    color: var(--ink);
    max-width: 16ch;
    margin-bottom: 2.2rem;
    opacity: 0;
    animation: rise 0.9s ease 0.3s forwards;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--sage-deep);
  }
  .hero-lead {
    font-size: clamp(1.05rem, 1.6vw, 1.3rem);
    font-weight: 300;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: 54ch;
    margin-bottom: 3rem;
    opacity: 0;
    animation: rise 0.9s ease 0.5s forwards;
  }
  .hero-actions {
    display: flex;
    gap: 1.6rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: rise 0.9s ease 0.7s forwards;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  }
  .btn-fill {
    background: var(--sage-deep);
    color: var(--cream);
  }
  .btn-fill:hover {
    background: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(35,39,31,0.2);
  }
  .btn-ghost {
    color: var(--ink);
    border-bottom: 1px solid var(--ink-mute);
    padding: 0.4rem 0;
    border-radius: 0;
    letter-spacing: 0.06em;
    text-transform: none;
    font-size: 0.92rem;
  }
  .btn-ghost:hover { color: var(--sage-deep); border-color: var(--sage-deep); }

  .scroll-hint {
    position: absolute;
    bottom: 2.5rem; left: 2.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-mute);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    opacity: 0;
    animation: fade 1.2s ease 1.1s forwards;
  }
  .scroll-hint .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--sage);
    animation: pulse 2s ease infinite;
  }

  /* ── REVEAL UTIL ── */
  .reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s ease, transform 0.8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }

  /* ── SECTION HEADER ── */
  .sec-label {
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage-mid);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
  }
  .sec-label::before {
    content: ''; width: 26px; height: 1px; background: var(--sage);
  }

  section { padding: 7rem 0; position: relative; }

  /* ── MANIFEST / HALTUNG ── */
  #haltung { background: var(--cream); }
  .manifest-quote {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
    line-height: 1.32;
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 2.5rem;
  }
  .manifest-quote em { font-style: italic; color: var(--sage-deep); }
  .manifest-body {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--ink-soft);
    max-width: 60ch;
  }
  .manifest-body p { margin-bottom: 1.4rem; }
  .manifest-body strong { font-weight: 500; color: var(--ink); }

  /* ── REISE (3 BEATS) ── */
  #reise { background: var(--paper-warm); }
  .reise-intro {
    max-width: 60ch;
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--ink-soft);
    margin-bottom: 4.5rem;
  }
  .beats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
  .beat {
    position: relative;
    padding-top: 2.5rem;
    border-top: 1px solid var(--paper-deep);
  }
  .beat-num {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--sage-mid);
    margin-bottom: 1.2rem;
    display: block;
  }
  .beat h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 1rem;
  }
  .beat p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--ink-soft);
  }
  .beat:nth-child(3) { }
  .beat.accent { }
  .beat.accent .beat-num { color: var(--sage-deep); }

  /* ── WER ICH BIN ── */
  #person { background: var(--cream); }
  .person-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: start;
  }
  .person-text p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--ink-soft);
    margin-bottom: 1.4rem;
  }
  .person-text strong { font-weight: 500; color: var(--ink); }
  .person-pullquote {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--sage-deep);
    border-left: 2px solid var(--sage);
    padding-left: 1.4rem;
    margin: 2.2rem 0;
  }
  .cv { display: flex; flex-direction: column; gap: 0; }
  .person-photo {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 760 / 689;
    object-fit: cover;
    border-radius: 4px;
    display: block;
    margin-bottom: 2rem;
    box-shadow: 0 18px 50px rgba(35,39,31,0.14);
    border: 1px solid var(--paper-deep);
  }
  .person-photo-cap {
    font-size: 0.78rem;
    font-style: italic;
    color: var(--ink-mute);
    margin: -1.2rem 0 2rem;
    font-family: 'Fraunces', serif;
  }
  .cv-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--paper-deep);
  }
  .cv-item:first-child { padding-top: 0; }
  .cv-item:last-child { border-bottom: none; }
  .cv-role { font-size: 1rem; font-weight: 500; color: var(--ink); margin-bottom: 0.25rem; }
  .cv-org { font-size: 0.85rem; color: var(--sage-mid); letter-spacing: 0.03em; margin-bottom: 0.5rem; }
  .cv-desc { font-size: 0.88rem; line-height: 1.65; color: var(--ink-mute); }

  /* ── GEDANKEN ── */
  #gedanken { background: var(--paper-warm); }
  .gedanken-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
  }
  .gedanken-head h2 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    line-height: 1.15;
    color: var(--ink);
  }
  .gedanken-note {
    font-size: 0.88rem;
    color: var(--ink-mute);
    font-style: italic;
    max-width: 30ch;
  }
  .articles { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
  .article {
    background: var(--cream);
    border: 1px solid var(--paper-deep);
    border-radius: 3px;
    padding: 2.4rem;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    cursor: default;
  }
  .article:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(35,39,31,0.08);
    border-color: var(--sage);
  }
  .article-tag {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sage-mid);
    margin-bottom: 1rem;
  }
  .article h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 0.9rem;
  }
  .article p { font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); }
  .article-soon {
    border-style: dashed;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .article-soon:hover { transform: none; box-shadow: none; border-color: var(--sage); }
  .article-cta { text-decoration: none; cursor: pointer; transition: border-color 0.3s, background 0.3s; }
  .article-cta:hover { border-color: var(--sage-mid); background: rgba(124,158,122,0.06); transform: none; box-shadow: none; }
  .article-cta h3 { color: var(--ink) !important; font-style: normal !important; }
  .article-cta-link { display: inline-block; margin-top: 0.6rem; color: var(--sage-deep); font-weight: 500; }
  .article-read { display: block; text-decoration: none; }
  .article-read h3 { color: var(--ink); }
  .article-link { display: inline-block; margin-top: 0.9rem; color: var(--sage-deep); font-weight: 500; font-size: 0.9rem; }
  .article-soon .article-tag { color: var(--ink-mute); }
  .article-soon h3 { color: var(--ink-mute); font-style: italic; }

  /* ── AUSTAUSCH ── */
  #austausch { background: var(--sage-deep); color: var(--cream); text-align: center; }
  #austausch .sec-label { color: var(--sage-whisper); justify-content: center; }
  #austausch .sec-label::before { background: var(--sage-whisper); }
  .austausch-title {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 1.8rem;
    color: var(--cream);
  }
  .austausch-title em { font-style: italic; }
  .austausch-text {
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(251,248,241,0.8);
    max-width: 52ch;
    margin: 0 auto 3rem;
  }
  .austausch-actions { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; }
  .austausch-prompt {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--cream);
    max-width: 46ch;
    margin: 0 auto 2rem;
  }
  .austausch-fineprint {
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    color: rgba(251,248,241,0.6);
    margin-top: 1.6rem;
  }
  .btn-light {
    background: var(--cream);
    color: var(--sage-deep);
  }
  .btn-light:hover { background: #fff; transform: translateY(-2px); }
  .btn-outline {
    border: 1px solid rgba(251,248,241,0.4);
    color: var(--cream);
  }
  .btn-outline:hover { border-color: var(--cream); background: rgba(251,248,241,0.08); }

  /* ── FOOTER ── */
  footer {
    background: var(--ink);
    padding: 3rem 0;
  }
  .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-name { font-family: 'Fraunces', serif; font-size: 1.1rem; color: var(--cream); }
  .footer-pillars { font-size: 0.8rem; letter-spacing: 0.14em; color: var(--sage); text-transform: uppercase; }
  .footer-links { display: flex; gap: 1.4rem; }
  .footer-links a {
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: rgba(251,248,241,0.55);
    text-decoration: none;
    transition: color 0.25s;
  }
  .footer-links a:hover { color: var(--sage); }
  .footer-meta { font-size: 0.78rem; color: rgba(251,248,241,0.35); }

  /* ── BEAT EXPAND ── */
  .beat-preview { font-size: 0.98rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1.1rem; }
  .beat-toggle {
    display: inline-block;
    font-size: 0.84rem;
    color: var(--sage-mid);
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.2rem 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.4;
    min-height: 44px;
    display: flex;
    align-items: center;
    transition: color 0.2s;
  }
  .beat-toggle:hover { color: var(--sage-deep); }
  .beat-full {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4,0,0.2,1);
  }
  .beat-full.open { grid-template-rows: 1fr; }
  .beat-full-inner {
    overflow: hidden;
    min-height: 0;
    padding-top: 1.6rem;
    border-top: 1px solid var(--sage-whisper);
  }
  .beat-full-inner p {
    font-size: 0.97rem;
    line-height: 1.82;
    color: var(--ink-soft);
    margin-bottom: 1.05rem;
  }
  .beat-full-inner p:last-child { margin-bottom: 0; }

  /* ── REISE DOWNLOAD ── */
  .reise-download {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--paper-deep);
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  .reise-download-text {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink-soft);
    flex: 1;
    min-width: 200px;
  }
  .reise-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border: 1px solid var(--sage-mid);
    color: var(--sage-deep);
    text-decoration: none;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    border-radius: 2px;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    white-space: nowrap;
  }
  .reise-download-btn:hover {
    background: var(--sage-deep);
    color: var(--cream);
    border-color: var(--sage-deep);
  }
  @media (max-width: 880px) {
    .reise-download { flex-direction: column; align-items: flex-start; gap: 1.2rem; }
  }

  /* ── ANIM ── */
  @keyframes rise { from { opacity: 0; transform: translateY(28px);} to { opacity: 1; transform: translateY(0);} }
  @keyframes fade { from { opacity: 0;} to { opacity: 1;} }
  @keyframes pulse { 0%,100% { opacity: 0.4; transform: scale(1);} 50% { opacity: 1; transform: scale(1.4);} }

  /* ── RESPONSIVE ── */
  @media (max-width: 880px) {
    .wrap, .narrow { padding: 0 1.5rem; }
    nav { padding: 1.1rem 1.5rem; }
    nav.scrolled { padding: 0.8rem 1.5rem; }
    .nav-links { display: none; }
    section { padding: 4.5rem 0; }
    .beats { grid-template-columns: 1fr; gap: 0; }
    .beat { padding: 2rem 0; border-top: 1px solid var(--paper-deep); }
    .person-grid { grid-template-columns: 1fr; gap: 3rem; }
    .articles { grid-template-columns: 1fr; }
    .scroll-hint { left: 1.5rem; }
  }

  /* ============================================================
     VORSCHAU-Ergänzungen (additiv, nur bestehende Variablen)
     Kleine grafische Wegweiser, Gedanken-Meta, Heldenreise-Teaser
     ============================================================ */

  /* — kleine, dezente Wegweiser direkt unter dem Hero — */
  .hero-guides {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 2.6rem;
    opacity: 0;
    animation: rise 0.9s ease 0.7s forwards;
  }
  .hero-guide {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.25s;
  }
  .hero-guide svg { display: block; flex: none; color: var(--sage-mid); transition: color 0.2s; }
  .hero-guide:hover { color: var(--sage-deep); border-color: var(--sage); }
  .hero-guide:hover svg { color: var(--sage-deep); }

  /* — Gedanken: Datum/Uhrzeit-Meta — */
  .article-meta {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 0.55rem;
  }
  .gedanken-archive-link {
    margin-top: 2.6rem;
    text-align: right;
  }
  .gedanken-archive-link a,
  .reise-readall a {
    display: inline-block;
    color: var(--sage-deep);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s;
  }
  .gedanken-archive-link a:hover,
  .reise-readall a:hover { border-color: var(--sage); }

  /* — Heldenreise-Teaser (Kapitelnamen kompakt) — */
  .reise-chapters {
    list-style: none;
    margin: 2.4rem 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.2rem 2.5rem;
    border-top: 1px solid var(--sage-whisper);
  }
  .reise-chapters li {
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--sage-whisper);
  }
  .reise-chapters .ch-num {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-mid);
    white-space: nowrap;
    min-width: 5.4rem;
  }
  .reise-chapters .ch-name {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: 1.08rem;
    color: var(--ink);
  }
  .reise-readall { margin-top: 2.6rem; }

  /* — Archiv-/Unterseiten-Kopf — */
  .subpage-head { padding: 9rem 0 1rem; }
  .subpage-head .back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    color: var(--sage-mid);
    text-decoration: none;
    margin-bottom: 1.6rem;
    transition: color 0.2s;
  }
  .subpage-head .back-link:hover { color: var(--sage-deep); }
  .subpage-intro { max-width: 60ch; color: var(--ink-soft); margin-top: 1rem; }

  /* — Gedanken-Archiv: einspaltige Liste — */
  .archive-list { display: grid; grid-template-columns: 1fr; gap: 1.6rem; margin-top: 3rem; }
  .archive-list .article { width: 100%; }

  @media (max-width: 720px) {
    .reise-chapters { grid-template-columns: 1fr; gap: 0; }
    .gedanken-archive-link { text-align: left; }
  }
