/* ============================================================
   DMITRI DRAGILEW — Desktop-Stylesheet
   Leitbild: „Das Arbeitszimmer bei Lampenlicht" — Tinte, Bernstein,
   Papier, Bordeaux. Kein Blau. Fonts lokal (fonts.css).
   ============================================================ */

:root {
  --ink: #151110;
  --ink-2: #1c1614;
  --panel: #221913;
  --panel-2: #2a2018;
  --paper: #f2e8d5;
  --paper-dim: #e3d4b9;
  --amber: #e0a84f;
  --amber-glow: #f4d18c;
  --wine: #6f1f2e;
  --wine-bright: #93293c;
  --text: #eadfc9;
  --muted: #a5947c;
  --dark-txt: #241b12;
  --hair: rgba(224, 168, 79, .28);
  --f-disp: 'Cormorant Garamond', Georgia, serif;
  --f-text: 'PT Serif', Georgia, serif;
  --f-mono: 'PT Mono', 'Courier New', monospace;
  --f-ui: 'PT Sans', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--f-text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--amber); text-decoration: none; }
p a, li a { border-bottom: 1px solid var(--hair); transition: border-color .25s, color .25s; }
p a:hover, li a:hover { color: var(--amber-glow); border-color: var(--amber-glow); }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3 { font-family: var(--f-disp); font-weight: 600; color: var(--paper); line-height: 1.15; }
h1 { font-size: clamp(38px, 5vw, 58px); }
h2 { font-size: clamp(26px, 3.2vw, 36px); margin-bottom: 26px; }
h3 { font-size: 22px; }

.wrap { max-width: 1120px; margin: 0 auto; padding: 56px 40px; }
.kicker {
  font-family: var(--f-mono); font-size: 13px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 10px;
}
.cap { font-family: var(--f-ui); font-size: 13px; color: var(--muted); margin-top: 8px; }
.lead { font-size: 19px; }

/* ---------- Header ---------- */

