/* ==========================================================================
   NSLBA 15th Anniversary Gala — Design System & Page Styles
   Emerald green · Champagne ivory · Restrained metallic gold · Editorial type
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surfaces */
  --ivory: #f8f4ec;
  --ivory-2: #f1ebdf;
  --champagne: #e7dbc2;
  --champagne-2: #d9c8a3;

  /* Greens (brand emerald family) */
  --green-950: #07201a;
  --green-900: #0b2f25;
  --green-800: #0f3b2c;
  --green-700: #175a41;
  --green-600: #1f7452;

  /* Gold — used as an accent, never as a fill for large areas */
  --gold: #c9a961;
  --gold-2: #e2cb8d;
  --gold-deep: #9e7f3b;
  --gold-line: rgba(201, 169, 97, 0.42);
  --gold-line-soft: rgba(201, 169, 97, 0.22);
  --gold-metal: linear-gradient(135deg, #f0dda6 0%, #c9a961 32%, #e9d493 55%, #a98a45 82%, #d8bf7d 100%);

  /* Type colours */
  --ink: #1a1a17;
  --ink-2: #45443e;
  --muted: #7d7a71;
  --on-dark: #f5efe2;
  --on-dark-2: rgba(245, 239, 226, 0.72);
  --on-dark-3: rgba(245, 239, 226, 0.5);

  /* Type families */
  --serif: "Cormorant Garamond", "Cormorant", Georgia, "Times New Roman", serif;
  --script: "Great Vibes", "Snell Roundhand", "Brush Script MT", cursive;
  --sans: "Jost", "Avenir Next", "Futura", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 5vw, 72px);
  --section: clamp(88px, 11vw, 168px);
  --section-sm: clamp(64px, 8vw, 120px);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.72s;

  --header-h: 88px;
  --header-h-scrolled: 72px;
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h-scrolled) + 8px);
  -webkit-text-size-adjust: 100%;
}

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

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
figure { margin: 0; }
address { font-style: normal; }
p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.08;
  text-wrap: balance;
}

::selection { background: var(--gold-2); color: var(--green-950); }

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

.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;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--wide { max-width: var(--container-wide); }

/* --------------------------------------------------------------------------
   3. Typography system
   -------------------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 22px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.8;
}
.eyebrow--plain::before { display: none; }
.eyebrow--center { justify-content: center; }
.eyebrow--center::before { display: none; }
.on-dark .eyebrow { color: var(--gold-2); }

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 5.6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.display--sm { font-size: clamp(36px, 4.4vw, 64px); }
.display--xs { font-size: clamp(30px, 3.4vw, 46px); font-weight: 400; }
.on-dark .display, .on-dark h2, .on-dark h3 { color: var(--on-dark); }
.on-dark .display, .display--dark {
  font-weight: 400;
  letter-spacing: 0.004em;
  text-shadow: 0 1px 30px rgba(7, 32, 26, 0.55);
}
/* All-caps set in a display serif needs positive tracking or the letters
   collide. Never inherit the headline's negative letter-spacing. */
.caps {
  letter-spacing: 0.06em;
  font-weight: 500;
  padding-right: 0.06em;
}

/* The "gala treatment": second line of a title set in script, in gold. */
.script {
  display: block;
  font-family: var(--script);
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--green-800);
  padding: 0.08em 0.1em 0.16em 0.04em;
}
.script--gold { color: var(--gold-deep); }
.on-dark .script { color: var(--gold-2); }

.amp {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-deep);
  padding: 0 0.04em;
}
.on-dark .amp { color: var(--gold-2); }

