:root {
  --ink: #162033;
  --ink-soft: #4c596d;
  --paper: #f6f3ed;
  --paper-strong: #fffdf8;
  --panel: rgba(255, 253, 248, 0.86);
  --line: rgba(22, 32, 51, 0.14);
  --line-strong: rgba(22, 32, 51, 0.24);
  --accent: #c74634;
  --accent-dark: #963329;
  --accent-soft: #f4ddd7;
  --navy: #111a2c;
  --navy-2: #1b2941;
  --navy-3: #2f405d;
  --gold: #d4aa61;
  --green: #447467;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 26, 44, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --page: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 8%, rgba(199, 70, 52, 0.09), transparent 26rem),
    radial-gradient(circle at 92% 24%, rgba(68, 116, 103, 0.08), transparent 26rem),
    linear-gradient(180deg, #f9f7f2 0%, var(--paper) 52%, #f2efe8 100%);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--navy);
  background: var(--accent-soft);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  text-decoration: none;
  font-weight: 750;
  transition: transform 160ms ease;
}

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

.progress {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(17, 26, 44, 0.08);
}

.progress__bar {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #e36f5e);
  transition: width 80ms linear;
}

.topbar {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(17, 26, 44, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.topbar__inner {
  width: var(--page);
  min-height: 66px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand__mark {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(199, 70, 52, 0.18);
}

.topnav {
  min-width: 0;
  margin-left: auto;
  overflow-x: auto;
  scrollbar-width: none;
}

.topnav::-webkit-scrollbar {
  display: none;
}

.topnav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topnav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.topnav a[aria-current="true"] {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(17, 26, 44, 0.98), rgba(17, 26, 44, 0.93) 55%, rgba(28, 42, 65, 0.94)),
    var(--navy);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 84%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  top: 120px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 76px rgba(255, 255, 255, 0.025),
    0 0 0 152px rgba(255, 255, 255, 0.018),
    inset 0 0 0 76px rgba(199, 70, 52, 0.055);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--page);
  min-height: 760px;
  margin: 0 auto;
  padding: 94px 0 82px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
  gap: clamp(46px, 7vw, 94px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6.7vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 760px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.58;
}

.identity {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
}

.identity__monogram {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.identity strong,
.identity span {
  display: block;
}

.identity strong {
  margin-bottom: 2px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.identity span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.hero__aside {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__aside::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 28px;
  width: 92px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--accent);
}

.aside-label {
  margin-bottom: 19px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__aside blockquote {
  margin: 0 0 28px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  min-width: 0;
  padding: 15px 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.stat strong,
.stat span {
  display: block;
}

.stat strong {
  margin-bottom: 2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.62rem;
  line-height: 1;
}

.stat span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-wrap {
  width: var(--page);
  margin: 0 auto;
  padding: 92px 0 110px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: start;
}

.side-rail {
  position: sticky;
  top: 98px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 18px 42px rgba(17, 26, 44, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.side-rail__label {
  margin-bottom: 15px;
  color: var(--ink-soft);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.side-rail ol {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: sections;
}

.side-rail li {
  counter-increment: sections;
}

.side-rail a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: baseline;
  padding: 9px 8px;
  border-radius: 10px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease;
}

.side-rail a::before {
  content: counter(sections, decimal-leading-zero);
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.side-rail a:hover,
.side-rail a:focus-visible,
.side-rail a[aria-current="true"] {
  color: var(--ink);
  background: rgba(199, 70, 52, 0.08);
  outline: none;
}

.content {
  min-width: 0;
}

.opening {
  position: relative;
  margin-bottom: 72px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.opening::after {
  content: "Commitment";
  position: absolute;
  right: -22px;
  bottom: 10px;
  color: rgba(22, 32, 51, 0.035);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.6rem, 10vw, 8.4rem);
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.opening p {
  position: relative;
  z-index: 1;
  margin-bottom: 1.15em;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
}

.opening p:last-child {
  margin-bottom: 0;
}

.section {
  scroll-margin-top: 104px;
  margin-bottom: 90px;
}

.section:last-of-type {
  margin-bottom: 0;
}

.section-head {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  margin-bottom: 34px;
}

.section-number {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(255, 255, 255, 0.4);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.section-kicker {
  margin-bottom: 6px;
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 4.1vw, 3.7rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.35;
}

.prose {
  max-width: 790px;
}

.prose p {
  margin-bottom: 1.25em;
  color: #29364a;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose .lead-line {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.43;
  letter-spacing: -0.02em;
}

.pullquote {
  position: relative;
  margin: 38px 0;
  padding: 26px 28px 27px 31px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--navy);
  background: linear-gradient(90deg, rgba(199, 70, 52, 0.1), rgba(199, 70, 52, 0.025));
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.1vw, 1.7rem);
  line-height: 1.45;
  letter-spacing: -0.018em;
}

.development-investment {
  margin: 34px 0 38px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.56);
}

.development-investment__label {
  margin-bottom: 8px !important;
  color: var(--green) !important;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.development-investment h3 {
  max-width: 660px;
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.32rem, 2vw, 1.7rem);
  line-height: 1.25;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.development-investment > p {
  color: var(--ink-soft);
}

.development-programmes {
  margin: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.development-programme {
  display: grid;
  grid-template-columns: minmax(210px, 0.92fr) minmax(0, 1.55fr);
  gap: 22px;
  align-items: start;
  padding: 17px 0;
}

.development-programme + .development-programme {
  border-top: 1px solid var(--line);
}

.development-programme h4 {
  margin: 0;
  color: var(--ink);
  font-size: 0.78rem;
  line-height: 1.45;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.development-programme p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.89rem;
  line-height: 1.55;
}

.development-programme strong {
  color: var(--ink);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.development-investment__measure {
  margin-bottom: 0 !important;
  color: var(--ink) !important;
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 14px 38px rgba(17, 26, 44, 0.06);
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  width: 46px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--accent);
}

.card p:last-child {
  margin-bottom: 0;
}

.card--dark {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--navy), var(--navy-2));
  box-shadow: 0 24px 52px rgba(17, 26, 44, 0.18);
}

.card--dark h3,
.card--dark p {
  color: inherit;
}

.card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.card--green::before {
  background: var(--green);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.signal {
  min-height: 142px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.42);
}

.signal__index {
  display: block;
  margin-bottom: 13px;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.signal strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.3;
}

.signal p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.5;
}

.context-panel {
  position: relative;
  overflow: hidden;
  margin-top: 38px;
  padding: clamp(30px, 5vw, 52px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background:
    linear-gradient(128deg, rgba(17, 26, 44, 0.98), rgba(30, 50, 67, 0.95)),
    var(--navy);
  box-shadow: 0 30px 68px rgba(17, 26, 44, 0.18);
}

.context-panel::after {
  content: "";
  position: absolute;
  right: -92px;
  bottom: -118px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(255, 255, 255, 0.025),
    0 0 0 108px rgba(255, 255, 255, 0.018);
}

.context-panel p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.74);
}

.context-panel p:last-child {
  margin-bottom: 0;
}

.context-panel .lead-line {
  color: var(--white);
}

.principles {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  box-shadow: var(--shadow);
}

.principle {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 28px;
  background: rgba(255, 253, 248, 0.95);
}

.principle__mark {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(199, 70, 52, 0.26);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 850;
  background: rgba(199, 70, 52, 0.07);
}

.principle p {
  margin: 2px 0 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 1.8vw, 1.34rem);
  line-height: 1.45;
  letter-spacing: -0.012em;
}

.closing {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  padding: clamp(34px, 7vw, 76px);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(130deg, var(--accent-dark), var(--accent));
  box-shadow: 0 30px 70px rgba(150, 51, 41, 0.24);
}

.closing::before {
  content: "FY27";
  position: absolute;
  right: -6px;
  bottom: -22px;
  color: rgba(255, 255, 255, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 20vw, 15rem);
  font-weight: 700;
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.closing p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4.2vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

footer {
  color: rgba(255, 255, 255, 0.58);
  background: var(--navy);
}

.footer__inner {
  width: var(--page);
  margin: 0 auto;
  padding: 38px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  font-size: 0.78rem;
}

.footer__identity strong,
.footer__identity span {
  display: block;
}

.footer__identity strong {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
}

.footer__meta {
  text-align: right;
}

.back-to-top {
  position: fixed;
  z-index: 50;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  background: rgba(17, 26, 44, 0.92);
  box-shadow: 0 14px 34px rgba(17, 26, 44, 0.2);
  text-decoration: none;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background 160ms ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--accent);
  outline: none;
}

:focus-visible {
  outline: 3px solid rgba(199, 70, 52, 0.38);
  outline-offset: 3px;
}

@media (max-width: 1000px) {
  .topbar__inner {
    gap: 16px;
  }

  .brand {
    font-size: 0.74rem;
  }

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

  .hero__inner {
    grid-template-columns: 1fr;
    padding: 88px 0 72px;
  }

  .hero__aside {
    max-width: 620px;
  }

  .main-wrap {
    grid-template-columns: 1fr;
  }

  .side-rail {
    display: none;
  }

  .content {
    max-width: 860px;
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 28px, 1180px);
  }

  body {
    font-size: 16px;
  }

  .topbar__inner {
    min-height: 58px;
  }

  .brand span:last-child {
    display: none;
  }

  .topnav a {
    min-height: 32px;
    padding-inline: 10px;
    font-size: 0.73rem;
  }

  .hero__inner {
    padding: 70px 0 58px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero__aside {
    padding: 24px;
  }

  .main-wrap {
    padding: 64px 0 78px;
  }

  .opening {
    margin-bottom: 58px;
    padding: 28px 24px;
  }

  .section {
    margin-bottom: 68px;
  }

  .section-head {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
  }

  .section-number {
    width: 44px;
    height: 44px;
    font-size: 0.88rem;
  }

  .split,
  .signal-grid {
    grid-template-columns: 1fr;
  }

  .card,
  .context-panel {
    padding: 24px;
  }

  .development-investment {
    padding: 22px;
  }

  .development-programme {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 16px 0;
  }

  .principle {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
    padding: 20px;
  }

  .principle__mark {
    width: 30px;
    height: 30px;
  }

  .footer__inner {
    display: block;
  }

  .footer__meta {
    margin-top: 12px;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero__stats {
    grid-template-columns: 1fr;
  }

  .stat {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
  }

  .identity {
    align-items: flex-start;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
  }
}

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

@media print {
  @page {
    size: A4;
    margin: 17mm;
  }

  body {
    color: #111;
    background: #fff;
    font-size: 10.5pt;
  }

  .skip-link,
  .progress,
  .topbar,
  .side-rail,
  .back-to-top {
    display: none !important;
  }

  .hero {
    min-height: auto;
    color: #111;
    background: #fff;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero__inner {
    min-height: auto;
    width: 100%;
    padding: 0 0 14mm;
    display: block;
  }

  .eyebrow,
  .hero__lead,
  .identity span {
    color: #444;
  }

  .identity__monogram {
    color: #111;
    border-color: #aaa;
    background: #fff;
  }

  .hero__aside {
    margin-top: 9mm;
    color: #111;
    border-color: #bbb;
    background: #f5f5f5;
    box-shadow: none;
  }

  .stat {
    border-color: #bbb;
    background: #fff;
  }

  .stat span {
    color: #555;
  }

  .main-wrap {
    display: block;
    width: 100%;
    padding: 0;
  }

  .opening,
  .card,
  .context-panel,
  .development-investment,
  .development-programme,
  .principles,
  .closing {
    break-inside: avoid;
    box-shadow: none;
  }

  .section {
    margin-bottom: 12mm;
  }

  .context-panel,
  .card--dark,
  .closing {
    color: #111;
    border: 1px solid #aaa;
    background: #f2f2f2;
  }

  .context-panel p,
  .context-panel .lead-line,
  .card--dark p,
  .card--dark h3,
  .closing p {
    color: #111;
  }

  footer {
    color: #333;
    background: #fff;
  }

  .footer__inner {
    width: 100%;
    padding: 8mm 0 0;
    border-top: 1px solid #aaa;
  }

  .footer__identity strong {
    color: #111;
  }
}
