:root {
  --ink: #101213;
  --paper: #f4efe5;
  --panel: #fffaf0;
  --muted: #74716a;
  --line: rgba(16, 18, 19, 0.14);
  --charcoal: #161010;
  --bordeaux: #4b111b;
  --bordeaux-dark: #26070c;
  --navy: #4b111b;
  --red: #8e111c;
  --red-deep: #5f0e16;
  --brass: #d0b15f;
  --blue: #7b2430;
  --shadow: 0 24px 70px rgba(16, 18, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

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

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

p,
h1,
h2,
h3 {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.06;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 48px;
  color: var(--panel);
  background: linear-gradient(180deg, rgba(38, 7, 12, 0.92), rgba(38, 7, 12, 0));
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  font-weight: 850;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 250, 240, 0.32);
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 250, 240, 0.86);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-links a {
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  border-color: var(--brass);
  outline: none;
}

.hero,
.page-hero {
  min-height: 84vh;
  display: grid;
  align-items: center;
  padding: 132px 64px 80px;
  color: var(--panel);
}

.page-hero {
  min-height: 68vh;
}

.home-hero {
  background:
    linear-gradient(90deg, rgba(38, 7, 12, 0.92), rgba(75, 17, 27, 0.68) 46%, rgba(16, 18, 19, 0.12)),
    linear-gradient(180deg, rgba(16, 18, 19, 0.18), rgba(38, 7, 12, 0.82)),
    url("assets/process/image7.png") center / cover no-repeat;
}

.documentaries-hero {
  background:
    linear-gradient(90deg, rgba(38, 7, 12, 0.92), rgba(75, 17, 27, 0.62), rgba(16, 18, 19, 0.2)),
    url("assets/thumbnails/HoH_Thumbnail_History330_Midway.png") center / cover no-repeat;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(38, 7, 12, 0.92), rgba(75, 17, 27, 0.62), rgba(16, 18, 19, 0.2)),
    url("assets/process/15.png") center / cover no-repeat;
}

.patreon-hero {
  background:
    linear-gradient(90deg, rgba(95, 14, 22, 0.94), rgba(16, 18, 19, 0.68), rgba(16, 18, 19, 0.18)),
    url("assets/process/18.png") center / cover no-repeat;
}

.production-hero {
  background:
    linear-gradient(90deg, rgba(38, 7, 12, 0.92), rgba(75, 17, 27, 0.62), rgba(16, 18, 19, 0.18)),
    url("assets/process/image11.png") center / cover no-repeat;
}

.oscar-hero {
  background:
    linear-gradient(90deg, rgba(38, 7, 12, 0.92), rgba(75, 17, 27, 0.62), rgba(16, 18, 19, 0.2)),
    url("assets/photos/20251010_085426.jpg") center / cover no-repeat;
}

.partnerships-hero {
  background:
    linear-gradient(90deg, rgba(38, 7, 12, 0.94), rgba(75, 17, 27, 0.7), rgba(16, 18, 19, 0.18)),
    url("assets/thumbnails/HoH_Thumbnail_History368_Bon_3.png") center / cover no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(38, 7, 12, 0.92), rgba(75, 17, 27, 0.62), rgba(16, 18, 19, 0.2)),
    url("assets/process/image9.png") center / cover no-repeat;
}

.hero-copy {
  width: min(780px, 100%);
}

.hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.eyebrow,
.tag {
  margin-bottom: 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.action-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 18px;
  font-weight: 850;
  line-height: 1.2;
}

.button-primary {
  background: var(--brass);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #e0c16c;
  outline: none;
}

.button-secondary {
  border-color: rgba(255, 250, 240, 0.46);
  color: var(--panel);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-secondary.dark:hover,
.button-secondary.dark:focus-visible {
  border-color: var(--brass);
  outline: none;
}

.button-secondary.dark {
  border-color: rgba(255, 250, 240, 0.3);
  color: var(--panel);
}

.button-dark {
  background: var(--charcoal);
  color: var(--panel);
}

.button-dark:hover,
.button-dark:focus-visible {
  background: var(--bordeaux);
  outline: none;
}

.section,
.latest-section,
.process-section,
.support-section,
.about-section,
.contact-section,
.statement-band,
.split-section {
  padding: 96px 64px;
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.statement-band,
.navy-section,
.bordeaux-section {
  background:
    linear-gradient(135deg, rgba(142, 17, 28, 0.18), transparent 42%),
    var(--bordeaux-dark);
  color: var(--panel);
}

.navy-section,
.bordeaux-section {
  background:
    linear-gradient(135deg, rgba(208, 177, 95, 0.12), transparent 46%),
    var(--bordeaux);
}

.statement-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: start;
}

.statement-grid > p {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
  line-height: 1.18;
}

.statement-grid div p,
.navy-section p,
.bordeaux-section p,
.contact-section p {
  color: rgba(255, 250, 240, 0.76);
}

.split-grid p {
  color: var(--muted);
  font-size: 1.07rem;
}

.bordeaux-section .split-grid p,
.navy-section .split-grid p,
.contact-section .split-grid p {
  color: rgba(255, 250, 240, 0.76);
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 42px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.06rem;
}

.text-page {
  width: min(900px, 100%);
}

.text-page p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.film-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.film-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.feature-film {
  grid-column: span 2;
}

.film-card-copy {
  padding: 22px;
}

.film-card-copy p:last-child,
.process-list p,
.benefit-grid p,
.about-grid p {
  color: var(--muted);
}

.tag {
  margin-bottom: 10px;
  color: var(--red);
}

.section-action {
  margin-top: 28px;
}

.muted-note {
  width: min(780px, 100%);
  color: var(--muted);
  font-size: 1.06rem;
}

.latest-section,
.contact-section {
  background: var(--bordeaux);
  color: var(--panel);
}

.latest-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 54px;
  align-items: center;
}

