@charset "UTF-8";
:root {
  --font1: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font2: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --f1: 45px;
  --f2: 35px;
  --f3: 28px;
  --f4: 22px;
  --f5: 17px;
  --f6: 13px;
  --g1: 67px;
  --g2: 53px;
  --g3: 44px;
  --g4: 35px;
  --g5: 28px;
  --g6: 23px;
  --x1: 45px;
  --x2: 28px;
  --x3: 17px;
  --x4: 11px;
  --x5: 7px;
  --x6: 4px;
  --phi: 1.6180339887;
  --bg1: #FFFFFF;
  --bg2: #FAF7F2;
  --c1: #1A1A1A;
  --c2: #4A4A4A;
  --ca: #2A5A8C;
  --w-content: 720px;
  --w-total: 1200px;
  --gutter-full: 28px;
  --gutter-mobile: 17px;
  --b1: 466px;
  --b2: 754px;
  --b3: 776px;
  --b4: 1200px;
  --b5: 1256px;
  --color-primary: #1B3A5C;
  --color-primary-light: #2A5A8C;
  --color-accent: #E8A838;
  --color-accent-hover: #D4952E;
  --color-safeguard: #1A7A4F;
  --color-safeguard-bg: #EDF7F2;
  --color-text-inverse: #FFFFFF;
  --color-bg-warm: #FAF7F2;
  --color-bg-dark: #1B3A5C;
  --color-border: #E0DCD4;
  --color-card-bg: #FFFFFF;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
}

/* ─── RESET ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4 {
  font-weight: normal;
}

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

iframe, video, embed, object {
  display: block;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

abbr {
  text-decoration: none;
}

code {
  line-height: 1em;
}

pre {
  overflow: auto;
  word-wrap: normal;
  tab-size: 4;
}

sub, sup {
  line-height: 0.5em;
}

button, input[type=submit] {
  cursor: pointer;
  overflow: visible;
}

/* ─── BODY & STRUCTURE ─── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font1);
  color: var(--c1);
  background: var(--bg1);
  line-height: var(--g5);
  font-size: var(--f5);
  overflow-x: hidden;
}

::selection {
  background-color: rgba(27, 58, 92, 0.15);
  color: var(--color-primary);
}

.container {
  box-sizing: border-box;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}
@media all and (min-width: 754px) {
  .container {
    max-width: var(--w-content);
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}
@media all and (min-width: 776px) {
  .container {
    max-width: 100%;
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
    margin-left: 0;
    margin-right: 0;
  }
}
@media all and (min-width: 1256px) {
  .container {
    max-width: var(--w-total);
    padding-left: 0;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
  }
}

.section-center {
  text-align: center;
}
.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ─── COMMON CONTENT ELEMENTS ─── */
h1 {
  font-family: var(--font1);
  font-size: var(--f1);
  line-height: var(--g1);
  font-weight: 800;
  color: var(--color-primary);
}

h2 {
  font-family: var(--font1);
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 800;
  color: var(--color-primary);
}

h3 {
  font-family: var(--font1);
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 700;
  color: var(--color-primary);
}

h4 {
  font-family: var(--font1);
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
  color: var(--color-primary);
}

