:root {
  --ink: #111114;
  --paper: #f2f0ea;
  --white: #fbfaf7;
  --muted: #74747d;
  --line: rgba(17, 17, 20, 0.14);
  --blue: #5470ff;
  --blue-light: #89a0ff;
  --dark: #07080d;
  --radius: 22px;
  --pad: clamp(24px, 5vw, 80px);
  --display: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.dialog-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; }

.site-header {
  align-items: center;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 22px var(--pad);
  position: fixed;
  right: 0;
  top: 0;
  transition: background .3s ease, padding .3s ease, border-color .3s ease;
  z-index: 50;
}
.site-header.is-scrolled {
  backdrop-filter: blur(18px);
  background: rgba(7, 8, 13, .86);
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-block: 15px;
}
.brand { font-size: 26px; font-weight: 700; letter-spacing: -.06em; }
.brand span { color: var(--blue); }
.brand-logo { background: transparent; display: block; height: 54px; overflow: hidden; width: 54px; }
.brand-logo img { height: 100%; object-fit: cover; transform: scale(1.48); transform-origin: center; width: 100%; }
.desktop-nav { display: flex; gap: 34px; }
.desktop-nav a { color: rgba(255,255,255,.7); font-size: 13px; transition: color .2s; }
.desktop-nav a:hover { color: white; }
.header-cta { font-size: 13px; justify-self: end; }
.header-cta span { color: var(--blue-light); margin-left: 8px; }
.menu-button { display: none; }
.mobile-nav { display: none; }