.latest-section .section-heading {
  margin-bottom: 0;
}

.latest-section .section-heading > p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.72);
}

.text-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--brass);
  font-weight: 850;
  border-bottom: 1px solid rgba(208, 177, 95, 0.55);
}

.text-link:hover,
.text-link:focus-visible {
  border-color: var(--panel);
  outline: none;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  background: #070808;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.process-section {
  background:
    linear-gradient(135deg, rgba(70, 98, 118, 0.12), transparent 36%),
    var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: stretch;
}

.process-main {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  border-left: 4px solid var(--red);
  padding: 0 0 0 18px;
}

.process-list p {
  margin-bottom: 0;
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.process-strip img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
}

.personal-gallery-section {
  background: var(--panel);
}

.photo-mosaic {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: stretch;
}

.photo-tile,
.production-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.photo-tile {
  margin: 0;
}

.photo-tile img,
.production-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tile img {
  min-height: 360px;
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.tall img {
  min-height: 640px;
}

.photo-tile.wide img {
  min-height: 320px;
}

.photo-tile figcaption,
.production-card figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.production-gallery-section {
  background:
    linear-gradient(135deg, rgba(142, 17, 28, 0.08), transparent 40%),
    var(--paper);
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.production-card {
  margin: 0;
}

.production-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.production-card img {
  aspect-ratio: 16 / 9;
  height: auto;
}

.production-card.large img {
  height: 100%;
  min-height: 520px;
}

.support-section {
  background:
    linear-gradient(160deg, rgba(95, 14, 22, 0.22), transparent 40%),
    var(--red-deep);
  color: var(--panel);
}

.support-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
}

.support-copy > p {
  max-width: 730px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.1rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0;
}

.benefit-grid div {
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 250, 240, 0.06);
}

.benefit-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--brass);
  font-weight: 900;
}

.benefit-grid p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.73);
}

.light-grid div {
  border-color: var(--line);
  background: var(--panel);
}

.light-grid p {
  color: var(--muted);
}

.about-grid {
  align-items: center;
}

.about-photo {
  width: 100%;
  max-height: 620px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center 22%;
  box-shadow: var(--shadow);
}

.about-grid p {
  font-size: 1.08rem;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.partner-list span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
  color: var(--charcoal);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 12px 36px rgba(16, 18, 19, 0.08);
}

.site-footer {
  padding: 30px 64px;
  background: var(--bordeaux-dark);
  color: rgba(255, 250, 240, 0.74);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid span {
  color: var(--panel);
  font-weight: 850;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--brass);
  outline: none;
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 28px;
  }

  .nav-links {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .page-hero {
    padding: 170px 28px 64px;
    background-position: center;
  }

  .section,
  .latest-section,
  .process-section,
  .support-section,
  .about-section,
  .contact-section,
  .statement-band,
  .split-section {
    padding: 72px 28px;
  }

  .statement-grid,
  .split-grid,
  .latest-grid,
  .process-layout,
  .support-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .film-grid,
  .compact-grid,
  .benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-film {
    grid-column: span 2;
  }

  .partner-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-main {
    min-height: 320px;
  }

  .photo-mosaic,
  .production-grid {
    grid-template-columns: 1fr 1fr;
  }

  .photo-tile.tall,
  .production-card.large {
    grid-column: span 2;
  }

  .photo-tile.tall img,
  .production-card.large img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 0.96rem;
  }

  .nav-links {
    font-size: 0.88rem;
  }

  .hero-copy p:not(.eyebrow),
  .support-copy > p,
  .about-grid p {
    font-size: 1rem;
  }

  .film-grid,
  .compact-grid,
  .benefit-grid,
  .process-strip,
  .partner-list,
  .photo-mosaic,
  .production-grid {
    grid-template-columns: 1fr;
  }

  .feature-film {
    grid-column: span 1;
  }

  .photo-tile.tall,
  .production-card.large {
    grid-column: span 1;
  }

  .photo-tile img,
  .photo-tile.tall img,
  .photo-tile.wide img,
  .production-card.large img {
    min-height: 280px;
  }

  .button,
  .contact-actions {
    width: 100%;
  }

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