a {
  color: var(--color-primary-light);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

blockquote {
  padding-left: var(--x3);
  border-left: var(--x5) solid rgba(0, 0, 0, 0.1);
  font-style: italic;
}

hr {
  border: 1px solid var(--color-border);
  border-width: 0 0 1px 0;
  margin: var(--x2) 0;
}

svg {
  width: var(--f5);
  height: var(--f5);
  vertical-align: text-bottom;
}

.small {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

.callout {
  background-color: #f0f4f8;
  color: var(--c1);
  padding: var(--x3);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--x4) var(--x4) 0;
}
.callout.alert {
  background-color: #fff3e0;
  border-left-color: var(--color-accent);
}
.callout.note {
  background-color: var(--color-safeguard-bg);
  border-left-color: var(--color-safeguard);
}

.impact {
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
  color: var(--color-primary);
}

.highlight {
  background-color: rgba(232, 168, 56, 0.2);
  padding: var(--x6) 0;
}

.pop {
  box-shadow: var(--shadow-lg);
}

.caption {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

.drop-cap {
  font-size: calc(2 * var(--x2));
  line-height: 1em;
  font-weight: 700;
  color: var(--color-primary);
  margin-right: var(--x5);
  float: left;
}

@media all and (min-width: 754px) {
  .impact {
    font-size: var(--f3);
    line-height: var(--g3);
  }
}
/* ─── DYNAMIC PAGE CONTENT ─── */
.page-container + .page-container {
  margin-top: var(--x1);
}

.page-content h1 {
  margin-bottom: var(--x2);
}
.page-content h2 {
  margin-top: var(--x1);
  margin-bottom: var(--x2);
}
.page-content h3 {
  margin-top: var(--x2);
  margin-bottom: var(--x3);
}
.page-content h4 {
  margin-bottom: var(--x4);
}
.page-content h1 + h2, .page-content h2 + h3, .page-content h1:first-child, .page-content h2:first-child, .page-content h3:first-child, .page-content hr + h2 {
  margin-top: 0;
}
.page-content > :last-child {
  margin-bottom: 0;
}
.page-content ul {
  list-style-type: disc;
  margin-left: var(--x2);
}
.page-content ol {
  margin-left: var(--x2);
}
.page-content ul ul, .page-content ul ol, .page-content ol ul, .page-content ol ol {
  margin-top: var(--x5);
  margin-bottom: 0;
  margin-left: var(--x3);
}
.page-content li {
  margin-bottom: var(--x5);
}
.page-content li:last-child {
  margin-bottom: 0;
}
.page-content .callout > :last-child {
  margin-bottom: 0;
}
.page-content .caption {
  margin-top: var(--x4);
}
.page-content p, .page-content ul, .page-content ol, .page-content blockquote, .page-content pre, .page-content img, .page-content .callout, .page-content .caption {
  margin-bottom: var(--x2);
}
.page-content p:last-child, .page-content ul:last-child, .page-content ol:last-child, .page-content blockquote:last-child, .page-content pre:last-child, .page-content img:last-child, .page-content .callout:last-child, .page-content .caption:last-child {
  margin-bottom: 0;
}

.headline-area {
  display: flow-root;
  margin-bottom: var(--x2);
}

.page-title {
  font-weight: 800;
}
.page-title a {
  color: var(--c1);
}
.page-title a:hover {
  color: var(--ca);
}

.page-title:has(+ .byline) {
  margin-bottom: 0;
}

.byline {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  margin-bottom: var(--x2);
}

.page-container, .page-content {
  display: flow-root;
}

/* ─── FORMS ─── */
label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--x5);
}
label .required {
  font-weight: normal;
  color: #c0392b;
}

