
:root {
  --ink: #191c1b;
  --paper: #f1eee4;
  --paper-deep: #e7e0d1;
  --teal: #0d746e;
  --teal-dark: #07524f;
  --red: #a6322b;
  --line: rgba(25, 28, 27, 0.22);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
}

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

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

::selection {
  background: var(--red);
  color: white;
}

.site-nav {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 4vw;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  font-size: 11px;
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.nav-links a,
.hero__scroll,
footer a {
  transition: opacity 180ms ease;
}

.nav-links a:hover,
.hero__scroll:hover,
footer a:hover {
  opacity: 0.64;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--teal-dark);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Keep this relative so the downloadable site works both on Netlify and
     when index.html is opened directly from the website folder. */
  background-image: url("images/ode-poster.webp");
  background-size: cover;
  background-position: 50% 24%;
  filter: saturate(0.92) contrast(1.04);
}

.hero__veil {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 22, 21, 0.82) 0%, rgba(7, 22, 21, 0.48) 42%, rgba(7, 22, 21, 0.04) 76%);
}

.hero__ants,
.statement__ants {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at center, #111 0 32%, transparent 35%),
    radial-gradient(ellipse at center, #111 0 38%, transparent 41%),
    radial-gradient(ellipse at center, #111 0 30%, transparent 34%);
  background-size: 8px 5px, 6px 4px, 7px 4px;
  background-position: 86% 24%, 89% 27%, 92% 30%;
  background-repeat: no-repeat;
}

.hero__content {
  position: absolute;
  z-index: 2;
  left: 4vw;
  bottom: 14vh;
  max-width: 850px;
}

.eyebrow,
.kicker,
.section-index {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
}

.hero h1 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(64px, 9.6vw, 154px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: -0.07em;
}

.hero__intro {
  max-width: 490px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.35;
}

.hero__meta {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 5vh;
  display: flex;
  gap: 22px;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero__meta span + span::before {
  content: "·";
  margin-right: 22px;
}

.hero__scroll {
  position: absolute;
  z-index: 2;
  left: 4vw;
  bottom: 5vh;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-shell {
  width: min(100% - 8vw, 1500px);
  margin-inline: auto;
  padding-block: clamp(90px, 10vw, 160px);
}

.section-index {
  padding-bottom: 20px;
  color: rgba(25, 28, 27, 0.58);
  border-bottom: 1px solid var(--line);
}

.section-index--light {
  color: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 255, 255, 0.24);
}

.film-intro {
  display: grid;
  grid-template-columns: 1fr 2.15fr 1fr;
  gap: 4vw;
}

.film-intro .section-index {
  grid-column: 1 / -1;
}

.film-intro__copy {
  grid-column: 1 / 3;
}

.film-intro__copy h2,
.section-heading-row h2,
.director h2,
.credits h2,
.collective h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.film-intro__copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 66px);
  line-height: 1.05;
}

.kicker {
  margin-bottom: 18px;
  color: var(--red);
}

.film-intro__body {
  grid-column: 3;
  padding-top: 30px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.6;
}

.story-panel {
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 820px;
  background: var(--teal-dark);
  color: white;
}

.story-panel__poster {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.story-panel__poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, rgba(7, 82, 79, 0.82));
}

.story-panel__poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}

.story-panel__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 130px);
}

.story-panel__content h2 {
  max-width: 730px;
  margin: 58px 0 40px;
  font-family: var(--serif);
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.story-panel__content > p,
.story-panel details p {
  max-width: 670px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.story-panel details {
  max-width: 670px;
  margin-top: 20px;
  padding-block: 16px;
  border-block: 1px solid rgba(255, 255, 255, 0.26);
}

.story-panel summary {
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-panel details p {
  margin: 20px 0 2px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4vw;
  align-items: end;
  margin: 56px 0 52px;
}

.section-heading-row h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.95;
}

.section-heading-row p {
  max-width: 370px;
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.5;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 22px;
  background: #222725;
  background-position: center;
  background-size: cover;
  color: white;
}

.video-card--large {
  aspect-ratio: 2.2 / 1;
  background: var(--teal-dark);
}

.video-card__shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 13, 13, 0.72) 0%, rgba(5, 13, 13, 0.04) 56%),
    linear-gradient(90deg, rgba(5, 13, 13, 0.28), transparent 56%);
}

