/* ==========================================================================
   Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Typography
   ========================================================================== */

.eyebrow {
  font-family: var(--font-secondary);
  font-size: var(--font-size-accent-label);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: normal;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

.page-subhead {
  font-family: var(--font-secondary);
  font-size: clamp(1.375rem, 3.125vw, 1.875rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
  max-width: 42ch;
  margin: 0.35rem auto 0;
}

.body-copy {
  max-width: 65ch;
  margin: 0 auto;
  color: var(--color-text);
}

.body-copy p {
  margin-bottom: 0.75rem;
}

.body-copy p:last-child {
  margin-bottom: 0;
}

.chrome-text {
  background: linear-gradient(
    160deg,
    #c8c8c8 0%,
    #ffffff 35%,
    #a0a0a0 50%,
    #d4d4d4 65%,
    #888888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.outline-text {
  -webkit-text-stroke: 1px var(--color-text-muted);
  -webkit-text-fill-color: transparent;
}

/* Two-word lockups only — bold first word, hairline second (e.g. Hollywood Invitational) */
.display-split {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 0.2em 0.35em;
  line-height: 0.95;
  text-transform: uppercase;
  margin: 0;
}

.display-split__word:first-child {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.display-split__word:last-child {
  font-family: var(--font-display-light);
  font-weight: 200;
  letter-spacing: 0.12em;
}

.display-split--lg {
  font-size: clamp(2.5rem, 8vw, 5rem);
}

.display-split--md {
  font-size: clamp(1.25rem, 3vw, 2rem);
}

.display-split--chrome .display-split__word:first-child {
  background: linear-gradient(
    160deg,
    #c8c8c8 0%,
    #ffffff 35%,
    #a0a0a0 50%,
    #d4d4d4 65%,
    #888888 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.display-split--chrome .display-split__word:last-child {
  color: var(--color-text);
}

.display-split--accent .display-split__word:first-child {
  color: var(--color-accent);
}

.display-split--accent .display-split__word:last-child {
  color: var(--color-text);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: min(100% - 3rem, var(--max-width));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-pad);
}

.section:has(+ .section--after-hero),
.section:has(+ .section--gallery) {
  padding-bottom: calc(var(--section-pad) * 0.55);
}

.section:has(.body-copy) {
  padding-block: var(--section-pad-copy);
}

.section-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 3.6rem 0;
}

.rule-line {
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.rule-star {
  color: var(--color-accent);
  font-size: 0.75rem;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.site-nav {
  position: relative;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border-gold);
  transition: background 0.2s ease;
}

.site-header.is-scrolled .site-nav {
  background: rgba(8, 8, 8, 0.88);
}

.nav-primary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  height: var(--nav-height);
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.nav-logo {
  justify-self: start;
  display: flex;
  align-items: center;
  min-width: 0;
}

.nav-logo img {
  height: clamp(24px, 3.5vw, 30px);
  width: auto;
}

.nav-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  grid-column: 2;
  font-family: var(--font-secondary);
  font-size: clamp(0.62rem, 1.5vw, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  text-align: center;
}

.nav-banner a {
  color: var(--color-accent);
  transition: opacity 0.2s ease;
}

.nav-banner a:hover {
  opacity: 0.8;
}

.nav-banner .divider {
  color: var(--color-text-muted);
}

.nav-inner {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  height: var(--nav-links-height);
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  border-top: 1px solid var(--color-border);
}

.nav-group--right {
  margin-left: auto;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-accent);
}

.nav-link--gala {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
}

.nav-bar__gala-logo {
  display: block;
  flex-shrink: 0;
  width: auto;
  max-width: 4.5rem;
  max-height: 1.15rem;
  height: auto;
  object-fit: contain;
}

.nav-bar__gala-label {
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.nav-dates {
  display: none;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.nav-date-pill {
  font-family: var(--font-secondary);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 4px 10px;
  border: 1px solid var(--color-border-gold);
  background: transparent;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  justify-self: end;
  grid-column: 3;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 10px;
  z-index: 1002;
}

.nav-toggle-label {
  font-family: var(--font-secondary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  width: 22px;
}

.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 999;
}

body.nav-lock {
  overflow: hidden;
}

/* Sidebar navigation (subpages) */
.nav-sidebar {
  position: fixed;
  top: calc(var(--nav-height) + var(--nav-links-height));
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-bg-surface);
  border-left: 1px solid var(--color-border-gold);
  padding: 1.5rem 1.75rem 2rem;
  z-index: 1002;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.nav-sidebar[hidden] {
  display: none;
}

.site-header.nav-open .nav-sidebar {
  transform: translateX(0);
}

.nav-sidebar__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.nav-sidebar__close:hover {
  color: var(--color-accent);
}

.nav-sidebar__head {
  padding-right: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
}

.nav-sidebar__brand-link {
  display: block;
}

.nav-sidebar__wordmark {
  width: 160px;
}

.nav-sidebar__event-logo {
  width: 100%;
  max-width: 280px;
  max-height: 7rem;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

.nav-sidebar__brand-link--event {
  margin-bottom: 0.75rem;
}

.nav-sidebar__eyebrow {
  font-family: var(--font-secondary);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0;
}

.nav-sidebar__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.nav-sidebar__links .nav-link {
  display: block;
  font-size: 0.95rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--color-border);
}

.nav-sidebar__links .nav-link.is-active {
  color: var(--color-text);
  border-bottom-color: var(--color-border-gold);
}

.nav-sidebar__links .nav-link--logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  padding: 0.75rem 0;
}

.nav-sidebar__link-logo {
  display: block;
  flex-shrink: 0;
  width: auto;
  max-width: 6.5rem;
  max-height: 2.1rem;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.nav-sidebar__link-label {
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
}

.nav-sidebar__links .nav-link--logo.is-active .nav-sidebar__link-label {
  color: var(--color-text);
}

.nav-sidebar__dates {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.page-gala-nav .nav-sidebar {
  background: linear-gradient(
    180deg,
    var(--color-bg-raised) 0%,
    var(--color-bg-surface) 35%
  );
  border-left-color: var(--color-accent);
}

.page-gala-nav .nav-sidebar__head {
  border-bottom-color: var(--color-border-gold);
}

.page-gala-nav .nav-sidebar__event-logo {
  max-width: 300px;
}

.site-header--sidebar-nav .nav-toggle {
  display: flex;
}

.site-header--sidebar-nav .nav-inner {
  display: none;
}

.site-header--sidebar-nav .nav-toggle-label {
  color: var(--color-accent);
}

.page-shell {
  padding-top: calc(var(--nav-height) + var(--nav-links-height));
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
}

.hero--standard {
  min-height: clamp(15rem, 34vh, 27rem);
}

.hero--gala {
  min-height: clamp(17rem, 43vh, 33rem);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

.hero--gala::before {
  background: rgba(0, 0, 0, 0.65);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
  z-index: 2;
}

.hero--quiet::after {
  display: none;
}

.hero__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 60%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 1.25rem 1.5rem 1.5rem;
  width: min(100% - 3rem, var(--max-width));
}

.hero__content .eyebrow {
  margin: 0 0 0.35rem;
}

.event-logo {
  display: block;
  max-width: min(500px, 80vw);
  max-height: 11.5rem;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}

.hero__title-wrap {
  position: relative;
  margin-bottom: 0.65rem;
}

.hero__title-ghost {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: normal;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transform: scale(1.1);
  opacity: 0.06;
  pointer-events: none;
  -webkit-text-stroke: 1px var(--color-text-muted);
  -webkit-text-fill-color: transparent;
}

.hero__title {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: normal;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   Components
   ========================================================================== */

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.pill-row--compact {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.pill {
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding: 6px 16px;
  border: 1px solid var(--color-accent);
  background: transparent;
  border-radius: 999px;
}

button.pill {
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

button.pill:hover,
button.pill:focus-visible {
  background: var(--color-accent);
  color: var(--color-bg);
  outline: none;
}

button.pill.is-active {
  background: var(--color-accent);
  color: var(--color-bg);
}

.winner-explorer {
  max-width: 56rem;
  margin: 1.6rem auto 0;
}

.winner-panel {
  margin-top: 1.75rem;
  padding-top: 0.25rem;
}

.winner-panel[hidden] {
  display: none;
}

.winner-panel__heading {
  font-family: var(--font-secondary);
  font-size: var(--font-size-accent-label);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin: 0 0 1.25rem;
}

.winner-panel__grid {
  display: grid;
  gap: 1.25rem;
}

.winner-panel__grid--doty {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
}

.winner-panel__grid--bots {
  grid-template-columns: minmax(0, 22rem);
  justify-content: center;
}

.winner-card {
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.winner-card__photo {
  aspect-ratio: 4 / 3;
  background: #111;
}

.winner-card__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
  text-align: center;
}

.winner-card__brand {
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 0 0 0.45rem;
}

.winner-card__name {
  font-family: var(--font-display-light);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 0.35rem;
}

.winner-card__studio {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.winner-panel__error {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.rundown-list {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}

.rundown-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  font-family: var(--font-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rundown-bullet {
  color: var(--color-accent);
  flex-shrink: 0;
}

.statement-section {
  padding: clamp(1.25rem, 3vw, 1.75rem) 1.5rem;
  background: var(--color-bg);
  text-align: center;
}

.statement-text {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: normal;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: none;
  margin: 0 auto;
}

.bottom-strip {
  padding: 2.4rem 1.5rem;
  text-align: center;
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border-gold);
}

.bottom-strip p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: normal;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 3.2rem 1.5rem 1.6rem;
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: min(100%, var(--max-width));
  margin: 0 auto 2rem;
}

.footer-wordmark {
  width: 180px;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.footer-brand-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.footer-brand-logos a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.footer-brand-logos a:hover {
  opacity: 0.85;
}

.footer-brand-logos img {
  display: block;
  height: clamp(26px, 3.5vw, 34px);
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.footer-production {
  font-style: italic;
  font-size: clamp(0.58rem, 1.4vw, 0.68rem);
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  margin: 0;
}

.footer-meta a {
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}

.footer-meta a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding-top: 0.25rem;
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--color-text-muted);
  margin: 0;
}

.footer-credit {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-credit a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-credit a:hover {
  color: var(--color-text);
}

.footer-credit sup {
  font-size: 0.72em;
  line-height: 0;
  font-weight: 700;
  vertical-align: super;
  letter-spacing: 0;
}

/* ==========================================================================
   Page: The Gala (elevated gold treatment)
   ========================================================================== */

.page-gala .section-rule {
  margin: 2.7rem 0;
}

.page-gala .rundown-item {
  color: var(--color-text);
}

.page-gala .bottom-strip {
  border-top-color: var(--color-accent);
}

.page-gala .section--gallery {
  padding-bottom: calc(var(--section-pad) * 0.35);
}

.section--gallery,
.section--after-hero {
  padding-top: 0;
}

.hero--pathways::before {
  background: rgba(0, 0, 0, 0.7);
}

.hero--pathways .hero__media img {
  object-position: center 28%;
}

.hero--company::before {
  background: rgba(0, 0, 0, 0.58);
}

.hero--company {
  min-height: clamp(10.5rem, 24vh, 19rem);
}

.hero--company .hero__content {
  padding: 0.75rem 1.5rem 0.875rem;
}

.hero--company .hero__content .eyebrow {
  margin-bottom: 0.25rem;
}

.hero--company .event-logo {
  margin-bottom: 0.5rem;
}

.hero-headshot-grid {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: 100%;
  width: 100%;
}

.hero--company .hero-headshot-grid img {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 10%;
  filter: brightness(0.45) saturate(0.8);
}

.hero--spotlight {
  background: var(--color-bg);
  min-height: clamp(7.5rem, 17vh, 13.5rem);
}

.hero--spotlight .hero__content {
  padding: 0.625rem 1.5rem 0.75rem;
}

.hero--spotlight .hero__content .eyebrow {
  margin-bottom: 0.2rem;
}

.hero--spotlight .event-logo {
  margin-bottom: 0.375rem;
}

.hero--spotlight .page-subhead {
  margin-top: 0.2rem;
}

.hero--spotlight::before {
  display: none;
}

.hero__spotlight-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 50% 45% at 50% 50%,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  animation: spotlight-pulse 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes spotlight-pulse {
  0%, 100% { opacity: 0.375; }
  50% { opacity: 1; }
}

.agency-bar {
  width: 100%;
  margin: 2.4rem auto 0;
  padding: 2.5rem clamp(1.5rem, 4vw, 3.5rem);
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border);
}

.agency-bar__heading {
  font-family: var(--font-secondary);
  font-size: var(--font-size-accent-label);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  text-align: center;
  margin: 0 0 2rem;
}

.agency-bar__list {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3.5vw, 3rem);
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.agency-bar__list::-webkit-scrollbar {
  display: none;
}

.agency-bar__list li {
  flex: 1 1 0;
  min-width: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agency-bar__logo {
  display: block;
  height: clamp(2.5rem, 5.5vw, 3.75rem);
  width: auto;
  max-width: min(18rem, 30vw);
  object-fit: contain;
  opacity: 0.9;
}

.agency-bar__logo--invert {
  filter: brightness(0) invert(1);
}

.agency-bar__logo--blend {
  mix-blend-mode: screen;
}

.agency-bar__logo--mark {
  height: clamp(3.25rem, 7vw, 4.5rem);
  max-width: 4.5rem;
}

.callout-card {
  max-width: 36rem;
  margin: 1.6rem auto 0;
  padding: 1.5rem 2rem;
  background: var(--color-bg-raised);
  border-left: 3px solid var(--color-accent);
  font-family: var(--font-secondary);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 1.6rem auto 0;
}

.company-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.company-card:hover {
  background: var(--color-bg-surface);
  border-color: var(--color-border-gold);
  transform: translateY(-2px);
}

.company-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.company-card__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
}

.company-card__sub {
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 1rem;
}

.company-card__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
}

.company-card__cta {
  margin-top: auto;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  transition: letter-spacing 0.2s ease;
}

.company-card:hover .company-card__cta {
  letter-spacing: 0.16em;
}

.pathways-body {
  line-height: 1.85;
}

.institution-section {
  margin-bottom: 2.4rem;
}

.institution-section:last-of-type {
  margin-bottom: 0;
}

.institution-heading {
  font-family: var(--font-secondary);
  font-size: var(--font-size-accent-label);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
  margin: 0 0 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.institution-badge {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-dim);
  padding: 2px 8px;
  border-radius: 999px;
}

.institution-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.institution-grid--featured {
  grid-template-columns: 1fr;
}

.institution-card {
  position: relative;
  z-index: 0;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border-gold);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

@media (hover: hover) {
  .institution-card:hover {
    z-index: 1;
    transform: scale(1.03);
    border-color: var(--color-accent);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }
}

.institution-card:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.institution-card--featured {
  flex-direction: column;
  padding: 2.5rem;
  border-color: var(--color-accent);
}

.institution-card__logo {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ececec;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 3px;
  padding: 0.35rem;
  overflow: hidden;
}

.institution-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.institution-card--featured .institution-card__logo {
  width: 80px;
  height: 80px;
  padding: 0.45rem;
}

.institution-card__name {
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-text);
  margin: 0 0 0.35rem;
}

.institution-card__desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

.institution-card__quote {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0.75rem 0 0;
  line-height: 1.6;
}

.spokesperson-block {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
}

.spokesperson-photo {
  max-width: 600px;
  width: 90vw;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--color-border-gold);
}

.spokesperson-name {
  font-family: var(--font-secondary);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
}

.spokesperson-title {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
}

.spokesperson-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-muted);
  max-width: 50ch;
  margin: 0 auto;
  line-height: 1.7;
}

.instagram-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--section-pad) 1.5rem;
  background: var(--color-bg-surface);
  border-top: 1px solid var(--color-border-gold);
  border-bottom: 1px solid var(--color-border-gold);
}

.instagram-section--after-hero {
  padding-top: calc(var(--section-pad) * 0.45);
  border-top: 0;
}

.page-spotlight .instagram-section--after-hero {
  padding-top: calc(var(--section-pad) * 0.15);
}

.instagram-section .eyebrow {
  margin-bottom: 1.5rem;
}

.instagram-embed-wrap {
  width: 100%;
  max-width: 540px;
}

.instagram-embed {
  display: block;
  width: 100%;
  max-width: 540px;
  min-height: 660px;
  height: clamp(660px, 85vh, 960px);
  margin: 0 auto;
  border: 0;
  overflow: hidden;
  background: #fff;
  border-radius: 3px;
}

.instagram-fallback {
  margin: 1rem 0 0;
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.instagram-fallback a {
  color: var(--color-accent);
  transition: opacity 0.2s ease;
}

.instagram-fallback a:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .company-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .institution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .institution-grid--cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .institution-grid--featured {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .institution-grid--cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   Page: Live Stream
   ========================================================================== */

.page-live {
  background: var(--color-bg);
}

.live-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--color-bg);
}

.live-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.18;
}

.live-bg__scrim {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.82);
}

.live-bg__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 8, 0.35) 0%,
    rgba(8, 8, 8, 0.7) 55%,
    rgba(8, 8, 8, 0.98) 100%
  );
}

