/* =========================================================================
   Hans-Jürgen Gaudeck — Aquarelle
   Design-System / Art Direction: „Das Weiß des Papiers“
   Ruhig, editorial, museal. Weißraum als Hauptgestaltungsmittel.
   ========================================================================= */

/* ----------------------------------------------------------------------- */
/* Fonts (selbst gehostet, Latin-Subset, Variable Fonts)                   */
/* ----------------------------------------------------------------------- */
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-italic-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------------------------------------- */
/* Design-Tokens                                                            */
/* ----------------------------------------------------------------------- */
:root {
  /* Farbwelt — aus Aquarell, Papier, Mittelmeerlicht abgeleitet */
  --paper:      #fbfaf5;  /* Grundton: warmes Papierweiß */
  --paper-2:    #f5f2ea;  /* leicht abgesetzte Fläche */
  --sand:       #efe9dc;  /* ruhige Panels */
  --line:       #e2dccd;  /* feine Linien */
  --ink:        #26241f;  /* Haupttext, gebrochenes Anthrazit */
  --muted:      #6f6a5f;  /* Sekundärtext, Maße, Daten */
  --blue:       #3c6e8f;  /* mediterraner Akzent / Links */
  --blue-deep:  #2f586f;
  --olive:      #7c8466;  /* entsättigtes Grün */
  --terra:      #b86b4b;  /* sparsamer Akzent (aktuelle Ausstellung) */

  /* Typografie */
  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Fluid Type Scale */
  --fs-hero:   clamp(2.6rem, 1.6rem + 4.4vw, 5.4rem);
  --fs-h1:     clamp(2.1rem, 1.5rem + 2.6vw, 3.6rem);
  --fs-h2:     clamp(1.6rem, 1.25rem + 1.5vw, 2.4rem);
  --fs-h3:     clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem);
  --fs-lead:   clamp(1.12rem, 1.02rem + 0.5vw, 1.4rem);
  --fs-body:   1.0625rem;
  --fs-small:  0.875rem;

  /* Maße & Rhythmus */
  --measure: 64ch;            /* optimale Lesebreite */
  --container: 1280px;
  --gutter: clamp(1.25rem, 0.8rem + 2.2vw, 3.5rem);
  --section-y: clamp(3.5rem, 2rem + 7vw, 8rem);

  --radius: 2px;
  --shadow-soft: 0 1px 2px rgba(38,36,31,.05), 0 18px 40px -24px rgba(38,36,31,.35);
  --shadow-lift: 0 2px 4px rgba(38,36,31,.06), 0 30px 60px -30px rgba(38,36,31,.45);

  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .6s;
}

/* ----------------------------------------------------------------------- */
/* Reset / Base                                                             */
/* ----------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

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

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* clip statt hidden: verhindert horizontales Scrollen, ohne position:sticky
     (Header) zu brechen — hidden würde einen Scroll-Container erzeugen. */
  overflow-x: clip;
}

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

a { color: var(--blue); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--blue-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .002em;
  color: var(--ink);
}

::selection { background: rgba(60,110,143,.16); }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--radius);
}

/* Skip-Link */
.skip-link {
  position: absolute; left: 1rem; top: -3.5rem;
  background: var(--ink); color: var(--paper);
  padding: .6rem 1rem; border-radius: var(--radius); z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--paper); }

/* ----------------------------------------------------------------------- */
/* Layout-Primitive                                                         */
/* ----------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: 820px; }

.section { padding-block: var(--section-y); }
.section--sand { background: var(--sand); }
.section--paper2 { background: var(--paper-2); }

.prose { max-width: var(--measure); }
.prose p + p { margin-top: 1.1em; }
.prose p { color: #3a382f; }

/* Eyebrow / Kapitelmarke */
.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-small);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: .8rem;
}
.eyebrow::before {
  content: ""; width: 2.2rem; height: 1px; background: var(--terra); opacity: .8;
}

.section-head { margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head h2 { font-size: var(--fs-h2); margin-top: .9rem; }
.section-head .lead { font-size: var(--fs-lead); color: var(--muted); margin-top: .8rem; max-width: 54ch; }

.lead { font-size: var(--fs-lead); line-height: 1.6; }

/* Link mit Pfeil */
.arrow-link {
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: .55rem;
  color: var(--ink);
}
.arrow-link::after {
  content: "→"; transition: transform .3s var(--ease); color: var(--blue);
}
.arrow-link:hover { color: var(--blue-deep); }
.arrow-link:hover::after { transform: translateX(.35rem); }

/* Button */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans); font-weight: 500; font-size: .95rem; letter-spacing: .03em;
  padding: .8rem 1.6rem;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink); background: transparent;
  transition: background .3s var(--ease), color .3s var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--ink); color: var(--paper); }

