/* =========================================================================
   loreen hinz — editorial / museum-style portfolio
   design tokens
   ========================================================================= */
:root {
  /* Canvas — warmes off-white wie bei Druckpapier / Museumswand */
  --paper: #f4f1ea;
  --paper-deep: #ece7dc;
  --ink: #121210;
  --ink-soft: #3a3831;
  --ink-faint: #8c867a;
  --rule: #d9d3c4;
  --accent: #b15a2a;   /* warm ochre, nur für Akzente */
  --invert-bg: #0e0e0c;
  --invert-fg: #f4f1ea;

  /* Typography scale */
  --font-display: 'Fraunces', 'Lora', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Spacing — generous magazine-style */
  --gutter: clamp(16px, 4vw, 48px);
  --stack-lg: clamp(48px, 8vw, 120px);
  --stack-md: clamp(24px, 4vw, 48px);

  --transition: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* Reset / base */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ink-soft); }

::selection { background: var(--ink); color: var(--paper); }

/* Decorative horizontal rule */
hr { border: 0; height: 1px; background: var(--rule); margin: var(--stack-md) 0; }

/* =========================================================================
   Header — dünne Leiste, elegant
   ========================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--gutter);
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  transition: padding 240ms var(--transition);
}
.site-header.is-scrolled { padding-top: 10px; padding-bottom: 10px; }

.site-header .logo {
  grid-column: 2;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: normal;
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  font-variation-settings: 'opsz' 48, 'SOFT' 50;
}
.site-header .logo:hover { color: var(--ink); }

.hdr-right {
  grid-column: 3;
  display: flex; align-items: center; justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
}
.nav-main {
  display: flex; gap: clamp(18px, 3vw, 40px);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-main a { position: relative; padding: 4px 0; }
.nav-main a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right; transition: transform 320ms var(--transition);
}
.nav-main a:hover::after,
.nav-main a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-main a.active { color: var(--ink); }

/* Section counter left side */
.site-header .hdr-left {
  grid-column: 1;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}

.lang-switch {
  display: flex;
  gap: 2px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-left: clamp(12px, 1.5vw, 24px);
  border-left: 1px solid var(--rule);
}
.lang-switch a {
  color: var(--ink-faint);
  padding: 3px 6px;
  border-radius: 2px;
  transition: color 200ms, background 200ms;
}
.lang-switch a.active { color: var(--ink); font-weight: 600; }
.lang-switch a:hover { color: var(--ink); }

.burger { display: none; background: none; border: 0; padding: 8px 0; cursor: pointer; grid-column: 1; justify-self: start; }
.burger span { display: block; width: 22px; height: 1px; background: var(--ink); margin: 5px 0; transition: 260ms; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0;
  background: var(--paper);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 28px;
  font-family: var(--font-display);
  font-size: clamp(32px, 7vw, 48px);
  font-weight: 300;
  letter-spacing: 0.02em;
  z-index: 40;
  visibility: hidden; opacity: 0;
  transition: opacity 320ms var(--transition);
}
.nav-mobile.open { visibility: visible; opacity: 1; }
.nav-mobile a { padding: 6px 0; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-header .hdr-left { display: none; }
  .site-header .logo { grid-column: 2; justify-self: center; }
  .hdr-right { grid-column: 3; gap: 0; }
  .nav-main { display: none; }
  .lang-switch { padding-left: 0; border-left: 0; }
  .burger { display: block; }
}

/* =========================================================================
   Main + Hero
   ========================================================================= */
main { padding: 0 var(--gutter) var(--stack-lg); }

