/* =========================================================
   CHRISTOPH RINNERT — ONE PAGER
   Pure HTML / CSS
   ========================================================= */

:root {
  --bg: #f1efe9;
  --bg-light: #f7f5f0;
  --text: #171717;
  --muted: #6f6c65;
  --dark: #151515;
  --line: rgba(23, 23, 23, 0.16);
  --max: 1500px;
  --pad: clamp(24px, 5vw, 88px);
}

/*
  OPTIONAL: EIGENE SCHRIFT EINBINDEN

  1. Font-Datei in /assets kopieren
  2. Dateinamen unten anpassen
  3. font-family in body bzw. Überschriften ändern

@font-face {
  font-family: "ChristophCustom";
  src: url("assets/deine-schrift.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
*/

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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


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

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}

.logo {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.main-nav {
  display: flex;
  gap: 28px;
}

.main-nav a {
  position: relative;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  background: #242424;
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    url("assets/christoph-rinnert-am-tisch.jpg")
    center 38% / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.18) 0%,
      rgba(0,0,0,.08) 35%,
      rgba(0,0,0,.70) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 170px var(--pad) 74px;
}

.eyebrow,
.section-label {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(68px, 10vw, 168px);
  line-height: .90;
}

.hero-quote {
  max-width: 720px;
  margin: 52px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.25;
}

.quote-source {
  margin: 16px 0 0;
  font-size: 12px;
  opacity: .7;
}

.scroll-hint {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 42px;
  font-size: 28px;
}


/* ---------- General Sections ---------- */

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(90px, 12vw, 180px) var(--pad);
}

.section-label {
  color: var(--muted);
}

.section-label.light {
  color: rgba(255,255,255,.62);
}


/* ---------- Intro ---------- */

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}

.intro h2,
.works-heading h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.045em;
}

.intro h2 {
  font-size: clamp(48px, 6vw, 94px);
  line-height: .98;
}

.intro-copy {
  max-width: 620px;
  padding-top: 8px;
}

.intro-copy > p:first-child {
  margin-top: 0;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.4;
}

.small-copy {
  margin-top: 38px;
  max-width: 530px;
  color: var(--muted);
}


/* ---------- Statement ---------- */

.statement {
  position: relative;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

/*
.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/christoph-studio.jpg") center/cover no-repeat;
  opacity: .12;
}
*/

.statement-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: clamp(110px, 14vw, 210px) var(--pad);
}

.statement blockquote {
  margin: 0;
  max-width: 1120px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 76px);
  line-height: 1.3;
}

.statement blockquote strong {
  font-weight: 400;
  font-style: italic;
}

.statement-credit {
  margin: 42px 0 0;
  color: rgba(255,255,255,.6);
  font-size: 13px;
}


/* ---------- Works ---------- */

.works-heading {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 30px;
  align-items: end;
  margin-bottom: 74px;
}

.works-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 108px);
  line-height: 1;
}

/*
  Editorial grid:
  landscape stills receive more width, classic posters stay narrower.
  Images retain their original aspect ratio and are never cropped.
*/
.works-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(52px, 6vw, 88px) 24px;
  align-items: start;
}

.work-card {
  min-width: 0;
}

.work-card.work-wide {
  grid-column: span 8;
}

.work-card.work-portrait {
  grid-column: span 4;
}

/* Alternate the widths so the gallery feels more editorial */
.work-card:nth-child(1) { grid-column: 1 / span 8; }
.work-card:nth-child(2) { grid-column: 9 / span 4; }
.work-card:nth-child(3) { grid-column: 1 / span 4; }
.work-card:nth-child(4) { grid-column: 5 / span 4; }
.work-card:nth-child(5) { grid-column: 9 / span 4; }
.work-card:nth-child(6) { grid-column: 1 / span 6; }
.work-card:nth-child(7) { grid-column: 7 / span 6; }

.work-link {
  display: block;
}

.work-image {
  width: 100%;
  overflow: hidden;
  background: #dedbd4;
}

