:root {
  --ink: #171813;
  --ink-soft: #2b2c26;
  --paper: #f4efe5;
  --paper-deep: #e7dfd0;
  --white: #fffdf7;
  --gold: #dfa82d;
  --gold-light: #f2cb6f;
  --rust: #8d4730;
  --sage: #9ba381;
  --line: rgba(23, 24, 19, .16);
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Baskerville, Georgia, serif;
  --sans: Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  overflow-x: clip;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.is-locked { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }

.shell { width: min(1240px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 20px; top: -100px; z-index: 9999; padding: 12px 18px;
  background: var(--gold); color: var(--ink); font-weight: 800;
}
.skip-link:focus { top: 20px; }

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: .98; }
h1, h2 { font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; }
h2 { margin-bottom: 0; font-size: clamp(3rem, 6vw, 6.6rem); }
h1 em, h2 em { color: var(--gold); font-weight: 400; }
.eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 26px;
  font-size: .73rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
}
.eyebrow span { width: 34px; height: 1px; background: var(--gold); }
.eyebrow-light { color: rgba(255, 253, 247, .74); }
.lead { font-family: var(--serif); font-size: clamp(1.45rem, 2.2vw, 2.05rem); line-height: 1.35; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 28px;
  min-height: 58px; padding: 0 24px; border: 1px solid transparent; border-radius: 0;
  font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  transition: transform .25s var(--ease), background-color .25s, color .25s;
}
.button:hover { transform: translateY(-3px); }
.button:focus-visible, a:focus-visible, button:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }
.button-gold { background: var(--gold); color: var(--ink); }
.button-gold:hover { background: var(--gold-light); }
.button-dark { background: var(--ink); color: var(--white); cursor: pointer; }
.button-dark:hover { background: var(--rust); }
.text-link { font-weight: 750; font-size: .86rem; letter-spacing: .04em; }
.text-link span { display: inline-block; margin-left: 6px; transition: transform .2s; }
.text-link:hover span { transform: translateX(5px); }
.text-link-light { color: var(--white); }

.site-header {
  position: fixed; z-index: 1000; top: 0; left: 0; width: 100%;
  background: rgba(244, 239, 229, .96); border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s, transform .3s var(--ease);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 10px 35px rgba(23, 24, 19, .06); }
.header-inner {
  width: min(1440px, calc(100% - 48px)); height: 88px; margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { height: 100%; flex: 0 0 auto; display: flex; align-items: center; }
.brand img { width: 84px; height: 80px; object-fit: contain; object-position: left center; mix-blend-mode: multiply; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 42px); }
.site-nav > a:not(.nav-cta) {
  position: relative; font-size: .78rem; font-weight: 700; letter-spacing: .04em;
}
.site-nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px;
  background: var(--rust); transform: scaleX(0); transform-origin: right; transition: transform .25s var(--ease);
}
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  padding: 12px 17px; border: 1px solid var(--ink); font-size: .68rem;
  font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--ink); color: var(--white); }
.nav-toggle { display: none; }