.lede {
  font-family: var(--serif);
  font-size: clamp(19px, 1.55vw, 23px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 34em;
}
.on-dark .lede { color: var(--on-dark-2); }

.body-copy p { max-width: 38em; }
.body-copy p + p { margin-top: 1.1em; }
.on-dark .body-copy { color: var(--on-dark-2); }

.small-caps {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

.num-serif { font-family: var(--serif); font-variant-numeric: lining-nums; }

.gold-text {
  background: var(--gold-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Section header pattern -------------------------------------------------- */
.sec-head { margin-bottom: clamp(48px, 6vw, 88px); }
.sec-head--center { text-align: center; margin-inline: auto; }
.sec-head--center .lede { margin-inline: auto; }
.sec-head .lede { margin-top: 26px; }
.sec-head--split {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
}
.sec-head--split .lede { margin-top: 0; padding-bottom: 8px; }
@media (max-width: 900px) {
  .sec-head--split { grid-template-columns: 1fr; align-items: start; }
  .sec-head--split .lede { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   4. Ornaments & surfaces
   -------------------------------------------------------------------------- */
/* Hairline rule with a centred diamond — the single recurring gold ornament */
.rule {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  color: var(--gold);
}
.rule::before, .rule::after {
  content: "";
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}
.rule svg { width: 8px; height: 8px; flex: none; }
.rule--short { max-width: 240px; margin-inline: auto; }
.rule--left { max-width: 160px; }
.rule--left::before { display: none; }

/* Green velvet texture — never applied to the whole page */
.tex-green {
  background-color: var(--green-800);
  background-image: url("../assets/img/texture-green.svg");
  background-size: 900px 900px;
  background-blend-mode: soft-light;
  color: var(--on-dark);
}
.tex-green--deep { background-color: var(--green-900); }
.tex-green--deepest { background-color: var(--green-950); }

.on-dark { color: var(--on-dark-2); }

/* Warm glow — a single soft light source, used in the hero and closing CTA */
.glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 55% at 78% 18%, rgba(226, 203, 141, 0.22), transparent 70%),
    radial-gradient(40% 40% at 10% 90%, rgba(201, 169, 97, 0.08), transparent 70%);
}

/* Inset hairline frame */
.frame-line {
  position: absolute;
  inset: 22px;
  border: 1px solid var(--gold-line-soft);
  pointer-events: none;
}
@media (max-width: 700px) { .frame-line { inset: 12px; } }

/* Quiet gala atmosphere: a few soft bokeh lights, never sparkles */
.bokeh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(circle at 84% 22%, rgba(226, 203, 141, 0.30) 0, rgba(226, 203, 141, 0) 6%),
    radial-gradient(circle at 91% 38%, rgba(226, 203, 141, 0.18) 0, rgba(226, 203, 141, 0) 4%),
    radial-gradient(circle at 76% 12%, rgba(226, 203, 141, 0.14) 0, rgba(226, 203, 141, 0) 3.5%),
    radial-gradient(circle at 95% 14%, rgba(226, 203, 141, 0.22) 0, rgba(226, 203, 141, 0) 2.5%),
    radial-gradient(circle at 70% 30%, rgba(226, 203, 141, 0.10) 0, rgba(226, 203, 141, 0) 5%),
    radial-gradient(circle at 88% 60%, rgba(226, 203, 141, 0.10) 0, rgba(226, 203, 141, 0) 7%),
    radial-gradient(circle at 8% 84%, rgba(226, 203, 141, 0.12) 0, rgba(226, 203, 141, 0) 5%),
    radial-gradient(circle at 16% 92%, rgba(226, 203, 141, 0.08) 0, rgba(226, 203, 141, 0) 3%);
  mask-image: radial-gradient(120% 120% at 50% 50%, #000 40%, transparent 100%);
}
.bokeh--light {
  opacity: 0.7;
  background:
    radial-gradient(circle at 86% 18%, rgba(201, 169, 97, 0.16) 0, rgba(201, 169, 97, 0) 7%),
    radial-gradient(circle at 93% 30%, rgba(201, 169, 97, 0.10) 0, rgba(201, 169, 97, 0) 4%),
    radial-gradient(circle at 78% 8%, rgba(201, 169, 97, 0.08) 0, rgba(201, 169, 97, 0) 4%),
    radial-gradient(circle at 6% 88%, rgba(201, 169, 97, 0.10) 0, rgba(201, 169, 97, 0) 6%);
}
.ribbon {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}
.ribbon--hero { right: -6vw; bottom: -4vw; width: clamp(420px, 46vw, 760px); }
.ribbon--closing { left: -8vw; top: -6vw; width: clamp(420px, 44vw, 720px); transform: scaleX(-1); opacity: 0.45; }
@media (max-width: 1040px) { .ribbon--hero { width: 70vw; right: -20vw; bottom: 22vh; opacity: 0.4; } }
.decor-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: screen;
}
.decor-img--light { mix-blend-mode: multiply; opacity: 0.5; }

/* Section dividers */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
}
.section { position: relative; padding-block: var(--section); }
.section--sm { padding-block: var(--section-sm); }
.section--alt { background: var(--ivory-2); }

/* A single photograph laid in behind a section as a soft wash. */
.speakers-sec { overflow: hidden; }
.sec-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 18%;
  opacity: 0.62;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 70%, transparent);
}
.speakers-sec > .container { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   5. Buttons & links
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 34px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--green-800);
  color: var(--on-dark);
  border-color: var(--green-800);
  box-shadow: 0 10px 30px -14px rgba(15, 59, 44, 0.55);
}
.btn--primary:hover {
  background: var(--green-900);
  border-color: var(--gold);
  box-shadow: 0 16px 36px -14px rgba(15, 59, 44, 0.6);
}

.btn--gold {
  background: var(--gold);
  color: var(--green-950);
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-2); border-color: var(--gold-2); }

.btn--outline {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(201, 169, 97, 0.55);
}
.btn--outline:hover { border-color: var(--gold); background: rgba(201, 169, 97, 0.08); }

.btn--outline-dark {
  background: transparent;
  color: var(--green-800);
  border-color: var(--gold-line);
}
.btn--outline-dark:hover { border-color: var(--green-800); }

.btn--sm { min-height: 44px; padding: 0 22px; font-size: 11px; }

/* Text link with hairline + arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-800);
  border-bottom: 1px solid var(--gold-line);
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.link-arrow svg { width: 18px; height: 10px; transition: transform 0.5s var(--ease-out); }
.link-arrow:hover { border-color: var(--gold); }
.link-arrow:hover svg { transform: translateX(6px); }
.on-dark .link-arrow, .link-arrow--light { color: var(--on-dark); }

/* --------------------------------------------------------------------------
   6. Media & placeholder system
   Every photograph on the page lives in a `.media` element. Until real
   photography is added, an elegant `.ph` placeholder is shown; as soon as an
   <img> is present it is hidden automatically.
   -------------------------------------------------------------------------- */
.media {
  position: relative;
  overflow: hidden;
  background: var(--champagne);
  isolation: isolate;
}
.media::before { content: ""; display: block; padding-top: var(--ar, 66.667%); }
.media > img, .media > video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}
.media:has(img) .ph, .media:has(video) .ph { display: none; }

.ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2.4vw, 28px);
  color: var(--green-800);
  background:
    radial-gradient(70% 60% at 80% 10%, rgba(255, 250, 238, 0.55), transparent 65%),
    linear-gradient(160deg, #eee5d1 0%, #e2d4b6 55%, #d6c59f 100%);
}
.ph::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(158, 127, 59, 0.3);
  pointer-events: none;
}
.ph__label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.7;
  margin-bottom: 6px;
}
.ph__caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.25;
  opacity: 0.9;
}
.ph--green {
  color: var(--on-dark);
  background-color: var(--green-800);
  background-image:
    radial-gradient(60% 50% at 75% 15%, rgba(226, 203, 141, 0.18), transparent 70%),
    url("../assets/img/texture-green.svg");
  background-size: auto, 700px 700px;
  background-blend-mode: normal, soft-light;
}
.ph--green::before { border-color: rgba(201, 169, 97, 0.35); }
.ph--deep { background-color: var(--green-950); }
.ph--warm {
  background:
    radial-gradient(60% 50% at 20% 100%, rgba(201, 169, 97, 0.28), transparent 65%),
    linear-gradient(200deg, #f2eadb 0%, #e3d5b7 60%, #cdb98d 100%);
}

/* Monogram portrait placeholder (winners & speakers) */
.ph--portrait { justify-content: center; align-items: center; text-align: center; }
.ph__mono {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--gold-2);
}
.ph--portrait .ph__label { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; margin: 0; }

/* Image reveal + hover
   The wipe is a curtain panel that slides off the frame. Only `transform`
   animates, so the browser composites it on the GPU and never repaints the
   photograph underneath — the previous clip-path version repainted every
   frame on every image at once, which is what made the gallery stutter.
   `--curtain` is the colour of the ground the frame sits on, so the panel
   reads as the section itself drawing back. */
.media--reveal { --curtain: var(--ivory); }
.section--alt .media--reveal { --curtain: var(--ivory-2); }
.on-dark .media--reveal, .tex-green .media--reveal { --curtain: var(--green-900); }
.media--reveal::after {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 4;
  background: var(--curtain);
  transform: translate3d(0, 0, 0);
  transition: transform 0.82s var(--ease-out);
  pointer-events: none;
}
.media--reveal.is-in::after { transform: translate3d(101%, 0, 0); }
.media--reveal > img { transform: scale(1.06); }
.media--reveal.is-in > img { transform: scale(1); }
/* The resting state of a revealed image and the hover zoom have equal
   specificity, so hovering a frame mid-reveal used to snap it. Gate the
   hover on the reveal having finished. */
.media--hover:not(.media--reveal):hover > img,
.media--hover.media--reveal.is-in:hover > img { transform: scale(1.04); }

/* --------------------------------------------------------------------------
   7. Reveal-on-scroll
   -------------------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  transition-delay: calc(var(--i, 0) * 55ms);
}
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal--fade { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .media--reveal::after { display: none; }
  .media--reveal > img { transform: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* --------------------------------------------------------------------------
   8. Header / Navigation
   -------------------------------------------------------------------------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  color: var(--on-dark);
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(26px, 2.4vw, 36px);
  height: var(--header-h);
  transition: height 0.5s var(--ease);
}
.header.is-scrolled {
  background: rgba(248, 244, 236, 0.97);
  color: var(--ink);
  border-bottom-color: var(--gold-line-soft);
}
.header.is-scrolled .header__inner { height: var(--header-h-scrolled); }
.header.is-hidden { transform: translateY(-100%); }
.header { transition: transform 0.5s var(--ease), background-color 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  flex: none;
}
.brand__mark { width: auto; height: 46px; flex: none; object-fit: contain; transition: height 0.5s var(--ease); }
.header.is-scrolled .brand__mark { height: 40px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.08em;
}
.brand__sub {
  margin-top: 5px;
  font-size: 8.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.72;
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: clamp(14px, 1.75vw, 29px); flex: 0 1 auto; min-width: 0; }
.nav__link {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.nav__link:hover, .nav__link.is-active { opacity: 1; }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 18px; }
.header .btn--nav { min-height: 44px; padding: 0 22px; font-size: 11px; white-space: nowrap; }
.btn__abbr { display: none; }
/* Below this the full CTA label is what pushes the nav onto two lines. */
@media (max-width: 1319px) {
  .btn__full { display: none; }
  .btn__abbr { display: inline; }
}
.header:not(.is-scrolled) .btn--nav { background: transparent; color: var(--on-dark); border-color: rgba(201, 169, 97, 0.6); }
.header:not(.is-scrolled) .btn--nav:hover { background: var(--gold); color: var(--green-950); border-color: var(--gold); }
.header.is-scrolled .btn--nav { background: var(--green-800); color: var(--on-dark); border-color: var(--green-800); }
.header.is-scrolled .btn--nav:hover { border-color: var(--gold); }

/* Hamburger */
.burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 6px;
}
.burger span {
  display: block; width: 26px; height: 1.5px;
  background: currentColor;
  transition: transform 0.5s var(--ease-out), opacity 0.3s, width 0.4s var(--ease-out);
}
.burger span:nth-child(2) { width: 18px; align-self: flex-end; margin-right: 9px; }
.menu-open .burger span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.menu-open .burger span:nth-child(2) { opacity: 0; width: 0; }
.menu-open .burger span:nth-child(3) { transform: translateY(-3.75px) rotate(-45deg); }

/* Mobile menu */
.menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  color: var(--on-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0s linear 0.6s;
}
.menu-open .menu { opacity: 1; visibility: visible; transition-delay: 0s; }
.menu__links { display: flex; flex-direction: column; gap: 6px; margin-top: 10px; }
.menu__link {
  display: flex; align-items: baseline; gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.18);
  font-family: var(--serif);
  font-size: clamp(30px, 8vw, 40px);
  font-weight: 300;
  color: var(--on-dark);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.menu__link small { font-family: var(--sans); font-size: 11px; letter-spacing: 0.22em; color: var(--gold-2); }
.menu-open .menu__link { opacity: 1; transform: none; transition-delay: calc(80ms + var(--i, 0) * 60ms); }
.menu__foot { margin-top: auto; padding-top: 32px; display: grid; gap: 22px; }
.menu__meta { font-size: 13px; line-height: 1.7; color: var(--on-dark-2); }
.menu__meta strong { display: block; color: var(--on-dark); font-weight: 500; }

