/* AEES — institutional stylesheet
   Palette and type are chosen for a European academic body, not a marketing landing page. */

:root {
  --ink: #0d2a56;
  --ink-2: #123c73;
  --ink-3: #1d579e;
  --paper: #f5f7fb;
  --paper-2: #eaf0f8;
  --paper-3: #dce6f2;
  --white: #fdfefe;
  --bronze: #dfb32d;
  --bronze-d: #b48710;
  --bronze-l: #f2d15a;
  --rule: #d3deeb;
  --muted: #59687b;
  --body: #25364f;
  --link: #0748ae;
  --link-h: #0b6ed2;
  --notice: #edf3fb;
  --danger: #7a2e2e;
  --ok: #2d4a3e;
  --focus: #1768c5;
  --primary: #0645ad;
  --primary-d: #07377f;
  --primary-l: #2f7fd4;
  --blue-soft: #8fc4ff;
  --navy-deep: #071d42;
  --header-h: 137px;
  --util-h: 36px;
  --max: 1180px;
  --serif: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Source Sans 3", "Source Sans Pro", "Segoe UI", system-ui, sans-serif;
  --shadow: 0 1px 0 rgba(21, 34, 56, 0.06);
  --gold: var(--bronze);
  --gold-d: var(--bronze-d);
  --navy: var(--ink);
  --line: var(--rule);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  hanging-punctuation: first last;
}

html[lang="en"] { }

body {
  margin: 0;
  color: var(--body);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--serif);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration-thickness: 1px; text-underline-offset: 0.18em; }
a:hover { color: var(--link-h); }
:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
}
.skip:focus { left: 0.5rem; top: 0.5rem; }

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ——— Utility bar ——— */
.util {
  background: var(--ink);
  color: #d9d3c4;
  font-family: var(--sans);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  height: var(--util-h);
  display: flex;
  align-items: center;
}
.util .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2.5rem));
}
.util a {
  color: #d9d3c4;
  text-decoration: none;
}
.util a:hover { color: var(--bronze-l); }
.util-nav, .util-right {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}
.util-nav a + a::before,
.util-right a + a::before,
.util-right .lang::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 10px;
  background: #3a4d66;
  margin-right: 1.15rem;
  vertical-align: middle;
}
.lang {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
}
.lang a.is-active {
  color: var(--bronze-l);
  font-weight: 600;
}
.util-account { display: inline-flex; align-items: center; gap: 1.15rem; }
.util-account::before {
  content: "";
  width: 1px;
  height: 10px;
  background: #3a4d66;
}
.util-lock { display: inline-flex; align-items: center; margin: 0; }
.util-lock::before {
  content: "";
  width: 1px;
  height: 10px;
  margin-right: 1rem;
  background: #3a4d66;
}
.util-lock button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #d9d3c4;
  font: inherit;
  cursor: pointer;
}
.util-lock button:hover { color: var(--bronze-l); }

/* ——— Header ——— */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
  overflow: visible;
  font-family: var(--sans);
}
.mast {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "brand actions"
    "nav nav";
  align-items: center;
  gap: 0 1.25rem;
  padding-top: 0.45rem;
  padding-bottom: 0;
}
.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
  min-width: 0;
  padding-bottom: 0.4rem;
}
.brand img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.16em;
  line-height: 1;
}
.brand-sub {
  display: block;
  margin-top: 0.28rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  font-weight: 400;
  max-width: 240px;
  line-height: 1.3;
  text-transform: none;
}

.nav-toggle {
  display: none;
  grid-area: actions;
  justify-self: end;
  background: none;
  border: 1px solid var(--rule);
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  position: absolute;
  left: 11px;
}
.nav-toggle span { top: 20px; }
.nav-toggle span::before { content: ""; top: -6px; }
.nav-toggle span::after { content: ""; top: 6px; }

.primary-nav {
  grid-area: nav;
  border-top: 1px solid var(--rule);
  min-width: 0;
}
.primary-nav > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
}
.primary-nav > ul > li {
  position: static;
  flex: 0 0 auto;
}
.primary-nav > ul > li > a,
.primary-nav > ul > li > button {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: none;
  border: 0;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 0.72rem 0.7rem;
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  line-height: 1.2;
}
.primary-nav > ul > li > button[data-mega]::after {
  content: "";
  width: 0.38rem;
  height: 0.38rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.55;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > button:hover,
.primary-nav > ul > li.is-open > button,
.primary-nav > ul > li:focus-within > button,
.primary-nav > ul > li > a.is-current {
  border-bottom-color: var(--bronze);
  color: var(--ink);
}

.header-cta {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.62rem 1.05rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #f4ead6;
  cursor: pointer;
  line-height: 1.2;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn:hover { background: var(--ink-2); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--paper-2); color: var(--ink); }
.btn-bronze {
  background: var(--bronze-d);
  border-color: var(--bronze-d);
  color: #fff;
}
.btn-bronze:hover { background: #6f5326; color: #fff; }
.btn-lg { padding: 0.85rem 1.35rem; font-size: 0.95rem; }
.btn-bronze {
  display: inline-flex;
  background: var(--bronze-d);
  color: #fff;
  border: 1px solid var(--bronze-d);
  padding: 0.55rem 1rem;
  text-decoration: none;
  font-weight: 600;
}
.btn-bronze:hover { background: #6f5326; color: #fff; }
.more { font-weight: 650; }
.split-wide { grid-template-columns: 1.1fr 0.9fr; }
.small { font-size: 0.86rem; color: var(--muted); }

/* Mega menu — full-width panel under the header, not the nav item */
.mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  box-shadow: 0 18px 40px rgba(21, 34, 56, 0.12);
  padding: 1.5rem 0 1.7rem;
}
.mega::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}
.primary-nav li.is-open > .mega,
.primary-nav li:hover > .mega,
.primary-nav li:focus-within > .mega {
  display: block;
}
.mega-grid {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 1.75rem 2.25rem;
  align-items: start;
}
.mega-intro {
  padding-right: 1.25rem;
  border-right: 1px solid var(--rule);
}
.mega-intro h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
  font-weight: 600;
  color: var(--ink);
}
.mega-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.mega-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.2rem 1rem;
}
.mega-cols a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 0.6rem 0.7rem;
  font-size: 0.92rem;
  font-weight: 650;
  border: 1px solid transparent;
  line-height: 1.25;
}
.mega-cols a:hover,
.mega-cols a:focus-visible {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--rule);
}
.mega-cols a small {
  display: block;
  margin-top: 0.18rem;
  color: #4a5560;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.35;
}

/* ——— Hero ——— */
.hero {
  background: var(--ink);
  color: #efe8d9;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(196,163,106,0.07) 1px, transparent 1px),
    linear-gradient(rgba(196,163,106,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 80% 20%, #000 20%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 3rem;
  padding: 3.6rem 0 3.2rem;
  align-items: end;
}
.kicker {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze-l);
  margin: 0 0 1rem;
  font-weight: 600;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2.05rem, 4.2vw, 3.15rem);
  line-height: 1.18;
  color: #f7f3eb;
  margin: 0 0 1.1rem;
  letter-spacing: -0.01em;
}
.hero .lede {
  font-size: 1.12rem;
  color: #d5cbb6;
  max-width: 38rem;
  margin: 0 0 1.6rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.hero-panel {
  background: rgba(252, 251, 248, 0.05);
  border: 1px solid rgba(196, 163, 106, 0.35);
  padding: 1.4rem 1.45rem 1.3rem;
}
.hero-panel h2 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 0.7rem;
  color: #f4ead6;
  font-weight: 600;
}
.hero-panel p {
  margin: 0 0 0.85rem;
  color: #d9d3c4;
  font-size: 0.95rem;
}
.hero-panel p:last-child { margin-bottom: 0; }
.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}
.hero-panel li {
  padding: 0.32rem 0;
  border-top: 1px solid rgba(196, 163, 106, 0.2);
  color: #efe8d9;
}
.hero-panel li:first-child { border-top: 0; }

.legal-strip {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  font-size: 0.88rem;
  color: var(--body);
  padding: 0.85rem 0;
}
.legal-strip strong { color: var(--ink); font-weight: 650; }

/* ——— Finder ——— */
.finder {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 1.6rem 0;
}
.finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.finder-card {
  border: 1px solid var(--rule);
  padding: 1.15rem 1.2rem 1.2rem;
  background: var(--paper);
}
.finder-card h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.finder-card p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.92rem;
}
.finder-row {
  display: flex;
  gap: 0.45rem;
}
.finder-row select,
.field input,
.field textarea,
.field select,
.search-input {
  width: 100%;
  font: inherit;
  font-family: var(--sans);
  font-size: 0.95rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink);
}

/* ——— Sections ——— */
.section { padding: 3.4rem 0; }
.section-tight { padding: 2.2rem 0; }
.section-ink {
  background: var(--ink-2);
  color: #efe8d9;
}
.section-white { background: var(--white); border-block: 1px solid var(--rule); }
.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.8rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--rule);
}
.section-head h2,
.page-title h1 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.section-head p,
.deck {
  margin: 0.45rem 0 0;
  color: var(--muted);
  max-width: 42rem;
}
.label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-d);
  font-weight: 650;
  margin: 0 0 0.45rem;
}

/* Editorial 2×2 */
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--white);
}
.pillar {
  padding: 1.6rem 1.55rem 1.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillar:nth-child(2n) { border-right: 0; }
.pillar:nth-last-child(-n+2) { border-bottom: 0; }
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.28rem;
  margin: 0 0 0.55rem;
  color: var(--ink);
}
.pillar p { margin: 0 0 0.8rem; }
.pillar a { font-weight: 600; font-size: 0.92rem; }

/* Roles */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.split-wide { grid-template-columns: 1.15fr 0.85fr; }
.prose h2, .prose h3 {
  font-family: var(--serif);
  color: var(--ink);
  line-height: 1.25;
}
.prose h2 { font-size: 1.55rem; margin: 2rem 0 0.7rem; }
.prose h3 { font-size: 1.2rem; margin: 1.5rem 0 0.5rem; }
.prose p { margin: 0 0 1rem; }
.prose ul, .prose ol { margin: 0 0 1rem; padding-left: 1.2rem; }
.prose li { margin: 0.25rem 0; }
.prose blockquote {
  margin: 1.4rem 0;
  padding: 0.2rem 0 0.2rem 1.1rem;
  border-left: 3px solid var(--bronze);
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}

