footer#footerWrapper {
  display: none;
}

div#fullscreenContainer {
  display: none;
}

:root {
  /* Colour */
  --blue: #084a62;
  --blue-deep: #052f3f;
  --blue-ink: #031f2a;
  --blue-abyss: #02121b;
  --blue-shade: #031c28;
  --gold: #614c08;
  --gold-bright: #c5a84c;
  --gold-hover: #d4b85d;
  --cream: #f3efe5;
  --paper: #e8e4da;
  --ink: #142c34;
  --white: #fff;

  /* Channel triplets so alpha variants derive from the palette */
  --gold-bright-rgb: 197 168 76;
  --gold-rgb: 97 76 8;
  --blue-ink-rgb: 3 31 42;
  --ink-rgb: 20 44 52;
  --white-rgb: 255 255 255;

  /* Typeface */
  --sans: "DM Sans", sans-serif;
  --serif: "Gilda Display", Georgia, serif;

  /* Type scale — every fluid step carries a rem term so user font-size is honoured (WCAG 1.4.4) */
  --text-3xs: 0.6875rem;
  --text-2xs: 0.75rem;
  --text-xs: 0.8125rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: clamp(1.05rem, 0.95rem + 0.4vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.05rem + 0.85vw, 1.7rem);
  --text-2xl: clamp(1.6rem, 1.25rem + 1.5vw, 2.4rem);
  --text-3xl: clamp(2.1rem, 1.55rem + 2.3vw, 3.5rem);
  --text-4xl: clamp(2.6rem, 1.7rem + 3.8vw, 4.5rem);
  --text-5xl: clamp(3rem, 1.2rem + 5vw, 7rem);
  --text-6xl: clamp(4rem, 1.5rem + 6.9vw, 9rem);

  /* Space */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.25rem;
  --space-xl: 3.5rem;
  --space-2xl: clamp(4rem, 2rem + 6vw, 7rem);
  --space-3xl: clamp(5rem, 2rem + 9vw, 10rem);
  --gutter: clamp(1.25rem, 0.25rem + 6.2vw, 8rem);

  /* Radii */
  --radius-xs: 1px;
  --radius-sm: 2px;
  --radius-round: 50%;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgb(var(--ink-rgb) / 0.08);
  --shadow-md: 0 12px 30px rgb(var(--ink-rgb) / 0.12);
  --shadow-lg: 0 22px 50px rgb(var(--ink-rgb) / 0.16);
  --shadow-xl: 0 30px 80px rgb(0 0 0 / 0.35);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.9, 0.32, 1);
  --dur-fast: 0.2s;
  --dur-base: 0.35s;
  --dur-slow: 0.8s;

  /* Layers */
  --z-grain: 90;
  --z-header: 100;
  --z-backdrop: 150;
  --z-drawer: 160;
  --z-toast: 200;
  --z-lightbox: 300;
  --z-skip: 1000;

  /* Chrome */
  --header-h: 88px;
  --header-h-compact: 70px;
  --focus-ring: var(--gold-bright);
  --focus-ring-contrast: var(--blue-ink);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  /* `clip` is the correct value; `hidden` is the Safari < 16 fallback */
  overflow-x: hidden;
  overflow-x: clip;
}
section[id],
.hero[id] {
  scroll-margin-top: calc(var(--header-h-compact) + 10px);
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: clip;
}
body.scroll-locked {
  position: fixed;
  width: 100%;
  overflow: hidden;
}
body::selection {
  background: var(--gold-bright);
  color: var(--blue-ink);
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: var(--z-skip);
  padding: 0.75rem 1rem;
  background: var(--white);
  color: #000;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}
/* Gold clears 3:1 on the dark sections but not on cream/paper, so the light
   sections swap the ring colour rather than relying on one global value. */
.about,
.principles,
.help,
.skip-link {
  --focus-ring: var(--blue);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: var(--z-grain);
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: var(--z-header);
  inset: 0 0 auto;
  height: var(--header-h);
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  border-bottom: 1px solid rgb(var(--white-rgb) / 0.2);
  transition: var(--dur-base) ease;
}
.site-header.scrolled {
  height: var(--header-h-compact);
  background: rgb(5 47 63 / 0.93);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}
.brand-logo {
  display: block;
  width: auto;
  height: 45px;
  object-fit: contain;
}
.brand-event {
  max-width: 120px;
  padding-left: 1rem;
  border-left: 1px solid rgb(var(--white-rgb) / 0.32);
  font-size: var(--text-3xs);
  line-height: 1.45;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 2.2rem);
  text-transform: uppercase;
  font-size: clamp(0.6rem, 0.72vw, 0.66rem);
  letter-spacing: 0.14em;
}
.desktop-nav a {
  position: relative;
  white-space: nowrap;
}
.desktop-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold-bright);
  transition: right 0.25s;
}
.desktop-nav a:hover::after {
  right: 0;
}
.nav-cta {
  background: var(--gold-bright);
  color: var(--blue-ink);
  border: 1px solid var(--gold-bright);
  font-weight: 600;
  padding: 0.8rem 1.15rem;
  transition: 0.25s;
  white-space: nowrap;
}
.nav-cta:hover {
  background: #d4b85d;
  border-color: #d4b85d;
  color: var(--blue-ink);
  box-shadow: 0 4px 14px rgba(197, 168, 76, 0.35);
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0.85rem;
  background: rgba(5, 47, 63, 0.6);
  border: 1px solid rgba(197, 168, 76, 0.45);
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.nav-toggle:hover {
  background: rgba(197, 168, 76, 0.15);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.hamburger-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 17px;
  height: 13px;
  position: relative;
}
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--gold-bright);
  border-radius: 1px;
  transition:
    transform 0.3s cubic-bezier(0.22, 0.9, 0.32, 1),
    opacity 0.2s ease;
}
.nav-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

/* Mobile Nav Drawer & Backdrop */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 18, 25, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 86vw);
  background: linear-gradient(
    180deg,
    var(--blue-deep) 0%,
    var(--blue-ink) 100%
  );
  border-left: 1px solid rgba(197, 168, 76, 0.28);
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.45);
  z-index: var(--z-drawer);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 0.9, 0.32, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: none;
}
.mobile-nav.is-open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.75rem 1.5rem 2rem;
  box-sizing: border-box;
}

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 1.25rem;
}

.mobile-nav-badge {
  font-size: var(--text-3xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-bright);
}

.mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 168, 76, 0.35);
  border-radius: 2px;
  color: #fff;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.mobile-nav-close:hover {
  background: rgba(197, 168, 76, 0.2);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    color 0.25s,
    padding-left 0.25s,
    border-color 0.25s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:focus-visible {
  color: var(--gold-bright);
  padding-left: 0.85rem;
  border-bottom-color: rgba(197, 168, 76, 0.4);
}

.mobile-nav-index {
  display: inline-block;
  font-family: var(--serif);
  font-size: 0.82rem;
  color: var(--gold-bright);
  opacity: 0.75;
  width: 24px;
}

.mobile-nav-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-cta {
  width: 100%;
  justify-content: center;
}

.mobile-nav-info {
  margin: 0;
  font-size: var(--text-2xs);
  line-height: 1.6;
  color: rgb(var(--white-rgb) / 0.75);
  letter-spacing: 0.05em;
  text-align: center;
}

