:root {
  --ink: #0b1110;
  --ink-2: #17201d;
  --forest: #0f3328;
  --laurel: #2f6b54;
  --ivory: #f7f3ea;
  --paper: #fffaf0;
  --stone: #ddd7c8;
  --champagne: #c9ae73;
  --champagne-2: #e8d49a;
  --burgundy: #6d2730;
  --oxblood: #3f1117;
  --steel: #6f7f7c;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(8, 14, 13, 0.28);
  --line: rgba(201, 174, 115, 0.28);
  --font-sans: "Inter", Arial, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.home-page {
  background: #0a0f0d;
}

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

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

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 86px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 0 34px;
  color: var(--white);
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease, padding 220ms ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.site-header.is-scrolled {
  height: 74px;
  background: rgba(9, 13, 12, 0.88);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(201, 174, 115, 0.22);
}

.brand img,
.footer-brand img {
  width: 158px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.25));
}

.brand-wordmark {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 7px;
  width: fit-content;
  color: var(--white);
  line-height: 1;
}

.brand-main {
  position: relative;
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.brand-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), rgba(201, 174, 115, 0.1));
}

.brand-sub {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-brand.brand-wordmark {
  color: var(--white);
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.105);
  box-shadow: inset 0 0 0 1px rgba(201, 174, 115, 0.14);
  outline: none;
}

.site-nav a[href*="nation-cup-2026-27"] {
  position: relative;
  gap: 8px;
  padding: 8px 15px 8px 12px;
  overflow: hidden;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(201, 174, 115, 0.16), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(201, 174, 115, 0.34),
    0 14px 30px rgba(0, 0, 0, 0.12);
}

.site-nav a[href*="nation-cup-2026-27"]::before {
  content: "";
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: radial-gradient(circle at 34% 28%, #fff8d8 0 18%, var(--champagne-2) 28%, var(--champagne) 68%, rgba(201, 174, 115, 0.28) 100%);
  box-shadow: 0 0 0 4px rgba(201, 174, 115, 0.1), 0 0 18px rgba(201, 174, 115, 0.26);
}

.site-nav a[href*="nation-cup-2026-27"]::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 5px;
  background: linear-gradient(110deg, transparent 0 28%, rgba(255, 255, 255, 0.13) 44%, transparent 62% 100%);
  opacity: 0;
  transform: translateX(-30%);
  transition: opacity 180ms ease, transform 220ms ease;
}

.site-nav a[href*="nation-cup-2026-27"]:hover,
.site-nav a[href*="nation-cup-2026-27"]:focus-visible {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 174, 115, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 0 1px rgba(201, 174, 115, 0.52),
    0 16px 34px rgba(0, 0, 0, 0.18),
    0 0 26px rgba(201, 174, 115, 0.08);
}

.site-nav a[href*="nation-cup-2026-27"]:hover::after,
.site-nav a[href*="nation-cup-2026-27"]:focus-visible::after {
  opacity: 1;
  transform: translateX(18%);
}

.site-nav a[href*="nation-cup-2026-27"].is-active {
  color: #151813;
  background: linear-gradient(135deg, var(--champagne-2), var(--champagne));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.42),
    0 16px 32px rgba(201, 174, 115, 0.18),
    0 0 0 1px rgba(201, 174, 115, 0.16);
}

.site-nav a[href*="nation-cup-2026-27"].is-active::before {
  background: radial-gradient(circle at 35% 30%, #ffffff 0 15%, #173427 24%, #0d1f18 72%);
  box-shadow: 0 0 0 4px rgba(21, 24, 19, 0.08);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-height: 38px;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid rgba(201, 174, 115, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  width: 34px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.language-switcher button:hover,
.language-switcher button:focus-visible,
.language-switcher button.is-active {
  color: #151813;
  background: linear-gradient(135deg, var(--champagne-2), var(--champagne));
  box-shadow: 0 8px 20px rgba(201, 174, 115, 0.18);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.12;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 28vh;
  pointer-events: none;
  background: linear-gradient(0deg, #0a0f0d 0%, rgba(10, 15, 13, 0) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.06) translateY(var(--hero-shift, 0px));
  animation: heroDrift 18s ease-out both;
  filter: saturate(0.92) contrast(1.06);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 9, 8, 0.94) 0%, rgba(5, 9, 8, 0.76) 38%, rgba(5, 9, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 9, 8, 0.94) 0%, rgba(5, 9, 8, 0.18) 48%, rgba(5, 9, 8, 0.74) 100%),
    linear-gradient(130deg, rgba(63, 17, 23, 0.52), transparent 44%);
}

.hero-frame {
  position: absolute;
  inset: 104px 34px 34px;
  z-index: 2;
  border: 1px solid rgba(201, 174, 115, 0.28);
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 1px;
  background: var(--champagne-2);
  opacity: 0.72;
}

.hero-frame::before {
  left: -1px;
  top: -1px;
}

.hero-frame::after {
  right: -1px;
  bottom: -1px;
}

.hero-side-label {
  position: absolute;
  right: 16px;
  top: 50%;
  z-index: 3;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 166px 0 46px;
}

.hero-eyebrow-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  align-items: center;
  margin-bottom: 18px;
}

.hero-eyebrow-row .kicker {
  margin: 0;
}

.hero-eyebrow-row span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 9px;
  border: 1px solid rgba(201, 174, 115, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.kicker,
.section-label {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 92px;
  line-height: 0.88;
  font-weight: 700;
  overflow-wrap: normal;
  text-wrap: balance;
}

.hero-lede {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 14px 20px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--champagne-2), var(--champagne));
  color: #11120f;
  box-shadow: 0 20px 38px rgba(201, 174, 115, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #dec384;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.hero-intelligence {
  width: min(100%, 820px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 34px;
  border: 1px solid rgba(201, 174, 115, 0.2);
  background: rgba(6, 10, 9, 0.5);
  backdrop-filter: blur(20px);
}

.hero-intelligence div {
  min-height: 92px;
  padding: 18px 20px;
  border-right: 1px solid rgba(201, 174, 115, 0.18);
}

.hero-intelligence div:last-child {
  border-right: 0;
}

.hero-intelligence span {
  display: block;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-intelligence strong {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  line-height: 1.35;
}

.hero-proof {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div {
  min-height: 116px;
  padding: 22px 22px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1;
  color: var(--champagne);
}

.hero-proof span {
  display: block;
  max-width: 190px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.hero-scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 44px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-scroll-cue span {
  position: relative;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-scroll-cue span::after {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--champagne);
  animation: scrollCue 1800ms ease-in-out infinite;
}

.section {
  padding: 112px 0;
}

.intro-band {
  background:
    linear-gradient(135deg, #f8f3e9 0%, #fffaf0 52%, #ece7d9 100%);
  border-bottom: 1px solid rgba(15, 51, 40, 0.12);
}

.intro-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: start;
}

.manifesto-band {
  position: relative;
  overflow: hidden;
}

.manifesto-band::before {
  content: "EWNS";
  position: absolute;
  right: -18px;
  bottom: -58px;
  color: rgba(15, 51, 40, 0.045);
  font-family: var(--font-serif);
  font-size: 220px;
  line-height: 0.8;
  pointer-events: none;
}

.manifesto-grid {
  position: relative;
  z-index: 1;
}

.manifesto-marks {
  grid-column: 2 / 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 12px;
  background: rgba(15, 51, 40, 0.16);
  border: 1px solid rgba(15, 51, 40, 0.16);
}

.manifesto-marks span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  background: rgba(255, 250, 240, 0.82);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.intro-grid h2,
.section-heading h2,
.copy-panel h2,
.atmosphere-copy h2,
.principal-copy h2,
.events-copy h2,
.network-copy h2,
.contact-copy h2,
.feature-strip-content h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
}

.intro-grid p:last-child,
.section-heading p,
.copy-panel p,
.atmosphere-copy p,
.principal-copy p,
.events-copy p,
.network-copy p,
.contact-copy p {
  margin: 0;
  color: #4b5550;
  font-size: 17px;
}

.atmosphere-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(201, 174, 115, 0.18), transparent 32%),
    linear-gradient(180deg, #080d0c 0%, #0d1512 54%, #0a0f0d 100%);
  color: var(--white);
}

.atmosphere-section::before {
  content: "ACCESS";
  position: absolute;
  left: -28px;
  top: 24px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-serif);
  font-size: 170px;
  line-height: 0.8;
  pointer-events: none;
}

.atmosphere-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: end;
}

.atmosphere-copy {
  padding-bottom: 18px;
}

.atmosphere-copy h2 {
  max-width: 560px;
}

.atmosphere-copy p {
  max-width: 520px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.atmosphere-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-auto-rows: 260px;
  gap: 14px;
}

.atmosphere-card {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 174, 115, 0.24);
  background: #060908;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.atmosphere-card-large {
  grid-row: span 2;
}

.atmosphere-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.04);
  transition: transform 900ms ease, filter 900ms ease;
}

.atmosphere-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.02) contrast(1.08);
}

.atmosphere-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 9, 8, 0.74), transparent 46%),
    linear-gradient(90deg, rgba(5, 9, 8, 0.22), transparent 56%);
  pointer-events: none;
}

.atmosphere-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--champagne-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 72px;
  align-items: center;
}

.media-panel {
  position: relative;
}