.notice, .callout {
  background: var(--notice);
  border: 1px solid var(--paper-3);
  padding: 1rem 1.1rem;
  font-size: 0.95rem;
}
.notice-title {
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.callout-ink {
  background: var(--ink);
  color: #efe8d9;
  border-color: var(--ink);
}
.callout-ink a { color: var(--bronze-l); }

/* Tables */
.table-wrap { overflow-x: auto; border: 1px solid var(--rule); background: var(--white); margin: 0 0 1.4rem; }
table.data {
  display: table;
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
table.data th,
table.data td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
  line-height: 1.5;
}
table.data th {
  background: var(--ink);
  color: #f4ead6;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
table.data tr:last-child td { border-bottom: 0; }
table.data tr:hover td { background: var(--paper); }
table.data a { font-weight: 600; text-decoration: none; }
.status {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.12rem 0.4rem;
  border: 1px solid var(--paper-3);
  background: var(--paper);
  color: var(--ink);
}
.status-private { color: var(--ink); }
.status-open { color: var(--ok); border-color: #c5d4cb; background: #eef4f0; }

/* Cards / lists */
.cards-3, .cards-4, .cards-2 {
  display: grid;
  gap: 1rem;
}
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.doc-card, .news-card, .qual-card, .centre-card {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 1.15rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.doc-card h3, .news-card h3, .qual-card h3, .centre-card h3 {
  font-family: var(--serif);
  font-size: 1.12rem;
  margin: 0.3rem 0 0.5rem;
  color: var(--ink);
}
.meta {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bronze-d);
  font-weight: 650;
}
.doc-card p, .news-card p, .qual-card p { margin: 0 0 0.9rem; color: var(--body); flex: 1; }
.more {
  font-weight: 650;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--bronze);
  align-self: flex-start;
}
.more:hover { color: var(--bronze-d); }

/* Spec sheet — definition list, never a CSS grid on <table> */
.spec-sheet {
  margin: 1.4rem 0 1.8rem;
  border: 1px solid var(--rule);
  background: var(--white);
}
.spec-row {
  display: grid;
  grid-template-columns: minmax(10.5rem, 28%) minmax(0, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--rule);
}
.spec-row:last-child { border-bottom: 0; }
.spec-row dt,
.spec-row dd {
  margin: 0;
  padding: 1rem 1.15rem;
  font-size: 0.98rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}
.spec-row dt {
  background: var(--paper);
  color: var(--ink);
  font-weight: 650;
  border-right: 1px solid var(--rule);
}
.spec-row dd { color: var(--body); }
.spec-list { margin: 0; padding-left: 1.15rem; }
.spec-list li { margin: 0.25rem 0; }
.record-lead {
  margin: 0 0 1rem;
  max-width: 46rem;
  color: var(--ink);
  font-size: 1.05rem;
}
.record-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
}

.id-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.2rem;
  padding: 1.2rem 0;
  font-size: 0.88rem;
}
.id-bar div span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.15rem;
}
.id-bar strong { color: var(--ink); font-weight: 650; }

/* Breadcrumb / page header */
.crumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 0.8rem;
}
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--ink); }
.page-hero {
  padding: 2.3rem 0 1.6rem;
  border-bottom: 1px solid var(--rule);
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: var(--ink);
  margin: 0 0 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.page-hero .deck { font-size: 1.08rem; color: var(--body); max-width: 46rem; }

.layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  padding: 2.4rem 0 3.5rem;
  align-items: start;
}
.layout-single {
  padding: 2.4rem 0 3.5rem;
  max-width: 46rem;
}
.side {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  font-family: var(--sans);
}
.side nav {
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 0.9rem 0;
}
.side h2 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0.9rem 0.5rem;
  color: var(--muted);
}
.side a {
  display: block;
  padding: 0.38rem 0.9rem;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  border-left: 2px solid transparent;
}
.side a:hover, .side a.is-current {
  background: var(--paper);
  border-left-color: var(--bronze);
}

/* Forms */
.form { max-width: 40rem; }
.field { margin-bottom: 0.95rem; }
.field label {
  display: block;
  font-weight: 650;
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
  color: var(--ink);
}
.field .hint { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 0.25rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.check { display: flex; gap: 0.5rem; align-items: flex-start; font-size: 0.92rem; }
.result {
  margin-top: 1.2rem;
  border: 1px solid var(--rule);
  background: var(--white);
  padding: 1.1rem;
  display: none;
}
.result.is-on { display: block; }
.result.ok { border-left: 3px solid var(--ok); }
.result.bad { border-left: 3px solid var(--danger); }

/* Map */
#map {
  height: 420px;
  border: 1px solid var(--rule);
  background: var(--paper-2);
}

/* News list */
.news-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1.2rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid var(--rule);
}
.news-row time {
  font-size: 0.82rem;
  color: var(--bronze-d);
  font-weight: 650;
}
.news-row h3 { margin: 0 0 0.25rem; font-family: var(--serif); font-size: 1.15rem; }
.news-row h3 a { text-decoration: none; color: var(--ink); }
.news-row p { margin: 0; color: var(--muted); }

/* Footer */
.site-footer {
  background: #fff;
  color: var(--body);
  padding: 0;
  font-family: var(--sans);
  font-size: 0.9rem;
}
.foot-band {
  height: 10px;
  background: var(--navy-deep);
}
.foot-main {
  position: relative;
  overflow: hidden;
  padding: 2.4rem 0 2.2rem;
  background: #fff;
}
.foot-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/footer-world.svg?v=20260917b") center 42% / 118% auto no-repeat;
  opacity: 0.06;
  pointer-events: none;
}
.foot-main .wrap {
  position: relative;
  z-index: 1;
}
.site-footer .wrap,
.is-home .site-footer .wrap {
  width: min(1400px, calc(100% - 4rem));
  max-width: none;
}
.foot-grid {
  display: grid;
  grid-template-columns: min-content repeat(4, max-content);
  gap: 1.25rem 2.25rem;
  padding-bottom: 0;
  border-bottom: 0;
  align-items: start;
  justify-content: space-between;
}
.foot-grid > .foot-logo {
  justify-self: start;
}
.site-footer h2 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 0.7rem;
}
@media (min-width: 981px) {
  .site-footer h2 { white-space: nowrap; }
}
.site-footer a { color: var(--body); text-decoration: none; }
.site-footer a:hover { color: var(--link); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.28rem 0; }
.foot-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.1rem;
  padding: 0 1.6rem 0 0;
  width: max-content;
  max-width: max-content;
  min-width: 0;
}
.foot-logo h2 {
  width: max-content;
  align-self: center;
  margin: 0;
  text-align: center;
}
.foot-logo a {
  display: block;
  line-height: 0;
}
.foot-logo img {
  width: 180px;
  max-width: 180px;
  height: auto;
  display: block;
}
.foot-logo .foot-ids {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
.foot-copy {
  padding: 0.95rem 0;
  background: var(--navy-deep);
}
.copyright {
  margin: 0;
  color: #fff;
  font-size: 0.78rem;
}

/* Misc */
.hr { border: 0; border-top: 1px solid var(--rule); margin: 2rem 0; }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.tag-row { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.8rem 0 0; }
.tag {
  border: 1px solid var(--paper-3);
  padding: 0.15rem 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--paper);
}
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0 0 1rem; }
.steps li {
  counter-increment: step;
  padding: 0.85rem 0 0.85rem 3rem;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.9rem;
  font-family: var(--serif);
  color: var(--bronze-d);
  font-weight: 650;
}
.two-col {
  columns: 2;
  gap: 2rem;
}
.two-col p { break-inside: avoid; }

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.filter-bar select { min-width: 180px; }

.timeline { border-left: 2px solid var(--paper-3); margin: 0 0 1rem 0.4rem; padding-left: 1.2rem; }
.timeline h3 { margin: 0 0 0.2rem; font-size: 1.05rem; }
.timeline > div { margin-bottom: 1.2rem; }