@media (max-width: 1099px) {
  .nav, .header__actions .btn--nav { display: none; }
  .burger { display: flex; margin-right: -10px; }
  .header.menu-open-header { background: transparent; color: var(--on-dark); border-bottom-color: transparent; backdrop-filter: none; }
}

/* --------------------------------------------------------------------------
   9. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--on-dark);
}
.hero__grid {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 56px;
}
.hero__content { position: relative; z-index: 2; max-width: 680px; }
.hero__content .eyebrow { color: var(--gold-2); margin-bottom: 28px; }

.hero__anniv {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 10px;
  line-height: 1;
}
.hero__num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(88px, 11vw, 150px);
  line-height: 0.85;
  letter-spacing: -0.03em;
  font-variant-numeric: lining-nums;
  background: var(--gold-metal);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__num sup {
  font-size: 0.3em;
  font-style: italic;
  font-weight: 300;
  vertical-align: 1.5em;
  margin-left: 0.06em;
  letter-spacing: 0;
  -webkit-text-fill-color: var(--gold-2);
  color: var(--gold-2);
}
.hero__anniv .script {
  display: inline-block;
  font-size: clamp(46px, 5.4vw, 80px);
  color: var(--on-dark);
  padding-bottom: 0.1em;
}
.hero__title {
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--on-dark);
  max-width: 12em;
}
.hero__lede { margin-top: 26px; max-width: 30em; color: var(--on-dark-2); }
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 36px; margin-top: 40px; }

.hero__media {
  --ar: 125%;
  position: absolute;
  inset: 0;
  z-index: 1;
  align-self: stretch;
  background: var(--green-900);
}
.hero__media::before { padding-top: 0; }
.hero__media-inner { position: absolute; inset: 0; overflow: hidden; }
.hero__media-inner > img { position: absolute; inset: -6% 0; width: 100%; height: 112%; object-fit: cover; }
.hero__media .ph { inset: 0; }
.hero__media::after {
  /* offset hairline frame — the one hero flourish */
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
  z-index: -1;
}
.hero__media-wrap { position: relative; height: min(72vh, 760px); min-height: 480px; }

.hero__strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(201, 169, 97, 0.28);
  background: rgba(7, 32, 26, 0.35);
  backdrop-filter: blur(6px);
}
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 26px 28px 26px 0;
  margin-right: 28px;
  border-right: 1px solid rgba(201, 169, 97, 0.2);
}
.strip__item:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.strip__icon { width: 22px; height: 22px; flex: none; color: var(--gold-2); margin-top: 2px; }
.strip__label { font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 6px; font-weight: 600; }
.strip__value { font-family: var(--serif); font-size: 19px; line-height: 1.3; color: var(--on-dark); }
.strip__value small { display: block; font-family: var(--sans); font-size: 12.5px; color: var(--on-dark-2); margin-top: 3px; line-height: 1.5; }

.hero__scroll {
  position: absolute;
  right: clamp(20px, 3vw, 40px);
  bottom: 120px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-3);
  writing-mode: vertical-rl;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 56px;
  background: linear-gradient(var(--gold), transparent);
  animation: scroll-line 2.6s var(--ease) infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero entrance */
.js .hero [data-hero] {
  opacity: 0;
  transform: translateY(24px);
  animation: hero-in 1.3s var(--ease) forwards;
  animation-delay: calc(0.25s + var(--i, 0) * 0.14s);
}
.js .hero .hero__media-wrap[data-hero] { transform: none; clip-path: inset(0 0 100% 0); animation-name: hero-media; animation-duration: 1.6s; }
@keyframes hero-in { to { opacity: 1; transform: none; } }
@keyframes hero-media { to { opacity: 1; clip-path: inset(0 0 0 0); } }

@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; align-items: start; padding-top: calc(var(--header-h) + 24px); gap: 40px; }
  .hero__media-wrap { height: auto; min-height: 0; aspect-ratio: 16 / 10; }
  .hero__media::after { inset: 14px -14px -14px 14px; }
  .hero__scroll { display: none; }
  .strip { grid-template-columns: repeat(2, 1fr); }
  .strip__item { padding: 20px 20px 20px 0; margin-right: 20px; }
  .strip__item:nth-child(2) { border-right: 0; }
  .strip__item:nth-child(-n + 2) { border-bottom: 1px solid rgba(201, 169, 97, 0.2); }
}
@media (max-width: 600px) {
  .brand { gap: 12px; min-width: 0; }
  .brand__mark { height: 38px; }
  .brand__name { font-size: 21px; }
  .brand__sub { white-space: normal; max-width: 170px; line-height: 1.45; font-size: 8px; }
  .hero__anniv { flex-direction: column; align-items: flex-start; gap: 0; }
  .hero__anniv .script { margin-top: -4px; margin-left: 0.12em; }
  .hero__cta { gap: 18px 28px; }
  .hero__cta .btn { width: 100%; }
  .strip { grid-template-columns: 1fr; }
  .strip__item { border-right: 0 !important; margin-right: 0; padding: 18px 0; border-bottom: 1px solid rgba(201, 169, 97, 0.18); }
  .strip__item:last-child { border-bottom: 0; }
}