.hero {
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  min-height: 0;
  position: relative;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  padding: calc(var(--header-h) + 2vh) var(--gutter) 11rem;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
}
/* WCAG 2.2.2 — the hero video autoplays and loops, so it needs a stop control. */
.video-toggle {
  position: absolute;
  z-index: 4;
  top: calc(var(--header-h) + 1rem);
  right: clamp(1.25rem, 4vw, 4.5rem);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgb(var(--gold-bright-rgb) / 0.55);
  border-radius: var(--radius-round);
  background: rgb(var(--blue-ink-rgb) / 0.55);
  backdrop-filter: blur(6px);
  color: var(--gold-bright);
  cursor: pointer;
  transition:
    background-color var(--dur-fast) ease,
    border-color var(--dur-fast) ease;
}
.video-toggle:hover {
  background: rgb(var(--blue-ink-rgb) / 0.85);
  border-color: var(--gold-bright);
}
.video-toggle-play {
  display: none;
}
.video-toggle.is-paused .video-toggle-pause {
  display: none;
}
.video-toggle.is-paused .video-toggle-play {
  display: block;
}
.hero-wash {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(3, 31, 42, 0.96) 0%,
      rgba(5, 47, 63, 0.8) 43%,
      rgba(3, 31, 42, 0.23) 73%
    ),
    linear-gradient(0deg, rgba(3, 31, 42, 0.8), transparent 55%);
}
.hero-wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 72% 38%,
    transparent,
    rgba(3, 31, 42, 0.32)
  );
}
.pressure-line {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 62%;
  width: 1px;
  background: linear-gradient(
    transparent,
    var(--gold-bright) 20%,
    rgba(197, 168, 76, 0.15) 65%,
    transparent
  );
  transform: rotate(12deg) scaleY(1.5);
  transform-origin: top;
  box-shadow: 35px 0 0 rgba(197, 168, 76, 0.12);
}
.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.27em;
}
.eyebrow span {
  margin-left: 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: none;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
}
h1 {
  margin: 0;
  font-size: clamp(4rem, 8.3vw, 9rem);
  line-height: 0.77;
  letter-spacing: -0.045em;
}
h1 span,
h1 em {
  display: block;
}
h1 em {
  margin-left: clamp(1rem, 10vw, 9rem);
  color: transparent;
  font-style: italic;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.74);
}
.theme {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 2rem 0 2.4rem;
  font: clamp(1rem, 1.6vw, 1.4rem) var(--serif);
}
.theme::before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--gold-bright);
}
.theme span {
  font: 300 0.75rem var(--sans);
  opacity: 0.68;
  letter-spacing: 0.04em;
}
.event-meta {
  display: flex;
  gap: clamp(2rem, 6vw, 5rem);
  margin-top: clamp(2.2rem, 5.5vw, 3.8rem);
  margin-bottom: clamp(2.2rem, 5.5vw, 3.8rem);
}
.meta-item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.meta-item svg {
  width: 19px;
  fill: none;
  stroke: var(--gold-bright);
  stroke-width: 1.5;
  flex: 0 0 auto;
}
.meta-item p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
}
.meta-item p span {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--gold-bright);
  font-size: var(--text-3xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.button {
  position: relative;
  width: fit-content;
  min-width: 230px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid currentColor;
  padding: 0.42rem 0.42rem 0.42rem 1.45rem;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  font-size: 0.64rem;
  font-weight: 600;
  overflow: hidden;
  clip-path: polygon(
    14px 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    14px 100%,
    0 calc(100% - 14px),
    0 14px
  );
  transition:
    transform 0.25s,
    color 0.3s,
    background-color 0.3s,
    box-shadow 0.3s,
    filter 0.3s;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.button:hover::before {
  transform: scaleX(1);
}
.button span,
.button i, .button em {
  position: relative;
  z-index: 1;
}
.button i,.button em {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold-bright);
  color: var(--blue-ink);
  font: normal 1.2rem var(--sans);
  transition:
    transform 0.35s,
    background-color 0.3s;
}
.button:hover span {
  mix-blend-mode: difference;
  color: #fff;
}
.button:hover i,.button:hover em {
  transform: rotate(-45deg);
  background: var(--cream);
}

/* Custom sweep shine animation for cut-corner buttons */
.button::after,
.button-gold::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-25deg);
  pointer-events: none;
}
.button:hover::after,
.button-gold:hover::after {
  left: 200%;
  transition: left 0.75s cubic-bezier(0.22, 0.9, 0.32, 1);
}

.button-gold {
  min-height: 56px;
  padding: 0.7rem 0.75rem 0.7rem 1.45rem;
  border-color: var(--gold-bright);
  clip-path: polygon(
    14px 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% calc(100% - 14px),
    calc(100% - 14px) 100%,
    14px 100%,
    0 calc(100% - 14px),
    0 14px
  );
  background: var(--gold-bright);
  color: var(--blue-ink);
  box-shadow: none;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.24));
  transition:
    transform 0.25s,
    color 0.3s,
    background-color 0.3s,
    filter 0.3s,
    background 0.3s;
}
.button-gold::before {
  display: none;
}
.button-gold i,.button-gold em {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(3, 31, 42, 0.25);
  background: transparent;
}
.button-gold:hover {
  background: #d4b85d;
  box-shadow: none;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.32));
}
.button-gold:hover span {
  color: var(--blue-ink);
  mix-blend-mode: normal;
}
.button-gold:hover i,.button-gold:hover em {
  transform: translate(3px, 3px);
  background: var(--blue-ink);
  color: var(--gold-bright);
}
/* clip-path crops the outline off the cut corners, so the ring is drawn inside
   the shape. Both tones are always present: whichever contrasts with the
   current background is the one that reads. */
.button:focus-visible,
.button-gold:focus-visible {
  outline: none;
  box-shadow:
    inset 0 0 0 3px var(--blue-ink),
    inset 0 0 0 6px var(--gold-bright);
}
.countdown-wrap {
  position: absolute;
  z-index: 3;
  left: var(--gutter);
  right: 0;
  bottom: 2.2rem;
  display: flex;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: flex-end;
}
.countdown-wrap > p {
  width: 115px;
  margin: 0 0 0.4rem;
  color: var(--gold-bright);
  font-size: var(--text-3xs);
  line-height: 1.6;
  letter-spacing: 0.2em;
}
.countdown {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.6rem, 1.8vw, 2rem);
}
.countdown div {
  min-width: clamp(50px, 6vw, 82px);
}
.countdown strong {
  display: block;
  font: clamp(1.8rem, 3.5vw, 3.6rem)/0.9 var(--serif);
  font-variant-numeric: tabular-nums;
}
.countdown span {
  display: block;
  margin-top: 0.7rem;
  font-size: var(--text-3xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.8;
}
.countdown b {
  font: 1.6rem var(--serif);
  color: var(--gold-bright);
}
.countdown.event-live {
  font: clamp(1.5rem, 3vw, 3rem) var(--serif);
  color: var(--gold-bright);
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 2.4rem;
  right: clamp(1.25rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: var(--text-3xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transform: rotate(90deg);
  transform-origin: right;
}
.scroll-cue span {
  width: 38px;
  height: 1px;
  background: var(--gold-bright);
  animation: cue 2s ease-in-out infinite;
}

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--gutter);
}
.section-index {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(3rem, 7vw, 7rem);
  color: var(--gold);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.section-index::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(97, 76, 8, 0.25);
}
.section-index span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  font-family: var(--serif);
  letter-spacing: 0;
}
.principles h2,
.book h2 {
  margin: 0;
  font-size: var(--text-5xl);
  line-height: 0.93;
  letter-spacing: -0.035em;
}
h2 em {
  color: var(--gold);
  font-weight: 400;
}

.principles {
  background: var(--paper);
}