.media-panel::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 1px solid var(--champagne);
  opacity: 0.7;
}

.media-panel img {
  position: relative;
  width: 100%;
  aspect-ratio: 7 / 6;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.copy-panel blockquote {
  margin: 34px 0 0;
  padding: 28px 0 28px 28px;
  border-left: 3px solid var(--champagne);
  color: var(--forest);
  font-family: var(--font-serif);
  font-size: 33px;
  line-height: 1.05;
}

.signature-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.signature-line span {
  border: 1px solid var(--stone);
  border-radius: 6px;
  padding: 9px 12px;
  color: #4a514c;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.55);
}

.principal-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 14%, rgba(201, 174, 115, 0.18), transparent 32%),
    radial-gradient(circle at 84% 52%, rgba(88, 117, 86, 0.2), transparent 36%),
    linear-gradient(135deg, #070c0b 0%, #101813 48%, #050807 100%);
  color: var(--white);
}

.principal-section::before {
  content: "EWNS PARTNERS";
  position: absolute;
  right: -8vw;
  top: 58px;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--font-serif);
  font-size: clamp(78px, 12vw, 210px);
  line-height: 0.8;
  white-space: nowrap;
  pointer-events: none;
}

.principal-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.leadership-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 72px;
  align-items: end;
  margin-bottom: 14px;
}

.principal-copy h2 {
  max-width: 860px;
}

.principal-copy p {
  max-width: 720px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.leadership-note {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(201, 174, 115, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(5, 8, 7, 0.64);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.22);
}

.leadership-note::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--champagne), transparent);
}

.leadership-note span,
.leadership-video-stage figcaption span,
.leadership-photo-card figcaption span {
  display: block;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.leadership-note strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.02;
}

.leadership-note p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.principal-ledger {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
  border: 1px solid rgba(201, 174, 115, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.principal-ledger div {
  min-height: 104px;
  padding: 18px;
  border-right: 1px solid rgba(201, 174, 115, 0.18);
}

.principal-ledger div:last-child {
  border-right: 0;
}

.principal-ledger span {
  display: block;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.principal-ledger strong {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.35;
}

.leadership-video-stage {
  position: relative;
  height: clamp(430px, 46vw, 640px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 174, 115, 0.34);
  background: #030605;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.42);
  isolation: isolate;
}

.leadership-video-stage video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 45%;
  filter: saturate(1.03) contrast(1.08);
}

.leadership-video-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(3, 6, 5, 0.88) 0%, rgba(3, 6, 5, 0.34) 32%, transparent 62%),
    linear-gradient(90deg, rgba(3, 6, 5, 0.34), transparent 58%);
  pointer-events: none;
}

.leadership-video-stage figcaption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 2;
}

.leadership-video-stage figcaption strong {
  display: block;
  max-width: 620px;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 0.98;
}

.leadership-photo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: minmax(320px, 22vw);
  gap: 14px;
  margin-top: 0;
}

.leadership-photo-card {
  position: relative;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 174, 115, 0.26);
  background: #050807;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

.leadership-photo-card.wide {
  grid-column: span 2;
}

.leadership-photo-card.tall {
  grid-row: span 2;
}

.leadership-photo-card.feature-tall {
  grid-column: span 2;
  grid-row: span 2;
}

.leadership-photo-card.closing-panel {
  grid-column: span 2;
}

.leadership-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.03) contrast(1.07) brightness(1.08);
  transition: transform 900ms ease, filter 900ms ease;
}

.leadership-photo-card:nth-child(1) img {
  object-position: center 48%;
}

.leadership-photo-card:nth-child(2) img {
  object-position: center 18%;
}

.leadership-photo-card:nth-child(3) img {
  object-position: 32% center;
}

.leadership-photo-card:nth-child(4) img {
  object-position: center 34%;
}

.leadership-photo-card:nth-child(5) img {
  object-position: center 44%;
}

.leadership-photo-card:nth-child(5) {
  grid-column: 1 / -1;
}

.leadership-photo-card:nth-child(6) img {
  object-position: center 42%;
}

.leadership-photo-card:nth-child(7) img {
  object-position: center 48%;
}

.leadership-photo-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.1) contrast(1.1) brightness(1.12);
}

.leadership-photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 8, 7, 0.78) 0%, rgba(5, 8, 7, 0.18) 34%, rgba(5, 8, 7, 0.02) 64%),
    linear-gradient(90deg, rgba(5, 8, 7, 0.12), transparent 58%);
  pointer-events: none;
}

.leadership-photo-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.leadership-photo-card figcaption strong {
  display: block;
  max-width: 360px;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  line-height: 1.28;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.principal-visuals {
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 0.36fr);
  gap: 14px;
  align-items: end;
}

.principal-portrait,
.principal-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 174, 115, 0.28);
  background: #050807;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.principal-portrait {
  min-height: 660px;
}

.principal-card {
  min-height: 320px;
  margin-bottom: 46px;
}

.principal-portrait img,
.principal-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 800ms ease, filter 800ms ease;
}

.principal-portrait img {
  object-position: center top;
}

.principal-card img {
  object-position: center;
}

.principal-portrait:hover img,
.principal-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.02) contrast(1.08);
}

.principal-portrait::after,
.principal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 9, 8, 0.78), transparent 42%);
  pointer-events: none;
}

.principal-portrait figcaption,
.principal-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--champagne-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.leadership-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 14px;
}

.leadership-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(201, 174, 115, 0.28);
  background: #050807;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.leadership-card-wide {
  grid-column: span 2;
  min-height: 392px;
}

.leadership-card img,
.leadership-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 800ms ease, filter 800ms ease;
}

.leadership-card-emotional img {
  object-position: center 18%;
}

.leadership-card video {
  background: #050807;
}

.leadership-card:hover img,
.leadership-card:hover video {
  transform: scale(1.025);
  filter: saturate(1.02) contrast(1.08);
}

.leadership-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 9, 8, 0.78), transparent 46%),
    linear-gradient(90deg, rgba(5, 9, 8, 0.2), transparent 56%);
  pointer-events: none;
}

.leadership-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: var(--champagne-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.platform,
.events,
.insights {
  background:
    linear-gradient(180deg, #0c1210 0%, #101816 58%, #0b1110 100%);
  color: var(--white);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

.platform .section-heading p,
.events-copy p,
.insights .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.pillar-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pillar,
.insight {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(201, 174, 115, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.pillar:hover,
.pillar:focus-within {
  transform: translateY(-3px);
  border-color: rgba(232, 212, 154, 0.5);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035));
}

.pillar span,
.insight span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--champagne);
  font-weight: 800;
}

.pillar h3,
.insight h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.1;
}

.pillar p,
.insight p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.feature-strip {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.feature-strip img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08);
}

.feature-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 10, 9, 0.86), rgba(6, 10, 9, 0.18)),
    linear-gradient(0deg, rgba(6, 10, 9, 0.92), rgba(6, 10, 9, 0.08)),
    linear-gradient(135deg, rgba(63, 17, 23, 0.36), transparent 42%);
}

.feature-strip-content {
  position: relative;
  z-index: 1;
  padding-bottom: 70px;
}

.feature-strip-content h2 {
  max-width: 760px;
}

.feature-strip-content .button {
  margin-top: 30px;
}

.events-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 80px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 28px;
  color: var(--champagne);
  font-weight: 800;
}

.text-link::after {
  content: ">";
  margin-left: 10px;
}

.timeline {
  border-top: 1px solid rgba(201, 174, 115, 0.26);
}

.timeline-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(201, 174, 115, 0.18);
  transition: padding-left 180ms ease, background 180ms ease;
}

.timeline-item:hover {
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.035);
}

.timeline-item span {
  color: var(--champagne);
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
}

.timeline-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.gallery-section {
  background:
    linear-gradient(180deg, #fffaf0 0%, #f1eadb 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 300px;
  gap: 14px;
}

.image-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: var(--ink);
  box-shadow: 0 24px 64px rgba(8, 14, 13, 0.16);
}

.image-card.wide {
  grid-column: span 2;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.image-card:hover img {
  transform: scale(1.035);
}

.image-card figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px 12px;
  border-radius: 0;
  background: rgba(11, 17, 16, 0.82);
  backdrop-filter: blur(14px);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.network {
  background:
    linear-gradient(135deg, #eef1e8 0%, #fffaf0 55%, #e7e2d4 100%);
}

.network-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 72px;
  align-items: start;
}

.network-board {
  border-top: 1px solid rgba(15, 51, 40, 0.2);
}

.network-board div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(15, 51, 40, 0.2);
  transition: gap 180ms ease, background 180ms ease;
}

.network-board div:hover {
  gap: 36px;
  background: rgba(255, 255, 255, 0.4);
}

.network-board strong {
  color: var(--forest);
  font-size: 18px;
}

.network-board span {
  color: #4b5550;
}

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

.insight {
  min-height: 240px;
}

