/*
  Face of Liberty International website prototype
  Design direction: Apple restraint x Economist editorial clarity x Stripe motion x Atlas institutional confidence
*/

:root {
  --navy-950: #06102c;
  --navy-900: #0a1740;
  --navy-800: #11265f;
  --navy-700: #1e3780;
  --purple: #2c178d;
  --gold: #fcc709;
  --gold-deep: #e9b800;
  --sky: #99d8f4;
  --sky-soft: #eaf8fe;
  --ink: #111827;
  --ink-soft: #344054;
  --muted: #667085;
  --line: #d9e2ee;
  --line-dark: rgba(255, 255, 255, 0.16);
  --paper: #f6f8fc;
  --white: #ffffff;
  --success: #16794b;
  --danger: #b42318;
  --shadow-sm: 0 8px 24px rgba(10, 23, 64, 0.07);
  --shadow-md: 0 22px 60px rgba(10, 23, 64, 0.13);
  --shadow-lg: 0 36px 90px rgba(6, 16, 44, 0.22);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-pill: 999px;
  --container: min(1280px, calc(100vw - 40px));
  --reading: 760px;
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  background: var(--white);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
[role="button"] {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy-950);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 720;
}

h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 720;
}

p {
  margin-bottom: 1.2em;
}

ul,
ol {
  margin-top: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.reading-width {
  width: min(var(--reading), 100%);
}

.section {
  position: relative;
  padding: clamp(78px, 10vw, 140px) 0;
}

.section-sm {
  padding: clamp(54px, 7vw, 90px) 0;
}

.section-navy {
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy-950);
}

.section-navy h2,
.section-navy h3,
.section-navy h4 {
  color: var(--white);
}

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

.section-sky {
  background: var(--sky-soft);
}

.section-gold {
  background: var(--gold);
}

.section-gold h2,
.section-gold h3,
.section-gold h4,
.section-gold p {
  color: var(--navy-950);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--navy-700);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  content: "";
  background: var(--gold);
}

.section-navy .eyebrow {
  color: var(--sky);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
  margin-bottom: clamp(38px, 6vw, 72px);
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-navy .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.muted {
  color: var(--muted);
}

.text-white {
  color: var(--white) !important;
}

.text-gold {
  color: var(--gold) !important;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  color: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.label-gold {
  border-color: rgba(252, 199, 9, 0.42);
  background: rgba(252, 199, 9, 0.16);
}

.label-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 760;
  line-height: 1.1;
  text-decoration: none;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), background-color 240ms ease, color 240ms ease, border-color 240ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 10px 24px rgba(10, 23, 64, 0.22);
}

.btn-primary:hover {
  background: var(--navy-800);
  box-shadow: 0 14px 32px rgba(10, 23, 64, 0.26);
}

.btn-gold {
  color: var(--navy-950);
  background: var(--gold);
  box-shadow: 0 10px 24px rgba(252, 199, 9, 0.24);
}

.btn-gold:hover {
  background: #ffd62f;
}

.btn-outline {
  color: var(--navy-900);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.74);
}

.btn-outline:hover {
  border-color: var(--navy-900);
  background: var(--white);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-weight: 760;
  text-decoration: none;
}

.btn-link .arrow,
.card-link .arrow {
  transition: transform 220ms var(--ease);
}

.btn-link:hover .arrow,
.card-link:hover .arrow {
  transform: translateX(5px);
}

.icon-btn {
  display: inline-grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--navy-950);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  transition: transform 200ms var(--ease), border-color 200ms ease, background 200ms ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--navy-900);
  background: var(--paper);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--navy-950);
  border-radius: 8px;
  background: var(--gold);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.progress-bar {
  position: fixed;
  z-index: 1200;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.progress-bar span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold);
}

.utility-bar {
  position: relative;
  z-index: 1100;
  color: rgba(255, 255, 255, 0.84);
  background: var(--navy-950);
  font-size: 0.76rem;
}

.utility-inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-inner p {
  margin: 0;
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
}

.utility-links a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
}

.utility-links a:hover {
  opacity: 1;
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid rgba(217, 226, 238, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px) saturate(150%);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 12px 36px rgba(6, 16, 44, 0.08);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  text-decoration: none;
}

.brand-mark {
  width: 43px;
  height: 43px;
}