.book {
  min-height: 760px;
  overflow: hidden;
  background: var(--blue-deep);
  color: #fff;
}
.book::before {
  content: "";
  position: absolute;
  width: min(65vw, 900px);
  aspect-ratio: 1;
  border: 1px solid rgba(197, 168, 76, 0.22);
  border-radius: 50%;
  right: -20%;
  top: -30%;
  box-shadow:
    0 0 0 80px rgba(197, 168, 76, 0.03),
    0 0 0 160px rgba(197, 168, 76, 0.025);
}
.book-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  left: 20%;
  bottom: -50%;
  background: var(--gold);
  filter: blur(170px);
  opacity: 0.25;
}
.section-index-light {
  color: var(--gold-bright);
}
.section-index-light::after {
  background: rgba(255, 255, 255, 0.15);
}
.book h2 em {
  color: var(--gold-bright);
}
.book-closure {
  margin: clamp(4rem, 8vw, 7.5rem) auto 0;
  max-width: 680px;
  text-align: center;
}
.book-closure-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  color: var(--gold-bright);
  opacity: 0.65;
}
.book-closure-rule span {
  width: clamp(35px, 7vw, 90px);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-bright),
    transparent
  );
}
.book-closure-rule i,.book-closure-rule em {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--gold-bright);
}
.book-note {
  position: relative;
  margin: 0;
  font: italic clamp(1.35rem, 2vw, 1.85rem) var(--serif);
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

/* Architectural Venue Transition Separator */
.venue-separator {
  position: relative;
  z-index: 5;
  background: linear-gradient(
    180deg,
    var(--blue-deep) 0%,
    var(--blue-ink) 100%
  );
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(197, 168, 76, 0.25);
  border-bottom: 1px solid rgba(197, 168, 76, 0.4);
  box-shadow:
    0 -12px 32px rgba(0, 0, 0, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.35);
}
.separator-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(197, 168, 76, 0.3) 40%,
    var(--gold-bright) 100%
  );
}
.separator-line:last-child {
  background: linear-gradient(
    90deg,
    var(--gold-bright) 0%,
    rgba(197, 168, 76, 0.3) 60%,
    transparent
  );
}
.separator-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 1.6rem;
  background: rgba(3, 31, 42, 0.95);
  border-inline: 1px solid rgba(197, 168, 76, 0.5);
  color: var(--gold-bright);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.separator-coord {
  font-family: var(--sans);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.12em;
}
.separator-dot {
  color: rgba(197, 168, 76, 0.5);
  font-size: 0.8rem;
}
.separator-title {
  font-weight: 600;
  letter-spacing: 0.2em;
}
.separator-hall {
  font-family: var(--serif);
  color: #fff;
  letter-spacing: 0.1em;
}
@media (max-width: 900px) {
  .venue-separator {
    padding-inline: 1rem;
  }
  .separator-badge {
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.8rem;
    padding: 0.8rem 1rem;
    font-size: var(--text-3xs);
    letter-spacing: 0.16em;
    white-space: normal;
    text-align: center;
  }
}
@media (max-width: 600px) {
  .separator-line,
  .separator-dot {
    display: none;
  }
  .separator-badge {
    flex: 1;
    flex-direction: column;
    border-inline: 0;
    background: transparent;
  }
}

footer {
  min-height: 130px;
  padding: 2rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: var(--blue-ink);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.67rem;
  letter-spacing: 0.07em;
}
.brand-dark {
  color: #fff;
}
.brand-dark .brand-event {
  border-color: rgba(255, 255, 255, 0.2);
}
footer > a:last-child {
  text-transform: uppercase;
  color: var(--gold-bright);
}