.section-dark { background: var(--dark); color: white; }
.hero {
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(135px, 17vh, 190px) var(--pad) 100px;
  position: relative;
}
.hero::after {
  background: linear-gradient(90deg, transparent, rgba(84,112,255,.3), transparent);
  bottom: 0;
  content: "";
  height: 1px;
  left: 12%;
  position: absolute;
  right: 12%;
}
.hero-glow {
  background: radial-gradient(circle, rgba(51,66,183,.5), rgba(7,8,13,0) 66%);
  filter: blur(12px);
  height: 90vw;
  max-height: 1000px;
  max-width: 1000px;
  position: absolute;
  right: -28vw;
  top: -22vw;
  width: 90vw;
}
.noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  inset: 0;
  opacity: .14;
  pointer-events: none;
  position: absolute;
}
.hero-content { max-width: 730px; position: relative; z-index: 2; }
.eyebrow, .section-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow { align-items: center; color: rgba(255,255,255,.55); display: flex; gap: 10px; }
.eyebrow span { background: var(--blue); border-radius: 50%; box-shadow: 0 0 14px var(--blue); height: 6px; width: 6px; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(74px, 9.4vw, 150px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .78;
  margin: clamp(30px, 5vh, 58px) 0 42px;
}
.hero h1 em, h2 em { color: var(--blue-light); font-weight: 400; }
.hero-copy { color: rgba(255,255,255,.58); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  gap: 26px;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  transition: transform .25s, background .25s, color .25s;
}
.button:hover { transform: translateY(-2px); }
.button-light { background: white; color: var(--ink); }
.button-ghost { border-color: rgba(255,255,255,.2); color: white; }
.button-ghost:hover { background: rgba(255,255,255,.08); }
.play-icon { color: var(--blue-light); font-size: 10px; }
.hero-visual { bottom: 10%; height: 62%; max-height: 650px; position: absolute; right: var(--pad); width: min(35vw, 520px); z-index: 1; }
.hero-photo { margin: 0; overflow: hidden; position: absolute; }
.hero-photo img { height: 100%; object-fit: cover; }
.hero-photo-main { height: 77%; right: 0; top: 0; width: 74%; }
.hero-photo-main::after, .hero-photo-small::after { background: linear-gradient(180deg, transparent, rgba(7,8,13,.4)); content:""; inset: 0; position:absolute; }
.hero-photo-small { bottom: 0; height: 42%; left: 0; width: 50%; }
.hero-stat {
  backdrop-filter: blur(15px);
  background: rgba(14,16,28,.72);
  border: 1px solid rgba(255,255,255,.15);
  bottom: 10%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  position: absolute;
  right: -16px;
  width: 210px;
}
.hero-stat strong { font-family: var(--display); font-size: 27px; font-weight: 400; line-height: 1; }
.hero-stat span { color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .09em; text-transform: uppercase; }
.scroll-hint { bottom: 35px; color: rgba(255,255,255,.36); font-size: 9px; left: var(--pad); letter-spacing: .18em; position: absolute; text-transform: uppercase; }
.scroll-hint span { background: rgba(255,255,255,.3); display: inline-block; height: 30px; margin-left: 13px; vertical-align: middle; width: 1px; }

.intro { padding: 50px var(--pad) clamp(100px, 14vw, 190px); }
.section-index { border-bottom: 1px solid var(--line); color: var(--muted); font-size: 10px; letter-spacing: .12em; padding-bottom: 30px; }
.intro-grid { display: grid; gap: 60px; grid-template-columns: minmax(150px, 1fr) 3fr; padding-top: 90px; }
.section-kicker { color: #5a5a62; }
.intro-copy h2, .section-heading h2, .video-top h2, .gallery-heading h2, .sponsor-heading h2, .closing h2 {
  font-family: var(--display);
  font-size: clamp(54px, 6.5vw, 100px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .92;
}
.intro-copy p { color: #58585f; font-size: clamp(17px, 1.55vw, 22px); line-height: 1.72; margin: 45px 0; max-width: 790px; }
.text-link { border-bottom: 1px solid var(--ink); display: inline-flex; font-size: 13px; gap: 50px; padding-bottom: 9px; }

.pillars { background: #dddcd7; padding: clamp(100px, 12vw, 170px) var(--pad); }
.section-heading, .video-top, .gallery-heading, .sponsor-heading { align-items: end; display: flex; gap: 50px; justify-content: space-between; }
.section-heading h2, .video-top h2, .gallery-heading h2, .sponsor-heading h2 { margin-bottom: 0; }
.section-heading > p, .video-top > p, .gallery-heading > p, .sponsor-heading > p { color: #616167; line-height: 1.7; max-width: 420px; }
.pillar-grid { display: grid; gap: 1px; grid-template-columns: repeat(4, 1fr); margin-top: 80px; }
.pillar-card { background: var(--paper); display: flex; flex-direction: column; justify-content: space-between; min-height: 420px; padding: 28px; position: relative; transition: background .3s, color .3s, transform .3s; }
.pillar-card:hover { background: white; transform: translateY(-8px); }
.pillar-card-featured { background: var(--blue); color: white; }
.pillar-card-featured:hover { background: #4962ed; }
.pillar-card:has(.pillar-card-action:focus-visible) { outline: 3px solid var(--ink); outline-offset: -5px; }
.pillar-card-featured:has(.pillar-card-action:focus-visible) { outline-color: white; }
.pillar-card-action { background: transparent; border: 0; cursor: pointer; inset: 0; position: absolute; z-index: 2; }
.card-number { font-size: 10px; letter-spacing: .1em; opacity: .55; }
.card-icon { align-self: center; font-family: var(--display); font-size: 68px; }
.pillar-card h3 { font-family: var(--display); font-size: 42px; font-weight: 400; margin-bottom: 14px; }
.pillar-card p { font-size: 13px; line-height: 1.65; margin: 0; opacity: .66; }
.card-more { align-items: center; display: flex; font-size: 10px; font-weight: 600; gap: 10px; letter-spacing: .09em; margin-top: 24px; text-transform: uppercase; }
.card-more i { font-style: normal; transition: transform .25s; }
.pillar-card:hover .card-more i { transform: translate(3px, -3px); }

.video-section { padding: clamp(100px, 12vw, 170px) var(--pad); }
.section-kicker-light { color: rgba(255,255,255,.45); }
.video-top > p { color: rgba(255,255,255,.47); }
.video-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); margin-top: 78px; }
.video-card { transition-delay: var(--delay); }
.video-embed { aspect-ratio: 16 / 9; background: #000; overflow: hidden; }
.video-embed iframe { border: 0; display: block; height: 100%; width: 100%; }
.video-cover { aspect-ratio: 1.35; display: block; overflow: hidden; position: relative; }
.video-cover img { height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.video-cover:hover img { transform: scale(1.045); }
.video-cover::after { background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.65)); content:""; inset: 0; position: absolute; }
.video-play { align-items: center; backdrop-filter: blur(10px); background: rgba(255,255,255,.88); border-radius: 50%; color: var(--dark); display: flex; height: 58px; justify-content: center; left: 50%; padding-left: 3px; position: absolute; top: 50%; transform: translate(-50%,-50%); width: 58px; z-index: 1; }
.is-placeholder .video-play { opacity: .55; }
.video-duration { bottom: 14px; font-size: 10px; letter-spacing: .08em; position: absolute; right: 14px; z-index: 1; }
.video-meta { padding-top: 20px; }
.video-meta span { color: var(--blue-light); font-size: 9px; letter-spacing: .13em; text-transform: uppercase; }
.video-meta h3 { font-family: var(--display); font-size: 30px; font-weight: 400; margin: 8px 0 10px; }
.video-meta a, .video-meta small { color: rgba(255,255,255,.38); font-size: 11px; }
.video-meta a:hover { color: white; }
.button-outline { border-color: rgba(255,255,255,.22); color: white; }
.centered-button { display: flex; margin: 70px auto 0; width: max-content; }
.link-disabled { cursor: default; opacity: .45; }

.gallery-section { padding: clamp(100px, 12vw, 170px) var(--pad); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin: 60px 0 30px; }
.filter-button { background: transparent; border: 1px solid var(--line); border-radius: 100px; cursor: pointer; font-size: 11px; padding: 10px 18px; }
.filter-button.is-active { background: var(--ink); color: white; }
.gallery-grid { display: grid; gap: 12px; grid-auto-flow: dense; grid-template-columns: repeat(12, 1fr); }
.gallery-item { background: #d5d4cf; border: 0; cursor: zoom-in; grid-column: span 4; margin: 0; overflow: hidden; padding: 0; position: relative; transition-delay: var(--delay); }
.gallery-wide { aspect-ratio: 1.55; grid-column: span 8; }
.gallery-square { aspect-ratio: 1; }
.gallery-portrait { aspect-ratio: .72; }
.gallery-item img { height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-overlay { align-items: end; background: linear-gradient(180deg, transparent 50%, rgba(5,6,8,.78)); bottom: 0; color: white; display: grid; grid-template-columns: 1fr auto; left: 0; padding: 26px; position: absolute; right: 0; text-align: left; }
.gallery-overlay small { font-size: 8px; grid-column: 1 / -1; letter-spacing: .14em; margin-bottom: 6px; text-transform: uppercase; }
.gallery-overlay strong { font-family: var(--display); font-size: 26px; font-weight: 400; }
.gallery-overlay i { font-style: normal; }
.gallery-note { color: var(--muted); font-size: 11px; margin: 26px 0 0; }

.sponsors-section { background: #fff; border-top: 1px solid var(--line); padding: clamp(100px, 12vw, 170px) var(--pad); }
.sponsor-grid { margin-top: 70px; }
.sponsor-tier + .sponsor-tier { margin-top: 58px; }
.sponsor-tier-heading { align-items: end; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; margin-bottom: 14px; padding-bottom: 16px; }
.sponsor-tier-heading h3 { font-family: var(--display); font-size: 34px; font-weight: 400; margin: 0; }
.sponsor-tier-heading span { color: var(--muted); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.sponsor-tier-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.sponsor-tier-platinum .sponsor-tier-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.sponsor-tier-gold .sponsor-tier-grid { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.sponsor-card { align-items: center; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; justify-content: space-between; min-height: 230px; padding: 24px; transition: background .25s, border-color .25s, transform .25s; }
.sponsor-tier-platinum .sponsor-card { min-height: 300px; }
.sponsor-tier-gold .sponsor-card { min-height: 265px; }
.sponsor-card:hover { background: white; border-color: var(--line); transform: translateY(-5px); }
.sponsor-card img { height: 123px; max-width: min(270px, 100%); object-fit: contain; transform: rotate(var(--sponsor-rotation, 0deg)) scale(var(--sponsor-scale, 1)); transform-origin: center; }
.sponsor-tier-platinum .sponsor-card img { height: 168px; max-width: min(360px, 100%); }
.sponsor-tier-gold .sponsor-card img { height: 144px; max-width: min(315px, 100%); }
.sponsor-card strong { font-size: 12px; font-weight: 500; }
.sponsor-name-fallback { align-items: center; display: flex; flex: 1; font-family: var(--display); font-size: 32px; justify-content: center; text-align: center; }
.sponsor-empty { align-items: end; background: var(--blue); color: white; display: grid; gap: 50px; grid-column: 1 / -1; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); min-height: 360px; padding: clamp(30px, 5vw, 68px); }
.sponsor-empty > div > span { color: rgba(255,255,255,.62); font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.sponsor-empty h3 { font-family: var(--display); font-size: clamp(50px, 6vw, 88px); font-weight: 400; letter-spacing: -.04em; line-height: .92; margin: 30px 0 0; }
.sponsor-empty p { color: rgba(255,255,255,.7); line-height: 1.7; margin-bottom: 30px; max-width: 380px; }
.sponsor-empty .button { width: max-content; }
.sponsor-empty i { color: var(--blue); font-style: normal; }
.sponsor-levels { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 36px; }
.sponsor-level { border: 1px solid rgba(255,255,255,.3); border-radius: 100px; font-size: 9px; letter-spacing: .08em; padding: 8px 13px; text-transform: uppercase; }
.sponsor-level-platinum { background: white; color: var(--blue); }
.sponsor-level-gold { border-color: #f1d06e; color: #ffe393; }
.sponsor-level-silver { border-color: #d9dde6; color: #e9edf5; }
.sponsor-level-bronze { border-color: #d7a277; color: #f0bc91; }
.sponsor-note { color: var(--muted); font-size: 10px; letter-spacing: .04em; margin: 28px 0 0; text-align: center; }
.sponsor-note[hidden] { display: none; }

.closing { overflow: hidden; padding: clamp(110px, 13vw, 190px) var(--pad); position: relative; }
.closing-layout { align-items: center; display: grid; gap: clamp(55px, 8vw, 130px); grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); margin: auto; max-width: 1440px; position: relative; z-index: 1; }
.closing-content { position: relative; z-index: 1; }
.closing h2 { font-size: clamp(64px, 7vw, 112px); margin: 28px 0 38px; }
.closing-content > p:not(.section-kicker) { color: rgba(255,255,255,.48); line-height: 1.7; margin: 0 0 36px; max-width: 550px; }
.contact-email { align-items: center; border-bottom: 1px solid rgba(255,255,255,.32); display: inline-flex; font-size: clamp(17px, 1.5vw, 22px); gap: 24px; padding-bottom: 10px; }
.contact-email i { color: var(--blue-light); font-style: normal; transition: transform .25s; }
.contact-email:hover i { transform: translate(3px, -3px); }
.contact-form { backdrop-filter: blur(18px); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); display: grid; gap: 24px; padding: clamp(26px, 4vw, 48px); }
.contact-form-row { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
.contact-form label { display: grid; gap: 9px; }
.contact-form label > span { color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.15); border-radius: 0; color: white; font: inherit; outline: none; padding: 15px 16px; width: 100%; }
.contact-form textarea { min-height: 145px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--blue-light); box-shadow: 0 0 0 1px var(--blue-light); }
.contact-form-trap { height: 1px; left: -10000px; overflow: hidden; position: absolute; top: auto; width: 1px; }
.contact-turnstile { min-height: 65px; }
.contact-turnstile[hidden] { display: none; }
.contact-submit { border: 0; cursor: pointer; justify-self: start; }
.contact-submit:disabled { cursor: wait; opacity: .58; pointer-events: none; }
.contact-form-status { color: var(--blue-light); font-size: 12px; line-height: 1.5; margin: -8px 0 0; min-height: 18px; }
.closing-orbit { border: 1px solid rgba(96,121,255,.15); border-radius: 50%; left: 50%; position: absolute; top: 50%; transform: translate(-50%,-50%); }
.orbit-one { height: 720px; width: 720px; }
.orbit-two { box-shadow: 0 0 180px rgba(58,75,190,.18) inset; height: 1100px; width: 1100px; }

footer { background: #030407; color: white; padding: 80px var(--pad) 28px; }
.footer-main { display: flex; justify-content: space-between; }
.footer-brand { display: inline-block; height: 138px; margin-bottom: 22px; width: 138px; }
.footer-brand img { transform: scale(1.38); }
.footer-main p { color: rgba(255,255,255,.35); font-family: var(--display); font-size: 23px; line-height: 1.25; }
.footer-email { color: rgba(255,255,255,.58); display: inline-block; font-size: 13px; margin-top: 18px; }
.footer-email:hover { color: white; }
.footer-links { display: flex; gap: clamp(60px, 10vw, 150px); }
.footer-links div { display: flex; flex-direction: column; gap: 13px; }
.footer-links span { color: rgba(255,255,255,.28); font-size: 9px; letter-spacing: .15em; margin-bottom: 10px; text-transform: uppercase; }
.footer-links a { color: rgba(255,255,255,.67); font-size: 13px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.25); display: flex; font-size: 9px; justify-content: space-between; letter-spacing: .09em; margin-top: 75px; padding-top: 25px; text-transform: uppercase; }

.lightbox { background: transparent; border: 0; color: white; height: 100%; margin: 0; max-height: none; max-width: none; padding: 5vh 5vw; width: 100%; }
.lightbox::backdrop { backdrop-filter: blur(20px); background: rgba(3,4,7,.9); }
.lightbox img { height: calc(100% - 65px); object-fit: contain; }
.lightbox > button { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: white; cursor: pointer; font-size: 22px; height: 42px; position: absolute; right: 28px; top: 22px; width: 42px; z-index: 2; }
.lightbox > div { display: flex; gap: 20px; justify-content: center; padding-top: 18px; }
.lightbox strong { font-family: var(--display); font-size: 23px; font-weight: 400; }
.lightbox span { color: rgba(255,255,255,.5); font-size: 12px; padding-top: 6px; }

.pillar-dialog {
  background: transparent;
  border: 0;
  height: 100%;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: clamp(18px, 4vw, 54px);
  width: 100%;
}
.pillar-dialog[open] { align-items: center; display: grid; justify-items: center; }
.pillar-dialog::backdrop { backdrop-filter: blur(16px); background: rgba(3,4,7,.82); }
.pillar-dialog-panel {
  background: var(--paper);
  max-height: calc(100svh - 36px);
  max-width: 900px;
  overflow-y: auto;
  padding: clamp(34px, 6vw, 78px);
  position: relative;
  width: 100%;
}
.pillar-dialog-close {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  height: 44px;
  position: absolute;
  right: 24px;
  top: 24px;
  width: 44px;
}
.pillar-dialog-eyebrow { color: var(--blue); font-size: 10px; font-weight: 600; letter-spacing: .14em; margin-bottom: 28px; text-transform: uppercase; }
.pillar-dialog h2 { font-family: var(--display); font-size: clamp(48px, 6vw, 82px); font-weight: 400; letter-spacing: -.04em; line-height: .96; margin: 0; max-width: 760px; }
.pillar-dialog-intro { color: #55555d; font-size: clamp(16px, 1.5vw, 20px); line-height: 1.7; margin: 36px 0; max-width: 720px; }
.pillar-dialog ul { border-top: 1px solid var(--line); list-style: none; margin: 0 0 38px; padding: 0; }
.pillar-dialog li { border-bottom: 1px solid var(--line); font-size: 13px; padding: 16px 0 16px 24px; position: relative; }
.pillar-dialog li::before { color: var(--blue); content: "↗"; left: 0; position: absolute; }
.pillar-dialog-link { background: var(--ink); color: white; }
.pillar-dialog-link[hidden] { display: none; }
.pillar-dialog-link i { color: var(--blue-light); font-style: normal; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-delay { transition-delay: .16s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; transition-duration: .01ms !important; }
}

@media (max-width: 1050px) {
  .hero-content { max-width: 620px; }
  .hero-visual { opacity: .52; right: -5%; width: 43vw; }
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-card { min-height: 370px; }
  .closing-layout { grid-template-columns: 1fr; }
  .closing-content { max-width: 850px; }
  .contact-form { max-width: 760px; width: 100%; }
}

@media (max-width: 760px) {
  :root { --pad: 22px; }
  .site-header { display: flex; justify-content: space-between; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { background: none; border: 0; display: flex; flex-direction: column; gap: 6px; padding: 8px 0 8px 14px; position: relative; z-index: 61; }
  .menu-button span { background: white; display: block; height: 1px; transition: transform .25s; width: 25px; }
  .menu-open .menu-button span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-button span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { background: var(--dark); color: white; display: flex; flex-direction: column; font-family: var(--display); font-size: 42px; gap: 18px; inset: 0; justify-content: center; opacity: 0; padding: var(--pad); pointer-events: none; position: fixed; transform: translateY(-15px); transition: opacity .3s, transform .3s; z-index: 45; }
  .menu-open .mobile-nav { opacity: 1; pointer-events: auto; transform: none; }
  .hero { min-height: 820px; padding-top: 130px; }
  .hero h1 { font-size: clamp(67px, 22vw, 96px); }
  .hero-copy { font-size: 15px; max-width: 90%; }
  .hero-visual { bottom: 30px; height: 340px; opacity: .32; right: -25%; width: 85vw; }
  .hero-stat, .hero-photo-small { display: none; }
  .hero-photo-main { height: 100%; width: 100%; }
  .scroll-hint { display: none; }
  .intro { padding-top: 35px; }
  .intro-grid { display: block; padding-top: 60px; }
  .intro-copy { margin-top: 55px; }
  .intro-copy h2, .section-heading h2, .video-top h2, .gallery-heading h2, .sponsor-heading h2 { font-size: 56px; }
  .intro-copy p { font-size: 17px; }
  .section-heading, .video-top, .gallery-heading, .sponsor-heading { align-items: start; flex-direction: column; }
  .section-heading > p, .video-top > p, .gallery-heading > p, .sponsor-heading > p { margin-bottom: 0; }
  .pillar-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .pillar-card { min-height: 330px; }
  .video-grid { grid-template-columns: 1fr; margin-top: 55px; }
  .gallery-filters { margin-top: 42px; }
  .gallery-item, .gallery-wide, .gallery-portrait { aspect-ratio: 1; grid-column: span 12; }
  .sponsor-grid { margin-top: 48px; }
  .sponsor-tier-platinum .sponsor-tier-grid, .sponsor-tier-gold .sponsor-tier-grid, .sponsor-tier-grid { grid-template-columns: 1fr; }
  .sponsor-empty { align-items: start; grid-template-columns: 1fr; min-height: 480px; }
  .sponsor-empty .button { width: 100%; }
  .closing h2 { font-size: 62px; }
  .closing-layout { gap: 55px; }
  .contact-form { padding: 26px 20px; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; }
  .footer-main { flex-direction: column; gap: 60px; }
  .footer-links { gap: 60px; }
  .footer-bottom { align-items: start; flex-direction: column; gap: 12px; }
  .lightbox { padding: 6vh 16px; }
  .lightbox > div { align-items: center; flex-direction: column; gap: 2px; text-align: center; }
  .pillar-dialog { padding: 10px; }
  .pillar-dialog-panel { max-height: calc(100svh - 20px); padding: 60px 24px 32px; }
  .pillar-dialog-close { right: 16px; top: 16px; }
  .pillar-dialog h2 { font-size: 48px; }
}