.brand-wordmark {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-wordmark strong {
  font-size: 0.92rem;
  font-weight: 860;
  letter-spacing: 0.02em;
}

.brand-wordmark span {
  color: var(--purple);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.desktop-nav {
  display: flex;
  flex: 1;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.nav-item {
  display: flex;
  height: 100%;
  align-items: center;
}

.nav-trigger,
.nav-direct {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  color: var(--navy-950);
  border: 0;
  border-radius: 10px;
  background: transparent;
  font-size: 0.87rem;
  font-weight: 690;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.nav-trigger:hover,
.nav-direct:hover,
.nav-trigger[aria-expanded="true"],
.nav-direct.is-current {
  color: var(--navy-800);
  background: var(--paper);
}

.nav-trigger svg {
  width: 13px;
  transition: transform 180ms ease;
}

.nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.nav-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.nav-actions .btn {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.84rem;
}

.mega-menu {
  position: absolute;
  z-index: 1010;
  top: calc(100% + 1px);
  left: 50%;
  width: min(1060px, calc(100vw - 40px));
  padding: 26px;
  visibility: hidden;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translate(-50%, -10px);
  transition: opacity 190ms ease, transform 260ms var(--ease), visibility 0s linear 260ms;
}

.nav-item.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
  transition-delay: 0s;
}

.mega-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr 1fr;
  gap: 16px;
}

.mega-feature {
  min-height: 240px;
  padding: 24px;
  color: var(--white);
  border-radius: 18px;
  background: var(--navy-950);
}

.mega-feature h3 {
  margin: 22px 0 12px;
  color: var(--white);
  font-size: 1.55rem;
}

.mega-feature p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.mega-column {
  padding: 12px;
}

.mega-column h4 {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-column a {
  display: block;
  padding: 8px 0;
  color: var(--navy-950);
  font-size: 0.9rem;
  font-weight: 640;
  line-height: 1.35;
  text-decoration: none;
}

.mega-column a:hover {
  color: var(--purple);
}

.mobile-menu-btn {
  display: none;
}

.mobile-drawer {
  position: fixed;
  z-index: 1500;
  inset: 0;
  visibility: hidden;
  background: rgba(6, 16, 44, 0.58);
  opacity: 0;
  transition: opacity 220ms ease, visibility 0s linear 220ms;
}

.mobile-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.mobile-panel {
  width: min(430px, 92vw);
  height: 100%;
  margin-left: auto;
  padding: 22px;
  overflow-y: auto;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 320ms var(--ease);
}

.mobile-drawer.is-open .mobile-panel {
  transform: translateX(0);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
}

.mobile-nav details {
  border-bottom: 1px solid var(--line);
}

.mobile-nav summary,
.mobile-nav > a {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-950);
  list-style: none;
  font-size: 1.04rem;
  font-weight: 720;
  text-decoration: none;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-subnav {
  display: grid;
  gap: 2px;
  padding: 0 0 14px 14px;
}

.mobile-subnav a {
  padding: 8px 0;
  color: var(--ink-soft);
  text-decoration: none;
}

.mobile-cta {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.search-dialog {
  width: min(840px, calc(100vw - 32px));
  max-height: min(760px, calc(100vh - 40px));
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.search-dialog::backdrop {
  background: rgba(6, 16, 44, 0.7);
  backdrop-filter: blur(8px);
}

.search-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.search-head input {
  flex: 1;
  min-width: 0;
  padding: 13px 4px;
  color: var(--navy-950);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.search-body {
  max-height: 560px;
  padding: 18px 20px 24px;
  overflow-y: auto;
}

.search-hint {
  color: var(--muted);
  font-size: 0.9rem;
}

.search-results {
  display: grid;
  gap: 8px;
}

.search-result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
}

.search-result:hover,
.search-result:focus-visible {
  background: var(--paper);
}

.search-result strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.02rem;
}

.search-result span {
  color: var(--muted);
  font-size: 0.85rem;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: clip;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 26%, rgba(153, 216, 244, 0.16), transparent 25%),
    linear-gradient(135deg, var(--navy-950) 0%, #0d2052 52%, #151070 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to right, black, transparent 82%);
}

.hero::after {
  position: absolute;
  top: 11%;
  right: -12%;
  width: 590px;
  height: 590px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(255, 255, 255, 0.025), 0 0 0 180px rgba(255, 255, 255, 0.018);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.05fr) minmax(430px, 0.95fr);
  gap: clamp(44px, 8vw, 105px);
  align-items: center;
  padding: clamp(72px, 10vw, 125px) 0;
}

.hero-copy h1 {
  max-width: 780px;
  color: var(--white);
  font-size: clamp(3.8rem, 6.8vw, 7.1rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.hero-copy .serif {
  color: var(--gold);
}

.hero-copy > p {
  max-width: 660px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

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

.hero-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.hero-note .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(252, 199, 9, 0.12);
}

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

.hero-image-wrap {
  position: absolute;
  top: 24px;
  right: 0;
  width: min(550px, 100%);
  aspect-ratio: 0.9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px 42px 130px 42px;
  background: #18265d;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.8deg);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 53% center;
  transform: scale(1.03);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(6,16,44,.46), transparent 42%);
}

.float-card {
  position: absolute;
  z-index: 3;
  padding: 18px;
  color: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.float-card strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
}

.float-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 670;
}

.float-card-a {
  bottom: 40px;
  left: -30px;
  width: 210px;
  animation: floatA 6s ease-in-out infinite;
}

.float-card-b {
  top: 72px;
  right: -18px;
  width: 188px;
  color: var(--white);
  border-color: rgba(252, 199, 9, 0.5);
  background: rgba(10, 23, 64, 0.9);
  animation: floatB 7s ease-in-out infinite;
}

.float-card-b span {
  color: rgba(255, 255, 255, 0.65);
}

.hero-emblem {
  position: absolute;
  z-index: 4;
  bottom: 56px;
  right: -12px;
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: var(--shadow-md);
  animation: spinSlow 18s linear infinite;
}

.hero-emblem span {
  color: var(--navy-950);
  font-size: 0.64rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

@keyframes floatA {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-2deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(0deg); }
}

@keyframes floatB {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(2deg); }
  50% { transform: translate3d(-5px, 10px, 0) rotate(0deg); }
}

@keyframes spinSlow {
  to { transform: rotate(360deg); }
}

.latest-strip {
  position: relative;
  z-index: 4;
  color: var(--navy-950);
  border-bottom: 1px solid rgba(10, 23, 64, 0.11);
  background: var(--gold);
}

.latest-inner {
  display: grid;
  min-height: 62px;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.latest-kicker {
  font-size: 0.72rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.latest-title {
  overflow: hidden;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.latest-link {
  font-size: 0.84rem;
  font-weight: 780;
  text-decoration: none;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.issue-item {
  position: relative;
  min-height: 180px;
  padding: 28px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  transition: background 200ms ease, transform 240ms var(--ease);
}

.issue-item:hover {
  z-index: 2;
  background: var(--sky-soft);
  transform: translateY(-4px);
}

.issue-number {
  display: block;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.issue-item strong {
  color: var(--navy-950);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.feature-image {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.feature-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 45%, rgba(6, 16, 44, 0.55));
}

.image-caption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
}

.feature-copy h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.9rem);
}

.feature-copy > p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 690;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.programme-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.programme-card {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms var(--ease), box-shadow 320ms ease;
}

.programme-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.programme-card:nth-child(1),
.programme-card:nth-child(4) {
  grid-column: span 7;
}

.programme-card:nth-child(2),
.programme-card:nth-child(3) {
  grid-column: span 5;
}

.programme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease);
}

.programme-card:hover img {
  transform: scale(1.04);
}

.programme-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(6,16,44,.04) 25%, rgba(6,16,44,.92) 100%);
}