/* --------------------------------------------------------------------------
   10. About / Introduction
   -------------------------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
}
.about__media { grid-column: 1 / span 7; position: relative; }
.about__media-main { --ar: 118%; }
.about__media-second {
  --ar: 78%;
  position: absolute;
  right: -8%;
  bottom: -10%;
  width: 46%;
  box-shadow: 0 30px 60px -30px rgba(7, 32, 26, 0.45);
  border: 8px solid var(--ivory);
}
.about__text { grid-column: 9 / span 4; }
.about__quote {
  margin: 36px 0 0;
  padding-left: 26px;
  border-left: 1px solid var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.4;
  color: var(--green-800);
}
.about__quote cite { display: block; margin-top: 12px; font-family: var(--sans); font-style: normal; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); }

.values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px clamp(18px, 3vw, 44px);
  margin-top: clamp(72px, 9vw, 130px);
  padding-top: 40px;
  border-top: 1px solid var(--gold-line-soft);
}
.values li {
  display: flex; align-items: center; gap: clamp(18px, 3vw, 44px);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-800);
}
.values li + li::before { content: ""; width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex: none; }

@media (max-width: 1040px) {
  .about__media { grid-column: 1 / span 12; margin-bottom: 96px; }
  .about__media-main { --ar: 72%; }
  .about__text { grid-column: 1 / span 12; max-width: 620px; }
  .about__media-second { right: 0; bottom: -12%; width: 42%; }
}
@media (max-width: 600px) {
  .about__media-main { --ar: 100%; }
  .about__media-second { display: none; }
  .about__media { margin-bottom: 8px; }
  .values { justify-content: flex-start; gap: 14px 0; }
  .values li { width: 50%; font-size: 15px; gap: 0; }
  .values li + li::before { display: none; }
  .values li::before { content: ""; width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); margin-right: 14px; display: block; }
}

/* --------------------------------------------------------------------------
   11. History / 15 Years
   -------------------------------------------------------------------------- */
.history { overflow: hidden; }
.history__big {
  position: absolute;
  top: clamp(-30px, -2vw, 0px);
  right: clamp(-40px, -2vw, 0px);
  z-index: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(280px, 38vw, 560px);
  line-height: 0.8;
  letter-spacing: -0.06em;
  font-variant-numeric: lining-nums;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 97, 0.32);
  pointer-events: none;
  user-select: none;
  will-change: transform;
}
.history .container { position: relative; z-index: 1; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: clamp(40px, 5vw, 64px);
}
.stat {
  position: relative;
  padding: clamp(28px, 3vw, 44px) clamp(22px, 2.4vw, 36px);
  color: var(--on-dark);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(201, 169, 97, 0.22);
  pointer-events: none;
}
.stat__value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 5.2vw, 84px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  font-variant-numeric: lining-nums;
  color: var(--gold-2);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.stat__value sup, .stat__value .suffix { font-size: 0.42em; color: var(--gold); font-weight: 300; }
.stat__label { margin-top: 22px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-dark-2); line-height: 1.6; }
.stat--pending .stat__value { color: rgba(226, 203, 141, 0.45); }
.stat__note {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
}

/* Timeline */
.timeline {
  position: relative;
  margin-top: clamp(80px, 10vw, 140px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 3vw, 48px);
}
.timeline::before {
  content: "";
  position: absolute;
  top: 7px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-line), var(--gold-line) 85%, transparent);
}
.chapter { position: relative; padding-top: 40px; }
.chapter::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 15px; height: 15px;
  border: 1px solid var(--gold);
  background: var(--ivory);
  transform: rotate(45deg);
  transform-origin: center;
}
.chapter--now::before { background: var(--gold); }
.chapter__num {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  margin-bottom: 14px;
}
.chapter__year {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 18px;
}
.chapter__year.is-placeholder { color: var(--muted); font-style: italic; font-size: 22px; }
.chapter__media { --ar: 72%; margin-bottom: 22px; }
.chapter h3 { font-size: 24px; font-weight: 500; margin-bottom: 10px; }
.chapter p { font-size: 15px; line-height: 1.7; color: var(--ink-2); }

@media (max-width: 1040px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 56px 40px; }
  .timeline::before { display: none; }
  .history__big { font-size: clamp(220px, 46vw, 400px); top: -10px; right: -20px; }
}
@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr 1fr; gap: 2px; }
  .stat { min-height: 170px; padding: 22px 18px; }
  .stat__value { font-size: 48px; }
  .stat__label { font-size: 10.5px; margin-top: 14px; }
  .timeline { grid-template-columns: 1fr; gap: 0; padding-left: 26px; }
  .timeline::before { display: block; top: 0; bottom: 0; left: 7px; right: auto; width: 1px; height: auto; background: linear-gradient(var(--gold-line), var(--gold-line) 85%, transparent); }
  .chapter { padding: 0 0 48px; }
  .chapter::before { left: -26px; top: 6px; width: 13px; height: 13px; }
  .chapter__media { --ar: 62%; }
}

/* --------------------------------------------------------------------------
   12. Gallery
   -------------------------------------------------------------------------- */
.gallery { overflow: hidden; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 24px);
}
.gallery__item { position: relative; overflow: hidden; }
/* The editorial pattern repeats every seven images, so any number can be added. */
.gallery__item:nth-child(7n+1) { grid-column: 1 / span 8; --ar: 60%; }
.gallery__item:nth-child(7n+2) { grid-column: 9 / span 4; --ar: 120%; }
.gallery__item:nth-child(7n+3) { grid-column: 1 / span 4; --ar: 120%; }
.gallery__item:nth-child(7n+4) { grid-column: 5 / span 5; --ar: 96%; }
.gallery__item:nth-child(7n+5) { grid-column: 10 / span 3; --ar: 160%; }
.gallery__item:nth-child(7n+6) { grid-column: 1 / span 7; --ar: 56%; }
.gallery__item:nth-child(7n+7) { grid-column: 8 / span 5; --ar: 78%; }