/* Scoped to .js so a script failure leaves the page readable rather than blank. */
.js .reveal {
  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-reveal {
  opacity: 0;
  transform: translateY(25px);
  animation: heroIn 0.85s cubic-bezier(0.22, 0.9, 0.32, 1) forwards;
}
.hero-reveal:nth-child(2) {
  animation-delay: 0.12s;
}
.hero-reveal:nth-child(3) {
  animation-delay: 0.24s;
}
.hero-reveal:nth-child(4) {
  animation-delay: 0.36s;
}
.hero-reveal:nth-child(5) {
  animation-delay: 0.48s;
}
.countdown-wrap.hero-reveal {
  animation-delay: 0.65s;
}
@keyframes heroIn {
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes cue {
  0%,
  100% {
    transform: scaleX(0.5);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
  }
}

/* Global responsive steps — 900 (tablet) and 600 (handset).
   Per-component blocks further down reuse these same two widths. */
@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .hero {
    padding-bottom: 11rem;
  }
}

@media (max-width: 600px) {
  :root {
    --header-h: 70px;
    --header-h-compact: 70px;
  }
  .site-header {
    padding-inline: 1rem;
  }
  .brand-logo {
    height: 36px;
  }
  .brand-event {
    display: none;
  }
  .eyebrow span {
    display: block;
    margin-left: 0;
    margin-top: 0.5rem;
  }
  .nav-cta {
    padding: 0.7rem 0.8rem;
    font-size: var(--text-3xs);
  }
  .hero {
    align-items: flex-start;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    min-height: 0;
    padding-top: 6.6rem;
    padding-bottom: 10rem;
  }
  h1 {
    font-size: clamp(3.15rem, 16vw, 5rem);
    line-height: 0.83;
  }
  h1 em {
    margin: 0.3rem 0 0 0.5rem;
  }
  .theme {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .theme span {
    width: 100%;
    margin-left: 58px;
  }
  .event-meta {
    flex-direction: column;
    gap: 1rem;
  }
  .meta-item p {
    font-size: 0.68rem;
  }
  .button {
    min-width: 215px;
    min-height: 56px;
  }
  .button i,.button em {
    width: 42px;
    height: 42px;
  }
  .countdown-wrap {
    left: 1.25rem;
    bottom: 2.3rem;
    display: block;
  }
  .countdown-wrap > p {
    width: auto;
    margin-bottom: 1rem;
  }
  .countdown {
    gap: 0.45rem;
  }
  .countdown div {
    min-width: 45px;
  }
  .countdown b {
    font-size: 1rem;
  }
  .scroll-cue {
    display: none;
  }
  .section {
    padding-block: 5rem;
  }
  .section-index {
    margin-bottom: 3.5rem;
  }
  .book {
    min-height: auto;
  }
  .book-note {
    margin-top: 5rem;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-height: 760px) {
  .hero {
    padding-top: calc(var(--header-h) + 1.25rem);
    padding-bottom: 8.8rem;
  }
  .hero .eyebrow {
    margin-bottom: 0.8rem;
  }
  h1 {
    font-size: clamp(3.1rem, 7.4vw, 6.5rem);
  }
  .theme {
    margin-block: 1rem;
  }
  .event-meta {
    margin-block: 1.25rem;
  }
  .button {
    min-height: 52px;
  }
  .button i,.button em {
    width: 40px;
    height: 40px;
  }
  .countdown-wrap {
    bottom: 1.25rem;
  }
}

@media (max-width: 600px) and (max-height: 760px) {
  .hero {
    min-height: 0;
    padding-top: 5.4rem;
    padding-bottom: 7.7rem;
  }
  .hero .eyebrow {
    display: none;
  }
  h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }
  .theme {
    font-size: 0.95rem;
    margin-block: 0.7rem;
  }
  .event-meta {
    gap: 0.5rem;
    margin-block: 0.85rem;
  }
  .meta-item p {
    line-height: 1.35;
  }
  .meta-item p br {
    display: none;
  }
  .countdown-wrap {
    bottom: 0.85rem;
  }
  .countdown span {
    margin-top: 0.35rem;
  }
}

/* Why attend — image-led editorial grid */
.attend-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-bottom: 3rem;
}
.attend-intro > div {
  min-width: 0;
}
.attend-intro .eyebrow {
  color: var(--gold);
  letter-spacing: 0;
}
.principles .attend-intro h2 {
  max-width: 13ch;
  font-size: 3.5rem;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.attend-copy {
  padding: 0 0 0 1.75rem;
  border-left: 1px solid var(--gold);
  font-size: 1rem;
  line-height: 1.8;
}
.attend-copy p {
  margin: 0 0 1.25rem;
}
.attend-copy p:last-child {
  margin-bottom: 0;
}
.attend-copy strong {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.18em;
  font-weight: 400;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: clamp(0.9rem, 1.4vw, 1.4rem);
}
.benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  min-height: 300px;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue-ink);
  color: var(--cream);
  clip-path: inset(0 0 12% 0);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 0.9, 0.32, 1),
    clip-path 0.9s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.benefit.visible {
  clip-path: inset(0 0 0 0);
}
.benefit:nth-child(1) {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 520px;
}
.benefit:nth-child(2),
.benefit:nth-child(3) {
  grid-column: span 5;
}
.benefit:nth-child(4),
.benefit:nth-child(5),
.benefit:nth-child(6) {
  grid-column: span 4;
}
.benefit::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(3, 31, 42, 0.05) 20%,
    rgba(3, 31, 42, 0.55) 62%,
    rgba(3, 31, 42, 0.95) 100%
  );
  box-shadow: inset 0 0 0 1px rgba(197, 168, 76, 0.22);
  transition: box-shadow 0.45s ease;
}
.benefit:hover::before,
.benefit:focus-within::before {
  box-shadow: inset 0 0 0 1px rgba(197, 168, 76, 0.6);
}
.benefit-hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.65s cubic-bezier(0.22, 0.9, 0.32, 1) 0.2s;
}
.benefit-hero.visible::after {
  transform: scaleX(1);
}
.benefit-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.benefit-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transition:
    transform 0.9s cubic-bezier(0.22, 0.9, 0.32, 1),
    filter 0.45s ease;
}
.benefit.visible .benefit-media img {
  transform: scale(1);
}
/* Source photo has a blown-out screen edge top-left — crop past it on the wide hero */
.benefit-hero .benefit-media img {
  object-position: 100% 100%;
}
.benefit:hover .benefit-media img,
.benefit:focus-within .benefit-media img {
  transform: scale(1.07);
  filter: brightness(1.1);
}
/* Slow idle drift, hero card only — scale covers the translate so no edge is exposed */
.benefit-hero.visible .benefit-media {
  animation: benefitDrift 22s ease-in-out infinite alternate;
}
@keyframes benefitDrift {
  from {
    transform: scale(1.06) translate3d(-1.2%, 0.6%, 0);
  }
  to {
    transform: scale(1.06) translate3d(1.2%, -1%, 0);
  }
}
.benefit-spot {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: soft-light;
  background: radial-gradient(
    20rem 20rem at var(--mx, 50%) var(--my, 50%),
    rgba(197, 168, 76, 0.55),
    rgba(197, 168, 76, 0.14) 45%,
    transparent 70%
  );
  transition: opacity 0.4s ease;
}
.benefit:hover .benefit-spot {
  opacity: 1;
}
.benefit-content {
  position: relative;
  z-index: 4;
  padding: 2.4rem 1.35rem 1.25rem;
  transform: translateY(10px);
  transition: transform 0.5s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.benefit:hover .benefit-content,
.benefit:focus-within .benefit-content {
  transform: translateY(0);
}
.benefit-number {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
}
.benefit-digit {
  position: relative;
  display: block;
  overflow: hidden;
  color: transparent;
  font: 400 clamp(1.5rem, 2.1vw, 2.1rem) / 1 var(--serif);
  font-style: normal;
  letter-spacing: 0.02em;
}
.benefit-digit::before,
.benefit-digit::after {
  content: attr(data-num);
  position: absolute;
  inset: 0;
  color: var(--gold-bright);
  transition: transform 0.5s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.benefit-digit::after {
  transform: translateY(100%);
}
.benefit:hover .benefit-digit::before {
  transform: translateY(-100%);
}
.benefit:hover .benefit-digit::after {
  transform: translateY(0);
}
.benefit-number::after {
  content: "";
  flex: 0 0 auto;
  width: 2rem;
  height: 1px;
  background: var(--gold-bright);
  transition: width 0.45s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.benefit:hover .benefit-number::after,
.benefit:focus-within .benefit-number::after {
  width: 3.5rem;
}
.benefit h3 {
  margin: 0;
  font: clamp(1.3rem, 1.6vw, 1.7rem) / 1.24 var(--serif);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.benefit-hero h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  max-width: 16ch;
}
.benefit h3 strong {
  color: var(--gold-bright);
  font-weight: 400;
}
.benefit-line {
  background-image: linear-gradient(var(--gold-bright), var(--gold-bright));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size 0.45s cubic-bezier(0.22, 0.9, 0.32, 1) 0.06s;
}
.benefit:hover .benefit-line,
.benefit:focus-within .benefit-line {
  background-size: 100% 1px;
}
.benefit-tag {
  margin: 1rem 0 0;
  padding-left: 0.7rem;
  border-left: 1px solid var(--gold-bright);
  color: var(--gold-bright);
  font-size: var(--text-3xs);
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.45s ease;
}
.benefit:hover .benefit-tag,
.benefit:focus-within .benefit-tag {
  opacity: 1;
}
.benefit-grid .benefit:nth-child(1) {
  transition-delay: 0.02s;
}
.benefit-grid .benefit:nth-child(2) {
  transition-delay: 0.1s;
}
.benefit-grid .benefit:nth-child(3) {
  transition-delay: 0.18s;
}
.benefit-grid .benefit:nth-child(4) {
  transition-delay: 0.26s;
}
.benefit-grid .benefit:nth-child(5) {
  transition-delay: 0.34s;
}
.benefit-grid .benefit:nth-child(6) {
  transition-delay: 0.42s;
}

@media (max-width: 900px) {
  .attend-intro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .attend-copy {
    max-width: 680px;
  }
  .benefit-grid {
    grid-auto-rows: minmax(170px, auto);
  }
  .benefit {
    min-height: 260px;
  }
  .benefit:nth-child(n) {
    grid-column: span 6;
  }
  .benefit:nth-child(1) {
    grid-column: span 12;
    grid-row: auto;
    min-height: 380px;
  }
  .benefit:nth-child(6) {
    grid-column: span 12;
  }
}

@media (max-width: 600px) {
  .principles .attend-intro h2 {
    font-size: 2.5rem;
  }
  .attend-copy {
    padding-left: 1.1rem;
  }
  .benefit-grid {
    grid-auto-rows: auto;
  }
  .benefit:nth-child(n) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 260px;
  }
  .benefit:nth-child(1) {
    min-height: 320px;
  }
  .benefit h3,
  .benefit-hero h3 {
    font-size: 1.5rem;
  }
}
/* Highlights gallery — image slots ready for supplied photography */
.highlights {
  overflow: hidden;
  background: var(--blue-deep);
  color: #fff;
}
.highlights::before {
  content: "";
  position: absolute;
  width: 55vw;
  height: 55vw;
  right: -25vw;
  top: 8%;
  border: 1px solid rgba(197, 168, 76, 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(197, 168, 76, 0.025),
    0 0 0 160px rgba(197, 168, 76, 0.018);
}
.highlights-heading {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.6fr;
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.highlights-heading h2 {
  margin: 0;
  font: clamp(3rem, 6.2vw, 7rem)/0.93 var(--serif);
  letter-spacing: -0.035em;
}
.highlights-heading h2 em {
  color: var(--gold-bright);
}
.highlights-heading > p {
  max-width: 390px;
  margin: 0;
  padding-left: 1.5rem;
  border-left: 1px solid var(--gold-bright);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}
.highlight-slider {
  position: relative;
  --rail-pad: var(--gutter);
  --rail-gap: clamp(0.9rem, 1.4vw, 1.4rem);
}
.highlight-rail {
  display: flex;
  gap: var(--rail-gap);
  /* Bleed past the section padding so slides run to the viewport edge, then re-pad the ends */
  margin-inline: calc(var(--rail-pad) * -1);
  padding: 0 var(--rail-pad) 0.75rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline-start: var(--rail-pad);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.highlight-rail::-webkit-scrollbar {
  display: none;
}
.highlight-rail.is-dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  cursor: grabbing;
}
/* Applied for a single frame while the rail is rewound by one loop. */
.highlight-rail.is-jumping {
  scroll-snap-type: none;
  scroll-behavior: auto;
}
.highlight-rail:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: -3px;
}
.highlight-slide {
  position: relative;
  flex: 0 0 clamp(280px, 46vw, 620px);
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: var(--blue-ink);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  filter: brightness(0.55) saturate(0.9);
  transition: filter 0.5s ease;
}
.highlight-slide.is-active {
  filter: none;
}
.highlight-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(197, 168, 76, 0.22);
  transition: box-shadow 0.45s ease;
}
.highlight-slide.is-active::after {
  box-shadow: inset 0 0 0 1px rgba(197, 168, 76, 0.5);
}
.highlight-slide:hover::after {
  box-shadow: inset 0 0 0 1px rgba(197, 168, 76, 0.75);
}
.highlight-trigger {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  overflow: hidden;
}
.highlight-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.65s ease,
    filter 0.4s ease;
}
.highlight-slide figcaption {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 2.5rem 1.25rem 1.15rem;
  background: linear-gradient(transparent, rgba(3, 31, 42, 0.9));
  pointer-events: none;
  transform: translateY(8px);
  transition: transform 0.5s cubic-bezier(0.22, 0.9, 0.32, 1);
}
.highlight-slide.is-active figcaption {
  transform: translateY(0);
}
.highlight-slide figcaption strong {
  font: 1.15rem var(--serif);
  font-weight: 400;
}
.highlight-slide figcaption span {
  color: var(--gold-bright);
  font-size: var(--text-3xs);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.highlight-slide:hover .highlight-photo {
  transform: scale(1.025);
  filter: brightness(1.12);
}

/* Slider chrome — dots left, arrows right, gold scrub bar on the divider */
.highlight-controls {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  padding-top: clamp(1.1rem, 2vw, 1.6rem);
  border-top: 1px solid rgba(197, 168, 76, 0.18);
}
.highlight-progress {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-bright);
  transform: scaleX(var(--rail-progress, 0));
  transform-origin: left;
  transition: transform 0.2s linear;
}
.highlight-play-start {
  display: none;
}
.highlight-play.is-paused .highlight-play-pause {
  display: none;
}
.highlight-play.is-paused .highlight-play-start {
  display: block;
}
.highlight-dots {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.highlight-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(197, 168, 76, 0.5);
  background: transparent;
  cursor: pointer;
  transition:
    width 0.45s cubic-bezier(0.22, 0.9, 0.32, 1),
    background 0.35s ease,
    border-color 0.35s ease;
}
.highlight-dot:hover {
  border-color: var(--gold-bright);
  background: rgba(197, 168, 76, 0.35);
}
.highlight-dot[aria-current="true"] {
  width: 24px;
  border-color: var(--gold-bright);
  background: var(--gold-bright);
}
.highlight-arrows {
  display: flex;
  gap: 0.6rem;
}
.highlight-arrow {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(197, 168, 76, 0.45);
  border-radius: 50%;
  background: rgba(5, 47, 63, 0.7);
  color: var(--cream);
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    opacity 0.25s;
}
.highlight-arrow:hover:not([aria-disabled="true"]) {
  background: rgba(197, 168, 76, 0.2);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.highlight-arrow[aria-disabled="true"] {
  opacity: 0.3;
  cursor: default;
}

/* Themed highlights lightbox — stays on CISI chrome for next/prev */
.highlight-lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  color: var(--cream);
}
.highlight-lightbox.is-open {
  display: block;
}
.highlight-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(3, 31, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.highlight-lightbox-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(0.6rem, 2vw, 1.5rem);
  width: min(1180px, calc(100% - 2rem));
  height: 100%;
  margin: 0 auto;
  padding: 4.5rem 0 2rem;
}
.highlight-lightbox-frame {
  position: relative;
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 6.5rem);
  border: 1px solid rgba(197, 168, 76, 0.35);
  background: var(--blue-ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}
.highlight-lightbox-frame img {
  display: block;
  width: 100%;
  max-height: min(72dvh, 780px);
  object-fit: contain;
  background: var(--blue-deep);
}
.highlight-lightbox-frame figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem 1.15rem;
  border-top: 1px solid rgba(197, 168, 76, 0.28);
  background: linear-gradient(180deg, var(--blue-ink), var(--blue-deep));
}
.highlight-lightbox-frame figcaption span {
  color: var(--gold-bright);
  font: 0.72rem var(--serif);
  letter-spacing: 0.14em;
}
.highlight-lightbox-frame figcaption strong {
  flex: 1;
  font: 1.15rem/1.3 var(--serif);
  font-weight: 400;
}
.highlight-lightbox-frame figcaption em {
  color: rgb(243 239 229 / 0.8);
  font: var(--text-3xs) var(--sans);
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.highlight-lightbox-close {
  position: absolute;
  top: 1.15rem;
  right: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(197, 168, 76, 0.45);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.highlight-lightbox-close:hover,
.highlight-lightbox-nav:hover {
  background: rgba(197, 168, 76, 0.2);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.highlight-lightbox-nav {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(197, 168, 76, 0.45);
  border-radius: 50%;
  background: rgba(5, 47, 63, 0.7);
  color: var(--cream);
  cursor: pointer;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
/* The slide clips overflow, so this ring has to sit inside the trigger */
.highlight-trigger:focus-visible {
  outline-offset: -4px;
}

@media (max-width: 700px) {
  .highlight-lightbox-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    width: calc(100% - 1.25rem);
    padding: 4.25rem 0 1.25rem;
    gap: 0.85rem;
  }
  .highlight-lightbox-frame {
    grid-column: 1 / -1;
    max-height: calc(100dvh - 8.5rem);
  }
  .highlight-lightbox-frame img {
    max-height: min(58dvh, 520px);
  }
  .highlight-lightbox-frame figcaption {
    flex-wrap: wrap;
  }
  .highlight-lightbox-prev {
    justify-self: start;
  }
  .highlight-lightbox-next {
    justify-self: end;
  }
  .highlight-lightbox-nav {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 900px) {
  .highlights-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .highlight-slide {
    flex-basis: clamp(280px, 72vw, 480px);
  }
}
@media (max-width: 600px) {
  .highlight-slide {
    flex-basis: min(78vw, 340px);
  }
  .highlight-slide figcaption {
    display: block;
  }
  .highlight-slide figcaption span {
    display: block;
    margin-top: 0.45rem;
  }
  .highlight-controls {
    gap: 1rem;
  }
  .highlight-arrow {
    width: 42px;
    height: 42px;
  }
}

/* Section 5 — member booking options */
.booking-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.65fr);
  gap: clamp(3rem, 9vw, 10rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6rem);
}
.booking-intro {
  padding: 1.7rem 0 0 1.75rem;
  border-left: 1px solid var(--gold-bright);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.75;
}
.booking-intro p {
  margin: 0 0 1rem;
}
.booking-intro .booking-lead {
  color: #fff;
  font: clamp(1.15rem, 1.5vw, 1.45rem)/1.5 var(--serif);
}
.booking-intro strong {
  color: var(--gold-bright);
  font-weight: 400;
}
.member-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 0.5rem;
  color: var(--gold-bright);
  font-size: var(--text-3xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.member-note i ,.member-note em {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
}

/* Booking Notice Card — Member Sign-in / Registration */
.booking-notice-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.75rem, 3.5vw, 3.5rem);
  padding: clamp(1.6rem, 2.6vw, 2.4rem) clamp(1.75rem, 3.5vw, 3.25rem);
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
  border: 1px solid rgba(197, 168, 76, 0.38);
  background: linear-gradient(
    135deg,
    rgba(8, 74, 98, 0.45) 0%,
    rgba(5, 47, 63, 0.78) 50%,
    rgba(3, 31, 42, 0.92) 100%
  );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.22, 0.9, 0.32, 1),
    border-color 0.35s,
    box-shadow 0.35s;
}
.booking-notice-card::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 30px;
  height: 30px;
  border-top: 2px solid var(--gold-bright);
  border-right: 2px solid var(--gold-bright);
  pointer-events: none;
}
.booking-notice-card.visible:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 168, 76, 0.65);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.35),
    0 0 26px rgba(197, 168, 76, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.booking-notice-left {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.25rem);
  flex: 1;
  min-width: 0;
}
.booking-notice-icon {
  flex-shrink: 0;
  width: clamp(52px, 5.2vw, 68px);
  height: clamp(52px, 5.2vw, 68px);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  opacity: 0.9;
}
.booking-notice-icon svg {
  width: 100%;
  height: 100%;
}
.booking-notice-content h3 {
  margin: 0 0 0.5rem;
  font: clamp(1.85rem, 2.5vw, 2.6rem)/1.1 var(--serif);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.015em;
}
.booking-notice-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.82rem, 0.92vw, 0.95rem);
  line-height: 1.65;
  max-width: 580px;
}
.booking-notice-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.button-notice-outline,
.button-notice-gold {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.9rem 1.45rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.25s,
    background 0.25s,
    border-color 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.button-notice-outline i,
.button-notice-gold i,.button-notice-outline em,.button-notice-gold em {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 0.25s;
}
.button-notice-outline:hover i,
.button-notice-gold:hover i,.button-notice-outline:hover em,.button-notice-gold:hover em {
  transform: translate(2px, -2px);
}
.button-notice-outline {
  border: 1px solid rgba(197, 168, 76, 0.55);
  background: rgba(5, 47, 63, 0.35);
  color: #fff;
}
.button-notice-outline:hover {
  border-color: var(--gold-bright);
  background: rgba(197, 168, 76, 0.14);
  color: var(--gold-bright);
}
.button-notice-gold {
  border: 1px solid var(--gold-bright);
  background: var(--gold-bright);
  color: var(--blue-ink);
  box-shadow: 0 4px 14px rgba(197, 168, 76, 0.25);
}
.button-notice-gold:hover {
  background: #d4b85d;
  border-color: #d4b85d;
  color: var(--blue-ink);
  box-shadow: 0 6px 20px rgba(197, 168, 76, 0.38);
}

.booking-options {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.booking-option {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.21);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.025)
  );
  transition:
    transform 0.4s cubic-bezier(0.22, 0.9, 0.32, 1),
    border-color 0.35s,
    background 0.35s;
}
.booking-option::after {
  content: "";
  position: absolute;
  right: 1.2rem;
  top: 1.2rem;
  width: 34px;
  height: 34px;
  border-top: 1px solid var(--gold-bright);
  border-right: 1px solid var(--gold-bright);
  opacity: 0.55;
}
.booking-option:hover {
  transform: translateY(-7px);
  border-color: rgba(197, 168, 76, 0.7);
  background: linear-gradient(
    145deg,
    rgba(197, 168, 76, 0.1),
    rgba(255, 255, 255, 0.03)
  );
}
.booking-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 2.25rem;
  border: 1px solid rgba(197, 168, 76, 0.65);
  color: var(--gold-bright);
}
.booking-icon svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.booking-option-copy {
  margin-bottom: 2.2rem;
}
.booking-option-copy > span {
  color: var(--gold-bright);
  font-size: var(--text-3xs);
  letter-spacing: 0.2em;
}
.booking-option h3 {
  margin: 0.65rem 0 0.9rem;
  font: clamp(2rem, 3vw, 3.2rem)/1 var(--serif);
  font-weight: 400;
}
.booking-option p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  line-height: 1.7;
}
.booking-option .button {
  width: 100%;
  max-width: 420px;
  margin-top: auto;
}
.booking-option .button span {
  line-height: 1.35;
}
.basket-action.is-loading {
  cursor: wait;
  pointer-events: none;
}