/* Print */
@media print {
  .util, .site-header, .site-footer, .header-cta, .nav-toggle, .finder, .side { display: none !important; }
  body { background: #fff; }
  .page-hero, .section { padding: 0; }
}

@media (max-width: 980px) {
  .mast {
    grid-template-columns: minmax(0, 1fr) minmax(132px, 1fr) auto;
    grid-template-areas:
      "brand search actions"
      "nav nav nav";
  }
  .header-cta { display: flex; grid-area: search; min-width: 0; }
  .nav-toggle { display: block; }
  .primary-nav {
    display: none;
    border-top: 1px solid var(--rule);
    padding: 0.35rem 0 0.6rem;
  }
  .primary-nav.is-open { display: block; }
  .primary-nav > ul {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
  }
  .primary-nav > ul > li > a,
  .primary-nav > ul > li > button {
    width: 100%;
    justify-content: space-between;
    padding: 0.75rem 0.15rem;
    white-space: normal;
    border-bottom: 1px solid var(--rule);
  }
  .primary-nav li.is-open > button[data-mega]::after {
    transform: rotate(225deg) translateY(-1px);
  }
  .mega {
    position: static;
    display: none;
    box-shadow: none;
    border: 0;
    padding: 0.15rem 0 0.55rem 0.7rem;
    background: var(--paper);
  }
  .mega::before { display: none; }
  .primary-nav li:hover > .mega,
  .primary-nav li:focus-within > .mega { display: none; }
  .primary-nav li.is-open > .mega { display: block; }
  .mega-intro { display: none; }
  .mega-grid,
  .mega-cols,
  .hero-inner,
  .finder-grid,
  .pillars,
  .split,
  .split-wide,
  .cards-3,
  .cards-4,
  .cards-2,
  .layout,
  .foot-grid,
  .field-row,
  .spec-row {
    grid-template-columns: 1fr;
  }
  .mega-cols a {
    padding: 0.5rem 0.2rem;
    border: 0;
    border-bottom: 1px solid var(--paper-3);
  }
  .pillar { border-right: 0; }
  .spec-row dt { border-right: 0; border-bottom: 1px solid var(--rule); padding-bottom: 0.35rem; }
  .spec-row dd { padding-top: 0.35rem; }
  .two-col { columns: 1; }
  .util-nav { display: none; }
  .hero-inner { padding-top: 2.4rem; }
}

@media (max-width: 640px) {
  .news-row, .finder-row { grid-template-columns: 1fr; display: grid; }
  .brand-sub { display: none; }
  .brand { min-width: 0; }
}

.util .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.util-nav { display: flex; flex-wrap: wrap; gap: 0.2rem 1.1rem; }
.util-right, .lang { display: flex; align-items: center; gap: 0.45rem; }
.lang a.is-active { color: var(--gold); font-weight: 700; }
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); overflow: visible; }
.primary-nav > ul > li.is-current > a,
.primary-nav > ul > li.is-current > button { border-bottom-color: var(--bronze); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: var(--paper-2); color: var(--ink); }
.btn-gold { background: var(--gold-d); border-color: var(--gold-d); color: #fff; }
.btn-gold:hover { background: #6f5420; color: #fff; }
.page-hero { padding: 2.2rem 0 1.5rem; border-bottom: 1px solid var(--line); }
.page-hero h1 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 0.5rem; color: var(--ink); letter-spacing: -0.02em; }
.page-hero .lead { margin: 0; max-width: 42rem; color: var(--muted); }
.crumb { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.7rem; }
.crumb a { color: var(--muted); text-decoration: none; }
.layout-page { display: grid; grid-template-columns: minmax(0, 1fr) 260px; gap: 3rem; padding: 2.2rem 0 3.5rem; align-items: start; }
.wrap.layout-page {
  width: min(1480px, calc(100% - 2.5rem));
}
.side { position: sticky; top: 6rem; }
.side nav { border: 1px solid var(--line); background: var(--white); padding: 1rem 0 0.55rem; }
.side h2 { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin: 0 1rem 0.55rem; color: var(--muted); }
.side a { display: block; padding: 0.5rem 1rem; text-decoration: none; color: var(--ink); font-size: 0.92rem; line-height: 1.35; border-left: 2px solid transparent; }
.side a.is-current, .side a:hover { background: var(--paper); border-left-color: var(--gold); }
.prose { max-width: 46rem; }
.prose h2, .prose h3 { font-family: var(--serif); color: var(--ink); }
.prose h2 { font-size: 1.45rem; margin: 1.8rem 0 0.6rem; }
.prose h3 { font-size: 1.15rem; margin: 1.3rem 0 0.4rem; }
.prose p, .prose li { margin: 0 0 0.85rem; }
.notice { background: var(--paper-2); border: 1px solid var(--line); padding: 1rem 1.1rem; margin: 1.1rem 0; }
.notice-title { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--gold-d); margin: 0 0 0.35rem; }
.result { display: none; margin-top: 1rem; padding: 1rem; border: 1px solid var(--line); background: var(--paper-2); }
.result.is-on { display: block; }
.result.ok { border-left: 3px solid #2f5d45; }
.result.bad { border-left: 3px solid #8b2e2e; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
table.spec {
  display: table;
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
table.spec th,
table.spec td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}
table.spec th { width: 32%; color: var(--muted); font-weight: 650; font-size: 0.86rem; }
.news-list { list-style: none; margin: 0; padding: 0; }
.news-list li { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.form .field { margin-bottom: 0.9rem; }
.form label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.25rem; }
.form input, .form select, .form textarea { width: 100%; padding: 0.55rem 0.65rem; border: 1px solid var(--line); font: inherit; background: var(--paper-2); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.map { height: 420px; border: 1px solid var(--line); background: var(--paper-2); }
#map { height: 420px; width: 100%; }
.steps { counter-reset: s; list-style: none; padding: 0; }
.steps li { counter-increment: s; padding: 0.8rem 0 0.8rem 2.6rem; border-bottom: 1px solid var(--line); position: relative; }
.steps li::before { content: counter(s, decimal-leading-zero); position: absolute; left: 0; font-family: var(--serif); color: var(--gold-d); }
.timeline { border-left: 2px solid var(--line); margin-left: 0.4rem; padding-left: 1.1rem; }
.status { display: inline-block; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; padding: 0.15rem 0.4rem; border: 1px solid var(--line); }
.legal-strip { background: var(--navy); color: #d9c9a3; padding: 0.7rem 0; font-size: 0.88rem; }
.legal-strip a { color: var(--gold); }
.finder { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.finder-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.foot-grid { display: grid; grid-template-columns: min-content repeat(4, max-content); gap: 1.25rem 2.25rem; justify-content: space-between; }
.foot-brand { display: flex; gap: 0.7rem; align-items: center; margin-bottom: 0.7rem; }
.foot-brand strong { display: block; letter-spacing: 0.12em; }
.foot-brand span { display: block; font-size: 0.78rem; color: #b9a98a; }
.legal-ids { display: flex; flex-wrap: wrap; gap: 0.35rem 1.2rem; padding: 1rem 0 0.3rem; font-size: 0.75rem; color: #9a8b70; border-top: 1px solid #3a3428; margin-top: 1.4rem; }
.small, .muted { color: var(--muted); }
.small { font-size: 0.86rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: end; }
.hero-aside { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,162,39,0.25); padding: 1.2rem; }
.hero-aside h2 { font-family: var(--serif); font-size: 1.05rem; margin: 0 0 0.5rem; color: var(--gold); }
.site-footer { background: #fff; color: var(--body); padding: 0; font-size: 0.9rem; }
.site-footer a { color: var(--body); }
.site-footer h2 { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin: 0.28rem 0; }
@media (max-width: 980px) {
  .layout-page, .hero-grid, .card-grid, .split, .finder-grid, .foot-grid, .field-row, .mega-grid, .mega-cols, .contact-layout { grid-template-columns: 1fr; }
}

/* ——— Homepage (monumental institutional) ——— */
.is-home .wrap { width: min(1240px, calc(100% - 2.5rem)); }
.is-home .hp-world .wrap {
  width: min(1600px, calc(100% - 5rem));
}
.is-home .hp-intro .wrap {
  width: min(1600px, calc(100% - 5rem));
}
.util .wrap,
.is-home .util .wrap,
.is-news .util .wrap,
.site-header .wrap,
.is-home .site-header .wrap,
.is-news .site-header .wrap {
  width: min(1240px, calc(100% - 2.5rem));
}
.site-footer .wrap,
.is-home .site-footer .wrap {
  width: min(1400px, calc(100% - 4rem));
  max-width: none;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--util-h));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  background: #071529 url("../img/editorial/home-hero.jpg") center 38% / cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(5, 14, 32, 0.94) 0%, rgba(7, 18, 38, 0.72) 42%, rgba(7, 18, 38, 0.28) 72%, rgba(7, 18, 38, 0.45) 100%),
    linear-gradient(180deg, rgba(7, 18, 38, 0.12) 36%, rgba(7, 18, 38, 0.78) 100%);
  z-index: 0;
}
.home-hero-seal {
  position: absolute;
  right: max(4%, calc((100% - 1240px) / 2));
  top: 46%;
  transform: translateY(-50%);
  width: min(300px, 26vw);
  height: auto;
  opacity: 0.22;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
}
.home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.4rem;
  align-items: end;
  padding: 6.2rem 0 2.8rem;
}
.home-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.76rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 650;
  color: #e0b84e;
}
.home-hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 3.8vw, 3.15rem);
  line-height: 1.12;
  color: #fff;
  margin: 0;
  max-width: 14ch;
}
.home-mark {
  margin: 0.7rem 0 0;
  font-family: var(--sans);
  font-size: clamp(4.6rem, 12vw, 8.4rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 0.8;
  color: #e0b84e;
}
.home-goldbar {
  display: block;
  width: 5.5rem;
  height: 3px;
  margin: 1.15rem 0 0;
  background: #e0b84e;
}
.home-hero-copy p {
  margin: 0 0 1.55rem;
  font-size: 1.12rem;
  line-height: 1.58;
  color: #efe6d2;
  max-width: 36rem;
}
.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.is-home .btn-gold {
  background: #e0b84e;
  border-color: #e0b84e;
  color: #071529;
}
.is-home .btn-gold:hover {
  background: #f0cc6a;
  border-color: #f0cc6a;
  color: #071529;
}
.btn-hero-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.home-hero-meta {
  position: relative;
  z-index: 2;
  background: rgba(5, 14, 32, 0.78);
  border-top: 1px solid rgba(224, 184, 78, 0.38);
  backdrop-filter: blur(10px);
}
.home-hero-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem 1.4rem;
  padding: 0.95rem 0 1.05rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: #e4d9c2;
}

.home-facts {
  background: #071529;
  color: #fff;
  padding: 2.6rem 0 2.5rem;
  border-bottom: 1px solid rgba(224, 184, 78, 0.22);
}
.home-facts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem 1.2rem;
}
.home-facts strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  color: #e0b84e;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.home-facts span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.35;
  color: #c9bca4;
}

.home-letters {
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
.home-letters-rich { padding: 3.4rem 0 3.6rem; }
.home-letters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 1.8rem;
  margin-top: 1.4rem;
}
.home-letters-grid article {
  padding-top: 0.4rem;
  border-top: 3px solid #e0b84e;
}
.home-letters-grid b {
  display: block;
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: #e0b84e;
  font-weight: 600;
  margin: 0.55rem 0 0.35rem;
}
.home-letters-grid h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin: 0 0 0.55rem;
  color: var(--ink);
  font-weight: 600;
}
.home-letters-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-cycles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #071529;
}
.home-cycle {
  position: relative;
  min-height: 380px;
  padding: 2.6rem 2.1rem 2.2rem;
  color: #fff;
  background-size: cover;
  background-position: center;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.home-cycle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 38, 0.22) 0%, rgba(7, 18, 38, 0.88) 100%);
  z-index: -1;
}
.home-cycle span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #e0b84e;
  font-weight: 650;
  margin-bottom: 0.45rem;
}
.home-cycle h2 {
  font-family: var(--serif);
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
  font-weight: 600;
}
.home-cycle p {
  margin: 0;
  color: #e4d9c2;
  font-size: 0.96rem;
  line-height: 1.48;
  max-width: 28rem;
}
.home-cycle a {
  margin-top: 1.05rem;
  color: #e0b84e;
  font-weight: 650;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.home-cycle a:hover { color: #f0cc6a; }

.home-quote {
  position: relative;
  isolation: isolate;
  padding: 5.2rem 0 4.8rem;
  color: #fff;
  background: #071529 url("../img/editorial/home-quote.jpg") center 40% / cover no-repeat;
  text-align: center;
}
.home-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 14, 32, 0.82);
  z-index: -1;
}
.home-quote blockquote {
  margin: 0 auto 1.6rem;
  max-width: 38rem;
}
.home-quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.28;
  font-weight: 500;
  margin: 0 0 1rem;
  color: #fff;
}
.home-quote footer {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e0b84e;
}

.home-about {
  padding: 4.6rem 0 4rem;
  background: var(--paper);
}
.home-about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.4rem;
  align-items: start;
}
.home-about h2,
.home-block-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.1vw, 2.65rem);
  margin: 0 0 1rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  max-width: 16ch;
  font-weight: 600;
}
.lede-plain {
  font-size: 1.08rem;
  color: var(--body);
  max-width: 38rem;
  margin: 0 0 1.1rem;
}
.home-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.5rem;
  padding: 0;
  margin: 1.5rem 0 0;
}
.home-links a {
  font-weight: 650;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid var(--bronze);
}
.home-links a:hover { color: var(--bronze-d); }
.home-functions {
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-functions li {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 0.9rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--rule);
}
.home-functions li:last-child { border-bottom: 1px solid var(--rule); }
.home-functions span {
  font-family: var(--serif);
  color: #b08a4a;
  font-size: 1.05rem;
  padding-top: 0.15rem;
}
.home-functions h3 {
  margin: 0 0 0.3rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--ink);
}
.home-functions p { margin: 0; color: var(--muted); }