/* ----------------------------------------------------------------------- */
/* Kopfzeile / Navigation                                                   */
/* ----------------------------------------------------------------------- */
/* Hinweis: bewusst KEIN backdrop-filter/transform auf .site-header — sonst
   würde der Header zum Containing-Block für die position:fixed Mobil-Menütafel. */
/* Wrapper erzeugt keine eigene Box, damit .site-header relativ zum <body>
   sticky bleibt und nicht nur innerhalb des Wrappers (sonst scrollt der
   Header sofort weg). */
[data-shell="header"] { display: contents; }
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 245, .88);
  border-bottom: 1px solid transparent;
  transition: border-color .4s var(--ease), background .4s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(251, 250, 245, .97);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding-block: 1.1rem;
}
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; min-width: 0; }
.brand__name {
  font-family: var(--serif); font-size: clamp(1.2rem, 0.95rem + 1vw, 1.5rem); font-weight: 600;
  color: var(--ink); letter-spacing: .01em; white-space: nowrap;
}
.brand__sub {
  font-family: var(--sans); font-size: .68rem; letter-spacing: .35em;
  text-transform: uppercase; color: var(--muted); margin-top: .35rem;
}
.nav__links {
  display: flex; align-items: center; gap: clamp(1rem, .3rem + 1.4vw, 2.1rem);
  list-style: none;
}
.nav__links a {
  font-family: var(--sans); font-size: .92rem; letter-spacing: .02em;
  color: var(--ink); position: relative; padding-block: .3rem; white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -.1rem; height: 1px; width: 0;
  background: var(--terra); transition: width .3s var(--ease);
}
.nav__links a:hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--ink); }

/* Mobile-first: Toggle ist standardmäßig sichtbar, auf Desktop ausgeblendet. */
.nav__toggle {
  display: inline-flex; flex: 0 0 auto; width: 2.75rem; height: 2.75rem; border: none; background: none;
  cursor: pointer; align-items: center; justify-content: center; color: var(--ink);
}
.nav__toggle svg { width: 26px; height: 26px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle[aria-expanded="true"] .icon-open { display: none; }
.nav__toggle[aria-expanded="true"] .icon-close { display: block; }

/* Desktop: Hauptnavigation als Zeile, Toggle ausgeblendet.
   Breakpoint bei 1024px, damit die acht Menüpunkte nie umbrechen. */
@media (min-width: 1025px) {
  .nav__toggle { display: none; }
}
@media (max-width: 1024px) {
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.6rem; padding: 2rem var(--gutter);
    background: var(--paper); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .45s var(--ease);
    box-shadow: var(--shadow-lift);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 1.25rem; font-family: var(--serif); }
  body.nav-open { overflow: hidden; }
}

.nav-backdrop {
  position: fixed; inset: 0; background: rgba(38,36,31,.35); z-index: 90;
  opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s;
}
.nav-backdrop.is-open { opacity: 1; visibility: visible; }

/* ----------------------------------------------------------------------- */
/* Hero                                                                     */
/* ----------------------------------------------------------------------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(1.5rem, 0.5rem + 4vw, 5rem);
  padding-block: clamp(3rem, 1.5rem + 6vw, 7rem);
}
.hero__text { max-width: 42ch; }
.hero__title {
  font-size: var(--fs-hero); font-weight: 500; line-height: 1.02;
  letter-spacing: -.01em; margin-top: 1.2rem;
}
.hero__title em { font-style: italic; color: var(--blue-deep); }
.hero__lead {
  font-size: var(--fs-lead); color: var(--muted); margin-top: 1.6rem; line-height: 1.55;
}
.hero__actions { margin-top: 2.2rem; display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }

.hero__figure { position: relative; }
.hero__figure img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3; object-fit: cover;
}
.hero__caption {
  font-size: var(--fs-small); color: var(--muted); margin-top: .9rem;
  font-style: italic; font-family: var(--serif); font-size: 1.05rem;
}
@media (max-width: 820px) {
  .hero { grid-template-columns: 1fr; }
  .hero__figure { order: -1; }
}

/* ----------------------------------------------------------------------- */
/* Editorial: Ausgewählte Werke (asymmetrisch)                              */
/* ----------------------------------------------------------------------- */
.editorial {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.2rem, .6rem + 2vw, 3rem) clamp(1.2rem, .6rem + 2vw, 2.5rem);
  align-items: end;
}
.editorial figure { margin: 0; }
.editorial figure img {
  width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft);
}
.editorial figcaption {
  font-family: var(--serif); font-style: italic; font-size: 1.08rem;
  color: var(--ink); margin-top: .7rem;
}
.editorial figcaption span { display: block; font-family: var(--sans); font-style: normal;
  font-size: var(--fs-small); color: var(--muted); margin-top: .15rem; letter-spacing: .02em; }
