@font-face {
  font-family: "DIN Pro";
  src: url("../fonts/DINWeb.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro";
  src: url("../fonts/DINWeb-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro";
  src: url("../fonts/DINWeb-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DIN Pro";
  src: url("../fonts/DINWeb-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #004d9f;
  --blue-dark: #003b7c;
  --blue-ink: #07386d;
  --blue-bright: #2869f5;
  --ink: #090909;
  --paper: #ffffff;
  --mist: #f2f4f7;
  --muted: #5f6670;
  --line: #d9dee6;
  --display: "DIN Pro", Helvetica, Arial, sans-serif;
  --body: "DIN Pro", Helvetica, Arial, sans-serif;
  --container: 1150px;
  --shadow: 0 18px 48px rgba(5, 33, 62, 0.13);
  --header-height: 96px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; scrollbar-gutter: stable; }
body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
p { margin: 0 0 1.25em; }
h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
h1 { font-size: clamp(3.55rem, 7vw, 7rem); }
h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 2rem); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #ffcf40; outline-offset: 4px; box-shadow: 0 0 0 2px #002d5e; }
::selection { background: #b9d7ff; color: #001f44; }

.container { width: min(var(--container), calc(100% - 64px)); margin-inline: auto; }
.section-pad { padding-block: clamp(80px, 9vw, 132px); }
.section-dark { background: #050505; color: #fff; }
.section-blue { position: relative; overflow: hidden; background: linear-gradient(145deg, var(--blue) 0%, #244ed8 100%); color: #fff; }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.nowrap { white-space: nowrap; }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 11px 16px;
  background: #fff;
  color: var(--blue);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 0.18s ease;
}
.skip-link:focus { transform: none; }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  display: grid;
  align-items: center;
  background: var(--blue);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: min-height 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
}
.site-header.is-scrolled { min-height: 80px; background: rgba(0, 68, 145, 0.97); box-shadow: 0 10px 30px rgba(0, 25, 55, 0.18); }
.header-inner { position: relative; display: grid; grid-template-columns: 80px minmax(0, 1fr); align-items: center; gap: 44px; }
.brand { width: 68px; height: 68px; display: grid; place-items: center; overflow: hidden; }
.brand img { width: 66px; height: 66px; object-fit: contain; }
.site-nav { display: grid; grid-template-columns: repeat(4, minmax(140px, 1fr)); align-items: center; gap: 14px; }
.site-nav > a,
.nav-parent {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  padding: 0 18px;
  background: transparent;
  color: #fff;
  font-family: var(--display);
  font-size: 1.06rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.nav-parent { width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.48rem; white-space: nowrap; }
.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-parent:hover,
.nav-parent:focus-visible,
.site-nav > a[aria-current="page"],
.nav-parent.is-current {
  background: #fff;
  color: var(--blue);
}
.nav-chevron {
  width: 0.75rem;
  height: 0.5rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.18s ease;
}
.nav-parent[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }
.nav-disclosure { position: relative; }
.submenu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 12px);
  left: 50%;
  width: 245px;
  padding: 8px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 44px rgba(0, 29, 62, 0.2);
  transform: translateX(-50%);
  animation: submenu-in 0.18s ease both;
}
.submenu[hidden] { display: none; }
.submenu::before { content: ""; position: absolute; bottom: 100%; left: 50%; border: 7px solid transparent; border-bottom-color: #fff; transform: translateX(-50%); }
.submenu a { display: block; padding: 12px 14px; color: #17202b; font-family: var(--display); font-weight: 700; line-height: 1.2; transition: background-color 0.16s ease, color 0.16s ease; }
.submenu a:hover, .submenu a:focus-visible, .submenu a[aria-current="page"] { background: var(--mist); color: var(--blue); }
.menu-toggle { display: none; }
@keyframes submenu-in { from { opacity: 0; transform: translate(-50%, -8px); } }

/* Shared type and controls */
.eyebrow,
.section-kicker,
.card-meta,
.event-meta,
.legal-date {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow, .section-kicker { color: var(--blue); }
.section-dark .section-kicker,
.section-blue .section-kicker,
.festival-cta .section-kicker { color: #9ec8ff; }
.section-kicker { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.section-kicker::before { content: ""; width: 38px; height: 2px; background: currentColor; }
.lead { font-size: clamp(1.15rem, 2vw, 1.42rem); line-height: 1.52; }
.text-link,
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-family: var(--display);
  font-weight: 900;
  line-height: 1.2;
  border-bottom: 2px solid currentColor;
  padding-bottom: 5px;
  transition: gap 0.18s ease, color 0.18s ease;
}
.text-link:hover, .arrow-link:hover { gap: 15px; color: var(--blue-bright); }
.arrow-link-light { color: #fff; }
.arrow-link-light:hover { color: #9ec8ff; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid var(--blue);
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-weight: 900;
  line-height: 1;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}
.button:hover { transform: translateY(-2px); background: #fff; color: var(--blue); }
.button-light { border-color: #fff; background: #fff; color: var(--blue); }
.button-light:hover { background: transparent; color: #fff; }
.section-heading { max-width: 850px; margin-bottom: clamp(44px, 6vw, 76px); }
.section-heading > p:last-child { max-width: 62ch; margin: 25px 0 0; color: var(--muted); font-size: 1.05rem; }
.section-heading-light > p:last-child { color: rgba(255, 255, 255, 0.8); }
.section-heading--ruled { max-width: none; margin-bottom: 34px; padding-top: 20px; border-top: 1px solid #9299a3; }
.section-heading--ruled h2 { font-size: clamp(1.25rem, 2vw, 1.7rem); letter-spacing: 0; text-transform: uppercase; }

/* Home hero */
.festival-hero {
  width: min(1440px, 100%);
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(390px, 0.84fr) minmax(540px, 1.16fr);
  align-items: center;
  margin: 0 auto;
  overflow: hidden;
}
.hero-copy {
  width: min(530px, calc(100% - 64px));
  justify-self: end;
  padding: 84px 46px 78px 0;
  animation: hero-copy-in 0.7s cubic-bezier(0.22, 0.8, 0.2, 1) both;
}
.hero-copy .eyebrow { margin: 0 0 20px; }
.hero-copy h1 { font-size: clamp(3.55rem, 6.25vw, 6.8rem); line-height: 0.86; text-transform: uppercase; }
.hero-copy h1 span { display: block; color: var(--blue); }
.hero-intro { max-width: 44ch; margin: 31px 0 25px; color: #353c45; font-size: 1.04rem; line-height: 1.68; }
.hero-actions, .festival-cta-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px 24px; }
.hero-visual {
  position: relative;
  height: 520px;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%, 8% 82%, 0 67%, 12% 52%, 4% 35%);
  animation: hero-image-in 0.9s 0.1s cubic-bezier(0.22, 0.8, 0.2, 1) both;
}
.hero-visual::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(115deg, rgba(0, 77, 159, 0.18), transparent 46%, rgba(0, 0, 0, 0.23)); }
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; }
.hero-visual img { object-fit: cover; object-position: center 46%; }
.hero-tag { position: absolute; z-index: 2; right: 0; bottom: 0; max-width: min(330px, calc(100% - 20px)); padding: 17px 28px; background: var(--blue); color: #fff; font-family: var(--display); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.1em; line-height: 1.24; text-align: right; text-transform: uppercase; }
.hero-tag span { display: block; }
.hero-tag span + span { margin-top: 4px; }
.benefit-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: clamp(60px, 7vw, 98px);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  background: #fff;
  box-shadow: var(--shadow);
}
.benefit-strip article { min-height: 112px; display: flex; align-items: center; gap: 15px; padding: 22px; border-right: 1px solid var(--line); }
.benefit-strip article:last-child { border-right: 0; }
.benefit-icon { flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--blue); color: #fff; font-family: var(--display); font-size: 0.68rem; font-weight: 900; letter-spacing: 0.08em; }
.benefit-strip strong, .benefit-strip article div span { display: block; }
.benefit-strip strong { font-family: var(--display); font-size: 1rem; font-weight: 700; line-height: 1.18; }
.benefit-strip article div span { margin-top: 5px; color: var(--muted); font-size: 0.79rem; line-height: 1.35; }
@keyframes hero-copy-in { from { opacity: 0; transform: translateY(22px); } }
@keyframes hero-image-in { from { opacity: 0; transform: translateX(36px); } }

.about-band { position: relative; padding-block: clamp(90px, 10vw, 150px); }
.about-band::after { content: ""; position: absolute; right: 0; bottom: 0; width: 23vw; height: 100%; opacity: 0.35; background: linear-gradient(140deg, transparent 0 45%, var(--blue) 45% 58%, transparent 58% 68%, #274ce0 68%); clip-path: polygon(42% 0, 100% 0, 100% 100%, 0 100%); }
.about-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: clamp(50px, 8vw, 120px); align-items: start; }
.about-grid h2 { max-width: 8ch; }
.about-copy { max-width: 67ch; }
.about-copy p { color: #d7d9de; font-size: 1.05rem; }
.about-copy .arrow-link { margin-top: 18px; }

.focus-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.focus-card { position: relative; min-height: 310px; padding: 32px 28px 34px; border: 1px solid var(--line); overflow: hidden; }
.focus-card::after { content: ""; position: absolute; right: -55px; bottom: -80px; width: 145px; height: 190px; background: var(--mist); transform: rotate(35deg); transition: background-color 0.2s ease; }
.focus-card > span { display: inline-block; margin-bottom: 54px; color: var(--blue); font-family: var(--display); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.15em; }
.focus-card h3 { position: relative; z-index: 1; font-size: clamp(1.45rem, 2.15vw, 2rem); }
.focus-card p { position: relative; z-index: 1; margin: 18px 0 0; color: var(--muted); font-size: 0.93rem; line-height: 1.55; }

.highlights-section { padding-block: clamp(95px, 11vw, 160px) clamp(120px, 14vw, 195px); }
.highlights-section::before, .page-masthead::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.2; background: linear-gradient(135deg, transparent 0 18%, rgba(255,255,255,.16) 18% 29%, transparent 29% 45%, rgba(0,0,0,.18) 45% 58%, transparent 58% 76%, rgba(255,255,255,.12) 76%); }
.highlights-section::after { content: ""; position: absolute; right: 0; bottom: -1px; width: 100%; height: 95px; background: #fff; clip-path: polygon(0 100%, 100% 100%, 100% 0, 48% 78%, 0 0); }
.highlights-section .container { position: relative; z-index: 1; }
.highlight-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.highlight-card { background: #fff; color: var(--ink); box-shadow: 0 16px 34px rgba(0, 20, 60, 0.2); }
.highlight-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 0.35s ease; }
.highlight-card > div { min-height: 240px; padding: 26px 27px 30px; }
.highlight-card h3 { font-size: clamp(1.45rem, 2.1vw, 2rem); }
.highlight-card p:last-child { margin: 16px 0 0; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.highlight-card .card-meta { margin-bottom: 13px; color: var(--blue); }

.partner-marquee-section { padding-block: clamp(85px, 9vw, 125px); overflow: hidden; }
.marquee-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 60px; }
.marquee-heading h2 { max-width: 10ch; }
.marquee-heading-copy { max-width: 720px; }
.marquee-note { max-width: 58ch; margin: 24px 0 0; color: var(--muted); }
.marquee { width: 100%; overflow: hidden; border-block: 1px solid var(--line); }
.marquee-track { width: max-content; min-height: 128px; display: flex; align-items: center; gap: 35px; animation: marquee 38s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--display); font-size: clamp(1.4rem, 2.8vw, 2.6rem); font-weight: 900; letter-spacing: -0.02em; white-space: nowrap; }
.marquee-track i { width: 11px; height: 11px; display: block; background: var(--blue); transform: rotate(45deg); }
@keyframes marquee { to { transform: translateX(-50%); } }

.festival-cta { position: relative; min-height: 560px; display: grid; align-items: center; overflow: hidden; background: var(--blue); color: #fff; }
.festival-cta-art { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,30,70,.86), rgba(0,60,130,.4)), url("/assets/images/festival-pattern.webp") center / cover; transform: scale(1.02); }
.festival-cta-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(125deg, transparent 0 54%, rgba(37, 89, 255, 0.7) 54% 68%, transparent 68%); }
.festival-cta-inner { position: relative; z-index: 1; }
.festival-cta h2 { max-width: 9ch; }
.festival-cta p:not(.section-kicker) { margin: 24px 0 30px; font-family: var(--display); font-size: 1.12rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.festival-cta-actions .arrow-link { font-size: 1rem; }

/* Shared page mastheads */
.page-masthead { position: relative; min-height: 320px; padding-block: 72px 92px; overflow: visible; background: linear-gradient(135deg, var(--blue) 0%, #075aab 100%); color: #fff; }
.page-masthead > .container { position: relative; z-index: 1; }
.intro-panel { position: relative; z-index: 2; padding: clamp(38px, 5vw, 66px); background: #050505; color: #fff; box-shadow: var(--shadow); }
.page-masthead > .container:not(.masthead-layout) > .intro-panel { margin-bottom: -180px; }
.intro-panel--split { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); align-items: center; gap: clamp(36px, 5vw, 72px); }
.intro-panel h1 { font-size: clamp(3.25rem, 6.5vw, 6.5rem); }
.advisory-board-page .intro-panel--split h1,
.partners-page .intro-panel--split h1 { font-size: clamp(2.75rem, 4.8vw, 4.5rem); white-space: nowrap; }
.advisory-board-page .intro-panel--split,
.partners-page .intro-panel--split { grid-template-columns: minmax(0, 1fr); align-items: start; gap: clamp(26px, 3vw, 36px); }
.advisory-board-page .intro-panel--split h1,
.partners-page .intro-panel--split h1 { white-space: normal; }
.advisory-board-page .intro-copy,
.partners-page .intro-copy { max-width: 72ch; }
.intro-panel p { margin: 0; color: #d6d9dd; line-height: 1.68; }
.intro-panel .eyebrow { margin: 0 0 18px; color: #9ec8ff; }
.page-masthead--media { min-height: 360px; padding-block: 72px 0; }
.masthead-layout { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); align-items: center; transform: translateY(42px); }
.masthead-layout > * { min-width: 0; }
.masthead-media { height: 390px; }
.masthead-media img { width: 100%; height: 100%; object-fit: cover; }
.masthead-layout .intro-panel { min-height: 390px; display: flex; flex-direction: column; justify-content: center; }
.page-masthead > .masthead-layout > .intro-panel { margin-bottom: 0; }
.page-masthead--intro { padding-bottom: 0; }
[data-page="what-we-do"] .intro-panel h1 { font-size: clamp(2.65rem, 4.2vw, 4rem); }

/* Events */
.event-list { padding-top: 120px; }
.event-row { padding-block: clamp(80px, 9vw, 128px); }
.event-row--dark { background: #050505; color: #fff; }
.event-row-inner { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); align-items: center; gap: clamp(45px, 8vw, 110px); }
.event-row--reverse .event-media { order: 2; }
.event-media { aspect-ratio: 4 / 3; overflow: hidden; }
.event-media img { width: 100%; height: 100%; object-fit: cover; }
.event-copy { max-width: 570px; }
.event-copy h2 { font-size: clamp(2.2rem, 4.2vw, 4.15rem); }
.event-copy > p:not(.event-meta) { margin: 25px 0; color: var(--muted); }
.event-row--dark .event-copy > p:not(.event-meta) { color: #ccd0d7; }
.event-meta { display: flex; flex-wrap: wrap; gap: 12px 26px; margin-bottom: 20px; color: var(--blue); }
.event-meta span + span { position: relative; }
.event-meta span + span::before { content: ""; position: absolute; top: 50%; left: -15px; width: 4px; height: 4px; border-radius: 50%; background: currentColor; transform: translateY(-50%); }
.event-row--dark .event-meta, .event-row--dark .text-link { color: #8fc0ff; }

/* Activities */
.activity-section { padding-block: 170px clamp(90px, 11vw, 150px); }
.activity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 56px; }
.activity-card { position: relative; overflow: hidden; background: #fff; box-shadow: 0 14px 34px rgba(11, 38, 65, 0.15); }
.activity-card::after { content: ""; position: absolute; inset: auto 0 0; height: 7px; background: linear-gradient(90deg, var(--blue), #4e70fb); }
.activity-image { aspect-ratio: 4 / 3; overflow: hidden; }
.activity-image img { width: 100%; height: 100%; object-fit: cover; }
.activity-card-copy { min-height: 225px; padding: 30px 34px 38px; text-align: center; }
.activity-card-copy h2 { font-size: clamp(1.65rem, 2.5vw, 2.35rem); }
.activity-card-copy p { max-width: 48ch; margin: 17px auto 0; color: var(--muted); font-size: 0.94rem; }

/* Advisory board */
.people-section { padding-block: 170px clamp(90px, 11vw, 155px); }
.people-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 40px 22px; }
.person-card { flex: 0 1 calc((100% - 44px) / 3); min-width: 0; overflow: hidden; background: #fff; box-shadow: 0 12px 28px rgba(8, 35, 64, 0.12); }
.person-photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; object-position: center 22%; }
.person-card-copy { min-height: 128px; padding: 23px 22px 25px; background: linear-gradient(115deg, var(--blue), #2450c4); color: #fff; }
.person-card-copy h2 { font-size: clamp(1.18rem, 1.7vw, 1.55rem); line-height: 1.05; text-transform: uppercase; }
.person-role { margin: 12px 0 0; color: #fff; font-size: 0.82rem; line-height: 1.4; }
.person-role span { display: inline; }
.role-separator { margin-inline: 5px; }

/* Partners */
.partner-sections { padding-block: 170px clamp(90px, 11vw, 150px); }
.partner-section + .partner-section { margin-top: 82px; }
.partner-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin: 0; padding: 0; list-style: none; }
.partner-grid--programme { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.partner-tile { min-width: 0; min-height: 136px; display: grid; place-items: center; padding: 24px; border: 1px solid var(--line); background: #fff; overflow-wrap: anywhere; text-align: center; }
.partner-tile--text span { font-family: var(--display); font-size: 1rem; font-weight: 900; line-height: 1.25; }
.partner-tile--logo img { width: auto; height: auto; max-width: min(190px, 90%); max-height: 78px; object-fit: contain; }
.partner-tile--yuvaa { overflow: hidden; }
.partner-tile--yuvaa img { transform: scale(1.8); }
.partner-name-list { columns: 3; column-gap: 60px; margin: 0; padding: 0; list-style: none; }
.partner-name-list li { break-inside: avoid; padding: 12px 0; border-bottom: 1px solid var(--line); color: #343b44; }
.global-partner-scope { margin-top: 82px; padding: clamp(30px, 5vw, 56px); border-left: 6px solid var(--blue); background: #eaf3ff; }
.global-partner-scope h2 { max-width: 15ch; font-size: clamp(2.2rem, 4vw, 4rem); }
.global-partner-scope > p:not(.section-kicker) { max-width: 70ch; margin: 18px 0 20px; color: #343b44; }
.global-partner-scope + .partner-section { margin-top: 38px; }

/* Contact */
.page-masthead-short { min-height: 250px; padding: 0; }
.masthead-shape { position: absolute; inset: 0; overflow: hidden; }
.masthead-shape::before { content: ""; position: absolute; right: 8%; top: -140%; width: 46%; aspect-ratio: 1; border: 90px solid rgba(255,255,255,.08); transform: rotate(45deg); }
.contact-section { margin-top: -88px; padding-top: 0; }
.contact-grid { position: relative; z-index: 3; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr); align-items: center; gap: clamp(50px, 7vw, 96px); padding: clamp(55px, 7vw, 94px); background: #fff; box-shadow: var(--shadow); }
.contact-grid > * { min-width: 0; }
.contact-copy h1 { max-width: 100%; font-size: clamp(2.4rem, 4vw, 3.65rem); line-height: 0.94; text-transform: uppercase; }
.contact-title-line { display: block; font-size: 0.8em; white-space: nowrap; }
.contact-copy .lead { max-width: 51ch; margin-top: 30px; }
.contact-copy > p:last-child { max-width: 58ch; color: var(--muted); }
.contact-card { position: relative; min-height: 330px; display: flex; flex-direction: column; justify-content: center; padding: 46px 38px; border: 2px solid var(--blue); background: #fff; box-shadow: 14px 14px 0 #dceaff; }
.contact-card-mark { position: absolute; top: 22px; right: 25px; color: var(--blue); font-size: 2rem; }
.contact-card p { margin: 0 0 5px; color: var(--muted); font-size: 0.9rem; }
.contact-card a { color: var(--blue); font-family: var(--display); font-size: clamp(1.25rem, 1.8vw, 1.65rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; overflow-wrap: anywhere; }
.contact-card > span:last-child { margin-top: 40px; font-size: 0.9rem; line-height: 1.5; }
.contact-note { padding-block: clamp(85px, 9vw, 125px); }
.contact-note-inner { display: flex; align-items: end; justify-content: space-between; gap: 35px; }
.contact-note h2 { max-width: 10ch; }
.contact-social-links { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 12px; }

/* Legal */
.legal-masthead { min-height: 330px; display: grid; align-items: center; padding: 0; }
.legal-masthead h1 { font-size: clamp(3.4rem, 7vw, 6.8rem); text-transform: uppercase; }
.legal-masthead .section-kicker { color: #b9d8ff; }
.legal-content { width: min(780px, calc(100% - 64px)); }
.legal-content .legal-date { color: var(--blue); }
.legal-content .lead { margin-block: 25px 60px; }
.legal-content h2 { margin: 52px 0 17px; color: var(--blue); font-size: clamp(1.7rem, 3vw, 2.45rem); letter-spacing: -0.02em; }
.legal-content p { color: #373f48; }
.legal-content a { color: var(--blue); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

/* 404 */
.not-found { position: relative; min-height: 100vh; display: grid; align-items: center; overflow: hidden; background: linear-gradient(145deg, var(--blue-dark), var(--blue-bright)); color: #fff; }
.not-found-shape { position: absolute; inset: 0; opacity: 0.32; background: linear-gradient(135deg, transparent 0 20%, rgba(255,255,255,.25) 20% 32%, transparent 32% 53%, #000 53% 67%, transparent 67%); }
.not-found-inner { position: relative; z-index: 1; padding-block: 70px; }
.not-found-brand { width: 72px; display: block; margin-bottom: 72px; }
.not-found-inner .section-kicker { color: #b9d8ff; }
.not-found-inner h1 { max-width: 9ch; }
.not-found-inner > p:not(.section-kicker) { max-width: 40ch; margin: 28px 0 34px; font-size: 1.1rem; }

/* Footer */
.site-footer { padding-top: 72px; background: #050505; color: #fff; }
.footer-main { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.35fr) minmax(0, 0.75fr); align-items: start; gap: clamp(35px, 7vw, 100px); padding-bottom: 62px; }
.footer-brand { display: inline-flex; align-items: center; gap: 15px; font-family: var(--display); font-size: 1.15rem; font-weight: 900; line-height: 1.1; }
.footer-brand img { width: 58px; height: 58px; object-fit: contain; }
.footer-main > p { margin: 0; color: #c9cdd3; font-size: 0.93rem; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-links a { color: #fff; font-family: var(--display); font-weight: 900; line-height: 1.3; border-bottom: 1px solid rgba(255,255,255,.45); transition: color 0.18s ease, border-color 0.18s ease; }
.footer-links a:hover { color: #94c4ff; border-color: #94c4ff; }
.footer-bottom { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #3b3b3b; color: #9399a1; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.09em; }

/* Scroll reveal */
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s cubic-bezier(.2,.72,.2,1); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.focus-grid [data-reveal]:nth-child(2), .highlight-grid [data-reveal]:nth-child(2), .people-grid [data-reveal]:nth-child(2n) { transition-delay: 0.05s; }
.focus-grid [data-reveal]:nth-child(3), .highlight-grid [data-reveal]:nth-child(3), .people-grid [data-reveal]:nth-child(3n) { transition-delay: 0.1s; }
.focus-grid [data-reveal]:nth-child(4) { transition-delay: 0.15s; }

@media (max-width: 1100px) {
  :root { --container: 960px; }
  .site-nav { grid-template-columns: repeat(4, minmax(120px, 1fr)); gap: 8px; }
  .site-nav > a, .nav-parent { padding-inline: 12px; font-size: 0.98rem; }
  .festival-hero { grid-template-columns: minmax(350px, 0.9fr) minmax(470px, 1.1fr); }
  .focus-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .focus-card { min-height: 260px; }
  .focus-card > span { margin-bottom: 40px; }
  .intro-panel--split { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 48px; }
  .contact-card { width: min(100%, 600px); }
}

@media (max-width: 960px) {
  :root { --header-height: 76px; }
  .container { width: min(var(--container), calc(100% - 40px)); }
  .site-header, .site-header.is-scrolled { min-height: 76px; }
  .header-inner { min-height: 76px; grid-template-columns: 58px minmax(0, 1fr); gap: 20px; }
  .brand, .brand img { width: 54px; height: 54px; }
  .menu-toggle { justify-self: end; display: inline-flex; align-items: center; gap: 11px; min-height: 44px; border: 0; padding: 0 4px; background: transparent; color: #fff; font-family: var(--display); font-weight: 900; cursor: pointer; }
  .menu-icon { width: 27px; display: grid; gap: 7px; }
  .menu-icon i { height: 2px; display: block; background: currentColor; transition: transform 0.18s ease; }
  .menu-toggle[aria-expanded="true"] .menu-icon i:first-child { transform: translateY(4.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] .menu-icon i:last-child { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr; gap: 0; padding: 10px 0 22px; }
  .js .site-nav { position: fixed; z-index: 90; inset: 76px 0 auto; width: 100%; max-height: calc(100dvh - 76px); display: none; overflow-y: auto; overscroll-behavior: contain; padding: 10px 20px 22px; background: rgba(0, 68, 145, 0.99); box-shadow: 0 18px 34px rgba(0, 25, 55, 0.24); }
  .js .nav-open .site-nav { display: grid; animation: mobile-menu-in 0.2s ease both; }
  .site-nav > a, .nav-parent { min-height: 54px; display: flex; align-items: center; justify-content: space-between; border-radius: 0; padding-inline: 12px; border-bottom: 1px solid rgba(255,255,255,.18); font-size: 1.12rem; font-weight: 900; }
  .nav-disclosure { position: static; }
  .submenu { position: static; width: auto; padding: 5px 12px 10px 28px; background: rgba(0,0,0,.14); color: #fff; box-shadow: none; transform: none; animation: none; }
  .submenu::before { display: none; }
  .submenu a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.12); }
  .submenu a:hover, .submenu a:focus-visible, .submenu a[aria-current="page"] { background: rgba(255,255,255,.1); color: #fff; }

  .festival-hero { min-height: 0; grid-template-columns: 1fr; }
  .hero-copy { width: min(660px, calc(100% - 48px)); justify-self: center; padding: 68px 0 45px; }
  .hero-visual { height: min(520px, 63vw); min-height: 360px; clip-path: polygon(0 10%, 14% 0, 100% 0, 100% 100%, 0 100%); }
  .benefit-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 34px; }
  .benefit-strip article:nth-child(2) { border-right: 0; }
  .benefit-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .about-grid { grid-template-columns: 1fr; }
  .about-grid h2 { max-width: 10ch; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-card { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); }
  .highlight-card img { height: 100%; aspect-ratio: 4 / 3; }
  .highlight-card > div { min-height: 0; }
  .marquee-heading { align-items: start; flex-direction: column; }

  .intro-panel--split { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .masthead-layout { grid-template-columns: minmax(0, 1fr); transform: none; }
  .masthead-media { height: 380px; }
  .masthead-layout .intro-panel { min-height: 0; }
  .event-list { padding-top: 90px; }
  .event-row-inner { grid-template-columns: minmax(0, 1fr); gap: 42px; }
  .event-row--reverse .event-media { order: 0; }
  .event-media { max-width: 680px; }
  .activity-grid { gap: 32px; }
  .person-card { flex-basis: calc((100% - 22px) / 2); }
  .partner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .partner-name-list { columns: 2; }
  .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .contact-copy h1 { max-width: 11ch; }
  .contact-card { max-width: 600px; }
  .contact-note-inner { align-items: start; flex-direction: column; }
  .footer-main { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
  .footer-links { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 14px 28px; }
  .footer-links a { min-height: 44px; display: inline-flex; align-items: center; }
  .text-link, .arrow-link { min-height: 44px; padding-block: 9px; }
}

@media (max-width: 640px) {
  .container { width: calc(100% - 36px); }
  h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  h2 { font-size: clamp(2.15rem, 10vw, 3rem); }
  .section-pad { padding-block: 78px; }
  .hero-copy { width: calc(100% - 36px); padding-top: 54px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-intro { font-size: 0.98rem; }
  .hero-visual { height: clamp(280px, 63vw, 400px); min-height: 0; }
  .hero-tag { max-width: calc(100% - 18px); padding: 14px 18px; font-size: 0.72rem; }
  .benefit-strip { width: calc(100% - 36px); grid-template-columns: 1fr; }
  .benefit-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-strip article:last-child { border-bottom: 0; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card { min-height: 250px; }
  .highlight-card { display: block; }
  .highlight-card img { height: auto; }
  .marquee-track { min-height: 96px; gap: 25px; }
  .festival-cta { min-height: 500px; }

  .page-masthead { min-height: 270px; padding-block: 54px 76px; }
  .intro-panel { padding: 34px 27px; }
  .page-masthead > .container:not(.masthead-layout) > .intro-panel { margin-bottom: -150px; }
  .intro-panel h1 { font-size: clamp(2.85rem, 14vw, 4.5rem); }
  .page-masthead--media { padding-bottom: 0; }
  .masthead-layout { width: calc(100% - 36px); grid-template-columns: minmax(0, 1fr); }
  .masthead-media { height: 280px; }
  [data-page="events"] .masthead-layout .intro-panel h1 { font-size: clamp(2.15rem, 10vw, 3.5rem); }
  .event-list { padding-top: 72px; }
  .event-row { padding-block: 72px; }
  .activity-section, .people-section, .partner-sections { padding-top: 140px; }
  .activity-grid { grid-template-columns: 1fr; }
  .activity-card-copy { min-height: 0; padding: 25px 22px 32px; }
  .person-card { flex-basis: 100%; }
  .person-photo { aspect-ratio: 1 / 0.92; }
  .partner-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-tile { min-height: 105px; padding: 15px; }
  .partner-name-list { columns: 1; }
  .contact-section { margin-top: -60px; }
  .contact-grid { width: calc(100% - 36px); padding: 38px 25px 48px; }
  .contact-copy h1 { font-size: clamp(1.9rem, 9.5vw, 2.5rem); }
  .contact-card { min-height: 290px; padding: 42px 25px 35px; box-shadow: 9px 9px 0 #dceaff; }
  .legal-content { width: calc(100% - 36px); }
  .legal-content .lead { margin-bottom: 45px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-column: auto; flex-direction: column; }
  .footer-bottom { min-height: 90px; align-items: flex-start; justify-content: center; flex-direction: column; padding-block: 20px; }
}

@media (max-width: 480px) {
  .advisory-board-page .intro-panel--split h1,
  .partners-page .intro-panel--split h1 { font-size: clamp(2rem, 8.4vw, 2.35rem); white-space: normal; text-wrap: balance; }
  .event-meta { display: grid; gap: 5px; }
  .event-meta span + span::before { display: none; }
  .partner-grid { grid-template-columns: minmax(0, 1fr); }
  .partner-tile { min-height: 96px; }
}

@media (max-width: 360px) {
  .contact-grid { padding-inline: 20px; }
}

@keyframes mobile-menu-in {
  from { opacity: 0; transform: translateY(-8px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .marquee { overflow: visible; }
  .marquee-track { width: auto; flex-wrap: wrap; justify-content: center; padding: 28px 20px; animation: none; }
  .marquee-track > :nth-child(n + 13) { display: none; }
  .js [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .page-masthead::before { display: none !important; }
  body { color: #000; font-size: 11pt; }
  .legal-content { width: 100%; padding: 0; }
  .legal-content h2 { color: #000; break-after: avoid; }
  a { color: #000 !important; text-decoration: none !important; }
}