.home-roles {
  padding: 3.8rem 0 4rem;
  background: #071529;
  color: #efe6d2;
}
.home-roles .label { color: #e0b84e; }
.home-roles .home-block-title { color: #fff; max-width: 22ch; }
.home-roles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1.8rem;
}
.home-roles-grid article {
  padding: 1.5rem 1.4rem 1.4rem;
  border: 1px solid rgba(224, 184, 78, 0.28);
  background: rgba(255, 255, 255, 0.03);
}
.home-roles-grid h3 {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  color: #e0b84e;
  font-weight: 600;
}
.home-roles-grid p { margin: 0; color: #d8ccb6; font-size: 0.96rem; }

.home-awards {
  padding: 4rem 0 4.2rem;
  background: #fff;
  border-top: 1px solid var(--rule);
}
.home-award-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.home-award {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.3rem 1.25rem 1.25rem;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  background: var(--paper);
  min-height: 100%;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.home-award:hover { border-color: var(--ink); background: #fff; }
.home-award-meta {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c6a32;
  font-weight: 700;
}
.home-award strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.3;
}
.home-award em {
  font-style: normal;
  font-size: 0.86rem;
  color: var(--muted);
  margin-top: auto;
}

.home-quality {
  padding: 4rem 0 4.2rem;
  background: var(--paper);
}
.home-domains {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.home-domains li {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  background: #fff;
  border: 1px solid var(--rule);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.home-domains span {
  font-family: var(--serif);
  color: #b08a4a;
  font-size: 0.95rem;
  font-weight: 600;
}
.home-steps {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--rule);
}
.home-steps h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 0 0 1rem;
  color: var(--ink);
}
.home-steps ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.home-steps li {
  counter-increment: step;
  padding: 0.2rem 0 0 2.4rem;
  position: relative;
  color: var(--body);
  font-size: 0.95rem;
}
.home-steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0;
  font-family: var(--serif);
  color: #b08a4a;
  font-weight: 600;
}

.home-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.home-split-photo {
  background: #071529 center / cover no-repeat;
  min-height: 320px;
}
.home-split-panel {
  background: #071529 url("../img/editorial/home-split.jpg") center / cover no-repeat;
  color: #fff;
  padding: 3.4rem 3.1rem;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-split-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 38, 0.9);
  z-index: -1;
}
.home-split-panel h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  margin: 0 0 0.7rem;
  font-weight: 600;
  max-width: 18ch;
}
.home-gold-line {
  color: #e0b84e !important;
  font-weight: 650;
  margin: 0 0 0.9rem !important;
}
.home-split-panel p {
  margin: 0 0 1.1rem;
  color: #e8ddc8;
  max-width: 36rem;
}

.home-hubs {
  padding: 4rem 0 4.2rem;
  background: #fff;
}
.home-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.home-hub-grid article {
  padding: 1.35rem 1.2rem 1.25rem;
  border: 1px solid var(--rule);
  background: var(--paper);
  min-height: 100%;
}
.home-hub-status {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: #8c6a32;
  margin-bottom: 0.55rem;
}
.home-hub-grid h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-weight: 600;
}
.home-hub-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.home-ol {
  padding: 4rem 0;
  background: var(--paper);
  border-top: 1px solid var(--rule);
}
.home-ol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.home-ol h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  margin: 0 0 1rem;
  max-width: 18ch;
  color: var(--ink);
  font-weight: 600;
}
.home-ol-cards {
  display: grid;
  gap: 0.7rem;
}
.home-ol-cards a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  padding: 1.05rem 1.15rem;
  background: #fff;
  border: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
}
.home-ol-cards a:hover { border-color: var(--ink); }
.home-ol-cards strong {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  line-height: 1.3;
}
.home-ol-cards span {
  flex-shrink: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 650;
}

.home-verify {
  background: #071529;
  color: #fff;
  padding: 3.6rem 0;
  border-top: 3px solid #e0b84e;
}
.home-verify-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.home-verify h2 {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.25rem);
  margin: 0 0 0.7rem;
  color: #fff;
  font-weight: 600;
  max-width: 18ch;
}
.home-verify p {
  margin: 0;
  color: #e4d9c2;
  max-width: 40rem;
}

.home-journal {
  padding: 4rem 0 4.2rem;
  background: var(--paper);
}
.home-news-mag {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.4rem;
}
.home-news-lead {
  padding: 2rem 2rem 1.8rem;
  background: #fff;
  border: 1px solid var(--rule);
  border-top: 3px solid #e0b84e;
}
.home-news-lead h3 { font-size: 1.7rem; }
.home-news-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.home-news-stack .home-news {
  padding: 1.15rem 0;
  border-top: 1px solid var(--rule);
}
.home-news-stack .home-news:last-child { border-bottom: 1px solid var(--rule); }
.home-news time {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.home-news h3 {
  font-family: var(--serif);
  font-size: 1.18rem;
  margin: 0 0 0.45rem;
  line-height: 1.3;
}
.home-news h3 a { text-decoration: none; color: var(--ink); }
.home-news h3 a:hover { color: var(--bronze-d); }
.home-news p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.home-seat {
  padding: 4rem 0 4.2rem;
  background: #fff;
  border-top: 1px solid var(--rule);
}
.home-seat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.home-seat h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 600;
}
.home-seat .lede-plain { font-size: 1.25rem; line-height: 1.45; }
.home-seat-ids p {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 0.8rem;
  margin: 0;
  padding: 0.7rem 0;
  border-top: 1px solid var(--rule);
  font-size: 0.95rem;
}
.home-seat-ids p:last-child { border-bottom: 1px solid var(--rule); }
.home-seat-ids span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8c6a32;
  font-weight: 700;
  padding-top: 0.18rem;
}
.home-seat-ids .small {
  display: block;
  grid-template-columns: 1fr;
  padding-top: 1rem;
  border-bottom: 0;
  color: var(--muted);
}

.home-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  justify-content: space-between;
  align-items: center;
  width: min(1240px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 1rem 0 1.5rem;
  font-size: 0.84rem;
  color: var(--muted);
  border-top: 1px solid var(--rule);
}
.home-legal a { font-weight: 650; }