/* Rhythmus: bewusste, dosierte Asymmetrie */
.editorial .e-1 { grid-column: 1 / 7; }
.editorial .e-2 { grid-column: 8 / 13; margin-bottom: clamp(1rem, 4vw, 3.5rem); }
.editorial .e-3 { grid-column: 2 / 6; }
.editorial .e-4 { grid-column: 6 / 11; }
@media (max-width: 720px) {
  .editorial { grid-template-columns: 1fr 1fr; }
  .editorial .e-1,.editorial .e-2,.editorial .e-3,.editorial .e-4 { grid-column: auto; margin-bottom: 0; }
  .editorial .e-1 { grid-column: 1 / -1; }
}

/* ----------------------------------------------------------------------- */
/* Werkgruppen-Kacheln                                                      */
/* ----------------------------------------------------------------------- */
.groups {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: clamp(1rem, .5rem + 1.6vw, 2rem);
}
.group-tile {
  display: block; position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--ink); box-shadow: var(--shadow-soft);
}
.group-tile img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  transition: transform .8s var(--ease), opacity .8s var(--ease);
  opacity: .92;
}
.group-tile:hover img { transform: scale(1.04); opacity: .8; }
.group-tile__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.3rem 1.2rem;
  color: #fff;
  background: linear-gradient(to top, rgba(20,19,16,.78), rgba(20,19,16,0));
}
.group-tile__label h3 { color: #fff; font-size: 1.4rem; font-weight: 500; }
.group-tile__label p { font-size: var(--fs-small); color: rgba(255,255,255,.82); margin-top: .2rem; }

/* Erwerbshinweis (Werke-Seite) */
.buy-note {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem 2rem; flex-wrap: wrap;
  background: var(--sand); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.1rem, .8rem + 1vw, 1.6rem) clamp(1.3rem, 1rem + 1vw, 2rem);
  margin-bottom: clamp(2.5rem, 1.5rem + 3vw, 4.5rem);
}
.buy-note p { color: var(--ink); max-width: 52ch; }
.buy-note strong { font-family: var(--serif); font-weight: 600; font-size: 1.15rem; }

/* ----------------------------------------------------------------------- */
/* Werke-Seite: Galerie pro Gruppe                                          */
/* ----------------------------------------------------------------------- */
.work-group { margin-top: clamp(3rem, 1.5rem + 5vw, 6rem); }
.work-group:first-of-type { margin-top: 0; }
.work-group__head { display: flex; align-items: baseline; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(1.4rem, 1rem + 2vw, 2.6rem); }
.work-group__head h2 { font-size: var(--fs-h2); }
.work-group__head p { color: var(--muted); max-width: 46ch; font-size: 1rem; }

.gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: clamp(1rem, .6rem + 1.4vw, 2.2rem);
}
.work {
  display: block; cursor: pointer; background: none; border: none; padding: 0;
  text-align: left; font: inherit; color: inherit; width: 100%;
}
.work__frame {
  overflow: hidden; border-radius: var(--radius); background: var(--paper-2);
  box-shadow: var(--shadow-soft); transition: box-shadow .4s var(--ease);
}
.work__frame img {
  width: 100%; transition: transform .7s var(--ease);
}
.work:hover .work__frame { box-shadow: var(--shadow-lift); }
.work:hover .work__frame img { transform: scale(1.03); }
.work__title { display: block; font-family: var(--serif); font-style: italic; font-size: 1.1rem; margin-top: .65rem; line-height: 1.25; }
.work__meta { display: block; font-size: var(--fs-small); color: var(--muted); letter-spacing: .02em; margin-top: .1rem; }