.contact-section {
  padding: 112px 0;
  background:
    linear-gradient(135deg, #0b1110 0%, #0f3328 55%, #3f1117 100%);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 74px;
  align-items: start;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-direct {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.contact-direct a {
  width: fit-content;
  color: var(--champagne);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 3px rgba(201, 174, 115, 0.18);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .consent-check {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--champagne);
}

.consent-check span {
  min-width: 0;
}

.consent-check a {
  color: var(--champagne-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.field-trap {
  position: fixed;
  left: 0;
  top: -120px;
  width: 1px !important;
  height: 1px !important;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--champagne);
  font-weight: 700;
}

.site-footer {
  padding: 42px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  border-top: 1px solid rgba(201, 174, 115, 0.18);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--champagne);
  outline: none;
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 2.2vw, 34px);
  bottom: clamp(18px, 2.2vw, 34px);
  z-index: 70;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 174, 115, 0.48);
  border-radius: 50%;
  color: var(--champagne-2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(6, 11, 10, 0.82);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 174, 115, 0.18);
  border-radius: inherit;
  pointer-events: none;
}

.back-to-top span {
  position: relative;
  z-index: 1;
  font-size: 24px;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(234, 213, 163, 0.86);
  background:
    linear-gradient(145deg, rgba(201, 174, 115, 0.28), rgba(255, 255, 255, 0.055)),
    rgba(6, 11, 10, 0.92);
  outline: none;
  transform: translateY(-3px) scale(1);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.header-solid {
  background: rgba(11, 17, 16, 0.94);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(201, 174, 115, 0.22);
}

.subpage {
  background: #f4f0e6;
}

.page-main {
  background: #f4f0e6;
}

.page-hero {
  position: relative;
  padding: 156px 0 54px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(11, 17, 16, 0.98) 0%, rgba(15, 51, 40, 0.96) 54%, rgba(109, 39, 48, 0.9) 100%);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 174, 115, 0.7), transparent);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.78fr);
  gap: 68px;
  align-items: end;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--champagne);
}

.breadcrumb span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(255, 255, 255, 0.36);
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.94;
  font-weight: 700;
}

.page-lede {
  max-width: 760px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 20px;
}

.page-visual {
  position: relative;
  align-self: stretch;
  min-height: 430px;
}

.page-visual::before {
  content: "";
  position: absolute;
  inset: 24px 24px -24px -24px;
  border: 1px solid rgba(201, 174, 115, 0.52);
}

.page-visual img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
}

.page-visual img[src$="nation-cup-hero.webp"] {
  object-position: right center;
}

.metric-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.metric-row div {
  min-height: 108px;
  padding: 24px 26px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row strong {
  display: block;
  color: var(--champagne);
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1;
}

.metric-row span {
  display: block;
  max-width: 210px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.content-section {
  padding: 96px 0;
}

.muted-section {
  background: #eceee7;
  border-top: 1px solid rgba(15, 51, 40, 0.1);
  border-bottom: 1px solid rgba(15, 51, 40, 0.1);
}

.article-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 78px;
  align-items: start;
}

.article-rail {
  position: sticky;
  top: 112px;
  padding-top: 10px;
  border-top: 2px solid var(--champagne);
}

.article-rail span {
  display: block;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.article-rail p {
  margin: 14px 0 0;
  color: #52605a;
  font-size: 15px;
}

.prose {
  max-width: 780px;
}

.prose p {
  margin: 0;
  color: #303934;
  font-family: var(--font-serif);
  font-size: 32px;
  line-height: 1.12;
}

.prose p + p {
  margin-top: 24px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.focus-card,
.related-card {
  border: 1px solid rgba(15, 51, 40, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.focus-card {
  min-height: 250px;
  padding: 28px;
}

.focus-card h3 {
  margin: 0 0 14px;
  color: var(--forest);
  font-size: 22px;
  line-height: 1.08;
}

.focus-card p {
  margin: 0;
  color: #52605a;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: start;
}

.proof-ledger {
  border-top: 1px solid rgba(15, 51, 40, 0.2);
}

.proof-ledger div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 30px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(15, 51, 40, 0.2);
}

.proof-ledger strong {
  color: var(--forest);
  font-size: 18px;
}

.proof-ledger span {
  color: #52605a;
}

.booklet-section {
  position: relative;
  padding: 108px 0;
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(201, 174, 115, 0.12), transparent 34%),
    linear-gradient(180deg, #050907 0%, #0c1411 54%, #060a08 100%);
  color: var(--white);
}

.booklet-section::before {
  content: "NATION CUP";
  position: absolute;
  right: 0;
  top: 36px;
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--font-serif);
  font-size: clamp(74px, 11vw, 190px);
  line-height: 0.82;
  white-space: nowrap;
  pointer-events: none;
}

.booklet-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 78px;
  align-items: start;
}

.booklet-copy {
  position: sticky;
  top: 112px;
  padding-top: 14px;
}

.booklet-copy h2 {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 0.96;
  font-weight: 700;
}

.booklet-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.booklet-copy .button {
  margin-top: 30px;
}

.booklet-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border: 1px solid rgba(201, 174, 115, 0.24);
  background: rgba(255, 255, 255, 0.045);
}

.booklet-meta div {
  min-height: 96px;
  padding: 18px;
  border-right: 1px solid rgba(201, 174, 115, 0.18);
}

.booklet-meta div:last-child {
  border-right: 0;
}

.booklet-meta strong {
  display: block;
  color: var(--champagne);
  font-family: var(--font-serif);
  font-size: 38px;
  line-height: 1;
}

.booklet-meta span {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.booklet-reader {
  display: grid;
  gap: 22px;
}

.booklet-page {
  position: relative;
  margin: 0;
  padding: 10px;
  border: 1px solid rgba(201, 174, 115, 0.32);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025)),
    rgba(3, 6, 5, 0.72);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.34);
  user-select: none;
}

.booklet-page::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(201, 174, 115, 0.14);
  pointer-events: none;
}

.booklet-page img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-user-drag: none;
  user-select: none;
}

.booklet-page figcaption {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 6px 9px;
  border: 1px solid rgba(201, 174, 115, 0.24);
  background: rgba(5, 9, 8, 0.76);
  color: var(--champagne-2);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.booklet-section {
  position: relative;
  min-height: 100svh;
  padding: 118px 0 72px;
  scroll-margin-top: 96px;
  overflow: hidden;
  background:
    linear-gradient(112deg, rgba(4, 13, 12, 0.96) 0%, rgba(7, 29, 24, 0.9) 46%, rgba(6, 11, 10, 0.72) 100%),
    linear-gradient(180deg, rgba(4, 13, 12, 0.22), rgba(4, 13, 12, 0.9)),
    url("/assets/images/nation-cup-hero.webp") center / cover;
  color: var(--white);
}

.booklet-section::before {
  content: "NATION CUP";
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  top: 88px;
  color: rgba(236, 214, 158, 0.065);
  font-family: var(--font-serif);
  font-size: clamp(82px, 13vw, 220px);
  font-weight: 800;
  line-height: 0.8;
  pointer-events: none;
  white-space: nowrap;
}

.booklet-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  width: min(100% - 30px, 1760px);
  max-width: none;
}

.booklet-copy {
  position: relative;
  top: auto;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(300px, 460px) minmax(320px, 1fr) auto;
  gap: 24px 34px;
  align-items: end;
  width: min(100%, 1560px);
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
}

.booklet-copy h2 {
  max-width: 460px;
  color: var(--white);
  font-size: clamp(36px, 3.4vw, 58px);
  line-height: 0.98;
}

.booklet-copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
}

.booklet-copy .button {
  margin: 0;
  white-space: nowrap;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.booklet-copy .section-label {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--champagne);
}

.booklet-section .booklet-meta {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 760px;
  border: 1px solid rgba(236, 214, 158, 0.2);
  background: rgba(236, 214, 158, 0.2);
}

.flipbook-reader {
  --flipbook-zoom: 1;
  position: relative;
  display: block;
  width: min(100%, 1700px);
  margin: 0 auto;
  padding: 82px 72px 36px;
  border: 1px solid rgba(236, 214, 158, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 36%),
    linear-gradient(20deg, rgba(236, 214, 158, 0.09) 0%, rgba(255, 255, 255, 0) 42%),
    rgba(3, 9, 8, 0.72);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.44);
  color: var(--white);
  overflow: hidden;
  backdrop-filter: blur(18px);
  box-sizing: border-box;
}

.flipbook-reader::before,
.flipbook-reader::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.flipbook-reader::before {
  background:
    linear-gradient(152deg, transparent 0 48%, rgba(236, 214, 158, 0.18) 48.2% 48.55%, transparent 48.75%),
    linear-gradient(208deg, transparent 0 56%, rgba(255, 255, 255, 0.12) 56.1% 56.48%, transparent 56.7%);
}

.flipbook-reader::after {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), inset 0 -1px 0 rgba(236, 214, 158, 0.12);
}

.flipbook-toolbar {
  position: absolute;
  top: 28px;
  left: 24px;
  right: 24px;
  z-index: 1200;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  pointer-events: none;
}

