:root {
  --black: #19191d;
  --ink: #2e3038;
  --muted: #6f7380;
  --paper: #fff8ef;
  --soft: #f3efe8;
  --white: #ffffff;
  --accent: #e83f8f;
  --accent-2: #26b7c8;
  --line: rgba(25, 25, 29, .12);
  --shadow: 0 28px 80px rgba(25, 25, 29, .13);
  --radius: 30px;
  --wide: 1320px;
  --container: 1180px;
  --font-title: "Archivo Black", Impact, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background:
    radial-gradient(circle at 8% 10rem, rgba(38, 183, 200, .14), transparent 24rem),
    radial-gradient(circle at 88% 8rem, rgba(232, 63, 143, .16), transparent 26rem),
    linear-gradient(180deg, var(--paper), #fff 42rem);
  font-family: var(--font-body);
  line-height: 1.62;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, .94);
  border-bottom: 1px solid rgba(29, 29, 32, .08);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(var(--wide), calc(100% - 56px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(170px, 15vw, 230px);
  height: auto;
}

.brand-links {
  display: grid;
  gap: 3px;
  margin-right: auto;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.15;
}

.brand-links a {
  width: max-content;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--ink);
  font-weight: 900;
}

.brand-links a:hover,
.nav a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 6vw, 92px) 0 clamp(48px, 7vw, 96px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.76), rgba(255,255,255,.22) 52%, rgba(255,255,255,.7));
  pointer-events: none;
}

.big-bg-title {
  position: absolute;
  top: clamp(40px, 5vw, 76px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  color: rgba(29, 29, 32, .055);
  font-family: var(--font-title);
  font-size: clamp(6rem, 13vw, 13rem);
  line-height: .75;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--wide), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .98fr) minmax(332px, .72fr);
  align-items: center;
  gap: clamp(38px, 5vw, 92px);
}

.hero-copy {
  max-width: 680px;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

h1,
h2 {
  font-family: var(--font-title);
  letter-spacing: 0;
  line-height: .98;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  line-height: .92;
}

.title-main,
.title-rest {
  display: block;
}

.title-main span {
  display: inline;
}

.title-main {
  font-size: clamp(2.35rem, 3.05vw, 3.65rem);
  line-height: .86;
}

.title-rest {
  max-width: 440px;
  margin-top: 14px;
  font-size: clamp(1.12rem, 1.34vw, 1.5rem);
  line-height: 1.08;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.18vw, 1.2rem);
  font-weight: 900;
  line-height: 1.28;
}

.lead {
  max-width: 520px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.6;
}

.hero-note {
  max-width: 640px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.62;
}

.hero-date {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 0 18px;
  border: 2px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.btn-light {
  background: rgba(255, 255, 255, .62);
  color: var(--black);
}

.hero-media {
  position: relative;
  min-width: 0;
  width: min(100%, calc(590px * 9 / 16));
  height: 590px;
  justify-self: center;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  min-height: 0;
  border: 1px solid rgba(29, 29, 32, .12);
  border-radius: clamp(28px, 4vw, 48px);
  background: var(--black);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.06);
  transform: none;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(16, 16, 18, .62), rgba(16, 16, 18, .08) 58%, rgba(232, 63, 143, .28)),
    radial-gradient(circle at 82% 18%, rgba(38, 183, 200, .3), transparent 24rem);
}

.hero-video-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  padding: 12px 18px 12px 12px;
  background: rgba(16, 16, 18, .38);
  color: var(--white);
  font: 900 .78rem var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.hero-video-trigger:hover,
.hero-video-trigger:focus-visible {
  background: rgba(16, 16, 18, .54);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
  transform: translate(-50%, -50%) scale(1.035);
}

.hero-video-trigger:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .8);
  outline-offset: 4px;
}

.play-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
}

.summary {
  width: min(var(--container), calc(100% - 44px));
  margin: clamp(-36px, -3vw, -18px) auto clamp(58px, 7vw, 104px);
  position: relative;
  z-index: 2;
}