.work-image-dark {
  background: #181818;
}

.work-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s cubic-bezier(.2,.75,.2,1),
              filter .5s ease;
}

.work-link:hover .work-image img {
  transform: scale(1.015);
  filter: brightness(.94);
}

.work-meta {
  position: relative;
  padding: 18px 0 0;
  padding-right: 118px;
  min-height: 86px;
}

.work-meta h3 {
  margin: 0;
  max-width: 700px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.02em;
}

.work-meta p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.work-arrow {
  position: absolute;
  right: 0;
  top: 20px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .25s ease, transform .25s ease;
}

.work-link:hover .work-arrow {
  color: var(--text);
  transform: translateX(3px);
}

.filmography-link {
  margin-top: clamp(90px, 11vw, 150px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: end;
}

.filmography-link h3 {
  margin: 5px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.1;
  font-weight: 400;
}

.filmography-kicker {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.filmography-copy {
  margin: 12px 0 0;
  max-width: 600px;
  color: var(--muted);
}

.wiki-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid var(--text);
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease;
}

.wiki-button:hover {
  background: var(--text);
  color: var(--bg);
}


/* ---------- Editorial Quote ---------- */

.editorial-quote {
  border-top: 1px solid var(--line);
}

.editorial-quote blockquote {
  margin: 0;
  max-width: 1180px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.1vw, 62px);
  line-height: 1.3;
}

.quote-source.dark {
  color: var(--muted);
}


/* ---------- Contact ---------- */

.contact {
  position: relative;
  min-height: 82svh;
  color: #fff;
  background: #262626;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.contact-image {
  position: absolute;
  inset: 0;
  background:
    url("assets/christoph-rinnert-am-tisch2.jpg")
    center 34% / cover no-repeat;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.76) 0%,
      rgba(0,0,0,.48) 45%,
      rgba(0,0,0,.2) 100%
    );
}

.contact-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 110px var(--pad) 90px;
}

.contact h2 {
  max-width: 1050px;
  font-size: clamp(58px, 4vw, 130px);
  line-height: 1.2;
}

.contact-subline {
  margin: 42px 0 10px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
}

.contact-mail {
  display: inline-block;
  margin-top: 8px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 46px);
}


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

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 28px var(--pad) 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 20px;
}


/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .site-header {
    padding-top: 22px;
  }

  .main-nav {
    display: none;
  }

  .hero-content {
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(64px, 18vw, 110px);
  }

  .hero-quote {
    margin-top: 38px;
    max-width: 92%;
  }

  .scroll-hint {
    display: none;
  }

  .intro-grid,
  .works-heading {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .works-heading {
    gap: 20px;
  }

  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 58px 22px;
  }

  .work-card.work-wide,
  .work-card.work-portrait,
  .work-card:nth-child(1),
  .work-card:nth-child(2),
  .work-card:nth-child(3),
  .work-card:nth-child(4),
  .work-card:nth-child(5),
  .work-card:nth-child(6),
  .work-card:nth-child(7) {
    grid-column: auto;
  }

  .work-meta {
    padding-right: 0;
  }

  .work-arrow {
    position: static;
    display: inline-block;
    margin-top: 12px;
  }

  .filmography-link {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact {
    min-height: 72svh;
  }
}

@media (max-width: 560px) {
  .works-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .work-card.work-wide,
  .work-card.work-portrait,
  .work-card:nth-child(1),
  .work-card:nth-child(2),
  .work-card:nth-child(3),
  .work-card:nth-child(4),
  .work-card:nth-child(5),
  .work-card:nth-child(6),
  .work-card:nth-child(7) {
    grid-column: 1;
  }

  .wiki-button {
    width: 100%;
  }

  .hero {
    min-height: 92svh;
  }

  .hero-image {
    background-position: 57% center;
  }

  .hero-quote {
    font-size: 21px;
  }

  .statement blockquote {
    font-size: 36px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