input, textarea, select {
  display: block;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  line-height: 1em;
  font-weight: inherit;
  padding: var(--x4) var(--x3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

input[type=checkbox], input[type=radio], input[type=image], input[type=submit], select {
  width: auto;
}

input[type=checkbox], input[type=radio] {
  display: inline-block;
}
input[type=checkbox] + label, input[type=radio] + label {
  display: inline;
  font-weight: normal;
  margin-left: var(--x6);
  user-select: none;
}

textarea {
  line-height: inherit;
  padding: var(--x4) var(--x3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

select {
  border: 1px solid var(--color-border);
}

button, input[type=submit], .button {
  display: inline-block;
  width: auto;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: 1em;
  vertical-align: top;
  white-space: nowrap;
  color: var(--c1);
  text-decoration: none;
  background-color: var(--color-accent);
  padding: var(--x4) var(--x3);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
button:hover, button:active, input[type=submit]:hover, input[type=submit]:active, .button:hover, .button:active {
  background-color: var(--color-accent-hover);
  color: var(--c1);
  text-decoration: none;
  transform: translateY(-1px);
}

button.save, .button.save {
  background-color: #1A7A4F;
  color: #FFFFFF;
}
button.save:hover, button.save:active, .button.save:hover, .button.save:active {
  background-color: #155f3e;
  color: #FFFFFF;
}
button.delete, .button.delete {
  background-color: #8B1A1A;
  color: #FFFFFF;
}
button.delete:hover, button.delete:active, .button.delete:hover, .button.delete:active {
  background-color: #6e1414;
  color: #FFFFFF;
}
button.action, .button.action {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid rgba(255, 255, 255, 0.6);
}
button.action:hover, button.action:active, .button.action:hover, .button.action:active {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.9);
  color: #FFFFFF;
}
button.update, .button.update {
  background-color: var(--color-accent);
  color: var(--c1);
}
button.update:hover, button.update:active, .button.update:hover, .button.update:active {
  background-color: var(--color-accent-hover);
  color: var(--c1);
}

/* ─── SHARED COMPONENTS: NAV ─── */
.site-nav {
  background: var(--bg1);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-inner {
  max-width: var(--w-total);
  margin: 0 auto;
  padding: 0 var(--gutter-mobile);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
@media all and (min-width: 776px) {
  .nav-inner {
    padding: 0 var(--gutter-full);
  }
}

.nav-logo {
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span {
  display: block;
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  color: var(--c2);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.nav-logo:hover {
  text-decoration: none;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  cursor: pointer;
  padding: var(--x5);
}
.nav-toggle-label span, .nav-toggle-label span::before, .nav-toggle-label span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  position: relative;
  transition: all 0.3s;
}
.nav-toggle-label span::before, .nav-toggle-label span::after {
  content: "";
  position: absolute;
}
.nav-toggle-label span::before {
  top: -7px;
}
.nav-toggle-label span::after {
  top: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--x5);
  list-style: none;
  margin-bottom: 0;
}
.nav-links a {
  color: var(--c1);
  font-size: var(--f5);
  line-height: var(--g5);
  font-weight: 500;
  padding: var(--x5) var(--x4);
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-links a:hover {
  background: var(--color-bg-warm);
  text-decoration: none;
}
.nav-links .nav-cta {
  background: var(--color-accent);
  color: var(--c1);
  font-weight: 600;
  padding: var(--x5) var(--x3);
}
.nav-links .nav-cta:hover {
  background: var(--color-accent-hover);
}

@media (max-width: 700px) {
  .nav-toggle-label {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg1);
    flex-direction: column;
    padding: var(--x3) var(--gutter-mobile);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    z-index: 99;
  }
  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }
}
/* ─── SHARED COMPONENTS: FOOTER ─── */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--x1) 0 var(--x2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: var(--x2);
  margin-bottom: var(--x2);
}

.footer-brand {
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
  color: var(--color-text-inverse);
  margin-bottom: var(--x5);
}

.footer-tagline {
  font-size: var(--f6);
  line-height: var(--g6);
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: var(--x2);
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 0;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}
.footer-links a:hover {
  color: var(--color-text-inverse);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}

.footer-bottom {
  padding-top: var(--x3);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: var(--f6);
  line-height: var(--g6);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (max-width: 700px) {
  .footer-inner {
    flex-direction: column;
  }
  .footer-links {
    justify-content: center;
  }
}
/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 58, 92, 0.88) 0%, rgba(27, 58, 92, 0.65) 100%);
  z-index: -1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-total);
  margin: 0 auto;
  padding: 80px var(--gutter-mobile);
  width: 100%;
}
@media all and (min-width: 776px) {
  .hero-inner {
    padding-left: var(--gutter-full);
    padding-right: var(--gutter-full);
  }
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-text-inverse);
  margin-bottom: var(--x3);
}

.hero-subtitle {
  font-size: var(--f4);
  line-height: var(--g4);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--x2);
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: var(--x3);
  flex-wrap: wrap;
}
.hero-buttons .button {
  padding: var(--x4) var(--x2);
  font-size: var(--f5);
  line-height: var(--g5);
  font-weight: 600;
}
.hero-buttons .button.action {
  color: var(--color-text-inverse);
}
.hero-buttons .button.action:hover {
  color: var(--color-text-inverse);
}

