/* ============================================================
   KAMERAMANN / DOP — SITE STYLES
   Design-System: siehe Kommentare unten bei :root
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root{
  /* Farben — sachliches, neutrales Dunkelgrau statt reinem Schwarz oder
     Filmlook-Ton. Ein einzelner gedämpfter Blaugrau-Akzent für Links,
     aktive Zustände und Hervorhebungen — bewusst zurückhaltend. */
  --bg: #101214;
  --surface: #17191c;
  --surface-2: #1e2124;
  --line: rgba(237, 238, 236, 0.10);
  --line-strong: rgba(237, 238, 236, 0.22);
  --text: #ededec;
  --muted: #8d9095;
  --accent: #7fa3b8;
  --accent-strong: #a9c4d4;

  --font-display: 'IBM Plex Sans', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --maxw: 1180px;
}

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

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

::selection{ background: var(--accent); color: #14100a; }

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

/* ---------- Header / Navigation ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 13, 12, 0.86);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-name{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.nav-name small{
  display: block;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links{
  list-style: none;
  display: flex;
  gap: 4px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-links a{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 7px 12px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover{
  color: var(--text);
  border-color: var(--line-strong);
}
.nav-links a[aria-current="page"]{
  color: var(--text);
  border-color: var(--text);
}

/* ---------- Hero (Startseite) ---------- */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}
.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,13,12,0.15) 0%, rgba(11,13,12,0.35) 55%, rgba(11,13,12,0.92) 100%);
}
.hero-content{
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  padding: 0 32px 64px;
}
.eyebrow{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.role-tags{
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0 0 8px;
  padding: 14px 0 0;
  border-top: 1px solid var(--line-strong);
}
.role-tags li{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--muted);
}
.role-tags li:not(:last-child)::after{
  content: "·";
  margin: 0 10px;
  color: var(--line-strong);
}
.scroll-cue{
  position: absolute;
  bottom: 24px;
  left: 32px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scroll-cue::before{
  content: "";
  width: 1px;
  height: 26px;
  background: var(--line-strong);
  display: inline-block;
}

/* ---------- Layout / Sections ---------- */
main{ display: block; }
.section{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 32px;
  border-bottom: 1px solid var(--line);
}
.section:last-of-type{ border-bottom: none; }
.section-head{
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 44px;
}
.section-num{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}
.section-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.01em;
  margin: 0;
}
.lede{
  max-width: 62ch;
  color: var(--text);
  font-size: 18px;
}
.lede + .lede{ margin-top: 1em; }

/* ---------- Über mich / Specs ---------- */
.about-grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 800px){
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
}
.spec-list{
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.spec-list li{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.spec-list dt,
.spec-list .k{
  font-family: var(--font-mono);
  color: var(--muted);
  letter-spacing: 0.04em;
}
.spec-list .v{ text-align: right; }

/* ---------- Projekte ---------- */
.project{
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.project:first-of-type{ padding-top: 0; }
.project:last-of-type{ border-bottom: none; }
@media (max-width: 800px){
  .project{ grid-template-columns: 1fr; }
}
.project-meta{ order: 2; }
.project-media{ order: 1; }
@media (min-width: 801px){
  .project:nth-of-type(even) .project-meta{ order: 1; }
  .project:nth-of-type(even) .project-media{ order: 2; }
}
.project-role{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}
.project-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.project-year{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 16px;
}
.project-desc{ color: var(--text); margin: 0; }

/* Video-Facade: Klick-zum-Laden statt Auto-Embed (Datenschutz) */
.video-facade{
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface) center / cover no-repeat;
  border: 1px solid var(--line);
  cursor: pointer;
  overflow: hidden;
}
.video-facade img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: opacity 0.2s ease;
}
.video-facade:hover img{ opacity: 0.9; }
.video-facade .play-btn{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-facade .play-btn span{
  width: 56px;
  height: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11,13,12,0.55);
}
.video-facade .play-btn svg{ margin-left: 3px; }
.video-facade .facade-label{
  position: absolute;
  bottom: 10px;
  left: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(11,13,12,0.65);
  padding: 4px 8px;
  border: 1px solid var(--line);
}
.video-facade iframe{
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-facade.placeholder{
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-facade.placeholder .facade-label{
  position: static;
  background: none;
  border: none;
  color: var(--muted);
  padding: 0;
}

/* ---------- Projekte: zweispaltiges Rollen-Layout ---------- */
.columns-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
@media (max-width: 860px){
  .columns-grid{ grid-template-columns: 1fr; gap: 0; }
}
.role-column-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-strong);
}
.project-card{
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.project-card:last-of-type{ border-bottom: none; }
.project-card .video-facade{ margin-bottom: 16px; }
.project-card-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
}
.project-card-meta{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}
.project-card-desc{
  font-size: 14px;
  color: var(--text);
  margin: 0 0 10px;
}
.project-card-link{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
}
.project-card-link:hover{ color: var(--accent-strong); }

/* ---------- Startseite: Social-Link im Hero ---------- */
.social-link{
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-decoration: none;
  margin-top: 18px;
}
.social-link:hover{ color: var(--accent-strong); }

/* ---------- Kontakt: Contact Sheet (wiederhergestellt) ---------- */
.contact-sheet{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact-row{
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.contact-row:last-child{ border-bottom: none; }
.contact-row .k{
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-row .v{
  font-size: 18px;
  text-decoration: none;
}
.contact-row a.v:hover{ color: var(--accent); }

/* ---------- Buttons (wiederhergestellt + Button-Gruppe) ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  padding: 14px 22px;
  border: 1px solid var(--line-strong);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.btn:hover{ border-color: var(--accent); color: var(--accent-strong); }

.btn-group{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.btn-group .btn{ margin: 0; }

/* ---------- Legal pages (wiederhergestellt) ---------- */
.legal{
  max-width: 74ch;
}
.legal h2{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-top: 2.4em;
}
.legal h2:first-of-type{ margin-top: 0; }
.legal p{ color: var(--text); }
.notice{
  border: 1px solid var(--line-strong);
  border-left: 2px solid var(--accent);
  background: var(--surface);
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 40px;
}
.notice strong{ color: var(--accent-strong); }

/* ---------- Footer (wiederhergestellt) ---------- */
.site-footer{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 40px 32px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-links{
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}
.footer-links a{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
}
.footer-links a:hover{ color: var(--text); }
.footer-copy{
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}