/* Section hero — editorial, asymmetric, category number */
.section-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: clamp(40px, 10vw, 140px) 0 clamp(32px, 6vw, 80px);
  border-bottom: 1px solid var(--rule);
  margin-bottom: var(--stack-md);
}
@media (min-width: 900px) {
  .section-hero {
    grid-template-columns: 1fr 2fr 1fr;
    align-items: end;
  }
}
.section-hero .meta {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; gap: 16px; flex-wrap: wrap;
}
.section-hero h1 {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(60px, 11vw, 160px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.section-hero h1 em {
  font-style: italic; font-weight: 500;
}
@media (min-width: 900px) {
  .section-hero h1 { grid-column: 2; text-align: center; }
  .section-hero .meta.right { justify-content: flex-end; grid-column: 3; }
}

/* =========================================================================
   Album grid — Masonry / Editorial
   Verschiedene Bildhöhen, nicht uniform square. Die native Größe wird
   respektiert — viel organischer für ein Fineart-Portfolio.
   ========================================================================= */
.album-grid {
  columns: 1;
  column-gap: clamp(20px, 3vw, 48px);
  max-width: 1840px; margin: 0 auto;
}
@media (min-width: 640px)  { .album-grid { columns: 2; } }
@media (min-width: 1100px) { .album-grid { columns: 3; } }
@media (min-width: 1600px) { .album-grid { columns: 4; } }

.album-card {
  display: block;
  break-inside: avoid;
  margin-bottom: clamp(36px, 5vw, 72px);
  transition: transform 500ms var(--transition);
}
.album-card .thumb {
  overflow: hidden;
  background: var(--paper-deep);
  position: relative;
  opacity: 0.001; transform: scale(0.995);
  transition: opacity 900ms var(--transition), transform 900ms var(--transition);
}
.album-card.in-view .thumb { opacity: 1; transform: none; }
.album-card .thumb::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  pointer-events: none; z-index: 3;
}
.album-card .thumb img {
  width: 100%; height: auto; display: block;
  transform: scale(1); transition: transform 1200ms var(--transition), filter 500ms var(--transition);
}

/* Hover overlay — title over blurred image preview (vsble-style) */
.album-card .thumb .hover-cap {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  opacity: 0;
  background: rgba(20, 20, 18, 0.28);
  backdrop-filter: blur(2px) saturate(0.9);
  -webkit-backdrop-filter: blur(2px) saturate(0.9);
  transition: opacity 320ms var(--transition);
  pointer-events: none;
}
.album-card .thumb .hover-cap .inner {
  display: flex; flex-direction: column; gap: 6px; align-items: center;
  transform: translateY(6px);
  transition: transform 380ms var(--transition);
}
.album-card .thumb .hover-cap .num {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(244, 241, 234, 0.75);
}
.album-card .thumb .hover-cap .ttl {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 500;
  line-height: 1.15;
  color: #fff;
  font-variation-settings: 'opsz' 48, 'SOFT' 50;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.album-card .thumb .hover-cap .desc {
  font-family: var(--font-body); font-size: 12px;
  color: rgba(244, 241, 234, 0.85); letter-spacing: 0.02em;
  max-width: 32ch;
}
@media (hover: hover) {
  .album-card:hover .thumb img {
    transform: scale(1.05);
    filter: blur(4px) brightness(0.88);
  }
  .album-card:hover .thumb .hover-cap { opacity: 1; }
  .album-card:hover .thumb .hover-cap .inner { transform: none; }
}

.album-caption {
  margin-top: 14px;
  display: flex; flex-direction: column; gap: 2px;
}
.album-caption .title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  color: var(--ink);
  font-variation-settings: 'opsz' 24;
}
.album-caption .desc {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.4;
}
.album-caption .desc:empty { display: none; }

/* =========================================================================
   Album page — cinematic flow
   ========================================================================= */
.album-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: clamp(40px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  max-width: 1400px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(40px, 6vw, 96px);
}
@media (min-width: 900px) {
  .album-head { grid-template-columns: 1fr auto 1fr; align-items: end; }
  .album-head .back { grid-column: 1; }
  .album-head .spine { grid-column: 2; text-align: center; }
  .album-head .meta-right { grid-column: 3; text-align: right; }
}
.album-head .back,
.album-head .meta-right,
.album-head .counter {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 10px;
}
.album-head .back:hover { color: var(--ink); }
.album-head h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(42px, 6.5vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 14px 0 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.album-head h1 em { font-style: italic; font-weight: 500; }
.album-head .album-description {
  max-width: 60ch;
  margin: 24px auto 0;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.65;
  color: var(--ink-soft);
  white-space: pre-line;
}

/* =========================================================================
   Album detail — curator grid (thumbnails, click opens lightbox)
   Asymmetric, varying cell sizes, never vertically long.
   ========================================================================= */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: dense;
  gap: clamp(4px, 0.8vw, 16px);
  max-width: 1840px; margin: 0 auto;
}
@media (min-width: 700px)  { .work-grid { grid-template-columns: repeat(6, 1fr); gap: clamp(6px, 1vw, 20px); } }
@media (min-width: 1200px) { .work-grid { grid-template-columns: repeat(12, 1fr); } }

.work {
  margin: 0;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  grid-column: span 2;
  aspect-ratio: 4/5;
  background: var(--paper-deep);
  opacity: 0.001; transform: translateY(16px);
  transition: opacity 800ms var(--transition), transform 800ms var(--transition);
  outline: 0;
}
.work.in-view { opacity: 1; transform: none; }
/* Default: 12-col grid. Each work spans 4 (3 per row). */
@media (min-width: 1200px) {
  .work { grid-column: span 4; aspect-ratio: 4/5; }
  .work.landscape { grid-column: span 6; aspect-ratio: 3/2; }
  .work.portrait-tall { grid-column: span 3; aspect-ratio: 2/3; }
  .work.portrait { grid-column: span 4; aspect-ratio: 4/5; }
  .work.is-feature.landscape { grid-column: span 8; aspect-ratio: 3/2; }
  .work.is-feature.portrait { grid-column: span 5; aspect-ratio: 4/5; }
  .work.is-feature.portrait-tall { grid-column: span 5; aspect-ratio: 2/3; }
}
/* Medium: 6-col grid. Each work spans 2. */
@media (min-width: 700px) and (max-width: 1199px) {
  .work { grid-column: span 2; aspect-ratio: 4/5; }
  .work.landscape { grid-column: span 3; aspect-ratio: 3/2; }
  .work.portrait-tall { grid-column: span 2; aspect-ratio: 2/3; }
  .work.portrait { grid-column: span 2; aspect-ratio: 4/5; }
  .work.is-feature.landscape { grid-column: span 4; aspect-ratio: 3/2; }
  .work.is-feature.portrait { grid-column: span 3; aspect-ratio: 4/5; }
  .work.is-feature.portrait-tall { grid-column: span 3; aspect-ratio: 2/3; }
}
/* Mobile: 2-col grid. All full-width. */
@media (max-width: 699px) {
  .work { grid-column: span 2; aspect-ratio: 4/5; }
  .work.landscape { aspect-ratio: 3/2; }
  .work.portrait-tall { aspect-ratio: 2/3; }
}

.work img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: center;
  transform: scale(1);
  transition: transform 900ms var(--transition), filter 400ms;
}
.work:hover img { transform: scale(1.04); filter: brightness(1.02); }
.work::after {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
  pointer-events: none;
}

