:root {
  --red: #b01f30;
  --red-dark: #681521;
  --ink: #171313;
  --muted: #6d6565;
  --line: #ded8d8;
  --soft: #f7f4f4;
  --page: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: Cochin, Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.62;
}
a { color: var(--red-dark); text-underline-offset: 3px; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  max-width: var(--page);
  margin: 0 auto;
  padding: 58px 28px 0;
  text-align: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--red);
  text-decoration: none;
}
.brand img { width: 58px; height: auto; }
.brand-text {
  font-size: clamp(2.15rem, 5vw, 3.35rem);
  line-height: 1;
  letter-spacing: .025em;
  font-weight: 400;
}
.tagline {
  margin: 10px 0 28px;
  color: #765d61;
  font-style: italic;
  font-size: 1rem;
}
.nav-wrap {
  border-top: 3px double var(--line);
  border-bottom: 3px double var(--line);
  padding: 10px 10px 9px;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: .88rem;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.nav a {
  color: #665e5e;
  text-decoration: none;
  white-space: nowrap;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--red-dark); }
.nav .lang-link {
  border-left: 1px solid var(--line);
  padding-left: 18px;
  margin-left: 2px;
}

main {
  max-width: var(--page);
  margin: 0 auto;
  padding: 46px 28px 70px;
}
.page-title {
  margin: 0 0 27px;
  font-size: clamp(2.2rem, 5vw, 3.55rem);
  line-height: 1.08;
  font-weight: 400;
}
.intro {
  max-width: 780px;
  font-size: 1.18rem;
  margin: 0 0 42px;
}
.eyebrow {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.simple-home {
  max-width: 820px;
}
.simple-home p {
  margin: 0 0 18px;
}
.home-sections {
  margin: 34px 0 18px;
  border-top: 1px solid var(--line);
}
.home-item {
  padding: 13px 0 14px;
  border-bottom: 1px solid var(--line);
}
.home-item h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 400;
}
.home-item a { text-decoration: none; }
.small-note {
  color: var(--muted);
  font-size: .92rem;
}
.project {
  display: grid;
  grid-template-columns: minmax(250px, 380px) minmax(0, 1fr);
  gap: 42px;
  padding: 35px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.project:first-of-type { border-top: 0; padding-top: 0; }
.project-image { background: var(--soft); overflow: hidden; }
.project-image.landscape { aspect-ratio: 16 / 9; }
.project-image.portrait { aspect-ratio: 3 / 4; }
.project-image.auto { aspect-ratio: auto; }
.project-image.contain img { object-fit: contain; background: #fff; }
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-copy h2 {
  margin: 0 0 11px;
  font-size: 2rem;
  line-height: 1.14;
  font-weight: 400;
}
.project-copy p { margin: 0 0 16px; }
.status {
  color: var(--red);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 18px 0 0;
}
.link-row .more { margin: 0; }
.small-credit {
  color: var(--muted);
  font-size: .9rem;
  margin: 6px 0 12px;
}
.people { max-width: 850px; }
.person {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.person:first-child { border-top: 0; padding-top: 0; }
.person img { width: 190px; max-height: 230px; object-fit: cover; }
.person h2 { margin: 0 0 10px; font-size: 1.65rem; font-weight: 400; }
.person p { margin: 0 0 14px; }
.contact-box {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  max-width: 660px;
}
.contact-box p { margin: 0 0 6px; }
.social-links {
  max-width: 660px;
  padding: 22px 0 0;
}
.social-links p { margin: 0 0 7px; }
.social-links a { text-decoration: none; }
.partners {
  margin-top: 55px;
  color: var(--muted);
  font-size: .9rem;
  max-width: 870px;
}
.site-footer {
  max-width: var(--page);
  margin: 0 auto;
  padding: 0 28px 40px;
  color: #776e6e;
  font-size: .82rem;
  text-align: center;
}
.footer-line { border-top: 1px solid var(--line); padding-top: 20px; }
@media (max-width: 820px) {
  body { font-size: 17px; }
  .site-header { padding-top: 34px; }
  .project { grid-template-columns: 260px minmax(0, 1fr); gap: 28px; }
}
@media (max-width: 620px) {
  .site-header { padding-left: 18px; padding-right: 18px; }
  main { padding: 34px 20px 55px; }
  .brand { gap: 8px; }
  .brand img { width: 45px; }
  .nav-wrap { padding-left: 2px; padding-right: 2px; }
  .nav { gap: 7px 15px; font-size: .8rem; }
  .nav .lang-link { border-left: 0; padding-left: 0; margin-left: 0; }
  .project { grid-template-columns: 1fr; gap: 22px; }
  .project-image.portrait { max-width: 330px; }
  .person { grid-template-columns: 1fr; gap: 18px; }
  .person img { width: 170px; }
  .page-title { margin-bottom: 20px; }
}

/* Finding Enok: larger artwork, smaller text and vertical alignment. */
.finding-enok-project {
  grid-template-columns: minmax(360px, 1.12fr) minmax(0, .88fr);
  align-items: center;
}
.finding-enok-image { background: #fff; overflow: visible; }
.finding-enok-image img { width: 100%; height: auto; object-fit: contain; }
.finding-enok-copy { font-size: .94rem; }
.finding-enok-copy h2 { font-size: 1.9rem; }

.news-block {
  max-width: 780px;
  padding: 30px 0 18px;
  border-top: 1px solid var(--line);
}
.news-block:first-of-type { border-top: 0; padding-top: 0; }
.news-block h2 { margin: 0 0 18px; font-size: 2rem; font-weight: 400; }
.news-item { padding: 17px 0; border-top: 1px solid var(--line); }
.news-item h3 { margin: 0 0 5px; font-size: 1.42rem; font-weight: 400; }
.news-item p { margin: 0; }

@media (max-width: 820px) {
  .finding-enok-project { grid-template-columns: minmax(320px, 1.08fr) minmax(0, .92fr); }
}
@media (max-width: 620px) {
  .finding-enok-project { grid-template-columns: 1fr; align-items: start; }
  .finding-enok-image { max-width: none; }
  .finding-enok-copy { font-size: 1rem; }
}


/* Slightly smaller Empire artwork */
.empire-image {
  max-width: 300px;
  justify-self: center;
  width: 100%;
}

/* Stacked media for De Tegenaanval */
.project-media-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.project-media-stack .project-image {
  width: 100%;
}
.tegenaanval-book {
  background: #fff;
}
.tegenaanval-book img {
  height: auto;
}

/* Review quote */
.review-quote {
  font-style: normal;
  margin-bottom: 6px;
}
.review-credit {
  color: var(--muted);
  font-size: .95rem;
  margin-top: 0;
}

@media (max-width: 620px) {
  .empire-image { max-width: 270px; }
}


/* July 2026 documentary refinements */
.project-images {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
}
.project-images .project-image { width: 100%; }
.supplementary-image img { width: 100%; height: auto; object-fit: contain; }
#empire .empire-image {
  width: 88%;
  max-width: 330px;
  justify-self: center;
}
.review-quote {
  max-width: 760px;
  margin: -15px 0 42px;
  padding: 18px 24px;
  border-left: 3px solid var(--red);
  background: var(--soft);
}
.review-quote p { margin: 0 0 7px; font-style: italic; }
.review-quote cite { color: var(--muted); font-size: .92rem; font-style: normal; }
@media (max-width: 620px) {
  #empire .empire-image { width: 90%; max-width: 300px; justify-self: start; }
  .project-images { gap: 14px; }
  .review-quote { margin-top: -8px; padding: 15px 18px; }
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.social-icons a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--red-dark);
}
.social-icons svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.7;
}
.social-icons svg rect,
.social-icons svg circle {
  fill: none;
}
.social-icons svg .icon-dot {
  fill: currentColor;
  stroke: none;
}
.social-icons a:hover { color: var(--red); }