.programme-content {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  color: rgba(255, 255, 255, 0.8);
}

.programme-content h3 {
  margin: 13px 0 11px;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.9rem);
}

.programme-content p {
  max-width: 610px;
  margin-bottom: 18px;
}

.programme-content .card-link {
  color: var(--white);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.stat {
  min-height: 230px;
  padding: 28px 24px;
  background: var(--navy-950);
}

.stat-number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: clamp(3.1rem, 5vw, 5.2rem);
  font-weight: 820;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.stat strong {
  display: block;
  margin-bottom: 7px;
  color: var(--white);
  font-size: 0.95rem;
}

.stat span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.editorial-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.editorial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.editorial-card.featured {
  grid-column: span 8;
}

.editorial-card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--paper);
}

.editorial-card.featured .editorial-card-media {
  aspect-ratio: 2 / 1;
}

.editorial-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.editorial-card:hover .editorial-card-media img {
  transform: scale(1.04);
}

.editorial-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.editorial-card-body h3 {
  margin: 15px 0 12px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.editorial-card.featured h3 {
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.editorial-card-body p {
  color: var(--ink-soft);
}

.editorial-card-body .card-link {
  margin-top: auto;
}

.story-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: center;
}

.story-quote {
  position: relative;
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
}

.story-quote::before {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  content: "\201C";
  font-family: var(--font-serif);
  font-size: 6rem;
  line-height: 0.5;
}

.story-quote blockquote {
  margin: 0;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.8rem);
  font-style: italic;
  line-height: 1.25;
}