.hero {
  position: relative; min-height: 850px; height: 100svh; max-height: 1040px;
  margin-top: 88px; overflow: hidden; background: #171813; color: var(--white);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(17,18,14,.9) 0%, rgba(17,18,14,.68) 32%, rgba(17,18,14,.08) 72%), linear-gradient(0deg, rgba(17,18,14,.42), transparent 45%);
}
.hero-content { position: relative; z-index: 2; padding-top: clamp(155px, 21vh, 235px); }
.hero h1 { max-width: 930px; margin: 0 0 30px; font-size: clamp(4.2rem, 8.5vw, 9rem); }
.hero-copy { max-width: 600px; margin-bottom: 38px; font-family: var(--serif); font-size: clamp(1.2rem, 1.8vw, 1.65rem); line-height: 1.45; color: rgba(255,253,247,.9); }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.hero-note {
  position: absolute; z-index: 2; right: 0; bottom: 0; width: 292px; min-height: 200px; padding: 30px 34px;
  display: flex; flex-direction: column; justify-content: center; background: var(--gold); color: var(--ink);
}
.hero-note-label { margin-bottom: 14px; font-size: .66rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-note strong { font-family: var(--serif); font-size: 2.6rem; line-height: 1; font-weight: 400; }
.hero-note > span:last-child { margin-top: 8px; font-size: .78rem; font-weight: 650; }
.scroll-cue {
  position: absolute; z-index: 2; left: 50%; bottom: 34px; display: flex; flex-direction: column;
  align-items: center; gap: 10px; color: rgba(255,255,255,.72); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
}
.scroll-cue i { width: 1px; height: 42px; background: rgba(255,255,255,.45); overflow: hidden; }
.scroll-cue i::after { content: ""; display: block; width: 1px; height: 18px; background: var(--gold); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0% { transform: translateY(-18px); } 100% { transform: translateY(42px); } }

.marquee { overflow: hidden; background: var(--gold); border-block: 1px solid var(--ink); }
.marquee-track {
  display: flex; align-items: center; width: max-content; padding: 17px 0;
  animation: marquee 28s linear infinite; font-family: var(--serif); font-size: 1.05rem; font-style: italic;
}
.marquee-track span { padding: 0 25px; }
.marquee-track b { font-size: .75rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro-grid { display: grid; grid-template-columns: 70px 1fr 1fr; gap: clamp(30px, 6vw, 95px); align-items: start; }
.section-index { padding-top: 12px; color: var(--rust); font-size: .75rem; font-weight: 800; letter-spacing: .12em; }
.intro-heading h2 { font-size: clamp(3.2rem, 5.5vw, 6.2rem); }
.intro-body { padding-top: 54px; }
.intro-body > p:not(.lead) { max-width: 610px; color: #5c5b52; }
.principle { display: grid; grid-template-columns: 48px 1fr; gap: 16px; margin-top: 44px; padding-top: 32px; border-top: 1px solid var(--line); }
.principle span { color: var(--gold); font-family: var(--serif); font-size: 4.5rem; line-height: .75; }
.principle p { margin: 0; font-family: var(--serif); font-size: 1.25rem; font-style: italic; line-height: 1.45; }

.programmes { background: var(--ink); color: var(--white); }
.section-top { display: grid; grid-template-columns: 1.25fr .55fr; gap: 80px; align-items: end; margin-bottom: 75px; }
.section-top > p { max-width: 430px; margin-bottom: 8px; color: rgba(255,253,247,.65); }
.pillar-list { border-top: 1px solid rgba(255,255,255,.18); }
.pillar {
  display: grid; grid-template-columns: 70px 150px 1fr; gap: clamp(24px, 5vw, 80px);
  padding: 58px 0; border-bottom: 1px solid rgba(255,255,255,.18);
}
.pillar-number { color: var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.pillar-icon { width: 110px; height: 110px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; }
.pillar-icon svg { width: 58px; fill: none; stroke: var(--gold); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.pillar-copy { display: grid; grid-template-columns: minmax(260px, .9fr) minmax(300px, 1fr) 180px; gap: 42px; align-items: start; }
.pillar-kicker { margin: 4px 0 0; color: var(--gold-light); font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pillar h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.2vw, 3.75rem); font-weight: 400; letter-spacing: -.03em; }
.pillar-copy > p:nth-of-type(2) { margin: 4px 0 0; color: rgba(255,255,255,.62); }
.pillar ul { margin: 3px 0 0; padding: 0; list-style: none; font-size: .74rem; font-weight: 750; text-transform: uppercase; letter-spacing: .06em; }
.pillar li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.12); }

.awards { padding-bottom: 0; }
.awards-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(45px, 8vw, 110px); align-items: center; }
.awards-photo { position: relative; min-height: 610px; }
.awards-photo > img { width: 100%; height: 610px; object-fit: cover; object-position: center; }
.deadline-card {
  position: absolute; right: -38px; bottom: -38px; width: 210px; height: 210px; padding: 24px;
  display: grid; grid-template-columns: 1fr auto; align-items: end; background: var(--rust); color: var(--white);
}
.deadline-card > span { grid-column: 1 / -1; align-self: start; font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.deadline-card strong { font-family: var(--serif); font-size: 5rem; font-weight: 400; line-height: .75; }
.deadline-card p { margin: 0; font-size: .8rem; font-weight: 800; line-height: 1.25; text-transform: uppercase; }
.awards-content h2 { margin-bottom: 32px; font-size: clamp(3.5rem, 5.7vw, 6.5rem); }
.awards-content .lead { max-width: 560px; color: #4d4d45; }
.awards-content .button { margin-top: 18px; border: 0; }
.categories { display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 120px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.category { min-height: 300px; padding: 30px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: background .3s, color .3s, transform .3s var(--ease); }
.category:hover { z-index: 2; background: var(--gold); transform: translateY(-12px); }
.category > span { display: block; margin-bottom: 54px; color: var(--rust); font-size: .7rem; font-weight: 800; }
.category h3 { margin-bottom: 22px; font-family: var(--serif); font-size: 2rem; font-weight: 400; letter-spacing: -.025em; }
.category p { margin: 0; color: #65645c; font-size: .85rem; line-height: 1.55; }
.category:hover p { color: var(--ink-soft); }

.judging { padding-top: 150px; }
.judging-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.judging-intro h2 { font-size: clamp(3rem, 5vw, 5.8rem); }
.judging-intro > p:last-child { max-width: 520px; margin-top: 32px; color: #5e5d55; }
.scorecard { padding: 48px; background: var(--paper-deep); }
.score-row + .score-row { margin-top: 31px; }
.score-row div { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 10px; }
.score-row span { font-size: .78rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.score-row strong { color: var(--rust); font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.score-row i { display: block; position: relative; height: 3px; background: rgba(23,24,19,.14); }
.score-row i::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--score); background: var(--gold); transform-origin: left; }

.vision { position: relative; overflow: hidden; background: var(--rust); color: var(--white); }
.vision-pattern {
  position: absolute; inset: 0; opacity: .1;
  background-image: linear-gradient(30deg, transparent 45%, var(--paper) 45%, var(--paper) 50%, transparent 50%), linear-gradient(-30deg, transparent 45%, var(--paper) 45%, var(--paper) 50%, transparent 50%);
  background-size: 52px 90px;
}
.vision-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 55px 100px; }
.vision-title h2 { font-size: clamp(3.3rem, 5.5vw, 6.3rem); }
.vision-title h2 em { color: var(--gold-light); }
.vision-copy { padding-top: 57px; }
.vision-copy .lead { color: var(--white); }
.vision-copy > p:last-child { color: rgba(255,255,255,.68); }
.timeline { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 65px; border-top: 1px solid rgba(255,255,255,.35); }
.timeline-item { position: relative; padding: 30px 35px 0 0; }
.timeline-item::before { content: ""; position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--gold-light); }
.timeline-item > span { color: var(--gold-light); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.timeline-item h3 { margin: 22px 0 14px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.timeline-item p { max-width: 245px; color: rgba(255,255,255,.68); font-size: .86rem; }

.partners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(70px, 12vw, 180px); align-items: center; }
.partner-main h2 { font-size: clamp(3.4rem, 5.5vw, 6.4rem); }
.partner-main > p:not(.eyebrow) { max-width: 520px; margin: 32px 0; color: #5e5d55; font-size: 1.12rem; }
.partner-options { margin: 0; padding: 0; list-style: none; }
.partner-options li { display: grid; grid-template-columns: 50px 1fr; gap: 22px; padding: 29px 0; border-bottom: 1px solid var(--line); }
.partner-options li:first-child { border-top: 1px solid var(--line); }
.partner-options span { padding-top: 7px; color: var(--rust); font-size: .7rem; font-weight: 800; }
.partner-options h3 { margin: 0; font-family: var(--serif); font-size: clamp(1.65rem, 2.4vw, 2.3rem); font-weight: 400; line-height: 1.08; }
.partner-options h3 small { font-family: var(--sans); font-size: .7rem; font-weight: 800; letter-spacing: .06em; }

.contact { padding: 120px 0; background: var(--ink); color: var(--white); }
.contact-inner h2 { max-width: 950px; font-size: clamp(4rem, 8vw, 8.6rem); }
.contact-actions { display: flex; align-items: center; gap: 45px; margin-top: 52px; }
.contact-actions p { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; }

.site-footer { padding: 75px 0 24px; background: #0f100d; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr; gap: 70px; padding-bottom: 65px; }
.footer-brand img { width: 230px; aspect-ratio: 1; object-fit: contain; padding: 8px; background: #fff; }
.footer-brand p { margin-top: 22px; color: rgba(255,255,255,.48); font-family: var(--serif); font-style: italic; }
.site-footer h2 { margin: 0 0 20px; color: rgba(255,255,255,.42); font-family: var(--sans); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; }
.footer-links a { padding: 4px 0; font-family: var(--serif); font-size: 1.08rem; }
.footer-links a:hover { color: var(--gold); }
.social-list { display: flex; flex-wrap: wrap; gap: 9px; }
.social-list a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; font-size: .72rem; font-weight: 800; transition: background .2s, color .2s; }
.social-list a:hover { background: var(--gold); color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .7rem; letter-spacing: .04em; }
.footer-bottom p { margin: 0; }

.nomination-dialog {
  width: min(760px, calc(100% - 32px)); max-height: calc(100vh - 48px); padding: 54px;
  border: 0; background: var(--paper); color: var(--ink); box-shadow: 0 25px 100px rgba(0,0,0,.4);
}
.nomination-dialog::backdrop { background: rgba(15,16,13,.78); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; top: 20px; right: 24px; border: 0; background: transparent; font-size: 2rem; cursor: pointer; }
.dialog-heading h2 { margin-bottom: 24px; font-size: clamp(2.4rem, 5vw, 4.6rem); }
.dialog-heading > p:last-child { max-width: 620px; color: #5f5e55; }
.dialog-details { display: grid; grid-template-columns: 1.2fr .8fr; gap: 35px; margin: 38px 0; padding: 30px 0; border-block: 1px solid var(--line); }
.dialog-details h3 { margin-bottom: 15px; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.dialog-details ul { margin: 0; padding-left: 18px; color: #5f5e55; font-size: .9rem; }
.dialog-deadline { padding: 24px; background: var(--gold); }
.dialog-deadline span { display: block; font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.dialog-deadline strong { display: block; margin: 8px 0; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.dialog-deadline p { margin: 0; font-size: .8rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .site-nav { gap: 18px; }
  .site-nav > a:not(.nav-cta) { display: none; }
  .pillar-copy { grid-template-columns: 1fr 1.2fr; }
  .pillar-copy ul { grid-column: 2; }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .awards-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
  .hero-note { width: 245px; min-height: 175px; }
}

@media (max-width: 820px) {
  .shell { width: min(100% - 34px, 680px); }
  .section { padding: 84px 0; }
  .header-inner { width: calc(100% - 34px); height: 76px; }
  .brand img { width: 70px; height: 68px; }
  .nav-toggle { position: relative; z-index: 2; display: grid; gap: 7px; padding: 12px 4px; border: 0; background: transparent; cursor: pointer; }
  .nav-toggle span:not(.sr-only) { display: block; width: 28px; height: 2px; background: var(--ink); transition: transform .25s; }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4.5px) rotate(-45deg); }
  .site-nav {
    position: fixed; inset: 76px 0 auto; display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 25px 24px 34px; background: var(--paper); border-top: 1px solid var(--line);
    transform: translateY(-130%); visibility: hidden; transition: transform .35s var(--ease), visibility .35s;
  }
  .site-nav.is-open { transform: none; visibility: visible; box-shadow: 0 30px 45px rgba(23,24,19,.13); }
  .site-nav > a:not(.nav-cta) { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
  .site-nav > a::after { display: none; }
  .nav-cta { margin-top: 22px; text-align: center; }
  .hero { height: 860px; min-height: 0; margin-top: 76px; }
  .hero-image { object-position: 58% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(17,18,14,.82), rgba(17,18,14,.25)), linear-gradient(0deg, rgba(17,18,14,.7), transparent 60%); }
  .hero-content { padding-top: 140px; }
  .hero h1 { font-size: clamp(3.7rem, 14vw, 6.3rem); }
  .hero-copy { max-width: 540px; }
  .hero-note { right: 17px; bottom: 17px; width: 205px; min-height: 145px; padding: 22px; }
  .hero-note strong { font-size: 2.05rem; }
  .scroll-cue { display: none; }
  .intro-grid { grid-template-columns: 42px 1fr; gap: 30px; }
  .intro-body { grid-column: 2; padding-top: 10px; }
  .section-top, .awards-grid, .judging-grid, .vision-grid, .partners-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-top { margin-bottom: 55px; }
  .section-top > p { max-width: 610px; }
  .pillar { grid-template-columns: 45px 90px 1fr; gap: 22px; }
  .pillar-icon { width: 76px; height: 76px; }
  .pillar-icon svg { width: 40px; }
  .pillar-copy { grid-template-columns: 1fr; gap: 18px; }
  .pillar-copy ul { grid-column: auto; }
  .awards-photo { min-height: auto; }
  .awards-photo > img { height: 480px; }
  .awards-content { padding-top: 30px; }
  .categories { grid-template-columns: repeat(2, 1fr); margin-top: 95px; }
  .category { min-height: 265px; }
  .judging { padding-top: 105px; }
  .vision-copy { padding-top: 0; }
  .timeline { grid-template-columns: repeat(2, 1fr); margin-top: 20px; }
  .timeline-item { margin-top: 30px; }
  .contact-actions { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1.3fr .7fr; }
  .footer-socials { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 30px); }
  .section { padding: 72px 0; }
  .hero { height: 770px; }
  .hero-content { padding-top: 102px; }
  .hero h1 { font-size: clamp(3.4rem, 18vw, 5.1rem); }
  .hero-copy { font-size: 1.08rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-note { display: none; }
  .intro-grid { grid-template-columns: 1fr; }
  .section-index { display: none; }
  .intro-body { grid-column: auto; }
  .intro-heading h2 { font-size: 3.15rem; }
  .pillar { grid-template-columns: 32px 1fr; padding: 42px 0; }
  .pillar-icon { grid-column: 2; width: 70px; height: 70px; }
  .pillar-copy { grid-column: 2; }
  .awards-photo > img { height: 380px; }
  .deadline-card { right: 10px; bottom: -55px; width: 170px; height: 170px; }
  .deadline-card strong { font-size: 4rem; }
  .awards-content { padding-top: 56px; }
  .categories { grid-template-columns: 1fr; margin-top: 70px; }
  .category { min-height: 0; }
  .category > span { margin-bottom: 28px; }
  .scorecard { padding: 30px 22px; }
  .score-row span { font-size: .68rem; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-item { padding-left: 25px; border-left: 1px solid rgba(255,255,255,.3); }
  .timeline-item::before { top: 0; left: -6px; }
  .contact { padding: 85px 0; }
  .contact-inner h2 { font-size: 3.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-socials { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .nomination-dialog { padding: 48px 24px 30px; }
  .dialog-details { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Multi-page additions */
.site-nav a[aria-current="page"] { color: var(--rust); }
.site-nav a[aria-current="page"]::after { transform: scaleX(1) !important; }
.arrow-link {
  display: inline-flex; align-items: center; gap: 34px; margin-top: 22px; padding-bottom: 7px;
  border-bottom: 1px solid var(--ink); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.arrow-link span { transition: transform .2s var(--ease); }
.arrow-link:hover span { transform: translateX(5px); }

/* Home */
.pathways { background: var(--ink); color: var(--white); }
.section-top-dark > p { color: rgba(255,253,247,.65); }
.pathway-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.pathway-card {
  position: relative; min-height: 470px; padding: 34px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.pathway-card:hover { z-index: 2; background: var(--gold); color: var(--ink); transform: translateY(-10px); }
.pathway-card > span { display: block; color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .1em; }
.pathway-card:hover > span { color: var(--rust); }
.pathway-symbol { height: 155px; display: flex; align-items: center; font-family: var(--serif); font-size: 4.5rem; color: var(--gold); }
.pathway-card:hover .pathway-symbol { color: var(--ink); }
.pathway-card > p { color: var(--gold-light); font-size: .69rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.pathway-card:hover > p { color: var(--rust); }
.pathway-card h3 { margin: 0; font-family: var(--serif); font-size: clamp(2.1rem, 3.3vw, 3.7rem); font-weight: 400; letter-spacing: -.035em; }
.pathway-card > i { position: absolute; right: 32px; bottom: 29px; font-style: normal; font-size: 1.2rem; }
.home-awards-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(55px, 8vw, 115px); align-items: center; }
.home-awards-photo { position: relative; }
.home-awards-photo img { width: 100%; height: 610px; object-fit: cover; }
.home-awards-photo > span { position: absolute; right: -24px; bottom: -24px; padding: 25px 28px; background: var(--rust); color: var(--white); font-family: var(--serif); font-size: 1.65rem; }
.home-awards-copy h2 { margin-bottom: 30px; font-size: clamp(3.4rem, 5.5vw, 6.2rem); }
.home-awards-copy > p:not(.eyebrow):not(.lead) { color: #5c5b52; }
.home-awards-copy .button { margin-top: 19px; }
.home-vision { position: relative; overflow: hidden; padding: 110px 0; background: var(--rust); color: var(--white); }
.home-vision-pattern { position: absolute; inset: 0; opacity: .1; background-image: linear-gradient(30deg, transparent 45%, var(--paper) 45%, var(--paper) 50%, transparent 50%), linear-gradient(-30deg, transparent 45%, var(--paper) 45%, var(--paper) 50%, transparent 50%); background-size: 52px 90px; }
.home-vision-inner { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; }
.home-vision-inner > .eyebrow { grid-column: 1 / -1; margin-bottom: -35px; }
.home-vision h2 { font-size: clamp(3.7rem, 6vw, 6.8rem); }
.home-vision h2 em { color: var(--gold-light); }
.home-vision-inner > div p { margin-bottom: 30px; color: rgba(255,255,255,.75); font-family: var(--serif); font-size: 1.4rem; line-height: 1.45; }

/* Shared inner-page heroes and navigation */
.page-hero { position: relative; min-height: 650px; margin-top: 88px; overflow: hidden; color: var(--white); }
.page-hero-rust { background: var(--rust); }
.page-hero-dark { background: var(--ink); }
.page-hero-gold { background: var(--gold); color: var(--ink); }
.page-hero-pattern { position: absolute; inset: 0; opacity: .11; background-image: linear-gradient(30deg, transparent 45%, var(--paper) 45%, var(--paper) 50%, transparent 50%), linear-gradient(-30deg, transparent 45%, var(--paper) 45%, var(--paper) 50%, transparent 50%); background-size: 58px 100px; }
.page-hero-orbit { position: absolute; right: -120px; top: -190px; width: 760px; height: 760px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.page-hero-orbit::before, .page-hero-orbit::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.page-hero-orbit::before { inset: 105px; }.page-hero-orbit::after { inset: 215px; }
.page-hero-orbit span { position: absolute; left: 77px; bottom: 130px; width: 15px; height: 15px; border-radius: 50%; background: var(--gold); }
.page-hero-orbit i { position: absolute; inset: 315px; border-radius: 50%; background: var(--rust); }
.page-hero-sun { position: absolute; right: -170px; top: -280px; width: 760px; height: 760px; border: 1px solid rgba(23,24,19,.2); border-radius: 50%; }
.page-hero-sun::before, .page-hero-sun::after { content: ""; position: absolute; border: 1px solid rgba(23,24,19,.16); border-radius: 50%; }
.page-hero-sun::before { inset: 110px; }.page-hero-sun::after { inset: 230px; background: rgba(244,239,229,.2); }
.page-hero-inner { position: relative; z-index: 2; min-height: 650px; padding-block: 90px; display: grid; grid-template-columns: 1.35fr .65fr; gap: 90px; align-items: end; }
.page-hero-inner h1 { max-width: 950px; margin: 0; font-family: var(--serif); font-size: clamp(4.3rem, 7.7vw, 8.5rem); font-weight: 400; letter-spacing: -.05em; line-height: .92; }
.page-hero-inner h1 em { color: var(--gold-light); font-weight: 400; }
.page-hero-gold h1 em { color: var(--rust); }
.page-hero-inner > p { max-width: 440px; margin: 0 0 12px; color: rgba(255,255,255,.7); font-family: var(--serif); font-size: 1.45rem; line-height: 1.45; }
.page-hero-gold .page-hero-inner > p { color: rgba(23,24,19,.75); }
.breadcrumb { display: flex; gap: 10px; margin-bottom: 65px; color: rgba(255,255,255,.5); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb-dark { color: rgba(23,24,19,.6); }
.section-nav { position: sticky; z-index: 50; top: 88px; background: var(--paper); border-bottom: 1px solid var(--line); }
.section-nav .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.section-nav a { padding: 19px 22px; border-right: 1px solid var(--line); font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.section-nav a:first-child { border-left: 1px solid var(--line); }
.section-nav a span { margin-right: 12px; color: var(--rust); }
.section-nav a:hover { background: var(--gold); }

/* About */
.editorial-grid { display: grid; grid-template-columns: 70px 1fr 1fr; gap: clamp(35px, 6vw, 95px); align-items: start; }
.display-number { margin: 10px 0 0; color: var(--rust); font-size: .72rem; font-weight: 800; letter-spacing: .14em; }
.editorial-grid h2, .award-intro-grid h2 { font-size: clamp(3.2rem, 5.4vw, 6rem); }
.editorial-copy { padding-top: 58px; }
.editorial-copy > p:not(.lead) { color: #5c5b52; }
.beliefs { background: var(--ink); color: var(--white); }
.belief-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.17); border-left: 1px solid rgba(255,255,255,.17); }
.belief-grid article { min-height: 330px; padding: 32px; border-right: 1px solid rgba(255,255,255,.17); border-bottom: 1px solid rgba(255,255,255,.17); }
.belief-grid article > span { display: block; margin-bottom: 74px; color: var(--gold); font-size: .7rem; font-weight: 800; }
.belief-grid h3 { margin-bottom: 20px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.belief-grid p { margin: 0; color: rgba(255,255,255,.6); font-size: .88rem; }
.bridge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(65px, 10vw, 150px); align-items: center; }
.bridge-visual { min-height: 480px; display: grid; grid-template-columns: 1fr 80px 110px 80px 1fr; align-items: center; padding: 45px; background: var(--paper-deep); }
.bridge-visual span { font-family: var(--serif); font-size: 1.35rem; text-align: center; }
.bridge-visual i { height: 1px; background: var(--rust); }
.bridge-visual b { width: 110px; height: 110px; display: grid; place-items: center; border-radius: 50%; background: var(--gold); font-family: var(--serif); font-size: 2.4rem; font-weight: 400; }
.bridge-copy h2 { font-size: clamp(3.2rem, 5vw, 5.8rem); }
.bridge-copy .lead { margin-top: 32px; }
.bridge-copy > p:not(.eyebrow):not(.lead) { color: #5d5c54; }
.next-page { background: var(--gold); border-top: 1px solid var(--ink); }
.next-page-link { min-height: 205px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.next-page-link > span { font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.next-page-link strong { font-family: var(--serif); font-size: clamp(2rem, 4vw, 4rem); font-weight: 400; }
.next-page-link i { display: inline-block; margin-left: 24px; font-style: normal; transition: transform .25s; }
.next-page-link:hover i { transform: translateX(10px); }

/* Programmes */
.programme-detail { scroll-margin-top: 150px; }
.programme-detail-tint { background: var(--paper-deep); }
.programme-grid { display: grid; grid-template-columns: 150px 1fr 1fr; gap: clamp(35px, 6vw, 90px); align-items: start; }
.programme-marker > span { display: block; margin-bottom: 32px; color: var(--rust); font-size: .72rem; font-weight: 800; }
.pillar-icon-dark { border-color: var(--line); }
.pillar-icon-dark svg { stroke: var(--rust); }
.programme-heading h2 { font-size: clamp(3.5rem, 5.5vw, 6.3rem); }
.programme-copy { padding-top: 54px; }
.programme-copy > p:not(.lead) { color: #5f5e56; }
.activity-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.activity-list span { padding: 8px 12px; border: 1px solid var(--line); font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.wellness-wheel { display: grid; grid-template-columns: repeat(5, 1fr); margin: 34px 0; border: 1px solid var(--line); }
.wellness-wheel span { min-height: 80px; display: grid; place-items: center; padding: 8px; border-right: 1px solid var(--line); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.wellness-wheel span:last-child { border-right: 0; }
.image-statement { position: relative; min-height: 650px; overflow: hidden; background: var(--ink); }
.image-statement img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.55); }
.image-statement blockquote { position: relative; z-index: 2; width: min(1240px, calc(100% - 48px)); margin: 0 auto; padding-top: 195px; color: var(--white); font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 7rem); font-style: italic; line-height: 1; }
.event-heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 80px; align-items: end; margin-bottom: 65px; }
.event-heading h2 { font-size: clamp(3.3rem, 5.4vw, 6.1rem); }
.event-heading > p { color: #5f5e56; }
.event-cards { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.event-card { min-height: 340px; padding: 34px; border-right: 1px solid var(--line); }
.event-card:last-child { border-right: 0; }
.event-card > span { display: block; margin-bottom: 70px; color: var(--rust); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.event-card h3 { font-family: var(--serif); font-size: 2.25rem; font-weight: 400; }
.event-card p { margin: 0; color: #5f5e56; font-size: .88rem; }
.event-card-gold { background: var(--gold); }.event-card-gold p { color: var(--ink-soft); }
.audience { background: var(--rust); color: var(--white); }
.audience-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 100px; align-items: center; }
.audience h2 { font-size: clamp(3.5rem, 5.6vw, 6.4rem); }.audience h2 em { color: var(--gold-light); }
.audience-list { display: flex; flex-wrap: wrap; gap: 10px; }
.audience-list span { padding: 12px 16px; border: 1px solid rgba(255,255,255,.35); font-family: var(--serif); font-size: 1.1rem; }

/* Youth Awards */
.award-hero { min-height: 740px; margin-top: 88px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); overflow: hidden; background: var(--paper); }
.award-hero-copy { min-width: 0; display: flex; align-items: center; padding: 85px max(45px, calc((100vw - 1240px)/2)) 70px max(24px, calc((100vw - 1240px)/2)); }
.award-hero-copy > div { max-width: 650px; }
.award-hero-copy .breadcrumb { margin-bottom: 55px; color: #77756b; }
.award-hero-copy h1 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(4rem, 6.7vw, 7.4rem); font-weight: 400; letter-spacing: -.05em; line-height: .89; }
.award-hero-copy h1 em { color: var(--rust); font-weight: 400; }
.award-hero-copy > div > p:not(.breadcrumb):not(.eyebrow) { max-width: 500px; font-family: var(--serif); font-size: 1.35rem; }
.award-hero-copy .button { margin-top: 12px; }
.award-hero-image { position: relative; min-width: 0; }
.award-hero-image > img { width: 100%; height: 100%; object-fit: cover; }
.award-deadline { position: absolute; left: 0; bottom: 0; width: 220px; height: 200px; padding: 26px; display: grid; grid-template-columns: 1fr auto; align-items: end; background: var(--gold); }
.award-deadline > span { grid-column: 1 / -1; align-self: start; font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.award-deadline strong { font-family: var(--serif); font-size: 5rem; line-height: .75; font-weight: 400; }.award-deadline p { margin: 0; font-size: .8rem; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.award-intro-grid { display: grid; grid-template-columns: 70px 1fr 1fr; gap: clamp(35px, 6vw, 95px); align-items: start; }
.award-intro-grid > div:last-child { padding-top: 54px; }.award-intro-grid > div:last-child > p:last-child { color: #5f5e56; }
.award-categories { background: var(--ink); color: var(--white); }
.award-category-list { border-top: 1px solid rgba(255,255,255,.18); }
.award-category { display: grid; grid-template-columns: 60px 1.2fr .8fr; gap: 55px; align-items: start; padding: 44px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.award-category > span { color: var(--gold); font-size: .7rem; font-weight: 800; }
.award-category > div p { color: var(--gold-light); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.award-category h3 { max-width: 600px; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.7rem); font-weight: 400; }
.award-category ul { margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.62); font-size: .78rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.award-category li { padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.eligibility-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); }
.eligibility-heading h2 { font-size: clamp(3.3rem, 5.2vw, 6rem); }.eligibility-heading > p:last-child { margin-top: 30px; color: #5f5e56; }
.eligibility-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.eligibility-list li { display: grid; grid-template-columns: 65px 1fr; gap: 25px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.eligibility-list li > span { width: 55px; height: 55px; display: grid; place-items: center; border: 1px solid var(--rust); border-radius: 50%; color: var(--rust); font-family: var(--serif); font-size: 1.1rem; }
.eligibility-list h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }.eligibility-list p { margin: 0; color: #67665e; font-size: .87rem; }
.judging-process { background: var(--rust); color: var(--white); }
.compact-heading h2 { max-width: 820px; font-size: clamp(3.4rem, 5.5vw, 6.3rem); }.compact-heading h2 em { color: var(--gold-light); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); margin: 70px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.3); }
.process-steps li { position: relative; padding: 35px 25px 0 0; }.process-steps li::before { content: ""; position: absolute; top: -6px; left: 0; width: 11px; height: 11px; border-radius: 50%; background: var(--gold-light); }
.process-steps span { color: var(--gold-light); font-size: .68rem; font-weight: 800; }.process-steps h3 { margin: 25px 0 14px; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }.process-steps p { color: rgba(255,255,255,.67); font-size: .84rem; }
.nominate { scroll-margin-top: 88px; }
.nominate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(65px, 10vw, 150px); align-items: center; }
.nominate-copy h2 { font-size: clamp(3.5rem, 5.5vw, 6.3rem); }.nominate-copy .lead { margin-top: 32px; }
.nominate-card { padding: 45px; background: var(--paper-deep); }.nominate-card > span { font-size: .68rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }.nominate-card ol { margin: 27px 0 32px; padding-left: 24px; }.nominate-card li { padding: 7px 0; }.nominate-card > p { margin: 18px 0 0; color: #65645c; font-size: .8rem; }.nominate-card > p a { color: var(--rust); font-weight: 800; }
.award-partner { padding: 95px 0; background: var(--ink); color: var(--white); }.award-partner-inner { display: flex; align-items: end; justify-content: space-between; gap: 55px; }.award-partner h2 { max-width: 850px; font-size: clamp(3.3rem, 5.2vw, 6rem); }

/* Get involved */
.center-heading { max-width: 900px; margin: 0 auto 65px; text-align: center; }.center-heading .eyebrow { justify-content: center; }.center-heading h2 { font-size: clamp(3.5rem, 5.8vw, 6.6rem); }
.ways-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.way-card { min-height: 370px; padding: 40px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }.way-card > span { color: var(--rust); font-size: .7rem; font-weight: 800; }.way-card h3 { margin: 60px 0 20px; font-family: var(--serif); font-size: 3rem; font-weight: 400; }.way-card p { max-width: 500px; color: #5f5e56; }.way-card a { display: inline-flex; gap: 30px; margin-top: 10px; padding-bottom: 6px; border-bottom: 1px solid var(--ink); font-size: .7rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }.way-card i { font-style: normal; }
.partner-section { scroll-margin-top: 88px; background: var(--ink); color: var(--white); }.partner-section-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(65px, 10vw, 150px); align-items: start; }.partner-sticky { position: sticky; top: 150px; }.partner-sticky h2 { font-size: clamp(3.4rem, 5.3vw, 6rem); }.partner-sticky > p:not(.eyebrow) { margin: 30px 0; color: rgba(255,255,255,.64); }.partnership-level { padding: 40px 0; border-top: 1px solid rgba(255,255,255,.2); }.partnership-level:last-child { border-bottom: 1px solid rgba(255,255,255,.2); }.level-top { display: flex; justify-content: space-between; color: var(--gold); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.partnership-level h3 { margin: 32px 0 25px; font-family: var(--serif); font-size: 3rem; font-weight: 400; }.partnership-level ul { margin: 0; padding: 0; list-style: none; color: rgba(255,255,255,.64); }.partnership-level li { padding: 8px 0 8px 20px; position: relative; }.partnership-level li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .55rem; }
.value-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }.value-strip article { min-height: 290px; padding: 30px; border-right: 1px solid var(--line); }.value-strip article:last-child { border-right: 0; }.value-strip span { color: var(--rust); font-size: .68rem; font-weight: 800; }.value-strip h3 { margin: 65px 0 16px; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }.value-strip p { margin: 0; color: #65645c; font-size: .86rem; }
.contact-hub { background: var(--rust); color: var(--white); }.contact-hub-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(65px, 10vw, 150px); align-items: center; }.contact-hub-heading h2 { font-size: clamp(3.5rem, 5.7vw, 6.5rem); }.contact-hub-heading h2 em { color: var(--gold-light); }.contact-hub-heading > p:last-child { max-width: 570px; margin-top: 30px; color: rgba(255,255,255,.68); }.contact-card { padding: 45px; background: var(--paper); color: var(--ink); }.contact-card > p { margin-bottom: 8px; color: #77756b; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }.contact-card > a { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.8rem); }.contact-card hr { margin: 35px 0; border: 0; border-top: 1px solid var(--line); }.subject-links { display: flex; flex-direction: column; }.subject-links a { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: .82rem; font-weight: 750; }
.social-hub-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(65px, 10vw, 150px); }.social-hub h2 { font-size: clamp(3.4rem, 5.3vw, 6rem); }.social-platforms { border-top: 1px solid var(--line); }.social-platforms a { display: grid; grid-template-columns: 50px 1fr auto; gap: 20px; align-items: center; padding: 23px 0; border-bottom: 1px solid var(--line); }.social-platforms span { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: .68rem; font-weight: 800; }.social-platforms strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }.social-platforms i { font-style: normal; transition: transform .2s; }.social-platforms a:hover i { transform: translate(4px,-4px); }.next-page-home { background: var(--paper-deep); }

@media (max-width: 1080px) {
  .site-nav > a:not(.nav-cta) { display: block; }
  .site-nav { gap: 16px; }
  .site-nav > a:not(.nav-cta) { font-size: .72rem; }
  .nav-cta { display: none; }
  .belief-grid, .value-strip { grid-template-columns: repeat(2, 1fr); }
  .programme-grid { grid-template-columns: 105px 1fr 1fr; gap: 35px; }
  .programme-marker .pillar-icon { width: 90px; height: 90px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 42px 0; }
}

@media (max-width: 820px) {
  .nav-cta { display: block; }
  .site-nav a[aria-current="page"] { color: var(--rust); }
  .pathway-grid { grid-template-columns: 1fr; }
  .pathway-card { min-height: 360px; }
  .home-awards-grid, .home-vision-inner, .page-hero-inner, .editorial-grid, .award-intro-grid, .bridge-grid, .programme-grid, .event-heading, .audience-grid, .eligibility-grid, .nominate-grid, .partner-section-grid, .contact-hub-grid, .social-hub-grid { grid-template-columns: 1fr; }
  .home-awards-photo img { height: 480px; }
  .home-vision-inner > .eyebrow { grid-column: auto; margin-bottom: -15px; }
  .page-hero, .award-hero { margin-top: 76px; }
  .page-hero, .page-hero-inner { min-height: 590px; }
  .page-hero-inner { gap: 38px; padding-block: 65px; }
  .page-hero-inner > p { max-width: 600px; }
  .breadcrumb { margin-bottom: 45px; }
  .section-nav { top: 76px; overflow-x: auto; }
  .section-nav .shell { width: max-content; min-width: 100%; }
  .section-nav a { min-width: 180px; }
  .editorial-copy, .award-intro-grid > div:last-child { padding-top: 0; }
  .belief-grid { grid-template-columns: repeat(2, 1fr); }
  .bridge-visual { min-height: 350px; }
  .programme-marker { display: flex; align-items: center; gap: 25px; }
  .programme-marker > span { margin: 0; }
  .programme-copy { padding-top: 0; }
  .image-statement { min-height: 500px; }
  .event-heading { gap: 25px; }
  .event-cards { grid-template-columns: 1fr; }
  .event-card { min-height: 285px; border-right: 0; border-bottom: 1px solid var(--line); }
  .event-card:last-child { border-bottom: 0; }
  .award-hero { min-height: 0; grid-template-columns: 1fr; }
  .award-hero-copy { min-height: 650px; padding: 65px 24px; }
  .award-hero-image { height: 530px; }
  .award-category { grid-template-columns: 50px 1fr; gap: 30px; }
  .award-category ul { grid-column: 2; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .partner-sticky { position: static; }
  .value-strip { grid-template-columns: repeat(2, 1fr); }
  .next-page-link { min-height: 175px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 14px; }
  .award-partner-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .pathway-card { min-height: 330px; }
  .home-awards-photo img { height: 390px; }
  .home-awards-photo > span { right: 10px; }
  .page-hero-inner h1 { font-size: 3.85rem; }
  .page-hero-inner > p { font-size: 1.2rem; }
  .page-hero-orbit, .page-hero-sun { opacity: .6; }
  .belief-grid, .ways-grid, .value-strip { grid-template-columns: 1fr; }
  .belief-grid article { min-height: 270px; }
  .bridge-visual { grid-template-columns: 1fr 30px 70px 30px 1fr; min-height: 280px; padding: 20px; }
  .bridge-visual b { width: 70px; height: 70px; font-size: 1.5rem; }
  .bridge-visual span { font-size: 1rem; }
  .programme-marker .pillar-icon { width: 75px; height: 75px; }
  .wellness-wheel { grid-template-columns: 1fr; }
  .wellness-wheel span { min-height: 48px; border-right: 0; border-bottom: 1px solid var(--line); }
  .wellness-wheel span:last-child { border-bottom: 0; }
  .image-statement { min-height: 420px; }.image-statement blockquote { width: calc(100% - 30px); padding-top: 115px; }
  .award-hero-copy { min-height: 590px; }.award-hero-copy h1 { font-size: 3.9rem; }.award-hero-image { height: 420px; }.award-deadline { width: 185px; height: 170px; }
  .award-category { grid-template-columns: 1fr; gap: 18px; }.award-category ul { grid-column: auto; }.award-category h3 { font-size: 2.2rem; }
  .eligibility-list li { grid-template-columns: 55px 1fr; gap: 17px; }
  .process-steps { grid-template-columns: 1fr; padding-left: 20px; border-top: 0; border-left: 1px solid rgba(255,255,255,.3); }.process-steps li { padding: 5px 0 35px 25px; }.process-steps li::before { top: 9px; left: -26px; }
  .nominate-card, .contact-card { padding: 30px 22px; }
  .way-card { min-height: 330px; padding: 30px; }.way-card h3 { margin-top: 45px; }
  .partnership-level h3 { font-size: 2.4rem; }
  .value-strip article { min-height: 250px; }
  .social-platforms strong { font-size: 1.25rem; }
  .next-page-link strong { font-size: 2rem; }
}

/* Authentic event media */
.real-moments { background: var(--rust); color: var(--white); }
.real-moments .event-heading > p { color: rgba(255,255,255,.7); }
.real-moments .event-heading h2 em { color: var(--gold-light); }
.moment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: start; }
.moment { margin: 0; overflow: hidden; background: var(--ink); }
.moment:nth-child(2) { margin-top: 58px; }
.moment img, .moment video { width: 100%; aspect-ratio: 3 / 4; display: block; object-fit: cover; background: #090a08; }
.moment video { object-position: center; }
.moment figcaption { min-height: 100px; display: grid; grid-template-columns: 1fr auto; gap: 6px 20px; align-content: center; padding: 20px 23px; }
.moment figcaption span { grid-column: 1 / -1; color: var(--gold); font-size: .63rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.moment figcaption strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; }
.moment figcaption small { align-self: center; color: rgba(255,255,255,.45); font-size: .66rem; font-weight: 800; letter-spacing: .08em; }

.documentary-band { background: var(--ink); color: var(--white); }
.documentary-grid { display: grid; grid-template-columns: .8fr 1.15fr .72fr; gap: clamp(35px, 5vw, 75px); align-items: center; }
.documentary-photo, .documentary-video { margin: 0; }
.documentary-photo img, .documentary-video video { width: 100%; display: block; aspect-ratio: 3 / 4; object-fit: cover; background: #090a08; }
.documentary-photo figcaption, .documentary-video figcaption { padding-top: 14px; color: rgba(255,255,255,.55); font-size: .72rem; }
.documentary-video figcaption { display: flex; justify-content: space-between; gap: 20px; }
.documentary-video figcaption span { color: var(--gold); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.documentary-copy h2 { font-size: clamp(3.2rem, 5vw, 5.8rem); }
.documentary-copy h2 em { color: var(--gold); }
.documentary-copy > p:last-child { margin-top: 30px; color: rgba(255,255,255,.64); }

.programme-voices { background: var(--ink); color: var(--white); }
.programme-voices-heading { display: grid; grid-template-columns: 1.2fr .55fr; gap: 70px; align-items: end; margin-bottom: 65px; }
.programme-voices-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -35px; }
.programme-voices-heading h2 { font-size: clamp(3.5rem, 5.7vw, 6.5rem); }
.programme-voices-heading > p:last-child { color: rgba(255,255,255,.64); }
.video-reel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.video-card { margin: 0; background: var(--ink-soft); }
.video-card video { width: 100%; aspect-ratio: 478 / 850; display: block; object-fit: cover; background: #090a08; }
.video-card figcaption { min-height: 92px; display: grid; grid-template-columns: 45px 1fr; gap: 15px; align-items: center; padding: 18px 22px; }
.video-card figcaption > span { color: var(--gold); font-size: .7rem; font-weight: 800; }
.video-card figcaption div { display: flex; justify-content: space-between; gap: 15px; align-items: baseline; }
.video-card figcaption strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.video-card figcaption small { color: rgba(255,255,255,.43); font-size: .65rem; font-weight: 800; letter-spacing: .06em; }
.programme-still { position: relative; height: 480px; margin: 80px 0 0; overflow: hidden; }
.programme-still::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,16,13,.9), rgba(15,16,13,.22)); }
.programme-still img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.programme-still blockquote { position: absolute; z-index: 2; left: clamp(28px, 6vw, 82px); top: 50%; max-width: 700px; margin: 0; transform: translateY(-50%); font-family: var(--serif); font-size: clamp(2.6rem, 4.5vw, 5.1rem); font-style: italic; line-height: 1; }

@media (max-width: 820px) {
  .moment-grid { grid-template-columns: repeat(2, 1fr); }
  .moment-video { grid-row: span 2; }
  .moment:nth-child(2) { margin-top: 0; }
  .documentary-grid { grid-template-columns: 1fr 1fr; }
  .documentary-copy { grid-column: 1 / -1; grid-row: 1; }
  .programme-voices-heading { grid-template-columns: 1fr; gap: 28px; }
  .programme-voices-heading .eyebrow { grid-column: auto; margin-bottom: -8px; }
  .video-reel { grid-template-columns: repeat(2, 1fr); }
  .programme-still { height: 420px; }
}

@media (max-width: 560px) {
  .moment-grid, .documentary-grid, .video-reel { grid-template-columns: 1fr; }
  .moment-video { grid-row: auto; }
  .moment img, .moment video { aspect-ratio: 3 / 4; }
  .documentary-copy { grid-column: auto; }
  .documentary-photo, .documentary-video { width: min(100%, 390px); }
  .documentary-video { margin-left: auto; }
  .video-card figcaption div { align-items: flex-start; flex-direction: column; gap: 3px; }
  .programme-still { height: 380px; margin-top: 55px; }
  .programme-still blockquote { left: 24px; right: 24px; }
}

/* Gallery */
.gallery-hero { margin-top: 88px; overflow: hidden; background: var(--ink); color: var(--white); }
.gallery-hero-grid { min-height: 780px; padding-block: 75px; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 140px); align-items: center; }
.gallery-hero-copy .breadcrumb { margin-bottom: 60px; }
.gallery-hero-copy h1 { margin: 0 0 30px; font-family: var(--serif); font-size: clamp(4.2rem, 7vw, 7.7rem); font-weight: 400; letter-spacing: -.05em; line-height: .9; }
.gallery-hero-copy h1 em { color: var(--gold); font-weight: 400; }
.gallery-hero-copy > p:last-child { max-width: 520px; color: rgba(255,255,255,.68); font-family: var(--serif); font-size: 1.35rem; }
.gallery-hero-media { height: 635px; display: grid; grid-template-columns: 1.4fr .85fr; grid-template-rows: repeat(2, 1fr); gap: 12px; }
.gallery-hero-media figure { margin: 0; min-width: 0; overflow: hidden; }
.gallery-hero-media .gallery-hero-main { grid-row: 1 / 3; }
.gallery-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.gallery-hero-media figure:nth-child(2) img { object-position: center 24%; }
.gallery-hero-media figure:nth-child(3) img { object-position: center 20%; }

.gallery-intro-grid { display: grid; grid-template-columns: 70px 1fr 1fr; gap: clamp(35px, 6vw, 95px); align-items: start; }
.gallery-intro h2 { font-size: clamp(3.4rem, 5.5vw, 6.2rem); }
.gallery-intro-grid > div:last-child { padding-top: 55px; }
.gallery-intro-grid > div:last-child > p:last-child { color: #5f5e56; }

.featured-film { background: var(--rust); color: var(--white); }
.featured-film-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 145px); align-items: center; }
.featured-film-copy h2 { font-size: clamp(3.7rem, 5.8vw, 6.6rem); }
.featured-film-copy h2 em { color: var(--gold-light); }
.featured-film-copy > p:not(.eyebrow) { max-width: 520px; margin-top: 30px; color: rgba(255,255,255,.7); }
.featured-film-copy dl { margin: 42px 0 0; border-top: 1px solid rgba(255,255,255,.28); }
.featured-film-copy dl div { display: flex; justify-content: space-between; gap: 25px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.28); }
.featured-film-copy dt { color: var(--gold-light); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.featured-film-copy dd { margin: 0; font-family: var(--serif); }
.featured-player { width: min(100%, 540px); margin: 0 auto; padding: 14px; background: var(--ink); }
.featured-player video { width: 100%; max-height: 680px; aspect-ratio: 478 / 850; display: block; object-fit: contain; background: #090a08; }
.featured-player figcaption { padding: 14px 8px 2px; color: rgba(255,255,255,.54); font-size: .68rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }

.gallery-films { background: var(--ink); color: var(--white); }
.gallery-section-heading { display: grid; grid-template-columns: 1.15fr .55fr; gap: 80px; align-items: end; margin-bottom: 65px; }
.gallery-section-heading h2 { font-size: clamp(3.6rem, 5.8vw, 6.6rem); }
.gallery-section-heading h2 em { color: var(--gold); }
.gallery-section-heading > p { max-width: 420px; color: rgba(255,255,255,.62); }
.gallery-video-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-video-card { margin: 0; background: var(--ink-soft); }
.gallery-video-card video { width: 100%; aspect-ratio: 478 / 850; display: block; object-fit: cover; background: #090a08; }
.gallery-video-card figcaption { min-height: 96px; display: grid; grid-template-columns: 35px 1fr; gap: 12px; align-items: center; padding: 17px; }
.gallery-video-card figcaption > span { color: var(--gold); font-size: .68rem; font-weight: 800; }
.gallery-video-card figcaption div { display: flex; justify-content: space-between; gap: 10px; align-items: baseline; }
.gallery-video-card figcaption strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 400; }
.gallery-video-card figcaption small { color: rgba(255,255,255,.4); font-size: .62rem; font-weight: 800; }

.gallery-section-heading-dark > p { color: #5f5e56; }
.gallery-section-heading-dark h2 em { color: var(--gold); }
.photo-journal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.photo-journal-card { margin: 0; border: 1px solid var(--line); background: var(--paper); }
.photo-journal-card > a { display: block; overflow: hidden; }
.photo-journal-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .7s var(--ease), filter .4s; }
.photo-journal-card a:hover img { transform: scale(1.035); filter: contrast(1.04); }
.photo-journal-card figcaption { min-height: 92px; display: grid; grid-template-columns: 30px 1fr; gap: 13px; align-items: center; padding: 17px; }
.photo-journal-card figcaption span { color: var(--rust); font-size: .68rem; font-weight: 800; }
.photo-journal-card figcaption strong { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; }

.gallery-cta { padding: 95px 0; background: var(--rust); color: var(--white); }
.gallery-cta-inner { display: flex; justify-content: space-between; align-items: end; gap: 60px; }
.gallery-cta h2 { font-size: clamp(3.5rem, 5.5vw, 6.3rem); }
.gallery-cta h2 em { color: var(--gold-light); }

@media (max-width: 1200px) {
  .site-nav { gap: 14px; }
  .nav-cta { display: none; }
  .gallery-video-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .nav-cta { display: block; }
  .gallery-hero { margin-top: 76px; }
  .gallery-hero-grid, .gallery-intro-grid, .featured-film-grid, .gallery-section-heading { grid-template-columns: 1fr; }
  .gallery-hero-grid { padding-block: 65px; }
  .gallery-hero-media { height: 580px; }
  .gallery-intro-grid > div:last-child { padding-top: 0; }
  .gallery-section-heading { gap: 20px; }
  .photo-journal-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  .gallery-hero-grid { min-height: 0; gap: 45px; }
  .gallery-hero-copy h1 { font-size: 4rem; }
  .gallery-hero-media { height: 500px; grid-template-columns: 1.2fr .8fr; gap: 8px; }
  .gallery-video-grid, .photo-journal-grid { grid-template-columns: 1fr; }
  .featured-player { padding: 9px; }
  .gallery-video-card, .photo-journal-card { width: min(100%, 390px); margin-inline: auto; }
}

/* 2026 programme, impact, event, donation, and gallery expansion */
.site-nav a[aria-current="page"]::after,
.site-nav a.section-current::after { transform: scaleX(1); transform-origin: left; }
.site-nav .nav-cta[aria-current="page"] { background: var(--ink); color: var(--white); }

.home-case { padding: 28px 0; background: var(--rust); color: var(--white); }
.home-case-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 50px; align-items: center; }
.home-case p { margin: 0; color: var(--gold-light); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.home-case ul { display: flex; flex-wrap: wrap; gap: 12px 30px; margin: 0; padding: 0; list-style: none; font-family: var(--serif); font-size: 1.08rem; }
.home-case li:not(:last-child)::after { content: "·"; margin-left: 30px; color: var(--gold); }
.pathway-grid { grid-template-columns: repeat(3, 1fr); }
.pathway-card:nth-child(4), .pathway-card:nth-child(5) { grid-column: span 1; }
.pathway-card:nth-child(4) { grid-column-start: 1; margin-left: 50%; }
.pathway-card:nth-child(5) { margin-right: -50%; }

.about-why { background: var(--ink); color: var(--white); }
.about-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(55px, 10vw, 150px); align-items: start; }
.about-why h2 { font-size: clamp(3.6rem, 5.8vw, 6.6rem); }
.about-why-copy { padding-top: 54px; }
.about-why-copy > p:not(.lead) { color: rgba(255,255,255,.64); }
.arrow-link-light { color: var(--white); }

/* Programme directory */
.programme-index-intro { background: var(--paper); }
.programme-directory { border-top: 1px solid var(--line); }
.directory-item { transition: background-color .3s, color .3s; }
.directory-item > a { min-height: 360px; display: grid; grid-template-columns: 80px 1fr .78fr 45px; gap: clamp(30px, 5vw, 75px); align-items: center; }
.directory-item-dark { background: var(--ink); color: var(--white); }
.directory-item-paper { background: var(--paper); color: var(--ink); }
.directory-item-gold { background: var(--gold); color: var(--ink); }
.directory-item-rust { background: var(--rust); color: var(--white); }
.directory-item:hover { background: var(--gold-light); color: var(--ink); }
.directory-number { align-self: start; padding-top: 65px; color: var(--gold); font-size: .7rem; font-weight: 850; letter-spacing: .12em; }
.directory-item-gold .directory-number, .directory-item:hover .directory-number { color: var(--rust); }
.directory-title > p { margin-bottom: 15px; color: currentColor; opacity: .62; font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.directory-title h2 { font-size: clamp(3rem, 5vw, 5.5rem); }
.directory-item-dark h2 em, .directory-item-rust h2 em { color: var(--gold-light); }
.directory-item:hover h2 em { color: var(--rust); }
.directory-summary > p { color: currentColor; opacity: .72; }
.directory-summary ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 0; padding: 0; list-style: none; }
.directory-summary li { padding: 6px 10px; border: 1px solid currentColor; font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.directory-grid > i { font-style: normal; font-size: 1.8rem; transition: transform .25s var(--ease); }
.directory-grid:hover > i { transform: translate(7px, -7px); }
.programme-system { background: var(--ink); color: var(--white); }
.programme-system-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); }
.programme-system h2 { font-size: clamp(3.4rem, 5.5vw, 6rem); }
.system-flow { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.system-flow li { display: grid; grid-template-columns: 55px 1fr; gap: 20px; padding: 25px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.system-flow li > span { color: var(--gold); font-size: .67rem; font-weight: 800; }
.system-flow h3 { margin-bottom: 8px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.system-flow p { margin: 0; color: rgba(255,255,255,.62); }

/* Programme detail pages */
.detail-hero { position: relative; min-height: 700px; margin-top: 88px; overflow: hidden; color: var(--white); }
.detail-hero-rust { background: var(--rust); }
.detail-hero-gold { background: var(--gold); color: var(--ink); }
.detail-hero-dark { background: var(--ink); }
.detail-hero-stokfel { background: #354232; }
.detail-hero-pattern { position: absolute; inset: 0; opacity: .12; background: repeating-linear-gradient(135deg, transparent 0 38px, var(--paper) 39px 41px); }
.detail-hero-circles { position: absolute; right: -150px; top: -240px; width: 850px; height: 850px; border: 1px solid rgba(23,24,19,.2); border-radius: 50%; }
.detail-hero-circles::before, .detail-hero-circles::after { content: ""; position: absolute; border: 1px solid rgba(23,24,19,.18); border-radius: 50%; }
.detail-hero-circles::before { inset: 120px; }.detail-hero-circles::after { inset: 260px; }
.detail-food-mark { position: absolute; right: 5vw; top: 7%; color: rgba(223,168,45,.1); font-family: var(--serif); font-size: 40rem; line-height: 1; }
.stokfel-lines { position: absolute; inset: 0; opacity: .13; background-image: linear-gradient(60deg, transparent 47%, var(--gold) 48% 49%, transparent 50%), linear-gradient(-60deg, transparent 47%, var(--gold) 48% 49%, transparent 50%); background-size: 120px 210px; }
.detail-hero-inner { position: relative; z-index: 2; min-height: 700px; padding-block: 90px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 90px; align-items: end; }
.detail-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.8rem, 8vw, 8.6rem); font-weight: 400; letter-spacing: -.055em; line-height: .86; }
.detail-hero h1 em { color: var(--gold-light); }
.detail-hero-gold h1 em { color: var(--rust); }
.detail-hero-summary { padding-bottom: 10px; }
.detail-hero-summary p { max-width: 440px; margin-bottom: 35px; color: rgba(255,255,255,.76); font-family: var(--serif); font-size: 1.5rem; }
.detail-hero-summary-dark p { color: rgba(23,24,19,.78); }
.detail-subnav { position: sticky; z-index: 20; top: 88px; background: var(--paper); border-bottom: 1px solid var(--line); }
.detail-subnav .shell { min-height: 58px; display: flex; align-items: center; gap: 35px; overflow-x: auto; }
.detail-subnav a { white-space: nowrap; font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.detail-subnav a:hover { color: var(--rust); }
.detail-intro-grid { display: grid; grid-template-columns: 70px 1fr 1fr; gap: clamp(35px, 6vw, 95px); }
.detail-intro h2 { font-size: clamp(3.2rem, 5.4vw, 6rem); }
.detail-intro-grid > div:last-child { padding-top: 58px; }
.detail-intro-grid > div:last-child > p:not(.lead) { color: #5c5b52; }
.detail-activities, .wellness-dimensions, .membership, .stokfel-pillars { background: var(--ink); color: var(--white); }
.activity-grid, .dimension-grid, .stokfel-pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.dimension-grid { grid-template-columns: repeat(5, 1fr); }
.stokfel-pillar-grid { grid-template-columns: repeat(3, 1fr); }
.activity-grid article, .dimension-grid article, .stokfel-pillar-grid article { min-height: 300px; padding: 32px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.activity-grid span, .dimension-grid span, .stokfel-pillar-grid span { color: var(--gold); font-size: .68rem; font-weight: 800; }
.activity-grid h3, .dimension-grid h3, .stokfel-pillar-grid h3 { margin: 85px 0 18px; font-family: var(--serif); font-size: clamp(1.8rem, 2.7vw, 3rem); font-weight: 400; }
.activity-grid p, .dimension-grid p, .stokfel-pillar-grid p { color: rgba(255,255,255,.58); }
.detail-outcomes-grid, .stokfel-terms-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 150px); }
.detail-outcomes h2, .stokfel-terms h2 { font-size: clamp(3.3rem, 5vw, 5.7rem); }
.outcome-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.outcome-list li { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.25rem; }
.outcome-list span { color: var(--rust); font-family: var(--sans); font-size: .66rem; font-weight: 800; }
.detail-participate { background: var(--rust); color: var(--white); }
.detail-participate-grid { display: grid; grid-template-columns: 1fr .65fr; gap: clamp(60px, 10vw, 150px); align-items: end; }
.detail-participate h2 { font-size: clamp(3.5rem, 5.5vw, 6rem); }
.detail-participate-grid > div:last-child p { color: rgba(255,255,255,.7); }
.membership-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.membership-card { min-height: 500px; padding: clamp(32px, 5vw, 65px); background: var(--ink-soft); }
.membership-card-gold { background: var(--gold); color: var(--ink); }
.membership-card > span { font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.membership-card h3 { max-width: 420px; margin: 70px 0 25px; font-family: var(--serif); font-size: clamp(2.2rem, 3.5vw, 4rem); font-weight: 400; }
.membership-card > strong { display: block; color: var(--gold); font-family: var(--serif); font-size: clamp(2.8rem, 5vw, 5.5rem); font-weight: 400; line-height: 1; }
.membership-card-gold > strong { color: var(--rust); }
.membership-card > strong small { font-family: var(--sans); font-size: .8rem; }
.membership-card ul { margin: 35px 0 0; padding: 0; list-style: none; border-top: 1px solid currentColor; }
.membership-card li { padding: 12px 0; border-bottom: 1px solid currentColor; opacity: .72; }
.compact-heading { margin-bottom: 65px; }
.compact-heading h2 { font-size: clamp(3.5rem, 5.5vw, 6.2rem); }
.stokfel-terms { background: var(--paper-deep); }
.stokfel-terms-grid > div:first-child > p:last-child { color: #5c5b52; }
.term-list article { padding: 25px 0; border-top: 1px solid var(--line); }
.term-list span { color: var(--rust); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.term-list p { margin: 10px 0 0; font-family: var(--serif); font-size: 1.22rem; }
.stokfel-banking { scroll-margin-top: 145px; background: #354232; color: var(--white); }
.stokfel-banking-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 150px); align-items: start; }
.stokfel-banking h2 { font-size: clamp(3.4rem, 5.4vw, 6rem); }
.stokfel-banking-grid > div:first-child > p:last-child { margin-top: 30px; color: rgba(255,255,255,.62); }
.bank-account-card { padding: clamp(30px, 5vw, 60px); background: var(--paper); color: var(--ink); }
.bank-details { margin: 0; }
.bank-details > div { display: grid; grid-template-columns: 155px 1fr; gap: 25px; align-items: baseline; padding: 18px 0; border-bottom: 1px solid var(--line); }
.bank-details > div:first-child { border-top: 1px solid var(--line); }
.bank-details dt { color: #706e65; font-size: .66rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.bank-details dd { margin: 0; font-family: var(--serif); font-size: 1.4rem; line-height: 1.25; }
.bank-details .bank-account-number dd { color: var(--rust); font-family: var(--sans); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.copy-account-button { width: 100%; min-height: 52px; display: flex; align-items: center; justify-content: space-between; margin-top: 18px; padding: 0 17px; border: 1px solid var(--ink); background: transparent; color: var(--ink); cursor: pointer; font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; transition: background-color .2s, color .2s; }
.copy-account-button:hover, .copy-account-button.is-copied { background: var(--ink); color: var(--white); }
.copy-account-button i { font-size: 1rem; font-style: normal; }
.banking-safety-note { margin-top: 28px; padding: 22px; border-left: 4px solid var(--gold); background: var(--paper-deep); }
.banking-safety-note strong { display: block; margin-bottom: 7px; color: var(--rust); font-size: .68rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.banking-safety-note p { margin: 0; color: #55534c; font-size: .84rem; }
.bank-account-card .arrow-link { margin-top: 28px; }

/* Events */
.event-hero { position: relative; min-height: 760px; margin-top: 88px; overflow: hidden; color: var(--white); }
.event-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; }
.event-hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,16,13,.94) 0%, rgba(15,16,13,.75) 43%, rgba(15,16,13,.18) 78%), linear-gradient(0deg, rgba(15,16,13,.5), transparent 55%); }
.event-hero-content { position: relative; z-index: 2; min-height: 760px; padding-block: 82px; display: flex; flex-direction: column; justify-content: flex-end; }
.event-hero h1 { max-width: 960px; margin: 0 0 28px; font-family: var(--serif); font-size: clamp(4.7rem, 8vw, 8.8rem); font-weight: 400; letter-spacing: -.055em; line-height: .88; }
.event-hero-content > p:last-child { max-width: 660px; margin: 0; color: rgba(255,255,255,.75); font-family: var(--serif); font-size: 1.35rem; }
.event-calendar { background: var(--ink); color: var(--white); }
.event-calendar-heading, .story-gallery-heading, .impact-heading, .funding-heading { display: grid; grid-template-columns: 1.1fr .6fr; gap: 80px; align-items: end; margin-bottom: 65px; }
.event-calendar-heading h2, .story-gallery-heading h2, .impact-heading h2, .funding-heading h2 { font-size: clamp(3.7rem, 5.7vw, 6.4rem); }
.event-calendar-heading > p, .story-gallery-heading > p { color: rgba(255,255,255,.62); }
.event-list { border-top: 1px solid rgba(255,255,255,.2); }
.event-row { min-height: 240px; display: grid; grid-template-columns: 140px 1fr 210px; gap: 45px; align-items: center; padding: 35px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.event-date { align-self: stretch; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.2); }
.event-date strong { color: var(--gold); font-family: var(--serif); font-size: 2.4rem; font-weight: 400; line-height: 1; }
.event-date span, .event-type { color: rgba(255,255,255,.5); font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.event-row h3 { margin: 10px 0 15px; font-family: var(--serif); font-size: clamp(2.1rem, 3.5vw, 3.7rem); font-weight: 400; }
.event-row > div:nth-child(2) > p:last-child { max-width: 650px; color: rgba(255,255,255,.58); }
.event-partner-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 145px); }
.event-partner h2 { font-size: clamp(3.4rem, 5.2vw, 5.8rem); }
.event-partner-options { border-top: 1px solid var(--line); }
.event-partner-options article { display: grid; grid-template-columns: 45px .4fr 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.event-partner-options span { color: var(--rust); font-size: .66rem; font-weight: 800; }
.event-partner-options h3 { margin: 0; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.event-partner-options p { margin: 0; color: #5c5b52; }

/* Impact */
.impact-hero { position: relative; min-height: 700px; margin-top: 88px; overflow: hidden; background: var(--rust); color: var(--white); }
.impact-hero-rings { position: absolute; right: -130px; top: -170px; width: 780px; height: 780px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.impact-hero-rings span { position: absolute; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.impact-hero-rings span:nth-child(1) { inset: 100px; }.impact-hero-rings span:nth-child(2) { inset: 210px; }.impact-hero-rings span:nth-child(3) { inset: 320px; background: var(--gold); border: 0; }
.impact-hero-inner { position: relative; z-index: 2; min-height: 700px; padding-block: 80px; display: grid; grid-template-columns: 1.1fr .6fr; gap: 90px; align-items: end; }
.impact-hero-inner > .breadcrumb { position: absolute; top: 80px; }
.impact-hero h1 { margin: 0; font-family: var(--serif); font-size: clamp(4.6rem, 7.7vw, 8.4rem); font-weight: 400; letter-spacing: -.055em; line-height: .88; }
.impact-hero h1 em { color: var(--gold-light); }
.impact-hero-inner > p { max-width: 460px; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 1.4rem; }
.impact-why-grid { display: grid; grid-template-columns: 85px 1fr 1fr; gap: clamp(35px, 6vw, 95px); }
.impact-why h2 { font-size: clamp(3.4rem, 5.4vw, 6rem); }
.impact-why-copy { padding-top: 54px; }
.impact-why-copy > p:not(.lead) { color: #5c5b52; }
.impact-pathway { background: var(--ink); color: var(--white); }
.impact-heading { grid-template-columns: 1fr; }
.impact-steps { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); border-left: 1px solid rgba(255,255,255,.2); }
.impact-steps li { min-height: 330px; padding: 28px; border-right: 1px solid rgba(255,255,255,.2); border-bottom: 1px solid rgba(255,255,255,.2); }
.impact-steps span { color: var(--gold); font-size: .66rem; font-weight: 800; }
.impact-steps strong { display: block; margin: 105px 0 20px; font-family: var(--serif); font-size: 2.3rem; font-weight: 400; }
.impact-steps p { color: rgba(255,255,255,.58); }
.impact-areas-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(60px, 10vw, 150px); }
.impact-areas h2 { font-size: clamp(3.4rem, 5.4vw, 6rem); }
.impact-area-list { border-top: 1px solid var(--line); }
.impact-area-list article { display: grid; grid-template-columns: 45px .65fr 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.impact-area-list span { color: var(--rust); font-size: .66rem; font-weight: 800; }
.impact-area-list h3 { margin: 0; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.impact-area-list p { margin: 0; color: #5c5b52; }
.impact-measure { background: var(--paper-deep); }
.impact-measure-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); }
.impact-measure h2 { font-size: clamp(3.4rem, 5.4vw, 6rem); }
.impact-measure-grid > div > p:last-child { margin-top: 30px; color: #5c5b52; }
.measure-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.measure-list li { display: grid; grid-template-columns: 45px 1fr; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; }
.measure-list span { color: var(--rust); font-family: var(--sans); font-size: .66rem; font-weight: 800; }
.impact-cta-actions { display: flex; align-items: center; gap: 28px; }

/* Donate */
.donate-hero { position: relative; min-height: 740px; margin-top: 88px; overflow: hidden; background: #354232; color: var(--white); }
.donate-pattern { position: absolute; inset: 0; opacity: .14; background: radial-gradient(circle at center, var(--gold) 0 6px, transparent 7px), linear-gradient(45deg, transparent 47%, var(--gold) 48% 49%, transparent 50%); background-size: 95px 95px; }
.donate-hero-inner { position: relative; z-index: 2; min-height: 740px; padding-block: 80px; display: flex; flex-direction: column; justify-content: flex-end; align-items: flex-start; }
.donate-hero h1 { margin: 0 0 28px; font-family: var(--serif); font-size: clamp(4.8rem, 8vw, 8.8rem); font-weight: 400; letter-spacing: -.055em; line-height: .86; }
.donate-hero h1 em { color: var(--gold-light); }
.donate-hero-inner > p:not(.breadcrumb):not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.72); font-family: var(--serif); font-size: 1.35rem; }
.donate-hero .button { margin-top: 15px; }
.funding-priorities { background: var(--ink); color: var(--white); }
.funding-heading { grid-template-columns: 1fr; }
.funding-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.funding-grid article { min-height: 310px; padding: 30px; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
.funding-grid span { color: var(--gold); font-size: .66rem; font-weight: 800; }
.funding-grid h3 { margin: 90px 0 18px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.funding-grid p { color: rgba(255,255,255,.58); }
.donate-assurance-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); }
.donate-assurance h2 { font-size: clamp(3.4rem, 5.4vw, 6rem); }
.assurance-list { margin: 30px 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.assurance-list li { padding: 13px 0 13px 25px; border-bottom: 1px solid var(--line); position: relative; }
.assurance-list li::before { content: "•"; position: absolute; left: 4px; color: var(--rust); }
.donate-note { margin-top: 24px; color: #6a685e; font-size: .78rem; }
.donate-partner { padding: 100px 0; background: var(--rust); color: var(--white); }
.donate-partner-inner { display: grid; grid-template-columns: 1fr .7fr; gap: clamp(60px, 10vw, 145px); align-items: end; }
.donate-partner h2 { font-size: clamp(3.4rem, 5.4vw, 6rem); }
.donate-partner-inner > div:last-child p { color: rgba(255,255,255,.66); }

/* Curated gallery */
.gallery-jump { position: sticky; z-index: 19; top: 88px; background: var(--gold); border-bottom: 1px solid var(--ink); }
.gallery-jump .shell { min-height: 58px; display: flex; align-items: center; gap: 28px; overflow-x: auto; }
.gallery-jump span, .gallery-jump a { white-space: nowrap; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gallery-jump span { color: rgba(23,24,19,.55); }
.gallery-jump a:hover { color: var(--rust); }
.story-gallery-dark { background: var(--ink); color: var(--white); }
.story-gallery-heading-dark > p { color: #5c5b52; }
.story-mosaic { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 250px; gap: 16px; }
.story-photo { grid-column: span 4; margin: 0; overflow: hidden; background: var(--ink-soft); }
.story-photo-wide { grid-column: span 8; }
.story-photo-tall { grid-row: span 2; }
.story-photo > a { display: block; height: calc(100% - 66px); overflow: hidden; }
.story-photo img, .planning-grid img, .culture-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .3s; }
.story-photo:nth-child(1) img { object-position: center 42%; }.story-photo:nth-child(2) img { object-position: center 35%; }.story-photo:nth-child(4) img { object-position: center 28%; }
.story-mosaic-community .story-photo:nth-child(1) { grid-column: 1 / 9; grid-row: 1 / 3; }
.story-mosaic-community .story-photo:nth-child(2) { grid-column: 9 / 13; grid-row: 1 / 3; }
.story-mosaic-community .story-photo:nth-child(3) { grid-column: 1 / 5; grid-row: 3; }
.story-mosaic-community .story-photo:nth-child(4) { grid-column: 5 / 9; grid-row: 3; }
.story-mosaic-community .story-photo:nth-child(5) { grid-column: 9 / 13; grid-row: 3; }
.story-photo a:hover img, .planning-grid a:hover img, .culture-grid a:hover img { transform: scale(1.035); filter: contrast(1.03); }
.story-photo figcaption, .planning-photo figcaption, .culture-photo figcaption { height: 66px; display: flex; gap: 15px; align-items: center; padding: 12px 16px; }
.story-photo figcaption span, .planning-grid figcaption span, .culture-grid figcaption span { color: var(--gold); font-size: .65rem; font-weight: 800; }
.story-photo figcaption strong, .planning-grid figcaption strong, .culture-grid figcaption strong { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; }
.planning-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.planning-grid figure { margin: 0; border: 1px solid var(--line); background: var(--paper); }
.planning-feature { grid-column: span 2; grid-row: span 2; }
.planning-feature > a { display: block; height: calc(100% - 105px); min-height: 560px; overflow: hidden; }
.planning-feature figcaption { min-height: 105px; display: grid; grid-template-columns: 38px 1fr; gap: 15px; align-items: center; padding: 18px; }
.planning-feature figcaption p { margin: 5px 0 0; color: #65635a; font-size: .76rem; }
.planning-photo > a { display: block; height: 250px; overflow: hidden; }
.planning-photo img { object-position: center 43%; }
.culture-gallery { background: var(--rust); color: var(--white); }
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 300px; gap: 16px; }
.culture-photo { margin: 0; overflow: hidden; background: rgba(23,24,19,.28); }
.culture-photo-lead { grid-column: span 2; grid-row: span 2; }
.culture-photo-wide { grid-column: span 2; }
.culture-photo > a { display: block; height: calc(100% - 66px); overflow: hidden; }
.culture-photo-lead img { object-position: center 22%; }.culture-photo:nth-child(2) img { object-position: center 28%; }.culture-photo-wide img { object-position: center 45%; }

/* Persistent contact affordance */
.contact-fab { position: fixed; z-index: 900; right: 22px; bottom: 22px; min-height: 50px; display: inline-flex; align-items: center; gap: 11px; padding: 0 18px; border: 1px solid rgba(255,255,255,.24); background: var(--ink); color: var(--white); box-shadow: 0 12px 35px rgba(0,0,0,.22); font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .25s var(--ease), background-color .25s; }
.contact-fab::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(223,168,45,.17); }
.contact-fab:hover { transform: translateY(-4px); background: var(--rust); }

/* Enquiry and nomination forms */
.contact-hub, .nominate { scroll-margin-top: 88px; }
.contact-hub-grid { grid-template-columns: .7fr 1.3fr; align-items: start; }
.contact-hub-heading { position: sticky; top: 145px; }
.contact-hub-heading > p:nth-of-type(2) { max-width: 570px; margin-top: 30px; color: rgba(255,255,255,.68); }
.direct-contact { margin-top: 42px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.25); }
.direct-contact span, .direct-contact small { display: block; color: rgba(255,255,255,.58); font-size: .67rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.direct-contact a { display: inline-block; margin: 7px 0 15px; color: var(--gold-light); font-family: var(--serif); font-size: 1.75rem; }
.contact-form, .nomination-form { position: relative; padding: clamp(28px, 4.5vw, 58px); background: var(--paper); color: var(--ink); }
.nominate-grid { align-items: start; }
.nominate-copy { position: sticky; top: 145px; }
.nominate-copy > p:last-child { margin-top: 24px; color: #5f5e55; }
.nomination-form { background: var(--paper-deep); }
.form-section-heading { display: grid; grid-template-columns: 38px 1fr; gap: 15px; align-items: start; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.form-grid + .form-section-heading { margin-top: 48px; }
.form-section-heading > span { padding-top: 5px; color: var(--rust); font-size: .67rem; font-weight: 850; letter-spacing: .1em; }
.form-section-heading h3 { margin: 0 0 6px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; }
.form-section-heading p { margin: 0; color: #68665d; font-size: .8rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 20px; margin-top: 28px; }
.field { min-width: 0; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; font-size: .69rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.field label b, .consent-field b { color: var(--rust); }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(23,24,19,.28); border-radius: 0; background: var(--white); color: var(--ink); font: inherit; transition: border-color .2s, box-shadow .2s, background-color .2s; }
.field input, .field select { min-height: 52px; padding: 0 14px; }
.field textarea { min-height: 125px; padding: 14px; line-height: 1.55; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #87847a; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(23,24,19,.55); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--rust); box-shadow: 0 0 0 3px rgba(141,71,48,.14); background: #fff; }
.consent-field { display: grid; grid-template-columns: 20px 1fr; gap: 12px; align-items: start; margin-top: 27px; color: #525149; font-size: .78rem; cursor: pointer; }
.consent-field + .consent-field { margin-top: 13px; }
.consent-field input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--rust); }
.form-submit { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.form-submit p { max-width: 260px; margin: 0; color: #6c6a61; font-size: .72rem; }
.form-submit p a { color: var(--rust); font-weight: 800; }
.form-submit .button:disabled { opacity: .7; cursor: wait; transform: none; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

/* Submission result page */
.form-result-page { min-height: 100vh; display: flex; flex-direction: column; }
.form-result-page main { flex: 1; display: grid; place-items: center; padding: 150px 0 80px; background: var(--ink); color: var(--white); }
.form-result-card { width: min(760px, calc(100% - 34px)); padding: clamp(35px, 7vw, 80px); background: var(--paper); color: var(--ink); text-align: center; }
.form-result-mark { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 30px; border-radius: 50%; background: var(--gold); font-family: var(--serif); font-size: 2.5rem; }
.form-result-card.is-error .form-result-mark { background: var(--rust); color: var(--white); }
.form-result-card h1 { margin-bottom: 24px; font-size: clamp(3rem, 7vw, 5.8rem); }
.form-result-card > p { max-width: 560px; margin: 0 auto 18px; color: #5e5c53; font-family: var(--serif); font-size: 1.2rem; }
.form-result-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-top: 32px; }

/* In-page gallery lightbox */
.media-lightbox {
  width: min(1120px, calc(100% - 34px));
  max-width: none;
  height: min(900px, calc(100% - 34px));
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  color: var(--white);
}
.media-lightbox::backdrop { background: rgba(10, 11, 9, .91); backdrop-filter: blur(7px); }
.lightbox-panel { height: 100%; display: grid; grid-template-rows: 58px minmax(0, 1fr) auto; background: #10110e; box-shadow: 0 28px 100px rgba(0,0,0,.55); }
.lightbox-topbar { display: flex; align-items: center; justify-content: space-between; padding: 0 18px 0 22px; border-bottom: 1px solid rgba(255,255,255,.14); }
.lightbox-topbar > span { color: var(--gold); font-size: .66rem; font-weight: 800; letter-spacing: .12em; }
.lightbox-close { min-height: 42px; display: inline-flex; align-items: center; gap: 12px; padding: 0 5px 0 14px; border: 0; background: transparent; color: var(--white); cursor: pointer; font-size: .67rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.lightbox-close i { width: 30px; height: 30px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: 1.25rem; font-style: normal; font-weight: 300; transition: background-color .2s, color .2s; }
.lightbox-close:hover i { background: var(--gold); color: var(--ink); }
.lightbox-stage { min-height: 0; display: grid; place-items: center; padding: 18px; overflow: hidden; }
.lightbox-stage img { width: auto; height: auto; max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 8px 35px rgba(0,0,0,.25); }
.lightbox-footer { min-height: 76px; display: grid; grid-template-columns: 150px 1fr 150px; gap: 22px; align-items: center; padding: 12px 20px; border-top: 1px solid rgba(255,255,255,.14); }
.lightbox-footer p { margin: 0; text-align: center; font-family: var(--serif); font-size: 1.15rem; }
.lightbox-footer button { min-height: 42px; padding: 0 12px; border: 1px solid rgba(255,255,255,.24); background: transparent; color: var(--white); cursor: pointer; font-size: .66rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transition: background-color .2s, color .2s; }
.lightbox-footer button:hover { background: var(--gold); color: var(--ink); }
.lightbox-footer button:first-child { justify-self: start; }.lightbox-footer button:last-child { justify-self: end; }

@media (max-width: 1250px) {
  .header-inner { width: min(1440px, calc(100% - 32px)); }
  .brand img { width: 160px; }
  .site-nav { gap: 14px; }
  .site-nav > a:not(.nav-cta) { font-size: .72rem; }
  .nav-cta { display: inline-flex; padding-inline: 13px; }
  .dimension-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1040px) {
  .pathway-grid { grid-template-columns: repeat(2, 1fr); }
  .pathway-card:nth-child(4), .pathway-card:nth-child(5) { grid-column: auto; margin: 0; }
  .pathway-card:nth-child(5) { grid-column: 1 / -1; width: 50%; justify-self: center; }
  .directory-item > a { grid-template-columns: 55px 1fr 1fr 30px; gap: 28px; }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-steps { grid-template-columns: repeat(3, 1fr); }
  .funding-grid { grid-template-columns: repeat(2, 1fr); }
  .story-mosaic { grid-auto-rows: 220px; }
}

@media (max-width: 820px) {
  .site-nav a[aria-current="page"]::after, .site-nav a.section-current::after { display: none; }
  .home-case-grid, .about-why-grid, .programme-system-grid, .detail-hero-inner, .detail-intro-grid, .detail-outcomes-grid, .detail-participate-grid, .stokfel-terms-grid, .stokfel-banking-grid, .event-partner-grid, .impact-hero-inner, .impact-why-grid, .impact-areas-grid, .impact-measure-grid, .donate-assurance-grid, .donate-partner-inner { grid-template-columns: 1fr; }
  .home-case-grid { gap: 15px; }
  .home-case ul { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 18px; }
  .home-case li::after { display: none; }
  .pathway-card:nth-child(5) { width: auto; justify-self: stretch; }
  .about-why-copy, .detail-intro-grid > div:last-child, .impact-why-copy { padding-top: 0; }
  .directory-item > a { min-height: 0; padding-block: 55px; grid-template-columns: 42px 1fr 30px; }
  .directory-title { grid-column: 2; }
  .directory-summary { grid-column: 2; }
  .directory-grid > i { grid-column: 3; grid-row: 1 / 3; }
  .directory-number { padding-top: 8px; grid-row: 1 / 3; }
  .detail-hero, .detail-hero-inner, .impact-hero, .impact-hero-inner { min-height: 650px; }
  .detail-hero-inner, .impact-hero-inner { padding-block: 75px; gap: 35px; }
  .detail-hero-summary { align-self: end; }
  .detail-subnav, .gallery-jump { top: 76px; }
  .dimension-grid, .stokfel-pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .event-calendar-heading, .story-gallery-heading, .funding-heading { grid-template-columns: 1fr; gap: 20px; }
  .event-row { grid-template-columns: 100px 1fr; }
  .event-row > a { grid-column: 2; }
  .event-partner-options article, .impact-area-list article { grid-template-columns: 40px 1fr; }
  .event-partner-options p, .impact-area-list p { grid-column: 2; }
  .impact-hero-inner > .breadcrumb { top: 70px; }
  .impact-hero-inner > div { align-self: end; }
  .impact-steps { grid-template-columns: repeat(2, 1fr); }
  .impact-cta-actions { align-items: flex-start; flex-direction: column; }
  .story-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 310px; }
  .story-photo, .story-photo-wide { grid-column: auto; }.story-photo-tall { grid-row: auto; }
  .story-mosaic-community .story-photo:nth-child(n) { grid-column: auto; grid-row: auto; }
  .planning-grid { grid-template-columns: repeat(2, 1fr); }
  .planning-feature { grid-column: 1 / -1; grid-row: auto; }
  .planning-feature > a { min-height: 430px; }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .culture-photo-lead { grid-column: auto; grid-row: span 2; }
  .culture-photo-wide { grid-column: auto; }
  .contact-fab { bottom: 14px; right: 14px; }
  .contact-hub-grid, .nominate-grid { grid-template-columns: 1fr; }
  .contact-hub-heading, .nominate-copy { position: static; }
}

@media (max-width: 560px) {
  .pathway-grid, .activity-grid, .dimension-grid, .stokfel-pillar-grid, .membership-grid, .funding-grid, .impact-steps, .planning-grid, .culture-grid { grid-template-columns: 1fr; }
  .pathway-card:nth-child(5), .planning-feature, .culture-photo-lead, .culture-photo-wide { grid-column: auto; grid-row: auto; }
  .home-case ul { grid-template-columns: 1fr; }
  .directory-item > a { grid-template-columns: 32px 1fr 24px; gap: 15px; }
  .directory-title h2 { font-size: 2.8rem; }
  .directory-summary li { font-size: .57rem; }
  .detail-hero h1, .impact-hero h1, .donate-hero h1 { font-size: 4.1rem; }
  .detail-subnav .shell, .gallery-jump .shell { gap: 20px; }
  .activity-grid article, .dimension-grid article, .stokfel-pillar-grid article, .funding-grid article, .impact-steps li { min-height: 260px; }
  .activity-grid h3, .dimension-grid h3, .stokfel-pillar-grid h3, .funding-grid h3, .impact-steps strong { margin-top: 65px; }
  .event-hero, .event-hero-content, .donate-hero, .donate-hero-inner { min-height: 650px; }
  .event-hero h1 { font-size: 4rem; }
  .event-row { grid-template-columns: 1fr; gap: 18px; }
  .event-date { padding-bottom: 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .event-row > a { grid-column: auto; }
  .impact-why-grid { gap: 25px; }
  .story-mosaic { grid-template-columns: 1fr; grid-auto-rows: 375px; }
  .planning-feature > a { min-height: 300px; }
  .planning-photo > a { height: 300px; }
  .culture-grid { grid-auto-rows: 390px; }
  .contact-fab { width: 50px; padding: 0; justify-content: center; }
  .contact-fab span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .media-lightbox { width: calc(100% - 16px); height: calc(100% - 16px); }
  .lightbox-panel { grid-template-rows: 54px minmax(0, 1fr) auto; }
  .lightbox-stage { padding: 8px; }
  .lightbox-footer { min-height: 116px; grid-template-columns: 1fr 1fr; gap: 10px; padding: 12px; }
  .lightbox-footer p { grid-column: 1 / -1; grid-row: 1; font-size: 1rem; }
  .lightbox-footer button { width: 100%; }
  .lightbox-close span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
  .contact-form, .nomination-form { padding: 28px 20px; }
  .bank-details > div { grid-template-columns: 1fr; gap: 5px; }
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .form-submit { align-items: stretch; flex-direction: column; }
  .form-submit .button { width: 100%; }
  .form-result-actions { align-items: stretch; flex-direction: column; }
}
