:root {
  --ink: #11100d;
  --ink-soft: #24211c;
  --paper: #f3efe6;
  --paper-deep: #e9e2d4;
  --white: #fffdf7;
  --gold: #c49a37;
  --gold-light: #e2c477;
  --line: rgba(17, 16, 13, 0.18);
  --serif: "Italiana", "Bodoni 72", Didot, Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: min(1240px, calc(100vw - 96px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  background: var(--gold);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 140px 0;
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  color: var(--white);
  transition: background-color 300ms ease, padding 300ms ease, box-shadow 300ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  background: rgba(11, 10, 8, 0.92);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand__name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.02em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  transition: background-color 200ms ease, color 200ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  position: relative;
  z-index: 102;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 1px;
  background: currentColor;
  transition: transform 250ms ease, top 250ms ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 26px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  background: #090806;
  color: var(--white);
}

.hero__video,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__video {
  object-fit: cover;
  opacity: 0;
  animation: video-in 1.2s 0.15s ease forwards;
}

@keyframes video-in {
  to { opacity: 1; }
}

.hero__veil {
  background:
    linear-gradient(90deg, rgba(5, 4, 3, 0.88) 0%, rgba(5, 4, 3, 0.54) 46%, rgba(5, 4, 3, 0.2) 80%),
    linear-gradient(0deg, rgba(5, 4, 3, 0.64) 0%, transparent 40%, rgba(5, 4, 3, 0.2) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 84px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--gold {
  color: var(--gold-light);
}

.hero h1,
.contact h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(72px, 9.2vw, 150px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.82;
}

.hero h1 em,
.display-title em,
.event__details h2 em,
.contact h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.hero__intro {
  max-width: 590px;
  margin: 36px 0 0;
  color: rgba(255, 255, 255, 0.79);
  font-size: 18px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px;
}

[data-hero-item] {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-rise 800ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

[data-hero-item]:nth-child(1) { animation-delay: 350ms; }
[data-hero-item]:nth-child(2) { animation-delay: 470ms; }
[data-hero-item]:nth-child(3) { animation-delay: 590ms; }
[data-hero-item]:nth-child(4) { animation-delay: 710ms; }

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 14px 22px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
  transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

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

.button--gold:hover,
.button--gold:focus-visible {
  background: var(--gold-light);
}

.button--outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--white);
}

.hero__scroll {
  position: absolute;
  bottom: 0;
  left: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: left bottom;
}

.hero__scroll i {
  display: block;
  width: 72px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
}

.hero__scroll i::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  content: "";
  animation: scroll-line 2s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes scroll-line {
  55%, 100% { transform: translateX(100%); }
}

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--gold);
  color: var(--ink);
}

.marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 36px;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  animation: marquee 28s linear infinite;
}

.marquee__track i {
  font-size: 12px;
  font-style: normal;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(17, 16, 13, 0.62);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.section-label p {
  margin: 0;
}

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

.about__grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 56px;
}

.about__content {
  max-width: 980px;
}

.display-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.2vw, 94px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.97;
}

.about__copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
  max-width: 820px;
  margin: 70px 0 0 auto;
  color: rgba(17, 16, 13, 0.72);
  font-size: 17px;
}

.about__copy p {
  margin: 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 110px;
  border-top: 1px solid var(--line);
}

.pillar {
  min-height: 320px;
  padding: 36px 42px 20px 0;
  border-right: 1px solid var(--line);
}

.pillar + .pillar {
  padding-left: 42px;
}

.pillar:last-child {
  border-right: 0;
}

.pillar__number {
  display: block;
  margin-bottom: 82px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 56px;
  line-height: 1;
}

.pillar h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
}

.pillar p {
  max-width: 280px;
  margin: 0;
  color: rgba(17, 16, 13, 0.62);
  font-size: 14px;
}

.event {
  overflow: hidden;
}

.event::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(196, 154, 55, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(196, 154, 55, 0.025), 0 0 0 200px rgba(196, 154, 55, 0.02);
  content: "";
}

.event__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) 1.22fr;
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
  max-width: 1080px;
  margin: 70px auto 0;
}