@media (max-width: 1100px) {
  .home-facts-grid,
  .home-letters-grid,
  .home-hub-grid,
  .home-steps ol { grid-template-columns: 1fr 1fr; }
  .home-hero-meta-grid { grid-template-columns: 1fr 1fr; }
  .home-domains { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  .home-hero-inner,
  .home-cycles,
  .home-letters-grid,
  .home-split,
  .home-about-grid,
  .home-award-grid,
  .home-roles-grid,
  .home-ol-grid,
  .home-verify-inner,
  .home-news-mag,
  .home-seat-grid,
  .home-facts-grid,
  .home-hub-grid,
  .home-domains,
  .home-steps ol,
  .home-hero-meta-grid {
    grid-template-columns: 1fr;
  }
  .home-hero {
    min-height: 0;
  }
  .home-hero-inner { padding: 3.4rem 0 2.2rem; gap: 1.5rem; }
  .home-hero h1 { max-width: none; }
  .home-hero-seal { opacity: 0.12; width: 180px; top: 18%; right: 4%; transform: none; }
  .home-cycle { min-height: 260px; }
  .home-split-panel { padding: 2.2rem 1.4rem; }
  .home-quote { padding: 3.4rem 0; }
}

/* ——— Homepage 2026: mission, activity and participation ——— */
.hp-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h) - var(--util-h));
  display: flex;
  align-items: center;
  color: #fff;
  background: #071529 url("../img/home/aees_photo17.png") center 42% / cover no-repeat;
  isolation: isolate;
  overflow: hidden;
}
.hp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(5, 14, 32, 0.88) 0%, rgba(7, 18, 38, 0.72) 50%, rgba(7, 18, 38, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 18, 38, 0.32), rgba(7, 18, 38, 0.72));
}
.hp-hero-inner {
  position: relative;
  z-index: 2;
  padding: 5.4rem 0 6.2rem;
}
.hp-hero-seal {
  display: none;
}
.hp-eyebrow {
  margin: 0 0 1rem;
  color: #e0b84e;
  font-size: 0.76rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.hp-hero h1 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.7vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.hp-hero h1 .brand-initial {
  color: #e0b84e;
}
.hp-manifesto {
  max-width: 22em;
  margin: 1.5rem 0 1.8rem;
  color: #e0b84e;
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.1vw, 1.95rem);
  line-height: 1.28;
}
.hp-manifesto span { display: block; }
.hp-hero-copy {
  max-width: 56rem;
  margin: 0 0 1.7rem;
}
.hp-hero-text {
  max-width: 56rem;
  margin: 0 0 0.85rem;
  color: #e8dfcf;
  font-size: 1.08rem;
  line-height: 1.6;
}
.hp-hero-copy .hp-hero-text:last-child { margin-bottom: 0; }
.hp-actions,
.hp-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.hp-scroll {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  color: #e8dfcf;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}
.hp-scroll span { color: #e0b84e; margin-left: 0.4rem; }

.hp-intro {
  padding: 5.2rem 0;
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
.hp-intro-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.6rem;
  align-items: start;
}
.hp-intro h2,
.hp-section-heading h2,
.hp-world h2,
.hp-quality-copy h2,
.hp-certifications h2,
.hp-final h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
.hp-intro-title {
  position: relative;
  overflow: visible;
  min-height: 22rem;
}
.hp-intro-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  width: min(420px, 96%);
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.hp-intro-title h2 {
  position: relative;
  z-index: 1;
  max-width: none;
}
.hp-intro-grid > div:last-child > p {
  max-width: 52rem;
  text-align: justify;
  hyphens: auto;
}
.hp-lead {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.45;
}
.hp-text-link {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--bronze);
}
.hp-text-link:hover { color: var(--bronze-d); }

.hp-actions-section,
.hp-qualifications,
.hp-ideas,
.hp-news {
  padding: 4.8rem 0 5rem;
  background: var(--paper);
}
.hp-section-heading {
  max-width: 62rem;
  margin-bottom: 2.2rem;
}
.hp-section-heading > p:last-child {
  max-width: 52rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
}
.hp-action-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.hp-action-card {
  position: relative;
  min-height: 225px;
  padding: 1.4rem 1.55rem;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: color 0.18s ease, background 0.18s ease;
}
.hp-action-card:nth-child(2) { background: rgba(13, 42, 86, 0.07); }
.hp-action-card:nth-child(4) { background: rgba(223, 179, 45, 0.14); }
.hp-action-card:nth-child(6) { background: rgba(6, 69, 173, 0.08); }
.hp-action-card > span {
  display: block;
  color: var(--bronze-d);
  font-family: var(--serif);
  font-size: 0.9rem;
}
.hp-action-card h3 {
  max-width: 22ch;
  margin: 1rem 0 0.6rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
}
.hp-action-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.5;
}
.hp-action-card b {
  position: absolute;
  top: 1.35rem;
  right: 1.4rem;
  color: var(--bronze);
  font-size: 1.15rem;
}
.hp-action-card:hover { color: #fff; background: var(--ink); }
.hp-action-card:hover p { color: #ddd3c1; }

.hp-world {
  padding: 5rem 0;
  color: #efe6d5;
  background: #071529;
}
.hp-world-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4.5rem;
  align-items: center;
}
.hp-world .label,
.hp-initiatives .label,
.hp-events .label,
.hp-final .label { color: #e0b84e; }
.hp-world h2 {
  color: #fff;
  max-width: none;
  font-size: clamp(1.7rem, 2.35vw, 2.7rem);
  white-space: nowrap;
}
.hp-final h2 { color: #fff; max-width: 28ch; }
.hp-world-copy > p:not(.label) {
  max-width: none;
  color: #d9cfbc;
  text-align: justify;
  hyphens: auto;
}
.hp-world-copy .hp-inline-actions { margin-top: 1.6rem; }
.hp-world-map {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1.8rem;
  align-items: center;
}
.hp-globe {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: 1;
  border: 1px solid rgba(224, 184, 78, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, rgba(224, 184, 78, 0.14), transparent 46%),
    radial-gradient(circle at 70% 78%, rgba(7, 21, 41, 0.35), transparent 52%),
    #071529;
}
.hp-globe-grid,
.hp-globe-scan,
.hp-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}
.hp-globe-grid {
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(224,184,78,.2) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(224,184,78,.2) 50%, transparent 50.5%);
  animation: hp-globe-spin 36s linear infinite;
}
.hp-globe-scan {
  background: conic-gradient(from 210deg, transparent 0 72%, rgba(224, 184, 78, 0.16) 86%, transparent 100%);
  animation: hp-globe-spin 14s linear infinite;
}
.hp-orbit {
  inset: 17% 0;
  border: 1px solid rgba(224, 184, 78, 0.28);
  animation: hp-globe-spin 22s linear infinite;
}
.hp-orbit-b {
  inset: 0 32%;
  animation-duration: 28s;
  animation-direction: reverse;
}
.hp-orbit-c {
  inset: 8%;
  border-color: rgba(224, 184, 78, 0.16);
  transform: rotate(28deg);
  animation: hp-globe-spin-tilt 32s linear infinite;
}
.hp-dot {
  position: absolute;
  z-index: 1;
  width: 10px;
  height: 10px;
  border: 2px solid #071529;
  border-radius: 50%;
  background: #e0b84e;
  box-shadow: 0 0 0 4px rgba(224, 184, 78, 0.18);
}
.hp-dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(224, 184, 78, 0.55);
  animation: hp-dot-ping 3.2s ease-out infinite;
}
.hp-dot-eu { top: 30%; left: 51%; }
.hp-dot-af { top: 53%; left: 49%; }
.hp-dot-af::after { animation-delay: 0.8s; }
.hp-dot-am { top: 43%; left: 24%; }
.hp-dot-am::after { animation-delay: 1.6s; }
.hp-dot-ap { top: 48%; right: 16%; }
.hp-dot-ap::after { animation-delay: 2.4s; }
@keyframes hp-globe-spin {
  to { transform: rotate(360deg); }
}
@keyframes hp-globe-spin-tilt {
  from { transform: rotate(28deg); }
  to { transform: rotate(388deg); }
}
@keyframes hp-dot-ping {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(3.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hp-globe-grid,
  .hp-globe-scan,
  .hp-orbit,
  .hp-orbit-c,
  .hp-dot::after {
    animation: none;
  }
}
.hp-world-zones {
  margin: 0 0 0.55rem;
  color: #e0b84e;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hp-world-map ul { list-style: none; margin: 0; padding: 0; }
.hp-world-map li {
  display: flex;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(224, 184, 78, 0.22);
  color: #f0e7d7;
}
.hp-world-map li:last-child { border-bottom: 1px solid rgba(224, 184, 78, 0.22); }
.hp-world-map li span { color: #e0b84e; font-family: var(--serif); }

.hp-initiatives,
.hp-events {
  padding: 4.8rem 0 5rem;
  color: #efe6d5;
  background: var(--ink);
}
.hp-section-heading-light h2 { color: #fff; }
.hp-section-heading-light > p:last-child { color: #d3c7b2; }
.hp-initiative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(224, 184, 78, 0.32);
  border-left: 1px solid rgba(224, 184, 78, 0.32);
}
.hp-initiative-grid a {
  min-height: 220px;
  padding: 1.4rem;
  color: #fff;
  text-decoration: none;
  border-right: 1px solid rgba(224, 184, 78, 0.32);
  border-bottom: 1px solid rgba(224, 184, 78, 0.32);
  transition: background 0.18s ease;
}
.hp-initiative-grid a:hover { background: rgba(224, 184, 78, 0.08); }
.hp-initiative-grid span { color: #e0b84e; font-family: var(--serif); }
.hp-initiative-grid h3 {
  margin: 1rem 0 0.7rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 600;
}
.hp-initiative-grid p { margin: 0; color: #cec2ad; font-size: 0.9rem; line-height: 1.45; }

.hp-qualifications {
  position: relative;
  overflow: hidden;
  background: #071529;
  border-top: 2px solid #e0b84e;
}
.hp-qualifications::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 14, 32, 0.82), rgba(5, 14, 32, 0.76)),
    url("../img/home/aees_siege1.png") center 58% / cover no-repeat;
  opacity: 1;
  pointer-events: none;
}
.hp-qualifications > .wrap {
  position: relative;
  z-index: 1;
}
.hp-qualifications .label,
.hp-qualifications .hp-section-heading h2,
.hp-qualifications .hp-section-heading > p:not(.label) {
  color: #fff;
}
.hp-qualifications .hp-section-heading > p:not(.label) {
  text-align: justify;
  hyphens: auto;
}
.hp-qualifications .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.hp-qualifications .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.hp-family-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #071529;
}
.hp-family-grid.is-five {
  grid-template-columns: repeat(6, 1fr);
}
.hp-family-grid.is-five .hp-family {
  grid-column: span 2;
  min-height: 380px;
}
.hp-family-grid.is-five .hp-family:nth-child(-n+2) {
  grid-column: span 3;
}
.hp-family {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.7rem;
  color: #fff;
  text-decoration: none;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}
.hp-family::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,18,38,.58), rgba(7,18,38,.96));
  transition: background 0.18s ease;
}
.hp-family:hover::before { background: linear-gradient(180deg, rgba(7,18,38,.44), rgba(7,18,38,.94)); }
.hp-family h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
}
.hp-family p { margin: 0; color: #fff; font-size: 0.95rem; }
.hp-centered-action { margin: 1.6rem 0 0; text-align: center; }

.hp-quality-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: #071529;
}
.hp-quality-photo { min-height: 360px; background-position: center 42%; background-size: cover; }
.hp-quality-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 3.6rem 3.8rem 3.6rem 3.2rem;
  color: #e7ddcb;
  background: #071529;
}
.hp-quality-copy .label { color: #e0b84e; }
.hp-quality-copy h2 { max-width: none; color: #fff; }
.hp-quality-copy p:not(.label) {
  max-width: none;
  margin: 0;
  text-align: justify;
  hyphens: auto;
}
.hp-quality-copy p:not(.label) + p { margin-top: -0.4rem; }
.hp-text-link-light { color: #fff; }
.hp-text-link-light:hover { color: #e0b84e; }

.hp-ideas { background: var(--paper); }
.hp-ideas-grid,
.hp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.hp-ideas-grid > a {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.4rem;
  color: var(--ink);
  text-decoration: none;
  background: #fff;
  border: 1px solid var(--rule);
}
.hp-ideas-grid > a:hover { border-color: var(--ink); }
.hp-status {
  color: var(--bronze-d);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hp-ideas-grid h3 {
  margin: 1.15rem 0 0.65rem;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.28;
  font-weight: 600;
}
.hp-ideas-grid p { margin: 0; color: var(--muted); font-size: 0.93rem; }

.hp-events { background: #071529; }
.hp-events-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}
.hp-event-featured {
  min-height: 320px;
  padding: 2rem;
  border: 1px solid rgba(224, 184, 78, 0.35);
  border-top: 3px solid #e0b84e;
}
.hp-event-featured > span,
.hp-event-list span {
  color: #e0b84e;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hp-event-featured h3 {
  margin: 3rem 0 0.8rem;
  color: #fff;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
}
.hp-event-featured p { max-width: 38rem; color: #d8cdb8; }
.hp-event-featured a { color: #e0b84e; text-decoration: none; font-weight: 700; }
.hp-event-list { border-top: 1px solid rgba(224, 184, 78, 0.28); }
.hp-event-list a {
  display: block;
  padding: 1.1rem 0 1.25rem;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(224, 184, 78, 0.28);
}
.hp-event-list h3 {
  margin: 0.35rem 0 0;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 600;
}

.hp-certifications {
  padding: 4.8rem 0 0;
  background: #fff;
}
.hp-certifications .wrap,
.is-home .hp-certifications .wrap {
  width: min(1680px, calc(100% - 2.5rem));
}
.hp-certifications .hp-section-heading {
  max-width: none;
  text-align: center;
  margin-inline: auto;
}
.hp-certify-kicker,
.hp-cert-kicker {
  margin: 0 0 0.7rem;
  color: var(--bronze-d);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hp-certifications .hp-section-heading p:not(.label):not(.hp-certify-kicker) {
  max-width: 52rem;
  margin: 0.9rem auto 0;
  color: var(--ink);
}
.hp-certify-facts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.6rem;
  margin: 1.35rem 0 2.2rem;
  padding: 0;
  list-style: none;
}
.hp-certify-facts li {
  position: relative;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 650;
}
.hp-certify-facts li + li::before {
  content: "";
  position: absolute;
  top: 0.28em;
  left: -0.9rem;
  width: 1px;
  height: 0.95em;
  background: #e0b84e;
}
.hp-certify-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.45rem;
  min-width: 0;
}
.hp-cert-card {
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 10px 28px rgba(7, 27, 51, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.hp-cert-card:hover {
  transform: translateY(-4px);
  border-color: #c4a056;
  box-shadow: 0 18px 36px rgba(7, 27, 51, 0.12);
}
.hp-cert-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.hp-cert-card-media {
  aspect-ratio: 16 / 10;
  height: auto;
  overflow: hidden;
  background: #0b1f33;
}
.hp-cert-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hp-cert-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.3rem 1.3rem;
}
.hp-cert-kicker {
  margin: 0 0 0.45rem;
}
.hp-cert-card h3 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.14rem;
  font-weight: 700;
  line-height: 1.3;
}
.hp-cert-card-facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.75rem;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.84rem;
  font-weight: 650;
}
.hp-cert-card-facts strong {
  margin-left: auto;
  color: var(--ink);
  font-size: 1.02rem;
}
.hp-cert-card-prep {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
}
.hp-certifications .hp-centered-action {
  margin-bottom: 3.2rem;
}
.hp-cert-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.hp-cert-photo {
  min-height: 420px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hp-news { background: var(--paper); }
.hp-news .hp-section-heading-row p:not(.label) {
  max-width: 40rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}
.hp-section-heading-row {
  max-width: none;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}
.hp-news-slider {
  position: relative;
}
.hp-news-viewport {
  overflow: hidden;
}
.hp-news-track {
  display: flex;
  transition: transform 0.45s ease;
}
.hp-news-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.hp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.hp-news-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(7, 27, 51, 0.08);
}
.hp-news-arrow.is-prev { left: -1.15rem; }
.hp-news-arrow.is-next { right: -1.15rem; }
.hp-news-arrow:hover {
  border-color: var(--ink);
  background: var(--navy-deep);
  color: #fff;
}
.hp-news-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.35rem;
}
.hp-news-dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #c5d0de;
  cursor: pointer;
}
.hp-news-dots button[aria-current="true"] {
  background: var(--navy-deep);
}
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}
.news-card-grid { margin-top: 0.5rem; }
.hp-news-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--rule);
  box-shadow: 0 8px 22px rgba(7, 27, 51, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.hp-news-card:hover {
  transform: translateY(-4px);
  border-color: #c4a056;
  box-shadow: 0 16px 32px rgba(7, 27, 51, 0.1);
}
.hp-news-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.hp-news-card-media {
  height: 176px;
  overflow: hidden;
  background: #0b1f33;
}
.hp-news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.4s ease;
}
.hp-news-card:hover .hp-news-card-media img { transform: scale(1.06); }
.hp-news-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.25rem;
}
.hp-news-card time {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}
.hp-news-card h3 {
  margin: 0.55rem 0 0.55rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.3;
}
.hp-news-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}
.hp-news-card .hp-text-link {
  margin-top: auto;
  border-bottom: 0;
}

