@font-face {
  font-family: "Geist";
  src: url("assets/fonts/geist.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("assets/fonts/geist-mono.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("assets/fonts/newsreader-italic.woff2") format("woff2");
  font-style: italic;
  font-display: swap;
}

:root {
  --navy: #07162f;
  --navy-2: #0d2447;
  --blue: #1758d5;
  --blue-bright: #2468ee;
  --bronze: #a8753d;
  --gold: #cfaa74;
  --cream: #f3efe6;
  --cream-2: #e9e1d2;
  --paper: #faf8f2;
  --white: #fff;
  --ink: #121a28;
  --muted: #5d6673;
  --line: rgba(7, 22, 47, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --serif: "Newsreader", Georgia, serif;
  --sans: "Geist", Arial, sans-serif;
  --mono: "Geist Mono", monospace;
  --shell: min(1440px, calc(100vw - 64px));
  --header-height: 122px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

main > section[id] {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  padding-top: var(--header-height);
  padding-bottom: 46px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

a {
  color: inherit;
}

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

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

button {
  color: inherit;
}

.tw-skip {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--blue);
  text-decoration: none;
}

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

.tw-shell {
  width: var(--shell);
  margin: 0 auto;
}

.tw-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 242, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.tw-header__inner {
  width: var(--shell);
  height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 30px;
}

.tw-brand img {
  width: 158px;
  height: auto;
}

.tw-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
}

.tw-nav a,
.tw-header__back {
  position: relative;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.075em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.tw-nav a::after,
.tw-header__back::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--blue);
  transition: transform 180ms ease;
}

.tw-nav a:hover::after,
.tw-nav a:focus-visible::after,
.tw-header__back:hover::after,
.tw-header__back:focus-visible::after {
  transform: scaleX(1);
}

.tw-header__back {
  color: var(--blue);
}

.tw-nav__route {
  position: relative;
}

.tw-nav__route > div {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  min-width: 180px;
  display: grid;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(250, 248, 242, 0.99);
  box-shadow: 0 20px 45px rgba(7, 22, 47, 0.15);
  transform: translate(-50%, -8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.tw-nav__route:hover > div,
.tw-nav__route:focus-within > div {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.tw-nav__route > div a {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  font-size: 0.68rem;
}

.tw-chapter-nav {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 38px);
  overflow-x: auto;
  border-top: 1px solid var(--line);
  background: rgba(240, 236, 226, 0.96);
  scrollbar-width: none;
}

.tw-chapter-nav a {
  flex: 0 0 auto;
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.tw-menu,
.tw-mobile-nav {
  display: none;
}

.tw-section {
  padding: clamp(86px, 9vw, 150px) 0;
}

.tw-kicker {
  margin-bottom: 24px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tw-record-id {
  display: inline-block;
  margin-right: 10px;
  color: var(--bronze);
}

.tw-section-head {
  max-width: 1080px;
  margin-bottom: clamp(48px, 7vw, 96px);
}

.tw-section-head h2,
.tw-ceremony-head h2,
.tw-service__head h2,
.tw-contribute__head h2 {
  margin-bottom: 28px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.6vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.tw-section-head h2 em,
.tw-ceremony-head h2 em,
.tw-service__head h2 em,
.tw-contribute__head h2 em {
  color: var(--bronze);
  font-weight: 400;
}

.tw-section-head > p:last-child {
  max-width: 830px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.4rem);
  line-height: 1.62;
}

.tw-section-head--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: clamp(48px, 8vw, 130px);
}

.tw-section-head--split > div > p:last-child,
.tw-section-head--split > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  line-height: 1.6;
}

.tw-section-head--split h2 {
  font-size: clamp(3.4rem, 5.6vw, 6.5rem);
}

.tw-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--blue);
  color: var(--white);
  background: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.tw-button:hover,
.tw-button:focus-visible {
  color: var(--blue);
  background: transparent;
  transform: translateY(-2px);
}

.tw-button--dark {
  border-color: var(--navy);
  background: var(--navy);
}

.tw-button--dark:hover,
.tw-button--dark:focus-visible {
  color: var(--navy);
}

.tw-button--light {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}

.tw-button--light:hover,
.tw-button--light:focus-visible {
  color: var(--white);
}

.tw-text-link {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.tw-text-link:hover,
.tw-text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.tw-actions,
.tw-chapter-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

/* Hero */
.tw-hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding: clamp(54px, 6vw, 94px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(circle at 91% 14%, rgba(36, 104, 238, 0.12), transparent 28%),
    linear-gradient(135deg, var(--paper) 0 63%, var(--cream) 63% 100%);
}

.tw-hero::before {
  content: "THE WORK";
  position: absolute;
  right: -0.04em;
  bottom: -0.22em;
  color: rgba(7, 22, 47, 0.035);
  font-family: var(--serif);
  font-size: clamp(9rem, 19vw, 22rem);
  line-height: 1;
  letter-spacing: -0.08em;
  white-space: nowrap;
  pointer-events: none;
}

.tw-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(500px, 0.98fr);
  align-items: center;
  gap: clamp(46px, 7vw, 110px);
}

.tw-hero h1 {
  max-width: 820px;
  margin-bottom: 34px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(4rem, 7vw, 8.2rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.89;
}

.tw-hero h1 em {
  color: var(--bronze);
  font-weight: 400;
}

.tw-hero__intro {
  max-width: 720px;
  padding-left: 22px;
  border-left: 3px solid var(--blue);
  color: #374151;
  font-size: clamp(1.03rem, 1.3vw, 1.22rem);
  line-height: 1.56;
}

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

.tw-handover-line {
  margin: 26px 0 34px;
  font-size: clamp(1.1rem, 1.5vw, 1.42rem);
}

.tw-handover-line strong {
  display: inline-block;
  margin-left: 6px;
  color: var(--blue);
}

.tw-lockup {
  margin: 42px 0 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.tw-lockup span {
  color: var(--bronze);
  font-style: italic;
}

.tw-hero__evidence {
  position: relative;
  min-height: 660px;
}

.tw-hero__evidence figure {
  position: absolute;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 28px 80px rgba(7, 22, 47, 0.16);
}

.tw-hero__evidence figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tw-hero__evidence figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 38px 16px 13px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(7, 22, 47, 0.9));
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tw-hero__room {
  inset: 0 0 165px 70px;
}

.tw-hero__stage {
  right: 10px;
  bottom: 15px;
  width: 57%;
  height: 210px;
  border: 8px solid var(--cream);
}

.tw-hero__face {
  z-index: 2;
  width: 142px;
  height: 174px;
  border: 7px solid var(--paper);
}

.tw-hero__face--one {
  top: 70px;
  left: 0;
}

.tw-hero__face--two {
  bottom: 74px;
  left: 22px;
}

.tw-hero__marks {
  position: absolute;
  z-index: 3;
  top: 40px;
  right: -25px;
  width: 148px;
  display: grid;
  gap: 8px;
}

.tw-hero__marks img {
  width: 100%;
  min-height: 72px;
  padding: 12px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid rgba(7, 22, 47, 0.08);
  box-shadow: 0 12px 30px rgba(7, 22, 47, 0.11);
}

.tw-hero__proof-note {
  position: absolute;
  right: 0;
  bottom: -22px;
  color: var(--navy);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tw-scroll-cue {
  position: absolute;
  right: 32px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.tw-scroll-cue i {
  width: 1px;
  height: 50px;
  background: var(--blue);
}

/* Quotes */
.tw-quote {
  padding: clamp(70px, 8vw, 120px) 0;
}

.tw-quote__grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
}

.tw-quote__grid > img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  filter: grayscale(1);
}

.tw-quote blockquote {
  margin: 0;
}

.tw-quote blockquote p {
  max-width: 1080px;
  margin-bottom: 32px;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.1vw, 5.4rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.tw-quote footer {
  font-size: 0.92rem;
  font-weight: 750;
}

.tw-quote footer span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 450;
}

.tw-quote--light {
  background: var(--cream);
}

.tw-quote--navy {
  color: var(--white);
  background: var(--navy);
}

.tw-quote--navy footer span,
.tw-quote--blue footer span {
  color: rgba(255, 255, 255, 0.68);
}

.tw-quote--blue {
  color: var(--white);
  background: var(--blue);
}

.tw-quote__grid--no-image {
  grid-template-columns: 1fr;
}

/* Programmes */
.tw-programmes {
  background: var(--paper);
}

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

.tw-programme {
  grid-column: span 4;
  border: 1px solid var(--line);
  background: var(--white);
}

.tw-programme--hero {
  grid-column: span 6;
}

.tw-programme--knowledge {
  color: var(--white);
  background: var(--blue);
}

.tw-programme summary {
  min-height: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  list-style: none;
  cursor: pointer;
}

.tw-programme summary::-webkit-details-marker {
  display: none;
}

.tw-programme__mark {
  width: 145px;
  height: 68px;
  display: flex;
  align-items: center;
  margin-bottom: auto;
}

.tw-programme__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.tw-programme--knowledge .tw-programme__mark img {
  padding: 8px;
  background: var(--white);
  mix-blend-mode: normal;
}

.tw-programme__number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.tw-programme__question {
  display: block;
  max-width: 530px;
  margin: 36px 0 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.tw-programme--knowledge .tw-programme__question {
  color: rgba(255, 255, 255, 0.74);
}

.tw-programme summary > strong {
  max-width: 580px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
}

.tw-programme--knowledge summary > strong {
  color: var(--white);
}

.tw-programme__open {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tw-programme--knowledge .tw-programme__open {
  border-top-color: var(--line-light);
  color: var(--white);
}

.tw-programme__open b {
  font-size: 1.7rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.tw-programme[open] .tw-programme__open b {
  transform: rotate(45deg);
}

.tw-programme__body {
  padding: 0 28px 30px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.tw-programme--knowledge .tw-programme__body {
  color: rgba(255, 255, 255, 0.82);
}

.tw-programme__routes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.tw-programme__routes a,
.tw-programme__routes button,
.tw-route-ub {
  appearance: none;
  cursor: pointer;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  color: var(--navy);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.tw-route-ub:hover,
.tw-route-ub:focus-visible,
.tw-timeline__ub:hover,
.tw-timeline__ub:focus-visible {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.tw-ub-modal {
  width: min(660px, calc(100vw - 36px));
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 30px 90px rgba(7, 22, 47, 0.42);
}

.tw-ub-modal::backdrop {
  background: rgba(7, 22, 47, 0.72);
  backdrop-filter: blur(8px);
}

.tw-ub-modal h2 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 5vw, 4.2rem);
  font-weight: 500;
  line-height: 0.96;
}

.tw-ub-modal > p:not(.tw-kicker) {
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.65;
}

.tw-ub-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 2rem;
  cursor: pointer;
}

.tw-ub-modal__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 30px;
}

.tw-ub-modal__actions .tw-button {
  color: var(--navy);
  background: var(--white);
}

.tw-ub-modal__actions .tw-text-link {
  color: var(--white);
}

.tw-page-strip {
  position: fixed;
  z-index: 110;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px max(32px, calc((100vw - 1440px) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  background: rgba(7, 22, 47, 0.78);
  backdrop-filter: blur(16px);
}

.tw-page-strip p {
  display: flex;
  gap: 16px;
  margin: 0;
  font-size: 0.75rem;
}

.tw-page-strip p span {
  color: rgba(255, 255, 255, 0.62);
}

.tw-page-strip a {
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.tw-mobile-cta {
  display: none;
}

.tw-route-ub {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.35);
  cursor: default;
}

.tw-programme__routes button {
  color: var(--white);
  background: var(--navy);
}

.tw-programme--knowledge .tw-programme__routes a,
.tw-programme--knowledge .tw-programme__routes button {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: transparent;
}

/* Build */
.tw-build {
  background: var(--cream);
}

.tw-build__transfer {
  color: var(--navy) !important;
}

.tw-build__transfer strong {
  color: var(--blue);
}

.tw-timeline {
  display: grid;
  grid-auto-columns: minmax(330px, 0.72fr);
  grid-auto-flow: column;
  gap: 18px;
  padding-bottom: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--blue) transparent;
}

.tw-timeline article {
  min-height: 570px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--paper);
  content-visibility: auto;
  contain-intrinsic-size: 330px 570px;
  scroll-snap-align: start;
}

.tw-timeline article img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 24px;
  object-fit: cover;
  filter: grayscale(0.75);
}

.tw-timeline__year {
  position: absolute;
  z-index: 2;
  margin: 12px;
  padding: 7px 9px;
  color: var(--white);
  background: var(--navy);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.tw-timeline h3 {
  margin: 0 8px 12px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 2.15rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.tw-timeline p {
  margin: 0 8px 24px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.tw-timeline button {
  margin: auto 8px 4px;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.tw-timeline__ub {
  margin: auto 8px 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tw-build__logic {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: clamp(70px, 8vw, 120px) 0;
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 3.5rem);
}

.tw-build__logic i {
  color: var(--bronze);
  font-family: var(--sans);
  font-style: normal;
}

.tw-build__logic strong {
  color: var(--blue);
  font-weight: 400;
}

.tw-organisation-proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.tw-organisation-proof h3 {
  margin-bottom: 24px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.tw-organisation-proof h3 em {
  color: var(--bronze);
  font-weight: 400;
}

.tw-organisation-proof > div > p:last-child {
  color: var(--muted);
  line-height: 1.6;
}

.tw-organisation-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.tw-organisation-strip figure {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.tw-organisation-strip img {
  width: 100%;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.74;
}

.tw-organisation-strip figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Hall of Fame */
.tw-standard {
  background: var(--paper);
}

.tw-ceremony-head {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: 60px;
}

.tw-ceremony-head__mark {
  width: 190px;
  height: 190px;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: var(--white);
  background: var(--navy);
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 0.9;
}

.tw-standard__copy {
  max-width: 930px;
  margin: 0 auto 70px;
  color: var(--muted);
  font-size: clamp(1.1rem, 1.5vw, 1.36rem);
  line-height: 1.62;
}

.tw-standard__questions {
  display: grid;
  margin: 36px 0;
  border-top: 1px solid var(--line);
}

.tw-standard__questions strong {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2rem, 3.6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.tw-standard__close {
  color: var(--navy);
}

.tw-standard__close strong {
  color: var(--bronze);
}

.tw-hof-wall {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  margin-bottom: 42px;
}

.tw-hof-person {
  grid-column: span 2;
  position: relative;
  display: block;
  min-height: 270px;
  overflow: hidden;
  color: inherit;
  background: var(--cream-2);
  text-decoration: none;
}

.tw-hof-person:nth-child(1),
.tw-hof-person:nth-child(7),
.tw-hof-person:nth-child(14) {
  grid-column: span 4;
  grid-row: span 2;
}

.tw-hof-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: filter 200ms ease, transform 400ms ease;
}

.tw-hof-person:hover img {
  filter: grayscale(0.2);
  transform: scale(1.03);
}

.tw-hof-person__fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 4.5rem;
}

.tw-hof-person figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 54px 14px 14px;
  color: var(--white);
  background: linear-gradient(transparent, rgba(7, 22, 47, 0.95));
}

.tw-hof-person strong,
.tw-hof-person span {
  display: block;
}

.tw-hof-person strong {
  font-size: 0.9rem;
}

.tw-hof-person span {
  margin-top: 4px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

/* Knights */
.tw-service {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.tw-service::after {
  content: "SERVICE";
  position: absolute;
  right: -0.04em;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: 22vw;
  letter-spacing: -0.08em;
  pointer-events: none;
}

.tw-service .tw-shell {
  position: relative;
  z-index: 1;
}

.tw-service .tw-kicker {
  color: var(--gold);
}

.tw-service__head {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: 60px;
}

.tw-service__mark {
  width: 220px;
  height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
}

.tw-service__mark img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.tw-service__head h2 {
  color: var(--white);
}

.tw-service__head h2 em {
  color: var(--gold);
}

.tw-service__copy {
  max-width: 930px;
  margin: 0 auto 54px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.65;
}

.tw-service__copy strong {
  color: var(--white);
}

.tw-service__declaration {
  margin-top: 34px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.tw-service__declaration strong {
  display: block;
  color: var(--gold);
  font-weight: 400;
}

.tw-service__proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 50px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.tw-service__proof span {
  padding: 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.tw-knights {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 70px;
}

.tw-knight {
  min-height: 230px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
}

.tw-knight img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.72;
}

.tw-knight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(7, 22, 47, 0.96) 92%);
}

.tw-knight > *:not(img) {
  position: relative;
  z-index: 1;
}

.tw-knight__initial {
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: 5rem;
}

.tw-knight strong {
  font-size: 0.88rem;
}

.tw-knight span {
  margin-top: 5px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.tw-service__close {
  max-width: 880px;
  padding-top: 52px;
  border-top: 1px solid var(--line-light);
}

.tw-service__close p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.12rem;
}

.tw-service__close h3 {
  margin: 14px 0 34px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.6vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

/* Leadership */
.tw-baton {
  background: var(--cream);
}

.tw-baton__rail {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  margin-bottom: 42px;
  background: var(--line);
  border: 1px solid var(--line);
}

.tw-leader {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  color: inherit;
  background: var(--paper);
  text-decoration: none;
}

.tw-leader__portrait {
  height: 188px;
  overflow: hidden;
  background: var(--cream-2);
}

.tw-leader__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.tw-leader__portrait span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 3.5rem;
}

.tw-leader__copy {
  padding: 16px;
}

.tw-leader__copy small,
.tw-leader__copy strong,
.tw-leader__copy span {
  display: block;
}

.tw-leader__copy small {
  margin-bottom: 8px;
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
}

.tw-leader__copy strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.tw-leader__copy span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.35;
}

/* Handover */
.tw-handover {
  background: var(--paper);
}

.tw-gap-map {
  display: grid;
  grid-template-columns: minmax(270px, 0.38fr) minmax(0, 0.62fr);
  min-height: 540px;
  border: 1px solid var(--line);
  background: var(--white);
}

.tw-gap-map__tabs {
  border-right: 1px solid var(--line);
}

.tw-gap-map__tabs button {
  width: 100%;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  background: transparent;
  font-family: var(--serif);
  font-size: 1.75rem;
  text-align: left;
  cursor: pointer;
}

.tw-gap-map__tabs button:last-child {
  border-bottom: 0;
}

.tw-gap-map__tabs button span {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.73rem;
}

.tw-gap-map__tabs button[aria-selected="true"] {
  color: var(--white);
  background: var(--blue);
}

.tw-gap-map__tabs button[aria-selected="true"] span {
  color: rgba(255, 255, 255, 0.74);
}

.tw-gap-map__panel {
  padding: clamp(34px, 6vw, 82px);
}

.tw-gap-map__panel > p:first-child {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tw-gap-map__panel h3 {
  max-width: 740px;
  margin: 16px 0 22px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 6rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.tw-gap-map__panel > p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.tw-gap-map__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 34px;
}

.tw-gap-map__proof div {
  min-height: 116px;
  padding: 16px;
  background: var(--cream);
}

.tw-gap-map__proof small,
.tw-gap-map__proof strong {
  display: block;
}

.tw-gap-map__proof small {
  margin-bottom: 9px;
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tw-gap-map__proof strong {
  color: var(--navy);
  font-size: 0.86rem;
  line-height: 1.35;
}

.tw-gap-map__panel button {
  margin-top: 28px;
}

.tw-one-rule {
  max-width: 1080px;
  margin: clamp(80px, 10vw, 150px) auto;
  text-align: center;
}

.tw-one-rule h3 {
  margin-bottom: 30px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5.8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.tw-one-rule h3 em {
  color: var(--bronze);
  font-weight: 400;
}

.tw-one-rule > p:not(.tw-kicker) {
  color: var(--muted);
  font-size: 1.08rem;
}

.tw-one-rule > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.tw-one-rule > div span {
  padding: 12px 16px;
  border: 1px solid var(--line);
  color: var(--blue);
  background: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
}

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

.tw-pillars article {
  min-height: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--line);
  border-right: 0;
  background: var(--white);
}

.tw-pillars article:last-child {
  border-right: 1px solid var(--line);
}

.tw-pillars article > span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.tw-pillars h3 {
  margin: auto 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 3.7vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.tw-pillars article > p:not(.tw-kicker) {
  color: var(--muted);
}

.tw-pillars button {
  align-self: flex-start;
  margin-top: 22px;
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

/* DMA Record */
.tw-record {
  color: var(--white);
  background: var(--navy);
}

.tw-record .tw-kicker {
  color: var(--gold);
}

.tw-record .tw-section-head h2,
.tw-record .tw-section-head > div > p:last-child,
.tw-record .tw-section-head--split > p {
  color: var(--white);
}

.tw-record .tw-section-head h2 em {
  color: var(--gold);
}

.tw-record .tw-section-head > div:last-child p {
  color: rgba(255, 255, 255, 0.72);
}

.tw-record__search {
  margin-bottom: 28px;
}

.tw-record__search > label {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.tw-record__search > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px auto;
}

.tw-record__search input,
.tw-record__search select,
.tw-record__search button {
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line-light);
  border-radius: 0;
}

.tw-record__search input,
.tw-record__search select {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.tw-record__search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.tw-record__search select {
  appearance: none;
}

.tw-record__search button {
  color: var(--navy);
  background: var(--gold);
  font-weight: 750;
  cursor: pointer;
}

.tw-record__count {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
}

.tw-record__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.tw-record-card {
  min-height: 220px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 15px;
  padding: 20px;
  background: var(--navy);
}

.tw-record-card__portrait {
  width: 74px;
  height: 94px;
  background: rgba(255, 255, 255, 0.07);
}

.tw-record-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.tw-record-card__portrait span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}

.tw-record-card small,
.tw-record-card strong,
.tw-record-card span {
  display: block;
}

.tw-record-card small {
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tw-record-card strong {
  font-size: 0.9rem;
}

.tw-record-card__copy > span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  line-height: 1.35;
}

.tw-record-card p {
  grid-column: 1 / -1;
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--line-light);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.72rem;
  line-height: 1.4;
}

.tw-record__empty {
  grid-column: 1 / -1;
  padding: 50px 24px;
  color: rgba(255, 255, 255, 0.7);
  background: var(--navy);
  text-align: center;
}

.tw-record__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.tw-record__sources a {
  padding: 12px 15px;
  border: 1px solid var(--line-light);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: none;
}

/* Contribution */
.tw-contribute {
  background: var(--cream);
}

.tw-contribute__head {
  max-width: 1180px;
  margin-bottom: 64px;
}

.tw-contribute__head > p:last-child {
  color: var(--muted);
  font-size: 1.22rem;
}

.tw-contribute__head > p:last-child strong {
  color: var(--blue);
}

.tw-contribute__routes {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 56px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.tw-contribute__routes button {
  min-height: 198px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  background: var(--paper);
  text-align: left;
  cursor: pointer;
}

.tw-contribute__routes button strong {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.65vw, 1.72rem);
  font-weight: 500;
  line-height: 1.02;
}

.tw-contribute__routes button small {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.76rem;
  line-height: 1.45;
}

.tw-contribute__routes button span {
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 0.64rem;
}

.tw-contribute__routes button:hover,
.tw-contribute__routes button:focus-visible,
.tw-contribute__routes button.is-selected {
  color: var(--white);
  background: var(--blue);
}

.tw-contribute__routes button:hover span,
.tw-contribute__routes button:focus-visible span,
.tw-contribute__routes button.is-selected span {
  color: var(--white);
}

.tw-contribute__routes button:hover small,
.tw-contribute__routes button:focus-visible small,
.tw-contribute__routes button.is-selected small {
  color: rgba(255, 255, 255, 0.78);
}

.tw-contribute__form-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(40px, 7vw, 100px);
  padding: clamp(32px, 5vw, 70px);
  background: var(--white);
  scroll-margin-top: calc(var(--header-height) + 74px);
}

.tw-contribute__form-wrap h3 {
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.3vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.tw-contribute__form-wrap > div > p:not(.tw-kicker) {
  color: var(--muted);
  line-height: 1.55;
}

.tw-contribute__stamp {
  margin-top: 34px !important;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--navy) !important;
  font-family: var(--serif);
  font-size: 1.55rem;
}

.tw-contribute__stamp strong {
  color: var(--bronze);
  font-weight: 400;
}

.tw-contribute__form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.tw-contribute__form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tw-contribute__form input,
.tw-contribute__form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--navy);
  background: var(--paper);
}

.tw-contribute__form textarea {
  resize: vertical;
}

.tw-form-wide {
  grid-column: 1 / -1;
}

.tw-consent {
  flex-direction: row !important;
  align-items: flex-start;
  font-weight: 450 !important;
  line-height: 1.4;
}

.tw-consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
}

.tw-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.tw-form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.tw-form-status a {
  color: var(--blue);
}

.tw-closing-line {
  margin: clamp(60px, 8vw, 110px) auto 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.8vw, 5.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
}

.tw-closing-line strong {
  color: var(--bronze);
  font-weight: 400;
}

.tw-see-more {
  grid-column: 1 / -1;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid var(--line);
  color: var(--blue);
  background: rgba(255, 255, 255, 0.72);
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tw-see-more span {
  margin-left: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
}

/* Footer */
.tw-footer {
  padding: 56px 0;
  color: var(--white);
  background: #040d1e;
}

.tw-footer__inner {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 40px;
}

.tw-footer img {
  width: 155px;
}

.tw-footer p {
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.3rem;
}

.tw-footer p span {
  color: var(--gold);
  font-size: 0.98rem;
  font-style: italic;
}

.tw-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.tw-footer nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  text-decoration: none;
}

/* Focus */
:focus-visible {
  outline: 3px solid #ffb44c;
  outline-offset: 3px;
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .tw-hero__evidence figure {
    animation: tw-rise 700ms both;
  }

  .tw-hero__face--one { animation-delay: 120ms; }
  .tw-hero__face--two { animation-delay: 220ms; }
  .tw-hero__stage { animation-delay: 320ms; }

  @keyframes tw-rise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 1180px) {
  :root {
    --shell: min(1440px, calc(100vw - 40px));
  }

  .tw-nav {
    display: none;
  }

  .tw-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  .tw-menu {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
  }

  .tw-menu span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .tw-menu i,
  .tw-menu i::before {
    width: 19px;
    height: 2px;
    display: block;
    background: var(--navy);
    transition: transform 180ms ease;
  }

  .tw-menu i::before {
    content: "";
    transform: translateY(6px);
  }

  .tw-menu[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  .tw-menu[aria-expanded="true"] i::before {
    transform: rotate(90deg);
  }

  .tw-mobile-nav {
    position: absolute;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 50px rgba(7, 22, 47, 0.12);
  }

  .tw-chapter-nav {
    justify-content: flex-start;
    padding: 0 18px;
  }

  .tw-mobile-nav[hidden] {
    display: none;
  }

  .tw-mobile-nav a {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
  }

  .tw-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
    gap: 35px;
  }

  .tw-hero__evidence {
    min-height: 560px;
  }

  .tw-hero__room {
    bottom: 145px;
  }

  .tw-hero__stage {
    height: 180px;
  }

  .tw-programme {
    grid-column: span 6;
  }

  .tw-hof-person {
    grid-column: span 3;
  }

  .tw-hof-person:nth-child(1),
  .tw-hof-person:nth-child(7),
  .tw-hof-person:nth-child(14) {
    grid-column: span 6;
  }

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

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

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

@media (max-width: 900px) {
  .tw-section-head--split,
  .tw-hero__grid,
  .tw-organisation-proof,
  .tw-contribute__form-wrap {
    grid-template-columns: 1fr;
  }

  .tw-hero {
    min-height: auto;
  }

  .tw-hero__evidence {
    min-height: 620px;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .tw-scroll-cue {
    display: none;
  }

  .tw-quote__grid {
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 30px;
  }

  .tw-quote__grid > img {
    width: 110px;
    height: 145px;
  }

  .tw-programme summary {
    min-height: 360px;
  }

  .tw-ceremony-head,
  .tw-service__head {
    grid-template-columns: 140px minmax(0, 1fr);
    align-items: start;
  }

  .tw-ceremony-head__mark,
  .tw-service__mark {
    width: 140px;
    height: 140px;
  }

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

  .tw-gap-map {
    grid-template-columns: 1fr;
  }

  .tw-gap-map__tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tw-gap-map__tabs button {
    min-height: 92px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    font-size: 1.35rem;
  }

  .tw-pillars {
    grid-template-columns: 1fr;
  }

  .tw-pillars article {
    min-height: 320px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .tw-pillars article:last-child {
    border-bottom: 1px solid var(--line);
  }

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

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

  .tw-footer__inner {
    grid-template-columns: 1fr 1fr;
  }

  .tw-footer nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
  }

  .tw-page-strip {
    display: none;
  }

  .tw-mobile-cta {
    position: fixed;
    z-index: 110;
    right: 16px;
    bottom: 14px;
    left: 16px;
    min-height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: var(--white);
    background: rgba(23, 88, 213, 0.76);
    box-shadow: 0 16px 38px rgba(7, 22, 47, 0.28);
    backdrop-filter: blur(16px);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
  }

  .tw-ub-modal__actions {
    align-items: stretch;
    flex-direction: column;
  }
  :root {
    --shell: calc(100vw - 32px);
    --header-height: 112px;
  }

  .tw-header__inner {
    height: 68px;
    grid-template-columns: 1fr auto;
    gap: 14px;
  }

  .tw-brand img {
    width: 62px;
    max-height: 52px;
    object-fit: contain;
  }

  .tw-header__back {
    display: none;
  }

  .tw-mobile-nav {
    grid-template-columns: 1fr;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .tw-section {
    padding: 78px 0;
  }

  .tw-kicker {
    margin-bottom: 18px;
    font-size: 0.65rem;
  }

  .tw-section-head,
  .tw-section-head--split {
    margin-bottom: 44px;
    gap: 24px;
  }

  .tw-section-head h2,
  .tw-ceremony-head h2,
  .tw-service__head h2,
  .tw-contribute__head h2 {
    font-size: clamp(3.05rem, 15vw, 4.7rem);
  }

  .tw-hero {
    padding: 58px 0 70px;
    background: var(--paper);
  }

  .tw-hero::before {
    display: none;
  }

  .tw-hero h1 {
    font-size: clamp(3.65rem, 18vw, 5.3rem);
  }

  .tw-hero__intro {
    padding-left: 15px;
  }

  .tw-actions,
  .tw-chapter-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .tw-hero__evidence {
    min-height: 490px;
    margin-top: 15px;
  }

  .tw-hero__room {
    inset: 0 0 130px 28px;
  }

  .tw-hero__face {
    width: 94px;
    height: 122px;
    border-width: 5px;
  }

  .tw-hero__face--one {
    top: 35px;
  }

  .tw-hero__face--two {
    bottom: 44px;
    left: 5px;
  }

  .tw-hero__stage {
    bottom: 8px;
    width: 64%;
    height: 145px;
    border-width: 5px;
  }

  .tw-hero__marks {
    top: 25px;
    right: -6px;
    width: 92px;
  }

  .tw-hero__marks img {
    min-height: 48px;
    padding: 8px;
  }

  .tw-hero__proof-note {
    display: none;
  }

  .tw-quote {
    padding: 64px 0;
  }

  .tw-quote__grid {
    grid-template-columns: 1fr;
  }

  .tw-quote__grid > img {
    width: 84px;
    height: 106px;
  }

  .tw-quote blockquote p {
    font-size: clamp(2.15rem, 10vw, 3.5rem);
  }

  .tw-programme-grid {
    display: block;
  }

  .tw-programme {
    margin-bottom: 10px;
  }

  .tw-programme summary {
    min-height: 330px;
    padding: 22px;
  }

  .tw-programme__body {
    padding: 0 22px 24px;
  }

  .tw-programme__mark {
    width: 120px;
    height: 60px;
  }

  .tw-programme summary > strong {
    font-size: 2.6rem;
  }

  .tw-timeline {
    grid-auto-columns: minmax(285px, 86vw);
  }

  .tw-timeline article {
    min-height: 530px;
  }

  .tw-build__logic {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: start;
    font-size: 2rem;
  }

  .tw-build__logic i {
    transform: rotate(90deg);
  }

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

  .tw-ceremony-head,
  .tw-service__head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tw-ceremony-head__mark,
  .tw-service__mark {
    width: 112px;
    height: 112px;
  }

  .tw-standard__questions strong {
    font-size: 2.4rem;
  }

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

  .tw-hof-person,
  .tw-hof-person:nth-child(1),
  .tw-hof-person:nth-child(7),
  .tw-hof-person:nth-child(14) {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 235px;
  }

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

  .tw-knight {
    min-height: 210px;
  }

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

  .tw-baton__rail {
    display: grid;
    grid-auto-columns: 74%;
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
  }

  .tw-leader {
    scroll-snap-align: start;
  }

  .tw-baton__rail .tw-see-more {
    min-width: 70vw;
    scroll-snap-align: start;
  }

  .tw-gap-map__panel {
    padding: 30px 22px;
  }

  .tw-gap-map__proof {
    grid-template-columns: 1fr;
  }

  .tw-one-rule h3 {
    font-size: 3.7rem;
  }

  .tw-contribute__routes {
    grid-template-columns: 1fr;
  }

  .tw-contribute__routes button {
    min-height: 112px;
  }

  .tw-contribute__form-wrap {
    padding: 26px 20px;
  }

  .tw-contribute__form {
    grid-template-columns: 1fr;
  }

  .tw-contribute__form label,
  .tw-form-wide {
    grid-column: 1;
  }

  .tw-record__search > div {
    grid-template-columns: 1fr;
  }

  .tw-record__grid {
    grid-template-columns: 1fr;
  }

  .tw-footer__inner {
    grid-template-columns: 1fr;
  }

  .tw-footer nav {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