.gallery__cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 60px 24px 22px;
  background: linear-gradient(transparent, rgba(7, 32, 26, 0.72));
  color: var(--on-dark);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.gallery__cap small { display: block; font-family: var(--sans); font-style: normal; font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 4px; }
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }
.gallery__item:has(img) .gallery__cap { opacity: 0; }
.gallery__item:has(img):hover .gallery__cap { opacity: 1; }
.gallery__foot { margin-top: 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.gallery__note { font-size: 13px; color: var(--muted); max-width: 46em; }

@media (max-width: 800px) {
  /* Horizontal editorial strip on mobile */
  .gallery .container--wide { padding-right: 0; }
  .gallery__grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    padding-right: var(--gutter);
    scrollbar-width: none;
  }
  .gallery__grid::-webkit-scrollbar { display: none; }
  .gallery__item { flex: 0 0 78vw; max-width: 380px; scroll-snap-align: start; --ar: 118% !important; }
  .gallery__item:nth-child(even) { --ar: 118% !important; }
  .gallery__cap { opacity: 1; transform: none; padding: 50px 18px 18px; font-size: 16px; }
  .gallery__item.media--reveal::after { display: none; }
  .gallery__item.media--reveal > img { transform: none; }
  .gallery__foot { padding-right: var(--gutter); }
}

/* --------------------------------------------------------------------------
   13. 2026 Award Recipients
   -------------------------------------------------------------------------- */
.winners { position: relative; }
.winners .container { position: relative; z-index: 1; }

.honors {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 64px);
  max-width: 1080px;
  margin-inline: auto;
}
.honor { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(20px, 2.4vw, 36px); align-items: end; }
.honor__media { --ar: 125%; position: relative; box-shadow: 0 40px 70px -40px rgba(7, 32, 26, 0.55); }
.honor__media::after {
  content: "";
  position: absolute;
  inset: -12px 12px 12px -12px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
  z-index: -1;
}
.honor__body { padding-bottom: 8px; }
.honor__seal { width: 40px; height: 40px; color: var(--gold); margin-bottom: 18px; }
.honor__cat { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 14px; }
.honor__name { font-size: clamp(28px, 2.6vw, 38px); font-weight: 400; line-height: 1.08; margin-bottom: 12px; }
.honor__desc { font-size: 14.5px; line-height: 1.7; color: var(--ink-2); }

.awards-head {
  margin: clamp(88px, 11vw, 150px) 0 clamp(40px, 5vw, 64px);
  display: flex;
  align-items: center;
  gap: 24px;
}
.awards-head h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  white-space: nowrap;
}
.awards-head .rule { flex: 1; }

.awards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.award { position: relative; }
.award__media { --ar: 118%; position: relative; }
.award__media > img { transition: transform 1.2s var(--ease-out); }
.award:hover .award__media > img { transform: scale(1.03); }
.award__num {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--gold-2);
  padding: 6px 10px;
  border: 1px solid rgba(201, 169, 97, 0.45);
  background: rgba(7, 32, 26, 0.35);
  backdrop-filter: blur(4px);
}
.award__body { padding: 24px 0 0; border-top: 1px solid var(--gold-line-soft); margin-top: 22px; position: relative; }
.award__body::before {
  content: "";
  position: absolute;
  top: -1px; left: 0;
  width: 44px; height: 1px;
  background: var(--gold);
  transition: width 0.7s var(--ease-out);
}
.award:hover .award__body::before { width: 100%; }
.award__cat { font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 4px; }
.award__cat-es { font-size: 11px; color: var(--muted); letter-spacing: 0.06em; margin-bottom: 14px; font-style: italic; font-family: var(--serif); font-size: 14px; }
.award__name { font-size: 26px; font-weight: 500; line-height: 1.12; margin-bottom: 6px; }
.award__org { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-2); margin-bottom: 14px; }
.award__desc { font-size: 14px; line-height: 1.7; color: var(--ink-2); }

.award__logo {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  padding: 18%;
  background: var(--ivory);
}
.award__logo img { width: 100%; height: 100%; object-fit: contain; }

@media (max-width: 1100px) { .awards { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; } }
@media (max-width: 900px) {
  .honors { grid-template-columns: 1fr; gap: 56px; }
  .honor { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); }
}
@media (max-width: 600px) {
  .honor { grid-template-columns: 1fr; gap: 26px; }
  .honor__media { --ar: 112%; margin-left: 12px; }
  .awards { grid-template-columns: 1fr; gap: 48px; }
  .award__media { --ar: 100%; }
  .awards-head h3 { white-space: normal; }
}

/* --------------------------------------------------------------------------
   14. Speakers & Special Guests
   -------------------------------------------------------------------------- */
.speakers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--gold-line-soft);
  background: var(--gold-line-soft);
}
.speaker {
  display: grid;
  grid-template-columns: 168px 1fr;
  gap: 28px;
  padding: clamp(24px, 3vw, 40px);
  background: var(--ivory-2);
  transition: background-color 0.5s var(--ease);
}
.speaker:hover { background: var(--ivory); }
.speaker__media { --ar: 118%; }
.speaker__role { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 12px; }
.speaker__name { font-size: 26px; font-weight: 500; line-height: 1.1; margin-bottom: 6px; }
.speaker__name.is-tba { font-style: italic; font-weight: 300; color: var(--ink-2); }
.speaker__title { font-size: 13px; color: var(--ink-2); margin-bottom: 14px; line-height: 1.5; }
.speaker__title span { color: var(--muted); }
.speaker__bio { font-size: 14px; line-height: 1.7; color: var(--ink-2); }
.speakers__note { margin-top: 28px; font-size: 13px; color: var(--muted); }

@media (max-width: 1040px) { .speakers { grid-template-columns: 1fr; } }
@media (max-width: 560px) {
  .speaker { grid-template-columns: 1fr; gap: 20px; }
  .speaker__media { --ar: 72%; max-width: 100%; }
}

/* --------------------------------------------------------------------------
   15. Video
   -------------------------------------------------------------------------- */