.flipbook-tool {
  position: relative;
  z-index: 1400;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(15, 23, 20, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 30px rgba(5, 9, 8, 0.12);
  color: #0b1512;
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  font-weight: 900;
  pointer-events: auto;
}

.flipbook-tool:hover {
  background: rgba(236, 214, 158, 0.94);
}

.flipbook-tool:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.flipbook-nav {
  position: absolute;
  z-index: 1300;
  top: 50%;
  display: grid;
  width: 48px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(15, 23, 20, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: #0b1512;
  cursor: pointer;
  font: inherit;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
}

.flipbook-nav:hover {
  background: rgba(236, 214, 158, 0.9);
}

.flipbook-nav:disabled {
  opacity: 0.34;
  cursor: not-allowed;
}

.flipbook-nav-prev {
  left: 20px;
}

.flipbook-nav-next {
  right: 20px;
}

.flipbook-controls {
  position: relative;
  z-index: 1300;
  display: grid;
  gap: 10px;
  width: min(88%, 1280px);
  margin: 18px auto 0;
}

.flipbook-title {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 34px rgba(5, 9, 8, 0.08);
  color: #0b1512;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  pointer-events: auto;
}

.flipbook-actions {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  pointer-events: auto;
}

.flipbook-control {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-right: 1px solid rgba(15, 23, 20, 0.1);
  background: transparent;
  color: #0b1512;
  cursor: pointer;
  font: inherit;
  font-size: 25px;
  font-weight: 900;
}

.flipbook-control:last-child {
  border-right: 0;
}

.flipbook-control:hover {
  background: rgba(201, 174, 115, 0.18);
}

.flipbook-stage {
  position: relative;
  z-index: 2;
  display: flex;
  height: min(790px, calc(100vh - 170px));
  min-height: 660px;
  padding-top: 58px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.flipbook-frame {
  position: relative;
  width: min(100%, 1440px);
  overflow: visible;
}

.flipbook {
  width: 100%;
  height: min(790px, calc(100vh - 170px));
  min-height: 660px;
  margin: 0 auto;
  transform: translateZ(0) scale(var(--flipbook-zoom)) !important;
  transform-origin: center center;
  transition: transform 220ms ease;
  will-change: transform;
}

.flipbook-reader.is-zoomed .flipbook-stage {
  overflow: visible;
}

.flipbook:not(.is-ready) .flipbook-page:not(:first-child) {
  display: none;
}

.flipbook:not(.is-ready) .flipbook-page:first-child {
  display: block;
  width: min(52vw, 560px);
  margin: 0 auto;
}

.flipbook-page {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14);
  user-select: none;
}

.flipbook-page img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
  user-select: none;
}

.flipbook .stf__wrapper {
  filter: drop-shadow(0 30px 42px rgba(5, 9, 8, 0.18));
}

.flipbook-arrow {
  position: absolute;
  z-index: 1100;
  bottom: 24px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: #111815;
  box-shadow: 0 18px 36px rgba(5, 9, 8, 0.12);
  cursor: pointer;
  font: inherit;
  font-size: 43px;
  line-height: 1;
}

.flipbook-arrow:hover {
  background: rgba(255, 255, 255, 0.94);
}

.flipbook-arrow:disabled,
.flipbook-control:disabled {
  opacity: 0.36;
  cursor: default;
}

.flipbook-arrow-prev {
  left: 26px;
}

.flipbook-arrow-next {
  right: 26px;
}

.flipbook-footer {
  position: relative;
  z-index: 1100;
  display: grid;
  width: min(52vw, 690px);
  margin: 26px auto 0;
  gap: 10px;
  justify-items: center;
}

.flipbook-progress {
  width: 100%;
  accent-color: #6e6e6d;
  cursor: pointer;
}

.flipbook-status {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #27312d;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.flipbook-reader:fullscreen {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
}

.flipbook-reader:fullscreen .flipbook-stage,
.flipbook-reader:fullscreen .flipbook {
  height: calc(100vh - 140px);
}

/* Nation Cup premium teaser stage */
.nation-teaser-hero {
  position: relative;
  min-height: calc(100svh - 74px);
  overflow: hidden;
  padding: 124px 0 78px;
  background: #06100d;
  color: var(--white);
  isolation: isolate;
}

.nation-teaser-hero::before,
.nation-teaser-hero::after {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
}

.nation-teaser-hero::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 8, 7, 0.95) 0%, rgba(2, 8, 7, 0.79) 43%, rgba(2, 8, 7, 0.28) 72%, rgba(2, 8, 7, 0.84) 100%),
    linear-gradient(180deg, rgba(2, 8, 7, 0.40), rgba(2, 8, 7, 0.82)),
    url("/assets/images/premium-golf-resort-hero.webp") center / cover;
  transform: scale(1.015);
}

.nation-teaser-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(221, 190, 123, 0.18) 0 1px, transparent 1px) 8% 0 / 1px 100% no-repeat,
    linear-gradient(180deg, transparent 0 76%, rgba(236, 214, 158, 0.12) 76% 76.15%, transparent 76.15%),
    radial-gradient(circle at 73% 22%, rgba(236, 214, 158, 0.20), transparent 31%);
  mix-blend-mode: screen;
  opacity: 0.76;
}

.nation-teaser-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.nation-teaser-copy {
  max-width: 760px;
}

.nation-teaser-copy h1,
.nation-teaser-copy h2 {
  margin: 0;
  max-width: 720px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 76px;
  line-height: 0.94;
  letter-spacing: 0;
}

.nation-question {
  max-width: 690px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.34;
}

.nation-teaser-copy > p:not(.section-label):not(.nation-question) {
  max-width: 640px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.72;
}

.nation-callout {
  display: inline-flex;
  max-width: 100%;
  margin-top: 32px;
  padding: 15px 19px;
  border: 1px solid rgba(236, 214, 158, 0.42);
  border-radius: 6px;
  background: rgba(3, 12, 10, 0.58);
  color: #f4dfac;
  font-weight: 900;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.nation-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.nation-hero-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: rgba(255, 255, 255, 0.92);
}

.nation-signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 760px;
  margin-top: 54px;
  border-top: 1px solid rgba(236, 214, 158, 0.24);
  border-bottom: 1px solid rgba(236, 214, 158, 0.24);
}

.nation-signal-row div {
  min-height: 112px;
  padding: 20px 24px 19px 0;
  border-right: 1px solid rgba(236, 214, 158, 0.18);
}

.nation-signal-row div + div {
  padding-left: 24px;
}

.nation-signal-row div:last-child {
  border-right: 0;
}

.nation-signal-row strong,
.nation-sponsor-slots strong,
.nation-brief-list strong {
  display: block;
  color: #e8cc87;
  font-family: var(--font-serif);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.nation-signal-row span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.nation-visual-stage {
  position: relative;
  min-height: 560px;
}

.nation-visual-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(236, 214, 158, 0.38);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 52px 120px rgba(0, 0, 0, 0.42);
}

.nation-visual-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.nation-visual-frame figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding-top: 18px;
  border-top: 1px solid rgba(236, 214, 158, 0.34);
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.62);
}

.nation-visual-frame::after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 46%, rgba(1, 8, 7, 0.90));
  pointer-events: none;
}

.nation-visual-tag {
  position: absolute;
  right: -18px;
  bottom: 82px;
  z-index: 2;
  max-width: 260px;
  padding: 18px 20px;
  border: 1px solid rgba(236, 214, 158, 0.40);
  border-radius: 6px;
  background: rgba(2, 8, 7, 0.84);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.nation-event-seal {
  position: absolute;
  top: -26px;
  left: -26px;
  z-index: 3;
  display: grid;
  width: 156px;
  height: 156px;
  place-items: center;
  border: 1px solid rgba(236, 214, 158, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(236, 214, 158, 0.18), transparent 34%),
    rgba(2, 8, 7, 0.78);
  color: #f4dfac;
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.38),
    inset 0 0 0 10px rgba(236, 214, 158, 0.06);
}

.nation-event-seal span {
  display: grid;
  gap: 5px;
  justify-items: center;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

.nation-event-seal strong {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 0.9;
  letter-spacing: 0;
}

.nation-story-section {
  scroll-margin-top: 96px;
  padding: 84px 0 72px;
  background: #f4efe4;
  color: #111815;
}

.nation-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.62fr);
  gap: 54px;
  align-items: start;
}

.nation-invitation-copy {
  max-width: 820px;
}

.nation-invitation-copy h2,
.nation-sponsor-reserve h2,
.nation-brief-reserve h2 {
  margin: 0;
  color: #111815;
  font-family: var(--font-serif);
  font-size: 54px;
  line-height: 0.98;
  letter-spacing: 0;
}

.nation-invitation-copy p {
  margin: 22px 0 0;
  color: rgba(17, 24, 21, 0.74);
  font-size: 19px;
  line-height: 1.68;
}

.nation-invitation-copy .nation-closing-line {
  margin-top: 30px;
  color: #755e27;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.06;
}

.nation-mini-visual {
  position: sticky;
  top: 116px;
  overflow: hidden;
  border: 1px solid rgba(117, 94, 39, 0.22);
  border-radius: 6px;
  background: #111815;
  color: var(--white);
}

.nation-mini-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.nation-mini-visual span {
  display: block;
  padding: 18px 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.nation-editorial-spread {
  scroll-margin-top: 96px;
  padding: 80px 0;
  background:
    linear-gradient(180deg, #f4efe4 0%, #f1eadc 100%);
  color: #111815;
}

.nation-spread-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.78fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(117, 94, 39, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.66) 49.8%, rgba(117, 94, 39, 0.18) 49.9%, rgba(9, 18, 16, 0.96) 50.1%, rgba(3, 10, 9, 0.98)),
    #f7f2e8;
  box-shadow: 0 42px 110px rgba(28, 23, 12, 0.16);
}