/* Video tile — static poster + centered play icon. Plays in lightbox on click. */
.work.is-video .play-icon {
  position: absolute; top: 50%; left: 50%;
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(20,20,18,0.72);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 280ms var(--transition), background 280ms var(--transition);
  z-index: 2;
}
.work.is-video:hover .play-icon { background: var(--accent); transform: translate(-50%, -50%) scale(1.06); }
.work.is-video .play-icon svg { width: 24px; height: 24px; margin-left: 2px; }

.work .work-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

.work:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* =========================================================================
   Album blocks — text, heading, quote, spacer, divider between photo-grids
   ========================================================================= */
.album-blocks { max-width: 1840px; margin: 0 auto; }
.album-blocks .work-grid { margin: 0 auto; }
.album-blocks .work-grid + .work-grid { margin-top: clamp(8px, 1vw, 20px); }

.block {
  max-width: 820px; margin: clamp(32px, 4vw, 64px) auto;
  padding: 0 clamp(8px, 2vw, 32px);
  opacity: 0.001; transform: translateY(14px);
  transition: opacity 700ms var(--transition), transform 700ms var(--transition);
}
.block.in-view { opacity: 1; transform: none; }

.block-heading h2,
.block-heading h3 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: 'opsz' 72;
  margin: 0;
}
.block-heading h2 { font-size: clamp(28px, 3.6vw, 48px); line-height: 1.1; }
.block-heading h3 { font-size: clamp(22px, 2.4vw, 32px); line-height: 1.15; font-style: italic; font-weight: 400; }

.block-text {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--ink-soft);
}
.block-text p { margin: 0 0 1em; }
.block-text p:last-child { margin-bottom: 0; }
.block-text strong { color: var(--ink); font-weight: 600; }
.block-text em { font-style: italic; }
.block-text a { color: var(--ink); border-bottom: 1px solid var(--ink-faint); }
.block-text a:hover { border-color: var(--ink); }

.block-quote {
  text-align: center;
  padding: clamp(32px, 5vw, 72px) clamp(16px, 4vw, 60px);
}
.block-quote blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 2.8vw, 38px); line-height: 1.3; color: var(--ink);
  letter-spacing: -0.005em;
  font-variation-settings: 'opsz' 60;
}
.block-quote cite {
  display: block; margin-top: 20px;
  font-family: var(--font-mono);
  font-style: normal; font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint);
}

.block-divider { max-width: 1200px; }
.block-divider hr {
  border: 0; height: 1px; background: var(--rule);
  margin: clamp(16px, 2vw, 32px) 0;
}

.block-spacer { max-width: none; margin: 0; padding: 0; opacity: 1; transform: none; }
.block-spacer-sm { height: 24px; }
.block-spacer-md { height: 56px; }
.block-spacer-lg { height: 96px; }
.block-spacer-xl { height: 160px; }

/* =========================================================================
   Text pages (Contact, Legal, 404) — editorial
   ========================================================================= */