.video { overflow: hidden; }
.video .glow { opacity: 0.7; }
.video__stage {
  position: relative;
  max-width: 1120px;
  margin-inline: auto;
  transform: scale(var(--vs, 1));
  transform-origin: center;
}
.video__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 4; }
.video__media.is-playing .play, .video__media.is-playing .ph, .video__media.is-playing > img { display: none; }
.video__media.is-playing::after { display: none; }
.video__media > img { transform: scale(var(--vz, 1.12)); transition: none; }
.video__media {
  --ar: 56.25%;
  background: var(--green-950);
  box-shadow: 0 60px 120px -60px rgba(0, 0, 0, 0.7);
  cursor: pointer;
}
.video__media::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 50%, transparent 40%, rgba(7, 32, 26, 0.45));
  z-index: 1;
  pointer-events: none;
}
.video__media .ph { z-index: 0; }
.video__frame {
  position: absolute;
  inset: -20px 20px 20px -20px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
}
.play {
  position: absolute;
  top: 50%; left: 50%;
  z-index: 3;
  width: 96px; height: 96px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--on-dark);
  background: rgba(7, 32, 26, 0.35);
  backdrop-filter: blur(6px);
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease-out);
}
.play::before {
  content: "";
  position: absolute; inset: -14px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  border-radius: 50%;
  animation: pulse 3.2s var(--ease) infinite;
}
@keyframes pulse { 0% { transform: scale(0.86); opacity: 0; } 40% { opacity: 1; } 100% { transform: scale(1.12); opacity: 0; } }
.play svg { width: 22px; height: 22px; margin-left: 4px; }
.video__media:hover .play { background: var(--gold); color: var(--green-950); transform: translate(-50%, -50%) scale(1.06); }
.video__caption {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px; flex-wrap: wrap;
  margin-top: 28px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--on-dark-3);
}
.video__caption em { font-family: var(--serif); font-size: 18px; letter-spacing: 0; text-transform: none; color: var(--on-dark-2); }

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 90;
  display: grid; place-items: center;
  padding: var(--gutter);
  background: rgba(7, 32, 26, 0.92);
  backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}
.modal.is-open { opacity: 1; visibility: visible; transition-delay: 0s; }
.modal__box { position: relative; width: min(1100px, 100%); }
.modal__ratio { position: relative; padding-top: 56.25%; background: #000; box-shadow: 0 60px 120px -40px rgba(0,0,0,.8); }
.modal__ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.modal__empty {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center;
  padding: 24px;
  color: var(--on-dark-2);
  font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); font-style: italic;
}
.modal__close {
  position: absolute; right: 0; top: -52px;
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--on-dark); font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
}
.modal__close svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   16. Sponsors
   -------------------------------------------------------------------------- */
.tier { margin-top: clamp(48px, 6vw, 80px); }
.tier:first-of-type { margin-top: 0; }
.tier__head { display: flex; align-items: center; gap: 22px; margin-bottom: 28px; }
.tier__title { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--ink); white-space: nowrap; }
.tier__title small { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 4px; }
.tier__head .rule { flex: 1; }
.tier__head .rule::before { display: none; }

.logos {
  display: grid;
  gap: 2px;
  background: var(--gold-line-soft);
  border: 1px solid var(--gold-line-soft);
}
.logos--vip { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .logos--vip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .logos--vip { grid-template-columns: 1fr; } }
.logo-slot--vip { min-height: 200px; padding: clamp(28px, 3vw, 40px); }
.logo-slot.logo-slot--vip img {
  max-height: 88px;
  max-width: 80%;
  filter: none;
  opacity: 1;
}
.logo-slot .logo-slot__name { display: none; }
.logo-slot.is-text .logo-slot__name { display: block; }
.logo-slot__name small { display: block; margin-top: 10px; font-family: var(--sans); font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.logo-slot__name em { display: block; font-size: 14px; font-style: italic; font-weight: 400; color: var(--muted); margin-top: 4px; }
.logo-slot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 28px;
  background: var(--ivory);
  transition: background-color 0.4s var(--ease);
}
.logo-slot:hover { background: #fff; }
.logo-slot img { max-height: 64px; width: auto; max-width: 78%; object-fit: contain; filter: grayscale(1) contrast(0.9); opacity: 0.75; transition: filter 0.5s, opacity 0.5s; }
.logo-slot:hover img { filter: none; opacity: 1; }
.logo-slot__ph {
  text-align: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
}
.logo-slot__ph small { display: block; margin-top: 8px; font-family: var(--sans); font-style: normal; font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); }
.logo-slot__name {
  text-align: center;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--green-800);
  line-height: 1.2;
}

.footer__logo { width: clamp(150px, 16vw, 186px); height: auto; }

.advertisers { margin-top: clamp(72px, 9vw, 120px); padding-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--gold-line-soft); }
.advertisers__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(32px, 5vw, 80px); }
.advertisers__intro p { font-size: 15px; }
.advertisers__intro .es { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--green-800); margin-top: 18px; }
.advertisers__list {
  columns: 3;
  column-gap: 40px;
  font-size: 14.5px;
  line-height: 1.5;
}
.advertisers__list li {
  break-inside: avoid;
  display: flex; gap: 12px; align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.14);
  color: var(--ink-2);
}
.advertisers__list li::before { content: ""; width: 5px; height: 5px; flex: none; background: var(--gold); transform: rotate(45deg) translateY(-1px); }
.sponsors__cta { margin-top: clamp(48px, 6vw, 72px); display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.sponsors__cta p { font-size: 14px; color: var(--muted); max-width: 40em; }

@media (max-width: 1040px) { .advertisers__grid { grid-template-columns: 1fr; } .advertisers__list { columns: 2; } }
@media (max-width: 600px) { .advertisers__list { columns: 1; } .tier__title { white-space: normal; } }

/* --------------------------------------------------------------------------
   17. Event Details
   -------------------------------------------------------------------------- */
.details__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 6vw, 96px);
  align-items: stretch;
}
.info { border-top: 1px solid var(--gold-line); }
.info__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-bottom: 1px solid var(--gold-line-soft);
}
.info__icon { width: 30px; height: 30px; color: var(--gold-deep); margin-top: 2px; }
.info__label { font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 8px; }
.info__value { font-family: var(--serif); font-size: clamp(22px, 2vw, 27px); line-height: 1.25; color: var(--ink); }
.info__value small { display: block; font-family: var(--sans); font-size: 14px; color: var(--ink-2); margin-top: 6px; line-height: 1.6; }
.details__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 18px 28px; align-items: center; }