.event__poster-wrap {
  position: relative;
  display: block;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(-1.5deg);
  transition: transform 350ms cubic-bezier(0.22, 1, 0.36, 1);
}

.event__poster-wrap:hover,
.event__poster-wrap:focus-visible {
  transform: rotate(0) translateY(-8px);
}

.event__poster {
  width: 100%;
  height: auto;
}

.event__poster-action {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 13px;
  background: var(--paper);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event__poster-action b {
  font-size: 15px;
}

.event__details {
  position: relative;
  z-index: 1;
}

.event__details h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 7.5vw, 104px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.event__lede {
  max-width: 550px;
  margin: 26px 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
}

.event__subtitle {
  margin: 22px 0 0;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.event__partners {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
  line-height: 1.7;
}

.event__facts {
  margin: 42px 0;
  border-block: 1px solid rgba(255, 255, 255, 0.16);
}

.event__facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.event__facts div:last-child {
  border-bottom: 0;
}

.event__facts dt {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event__facts dd {
  margin: 0;
  font-size: 15px;
}

.event__facts dd small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.event__actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 56px;
}

.section-heading__copy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.section-heading__copy p {
  max-width: 340px;
  margin: 0 0 8px;
  color: rgba(17, 16, 13, 0.62);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 80px;
}

.video-card {
  border: 1px solid var(--line);
  background: var(--paper-deep);
}

.video-card__frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #090806;
}

.video-card__frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 7, 5, 0.62), transparent 55%);
  content: "";
  transition: background-color 220ms ease;
}

.video-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.video-card__frame:hover img,
.video-card__frame:focus-visible img {
  transform: scale(1.035);
}

.video-card__frame:hover::after,
.video-card__frame:focus-visible::after {
  background-color: rgba(8, 7, 5, 0.14);
}

.video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--gold);
  place-items: center;
  transform: translate(-50%, -50%);
  transition: background-color 200ms ease, transform 200ms ease;
}

.video-card__play::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--ink);
  content: "";
}

.video-card__frame:hover .video-card__play,
.video-card__frame:focus-visible .video-card__play {
  background: var(--gold-light);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-card__watch {
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-card__watch b {
  margin-left: 6px;
  font-size: 14px;
}

.video-card__caption {
  position: relative;
  padding: 26px 28px 30px;
}

.video-card__caption > span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.video-card__caption h3 {
  max-width: 80%;
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.video-card__caption a {
  position: absolute;
  right: 28px;
  bottom: 30px;
  font-size: 0;
}

.video-card__caption a span {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  font-size: 16px;
  place-items: center;
  transition: background-color 180ms ease, color 180ms ease;
}

.video-card__caption a:hover span,
.video-card__caption a:focus-visible span {
  background: var(--ink);
  color: var(--white);
}

.past-events {
  overflow: hidden;
}

.past-events::before {
  position: absolute;
  top: 7%;
  left: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(196, 154, 55, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(196, 154, 55, 0.025), 0 0 0 220px rgba(196, 154, 55, 0.015);
  content: "";
  pointer-events: none;
}

.past-events .section-heading,
.past-events__gallery {
  position: relative;
  z-index: 1;
}

.past-events .section-heading__copy p {
  color: rgba(255, 255, 255, 0.6);
}

.past-events__gallery {
  margin-top: 86px;
  column-count: 3;
  column-gap: 28px;
}

.gallery-card {
  position: relative;
  display: inline-grid;
  width: 100%;
  margin: 0 0 28px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #090806;
  color: var(--white);
  cursor: zoom-in;
  break-inside: avoid;
  text-align: left;
}

.gallery-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 7, 5, 0.88) 0%, rgba(8, 7, 5, 0.12) 34%, transparent 55%);
  content: "";
  pointer-events: none;
  transition: background-color 250ms ease;
}

.gallery-card img {
  width: 100%;
  height: auto;
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.025);
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  background-color: rgba(196, 154, 55, 0.12);
}

.gallery-card__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: end;
  padding: 26px 24px 22px;
}

