/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root {
  --paper: #FAFAF8;
  --ink:   #121210;
  --muted: #8A8A84;
  --line:  #E6E4DD;

  --font: "Archivo", sans-serif;

  --gutter: 6vw;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

/* =========================================================
   HEADER — fixiert, dezent, mix-blend-mode für Lesbarkeit
   über hellen und dunklen Fotos
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px var(--gutter);
  mix-blend-mode: difference;
}
.wordmark {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #fff;
}
.site-nav { display: flex; gap: 28px; }
.site-nav a {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
}

/* =========================================================
   INTRO
   ========================================================= */
.intro {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
}
.intro-title {
  font-size: clamp(3rem, 11vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 0 0 4px 0;
}
.intro-sub {
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* =========================================================
   WORK — große, ruhige Bildstrecken je Kategorie.
   Kein Grid-Zwang: jede Kategorie ist ein eigener Block,
   Bilder alternieren leicht in Größe/Ausrichtung.
   ========================================================= */
.work { padding: 60px 0 40px; }

.work-category { margin-bottom: 140px; }

.work-category-head {
  padding: 0 var(--gutter);
  margin-bottom: 36px;
}
.work-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px 0;
}
.work-title {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 400;
  margin: 0 0 6px 0;
}
.work-location {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.work-photos {
  display: flex;
  flex-direction: column;
  gap: 4vw;
}
.work-photo {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: var(--line);
  overflow: hidden;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s cubic-bezier(.2,.6,.2,1),
              transform 0.9s cubic-bezier(.2,.6,.2,1);
}
.work-photo.is-visible { opacity: 1; transform: translateY(0); }
.work-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Editorial-Rhythmus: jedes zweite Bild etwas eingerückt/kleiner */
.work-photo:nth-child(3n+2) {
  width: 78%;
  align-self: flex-end;
  margin-right: var(--gutter);
}
.work-photo:nth-child(3n+2) ~ .work-photo:nth-child(3n+3) {
  width: 78%;
  align-self: flex-start;
  margin-left: var(--gutter);
}

.work-photo.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* =========================================================
   VIDEO
   ========================================================= */
.video-section {
  padding: 40px 0 120px;
}
.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
  position: relative;
}
.video-frame video,
.video-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-frame .placeholder-note {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0 20px;
}
.video-caption {
  padding: 18px var(--gutter) 0;
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 46ch;
}

/* =========================================================
   ABOUT — am Ende, editorial zweispaltig
   ========================================================= */
.about {
  padding: 60px var(--gutter) 100px;
  border-top: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 8vw;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background: var(--line);
  overflow: hidden;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-portrait:empty::after {
  content: "Portraitfoto hier einfügen";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 0.75rem;
  color: var(--muted);
}

.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 18px 0;
}
.bio {
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 300;
  line-height: 1.5;
  margin: 0 0 40px 0;
  max-width: 46ch;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 20px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.stat-value {
  display: block;
  font-size: 1.4rem;
  font-weight: 500;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  padding: 40px var(--gutter) 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-links { display: flex; gap: 22px; }
.footer-links a {
  font-size: 0.78rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.footer-links a:hover { border-color: var(--ink); }
.fine-print {
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 780px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .work-photo:nth-child(3n+2),
  .work-photo:nth-child(3n+2) ~ .work-photo:nth-child(3n+3) {
    width: 100%;
    margin: 0;
    align-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .work-photo { transition: none; opacity: 1; transform: none; }
}