.hp-final {
  padding: 4rem 0;
  color: #e8dfcf;
  background: #071529;
  border-top: 3px solid #e0b84e;
}
.hp-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hp-final h2 { max-width: 24ch; }
.hp-final-grid > div:last-child > p { max-width: 38rem; }

@media (max-width: 1100px) {
  .hp-initiative-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-certify-grid { grid-template-columns: repeat(2, 1fr); }
  .news-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .hp-hero { min-height: 680px; }
  .hp-hero-inner { padding: 4rem 0 5rem; }
  .hp-hero-seal { width: 210px; right: 4%; opacity: 0.12; }
  .hp-intro-grid,
  .hp-world-grid,
  .hp-events-grid,
  .hp-certifications-grid,
  .hp-final-grid { grid-template-columns: 1fr; gap: 2.3rem; }
  .hp-intro-title { min-height: 0; overflow: visible; }
  .hp-intro-watermark { width: min(280px, 70vw); opacity: 0.08; }
  .hp-action-grid,
  .hp-family-grid,
  .hp-ideas-grid,
  .hp-news-grid,
  .news-card-grid,
  .hp-certify-grid { grid-template-columns: 1fr 1fr; }
  .hp-quality-callout,
  .hp-cert-photos { grid-template-columns: 1fr; }
  .hp-cert-photo { min-height: 280px; }
  .hp-quality-copy { padding: 3rem 1.5rem; }
  .hp-world-map { max-width: 650px; }
  .is-home .hp-world .wrap,
  .is-home .hp-intro .wrap { width: min(1600px, calc(100% - 2.5rem)); }
  .hp-world h2 { white-space: normal; }
}
@media (max-width: 620px) {
  .hp-hero { min-height: 620px; }
  .hp-hero h1 { font-size: clamp(1.2rem, 5.4vw, 1.85rem); }
  .hp-manifesto { max-width: 18em; font-size: 1.42rem; }
  .hp-hero-text { font-size: 0.98rem; }
  .hp-scroll { display: none; }
  .hp-intro,
  .hp-actions-section,
  .hp-world,
  .hp-initiatives,
  .hp-qualifications,
  .hp-ideas,
  .hp-events,
  .hp-certifications,
  .hp-news { padding-block: 3.5rem; }
  .hp-certifications { padding-bottom: 0; }
  .hp-intro-grid,
  .hp-world-map,
  .hp-action-grid,
  .hp-initiative-grid,
  .hp-family-grid,
  .hp-ideas-grid,
  .hp-news-grid,
  .news-card-grid,
  .hp-certify-grid { grid-template-columns: 1fr; }
  .hp-action-card { min-height: 230px; }
  .hp-family { min-height: 340px; }
  .hp-section-heading-row { display: block; }
  .hp-section-heading-row .btn { margin-top: 1rem; }
  .hp-certify-list a { grid-template-columns: 3rem 1fr; }
}

.hp-news-slider .hp-news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 720px) {
  .hp-news-slider .hp-news-grid { grid-template-columns: 1fr; }
  .hp-news-arrow.is-prev { left: 0.2rem; }
  .hp-news-arrow.is-next { right: 0.2rem; }
}
@media (prefers-reduced-motion: reduce) {
  .hp-news-track { transition: none; }
}

/* ——— Logo-led colour system: blue first, gold as a signature ——— */
.label,
.home-award-meta,
.home-hub-status,
.hp-action-card > span,
.hp-status,
.home-seat-ids span {
  color: var(--primary);
}

.btn-bronze {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn-bronze:hover {
  background: var(--primary-d);
  border-color: var(--primary-d);
}

.primary-nav > ul > li.is-current > a,
.primary-nav > ul > li.is-current > button,
.primary-nav > ul > li:hover > a,
.primary-nav > ul > li:hover > button,
.primary-nav > ul > li:focus-within > button {
  border-bottom-color: var(--primary-l);
}

.hp-manifesto { color: #dcecff; }
.hp-scroll span { color: var(--blue-soft); }

.hp-world,
.hp-initiatives,
.hp-events,
.hp-final,
.hp-quality-copy {
  background: var(--navy-deep);
}

.hp-world .label,
.hp-initiatives .label,
.hp-events .label,
.hp-final .label,
.hp-quality-copy .label {
  color: var(--blue-soft);
}

.hp-globe {
  border-color: rgba(103, 176, 255, 0.48);
  background:
    radial-gradient(circle at 32% 28%, rgba(103, 176, 255, 0.18), transparent 46%),
    radial-gradient(circle at 70% 78%, rgba(7, 29, 66, 0.4), transparent 52%),
    var(--navy-deep);
}
.hp-globe-grid {
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(103,176,255,.24) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(103,176,255,.24) 50%, transparent 50.5%);
}
.hp-globe-scan {
  background: conic-gradient(from 210deg, transparent 0 72%, rgba(143, 196, 255, 0.18) 86%, transparent 100%);
}
.hp-orbit { border-color: rgba(103, 176, 255, 0.3); }
.hp-orbit-c { border-color: rgba(103, 176, 255, 0.16); }
.hp-dot {
  border-color: var(--navy-deep);
  background: var(--primary-l);
  box-shadow: 0 0 0 4px rgba(47, 127, 212, 0.2);
}
.hp-dot::after { border-color: rgba(143, 196, 255, 0.65); }
.hp-world-map li {
  border-top-color: rgba(103, 176, 255, 0.24);
}
.hp-world-map li:last-child {
  border-bottom-color: rgba(103, 176, 255, 0.24);
}
.hp-world-map li span { color: var(--blue-soft); }

.hp-initiative-grid {
  border-top-color: rgba(103, 176, 255, 0.3);
  border-left-color: rgba(103, 176, 255, 0.3);
}
.hp-initiative-grid a {
  border-right-color: rgba(103, 176, 255, 0.3);
  border-bottom-color: rgba(103, 176, 255, 0.3);
}
.hp-initiative-grid a:hover { background: rgba(47, 127, 212, 0.12); }
.hp-initiative-grid span,
.hp-family > span,
.hp-event-featured > span,
.hp-event-list span {
  color: var(--blue-soft);
}

.hp-action-card:hover { background: var(--primary-d); }
.hp-action-card b { color: var(--primary-l); }
.hp-text-link { border-bottom-color: var(--primary-l); }
.hp-text-link:hover { color: var(--primary); }
.hp-text-link-light:hover { color: var(--blue-soft); }

.hp-event-featured {
  border-color: rgba(103, 176, 255, 0.35);
  border-top-color: var(--primary-l);
}
.hp-event-featured a { color: var(--blue-soft); }
.hp-event-list {
  border-top-color: rgba(103, 176, 255, 0.26);
}
.hp-event-list a {
  border-bottom-color: rgba(103, 176, 255, 0.26);
}

.hp-news-card { border-color: var(--rule); }
.hp-final { border-top-color: var(--bronze); }

.site-footer h2 { color: var(--ink); }

.kicker,
.meta,
.news-row time,
.steps li::before {
  color: var(--primary);
}
.section-ink .kicker,
.hero .kicker { color: var(--blue-soft); }
.hero::before {
  background-image:
    linear-gradient(90deg, rgba(92, 162, 235, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(92, 162, 235, 0.08) 1px, transparent 1px);
}
.more {
  border-bottom-color: var(--primary-l);
}
.more:hover { color: var(--primary); }

/* ——— Institutional masthead: white identity band, blue navigation ——— */
.site-header {
  --masthead-h: 94px;
  background:
    linear-gradient(
      to bottom,
      var(--white) 0,
      var(--white) var(--masthead-h),
      var(--navy-deep) var(--masthead-h),
      var(--navy-deep) 100%
    );
}
.mast {
  grid-template-rows: var(--masthead-h) auto;
  padding-top: 0;
}
.brand {
  height: var(--masthead-h);
  gap: 1rem;
  padding: 0;
  color: var(--ink);
  transform: translateX(-7.5rem);
}
.brand:hover { color: var(--primary); }
.brand-logo {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  flex: 0 0 84px;
  position: relative;
  overflow: visible;
  background: transparent;
}
.brand-logo::before {
  display: none;
}
.brand-logo img {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  max-width: none;
  flex-shrink: 0;
  transform: none;
}
.brand-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "acronym title";
  align-items: baseline;
  column-gap: 1rem;
}
.brand-name {
  grid-area: acronym;
  color: var(--ink);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}
.brand-sub {
  grid-area: title;
  max-width: none;
  margin: 0;
  padding-left: 1rem;
  border-left: 1px solid var(--rule);
  color: var(--ink-2);
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand-initial {
  color: var(--bronze);
  font-weight: 700;
}
.header-cta {
  height: var(--masthead-h);
  padding: 0;
}
.header-cta .btn {
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
}
.header-cta .btn:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}
.primary-nav {
  background: transparent;
  border-top-color: rgba(255,255,255,.14);
}
.primary-nav > ul > li > a,
.primary-nav > ul > li > button {
  color: #fff;
  font-size: 0.94rem;
}
.primary-nav > ul > li > a:hover,
.primary-nav > ul > li > button:hover,
.primary-nav > ul > li.is-open > button,
.primary-nav > ul > li:focus-within > button,
.primary-nav > ul > li > a.is-current {
  color: #fff;
}

@media (max-width: 980px) {
  .site-header { --masthead-h: 78px; }
  .brand { height: var(--masthead-h); transform: none; }
  .brand-logo { width: 64px; height: 64px; flex-basis: 64px; }
  .brand-logo img { width: 64px; height: 64px; transform: none; }
  .brand-name { font-size: 1.35rem; }
  .brand-sub { font-size: 0.95rem; }
  .nav-toggle {
    border-color: var(--primary);
  }
  .nav-toggle span,
  .nav-toggle span::before,
  .nav-toggle span::after {
    background: var(--primary);
  }
  .primary-nav {
    background: var(--navy-deep);
    border-top-color: rgba(255,255,255,.14);
  }
  .primary-nav > ul > li > a,
  .primary-nav > ul > li > button {
    border-bottom-color: rgba(255,255,255,.14);
  }
}
@media (max-width: 640px) {
  .brand-copy {
    display: block;
  }
  .brand-name { display: block; }
}

/* ——— Premium interior pages ——— */
.page-hero.page-hero-premium {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
  background-color: var(--navy-deep);
  background-position: center 10%;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 38, .58) 0%, rgba(6, 18, 38, .32) 48%, rgba(6, 18, 38, .22) 100%),
    linear-gradient(180deg, rgba(6, 18, 38, .12), rgba(6, 18, 38, .36));
  pointer-events: none;
}
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 460px;
}
.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 46rem;
  padding: clamp(4.2rem, 8vw, 7.5rem) 0;
}
.page-hero-copy::after {
  content: "";
  width: 56px;
  height: 3px;
  margin-top: 1.7rem;
  background: var(--bronze);
}
.page-hero.page-hero-premium h1 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  white-space: nowrap;
}
.page-hero.page-hero-premium h1.is-long {
  white-space: normal;
  text-wrap: pretty;
}
.page-hero.page-hero-premium .lead {
  max-width: 58ch;
  margin: 1.55rem 0 0;
  color: #dce8f7;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

.layout-page {
  padding-top: clamp(3.5rem, 6vw, 5.75rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}
.layout-page .prose {
  max-width: none;
}
.prose > p:first-child {
  color: var(--ink-2);
  font-size: 1.12rem;
  line-height: 1.75;
}
.prose h2 {
  margin-top: 2.8rem;
  color: var(--ink);
  font-size: clamp(1.65rem, 2.7vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.prose h3 {
  color: var(--ink-2);
  font-size: 1.2rem;
}
.prose p,
.prose li {
  line-height: 1.72;
}
.prose blockquote {
  margin: 2.3rem 0;
  padding: 1.6rem 1.8rem;
  border-left: 4px solid var(--bronze);
  background: var(--notice);
  color: var(--ink-2);
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .page-hero-grid {
    min-height: 390px;
  }
  .page-hero.page-hero-premium h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
  }
}
@media (max-width: 720px) {
  .page-hero-copy { padding: 3.8rem 0 3.4rem; }
  .page-hero.page-hero-premium h1 {
    white-space: normal;
  }
}

.editorial-intro {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  border-top: 1px solid var(--rule);
  background: #fff;
}
.editorial-intro-grid {
  display: grid;
  grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr);
  gap: 2rem 5rem;
  align-items: start;
}
.editorial-label {
  margin: .4rem 0 0;
  color: var(--primary);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .19em;
  line-height: 1.45;
  text-transform: uppercase;
}
.editorial-intro h2,
.editorial-heading h2,
.editorial-cta h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  text-wrap: balance;
}
.editorial-intro h2 {
  max-width: 25ch;
}
.editorial-intro-grid > div > p {
  max-width: 66ch;
  margin: 1.5rem 0 0;
  color: var(--body);
  font-size: 1.08rem;
  line-height: 1.8;
}
.editorial-section {
  padding: clamp(4.5rem, 8vw, 8rem) 0;
  background: var(--paper);
}
.editorial-heading {
  display: grid;
  grid-template-columns: minmax(150px, .32fr) minmax(0, 1.25fr) minmax(250px, .55fr);
  gap: 2rem 3rem;
  align-items: end;
  margin-bottom: 3rem;
}
.editorial-heading h2 {
  max-width: 19ch;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}
.editorial-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.editorial-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  background: #fff;
}
.editorial-card {
  min-height: 285px;
  padding: 1.5rem;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.editorial-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .15em;
}
.editorial-card h3 {
  max-width: 18ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.15;
}
.editorial-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.editorial-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--navy-deep);
}
.editorial-cta .editorial-label {
  margin: 0 0 .7rem;
  color: var(--bronze-l);
}
.editorial-cta h2 {
  max-width: 21ch;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
}
.editorial-cta .btn {
  flex: 0 0 auto;
}