.summary-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 54px);
  border-radius: var(--radius);
  background: var(--black);
  color: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow);
}

.summary-card .eyebrow,
.dark .eyebrow {
  color: rgba(255, 255, 255, .72);
}

.summary-card p:not(.eyebrow) {
  max-width: 1040px;
  margin-bottom: 0;
  font-size: clamp(1.02rem, 1.18vw, 1.16rem);
}

.film-section,
.gallery-strip,
.article-section,
.pullout {
  width: min(var(--wide), calc(100% - 44px));
  margin-inline: auto;
}

.film-section {
  scroll-margin-top: 104px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(18px, 2.8vw, 28px);
}

.section-head h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.35rem);
}

.film-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(230px, 290px));
  gap: clamp(18px, 2.6vw, 34px);
  align-items: start;
  justify-content: center;
}

.film-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.film-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--black);
  object-fit: cover;
}

.film-card figcaption {
  display: grid;
  gap: 5px;
  padding: 12px 14px 14px;
}

.film-card strong {
  color: var(--black);
  font-size: .98rem;
}

.film-card span {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.38;
}

.gallery-strip {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(360px, 1.18fr) minmax(220px, .72fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  margin-top: clamp(28px, 5vw, 70px);
  margin-bottom: clamp(70px, 9vw, 124px);
}

.mixed-gallery .media-portrait img {
  --media-max-height: 540px;
}

.gallery-strip figure,
.side-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 20px 54px rgba(25, 25, 29, .1);
}

.media-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.gallery-strip img,
.side-visual img {
  width: auto;
  height: auto;
  max-height: var(--media-max-height, 620px);
  max-width: 100%;
  object-fit: contain;
  border-radius: 18px;
}

.hero-media img {
  width: auto;
  max-height: min(72vh, 650px);
  max-width: 100%;
  object-fit: contain;
}

.media-portrait img {
  --media-max-height: 620px;
}

.media-semi img {
  --media-max-height: 600px;
}

.media-square img {
  width: 100%;
}

.gallery-strip figcaption,
.side-visual figcaption {
  width: 100%;
  margin: 0;
  padding: 14px 6px 6px;
  color: var(--muted);
  font-size: .94rem;
}

.article {
  counter-reset: section;
}

.article-section {
  display: grid;
  grid-template-columns: minmax(330px, 500px) minmax(0, 680px);
  gap: clamp(40px, 6vw, 86px);
  align-items: start;
  padding: clamp(68px, 8vw, 118px) 0;
  border-top: 1px solid rgba(25, 25, 29, .08);
}

.article-section.dark {
  width: 100%;
  max-width: none;
  padding-inline: max(22px, calc((100vw - var(--wide)) / 2));
  color: var(--white);
  background: var(--black);
}

.article-section.dark .article-copy,
.article-section.dark .article-copy p {
  color: rgba(255, 255, 255, .78);
}

.article-section.dark .side-visual {
  background: rgba(255, 255, 255, .08);
  box-shadow: none;
}

.article-section.dark .side-visual figcaption {
  color: rgba(255, 255, 255, .72);
}

.section-aside {
  position: relative;
  counter-increment: section;
  min-width: 0;
}

.section-aside::after {
  content: counter(section, decimal-leading-zero);
  position: absolute;
  top: -.18em;
  right: 0;
  color: rgba(25, 25, 29, .055);
  font: 400 clamp(4.8rem, 8vw, 8rem) / 1 var(--font-title);
  pointer-events: none;
}

.dark .section-aside::after {
  color: rgba(255, 255, 255, .08);
}

.section-aside h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3vw, 3.5rem);
}

.side-visual {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 3vw, 38px);
}

.article-copy {
  display: grid;
  gap: 20px;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.22vw, 1.2rem);
  min-width: 0;
}

.article-copy p {
  margin-bottom: 0;
}