/* ----------------------------------------------------------------------- */
/* Bücher                                                                   */
/* ----------------------------------------------------------------------- */
.books {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.6rem, 1rem + 2vw, 3rem) clamp(1.4rem, 1rem + 1.5vw, 2.5rem);
}
.book { display: grid; grid-template-columns: 120px 1fr; gap: 1.3rem; align-items: start; }
.book__cover {
  border-radius: var(--radius); box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.book a.book__coverlink:hover .book__cover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.book__body h3 { font-size: 1.25rem; line-height: 1.18; }
.book__sub { font-family: var(--serif); font-style: italic; color: var(--muted); font-size: 1.02rem; margin-top: .2rem; }
.book__meta { font-size: var(--fs-small); color: var(--muted); margin-top: .6rem; line-height: 1.55; }
.book__meta a { color: var(--blue); }
.book__links { margin-top: .7rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.book__links a { font-size: .9rem; font-weight: 500; }
.book__year {
  display: inline-block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line); border-radius: 99px; padding: .15rem .6rem;
  margin-bottom: .5rem;
}
@media (max-width: 420px) { .book { grid-template-columns: 90px 1fr; gap: 1rem; } }

/* Featured Bücher (Startseite) */
.books-featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem,.6rem+2vw,2.5rem); }
.book-feat { text-align: center; }
.book-feat img { margin-inline: auto; border-radius: var(--radius); box-shadow: var(--shadow-soft);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.book-feat a:hover img { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.book-feat h3 { font-size: 1.15rem; margin-top: 1rem; }
.book-feat p { font-size: var(--fs-small); color: var(--muted); margin-top: .25rem; }
@media (max-width: 640px) { .books-featured { grid-template-columns: 1fr; max-width: 320px; margin-inline: auto; } }

/* ----------------------------------------------------------------------- */
/* Ausstellungen                                                            */
/* ----------------------------------------------------------------------- */
.exhibitions { display: flex; flex-direction: column; }
.exhibition {
  display: grid; grid-template-columns: 320px 1fr; gap: clamp(1.5rem, 1rem + 2vw, 3rem);
  padding-block: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  border-top: 1px solid var(--line); align-items: start;
}
.exhibition:first-child { border-top: none; }
/* Plakate haben unterschiedliche Formate — vollständig zeigen, nicht beschneiden. */
.exhibition__media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.exhibition__body h3 { font-size: var(--fs-h3); }
.exhibition__sub { font-family: var(--serif); font-style: italic; color: var(--muted); margin-top: .2rem; font-size: 1.05rem; }
.exhibition__rows { margin-top: 1rem; display: grid; gap: .55rem; }
.exhibition__row { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1rem; font-size: .98rem; }
.exhibition__row dt { color: var(--muted); font-size: var(--fs-small); letter-spacing: .03em;
  text-transform: uppercase; padding-top: .15rem; }
.exhibition__row dd { color: var(--ink); }
.exhibition.is-current { position: relative; }
.exhibition__flag {
  display: inline-block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; background: var(--terra); border-radius: 99px; padding: .2rem .7rem; margin-bottom: .7rem;
}
@media (max-width: 720px) { .exhibition { grid-template-columns: 1fr; }
  .exhibition__row { grid-template-columns: 7rem 1fr; } }

/* ----------------------------------------------------------------------- */
/* Vita-Timeline                                                            */
/* ----------------------------------------------------------------------- */
.vita-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(2rem,1rem+4vw,5rem); align-items: start; }
.vita-portrait img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.vita-portrait figcaption { font-size: var(--fs-small); color: var(--muted); margin-top: .8rem; font-style: italic; font-family: var(--serif); font-size: 1.02rem; }
@media (max-width: 820px) { .vita-grid { grid-template-columns: 1fr; } }

.timeline { list-style: none; padding: 0; margin: 0; }
.timeline li {
  display: grid; grid-template-columns: 5.5rem 1fr; gap: 1.4rem;
  padding-block: 1.1rem; border-top: 1px solid var(--line);
}
.timeline li:first-child { border-top: none; padding-top: 0; }
.timeline .year { font-family: var(--serif); font-size: 1.5rem; color: var(--blue-deep); line-height: 1; }
.timeline .event h3 { font-size: 1.1rem; font-family: var(--sans); font-weight: 600; }
.timeline .event p, .timeline .event ul { color: var(--muted); font-size: .98rem; margin-top: .35rem; }
.timeline .event ul { padding-left: 1.1rem; columns: 2; column-gap: 2rem; }
@media (max-width: 520px) { .timeline .event ul { columns: 1; } }

/* ----------------------------------------------------------------------- */
/* Zitat / Pull-Quote                                                       */
/* ----------------------------------------------------------------------- */
.quote { text-align: center; max-width: 30ch; margin-inline: auto; }
.quote blockquote {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.8rem); line-height: 1.28; color: var(--ink);
}
.quote blockquote::before { content: "„"; color: var(--terra); }
.quote blockquote::after { content: "“"; color: var(--terra); }
.quote cite { display: block; font-style: normal; font-family: var(--sans); font-size: var(--fs-small);
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: 1.6rem; }