.video-card__grain {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0.34;
  background:
    radial-gradient(circle at 76% 34%, rgba(255, 255, 255, 0.1) 0 1px, transparent 2px),
    radial-gradient(circle at 34% 66%, rgba(255, 255, 255, 0.08) 0 1px, transparent 2px);
  background-size: 13px 13px, 17px 17px;
}

.video-card::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.video-card__topline,
.video-card__status,
.video-card__centre {
  position: relative;
  z-index: 2;
}

.video-card__topline {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.video-card__centre {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.video-card__centre p,
.video-card__status {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.video-card__status {
  position: absolute;
  right: 22px;
  bottom: 22px;
  opacity: 0.48;
}

.play-mark {
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
}

.play-mark span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid white;
}

.statement {
  position: relative;
  overflow: hidden;
  background: #1d201f;
  color: white;
}

.statement__ants {
  opacity: 0.32;
  background-position: 82% 18%, 85% 22%, 88% 27%;
}

.statement__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 8vw, 1500px);
  margin: auto;
  padding-block: clamp(95px, 11vw, 180px);
}

.statement blockquote {
  max-width: 1180px;
  margin: 70px 0 80px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.3vw, 100px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.statement__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  max-width: 880px;
  margin-left: auto;
}

.statement__columns p {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.75);
}

.frames {
  padding-block: clamp(90px, 10vw, 160px);
  background: #171918;
  color: white;
}

.frames__header,
.frames__list {
  width: min(100% - 8vw, 1600px);
  margin-inline: auto;
}

.frames .section-heading-row {
  margin-bottom: clamp(54px, 7vw, 100px);
}

.frames .section-heading-row p {
  color: rgba(255, 255, 255, 0.66);
}

.frames__list {
  display: grid;
  gap: clamp(42px, 6vw, 94px);
}

.film-frame {
  margin: 0;
}

.film-frame__image {
  position: relative;
  aspect-ratio: 2048 / 858;
  overflow: hidden;
  background: #0d0f0e;
}

.film-frame__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-frame figcaption {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.bts-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(84px, 7vw, 118px);
  gap: 14px;
}

.bts-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
}

.bts-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bts-shot figcaption {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 12px;
  padding: 6px 8px;
  background: rgba(16, 18, 17, 0.72);
  color: white;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.bts-shot--1 {
  grid-column: 1 / 8;
  grid-row: span 4;
}

.bts-shot--2,
.bts-shot--3 {
  grid-column: 8 / 13;
  grid-row: span 2;
}

.bts-shot--4 {
  grid-column: 1 / 5;
  grid-row: span 3;
}

.bts-shot--5 {
  grid-column: 5 / 9;
  grid-row: span 3;
}

.bts-shot--6 {
  grid-column: 9 / 13;
  grid-row: span 3;
}

.bts-shot--7 {
  grid-column: 2 / 12;
  grid-row: span 4;
}

.director {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr 2fr;
  gap: 5vw;
  align-items: center;
}

.director .section-index {
  align-self: start;
}

.director__portrait {
  position: relative;
  aspect-ratio: 0.84;
  overflow: hidden;
  background: #d1cdc2;
}

.director__portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.director__copy h2 {
  margin-bottom: 36px;
  font-size: clamp(54px, 6.5vw, 102px);
  line-height: 0.9;
}

.director__copy > p:not(.kicker) {
  max-width: 650px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
}

.credits {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.8fr;
  gap: 5vw;
  padding-top: 20px;
}

.credits h2 {
  font-size: clamp(34px, 3vw, 50px);
  line-height: 1.08;
}

.credits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 32px;
  margin: 0;
}

.credits__grid div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.credits dt {
  margin-bottom: 7px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(25, 28, 27, 0.56);
}

.credits dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 16px;
}

.credits__names {
  grid-column: 2 / -1;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.credits__names--cast {
  padding-top: 20px;
}

.credits__names p:last-child {
  max-width: 960px;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
}

.collective {
  background: var(--red);
  color: white;
}

.collective__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1.8fr;
  gap: 5vw;
  width: min(100% - 8vw, 1500px);
  margin: auto;
  padding-block: clamp(100px, 12vw, 190px);
}

.collective .section-index {
  grid-column: 1 / -1;
}

.collective__mark {
  align-self: start;
  font-size: clamp(16px, 2vw, 28px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.12em;
}

.collective__copy {
  grid-column: 2 / 4;
}

.collective h2 {
  margin-bottom: 36px;
  font-size: clamp(48px, 5.4vw, 86px);
  line-height: 0.98;
}

.collective__copy > p {
  max-width: 650px;
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.82);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: end;
  padding: 60px 4vw;
  background: #171918;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark--footer {
  color: white;
  font-size: 14px;
}