.nation-spread-shell::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 34px;
  content: "";
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(28, 23, 12, 0.16), transparent);
  pointer-events: none;
}

.nation-spread-copy {
  display: grid;
  align-content: space-between;
  min-height: 650px;
  padding: clamp(38px, 5vw, 78px);
}

.nation-spread-copy h2 {
  max-width: 640px;
  margin: 0;
  color: #111815;
  font-family: var(--font-serif);
  font-size: 62px;
  line-height: 0.96;
  letter-spacing: 0;
}

.nation-spread-copy p {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(17, 24, 21, 0.72);
  font-size: 18px;
  line-height: 1.66;
}

.nation-spread-index {
  display: grid;
  gap: 0;
  margin-top: 54px;
  border-top: 1px solid rgba(117, 94, 39, 0.22);
  border-bottom: 1px solid rgba(117, 94, 39, 0.22);
}

.nation-spread-index div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(117, 94, 39, 0.16);
}

.nation-spread-index div:last-child {
  border-bottom: 0;
}

.nation-spread-index strong {
  color: #a88537;
  font-family: var(--font-serif);
  font-size: 27px;
  line-height: 1;
}

.nation-spread-index span {
  color: rgba(17, 24, 21, 0.70);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.46;
}

.nation-spread-visual {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 650px;
  padding: clamp(26px, 4vw, 56px);
  color: var(--white);
}

.nation-spread-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.nation-spread-visual::before {
  position: absolute;
  content: "";
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(2, 8, 7, 0.18), rgba(2, 8, 7, 0.92)),
    radial-gradient(circle at 48% 18%, rgba(236, 214, 158, 0.16), transparent 34%);
}

.nation-spread-visual > *:not(img) {
  position: relative;
  z-index: 2;
}

.nation-spread-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: auto;
  padding: 11px 14px;
  border: 1px solid rgba(236, 214, 158, 0.38);
  border-radius: 999px;
  background: rgba(2, 8, 7, 0.58);
  color: #e8cc87;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.nation-spread-visual h3 {
  max-width: 440px;
  margin: 210px 0 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 0.98;
  letter-spacing: 0;
}

.nation-spread-visual p {
  max-width: 430px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.62;
}

.nation-spread-marks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.nation-spread-marks span {
  display: grid;
  min-height: 74px;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(236, 214, 158, 0.26);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.80);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.nation-brochure-section {
  position: relative;
  scroll-margin-top: 96px;
  overflow: hidden;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 14% 12%, rgba(236, 214, 158, 0.16), transparent 30rem),
    radial-gradient(circle at 82% 2%, rgba(92, 122, 88, 0.20), transparent 34rem),
    linear-gradient(135deg, #06100d 0%, #0b2a20 48%, #030807 100%);
  color: var(--white);
  isolation: isolate;
}

.nation-brochure-section--first {
  padding-top: 104px;
}

.nation-brochure-section--first > .shell {
  display: flex;
  flex-direction: column;
}

.nation-brochure-section--first .nation-brochure-theatre {
  order: 1;
}

.nation-brochure-section--first .nation-brochure-head {
  order: 2;
  margin: 34px 0 0;
}

.nation-brochure-section--first .nation-brochure-footnote {
  order: 3;
}

.nation-brochure-section::before,
.nation-brochure-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.nation-brochure-section::before {
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(236, 214, 158, 0.16) 0 1px, transparent 1px) 8% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, transparent 0 78%, rgba(236, 214, 158, 0.10) 78% 78.1%, transparent 78.1%),
    url("/assets/images/nation-cup-luxury-network-courses.webp") center / cover;
  opacity: 0.28;
  filter: saturate(0.92);
}

.nation-brochure-section::after {
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(180deg, transparent, rgba(1, 5, 5, 0.78));
}

.nation-brochure-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.nation-brochure-head h1,
.nation-brochure-head h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 84px);
  line-height: 0.92;
  letter-spacing: 0;
}

.nation-brochure-head p:not(.section-label) {
  max-width: 780px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 17px;
  line-height: 1.7;
}

.nation-brochure-language {
  display: inline-flex;
  gap: 6px;
  justify-self: end;
  padding: 6px;
  border: 1px solid rgba(236, 214, 158, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nation-brochure-language a {
  display: inline-flex;
  min-width: 54px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.nation-brochure-language a.is-active {
  background: #d7b86e;
  color: #06100c;
}

.nation-brochure-theatre {
  position: relative;
  padding: clamp(18px, 2.2vw, 30px);
  border: 1px solid rgba(236, 214, 158, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0) 34%),
    rgba(1, 6, 8, 0.70);
  box-shadow:
    0 58px 150px rgba(0, 0, 0, 0.54),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nation-brochure-reader.flipbook-reader {
  width: min(100%, 1540px);
  margin: 0 auto;
  padding: clamp(16px, 2vw, 26px) clamp(14px, 2.6vw, 42px) 30px;
  border-color: rgba(236, 214, 158, 0.28);
  border-radius: 6px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 38%),
    rgba(2, 8, 8, 0.78);
  overflow: hidden;
}

.nation-brochure-reader .flipbook-toolbar {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 4;
  width: min(1120px, 100%);
  margin: 0 auto 16px;
  padding: 9px 10px 9px 14px;
  border: 1px solid rgba(236, 214, 158, 0.26);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(2, 8, 10, 0.76);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

.nation-brochure-reader .flipbook-title {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(248, 241, 223, 0.9);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nation-brochure-reader .flipbook-actions {
  border: 1px solid rgba(236, 214, 158, 0.24);
  background: rgba(248, 241, 223, 0.94);
}

.nation-brochure-reader .flipbook-stage,
.nation-brochure-reader .flipbook {
  height: min(780px, calc(100vh - 250px));
  min-height: 650px;
}

.nation-brochure-reader .flipbook-stage {
  overflow: hidden;
  padding-top: 0;
}

.nation-brochure-reader .flipbook {
  max-width: 1240px;
}

.nation-brochure-reader.is-zoomed .flipbook-stage {
  overflow: hidden;
}

.nation-brochure-reader .flipbook .stf__wrapper {
  filter: drop-shadow(0 42px 62px rgba(0, 0, 0, 0.38));
}

.nation-brochure-reader .flipbook-arrow {
  background: rgba(236, 214, 158, 0.90);
  color: #06100d;
}

.nation-brochure-reader .flipbook-progress {
  accent-color: #d7b86e;
}

.nation-brochure-reader .flipbook-status {
  border: 1px solid rgba(236, 214, 158, 0.28);
  background: rgba(2, 8, 10, 0.72);
  color: rgba(255, 255, 255, 0.86);
}

.nation-brochure-footnote {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 26px;
  border-top: 1px solid rgba(236, 214, 158, 0.20);
  border-bottom: 1px solid rgba(236, 214, 158, 0.20);
}

.nation-brochure-footnote span {
  padding: 17px 22px;
  border-right: 1px solid rgba(236, 214, 158, 0.16);
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.45;
  text-transform: uppercase;
}

.nation-brochure-footnote span:last-child {
  border-right: 0;
}

.nation-sponsor-reserve {
  position: relative;
  scroll-margin-top: 96px;
  overflow: hidden;
  padding: 92px 0;
  background:
    linear-gradient(130deg, rgba(1, 10, 8, 0.96), rgba(3, 28, 23, 0.92)),
    url("/assets/images/premium-golf-hospitality.webp") center / cover;
  color: var(--white);
}

.nation-sponsor-reserve::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(236, 214, 158, 0.16) 0 1px, transparent 1px) 9% 0 / 1px 100% no-repeat,
    linear-gradient(90deg, transparent 0 72%, rgba(236, 214, 158, 0.08) 72% 72.1%, transparent 72.1%),
    radial-gradient(circle at 80% 20%, rgba(236, 214, 158, 0.18), transparent 32%);
  pointer-events: none;
}

.nation-sponsor-reserve > .shell {
  position: relative;
  z-index: 1;
}

.nation-sponsor-reserve .section-heading {
  max-width: 780px;
}

.nation-sponsor-reserve h2,
.nation-brief-reserve h2 {
  color: var(--white);
}

.nation-sponsor-reserve .section-heading p:not(.section-label),
.nation-brief-reserve p {
  color: rgba(255, 255, 255, 0.70);
}

.nation-sponsor-signature {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-top: 38px;
  padding: 28px;
  border: 1px solid rgba(236, 214, 158, 0.28);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0)),
    rgba(2, 8, 7, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 28px 72px rgba(0, 0, 0, 0.22);
}

.nation-sponsor-signature span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.nation-sponsor-signature strong {
  display: block;
  color: #f4dfac;
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 0.98;
  letter-spacing: 0;
}

.nation-sponsor-slots {
  display: grid;
  grid-template-columns: 1.12fr 0.94fr 0.94fr;
  gap: 14px;
  margin-top: 42px;
}

.nation-sponsor-slots div {
  position: relative;
  overflow: hidden;
  display: grid;
  min-height: 138px;
  align-content: end;
  padding: 20px;
  border: 1px solid rgba(236, 214, 158, 0.26);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(2, 8, 7, 0.46);
}

.nation-sponsor-slots div::before {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  content: "";
  border-top: 1px solid rgba(236, 214, 158, 0.34);
  border-right: 1px solid rgba(236, 214, 158, 0.34);
  opacity: 0.72;
}

.nation-sponsor-slots div:first-child {
  grid-column: span 2;
  min-height: 172px;
  background:
    linear-gradient(145deg, rgba(236, 214, 158, 0.14), rgba(255, 255, 255, 0)),
    rgba(2, 8, 7, 0.56);
}

.nation-sponsor-slots div:first-child strong {
  font-size: 40px;
}

.nation-sponsor-slots strong {
  font-size: 26px;
}

.nation-sponsor-slots span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.nation-brief-reserve {
  scroll-margin-top: 96px;
  padding: 86px 0;
  background: #0a1110;
  color: var(--white);
}

.nation-brief-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.52fr);
  gap: 52px;
  align-items: start;
}