.live-shell {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--nav-height) - var(--nav-links-height));
  padding-bottom: 2rem;
}

.page-live .site-footer {
  position: relative;
  z-index: 1;
}

.live-main {
  width: min(100% - 2rem, 960px);
  margin: 0 auto;
  padding: clamp(1.6rem, 5vw, 3.2rem) 0 1.6rem;
}

.page-live .live-main {
  padding: clamp(0.9rem, 2.75vw, 1.75rem) 0 0.5rem;
}

.page-live .live-shell {
  min-height: auto;
  padding-bottom: 0.75rem;
  padding-top: calc(var(--nav-height) + var(--nav-links-height) + 0.35rem);
}

.live-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-live .live-header {
  margin-bottom: 0.6rem;
}

.live-title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  font-weight: normal;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0.5rem 0 1rem;
}

.page-live .live-title {
  font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  margin: 0 0 0.3rem;
}

.live-lede {
  font-family: var(--font-secondary);
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  max-width: none;
  margin: 0 auto;
  line-height: 1.4;
}

.page-live .live-lede {
  font-size: clamp(0.68rem, 1.5vw, 0.78rem);
  margin: 0;
}

.stream-backdrop {
  position: relative;
  isolation: isolate;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(1.25rem, 4vw, 2.25rem) clamp(1rem, 3vw, 2rem);
}