.gallery-card__caption small {
  grid-column: 1 / -1;
  color: var(--gold-light);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.gallery-card__caption strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.18;
}

.gallery-card__caption b {
  font-size: 17px;
  font-weight: 400;
}

.gallery-lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(8, 7, 5, 0.97);
  color: var(--white);
}

.gallery-lightbox[open] {
  display: grid;
  place-items: center;
}

.gallery-lightbox::backdrop {
  background: rgba(8, 7, 5, 0.88);
  backdrop-filter: blur(8px);
}

.gallery-lightbox__panel {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: 88px minmax(0, 1fr) 88px;
  align-items: center;
  padding: 36px;
}

.gallery-lightbox figure {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: 16px;
  margin: 0;
}

.gallery-lightbox figure img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100dvh - 118px);
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

.gallery-lightbox figcaption {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
  line-height: 1.25;
  text-align: center;
}

.gallery-lightbox figcaption span {
  color: var(--gold-light);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-lightbox figcaption strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible,
.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  border-color: var(--gold-light);
  background: var(--gold-light);
  color: var(--ink);
}

.gallery-lightbox__close {
  position: absolute;
  top: 22px;
  right: 24px;
  z-index: 2;
  display: grid;
  width: 46px;
  height: 46px;
  font-size: 28px;
  line-height: 1;
  place-items: center;
}

.gallery-lightbox__nav {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
}

.gallery-lightbox__nav--previous {
  justify-self: start;
}

.gallery-lightbox__nav--next {
  justify-self: end;
}

body.lightbox-open {
  overflow: hidden;
}

.director {
  padding-top: 40px;
}

.director__grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) 1.08fr;
  align-items: center;
  gap: clamp(70px, 9vw, 140px);
}

.director__portrait {
  position: relative;
}

.director__portrait::before {
  position: absolute;
  inset: 20px -20px -20px 20px;
  z-index: -1;
  border: 1px solid rgba(196, 154, 55, 0.55);
  content: "";
}

.director__portrait img {
  width: 100%;
  height: auto;
}

.director__monogram {
  position: absolute;
  right: -38px;
  bottom: 52px;
  display: grid;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold);
  font-family: var(--serif);
  font-size: 26px;
  place-items: center;
}

.director__content .section-label {
  margin-bottom: 76px;
}

.director__content .eyebrow {
  margin-bottom: 18px;
}

.director__bio {
  max-width: 610px;
  margin: 42px 0 32px;
  color: rgba(17, 16, 13, 0.68);
  font-size: 17px;
}

.contact {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.contact__rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(196, 154, 55, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 130px rgba(196, 154, 55, 0.035), 0 0 0 260px rgba(196, 154, 55, 0.02);
  transform: translate(-50%, -50%);
}

.contact__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact .eyebrow::before {
  display: none;
}

.contact h2 {
  max-width: 1000px;
  font-size: clamp(58px, 7.4vw, 110px);
  line-height: 0.94;
}

.contact__intro {
  max-width: 620px;
  margin: 34px auto 46px;
  color: rgba(255, 255, 255, 0.62);
}

.contact__email {
  border-bottom: 1px solid var(--gold-light);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1.4;
  transition: color 180ms ease;
}

.contact__email:hover,
.contact__email:focus-visible {
  color: var(--white);
}

.contact__phone {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  letter-spacing: 0.08em;
}

.site-footer {
  padding: 70px 0 24px;
  background: #080705;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-bottom: 60px;
}

.footer-brand img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
}