/* The arrow disc becomes the spinner while the basket request is in flight. */
.basket-action.is-loading i {
  border: 2px solid rgb(var(--blue-ink-rgb) / 0.22);
  border-top-color: var(--blue-ink);
  color: transparent;
  animation: basket-spin 0.65s linear infinite;
}
/* .button-gold hides ::before; it is re-enabled here as an indeterminate bar. */
.basket-action.is-loading::before {
  display: block;
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 35%;
  height: 2px;
  background: var(--blue-ink);
  opacity: 0.55;
  transform: translateX(-100%);
  animation: basket-progress 1.05s ease-in-out infinite;
}
@keyframes basket-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes basket-progress {
  to {
    transform: translateX(340%);
  }
}

.toast-container {
  position: fixed;
  z-index: var(--z-toast);
  top: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  pointer-events: none;
}
.basket-toast {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  max-width: 380px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(197, 168, 76, 0.55);
  background: var(--blue-ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
  pointer-events: auto;
  animation: toast-in 0.3s var(--ease);
}
.basket-toast.is-hiding {
  animation: toast-out 0.3s var(--ease) forwards;
}
.basket-toast-message {
  flex: 1;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.6;
}
.basket-toast-close {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.basket-toast-close:hover {
  color: var(--gold-bright);
}
@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}
@media (max-width: 600px) {
  .toast-container {
    top: 1rem;
    right: 1rem;
    left: 1rem;
    align-items: stretch;
  }
  .basket-toast {
    max-width: none;
  }
}
@media (max-width: 900px) {
  .booking-heading {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .booking-intro {
    max-width: 680px;
  }
  .booking-notice-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
    padding: 1.75rem;
  }
  .booking-notice-left {
    align-items: flex-start;
  }
  .booking-notice-actions {
    width: 100%;
    flex-wrap: wrap;
  }
  .button-notice-outline,
  .button-notice-gold {
    flex: 1;
    min-width: 180px;
    justify-content: center;
    padding: 0.85rem 1.15rem;
  }
  .booking-options {
    grid-template-columns: 1fr;
  }
  .booking-option {
    min-height: 350px;
  }
}
@media (max-width: 600px) {
  .booking-intro {
    padding-left: 1.1rem;
  }
  .booking-notice-card {
    padding: 1.5rem 1.25rem;
    gap: 1.4rem;
  }
  .booking-notice-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .booking-notice-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .button-notice-outline,
  .button-notice-gold {
    width: 100%;
    min-height: 48px;
    font-size: var(--text-2xs);
    letter-spacing: 0.14em;
  }
  .booking-option {
    min-height: 370px;
  }
  .booking-option .button {
    font-size: var(--text-3xs);
    letter-spacing: 0.11em;
  }
}
/* Section 6 — custom event map & venue */
.location {
  position: relative;
  background:
    radial-gradient(
      ellipse at 85% 15%,
      rgba(8, 74, 98, 0.55) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 12% 85%,
      rgba(197, 168, 76, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--blue-ink) 0%, #031c28 50%, #02121b 100%);
  color: var(--cream);
  overflow: hidden;
  border-top: 1px solid rgba(197, 168, 76, 0.35);
  box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.45);
}
.location::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(197, 168, 76, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197, 168, 76, 0.05) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  mask-image: radial-gradient(
    ellipse at 50% 45%,
    rgba(0, 0, 0, 0.9) 0%,
    transparent 85%
  );
  -webkit-mask-image: radial-gradient(
    ellipse at 50% 45%,
    rgba(0, 0, 0, 0.9) 0%,
    transparent 85%
  );
}
.location-ambient {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 480px;
  height: 480px;
  border: 1px dashed rgba(197, 168, 76, 0.16);
  border-radius: 50%;
  pointer-events: none;
}
.location-ambient::after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(197, 168, 76, 0.08);
  border-radius: 50%;
}
.section-index-venue {
  color: var(--gold-bright);
  font-size: 0.61rem;
  letter-spacing: 0.22em;
}
.section-index-venue span {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  background: rgba(197, 168, 76, 0.12);
}
.section-index-venue::after {
  background: linear-gradient(
    90deg,
    rgba(197, 168, 76, 0.55) 0%,
    rgba(197, 168, 76, 0.12) 100%
  );
}
.eyebrow-venue {
  color: var(--gold-bright);
  letter-spacing: 0.2em;
}
.location-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 2;
}
.location-heading > div,
.venue-layout > * {
  min-width: 0;
}
.location-heading h2 {
  margin: 0;
  font: 4.5rem/1.08 var(--serif);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}