/* ----------------------------------------------------------------------- */
/* Presse & Videos                                                          */
/* ----------------------------------------------------------------------- */
.press-list { display: grid; gap: 1.6rem; max-width: var(--measure); }
.press-quote { border-left: 2px solid var(--line); padding-left: 1.4rem; }
.press-quote p { font-family: var(--serif); font-style: italic; font-size: 1.25rem; line-height: 1.5; color: var(--ink); }
.press-quote cite { display: block; font-style: normal; font-family: var(--sans); font-size: var(--fs-small);
  color: var(--muted); letter-spacing: .04em; margin-top: .6rem; }
.link-list { list-style: none; padding: 0; display: grid; gap: 1.1rem; }
.link-list li { border-top: 1px solid var(--line); padding-top: 1.1rem; }
.link-list a { font-family: var(--serif); font-size: 1.3rem; font-style: italic; }
.link-list__title { font-family: var(--serif); font-size: 1.3rem; font-style: italic; color: var(--muted); }
.link-list span { display: block; font-size: var(--fs-small); color: var(--muted); margin-top: .2rem; }

/* ----------------------------------------------------------------------- */
/* Kontakt                                                                  */
/* ----------------------------------------------------------------------- */
.contact-card { display: grid; gap: .35rem; font-size: var(--fs-lead); }
.contact-card .name { font-family: var(--serif); font-size: var(--fs-h3); }
.contact-card a { color: var(--blue); }

/* ----------------------------------------------------------------------- */
/* Seitentitel (innere Seiten)                                              */
/* ----------------------------------------------------------------------- */
.page-head { padding-block: clamp(2.5rem, 1.5rem + 4vw, 5rem) clamp(1.5rem,1rem+2vw,3rem); }
.page-head h1 { font-size: var(--fs-h1); margin-top: 1rem; }
.page-head .lead { color: var(--muted); margin-top: 1rem; max-width: 58ch; }

/* ----------------------------------------------------------------------- */
/* Footer                                                                   */
/* ----------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #cfcabc; padding-block: clamp(3rem,2rem+3vw,5rem); margin-top: var(--section-y); }
.site-footer a { color: #e7e2d6; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__sub { color: #9d978a; }
.footer-brand p { color: #9d978a; margin-top: 1rem; max-width: 36ch; font-size: .96rem; }
.footer-col h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: #9d978a; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.footer-col a { font-size: .98rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: var(--fs-small); color: #8d8779; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; } .footer-brand { grid-column: 1 / -1; } }

/* ----------------------------------------------------------------------- */
/* Lightbox                                                                 */
/* ----------------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; display: none;
  align-items: center; justify-content: center; padding: clamp(1rem, 2vw, 3rem);
  background: rgba(28,27,23,.92); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
}
.lightbox.is-open { display: flex; }
.lightbox__fig { margin: 0; max-width: min(92vw, 1100px); text-align: center; }
.lightbox__fig img {
  max-width: 100%; max-height: 80vh; width: auto; margin-inline: auto;
  border-radius: var(--radius); box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  background: var(--paper);
}
.lightbox__cap { color: #f1ece0; margin-top: 1.1rem; font-family: var(--serif); font-style: italic; font-size: 1.25rem; }
.lightbox__cap span { display: block; font-family: var(--sans); font-style: normal; font-size: var(--fs-small);
  color: #b7b1a3; letter-spacing: .03em; margin-top: .25rem; }
.lightbox__btn {
  position: absolute; background: none; border: none; color: #f1ece0; cursor: pointer;
  width: 3.4rem; height: 3.4rem; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .25s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.12); }
.lightbox__btn svg { width: 30px; height: 30px; }
.lightbox__close { top: clamp(.6rem,2vw,1.4rem); right: clamp(.6rem,2vw,1.4rem); }
.lightbox__prev { left: clamp(.4rem,1.5vw,1.5rem); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: clamp(.4rem,1.5vw,1.5rem); top: 50%; transform: translateY(-50%); }
@media (max-width: 600px) {
  .lightbox__prev { left: .3rem; } .lightbox__next { right: .3rem; }
  .lightbox__btn { width: 2.8rem; height: 2.8rem; }
}

/* ----------------------------------------------------------------------- */
/* Reveal-Animation                                                         */
/* ----------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .group-tile img, .work__frame img, .book__cover, .book-feat img { transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* Utilities */
.center { text-align: center; }
.mt-flow > * + * { margin-top: 1.2rem; }
.divider { height: 1px; background: var(--line); border: none; margin-block: var(--section-y); }
[hidden] { display: none !important; }