.site-footer__inner p {
  margin: 0;
  font-size: 13px;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  :root {
    --container: min(100% - 48px, 760px);
  }

  .section {
    padding: 100px 0;
  }

  .site-header {
    padding: 16px 24px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    width: 100vw;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 96px 32px 40px;
    background: var(--ink);
    font-family: var(--serif);
    font-size: clamp(34px, 9vw, 56px);
    font-weight: 400;
    letter-spacing: -0.02em;
    text-transform: none;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 250ms ease, transform 250ms ease, visibility 250ms;
  }

  body.menu-open .site-header {
    background: var(--ink);
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-cta {
    margin-top: 18px;
    font-family: var(--sans);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .hero__content {
    padding-inline: 40px;
  }

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

  .hero__scroll {
    display: none;
  }

  .about__grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .about__content,
  .section-heading__copy {
    padding-left: 42px;
  }

  .about__copy {
    margin-top: 46px;
  }

  .pillars {
    margin-top: 80px;
  }

  .pillar,
  .pillar + .pillar {
    min-height: 280px;
    padding-inline: 24px;
  }

  .pillar:first-child {
    padding-left: 0;
  }

  .pillar__number {
    margin-bottom: 56px;
  }

  .event__grid,
  .director__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .event__poster-wrap {
    width: min(70%, 460px);
    margin-inline: auto;
  }

  .event__details,
  .director__content {
    width: 100%;
    max-width: 680px;
    margin-inline: auto;
  }

  .section-heading__copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .director__portrait {
    width: min(72%, 520px);
    margin-inline: auto;
  }

  .past-events__gallery {
    column-count: 2;
  }
}

@media (max-width: 720px) {
  :root {
    --container: calc(100% - 40px);
  }

  .section {
    padding: 84px 0;
  }

  .brand__name {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero__veil {
    background:
      linear-gradient(90deg, rgba(5, 4, 3, 0.74), rgba(5, 4, 3, 0.3)),
      linear-gradient(0deg, rgba(5, 4, 3, 0.9) 0%, transparent 60%, rgba(5, 4, 3, 0.35) 100%);
  }

  .hero__video {
    object-position: 57% center;
  }

  .hero__content {
    width: 100%;
    padding: 150px 24px 108px;
    align-self: end;
  }

  .hero h1 {
    font-size: clamp(60px, 19vw, 84px);
    line-height: 0.88;
  }

  .hero__intro {
    margin-top: 26px;
    font-size: 15px;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    margin-top: 30px;
  }

  .marquee__track {
    font-size: 20px;
  }

  .about__content,
  .section-heading__copy {
    padding-left: 0;
  }

  .display-title {
    margin-top: 34px;
    font-size: clamp(50px, 15vw, 70px);
  }

  .about__copy {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .pillar,
  .pillar + .pillar,
  .pillar:first-child {
    min-height: 0;
    padding: 32px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pillar:last-child {
    border-bottom: 0;
  }

  .pillar__number {
    margin-bottom: 32px;
  }

  .event__grid,
  .director__grid {
    grid-template-columns: 1fr;
  }

  .event__grid {
    margin-top: 46px;
  }

  .event__poster-wrap {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .event__details h2 {
    font-size: clamp(60px, 18vw, 78px);
  }

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

  .video-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .past-events__gallery {
    margin-top: 52px;
    column-count: 1;
  }

  .gallery-card {
    margin-bottom: 20px;
  }

  .gallery-lightbox__panel {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 14px;
    padding: 72px 18px 18px;
  }

  .gallery-lightbox figure {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .gallery-lightbox figure img {
    max-height: calc(100dvh - 190px);
  }

  .gallery-lightbox__nav--previous,
  .gallery-lightbox__nav--next {
    grid-row: 2;
  }

  .gallery-lightbox__nav--previous {
    grid-column: 1;
  }

  .gallery-lightbox__nav--next {
    grid-column: 2;
  }

  .gallery-lightbox__nav {
    width: 100%;
    height: 44px;
  }

  .gallery-lightbox figcaption {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .director {
    padding-top: 84px;
  }

  .director__portrait {
    width: calc(100% - 20px);
  }

  .director__monogram {
    right: -20px;
    width: 70px;
    height: 70px;
  }

  .director__content .section-label {
    margin-bottom: 48px;
  }

  .director__content .display-title {
    margin-top: 0;
  }

  .contact h2 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .contact__email {
    font-size: clamp(22px, 6.6vw, 32px);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .footer-links {
    justify-content: center;
  }

  .site-footer__bottom {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

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

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

  .motion-ready .reveal,
  [data-hero-item] {
    opacity: 1;
    transform: none;
  }
}