footer p {
  margin: 5px 0 0;
}

footer div p + p {
  color: rgba(255, 255, 255, 0.4);
}

.footer__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 30px;
}

.post-partner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
}

.post-partner span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.post-partner img {
  display: block;
  width: clamp(116px, 10vw, 154px);
  height: auto;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

@media (max-width: 980px) {
  .film-intro {
    grid-template-columns: 1fr 2fr;
  }

  .film-intro__copy {
    grid-column: 1 / -1;
  }

  .film-intro__body {
    grid-column: 2;
  }

  .story-panel {
    grid-template-columns: 38% 62%;
  }

  .director,
  .credits,
  .collective__inner {
    grid-template-columns: 1fr 1.5fr;
  }

  .director .section-index,
  .credits .section-index,
  .collective .section-index {
    grid-column: 1 / -1;
  }

  .credits__grid,
  .collective__copy {
    grid-column: 2;
  }

  .credits__names {
    grid-column: 2;
  }

  .bts-mosaic {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 92px;
  }

  .bts-shot--1 {
    grid-column: 1 / 7;
    grid-row: span 5;
  }

  .bts-shot--2,
  .bts-shot--4,
  .bts-shot--6 {
    grid-column: 1 / 4;
    grid-row: span 3;
  }

  .bts-shot--3,
  .bts-shot--5,
  .bts-shot--7 {
    grid-column: 4 / 7;
    grid-row: span 3;
  }
}

@media (max-width: 720px) {
  .site-nav {
    padding: 20px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a:nth-child(3),
  .nav-links a:nth-child(4) {
    display: none;
  }

  .hero::before {
    background-position: 48% 34%;
  }

  .hero__veil {
    background: linear-gradient(0deg, rgba(5, 13, 13, 0.9) 0%, rgba(5, 13, 13, 0.2) 75%);
  }

  .hero__content {
    left: 20px;
    right: 20px;
    bottom: 18vh;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 86px);
    line-height: 0.82;
  }

  .hero__meta {
    left: 20px;
    right: auto;
    bottom: 5vh;
    gap: 10px;
  }

  .hero__meta span + span::before {
    margin-right: 10px;
  }

  .hero__scroll {
    display: none;
  }

  .section-shell,
  .statement__inner,
  .collective__inner {
    width: calc(100% - 40px);
  }

  .film-intro,
  .section-heading-row,
  .story-panel,
  .director,
  .credits,
  .collective__inner {
    grid-template-columns: 1fr;
  }

  .film-intro__body,
  .credits__grid,
  .credits__names,
  .collective__copy,
  .director .section-index,
  .credits .section-index,
  .collective .section-index {
    grid-column: 1;
  }

  .film-intro__body {
    padding-top: 0;
  }

  .story-panel__poster {
    min-height: 78svh;
  }

  .story-panel__poster::after {
    background: linear-gradient(0deg, rgba(7, 82, 79, 0.86), transparent 42%);
  }

  .story-panel__content {
    padding: 70px 20px;
  }

  .story-panel__content h2 {
    margin-top: 42px;
  }

  .section-heading-row {
    align-items: start;
    margin: 40px 0;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .video-card,
  .video-card--large {
    aspect-ratio: 4 / 3;
  }

  .video-card__status {
    left: 22px;
    right: auto;
  }

  .statement__columns {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .frames__header,
  .frames__list {
    width: calc(100% - 40px);
  }

  .frames__list {
    gap: 42px;
  }

  .film-frame figcaption {
    padding-top: 10px;
  }

  .bts-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
  }

  .bts-shot,
  .bts-shot--1,
  .bts-shot--2,
  .bts-shot--3,
  .bts-shot--4,
  .bts-shot--5,
  .bts-shot--6,
  .bts-shot--7 {
    grid-column: 1;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .director__portrait {
    max-width: 480px;
  }

  .director__copy {
    padding-top: 20px;
  }

  .credits {
    padding-top: 0;
  }

  .credits__grid {
    grid-template-columns: 1fr 1fr;
  }

  .collective__mark {
    margin-bottom: 20px;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 52px 20px;
  }

  .footer__right {
    width: 100%;
    align-items: flex-start;
  }

  .post-partner {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