@media (max-width: 980px) {
  .editorial-heading {
    grid-template-columns: minmax(130px, .3fr) minmax(0, 1fr);
  }
  .editorial-heading > p:last-child {
    grid-column: 2;
  }
  .editorial-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .editorial-intro-grid,
  .editorial-heading {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .editorial-heading > p:last-child { grid-column: auto; }
  .editorial-card-grid { grid-template-columns: 1fr; }
  .editorial-card { min-height: 0; }
  .editorial-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ——— News listing & article ——— */
.is-news .page-hero .wrap,
.is-news .news-index,
.is-news .article-hero .wrap,
.is-news .article-layout {
  width: min(1600px, calc(100% - 2.5rem));
}
.is-news .site-footer .wrap {
  width: min(1400px, calc(100% - 4rem));
}
.news-index {
  padding: 2.4rem 0 4.5rem;
}
.news-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 2rem;
}
.news-cats a {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.95rem;
  border: 1px solid var(--rule);
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.news-cats a:hover,
.news-cats a.is-on {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
}
.news-empty { color: var(--muted); }
.hp-news-card-media { position: relative; }
.news-card-cat,
.news-card-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.news-card-cat {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  padding: 0.28rem 0.55rem;
  background: rgba(7, 21, 41, 0.88);
  color: #fff;
}
.news-card-label {
  display: inline-block;
  margin: 0.35rem 0 0;
  color: var(--bronze-d);
}
.news-card-grid .hp-news-card h3 {
  font-size: 1.08rem;
}
.news-card-grid .hp-news-card-media { height: 168px; }

.article-hero {
  background: var(--navy-deep);
  color: #fff;
}
.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 1.1fr);
  min-height: 520px;
}
.article-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.8rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3.5rem) clamp(2.8rem, 6vw, 5.5rem) 0;
}
.article-kicker {
  margin: 0 0 1rem;
  color: #e0b84e;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.article-kicker a { color: #e0b84e; text-decoration: none; }
.article-kicker a:hover { color: #fff; }
.article-hero h1 {
  max-width: 28ch;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-wrap: pretty;
}
.article-hero .lead {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: #dce8f7;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.6;
}
.article-hero-media {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  background: #0b1f33;
}
.article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.7fr);
  gap: 3.2rem;
  align-items: start;
  padding: 3.2rem 0 5rem;
}
.article-body.prose,
.is-news .article-body.prose {
  max-width: none;
}
.article-body {
  font-size: 1.08rem;
}
.article-back { margin-top: 2.4rem; }
.article-related {
  padding: 1.4rem 1.35rem 1.5rem;
  border: 1px solid var(--rule);
  background: #fff;
}
.article-related h2 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.article-related ul { list-style: none; margin: 0; padding: 0; }
.article-related li + li { margin-top: 0.9rem; padding-top: 0.9rem; border-top: 1px solid var(--rule); }
.article-related a {
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  color: var(--ink);
  text-decoration: none;
}
.article-related a:hover { color: var(--link); }
.article-related img {
  width: 4.6rem;
  height: 3.4rem;
  object-fit: cover;
  background: #0b1f33;
}
.article-related small {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--bronze-d);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .article-hero-grid,
  .article-layout { grid-template-columns: 1fr; }
  .article-hero-copy { padding: 2.6rem 0 2.2rem; }
  .article-hero-media,
  .article-hero-grid { min-height: 0; }
  .article-hero-media { height: 280px; min-height: 280px; }
  .article-hero h1 { max-width: none; }
}