.site-head {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 34px;
  padding: 14px 40px;
  background: rgba(21, 17, 16, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hair);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand .b-1, .brand .b-2 {
  font-family: var(--f-disp); font-weight: 700; font-size: 19px;
  letter-spacing: .34em; color: var(--paper);
}
.brand .b-1 { color: var(--amber); }
.brand:hover .b-2 { color: var(--amber-glow); transition: color .3s; }
.site-nav { display: flex; gap: 22px; margin-left: auto; flex-wrap: wrap; }
.site-nav a {
  font-family: var(--f-ui); font-size: 15px; color: var(--text);
  padding: 6px 2px; position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--amber); transition: right .3s;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.site-nav a[aria-current="page"] { color: var(--amber); }
.langs { display: flex; gap: 10px; font-family: var(--f-mono); font-size: 13px; }
.langs a { color: var(--muted); padding: 4px 2px; }
.langs a.on { color: var(--amber); border-bottom: 1px solid var(--amber); }
.langs a:hover { color: var(--amber-glow); }

/* ---------- Hero (Leselampe) ---------- */

.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 72% 0%, #241b12 0%, var(--ink) 58%);
  border-bottom: 1px solid var(--hair);
}
.lamp { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-in {
  position: relative; z-index: 2;
  max-width: 1120px; margin: 0 auto; padding: 84px 40px 72px;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center;
}
.wordmark { display: flex; flex-direction: column; gap: 2px; }
.wordmark span {
  font-family: var(--f-disp); font-weight: 700;
  font-size: clamp(44px, 6vw, 74px); letter-spacing: .3em; line-height: 1.04;
}
.wordmark span:first-child { color: var(--amber); }
.subtitle { font-family: var(--f-ui); font-size: 17px; color: var(--muted); letter-spacing: .12em; margin-top: 16px; }
.hero-img { position: relative; }
.hero-img img {
  border-radius: 3px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55), 0 0 0 1px var(--hair);
  -webkit-mask-image: radial-gradient(130% 130% at 50% 40%, #000 62%, transparent 100%);
  mask-image: radial-gradient(130% 130% at 50% 40%, #000 62%, transparent 100%);
}

.epi { margin-top: 40px; max-width: 480px; }
.epi-line {
  font-family: var(--f-mono); font-size: 16.5px; color: var(--amber-glow);
  min-height: 1.6em;
}
.epi-line.typing::after { content: "▎"; color: var(--amber); animation: caret 1s steps(1) infinite; }
@keyframes caret { 50% { opacity: 0; } }
.epi-att {
  font-family: var(--f-ui); font-size: 12.5px; color: var(--muted);
  margin-top: 10px; opacity: 1; transition: opacity .8s;
}
.epi[data-wait] .epi-att { opacity: 0; }

/* ---------- Wegweiser ---------- */

.wegweiser { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wg {
  display: block; padding: 26px 24px 22px;
  background: var(--panel); border: 1px solid var(--hair); border-radius: 4px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
}
.wg:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0, 0, 0, .4); border-color: var(--amber); }
.wg h3 { color: var(--amber); margin-bottom: 8px; }
.wg p { font-size: 15.5px; color: var(--text); }
.wg-a { position: absolute; right: 20px; bottom: 14px; color: var(--muted); font-family: var(--f-mono); transition: color .3s, transform .3s; }
.wg:hover .wg-a { color: var(--amber); transform: translateX(4px); }

/* ---------- Buch-Cover (typografischer Platzhalter) ---------- */

.b-cover {
  aspect-ratio: 2 / 3; width: 100%; max-width: 220px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 20px 16px; text-align: center; border-radius: 2px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5), inset 0 0 0 1px rgba(242, 232, 213, .2);
  position: relative;
}
.b-cover::after {
  content: ""; position: absolute; inset: 7px;
  border: 1px solid rgba(242, 232, 213, .3); border-radius: 1px; pointer-events: none;
}
.b-cover.big { max-width: 260px; }
.bc-t { font-family: var(--f-disp); font-weight: 600; font-size: 19px; line-height: 1.25; color: var(--paper); margin-top: 26px; }
.bc-p { font-family: var(--f-ui); font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(242, 232, 213, .75); }
.bc-y { font-family: var(--f-mono); font-size: 13px; color: rgba(242, 232, 213, .85); margin-bottom: 4px; }
.cover-img.big { width: 260px; aspect-ratio: auto; object-fit: contain; }
.cat-prosa { background: linear-gradient(160deg, #7c2434 0%, #571825 70%); }
.cat-lyrik { background: linear-gradient(160deg, #8a6a2f 0%, #5d461e 70%); }
.cat-musikbuecher { background: linear-gradient(160deg, #6d4a22 0%, #452d13 70%); }
.cat-herausgaben { background: linear-gradient(160deg, #5a4a3a 0%, #3a2f24 70%); }

/* ---------- Spotlight Roman ---------- */

.spotlight {
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
  background: linear-gradient(120deg, var(--panel) 0%, var(--ink-2) 100%);
  border: 1px solid var(--hair); border-radius: 6px;
  margin-top: 8px; padding: 44px 48px;
}
.spot-meta { font-family: var(--f-ui); font-size: 14px; color: var(--muted); margin: 10px 0 16px; }
.btn {
  display: inline-block; margin-top: 18px;
  font-family: var(--f-ui); font-size: 14.5px; letter-spacing: .06em;
  color: var(--paper); background: var(--wine);
  padding: 10px 22px; border-radius: 3px; border: 1px solid transparent;
  transition: background .3s, transform .2s;
}
.btn:hover { background: var(--wine-bright); transform: translateY(-2px); }

/* ---------- About ---------- */

.about { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
.about-txt p { margin-bottom: 16px; }
.member-line { font-family: var(--f-ui); font-size: 14px; color: var(--muted); border-top: 1px solid var(--hair); padding-top: 16px; }
.about-img img { border-radius: 4px; box-shadow: 0 18px 44px rgba(0, 0, 0, .45); }

/* ---------- Seitenkopf ---------- */

.page-head { padding-bottom: 8px; }
.page-head h1 { border-bottom: 1px solid var(--hair); padding-bottom: 18px; }

/* ---------- Biografie ---------- */

.bio-intro { display: grid; grid-template-columns: .55fr 1.45fr; gap: 56px; align-items: start; }
.sketch { position: relative; padding: 26px; background: var(--paper); border-radius: 4px; box-shadow: 0 18px 44px rgba(0, 0, 0, .45); }
.sketch img { filter: contrast(1.04); clip-path: inset(0 100% 0 0); }
.sketch.drawn img { clip-path: inset(0 0 0 0); transition: clip-path 2.6s cubic-bezier(.6, .05, .3, 1); }
.bio-txt p { margin-bottom: 18px; font-size: 17.5px; }

.tl { position: relative; padding: 30px 0 10px; }
.tl-line {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(var(--hair), rgba(224, 168, 79, .1));
}
.tl-pendel {
  position: absolute; left: 50%; top: 0; width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 35%, var(--amber-glow), var(--amber) 60%, #7c5a22);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(224, 168, 79, .65);
  transition: top .35s cubic-bezier(.3, 1.4, .5, 1);
}
.tl-st { position: relative; width: 50%; padding: 0 54px 46px 0; }
.tl-st.r { margin-left: 50%; padding: 0 0 46px 54px; }
.tl-anchor {
  position: absolute; top: 6px; right: -11px; color: var(--amber);
  background: var(--ink); padding: 3px 0; z-index: 2;
}
.tl-st.r .tl-anchor { right: auto; left: -11px; }
.tl-card {
  background: var(--panel); border: 1px solid var(--hair); border-radius: 4px;
  padding: 22px 24px;
}
.tl-year { font-family: var(--f-mono); font-size: 15px; color: var(--amber); letter-spacing: .08em; }
.tl-place { font-family: var(--f-disp); font-size: 21px; color: var(--paper); margin: 2px 0 8px; }
.tl-txt { font-size: 15.5px; }
.tl-img { margin-top: 14px; border-radius: 3px; }

.bio-radio-in { display: grid; grid-template-columns: 1.3fr .7fr; gap: 44px; align-items: start; }
.bio-radio-in figure img { border-radius: 4px; filter: sepia(.25); }
.awards { list-style: none; margin-bottom: 34px; }
.awards li { padding: 10px 0; border-bottom: 1px solid rgba(224, 168, 79, .12); }
.aw-y { font-family: var(--f-mono); color: var(--amber); margin-right: 14px; }

.quote {
  border-left: 2px solid var(--wine-bright); padding: 6px 0 6px 24px; margin: 20px 0;
}
.quote p { font-style: italic; color: var(--paper-dim); font-size: 17px; }
.quote cite { display: block; margin-top: 10px; font-style: normal; font-family: var(--f-ui); font-size: 13px; color: var(--muted); }
.quote.small p { font-size: 15px; }

/* ---------- Werke: Regal ---------- */

.shelves { padding-top: 20px; }
.shelf-block { margin-bottom: 54px; }
.shelf {
  display: flex; align-items: flex-end; gap: 22px; flex-wrap: wrap;
  padding: 0 18px; perspective: 1000px;
  border-bottom: 6px solid var(--panel-2);
  box-shadow: 0 8px 0 -4px rgba(0, 0, 0, .4);
}
/* Bücher stehen frontal (Cover lesbar) auf dem Regalbrett */
.shelfbook {
  flex: 0 0 auto; width: 118px;
  background: none; border: none; cursor: pointer; padding: 0 0 12px;
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  transform-origin: bottom center;
  transition: transform .35s;
}
.shelfbook:hover { transform: translateY(-8px) rotateY(-7deg); }
.shelfbook.featured { width: 152px; }
.shelfbook[aria-expanded="true"] .sb-c { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }
.sb-c { display: block; width: 100%; transition: box-shadow .35s; }
.shelfbook:hover .sb-c { box-shadow: 0 18px 34px rgba(0, 0, 0, .55); }
.sb-y { font-family: var(--f-mono); font-size: 12px; color: var(--muted); }

.cover-img {
  width: 100%; aspect-ratio: 2 / 3; object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .5), inset 0 0 0 1px rgba(242, 232, 213, .12);
}
.shelfbook .b-cover { max-width: none; padding: 12px 9px; }
.shelfbook .bc-t { font-size: 13px; margin-top: 12px; }
.shelfbook .bc-p { font-size: 8.5px; letter-spacing: .12em; }
.shelfbook .bc-y { font-size: 11px; }
.shelfbook.featured .bc-t { font-size: 16px; }

.book-details { margin-top: 26px; }
.book { display: grid; grid-template-columns: 220px 1fr; gap: 36px; align-items: start;
  background: var(--panel); border: 1px solid var(--hair); border-radius: 5px; padding: 30px 34px; }
.book[hidden] { display: none; }
.book-cover .cover-img { aspect-ratio: auto; object-fit: contain; }
.b-sub { font-family: var(--f-ui); font-size: 15px; color: var(--muted); margin-top: 2px; }
.b-meta { font-family: var(--f-ui); font-size: 13.5px; color: var(--muted); margin: 10px 0 14px; }
.b-info h3 { font-size: 25px; }

.werk-foot { border-top: 1px solid var(--hair); padding-top: 26px; }
.ak-cite { font-size: 15px; margin-bottom: 12px; }
.journals { font-family: var(--f-ui); font-size: 14px; color: var(--muted); }

/* ---------- Lyrik ---------- */

.lyrik-lead p { max-width: 780px; margin-bottom: 14px; }
.school { font-family: var(--f-mono); font-size: 13.5px; color: var(--amber); }
.poems { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; padding-top: 10px; }
.poem {
  background: var(--paper); color: var(--dark-txt);
  border-radius: 3px; padding: 30px 32px 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
  background-image: repeating-linear-gradient(0deg, transparent 0 30px, rgba(36, 27, 18, .035) 30px 31px);
  display: flex; flex-direction: column;
}
.poem h3 { color: #3a2413; font-size: 21px; }
.po-sub { font-family: var(--f-ui); font-size: 14px; color: #6d5a41; margin-top: 3px; }
.po-lines { font-size: 16.5px; line-height: 1.75; margin: 16px 0 14px; font-style: italic; color: #33261a; }
.po-ell { color: #8a7458; }
.po-tr { font-family: var(--f-ui); font-size: 13px; color: #6d5a41; margin-bottom: 16px; margin-top: auto; }
.po-btn { background: var(--wine); margin-top: 0; align-self: flex-start; }
.lyrik-foot p { font-family: var(--f-ui); font-size: 14.5px; color: var(--muted); }

/* ---------- Musik ---------- */

.musik-lead { display: grid; grid-template-columns: .75fr 1.25fr; gap: 48px; align-items: center; }
.musik-hero img { border-radius: 4px; box-shadow: 0 18px 44px rgba(0, 0, 0, .45); }

.piano {
  position: relative; height: 54px; max-width: 560px; margin: 8px auto;
  display: flex; gap: 2px; padding: 0 40px;
}
.wk {
  flex: 1; background: linear-gradient(#f6efe0, #ddcfb2);
  border-radius: 0 0 3px 3px; box-shadow: 0 2px 3px rgba(0, 0, 0, .5);
  transition: transform .18s, box-shadow .18s;
}
.bk {
  position: absolute; top: 0; width: 3.2%; height: 58%;
  left: calc(40px + (100% - 80px) * (var(--k) + 1) / 14 - 1.6%);
  background: linear-gradient(#3a3129, #0c0908);
  border-radius: 0 0 2px 2px; z-index: 2;
  transition: transform .18s;
}
.wk.pressed { transform: translateY(3px); box-shadow: 0 1px 1px rgba(0, 0, 0, .5); background: linear-gradient(#efe4cc, #cbbb9a); }

.ens-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.ens {
  background: var(--panel); border: 1px solid var(--hair); border-radius: 5px;
  padding: 26px 28px;
}
.ens-feat { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr .9fr; gap: 34px; align-items: center; }
.ens-feat figure { grid-row: 1 / 5; order: -1; }
.ens-feat img { border-radius: 4px; }
.ens h3 { color: var(--amber); margin-bottom: 6px; }
.ens-role { font-family: var(--f-ui); font-size: 13.5px; color: var(--muted); margin-bottom: 12px; }
.ens .ext { font-size: 13px; margin-left: 6px; }

.komp { list-style: none; margin: 6px 0 18px; }
.komp li { padding: 9px 0; border-bottom: 1px solid rgba(224, 168, 79, .12); font-size: 15.5px; }
.k-t { color: var(--paper); font-weight: 700; }
.k-y { font-family: var(--f-mono); color: var(--muted); font-size: 13.5px; }
.k-fact { font-size: 15.5px; color: var(--paper-dim); margin-bottom: 26px; }

.musik-komp .yt, .med-video .yt { max-width: 720px; }

.forsch { display: grid; grid-template-columns: .6fr 1.4fr; gap: 44px; align-items: start; }
.forsch-img img { border-radius: 4px; }
.taz-lead { margin-top: 16px; font-family: var(--f-ui); font-size: 14.5px; color: var(--muted); }
.fest-line { font-family: var(--f-mono); font-size: 13.5px; color: var(--amber); margin-top: 18px; }

/* ---------- YouTube-Fassade ---------- */

.yt {
  position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: 5px; background: var(--panel);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .45);
}
.yt img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.82); transition: filter .3s, transform .4s; }
.yt:hover img { filter: brightness(.95); transform: scale(1.02); }
.yt-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 74px; height: 74px; border-radius: 50%; border: 2px solid var(--amber-glow);
  background: rgba(21, 17, 16, .72); cursor: pointer;
  transition: background .3s, transform .3s;
}
.yt-play span {
  position: absolute; top: 50%; left: 53%; transform: translate(-50%, -50%);
  border-style: solid; border-width: 13px 0 13px 21px;
  border-color: transparent transparent transparent var(--amber-glow);
}
.yt-play:hover { background: var(--wine); transform: translate(-50%, -50%) scale(1.08); }
.yt-t {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 18px 12px; font-family: var(--f-ui); font-size: 14px; color: var(--paper);
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
}
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Medien ---------- */

.med-press .press { list-style: none; }
.press li { padding: 10px 0; border-bottom: 1px solid rgba(224, 168, 79, .12); font-size: 15.5px; }
.med-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.ms-i img { border-radius: 4px; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.slog-in p { max-width: 820px; }

/* ---------- Kontakt / Legal ---------- */

.kontakt { display: grid; grid-template-columns: .7fr 1.3fr; gap: 48px; align-items: center; }
.kont-img img { border-radius: 4px; box-shadow: 0 18px 44px rgba(0, 0, 0, .45); }
.kont-links { list-style: none; margin-top: 22px; }
.kont-links li { padding: 8px 0; }
.legal .todo {
  background: var(--panel); border: 1px dashed var(--hair); border-radius: 4px;
  padding: 22px 26px; color: var(--paper-dim); max-width: 720px;
}
.credits { margin-top: 20px; font-family: var(--f-ui); font-size: 14px; color: var(--muted); }

/* ---------- Footer ---------- */

.site-foot {
  border-top: 1px solid var(--hair); margin-top: 40px;
  padding: 44px 40px 54px; text-align: center;
}
.f-name { font-family: var(--f-disp); font-weight: 700; letter-spacing: .34em; color: var(--amber); font-size: 17px; }
.f-sub { font-family: var(--f-ui); font-size: 13.5px; color: var(--muted); margin: 8px 0 16px; }
.f-legal { font-family: var(--f-ui); font-size: 14px; margin-bottom: 8px; }
.f-legal a { color: var(--text); }
.f-legal a:hover { color: var(--amber); }
.f-c { font-family: var(--f-mono); font-size: 12.5px; color: var(--muted); }

/* ---------- Lightbox ---------- */

#lb-ov {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(12, 9, 8, .93);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
#lb-ov.open { opacity: 1; pointer-events: auto; }
#lb-ov img { max-width: 92vw; max-height: 88vh; border-radius: 3px; box-shadow: 0 30px 80px rgba(0, 0, 0, .8); }
.lb-btn {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--paper); font-size: 46px;
  cursor: pointer; padding: 20px; font-family: var(--f-disp); opacity: .7; transition: opacity .2s;
}
.lb-btn:hover { opacity: 1; }
#lb-prev { left: 12px; } #lb-next { right: 12px; }
#lb-close { position: fixed; top: 14px; right: 22px; font-size: 34px; transform: none; }

/* ---------- Reveals ---------- */

html.js .reveal { opacity: 0; transform: translateY(16px); }
html.js .reveal.in { opacity: 1; transform: none; transition: opacity .8s ease, transform .8s ease; }

/* ---------- Responsive (Tablet) ---------- */

@media (max-width: 1000px) {
  .hero-in { grid-template-columns: 1fr; padding: 56px 32px; }
  .hero-img { max-width: 520px; }
  .wegweiser { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; padding: 32px; }
  .about, .bio-intro, .musik-lead, .forsch, .kontakt, .bio-radio-in { grid-template-columns: 1fr; }
  .sketch { max-width: 380px; }
  .poems, .ens-grid { grid-template-columns: 1fr; }
  .ens-feat { grid-template-columns: 1fr; }
  .tl-line { left: 12px; }
  .tl-st, .tl-st.r { width: 100%; margin: 0; padding: 0 0 40px 44px; }
  .tl-anchor, .tl-st.r .tl-anchor { left: 1px; right: auto; }
  .site-head { flex-wrap: wrap; gap: 14px; padding: 12px 22px; }
  .site-nav { gap: 14px; }
  .wrap { padding: 40px 24px; }
  .med-strip { grid-template-columns: 1fr; }
}

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; }
  .sketch img { clip-path: none !important; transition: none !important; }
  .tl-pendel { transition: none; }
  .wk, .bk, .wg, .btn, .yt img, .shelfbook, .sb-c { transition: none !important; }
  .epi-line.typing::after { animation: none; }
}