.text-page {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(60px, 10vw, 140px) 0 clamp(60px, 8vw, 120px);
}
.text-page .eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.text-page h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 104px);
  line-height: 1.0;
  letter-spacing: -0.015em;
  margin: 0 0 clamp(32px, 5vw, 64px);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.text-page h1 em { font-style: italic; font-weight: 500; }
.text-page p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 1.3em;
  font-weight: 400;
}
.text-page p strong { color: var(--ink); font-weight: 600; }
.text-page h2, .text-page h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 2.2em 0 0.6em;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.text-page h2 { font-size: clamp(20px, 2vw, 26px); }
.text-page h3 { font-size: clamp(16px, 1.5vw, 20px); font-style: italic; font-weight: 300; }
.text-page a { color: var(--ink); border-bottom: 1px solid var(--ink-faint); transition: border-color 200ms; }
.text-page a:hover { border-color: var(--ink); }
.text-page .contact-grid {
  display: grid; gap: clamp(20px, 3vw, 40px);
  grid-template-columns: 1fr;
  margin-top: clamp(24px, 4vw, 48px);
  padding-top: clamp(24px, 4vw, 48px);
  border-top: 1px solid var(--rule);
}
@media (min-width: 700px) { .text-page .contact-grid { grid-template-columns: repeat(2, 1fr); } }
.text-page .contact-grid .card { }
.text-page .contact-grid .card strong {
  display: block; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 6px; font-weight: 400;
}

/* =========================================================================
   Footer — minimal
   ========================================================================= */
.site-footer {
  padding: clamp(40px, 5vw, 80px) var(--gutter) clamp(24px, 3vw, 40px);
  border-top: 1px solid var(--rule);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.site-footer .legal { text-align: left; }
.site-footer .socials {
  display: flex; gap: 14px; justify-content: center;
}
.site-footer .socials a { color: var(--ink-soft); padding: 4px; }
.site-footer .socials a:hover { color: var(--ink); }
.site-footer .socials svg { width: 18px; height: 18px; }
.site-footer .copy { text-align: right; }
@media (max-width: 700px) {
  .site-footer { grid-template-columns: 1fr; text-align: center; }
  .site-footer .legal, .site-footer .copy { text-align: center; }
}

/* =========================================================================
   Lightbox — pure darkroom look
   ========================================================================= */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(14, 14, 12, 0.97);
  display: none;
  align-items: center; justify-content: center;
  z-index: 100;
  padding: clamp(16px, 4vw, 60px);
}
.lightbox.open { display: flex; animation: lbFadeIn 320ms var(--transition); }
@keyframes lbFadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox .lb-media {
  max-width: 100%; max-height: 100%;
  display: flex; align-items: center; justify-content: center;
  animation: lbImgIn 420ms var(--transition);
}
.lightbox img {
  max-width: 100%; max-height: 100%;
  width: auto; height: auto; display: block;
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
}
/* Vimeo player keeps the video's native aspect-ratio. No cropping, no zoom —
   side bars are fine, matches vsble behaviour. */
.lightbox .lb-video {
  max-width: 92vw; max-height: 90vh;
  width: 92vw; height: 90vh;
  border: 0;
  background: transparent;
}
@keyframes lbImgIn { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: none; } }
.lightbox .close,
.lightbox .nav-btn {
  background: none; border: 0; cursor: pointer; color: var(--invert-fg);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  position: absolute;
  padding: 10px 14px;
  transition: opacity 200ms;
}
.lightbox .close { top: 20px; right: 24px; }
.lightbox .nav-btn {
  top: 50%; transform: translateY(-50%);
  font-size: 24px; letter-spacing: 0;
}
.lightbox .prev { left: 12px; }
.lightbox .next { right: 12px; }
.lightbox .close:hover, .lightbox .nav-btn:hover { opacity: 0.6; }
.lightbox .counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--invert-fg); opacity: 0.55;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
}

/* Custom cursor entfernt — nativer Maus-Cursor bleibt immer sichtbar. */
.custom-cursor { display: none !important; }

/* =========================================================================
   404
   ========================================================================= */
.not-found {
  text-align: center;
  padding: clamp(120px, 20vw, 220px) var(--gutter);
  max-width: 600px; margin: 0 auto;
}
.not-found h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(100px, 20vw, 220px); line-height: 1;
  margin: 0 0 20px; letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144;
}
.not-found p { color: var(--ink-faint); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; }
.not-found a { border-bottom: 1px solid currentColor; padding-bottom: 1px; }

/* =========================================================================
   Reduced motion
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .album-card, .photo { opacity: 1; transform: none; }
}