.location-heading h2 em {
  color: var(--gold-bright);
}
.location-meta-tag {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location-intro {
  max-width: 34ch;
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}
.venue-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  padding: 0.5rem 1rem;
  background: rgba(197, 168, 76, 0.08);
  border: 1px solid rgba(197, 168, 76, 0.4);
  color: var(--gold-bright);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.venue-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 8px var(--gold-bright);
}
.venue-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(197, 168, 76, 0.3);
}
.venue-details {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: clamp(1.6rem, 2.8vw, 2.5rem);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.045) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  border: 1px solid rgba(197, 168, 76, 0.32);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
.venue-details::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 28px;
  height: 28px;
  border-top: 2px solid var(--gold-bright);
  border-left: 2px solid var(--gold-bright);
  pointer-events: none;
}
.location-address {
  margin: 0 0 1.75rem;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
}
.location-address span {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.location-address strong {
  display: block;
  margin-bottom: 0.5rem;
  font: 2rem/1.2 var(--serif);
  font-weight: 400;
}
.venue-arrival,
.map-travel {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(197, 168, 76, 0.25);
}
.venue-details h3 {
  margin: 0 0 0.75rem;
  color: var(--gold-bright);
  font: 0.92rem/1.5 var(--sans);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.venue-arrival p {
  max-width: 32ch;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
}
.map-travel ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}
.map-directions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 52px;
  margin-top: 2rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--gold-bright);
  background: var(--gold-bright);
  color: var(--blue-ink);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background 0.25s,
    border-color 0.25s,
    color 0.25s;
}
.map-directions i ,.map-directions em {
  font: normal 1.3rem var(--sans);
  transition: transform 0.25s;
}
.map-directions:hover {
  background: #d4b85d;
  border-color: #d4b85d;
  color: var(--blue-ink);
}
.map-directions:hover i ,.map-directions:hover em {
  transform: translate(3px, -3px);
}
.map-shell {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid rgba(197, 168, 76, 0.35);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
}
.map-viewport {
  position: relative;
  flex: 1;
  min-height: 460px;
  padding: 1rem 1rem 18rem;
}
.event-map {
  position: absolute;
  inset: 0;
}
.map-caption {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 1rem 1.25rem;
  border-top: 2px solid var(--gold-bright);
  font-size: 0.7rem;
  line-height: 1.5;
  letter-spacing: 0;
}
.map-coordinates {
  color: var(--gold);
}
.map-fallback {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
}
.map-fallback[hidden] {
  display: none;
}
.map-fallback strong {
  font: 2rem/1.2 var(--serif);
}
.map-fallback span,
.map-noscript {
  font-size: 0.9rem;
  line-height: 1.6;
}
.map-noscript a {
  color: var(--gold-bright);
  text-decoration: underline;
}
.map-info {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.6rem;
  width: min(15rem, 100%);
  margin-left: auto;
  padding: 1.25rem;
  border-top: 2px solid var(--gold-bright);
  background: var(--blue-deep);
  color: var(--cream);
  box-shadow: 0 6px 20px rgba(5, 47, 63, 0.18);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.map-info strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}