.nation-brief-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(236, 214, 158, 0.25);
  border-bottom: 1px solid rgba(236, 214, 158, 0.25);
}

.nation-brief-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(236, 214, 158, 0.18);
}

.nation-brief-list div:last-child {
  border-bottom: 0;
}

.nation-brief-list strong {
  font-size: 25px;
}

.nation-brief-list span {
  color: rgba(255, 255, 255, 0.70);
  font-size: 15px;
  line-height: 1.6;
}

.nation-legacy-retired {
  display: none !important;
}

.nation-preview-page {
  background: #06100d;
}

.nation-preview-page .page-main {
  background:
    linear-gradient(180deg, #050908 0%, #07110e 38%, #f4efe4 38%, #f4efe4 100%);
}

.nation-preview-bar {
  padding: 104px 0 18px;
  background:
    radial-gradient(circle at 8% 0%, rgba(215, 184, 110, 0.18), transparent 30rem),
    linear-gradient(180deg, rgba(3, 8, 7, 0.98), rgba(5, 14, 12, 0.94));
  color: var(--white);
}

.nation-preview-bar-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 56px;
  border-top: 1px solid rgba(215, 184, 110, 0.34);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nation-preview-bar span,
.nation-preview-bar a {
  color: #d7b86e;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.nation-preview-bar strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.nation-preview-bar a {
  justify-self: end;
  text-decoration: none;
}

.nation-preview-page .nation-preview-room {
  padding: 44px 0 106px;
  background:
    radial-gradient(circle at 15% 11%, rgba(236, 214, 158, 0.18), transparent 31rem),
    radial-gradient(circle at 84% 8%, rgba(55, 91, 77, 0.30), transparent 36rem),
    linear-gradient(135deg, #06100d 0%, #0d2e23 49%, #040807 100%);
}

.nation-preview-page .nation-preview-room::before {
  content: "REVIEW ROOM";
  right: max(20px, 4vw);
  top: 44px;
  color: rgba(248, 241, 223, 0.075);
  font-size: clamp(48px, 8vw, 136px);
  opacity: 1;
}

.nation-preview-page .nation-brochure-head {
  grid-template-columns: minmax(0, 0.95fr) auto;
  margin-bottom: 26px;
}

.nation-preview-page .nation-brochure-head h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(50px, 6.2vw, 92px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
}

.nation-preview-page .nation-brochure-head p:not(.section-label) {
  max-width: 850px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.55;
}

.nation-preview-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 24px;
  border: 1px solid rgba(215, 184, 110, 0.24);
  background: rgba(4, 12, 10, 0.62);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.nation-preview-notes div {
  min-height: 118px;
  padding: 20px;
  border-right: 1px solid rgba(215, 184, 110, 0.18);
}

.nation-preview-notes div:last-child {
  border-right: 0;
}

.nation-preview-notes strong {
  display: block;
  margin-bottom: 14px;
  color: #d7b86e;
  font-family: var(--font-serif);
  font-size: 29px;
  line-height: 0.9;
}

.nation-preview-notes span {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.nation-preview-notes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.nation-preview-page .nation-brochure-theatre {
  padding: clamp(18px, 2vw, 32px);
  border-color: rgba(215, 184, 110, 0.34);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0) 34%),
    rgba(1, 7, 7, 0.74);
}

.nation-preview-page .nation-brochure-reader.flipbook-reader {
  width: min(100%, 1620px);
  padding: clamp(16px, 2vw, 32px);
  border: 1px solid rgba(236, 214, 158, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.02)),
    rgba(1, 6, 7, 0.86);
}

.nation-preview-page .nation-brochure-reader .flipbook-toolbar {
  width: min(1200px, 100%);
  min-height: 68px;
  margin-bottom: 18px;
}

.nation-preview-page .nation-brochure-reader .flipbook-stage,
.nation-preview-page .nation-brochure-reader .flipbook {
  height: min(820px, calc(100vh - 230px));
  min-height: 690px;
}

.nation-preview-page .nation-brochure-footnote {
  margin-top: 28px;
}

.nation-preview-teaser {
  padding: 96px 0;
  background:
    linear-gradient(180deg, #f4efe4 0%, #efe5d2 100%);
  color: #111815;
}

.nation-preview-teaser-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.62fr);
  gap: 64px;
  align-items: start;
}

.nation-preview-teaser h2 {
  max-width: 850px;
  margin: 0;
  color: #111815;
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.2vw, 92px);
  line-height: 0.92;
  letter-spacing: 0;
}

.nation-preview-teaser .nation-question {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(17, 24, 21, 0.76);
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1.24;
}

.nation-preview-teaser-copy {
  border-left: 1px solid rgba(17, 24, 21, 0.18);
  padding-left: 36px;
}

.nation-preview-teaser-copy p {
  margin: 0 0 20px;
  color: rgba(17, 24, 21, 0.72);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
}

.nation-preview-teaser-copy p:last-child {
  margin-bottom: 0;
  color: #111815;
  font-family: var(--font-serif);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.05;
}

/* Nation Cup direct dossier stage */
.booklet-section {
  min-height: 100svh;
  padding: 88px 0 44px;
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 174, 115, 0.16), transparent 28%),
    linear-gradient(112deg, rgba(1, 6, 10, 0.98) 0%, rgba(4, 28, 23, 0.94) 48%, rgba(4, 7, 8, 0.98) 100%),
    url("/assets/images/nation-cup-luxury-trophy-fairway.webp") center / cover;
}

.booklet-section::before {
  right: 50%;
  top: 94px;
  transform: translateX(50%);
  color: rgba(236, 214, 158, 0.055);
  font-size: clamp(92px, 14vw, 240px);
}

.booklet-layout {
  grid-template-columns: minmax(0, 1fr);
  width: min(100% - 28px, 1720px);
  gap: 18px;
}

.booklet-copy {
  display: grid;
  grid-template-columns: minmax(280px, 620px) minmax(320px, 1fr);
  align-items: end;
  width: min(100%, 1480px);
  gap: 12px 34px;
}

.booklet-copy h1,
.booklet-copy h2 {
  max-width: 560px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(31px, 3vw, 48px);
  line-height: 0.98;
  letter-spacing: 0;
}

.booklet-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.55;
}

.booklet-section .booklet-meta {
  display: none;
}

.booklet-copy .button {
  display: none;
}

.booklet-reader.flipbook-reader {
  width: min(100%, 1520px);
  min-height: min(840px, calc(100svh - 250px));
  padding: 68px clamp(18px, 3vw, 58px) 32px;
  border-color: rgba(236, 214, 158, 0.34);
  border-radius: 6px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0) 38%),
    linear-gradient(24deg, rgba(201, 174, 115, 0.14), transparent 44%),
    rgba(1, 6, 8, 0.82);
  box-shadow:
    0 54px 140px rgba(0, 0, 0, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 0 1px rgba(236, 214, 158, 0.08);
}

.booklet-reader.flipbook-reader::before {
  background:
    linear-gradient(152deg, transparent 0 48%, rgba(236, 214, 158, 0.16) 48.2% 48.55%, transparent 48.75%),
    linear-gradient(208deg, transparent 0 56%, rgba(255, 255, 255, 0.08) 56.1% 56.48%, transparent 56.7%),
    radial-gradient(circle at 50% 0%, rgba(236, 214, 158, 0.16), transparent 42%);
}

.booklet-reader .flipbook-toolbar {
  top: 24px;
}

.booklet-reader .flipbook-title {
  display: flex;
  background: rgba(2, 8, 10, 0.76);
  border: 1px solid rgba(236, 214, 158, 0.24);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.booklet-reader .flipbook-actions {
  background: rgba(245, 238, 218, 0.96);
}

.booklet-reader .flipbook-stage,
.booklet-reader .flipbook {
  height: min(760px, calc(100vh - 255px));
  min-height: 640px;
}

.booklet-reader .flipbook {
  max-width: 1240px;
}

.booklet-reader .flipbook .stf__wrapper {
  filter: drop-shadow(0 42px 54px rgba(0, 0, 0, 0.32));
}

.booklet-reader .flipbook-arrow {
  bottom: 28px;
  background: rgba(236, 214, 158, 0.86);
  color: #06100d;
}

.booklet-reader .flipbook-arrow:hover {
  background: rgba(255, 245, 218, 0.96);
}

.booklet-reader .flipbook-progress {
  accent-color: var(--champagne);
}

.booklet-reader .flipbook-status {
  background: rgba(2, 8, 10, 0.74);
  border: 1px solid rgba(236, 214, 158, 0.24);
  color: rgba(255, 255, 255, 0.84);
}

.contact-ribbon {
  padding: 70px 0;
  background: var(--ink);
  color: var(--white);
}

.contact-ribbon-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.contact-ribbon h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 46px;
  line-height: 1;
}