.story-quote cite {
  display: block;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.opportunity-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: clamp(36px, 6vw, 70px);
  border-radius: var(--radius-lg);
  background: var(--gold);
}

.opportunity-band h2 {
  max-width: 850px;
  margin-bottom: 14px;
  color: var(--navy-950);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
}

.opportunity-band p {
  max-width: 780px;
  margin: 0;
  color: rgba(6, 16, 44, 0.74);
}

.newsletter {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 86px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-900);
}

.newsletter::after {
  position: absolute;
  right: -130px;
  bottom: -160px;
  width: 430px;
  height: 430px;
  content: "";
  border: 70px solid rgba(153, 216, 244, 0.1);
  border-radius: 50%;
}

.newsletter-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 50px;
  align-items: end;
}

.newsletter h2 {
  margin-bottom: 14px;
  color: var(--white);
}

.newsletter p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.inline-form {
  display: flex;
  gap: 10px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
}

.inline-form input {
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  color: var(--white);
  border: 0;
  outline: 0;
  background: transparent;
}

.inline-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.form-note {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--sky) !important;
  font-size: 0.8rem;
}

.page-hero {
  position: relative;
  overflow: clip;
  padding: clamp(90px, 12vw, 170px) 0 clamp(74px, 10vw, 125px);
  color: var(--white);
  background: linear-gradient(125deg, var(--navy-950), #10235a 58%, #27157f);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 75% 40%, black, transparent 64%);
}

.page-hero::after {
  position: absolute;
  right: -150px;
  bottom: -270px;
  width: 580px;
  height: 580px;
  content: "";
  border: 100px solid rgba(252, 199, 9, 0.11);
  border-radius: 50%;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(3.5rem, 7vw, 7.2rem);
}

.page-hero p {
  max-width: 790px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--white);
  text-decoration: none;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: clamp(40px, 8vw, 110px);
  align-items: start;
}

.two-column-even {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prose {
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.prose h2 {
  margin-top: 2em;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
}

.prose h3 {
  margin-top: 1.7em;
}

.prose a {
  color: var(--purple);
}

.prose blockquote {
  margin: 36px 0;
  padding: 24px 0 24px 28px;
  color: var(--navy-900);
  border-left: 5px solid var(--gold);
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-style: italic;
}

.side-card {
  position: sticky;
  top: 120px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
}

.side-card h3 {
  font-size: 1.45rem;
}

.side-card ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.side-card li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.side-card a {
  color: var(--navy-900);
  font-weight: 680;
  text-decoration: none;
}

.value-grid,
.pathway-grid,
.support-grid,
.contact-grid,
.people-grid,
.timeline-grid {
  display: grid;
  gap: 20px;
}

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

.value-card,
.pathway-card,
.support-card,
.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.value-icon,
.pathway-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--navy-950);
  border-radius: 14px;
  background: var(--gold);
  font-weight: 820;
}

.value-card p,
.pathway-card p,
.support-card p,
.contact-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.pathway-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pathway-card {
  position: relative;
  overflow: hidden;
}

.pathway-card::after {
  position: absolute;
  top: 49px;
  right: -12px;
  width: 24px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.pathway-card:last-child::after {
  display: none;
}

.quote-band {
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--sky-soft);
}

.quote-band blockquote {
  max-width: 940px;
  margin: 0;
  color: var(--navy-950);
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.7vw, 3.8rem);
  font-style: italic;
  line-height: 1.2;
}

.quote-band cite {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 730;
  text-transform: uppercase;
}