.map-info span {
  color: var(--gold-bright);
  font-size: 0.8rem;
}
.map-info small {
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  .location-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .location-heading h2 {
    font-size: 3.5rem;
  }
  .location-intro {
    max-width: 48ch;
  }
  .venue-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .venue-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    align-items: start;
  }
  .location-address {
    margin: 0;
  }
  .venue-arrival {
    padding: 0;
    border: 0;
  }
  .map-travel {
    padding: 1.25rem 0 0;
  }
  .map-directions {
    margin-top: 0;
    align-self: end;
  }
  .map-viewport {
    min-height: 400px;
  }
}
@media (max-width: 600px) {
  .location-heading h2 {
    font-size: 2.75rem;
  }
  .location-heading {
    margin-bottom: 2rem;
  }
  .venue-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 1.5rem 1.25rem;
  }
  .location-address {
    margin-bottom: 1.5rem;
  }
  .venue-arrival,
  .map-travel {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(197, 168, 76, 0.3);
  }
  .map-directions {
    align-self: stretch;
    margin-top: 0.5rem;
  }
  .map-viewport {
    min-height: 340px;
  }
  .map-caption {
    padding: 1rem;
  }
}
/* Section 7 — event support */
.help {
  overflow: hidden;
  background: var(--paper);
}
.help::before {
  content: "?";
  position: absolute;
  right: -2vw;
  bottom: -15vw;
  color: rgba(97, 76, 8, 0.045);
  font: 38vw/0.75 var(--serif);
  pointer-events: none;
}
.help-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.7fr);
  gap: clamp(3rem, 10vw, 12rem);
  align-items: end;
}
.help h2 {
  margin: 0;
  font: clamp(4rem, 8vw, 9rem)/0.78 var(--serif);
  letter-spacing: -0.045em;
}
.help h2 em {
  margin-left: clamp(1rem, 6vw, 6rem);
  color: var(--gold);
}
.help-contact {
  padding: 1.6rem 0 0 1.75rem;
  border-left: 1px solid rgba(97, 76, 8, 0.45);
}
.help-contact > p {
  max-width: 430px;
  margin: 0 0 2rem;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.75;
}
.help-email {
  width: min(100%, 440px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.65rem 0.65rem 0.65rem 1.35rem;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.25s;
}
.help-email span {
  display: grid;
  gap: 0.3rem;
  font: 1.35rem var(--serif);
}
.help-email .help-email-label {
  display: block;
  color: var(--gold-bright);
  font: var(--text-3xs) var(--sans);
  letter-spacing: 0.2em;
}
.help-email i ,.help-email em {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold-bright);
  color: var(--blue-ink);
  transition: transform 0.35s;
}
.help-email svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
}
.help-email:hover {
  background: var(--blue-deep);
}
.help-email:hover i ,.help-email:hover em {
  transform: rotate(-8deg) scale(1.06);
}
.help-address {
  display: block;
  margin-top: 0.9rem;
  color: var(--gold);
  font-size: var(--text-3xs);
  letter-spacing: 0.12em;
}
@media (max-width: 900px) {
  .help-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .help-contact {
    max-width: 560px;
  }
}
@media (max-width: 600px) {
  .help-contact {
    padding-left: 1.1rem;
  }
  .help-email {
    width: 100%;
  }
  .help-email i,.help-email em {
    width: 46px;
    height: 46px;
  }
}
/* Section 2 redesign — integrity under pressure */
.about {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(6rem, 11vw, 10rem);
  background: var(--cream);
}
.about-orbit {
  position: absolute;
  right: -16vw;
  top: 4%;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(97, 76, 8, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(97, 76, 8, 0.025),
    0 0 0 140px rgba(97, 76, 8, 0.018);
  pointer-events: none;
}
.about-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.45fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}
.about-heading h2 {
  margin: 0;
  max-width: 980px;
  font: clamp(3.3rem, 6.8vw, 7.6rem)/0.88 var(--serif);
  letter-spacing: -0.045em;
}
.about-heading h2 em {
  color: var(--gold);
}
.about-manifesto {
  max-width: 330px;
  margin: 0 0 0.5rem;
  padding: 1.3rem 0 0 1.5rem;
  border-left: 1px solid var(--gold);
  font: clamp(1.05rem, 1.4vw, 1.3rem)/1.55 var(--serif);
}
.about-manifesto span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font: var(--text-3xs) var(--sans);
  font-weight: 600;
  letter-spacing: 0.22em;
}
.about-composition {
  position: relative;
  min-height: clamp(650px, 65vw, 850px);
}
.about-composition::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 57.5%;
  top: -8%;
  bottom: -4%;
  width: 1px;
  background: linear-gradient(
    transparent,
    var(--gold-bright) 20%,
    var(--gold) 80%,
    transparent
  );
  transform: rotate(8deg);
  transform-origin: top;
  pointer-events: none;
}
.about-media {
  position: absolute;
  inset: 0 31% 9% 0;
  margin: 0;
  overflow: hidden;
  background: var(--blue-deep);
  clip-path: polygon(0 0, 94% 0, 100% 100%, 6% 100%);
}
.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(25deg, rgba(3, 31, 42, 0.82), transparent 52%),
    linear-gradient(90deg, rgba(8, 74, 98, 0.28), transparent);
  pointer-events: none;
}
.about-media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--parallax, -5%)) scale(1.03);
  filter: saturate(0.82) contrast(1.04);
}
.about-media figcaption {
  position: absolute;
  z-index: 2;
  left: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 4vw, 3.5rem);
  max-width: 270px;
  padding-left: 1.15rem;
  border-left: 1px solid var(--gold-bright);
  color: #fff;
  font: 1rem/1.5 var(--serif);
}
.about-media figcaption span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--gold-bright);
  font: var(--text-3xs) var(--sans);
  letter-spacing: 0.2em;
}
.about-media-mark {
  position: absolute;
  z-index: 2;
  top: 1.4rem;
  /* kept inside the clipped top-right corner of .about-media */
  right: 9%;
  padding: 0.5rem 0.7rem;
  /* the photo behind this is uncontrolled, so the label carries its own scrim */
  background: rgb(var(--blue-ink-rgb) / 0.62);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-size: var(--text-3xs);
  line-height: 1.55;
  letter-spacing: 0.2em;
  text-align: right;
}
.about-story {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: 0;
  width: min(47%, 570px);
  padding: clamp(2.2rem, 4vw, 4.5rem);
  background: var(--blue-deep);
  color: #fff;
  box-shadow: 0 30px 80px rgba(3, 31, 42, 0.24);
}
.about-story::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 1.1rem;
  width: 38px;
  height: 38px;
  border-top: 1px solid var(--gold-bright);
  border-right: 1px solid var(--gold-bright);
}
.about-story-index {
  color: var(--gold-bright);
  font-size: var(--text-3xs);
  letter-spacing: 0.2em;
}
.about-story p {
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.9rem, 1.1vw, 1.03rem);
  line-height: 1.8;
}
.about-story .about-story-lead {
  color: #fff;
  font: clamp(1.3rem, 1.8vw, 1.75rem)/1.5 var(--serif);
}
.about-story-rule {
  position: relative;
  height: 1px;
  margin: 2rem 0 0.3rem;
  background: rgba(255, 255, 255, 0.16);
}
.about-story-rule i,.about-story-rule em {
  position: absolute;
  left: 0;
  top: -2px;
  width: 46px;
  height: 5px;
  background: var(--gold-bright);
}
.about-story blockquote {
  margin: clamp(2rem, 4vw, 3.5rem) 0 0;
  color: var(--gold-bright);
  font: italic clamp(1.4rem, 2vw, 2rem)/1.15 var(--serif);
}
.about-impact {
  position: relative;
  z-index: 6;
  width: calc(100% - clamp(1rem, 5vw, 5rem));
  margin: clamp(-5rem, -6vw, -3rem) 0 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1fr auto 1.25fr;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.4rem) clamp(1.5rem, 4vw, 4rem);
  border-top: 3px solid var(--gold-bright);
  background: var(--paper);
  box-shadow: 0 20px 55px rgba(20, 44, 52, 0.14);
}
.impact-label span {
  color: var(--gold);
  font-size: var(--text-3xs);
  font-weight: 600;
  letter-spacing: 0.22em;
}
.impact-label p,
.impact-stat p {
  margin: 0.6rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
}
.impact-stat {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}
.impact-stat strong {
  color: var(--blue);
  font: clamp(3.5rem, 6vw, 6rem)/0.8 var(--serif);
  font-weight: 400;
  white-space: nowrap;
}
.impact-stat sup {
  color: var(--gold);
  font-size: 0.4em;
}
.impact-online strong {
  color: var(--gold);
  font-size: clamp(2.1rem, 3.8vw, 4rem);
  font-style: italic;
}
.impact-divider {
  width: 1px;
  height: 70px;
  background: rgba(97, 76, 8, 0.25);
}
@media (max-width: 1000px) {
  .about-composition {
    min-height: 900px;
  }
  .about-media {
    inset: 0 8% 29% 0;
  }
  /* Caption moves above the overlapping story panel */
  .about-media figcaption {
    top: clamp(1.5rem, 4vw, 3.5rem);
    bottom: auto;
  }
  .about-story {
    top: auto;
    bottom: 4%;
    width: min(78%, 620px);
  }
  .about-composition::before {
    left: 77%;
  }
  .about-impact {
    width: 100%;
    margin-top: -1rem;
    grid-template-columns: 1fr 1fr;
  }
  .impact-divider {
    display: none;
  }
}
@media (max-width: 700px) {
  .about-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-composition {
    min-height: auto;
    display: grid;
    gap: 0;
  }
  .about-media,
  .about-story {
    position: relative;
    inset: auto;
    width: 100%;
  }
  .about-media {
    height: 480px;
    clip-path: polygon(0 0, 100% 5%, 94% 100%, 0 95%);
  }
  .about-media figcaption {
    top: auto;
    bottom: clamp(1.5rem, 4vw, 3.5rem);
  }
  .about-media-mark {
    top: 3rem;
    bottom: auto;
    right: 9%;
  }
  .about-story {
    margin-top: -1.5rem;
    padding: 2rem 1.5rem;
  }
  .about-composition::before {
    display: none;
  }
  .about-impact {
    margin-top: 2rem;
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }
  .impact-label {
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(97, 76, 8, 0.18);
  }
  .impact-stat {
    justify-content: space-between;
  }
  .impact-online strong {
    font-size: 2.5rem;
  }
}