@media (max-width: 700px) {
  .hero-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-subtitle {
    font-size: var(--f5);
    line-height: var(--g5);
  }
}
/* ─── SAFEGUARDING ─── */
.safeguarding {
  background: var(--color-safeguard-bg);
  border-left: 4px solid var(--color-safeguard);
  padding: var(--x1) 0;
}

.safeguarding-inner {
  display: flex;
  gap: var(--x2);
  align-items: flex-start;
}

.safeguarding-icon {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.safeguarding-content h2 {
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 700;
  color: var(--color-safeguard);
  margin-bottom: var(--x4);
}
.safeguarding-content p {
  color: var(--c1);
  margin-bottom: var(--x4);
  max-width: 720px;
}
.safeguarding-content p:last-of-type {
  margin-bottom: var(--x3);
}

.safeguarding-link {
  color: var(--color-safeguard);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}
.safeguarding-link:hover {
  text-decoration-color: var(--color-safeguard);
}

/* ─── SECTION DEFAULTS ─── */
.section {
  padding: var(--x1) 0;
}

.section-warm {
  background: var(--color-bg-warm);
}

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse);
}
.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.75);
}
.section-dark .section-title {
  color: var(--color-text-inverse);
}

.section-title {
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 800;
  margin-bottom: var(--x4);
}

.section-subtitle {
  font-size: var(--f4);
  line-height: var(--g4);
  color: var(--c2);
  margin-bottom: var(--x1);
  max-width: var(--w-content);
}

@media (max-width: 900px) {
  .section-title {
    font-size: var(--f3);
    line-height: var(--g3);
  }
}
/* ─── PROGRAMMES ─── */
.programme-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--x2);
}
@media (max-width: 900px) {
  .programme-grid {
    grid-template-columns: 1fr;
  }
}

.programme-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.programme-card:hover {
  box-shadow: var(--shadow-lg);
}

.programme-card-img {
  height: 220px;
  overflow: hidden;
}
.programme-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programme-card-body {
  padding: var(--x2);
}
.programme-card-body h3 {
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--x5);
}
.programme-card-body p {
  color: var(--c2);
  font-size: var(--f6);
  line-height: var(--g6);
  margin-bottom: var(--x3);
}
.programme-card-body p:last-child {
  margin-bottom: 0;
}
.programme-card-body a {
  font-weight: 600;
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--color-primary-light);
}

.programme-card-icon {
  font-size: 28px;
  line-height: 1;
  margin-bottom: var(--x5);
}

/* ─── VOICES ─── */
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x2);
  margin-top: var(--x2);
}
@media (max-width: 900px) {
  .voices-grid {
    grid-template-columns: 1fr;
  }
}

.voice-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--x2);
}

.voice-card-quote {
  font-size: var(--f5);
  line-height: var(--g5);
  font-style: italic;
  margin-bottom: var(--x3);
  color: rgba(255, 255, 255, 0.92);
}
.voice-card-quote:last-child {
  margin-bottom: 0;
}

.voice-card-attr {
  font-size: var(--f6);
  line-height: var(--g6);
  font-weight: 600;
  color: var(--color-accent);
}

/* ─── IMPACT ─── */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--x2);
  text-align: center;
  margin-top: var(--x2);
}
@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .impact-grid {
    gap: var(--x2);
  }
}

.impact-stat-number {
  font-size: calc(var(--f1) * var(--phi));
  line-height: 1;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: var(--x5);
}

.impact-stat-label {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  font-weight: 500;
}