.pullout {
  margin-top: clamp(58px, 7vw, 98px);
  margin-bottom: clamp(58px, 7vw, 98px);
  padding: clamp(32px, 5vw, 66px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 18%, rgba(232, 63, 143, .14), transparent 22rem),
    var(--soft);
  box-shadow: var(--shadow);
}

.pullout p {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.55rem);
  font-weight: 900;
  line-height: 1.2;
}

.footer {
  padding: 34px 22px;
  color: rgba(255, 255, 255, .72);
  background: #101014;
  text-align: center;
}

.footer p {
  margin: 0;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility 0s linear .22s;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

body.modal-open {
  overflow: hidden;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(232, 63, 143, .24), transparent 26rem),
    rgba(8, 8, 10, .78);
  backdrop-filter: blur(14px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 32px), calc((86svh - 132px) * .5625));
  max-height: 86svh;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: clamp(22px, 3vw, 38px);
  padding: clamp(16px, 2.4vw, 28px);
  background: rgba(255, 250, 242, .96);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .42);
  transform: translateY(16px) scale(.98);
  transition: transform .22s ease;
}

.video-modal.is-open .video-modal-panel {
  transform: translateY(0) scale(1);
}

.video-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.video-modal-header .eyebrow {
  margin-bottom: 10px;
}

.video-modal-header h2 {
  margin-bottom: 0;
  max-width: 760px;
  font-size: clamp(1.25rem, 2vw, 2.2rem);
  line-height: 1;
}

.video-modal-close {
  flex: 0 0 auto;
  min-height: 44px;
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--black);
  color: var(--white);
  font: 900 .74rem var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.modal-video {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 9 / 16;
  height: auto;
  border-radius: clamp(16px, 2vw, 26px);
  background: var(--black);
  object-fit: contain;
  pointer-events: none;
}

.video-modal.is-open .modal-video {
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1081px) {
  .section-aside {
    position: sticky;
    top: 116px;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .section-head,
  .article-section {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .header-inner,
  .film-section,
  .gallery-strip,
  .article-section,
  .pullout {
    width: min(100% - 32px, var(--container));
  }

  .article-section.dark {
    width: 100%;
    padding-inline: max(16px, calc((100vw - var(--container)) / 2));
  }

  .hero-media {
    max-width: 840px;
    width: min(100%, calc(590px * 9 / 16));
    justify-self: center;
  }

  .section-aside h2,
  .article-copy {
    max-width: 760px;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    backdrop-filter: none;
  }

  .header-inner {
    min-height: auto;
    padding: 12px 0;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px 18px;
  }

  .brand img {
    width: clamp(154px, 46vw, 184px);
  }

  .brand-links,
  .nav {
    width: 100%;
  }

  .brand-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    font-size: .82rem;
  }

  .nav {
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: .88rem;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    padding-top: 42px;
  }

  .big-bg-title {
    left: 0;
    transform: none;
    font-size: clamp(4.4rem, 24vw, 7rem);
  }

  h1 {
    width: 100%;
    max-width: 100%;
  }

  .title-main {
    max-width: 100%;
    font-size: clamp(2rem, 9.2vw, 2.3rem);
    overflow-wrap: anywhere;
  }

  .title-main span {
    display: block;
  }

  .title-rest {
    max-width: 100%;
    font-size: clamp(1.12rem, 5vw, 1.45rem);
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .film-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .hero-media {
    margin-top: 28px;
    width: min(100%, calc((100vw - 32px) * 9 / 16));
    height: min(590px, calc(100vw - 32px));
    border-radius: 28px;
  }

  .hero-video-trigger {
    width: min(300px, calc(100% - 28px));
    justify-content: center;
    white-space: nowrap;
  }

  .play-icon {
    width: 48px;
    height: 48px;
  }

  .film-grid {
    display: grid;
  }

  .summary {
    width: min(100% - 28px, var(--container));
  }

  .article-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-aside::after {
    right: auto;
    left: min(58vw, 260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