.related-section {
  background: var(--paper);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.related-card {
  min-height: 190px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.related-card:hover,
.related-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 174, 115, 0.72);
  background: #fffdf7;
  outline: none;
}

.related-card span {
  color: var(--champagne);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.page-contact {
  padding-top: 96px;
}

.insight {
  display: block;
}

.insight:hover,
.insight:focus-visible {
  border-color: rgba(201, 174, 115, 0.55);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1.1) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.06) translate3d(0, var(--hero-shift, 0px), 0);
  }
}

@keyframes scrollCue {
  0% {
    transform: translateY(0);
    opacity: 0;
  }

  22% {
    opacity: 1;
  }

  100% {
    transform: translateY(36px);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 68px;
  }

  .page-hero-grid,
  .article-layout,
  .proof-layout,
  .booklet-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .article-rail {
    position: static;
  }

  .booklet-copy {
    position: static;
  }

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

  .page-hero h1 {
    font-size: 60px;
  }

  .intro-grid,
  .manifesto-grid,
  .atmosphere-layout,
  .principal-layout,
  .split,
  .events-grid,
  .network-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .media-panel::before {
    inset: 16px 0 -16px 16px;
  }

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

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

  .atmosphere-copy {
    padding-bottom: 0;
  }

  .atmosphere-mosaic {
    grid-auto-rows: 230px;
  }

  .principal-visuals {
    grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  }

  .principal-portrait {
    min-height: 560px;
  }

  .leadership-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .leadership-note {
    max-width: 560px;
  }

  .leadership-video-stage {
    height: 430px;
  }

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

  .principal-ledger div:nth-child(2) {
    border-right: 0;
  }

  .principal-ledger div:nth-child(1),
  .principal-ledger div:nth-child(2) {
    border-bottom: 1px solid rgba(201, 174, 115, 0.18);
  }

  .leadership-photo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 340px;
  }

  .leadership-photo-card.tall {
    grid-row: span 1;
  }

  .leadership-photo-card.feature-tall {
    grid-column: span 2;
    grid-row: span 2;
  }

  .leadership-photo-card.closing-panel {
    grid-column: span 1;
  }

  .leadership-visuals {
    grid-auto-rows: 240px;
  }

  .leadership-card-wide {
    min-height: 340px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 76px;
    padding: 0 20px;
  }

  .brand img {
    width: 130px;
  }

  .brand-main {
    font-size: 28px;
  }

  .brand-sub {
    font-size: 11px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 86px 16px auto auto;
    width: min(270px, calc(100% - 32px));
    display: grid;
    gap: 0;
    padding: 16px 20px 22px;
    background: rgba(8, 13, 12, 0.94);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(201, 174, 115, 0.24);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 46px;
    border-radius: 6px;
    font-size: 15px;
    justify-content: flex-end;
  }

  .language-switcher {
    width: 100%;
    justify-content: flex-end;
    margin: 12px 0 0;
    padding: 5px;
    border-radius: 8px;
  }

  .language-switcher button {
    width: 42px;
    height: 34px;
  }

  .hero {
    min-height: 860px;
  }

  .hero-frame {
    inset: 90px 20px 22px;
  }

  .hero-side-label,
  .hero-scroll-cue {
    display: none;
  }

  .hero-content {
    padding: 132px 0 40px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .page-hero {
    padding: 126px 0 42px;
  }

  .page-hero h1 {
    font-size: 46px;
    line-height: 1;
  }

  .page-lede {
    font-size: 18px;
  }

  .page-visual,
  .page-visual img {
    min-height: 330px;
  }

  .metric-row {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .metric-row div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 0;
  }

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

  .content-section {
    padding: 72px 0;
  }

  .booklet-section {
    padding: 84px 0;
  }

  .booklet-copy h2 {
    font-size: 44px;
  }

  .booklet-meta {
    grid-template-columns: 1fr;
  }

  .booklet-meta div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 174, 115, 0.18);
  }

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

  .prose p {
    font-size: 27px;
  }

  .proof-ledger div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-ribbon-grid {
    grid-template-columns: 1fr;
  }

  .contact-ribbon h2 {
    font-size: 38px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-intelligence {
    grid-template-columns: 1fr;
  }

  .hero-intelligence div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 174, 115, 0.18);
  }

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

  .hero-proof {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .hero-proof div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    padding: 18px 0;
  }

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

  .manifesto-marks {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding: 76px 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .copy-panel h2,
  .atmosphere-copy h2,
  .principal-copy h2,
  .events-copy h2,
  .network-copy h2,
  .contact-copy h2,
  .feature-strip-content h2 {
    font-size: 40px;
  }

  .copy-panel blockquote {
    font-size: 28px;
  }

  .atmosphere-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .atmosphere-card-large {
    grid-row: auto;
  }

  .principal-ledger {
    grid-template-columns: 1fr;
  }

  .principal-ledger div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 174, 115, 0.18);
  }

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

  .principal-ledger div:nth-child(2) {
    border-right: 0;
  }

  .principal-ledger div:nth-child(1),
  .principal-ledger div:nth-child(2) {
    border-bottom: 1px solid rgba(201, 174, 115, 0.18);
  }

  .leadership-video-stage {
    height: 360px;
  }

  .leadership-video-stage figcaption {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .leadership-photo-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .leadership-photo-card,
  .leadership-photo-card.wide,
  .leadership-photo-card.tall,
  .leadership-photo-card.feature-tall,
  .leadership-photo-card.closing-panel {
    grid-column: auto;
    grid-row: auto;
    min-height: 380px;
  }

  .principal-visuals {
    grid-template-columns: 1fr;
  }

  .principal-portrait {
    min-height: 620px;
  }

  .principal-card {
    min-height: 260px;
    margin-bottom: 0;
  }

  .leadership-visuals {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .leadership-card-wide {
    grid-column: auto;
    min-height: 300px;
  }

  .leadership-card-emotional {
    min-height: 320px;
  }

  .feature-strip {
    min-height: 520px;
  }

  .pillar-grid,
  .insight-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .network-board div,
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(100% - 30px, 1180px);
  }

  .hero {
    min-height: 780px;
  }

  .hero-media {
    transform: none;
    animation: none;
    object-position: 60% center;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 43px;
    line-height: 1.02;
    overflow-wrap: normal;
  }

  .hero-frame {
    display: none;
  }

  .hero-eyebrow-row span {
    display: none;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-visual,
  .page-visual img {
    min-height: 280px;
  }

  .page-visual::before {
    inset: 14px 14px -14px -14px;
  }

  .focus-grid,
  .related-grid,
  .booklet-meta {
    grid-template-columns: 1fr;
  }

  .booklet-section {
    padding: 78px 0;
  }

  .booklet-copy h2 {
    font-size: 42px;
  }

  .booklet-meta div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(201, 174, 115, 0.18);
  }

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

  .hero-lede {
    max-width: 350px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .intro-grid h2,
  .section-heading h2,
  .copy-panel h2,
  .atmosphere-copy h2,
  .principal-copy h2,
  .events-copy h2,
  .network-copy h2,
  .contact-copy h2,
  .feature-strip-content h2 {
    font-size: 34px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .atmosphere-mosaic {
    grid-auto-rows: 220px;
  }

  .principal-portrait {
    min-height: 520px;
  }

  .principal-card {
    min-height: 230px;
  }

  .leadership-note {
    padding: 22px;
  }

  .leadership-note strong {
    font-size: 27px;
  }

  .leadership-video-stage {
    height: 280px;
  }

  .leadership-video-stage figcaption strong {
    font-size: 27px;
  }

  .leadership-photo-card,
  .leadership-photo-card.wide,
  .leadership-photo-card.tall,
  .leadership-photo-card.feature-tall,
  .leadership-photo-card.closing-panel {
    min-height: 340px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .leadership-visuals {
    grid-auto-rows: 226px;
  }

  .leadership-card-wide {
    min-height: 240px;
  }

  .leadership-card-emotional {
    min-height: 330px;
  }

  .image-card.wide {
    grid-column: span 1;
  }

  .contact-form {
    padding: 22px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .booklet-copy {
    grid-template-columns: 1fr;
    width: min(100%, 980px);
  }

  .booklet-copy p {
    margin-top: 0;
  }

  .booklet-copy .button {
    justify-self: start;
  }

  .flipbook-reader {
    min-height: 740px;
    padding: 76px 50px 48px;
  }

  .flipbook,
  .flipbook-stage {
    height: 640px;
    min-height: 640px;
  }

  .flipbook-footer {
    width: min(64vw, 620px);
  }
}

@media (max-width: 760px) {
  .booklet-section {
    padding: 112px 0 52px;
  }

  .booklet-layout {
    width: min(100% - 18px, 640px);
    max-width: 100%;
    overflow: hidden;
  }

  .booklet-copy {
    gap: 14px;
    margin-bottom: 16px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .booklet-copy h2 {
    max-width: 100%;
    font-size: 30px;
    overflow-wrap: anywhere;
  }

  .booklet-copy p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.55;
    overflow-wrap: anywhere;
  }

  .booklet-copy .button {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .booklet-section .booklet-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .booklet-section .booklet-meta div {
    padding: 13px 10px;
    min-height: auto;
    border-right: 1px solid rgba(236, 214, 158, 0.18);
    border-bottom: 0;
  }

  .booklet-section .booklet-meta div:last-child {
    border-right: 0;
  }

  .booklet-section .booklet-meta strong {
    font-size: 27px;
  }

  .booklet-section .booklet-meta span {
    font-size: 9px;
    line-height: 1.25;
  }

  .flipbook-reader {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 660px;
    padding: 68px 14px 58px;
    border-radius: 8px;
  }

  .flipbook-toolbar {
    top: 14px;
    left: 10px;
    right: 10px;
    gap: 10px;
    justify-content: space-between;
  }

  .flipbook-title {
    flex: 1 1 auto;
    max-width: calc(100% - 128px);
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .flipbook-actions {
    flex: 0 0 auto;
  }

  .flipbook-control {
    width: 36px;
    height: 40px;
    font-size: 22px;
  }

  .flipbook,
  .flipbook-stage {
    height: 540px;
    min-height: 540px;
  }

  .flipbook:not(.is-ready) .flipbook-page:first-child {
    width: min(82vw, 360px);
  }

  .flipbook-arrow {
    bottom: 20px;
    width: 42px;
    height: 42px;
    font-size: 34px;
  }

  .flipbook-arrow-prev {
    left: 10px;
  }

  .flipbook-arrow-next {
    right: 10px;
  }

  .flipbook-footer {
    width: min(58vw, 280px);
  }

  .flipbook-status {
    font-size: 10px;
  }
}

@media (max-width: 430px) {
  .flipbook-reader {
    min-height: 610px;
    padding-inline: 8px;
  }

  .flipbook,
  .flipbook-stage {
    height: 500px;
    min-height: 500px;
  }

  .flipbook-title {
    max-width: 150px;
  }

  .flipbook-footer {
    width: min(54vw, 220px);
  }
}

@media (max-width: 1180px) {
  .nation-teaser-grid,
  .nation-story-grid,
  .nation-brief-grid {
    grid-template-columns: 1fr;
  }

  .nation-teaser-copy h1,
  .nation-teaser-copy h2 {
    font-size: 62px;
  }

  .nation-visual-stage {
    min-height: auto;
  }

  .nation-visual-frame img {
    aspect-ratio: 16 / 10;
  }

  .nation-mini-visual {
    position: relative;
    top: auto;
  }

  .nation-mini-visual img {
    aspect-ratio: 16 / 9;
  }

  .nation-spread-shell {
    grid-template-columns: 1fr;
  }

  .nation-spread-shell::before {
    display: none;
  }

  .nation-spread-copy,
  .nation-spread-visual {
    min-height: auto;
  }

  .nation-spread-visual {
    min-height: 560px;
  }

  .nation-brochure-head {
    grid-template-columns: 1fr;
  }

  .nation-brochure-language {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .nation-teaser-hero {
    min-height: auto;
    padding: 102px 0 62px;
  }

  .nation-teaser-grid,
  .nation-story-grid,
  .nation-brief-grid {
    gap: 34px;
  }

  .nation-teaser-copy h1,
  .nation-teaser-copy h2 {
    font-size: 46px;
    line-height: 1;
  }

  .nation-question {
    font-size: 20px;
  }

  .nation-teaser-copy > p:not(.section-label):not(.nation-question),
  .nation-invitation-copy p {
    font-size: 16px;
  }

  .nation-signal-row,
  .nation-sponsor-slots {
    grid-template-columns: 1fr;
  }

  .nation-sponsor-signature {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px;
  }

  .nation-sponsor-signature strong {
    font-size: 30px;
    line-height: 1.04;
  }

  .nation-signal-row div,
  .nation-signal-row div + div {
    min-height: auto;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(236, 214, 158, 0.18);
  }

  .nation-signal-row div:last-child {
    border-bottom: 0;
  }

  .nation-visual-tag {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 14px 0 0;
    max-width: none;
  }

  .nation-invitation-copy h2,
  .nation-sponsor-reserve h2,
  .nation-brief-reserve h2 {
    font-size: 38px;
  }

  .nation-story-section,
  .nation-editorial-spread,
  .nation-brochure-section,
  .nation-sponsor-reserve,
  .nation-brief-reserve {
    padding: 64px 0;
  }

  .nation-brochure-section.nation-brochure-section--first {
    padding-top: 88px;
  }

  .nation-spread-copy {
    padding: 34px 24px;
  }

  .nation-spread-copy h2 {
    font-size: 38px;
  }

  .nation-spread-copy p {
    font-size: 16px;
  }

  .nation-spread-index {
    margin-top: 34px;
  }

  .nation-spread-visual {
    min-height: 520px;
    padding: 26px 24px;
  }

  .nation-spread-visual h3 {
    margin-top: 180px;
    font-size: 34px;
  }

  .nation-brief-list div {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .nation-brochure-head h1,
  .nation-brochure-head h2 {
    font-size: 42px;
    line-height: 0.98;
  }

  .nation-brochure-footnote {
    grid-template-columns: 1fr;
  }

  .nation-brochure-footnote span {
    border-right: 0;
    border-bottom: 1px solid rgba(236, 214, 158, 0.16);
  }

  .nation-brochure-footnote span:last-child {
    border-bottom: 0;
  }

  .nation-brochure-reader .flipbook-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .nation-brochure-reader .flipbook-title {
    max-width: none;
    white-space: normal;
  }

  .nation-brochure-reader .flipbook-actions {
    width: max-content;
  }
}

@media (max-width: 520px) {
  .nation-teaser-copy h1,
  .nation-teaser-copy h2 {
    font-size: 36px;
  }

  .nation-question {
    font-size: 18px;
  }

  .nation-callout {
    display: flex;
    width: 100%;
  }

  .nation-hero-actions .button {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .nation-visual-frame figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: 27px;
  }

  .nation-sponsor-slots div {
    min-height: 116px;
  }

  .nation-sponsor-signature {
    padding: 22px;
  }

  .nation-sponsor-signature strong {
    font-size: 25px;
  }

  .nation-spread-index div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nation-spread-marks {
    grid-template-columns: 1fr;
  }

  .nation-spread-marks span {
    min-height: 52px;
  }

  .nation-brief-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .nation-brochure-head h1,
  .nation-brochure-head h2 {
    font-size: 34px;
  }

  .nation-brochure-head p:not(.section-label) {
    font-size: 15px;
  }

  .nation-brochure-language {
    width: 100%;
  }

  .nation-brochure-language a {
    flex: 1 1 0;
  }

  .nation-brochure-theatre {
    margin-inline: -6px;
    padding: 10px;
  }

  .nation-brochure-reader.flipbook-reader {
    padding-inline: 8px;
  }

  .nation-brochure-reader .flipbook,
  .nation-brochure-reader .flipbook-stage {
    height: 540px;
    min-height: 540px;
  }
}

@media (max-width: 1180px) {
  .nation-preview-bar-inner,
  .nation-preview-teaser-grid {
    grid-template-columns: 1fr;
  }

  .nation-preview-bar a {
    justify-self: start;
  }

  .nation-preview-notes {
    grid-template-columns: 1fr;
  }

  .nation-preview-notes div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(215, 184, 110, 0.18);
  }

  .nation-preview-notes div:last-child {
    border-bottom: 0;
  }

  .nation-preview-teaser-copy {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 860px) {
  .nation-preview-bar {
    padding: 92px 0 14px;
  }

  .nation-preview-bar-inner {
    gap: 10px;
    padding: 14px 0;
  }

  .nation-preview-page .nation-preview-room {
    padding: 32px 0 62px;
  }

  .nation-preview-page .nation-preview-room::before {
    display: none;
  }

  .nation-preview-page .nation-brochure-head h1 {
    font-size: 40px;
    line-height: 0.96;
  }

  .nation-preview-page .nation-brochure-head p:not(.section-label) {
    font-size: 16px;
  }

  .nation-preview-notes {
    display: none;
  }

  .nation-preview-page .nation-brochure-theatre {
    padding: 12px;
  }

  .nation-preview-page .nation-brochure-reader .flipbook-stage,
  .nation-preview-page .nation-brochure-reader .flipbook {
    height: 570px;
    min-height: 570px;
  }

  .nation-preview-teaser {
    padding: 64px 0;
  }

  .nation-preview-teaser h2 {
    font-size: 42px;
  }

  .nation-preview-teaser .nation-question {
    font-size: 19px;
  }
}

@media (max-width: 520px) {
  .nation-preview-page .nation-brochure-head h1 {
    font-size: 34px;
  }

  .nation-preview-page .nation-brochure-reader.flipbook-reader {
    padding-inline: 8px;
  }

  .nation-preview-page .nation-brochure-reader .flipbook-stage,
  .nation-preview-page .nation-brochure-reader .flipbook {
    height: 520px;
    min-height: 520px;
  }

  .nation-preview-teaser h2 {
    font-size: 34px;
  }

  .nation-preview-teaser-copy p {
    font-size: 15px;
  }

  .nation-preview-teaser-copy p:last-child {
    font-size: 27px;
  }
}