/* ==========================================================================
   Reduced motion — must stay last so it can override every component above.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  /* Looping decorative animations must be cancelled outright, not sped up —
     a 0.01ms duration snaps them to their end frame. */
  .scroll-cue span,
  .benefit-hero::after {
    animation: none !important;
  }
  .hero-video {
    display: none;
  }
  .hero {
    background:
      linear-gradient(
        90deg,
        rgb(var(--blue-ink-rgb) / 0.92),
        rgb(var(--blue-ink-rgb) / 0.45)
      ),
      url("DSC09118 copy.jpg") center/cover;
  }
  .reveal,
  .hero-reveal {
    opacity: 1;
    transform: none;
  }
  .benefit,
  .benefit.visible {
    clip-path: none;
  }
  .benefit-media,
  .benefit-media img,
  .benefit.visible .benefit-media img,
  .benefit:hover .benefit-media img,
  .benefit-content,
  .benefit:hover .benefit-content,
  .benefit-digit::before,
  .benefit-digit::after,
  .benefit-hero::after {
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }
  .benefit-digit::after {
    opacity: 0;
  }
  .benefit-spot {
    display: none;
  }
  .benefit-line {
    background-size: 0 1px;
  }
  .benefit:hover .benefit-number::after {
    width: 2rem;
  }
  .highlight-rail {
    scroll-behavior: auto !important;
  }
  .highlight-slide,
  .highlight-slide:hover .highlight-photo {
    filter: none !important;
    transform: none !important;
  }
  .highlight-slide figcaption {
    transform: none !important;
  }
}