.map { position: relative; display: flex; flex-direction: column; }
/* Fill the row rather than reserving a fixed aspect, so the map ends level
   with the details list instead of leaving dead space beneath it. */
.map__frame { flex: 1 1 auto; min-height: 460px; background: var(--champagne); }
.map__frame::before { padding-top: 0; }
.map__frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: grayscale(1) sepia(0.28) saturate(0.9) contrast(0.96) brightness(1.02);
  transition: filter 0.8s var(--ease);
}
.map:hover .map__frame iframe { filter: grayscale(0.2) sepia(0.1); }
.map__frame::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid var(--gold-line-soft);
  pointer-events: none;
}
.map__card {
  position: absolute;
  left: clamp(16px, 2.4vw, 32px);
  bottom: clamp(16px, 2.4vw, 32px);
  z-index: 2;
  max-width: 300px;
  padding: 22px 24px;
  color: var(--on-dark);
  box-shadow: 0 30px 50px -30px rgba(7, 32, 26, 0.7);
}
.map__card strong { display: block; font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.map__card span { display: block; font-size: 13px; color: var(--on-dark-2); line-height: 1.6; }
.map__card a { display: inline-block; margin-top: 12px; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-2); border-bottom: 1px solid var(--gold-line); padding-bottom: 3px; }

@media (max-width: 1040px) {
  .details__grid { grid-template-columns: 1fr; }
  .map__frame { min-height: 0; }
  .map__frame::before { padding-top: 66%; }
}
@media (max-width: 600px) {
  .map__card { position: static; max-width: none; margin-top: 2px; }
  .details__cta .btn { width: 100%; }
}

/* --------------------------------------------------------------------------
   18. Closing CTA
   -------------------------------------------------------------------------- */
.closing { position: relative; overflow: hidden; text-align: center; padding-block: clamp(120px, 15vw, 220px); }
.closing .container { position: relative; z-index: 1; max-width: 900px; }
.closing__mark { width: 68px; height: 68px; margin: 0 auto 34px; color: var(--gold); }
.closing .display { color: var(--on-dark); }
.closing .lede { margin: 32px auto 0; }
.closing__cta { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px 24px; margin-top: 48px; }
.closing__contact {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px 36px;
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(201, 169, 97, 0.22);
  font-size: 13px; letter-spacing: 0.08em; color: var(--on-dark-2);
}
.closing__contact a:hover { color: var(--gold-2); }
.closing__ring {
  position: absolute;
  left: 50%; top: 50%;
  width: min(140vw, 1200px); aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(201, 169, 97, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.closing__ring--2 { width: min(100vw, 860px); border-color: rgba(201, 169, 97, 0.16); }
@media (max-width: 600px) { .closing__cta .btn { width: 100%; } }

/* --------------------------------------------------------------------------
   19. Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--green-950); color: var(--on-dark-2); border-top: 1px solid rgba(201, 169, 97, 0.25); }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) repeat(3, minmax(0, 2.4fr));
  gap: clamp(32px, 4vw, 64px);
  padding-block: clamp(56px, 7vw, 96px) clamp(40px, 5vw, 64px);
}
.footer__brand img { width: 150px; }
.footer__tag { margin-top: 26px; font-family: var(--serif); font-size: 20px; line-height: 1.4; color: var(--on-dark); max-width: 20em; }
.footer__tag em { display: block; font-size: 15px; color: var(--on-dark-3); margin-top: 8px; font-style: italic; }
.footer h4 { font-family: var(--sans); font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-2); font-weight: 600; margin-bottom: 22px; }
.footer__list li { margin-bottom: 12px; font-size: 14px; }
.footer__list a { transition: color 0.3s; }
.footer__list a:hover { color: var(--on-dark); }
.footer__contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; flex: none; color: var(--gold); margin-top: 3px; }
.social { display: flex; gap: 10px; }
.social a {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  color: var(--on-dark-2);
  transition: border-color 0.4s, color 0.4s, background-color 0.4s;
}
.social a:hover { border-color: var(--gold); color: var(--green-950); background: var(--gold); }
.social svg { width: 16px; height: 16px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px 24px;
  padding-block: 24px 30px;
  border-top: 1px solid rgba(201, 169, 97, 0.14);
  font-size: 12px; letter-spacing: 0.06em; color: var(--on-dark-3);
}
.footer__bottom a:hover { color: var(--on-dark); }
@media (max-width: 1040px) { .footer__grid { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; gap: 40px; } .footer__bottom { flex-direction: column; align-items: flex-start; } }

/* --------------------------------------------------------------------------
   20. Mobile sticky CTA
   -------------------------------------------------------------------------- */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(248, 244, 236, 0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--gold-line-soft);
  transform: translateY(110%);
  transition: transform 0.6s var(--ease-out);
}
.mobile-cta.is-visible { transform: none; }
.mobile-cta .btn { width: 100%; min-height: 50px; }
@media (max-width: 700px) { .mobile-cta { display: block; } }

/* --------------------------------------------------------------------------
   21. Utilities
   -------------------------------------------------------------------------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.hide-mobile { display: initial; }
@media (max-width: 700px) { .hide-mobile { display: none !important; } }