.library-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  padding: 10px 15px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
}

.filter-chip:hover,
.filter-chip.is-active {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.library-search {
  min-width: min(330px, 100%);
  padding: 11px 16px;
  color: var(--navy-950);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
}

.library-card[hidden] {
  display: none;
}

.standards-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 40px;
  padding: clamp(34px, 6vw, 68px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-950);
}

.standards-panel h2,
.standards-panel h3 {
  color: var(--white);
}

.standards-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.standard {
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.standard strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
}

.standard span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
}

.programme-overview {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
}

.programme-overview-image {
  min-height: 580px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.programme-overview-image img {
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.programme-list {
  display: grid;
  gap: 8px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.programme-list li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.programme-list li::before {
  color: var(--gold-deep);
  content: "\2192";
  font-weight: 900;
}

.timeline-grid {
  grid-template-columns: repeat(5, 1fr);
}

.timeline-card {
  min-height: 260px;
  padding: 24px;
  border-top: 4px solid var(--gold);
  background: var(--paper);
}

.timeline-card span {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.timeline-card h3 {
  margin-top: 25px;
  font-size: 1.4rem;
}

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

.curriculum-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.curriculum-item b {
  display: grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--navy-950);
  border-radius: 10px;
  background: var(--gold);
}

.curriculum-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.data-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.data-table th,
.data-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.data-table th {
  color: var(--muted);
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.data-table td:first-child {
  color: var(--navy-950);
  font-weight: 720;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

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

.person-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.person-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper);
}

.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person-content {
  padding: 22px;
}

.person-content h3 {
  margin-bottom: 5px;
  font-size: 1.35rem;
}

.person-role {
  display: block;
  color: var(--purple);
  font-size: 0.83rem;
  font-weight: 740;
}

.person-content p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.governance-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(35px, 7vw, 90px);
  align-items: start;
}

.governance-list {
  display: grid;
  gap: 12px;
}

.governance-item {
  padding: 22px;
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.governance-item h3 {
  font-size: 1.35rem;
}

.governance-item p {
  margin: 0;
  color: var(--ink-soft);
}

.event-list {
  border-top: 1px solid var(--line);
}

.event-row {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.event-date {
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-row h3 {
  margin: 0 0 6px;
  font-size: 1.55rem;
}

.event-row p {
  margin: 0;
  color: var(--muted);
}

.media-kit {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(34px, 6vw, 68px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy-950);
}

.media-kit h2 {
  color: var(--white);
}

.media-kit p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

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

.support-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.support-amount {
  display: block;
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: 3rem;
  font-weight: 820;
  letter-spacing: -0.05em;
}

.support-card .btn {
  margin-top: auto;
}

.partner-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-cell {
  min-height: 130px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.partner-cell span {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.partner-cell strong {
  display: block;
  margin-top: 20px;
  color: var(--navy-950);
}

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

.contact-card a {
  color: var(--purple);
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.field {
  display: grid;
  gap: 7px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy-950);
  font-size: 0.82rem;
  font-weight: 730;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--navy-950);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--success);
  font-size: 0.84rem;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.social-list a {
  padding: 8px 12px;
  color: var(--navy-900);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.social-list a:hover {
  color: var(--white);
  border-color: var(--navy-900);
  background: var(--navy-900);
}

.legal-note {
  padding: 22px;
  color: var(--ink-soft);
  border-left: 4px solid var(--gold);
  background: var(--paper);
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(4, minmax(135px, 0.7fr));
  gap: 42px;
  padding: 76px 0 60px;
}

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

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

.footer-brand p {
  max-width: 360px;
  margin: 22px 0;
  color: rgba(255, 255, 255, 0.56);
}

.footer-column h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.87rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.75rem;
}

.footer-bottom p {
  max-width: 760px;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  z-index: 900;
  right: 20px;
  bottom: 20px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
}

.back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.reveal-left {
  transform: translateX(-28px);
}

.reveal.reveal-right {
  transform: translateX(28px);
}

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

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

.empty-state {
  padding: 42px;
  color: var(--muted);
  border: 1px dashed var(--line);
  border-radius: 18px;
  text-align: center;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 90px 20px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--gold-deep);
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.not-found h1 {
  margin-top: 28px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.not-found p {
  max-width: 600px;
  color: var(--muted);
}

@media (max-width: 1120px) {
  .desktop-nav,
  .nav-actions .search-open,
  .nav-actions .btn {
    display: none;
  }

  .nav-shell {
    justify-content: space-between;
  }

  .nav-actions {
    margin-left: auto;
  }

  .mobile-menu-btn {
    display: inline-grid;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.75fr);
    gap: 44px;
  }

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

  .stat:nth-child(4),
  .stat:nth-child(5) {
    grid-column: span 1;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }
}

@media (max-width: 900px) {
  :root {
    --container: min(100% - 32px, 760px);
  }

  .utility-inner {
    justify-content: center;
    text-align: center;
  }

  .utility-links {
    display: none;
  }

  .section-heading,
  .feature-grid,
  .story-split,
  .newsletter-grid,
  .two-column,
  .two-column-even,
  .standards-panel,
  .programme-overview,
  .governance-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 95px;
  }

  .hero-copy h1 {
    font-size: clamp(3.6rem, 12vw, 6.5rem);
  }

  .hero-visual {
    min-height: 530px;
  }

  .hero-image-wrap {
    right: 3%;
    left: 3%;
    width: auto;
    height: 480px;
    aspect-ratio: auto;
  }

  .float-card-a {
    left: 0;
  }

  .float-card-b {
    right: 0;
  }

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

  .issue-item:nth-child(2) {
    border-right: 0;
  }

  .issue-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .programme-card,
  .programme-card:nth-child(1),
  .programme-card:nth-child(2),
  .programme-card:nth-child(3),
  .programme-card:nth-child(4),
  .editorial-card,
  .editorial-card.featured {
    grid-column: span 12;
  }

  .programme-card {
    min-height: 480px;
  }

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

  .stat:last-child {
    grid-column: 1 / -1;
  }

  .value-grid,
  .people-grid,
  .support-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pathway-card::after {
    display: none;
  }

  .side-card {
    position: relative;
    top: auto;
  }

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

  .partner-cell:nth-child(2) {
    border-right: 0;
  }

  .partner-cell:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --container: calc(100% - 24px);
    --header-height: 70px;
  }

  body {
    font-size: 15.5px;
  }

  .utility-bar {
    display: none;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-wordmark strong {
    font-size: 0.78rem;
  }

  .brand-wordmark span {
    font-size: 0.58rem;
  }

  .hero-inner {
    padding-top: 70px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5.6rem);
  }

  .hero-actions,
  .opportunity-band {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .opportunity-band .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-image-wrap {
    height: 400px;
    border-radius: 28px 28px 90px 28px;
  }

  .float-card {
    padding: 14px;
  }

  .float-card-a {
    bottom: 16px;
    width: 170px;
  }

  .float-card-b {
    top: 44px;
    width: 155px;
  }

  .hero-emblem {
    display: none;
  }

  .latest-inner {
    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .latest-link {
    display: none;
  }

  .issue-grid,
  .stats-grid,
  .value-grid,
  .pathway-grid,
  .people-grid,
  .timeline-grid,
  .curriculum-grid,
  .support-grid,
  .contact-grid,
  .standards-list,
  .partner-band,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .issue-item,
  .issue-item:nth-child(2),
  .partner-cell,
  .partner-cell:nth-child(2) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    grid-column: auto;
  }

  .feature-image,
  .feature-image img,
  .programme-overview-image,
  .programme-overview-image img {
    min-height: 390px;
  }

  .programme-card {
    min-height: 430px;
  }

  .opportunity-band {
    text-align: left;
  }

  .inline-form {
    display: grid;
    border-radius: 18px;
  }

  .inline-form .btn {
    width: 100%;
  }

  .event-row,
  .media-kit {
    grid-template-columns: 1fr;
  }

  .event-row .btn {
    width: fit-content;
  }

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

  .field-full {
    grid-column: auto;
  }

  .footer-main {
    gap: 30px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-legal-links {
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

@media print {
  .utility-bar,
  .site-header,
  .site-footer,
  .back-to-top,
  .progress-bar,
  .newsletter,
  .opportunity-band {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .section-sm {
    padding: 28px 0;
  }

  .page-hero {
    padding: 30px 0;
    color: #000;
    background: #fff;
  }

  .page-hero h1,
  .page-hero p {
    color: #000;
  }
}