.stream-backdrop::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(8, 8, 8, 0.8), rgba(8, 8, 8, 0.8)),
    url('/images/gala/gallery-03.jpg?v=4');
  background-size: cover;
  background-position: center 35%;
  pointer-events: none;
}

.stream-window {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--color-border-gold);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  background: var(--color-bg-raised);
}

.stream-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-surface);
}

.stream-tab {
  flex: 1;
  max-width: 220px;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.stream-tab:hover {
  color: var(--color-text);
}

.stream-tab.is-active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
  background: var(--color-bg-raised);
}

.stream-player {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.stream-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.stream-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: center;
}

.live-copy {
  text-align: center;
  max-width: 52ch;
  margin: 2rem auto 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.live-copy p {
  margin-bottom: 1rem;
}

.live-dates {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  font-family: var(--font-secondary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  font-variant-numeric: tabular-nums;
}

.live-dates__sep {
  color: var(--color-text-muted);
}

/* ==========================================================================
   Page: Admin
   ========================================================================== */

.page-admin {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
}

.admin-shell {
  width: min(100%, 440px);
}

.admin-card {
  background: var(--color-bg-raised);
  border: 1px solid var(--color-border);
  padding: 2rem;
}

.admin-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-label {
  font-family: var(--font-secondary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.admin-input {
  width: 100%;
  padding: 0.65rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
}

.admin-input:focus {
  outline: none;
  border-color: var(--color-border-gold);
}

.admin-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: -0.25rem 0 0.5rem;
}

.admin-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  font-variant-numeric: tabular-nums;
}

.admin-button {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  font-family: var(--font-secondary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  transition: opacity 0.2s ease;
}

.admin-button:hover {
  opacity: 0.9;
}

.admin-message {
  font-size: 0.85rem;
  margin: 0;
}

.admin-message--success {
  color: #7cb87c;
}

.admin-message--error {
  color: #c87c7c;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1200px) {
  body:not(.has-nav-sidebar) {
    --nav-links-height: 40px;
  }

  .nav-inner .nav-dates {
    display: none;
  }

  .site-header:not(.site-header--sidebar-nav) .nav-inner {
    display: flex;
    gap: clamp(0.65rem, 1.5vw, 1.5rem);
  }

  .nav-group--left,
  .nav-group--right {
    flex: 1;
    min-width: 0;
  }

  .nav-group--left {
    justify-content: flex-end;
  }

  .nav-group--right {
    justify-content: flex-start;
  }

  .site-header:not(.site-header--sidebar-nav) .nav-group {
    gap: clamp(0.45rem, 1vw, 1.25rem);
  }

  .site-header:not(.site-header--sidebar-nav) .nav-link {
    font-size: clamp(0.62rem, 0.85vw, 0.75rem);
  }
}

.site-header.nav-open .nav-toggle-icon .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle-icon .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle-icon .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 1199px) {
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .nav-banner .divider,
  .nav-banner span:last-child {
    display: none;
  }
}

@media (min-width: 1200px) {
  .site-header:not(.site-header--sidebar-nav) .nav-toggle {
    display: none;
  }
}