/* ——— Institutional interior sections (AEES pages) ——— */
.inst-subnav {
  background: #fff;
  border-bottom: 1px solid var(--rule);
}
.inst-subnav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.2rem;
}
.inst-subnav a {
  padding: 0.95rem 1rem 0.9rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.inst-subnav a:hover,
.inst-subnav a.is-current {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.inst-text,
.inst-split,
.inst-cards,
.inst-compare,
.inst-facts,
.inst-related,
.inst-note-wrap,
.inst-cta {
  padding: clamp(3.8rem, 7vw, 6.5rem) 0;
}
.inst-white { background: #fff; }
.inst-paper { background: var(--paper); }
.inst-text .wrap,
.inst-split .wrap,
.inst-cards .wrap,
.inst-compare .wrap,
.inst-facts .wrap,
.inst-related .wrap,
.inst-note-wrap .wrap,
.inst-cta .wrap,
.inst-subnav .wrap {
  width: min(1400px, calc(100% - 4rem));
}
.inst-text-grid,
.inst-split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
}
.inst-split-grid { align-items: center; }
.inst-split.is-reverse .inst-media { order: -1; }
.inst-text h2,
.inst-split h2,
.inst-section-head h2,
.inst-cta h2,
.inst-note h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.2vw, 2.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.inst-copy p,
.inst-section-head p,
.inst-compare-col p,
.inst-note p {
  margin: 0 0 1.05rem;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
}
.inst-copy p:last-child,
.inst-compare-col p:last-child,
.inst-note p:last-child { margin-bottom: 0; }
.inst-media {
  margin: 0;
  overflow: hidden;
  background: var(--navy-deep);
  min-height: 320px;
}
.inst-media img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center 20%;
}
.inst-media.is-flag img {
  object-fit: cover;
  object-position: center;
}

.wrap.legal-page {
  width: min(1400px, calc(100% - 4rem));
  max-width: none;
  margin-inline: auto;
  padding: clamp(2.4rem, 5vw, 4.2rem) 0 clamp(4rem, 7vw, 7rem);
}
.legal-page .prose,
.legal-prose {
  max-width: none;
}
.legal-page .legal-updated,
.legal-prose > p.legal-updated {
  margin: 0 0 1.4rem;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.legal-toc {
  margin: 1.8rem 0 2.4rem;
  padding: 1.35rem 1.5rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--rule);
}
.legal-toc p {
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-toc ol {
  margin: 0;
  padding: 0 0 0 1.15rem;
  columns: 2;
  column-gap: 2rem;
}
.legal-toc li {
  break-inside: avoid;
  margin: 0.28rem 0;
}
.legal-toc a {
  color: var(--ink-2);
  text-decoration: none;
}
.legal-toc a:hover { color: var(--ink); text-decoration: underline; }
.legal-prose .spec-sheet { background: #fff; }
.legal-prose h2 { scroll-margin-top: 5.5rem; }
@media (min-width: 900px) {
  .legal-toc ol { columns: 3; }
}
@media (max-width: 720px) {
  .legal-toc ol { columns: 1; }
}
.inst-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem 4rem;
  align-items: end;
  margin-bottom: 2.4rem;
}
.inst-section-head p { margin: 0; }
.inst-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.inst-card-grid[data-count="5"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.inst-card-grid[data-count="6"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.inst-card {
  min-height: 100%;
  padding: 1.5rem 1.4rem 1.7rem;
  background: #fff;
  border: 1px solid var(--rule);
}
.inst-paper .inst-card { border-color: #d8e1ec; }
.inst-card span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.inst-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.2;
}
.inst-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.inst-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  border: 1px solid var(--rule);
}
.inst-compare-col { padding: clamp(1.6rem, 3vw, 2.6rem); }
.inst-compare-col + .inst-compare-col { border-left: 1px solid var(--rule); }
.inst-compare-col h3 {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.45rem;
}
.inst-facts.inst-navy {
  background:
    linear-gradient(180deg, rgba(10, 37, 84, 0.55), transparent 42%),
    var(--navy-deep);
}
.inst-facts-head {
  max-width: 40rem;
  margin: 0 0 2rem;
  padding-bottom: 1.35rem;
  border-bottom: 1px solid rgba(223, 179, 45, 0.38);
}
.inst-facts-kicker {
  margin: 0 0 0.55rem;
  color: var(--bronze-l);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.inst-facts.inst-navy h2,
.inst-facts.inst-navy dt,
.inst-facts.inst-navy dd { color: #fff; }
.inst-facts-head h2 { margin: 0; }
.inst-facts-lead {
  margin: 0.7rem 0 0;
  color: #c9d7ea;
  font-size: 1.02rem;
  line-height: 1.6;
}
.inst-fact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 2px solid var(--bronze);
}
.inst-fact-grid[data-count="4"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.inst-fact {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 8.4rem;
  padding: 1.55rem 1.6rem 1.7rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.inst-fact-grid dt {
  margin: 0 0 0.85rem;
  color: var(--bronze-l);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.inst-fact-grid dd {
  margin: 0;
  color: #f4f7fb;
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.4;
  text-wrap: pretty;
}
.inst-fact-grid[data-count="6"] .inst-fact:nth-child(3n),
.inst-fact-grid[data-count="3"] .inst-fact:nth-child(3n),
.inst-fact-grid[data-count="4"] .inst-fact:nth-child(2n) { border-right: 0; }
.inst-fact-grid[data-count="6"] .inst-fact:nth-last-child(-n+3),
.inst-fact-grid[data-count="3"] .inst-fact { border-bottom: 0; }
.inst-fact-grid[data-count="4"] .inst-fact:nth-last-child(-n+2) { border-bottom: 0; }
.inst-note {
  max-width: 56rem;
  padding: 1.6rem 1.8rem;
  border-left: 4px solid var(--bronze);
  background: #fff;
}
.inst-note-wrap .notice {
  margin: 0;
  padding: 1.6rem 1.8rem;
  border: 0;
  border-left: 4px solid var(--bronze);
  background: var(--paper);
}
.inst-cta {
  background: var(--navy-deep);
  padding: 1.35rem 0;
}
.inst-cta-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem 2rem;
}
.inst-cta h2 {
  color: #fff;
  max-width: none;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}
.inst-cta p {
  max-width: none;
  margin: 0.3rem 0 0;
  color: #d5e0ef;
  line-height: 1.4;
  white-space: nowrap;
}
.inst-cta .btn { flex: 0 0 auto; }

@media (max-width: 1100px) {
  .inst-card-grid,
  .inst-card-grid[data-count="5"],
  .inst-card-grid[data-count="6"],
  .inst-fact-grid,
  .inst-fact-grid[data-count="4"],
  .inst-fact-grid[data-count="6"] { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .inst-fact { border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .inst-fact-grid .inst-fact:nth-child(2n) { border-right: 0; }
  .inst-fact-grid .inst-fact:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 900px) {
  .inst-text-grid,
  .inst-split-grid,
  .inst-section-head,
  .inst-compare-grid { grid-template-columns: 1fr; }
  .inst-split.is-reverse .inst-media { order: 0; }
  .inst-compare-col + .inst-compare-col { border-left: 0; border-top: 1px solid var(--rule); }
  .inst-cta-grid {
    flex-direction: column;
    align-items: flex-start;
  }
  .inst-cta p { white-space: normal; }
  .inst-text .wrap,
  .inst-split .wrap,
  .inst-cards .wrap,
  .inst-compare .wrap,
  .inst-facts .wrap,
  .inst-related .wrap,
  .inst-note-wrap .wrap,
  .inst-cta .wrap,
  .inst-subnav .wrap,
  .wrap.legal-page { width: min(1400px, calc(100% - 2.5rem)); }
}
@media (max-width: 620px) {
  .inst-card-grid,
  .inst-card-grid[data-count="5"],
  .inst-card-grid[data-count="6"],
  .inst-fact-grid,
  .inst-fact-grid[data-count="4"],
  .inst-fact-grid[data-count="6"] { grid-template-columns: 1fr; }
  .inst-fact,
  .inst-fact-grid .inst-fact:nth-child(2n) { border-right: 0; }
  .inst-fact-grid .inst-fact { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .inst-fact-grid .inst-fact:last-child { border-bottom: 0; }
  .inst-media img { min-height: 240px; }
}

.offer-hub .inst-section-head { margin-bottom: 1.8rem; }
.offer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}
.offer-card {
  grid-column: span 2;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem 1.45rem 1.5rem;
  color: #fff;
  text-decoration: none;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}
.offer-card:nth-child(-n+2) { grid-column: span 3; }
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7,18,38,.42), rgba(7,18,38,.94));
  transition: background 0.18s ease;
}
.offer-card:hover::before {
  background: linear-gradient(180deg, rgba(7,18,38,.28), rgba(7,18,38,.92));
}
.offer-card span {
  display: block;
  margin-bottom: 0.85rem;
  color: #e8c37a;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.offer-card h3 {
  margin: 0 0 0.55rem;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.15;
}
.offer-card p {
  margin: 0;
  color: #f3f6fb;
  font-size: 0.95rem;
  line-height: 1.5;
}
.offer-related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.offer-related-grid[data-count="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.offer-related {
  display: block;
  min-height: 100%;
  padding: 1.45rem 1.4rem 1.55rem;
  background: #fff;
  border: 1px solid var(--rule);
  text-decoration: none;
}
.offer-related:hover { border-color: var(--ink); }
.offer-related small {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.offer-related h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.25;
}
.offer-related p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 980px) {
  .hp-family-grid.is-five .hp-family,
  .hp-family-grid.is-five .hp-family:nth-child(-n+2),
  .offer-card,
  .offer-card:nth-child(-n+2) { grid-column: auto; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .offer-grid,
  .offer-related-grid,
  .offer-related-grid[data-count="3"] { grid-template-columns: 1fr; }
}

/* ——— Contact page ——— */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .92fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
  width: min(1480px, calc(100% - 2.5rem));
  padding-top: clamp(3.5rem, 6vw, 5.75rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}
.contact-copy .contact-channels {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  border-top: 1px solid var(--rule);
}
.contact-channels li {
  display: grid;
  gap: .15rem;
  margin: 0;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}
.contact-channels strong {
  color: var(--ink);
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 650;
}
.contact-channels a {
  color: var(--link);
  font-family: var(--sans);
  font-size: .95rem;
}
.contact-address {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
}
.contact-panel {
  position: sticky;
  top: 6.5rem;
  padding: 1.8rem 1.7rem 1.75rem;
  border: 1px solid var(--rule);
  background: var(--white);
  box-shadow: 0 18px 40px rgba(7, 29, 66, .06);
}
.contact-panel::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin-bottom: 1.15rem;
  background: var(--bronze);
}
.contact-panel-kicker {
  margin: 0 0 .35rem;
  color: var(--bronze-d);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.contact-panel-lead {
  margin: .7rem 0 1.25rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.55;
}
.contact-alert {
  margin: 0 0 1.15rem;
  padding: .85rem 1rem;
  border: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: .9rem;
  line-height: 1.45;
}
.contact-alert.is-ok {
  border-left: 3px solid var(--ok);
  background: #f3f7f4;
  color: var(--ok);
}
.contact-alert.is-bad {
  border-left: 3px solid var(--danger);
  background: #f8f1f1;
  color: var(--danger);
}
.contact-form .field { margin-bottom: .9rem; }
.contact-form label {
  display: block;
  margin-bottom: .28rem;
  color: var(--ink);
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 700;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: .7rem .85rem;
  border: 1px solid var(--rule);
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-family: var(--sans);
  font-size: .95rem;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(23, 104, 197, .14);
  background: #fff;
}
.contact-consent {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin: 1.05rem 0 1.25rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: .82rem;
  line-height: 1.45;
}
.contact-consent input {
  width: 1.05rem;
  height: 1.05rem;
  margin-top: .15rem;
  flex: 0 0 auto;
  accent-color: var(--ink);
}
.contact-form .btn {
  width: 100%;
  min-height: 48px;
  font-size: .92rem;
}
.contact-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .contact-panel { position: static; }
}

.page-hero-grid.is-centered {
  justify-items: center;
  text-align: center;
}
.page-hero-grid.is-centered .page-hero-copy {
  align-items: center;
  max-width: 38rem;
}
.page-hero-grid.is-centered .page-hero-copy::after {
  margin-left: auto;
  margin-right: auto;
}
.page-hero-grid.is-centered .lead {
  max-width: 36rem;
}

.portal-landing {
  max-width: 54rem;
  margin: 0 auto;
  padding: clamp(3.2rem, 6vw, 5.2rem) 0 clamp(4rem, 7vw, 6.5rem);
  text-align: center;
}
.portal-lead {
  margin: 0 auto 2.6rem;
  max-width: 40rem;
  color: var(--ink-2);
  font-size: 1.12rem;
  line-height: 1.75;
}
.portal-landing h2 {
  margin: 0 0 1.4rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  letter-spacing: -.02em;
}
.portal-tasks {
  list-style: none;
  margin: 0 0 2.8rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  text-align: left;
}
.portal-tasks li {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.2rem 1.25rem 1.25rem;
  border: 1px solid var(--line);
  background: var(--white);
}
.portal-tasks strong {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--ink);
  font-size: 0.95rem;
}
.portal-tasks span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.portal-access {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1.8rem;
  text-align: left;
}
.portal-access-card {
  display: flex;
  flex-direction: column;
  padding: 1.45rem 1.4rem 1.5rem;
  border: 1px solid transparent;
}
.portal-access-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--serif);
  font-size: 1.2rem;
}
.portal-access-card p {
  flex: 1;
  margin: 0 0 1.15rem;
  font-size: 0.95rem;
  line-height: 1.6;
}
.portal-access-card .btn {
  align-self: flex-start;
}
.portal-access-card.is-approved {
  background: var(--ink);
  color: #e8eef6;
}
.portal-access-card.is-approved h3 {
  color: #fff;
}
.portal-access-card.is-approved p {
  color: #c5d3e6;
}
.portal-access-card.is-approved .btn {
  border-color: var(--bronze);
  background: var(--bronze);
  color: var(--navy-deep);
}
.portal-access-card.is-approved .btn:hover {
  border-color: var(--bronze-l);
  background: var(--bronze-l);
  color: var(--navy-deep);
}
.portal-access-card.is-apply {
  background: #f4e6b0;
  color: var(--ink);
}
.portal-access-card.is-apply h3 {
  color: var(--ink);
}
.portal-access-card.is-apply p {
  color: var(--ink-2);
}
.portal-access-card.is-apply .btn {
  border-color: var(--ink);
  background: var(--ink);
  color: #f4ead6;
}
.portal-access-card.is-apply .btn:hover {
  background: var(--ink-2);
  color: #fff;
}
.portal-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
@media (max-width: 720px) {
  .portal-tasks,
  .portal-access {
    grid-template-columns: 1fr;
  }
}