/* ─── LEADERSHIP ─── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x2);
  margin-top: var(--x2);
}
@media (max-width: 900px) {
  .leadership-grid {
    grid-template-columns: 1fr;
  }
}

.leader-card {
  text-align: center;
}
.leader-card h3 {
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--x6);
}
.leader-card p {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  max-width: 320px;
  margin: 0 auto;
}
.leader-card p:last-child {
  margin-bottom: 0;
}

.leader-role {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
  font-weight: 500;
  margin-bottom: var(--x4);
}

.leader-avatar {
  width: 100px;
  height: 100px;
  border-radius: 9999px;
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--x3);
}

.leadership-cta {
  margin-top: var(--x2);
}
.leadership-cta a {
  font-weight: 600;
  color: var(--color-primary-light);
}

/* ─── GOVERNANCE ─── */
.governance-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--x2);
  margin-top: var(--x2);
}
@media (max-width: 900px) {
  .governance-features {
    grid-template-columns: 1fr;
  }
}

.governance-feature {
  text-align: center;
}
.governance-feature h3 {
  font-size: var(--f4);
  line-height: var(--g4);
  font-weight: 700;
  margin-bottom: var(--x5);
  color: var(--color-primary);
}
.governance-feature p {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

.governance-feature-icon {
  font-size: 32px;
  line-height: 1;
  margin-bottom: var(--x4);
}

.governance-cta {
  margin-top: var(--x2);
}
.governance-cta .button {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.governance-cta .button:hover {
  background-color: var(--color-primary-light);
  color: var(--color-text-inverse);
}

/* ─── TAKE ACTION ─── */
.action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--x2);
}
@media (max-width: 900px) {
  .action-grid {
    grid-template-columns: 1fr;
  }
}

.action-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: var(--x1);
  box-shadow: var(--shadow);
  border: 1px solid var(--color-border);
}
.action-card h3 {
  font-size: var(--f3);
  line-height: var(--g3);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--x4);
}
.action-card p {
  color: var(--c2);
  margin-bottom: var(--x2);
  font-size: var(--f6);
  line-height: var(--g6);
}
.action-card p:last-child {
  margin-bottom: 0;
}
.action-card .button {
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--x4) var(--x2);
}
.action-card .button:hover {
  background-color: var(--color-primary-light);
  color: var(--color-text-inverse);
}
.action-card .button.update {
  background-color: var(--color-accent);
  color: var(--c1);
}
.action-card .button.update:hover {
  background-color: var(--color-accent-hover);
  color: var(--c1);
}

.action-card-icon {
  font-size: 36px;
  line-height: 1;
  margin-bottom: var(--x3);
}

/* ─── NEWSLETTER ─── */
.newsletter-section {
  text-align: center;
  padding: var(--x1) 0;
  background: var(--color-bg-warm);
}
.newsletter-section h2 {
  font-size: var(--f2);
  line-height: var(--g2);
  font-weight: 800;
  margin-bottom: var(--x4);
}
.newsletter-section p {
  color: var(--c2);
  margin-bottom: var(--x2);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: var(--x4);
}
.newsletter-form input {
  flex: 1;
  padding: var(--x4) var(--x3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: var(--f5);
  line-height: var(--g5);
  font-family: inherit;
}
.newsletter-form .button {
  padding: var(--x4) var(--x2);
  background-color: var(--color-primary);
  color: var(--color-text-inverse);
}
.newsletter-form .button:hover {
  background-color: var(--color-primary-light);
  color: var(--color-text-inverse);
}
@media (max-width: 700px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ─── CONTACT ─── */
.contact-info {
  display: flex;
  gap: var(--x1);
  flex-wrap: wrap;
  margin-top: var(--x2);
}
@media (max-width: 700px) {
  .contact-info {
    flex-direction: column;
    gap: var(--x2);
  }
}

.contact-item {
  display: flex;
  gap: var(--x4);
  align-items: flex-start;
}

.contact-item-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.contact-item-text h3 {
  font-size: var(--f5);
  line-height: var(--g5);
  font-weight: 600;
  margin-bottom: var(--x6);
}
.contact-item-text p, .contact-item-text a {
  font-size: var(--f6);
  line-height: var(--g6);
  color: var(--c2);
}

/* ─── CONTENT SECTION (PAGE / 404) ─── */
.content-section {
  padding: var(--x1) 0;
  background: var(--bg1);
}