/* 1. Tokens */
:root {
  --wichf-ink: #0b0f0e;
  --wichf-ink-soft: #101714;
  --wichf-forest: #10271f;
  --wichf-forest-2: #17352b;
  --wichf-deep-teal: #0e2523;
  --wichf-ivory: #f3efe7;
  --wichf-paper: #e8e0d2;
  --wichf-stone: #d5cdc0;
  --wichf-gold: #b38a50;
  --wichf-gold-soft: #c9b58f;
  --wichf-copper: #936b42;
  --wichf-text-dark: #1b211e;
  --wichf-text-light: #f5f0e7;
  --wichf-text-muted: #6b706b;
  --wichf-line-dark: rgba(245, 240, 231, 0.18);
  --wichf-line-light: rgba(27, 33, 30, 0.18);
  --wichf-shadow-soft:
    0 6px 18px rgba(12, 24, 20, 0.1),
    0 1px 2px rgba(12, 24, 20, 0.08);
  --wichf-shadow-medium:
    0 12px 28px rgba(3, 12, 10, 0.2),
    0 3px 8px rgba(3, 12, 10, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  --wichf-shadow-strong:
    0 22px 55px rgba(0, 0, 0, 0.38),
    0 8px 20px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --wichf-shadow-floating-panel:
    0 24px 50px rgba(0, 0, 0, 0.34),
    0 10px 20px rgba(3, 12, 10, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  --wichf-border-dark-card: rgba(179, 138, 80, 0.48);
  --wichf-border-light-card: rgba(42, 51, 46, 0.16);
  --z-section: 0;
  --z-content: 5;
  --z-soft-card: 10;
  --z-medium-card: 20;
  --z-flagship-03: 10;
  --z-flagship-02: 20;
  --z-flagship-01: 30;
  --z-floating-panel: 40;
  --z-card-control: 60;
  --page-gutter-desktop: 36px;
  --page-gutter-compact: 24px;
  --page-shell-max: 1368px;
  --page-shell-editorial: 1320px;
  --serif: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Source Sans 3", Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* 2. Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light dark;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--wichf-ink);
  color: var(--wichf-text-light);
}

body::-webkit-scrollbar {
  display: none;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

/* 3. Typography */
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

h1 em {
  color: var(--wichf-gold-soft);
  font-weight: 400;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--wichf-copper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--wichf-gold-soft);
}

.eyebrow--gold {
  color: var(--wichf-gold-soft);
}

/* 4. Layout */
.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section-dark {
  background: var(--wichf-ink);
  color: var(--wichf-text-light);
}

.section-forest {
  background: var(--wichf-forest);
  color: var(--wichf-text-light);
}

.section-light {
  background: var(--wichf-ivory);
  color: var(--wichf-text-dark);
}

.section-heading h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 3.6vw, 58px);
}

.section-heading > p:not(.eyebrow) {
  color: var(--wichf-text-muted);
}

/* 5. Shared components */
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  padding: 0;
  clip-path: inset(50%);
  background: var(--wichf-ivory);
  color: var(--wichf-ink);
  white-space: nowrap;
}

.skip-link:focus {
  width: auto;
  height: auto;
  overflow: visible;
  padding: 10px 14px;
  clip-path: none;
}

:focus-visible {
  outline: 2px solid var(--wichf-gold-soft);
  outline-offset: 4px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 11px 19px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.045em;
}

.button--gold {
  border-color: var(--wichf-gold);
  background: var(--wichf-gold);
  color: var(--wichf-ink);
}

.button--outline {
  border-color: rgba(245, 240, 231, 0.42);
  background: rgba(11, 15, 14, 0.22);
  color: var(--wichf-text-light);
}

.button--small {
  min-height: 38px;
  padding: 8px 15px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(147, 107, 66, 0.55);
  padding-bottom: 4px;
  color: var(--wichf-text-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.text-link--light {
  color: var(--wichf-gold-soft);
}

.button,
.text-link,
.primary-nav a,
.footer-links a,
.editorial-card,
.project-card__link,
.update-card a,
.network-panel a {
  transition: border-color 200ms var(--ease), color 200ms var(--ease), background-color 200ms var(--ease);
}

/* 6. Homepage sections */
.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(245, 240, 231, 0.16);
}

.site-header__inner {
  display: grid;
  width: min(calc(100% - 64px), 1376px);
  min-height: 82px;
  margin-inline: auto;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__wordmark {
  width: 86px;
  height: auto;
  filter: invert(1);
}

.brand__name {
  padding-left: 14px;
  border-left: 1px solid var(--wichf-line-dark);
  color: rgba(245, 240, 231, 0.7);
  font-size: 9px;
  line-height: 1.35;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.75vw, 26px);
}

.primary-nav a,
.language-link {
  color: rgba(245, 240, 231, 0.78);
  font-size: 11px;
  white-space: nowrap;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero {
  position: relative;
  min-height: 760px;
  height: min(94vh, 920px);
  overflow: hidden;
  background: url("/assets/media/homepage/hero_bg.png") center / cover no-repeat;
  isolation: isolate;
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
  display: none;
  object-fit: cover;
}

.hero.is-film-playing .hero__media {
  display: block;
}

.hero__veil {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 12, 10, 0.96) 0%, rgba(7, 12, 10, 0.76) 34%, rgba(7, 12, 10, 0.18) 69%, rgba(7, 12, 10, 0.42) 100%),
    linear-gradient(0deg, rgba(7, 12, 10, 0.55), transparent 46%);
}

.hero__grid {
  display: grid;
  height: 100%;
  min-height: inherit;
  grid-template-columns: 7fr 5fr;
  align-items: center;
  padding-top: 96px;
}

.hero__copy {
  max-width: 700px;
}

.hero h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(76px, 7.15vw, 108px);
}

.hero__support {
  margin-bottom: 18px;
  color: var(--wichf-gold-soft);
  font-family: var(--serif);
  font-size: 22px;
}

.hero__intro {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(245, 240, 231, 0.7);
  font-size: 15px;
}

.hero__watch {
  display: flex;
  align-self: end;
  justify-content: flex-end;
  padding-bottom: 68px;
}

.watch-control {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: transparent;
  color: var(--wichf-text-light);
  cursor: pointer;
  text-align: left;
}

.watch-control__disc {
  display: grid;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(245, 240, 231, 0.48);
  border-radius: 50%;
  place-items: center;
  font-size: 13px;
}

.watch-control strong,
.watch-control small {
  display: block;
}

.watch-control strong {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
}

.watch-control small {
  color: rgba(245, 240, 231, 0.56);
  font-size: 9px;
}

.hero__caption {
  position: absolute;
  right: 24px;
  bottom: 20px;
  margin: 0;
  color: rgba(245, 240, 231, 0.44);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.institutional-paths {
  min-height: 204px;
}

.institutional-paths__grid {
  display: grid;
  min-height: 204px;
  grid-template-columns: repeat(3, 1fr);
}

.path-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 10px;
  padding: 34px 36px;
  border-left: 1px solid var(--wichf-line-dark);
}

.path-item:last-child {
  border-right: 1px solid var(--wichf-line-dark);
}

.path-item__number {
  align-self: start;
  color: rgba(201, 181, 143, 0.48);
  font-family: var(--serif);
  font-size: 52px;
  line-height: 1;
}

.path-item h2 {
  margin-bottom: 13px;
  color: var(--wichf-gold-soft);
  font-size: 23px;
}

.path-item p {
  max-width: 240px;
  margin-bottom: 0;
  color: rgba(245, 240, 231, 0.62);
  font-size: 12px;
}

.discovery {
  min-height: 520px;
}

.discovery__grid {
  display: grid;
  min-height: 520px;
  grid-template-columns: 2.2fr 6.9fr 2.5fr;
  align-items: center;
  gap: 34px;
  padding-block: 58px;
}

.discovery .section-heading .text-link {
  margin-top: 40px;
}

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

.editorial-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--wichf-line-light);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--wichf-text-dark);
}

.editorial-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.74);
}

.editorial-card__type,
.editorial-card h3,
.editorial-card p {
  margin-inline: 17px;
}

.editorial-card__type {
  display: block;
  margin-top: 16px;
  margin-bottom: 8px;
  color: var(--wichf-copper);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.editorial-card h3 {
  min-height: 50px;
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.04;
}

.editorial-card p {
  min-height: 48px;
  margin-bottom: 20px;
  color: var(--wichf-text-muted);
  font-size: 11px;
}

.card-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 26px;
  height: 26px;
  border: 1px solid var(--wichf-line-light);
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
}

.discovery__routes > p {
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: 15px;
}

.discovery__routes a {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--wichf-line-light);
  color: var(--wichf-text-dark);
  font-size: 12px;
}

.discovery__routes a:last-child {
  border-bottom: 1px solid var(--wichf-line-light);
}

.flagship {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 15%, rgba(147, 107, 66, 0.12), transparent 30%),
    linear-gradient(135deg, #080d0d 0%, #071310 46%, #0a1110 100%);
}

.flagship::after {
  position: absolute;
  right: -120px;
  bottom: -150px;
  width: 680px;
  height: 480px;
  border: 1px solid rgba(179, 138, 80, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(179, 138, 80, 0.025), 0 0 0 160px rgba(179, 138, 80, 0.018);
  content: "";
}

.flagship__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 54px;
  padding-block: 86px 96px;
}

.flagship__intro {
  padding-top: 22px;
}

.flagship__intro h2 {
  margin-bottom: 28px;
  font-size: clamp(56px, 5vw, 78px);
}

.flagship__intro > p:not(.eyebrow) {
  max-width: 290px;
  margin-bottom: 38px;
  color: rgba(245, 240, 231, 0.6);
  font-size: 13px;
}

.flagship__deck {
  position: relative;
  min-height: 710px;
  padding-top: 2px;
}

.project-card {
  position: relative;
  display: grid;
  height: 272px;
  overflow: hidden;
  border: 1px solid rgba(179, 138, 80, 0.58);
  border-radius: 12px;
  background: var(--wichf-deep-teal);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.project-card + .project-card {
  margin-top: -36px;
}

.project-card--two {
  z-index: 2;
  margin-right: -16px;
  margin-left: 18px;
}

.project-card--three {
  z-index: 3;
  margin-right: -32px;
  margin-left: 36px;
}

.project-card > img,
.project-card__placeholder,
.project-card__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-card > img {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.62) contrast(1.08) brightness(0.78);
}

.project-card__placeholder {
  z-index: -3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 24px;
  background:
    linear-gradient(135deg, transparent 0 49%, rgba(201, 181, 143, 0.11) 49% 51%, transparent 51% 100%) 0 0 / 38px 38px,
    radial-gradient(circle at 78% 42%, rgba(179, 138, 80, 0.22), transparent 32%),
    #13251f;
  color: rgba(245, 240, 231, 0.68);
  text-align: right;
}

.project-card__placeholder span,
.project-card__placeholder small {
  position: absolute;
  right: 24px;
}

.project-card__placeholder span {
  bottom: 42px;
  font-family: var(--serif);
  font-size: 18px;
}

.project-card__placeholder small {
  bottom: 23px;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card__shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(9, 28, 23, 1) 0%, rgba(9, 28, 23, 0.99) 42%, rgba(9, 28, 23, 0.62) 58%, rgba(9, 15, 14, 0.1) 100%);
}

.project-card__content {
  display: grid;
  grid-template-columns: 92px minmax(330px, 460px) 1fr;
  align-items: center;
  padding: 28px 24px;
}

.project-card__number {
  align-self: start;
  color: rgba(201, 181, 143, 0.55);
  font-family: var(--serif);
  font-size: 58px;
  line-height: 1;
}

.project-card__text {
  align-self: center;
}

.project-card__meta {
  margin-bottom: 7px;
  color: var(--wichf-gold-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 11px;
  font-size: 31px;
  line-height: 0.98;
}

.project-card__text > p:not(.project-card__meta) {
  max-width: 420px;
  margin-bottom: 14px;
  color: rgba(245, 240, 231, 0.65);
  font-size: 10px;
}

.project-card__link {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(179, 138, 80, 0.7);
  border-radius: 3px;
  color: var(--wichf-text-light);
  font-size: 9px;
}

.project-card__arrow {
  justify-self: end;
  display: grid;
  width: 44px;
  height: 44px;
  border: 1px solid var(--wichf-gold);
  border-radius: 50%;
  place-items: center;
  font-size: 18px;
}

.activity-bridge {
  min-height: 330px;
}

.activity-bridge__grid {
  display: grid;
  min-height: 330px;
  grid-template-columns: 4.25fr 7.75fr;
}

.activity-bridge__image {
  overflow: hidden;
}

.activity-bridge__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.62) sepia(0.1);
}

.activity-bridge__content {
  display: grid;
  padding: 42px 0 36px 54px;
  grid-template-columns: 1fr;
}

.activity-bridge h2 {
  margin-bottom: 9px;
  font-size: 43px;
}

.activity-bridge__period {
  color: var(--wichf-copper);
  font-size: 12px;
  font-weight: 700;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 6px 10px;
  border: 1px solid var(--wichf-line-light);
  border-radius: 999px;
  color: var(--wichf-text-muted);
  font-size: 9px;
}

.activity-bridge__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--wichf-line-light);
}

.activity-bridge__footer p {
  max-width: 510px;
  margin-bottom: 0;
  color: var(--wichf-text-muted);
  font-size: 9px;
}

.network {
  min-height: 700px;
  background: radial-gradient(circle at 50% 50%, #10231f 0%, #08100f 60%, #070c0c 100%);
}

.network__layout {
  position: relative;
  display: grid;
  min-height: 700px;
  grid-template-columns: 3fr 5.4fr 3.2fr;
  align-items: center;
  gap: 26px;
  padding-block: 72px;
}

.network__intro h2 {
  margin-bottom: 26px;
  font-size: clamp(52px, 4.5vw, 66px);
}

.network__intro > p:not(.eyebrow) {
  margin-bottom: 36px;
  color: rgba(245, 240, 231, 0.58);
  font-size: 12px;
}

.network__globe {
  position: relative;
  min-height: 500px;
}

.network__globe::after {
  position: absolute;
  inset: 9% 0 4%;
  border-radius: 50%;
  box-shadow: inset 0 0 90px 35px #07100f, 0 0 80px rgba(40, 69, 85, 0.18);
  content: "";
  pointer-events: none;
}

.network__globe img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  filter: saturate(0.48) brightness(0.68) sepia(0.08);
}

.network-node {
  position: absolute;
  z-index: 2;
  width: 9px;
  height: 9px;
  border: 1px solid #f2d49a;
  border-radius: 50%;
  background: var(--wichf-gold);
  box-shadow: 0 0 0 5px rgba(179, 138, 80, 0.14), 0 0 18px #d7b06d;
}

.network-node--one {
  top: 44%;
  left: 30%;
}

.network-node--two {
  top: 34%;
  left: 52%;
}

.network-node--three {
  top: 56%;
  left: 58%;
}

.network-node--four {
  top: 48%;
  left: 73%;
}

.network__credit {
  position: absolute;
  right: 26px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  color: rgba(245, 240, 231, 0.42);
  font-size: 8px;
}

.network-panel {
  position: relative;
  z-index: 3;
  padding: 25px;
  border: 1px solid rgba(179, 138, 80, 0.38);
  border-radius: 8px;
  background: rgba(15, 39, 31, 0.92);
  box-shadow: 0 26px 44px rgba(0, 0, 0, 0.28);
}

.network-panel a {
  display: grid;
  min-height: 70px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--wichf-line-dark);
  color: rgba(245, 240, 231, 0.82);
  font-family: var(--serif);
  font-size: 14px;
  line-height: 1.2;
}

.network-panel small {
  display: block;
  margin-top: 15px;
  color: rgba(245, 240, 231, 0.42);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.traceability {
  min-height: 470px;
}

.traceability__layout {
  display: grid;
  min-height: 470px;
  grid-template-columns: 3fr 9fr;
  align-items: center;
  gap: 64px;
  padding-block: 64px;
}

.traceability .section-heading > p:not(.eyebrow) {
  max-width: 310px;
  font-size: 12px;
}

.traceability .section-heading .text-link {
  margin-top: 22px;
}

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

.function-card {
  min-height: 270px;
  padding: 28px 24px;
  border-top: 1px solid var(--wichf-line-light);
  border-right: 1px solid var(--wichf-line-light);
  border-bottom: 1px solid var(--wichf-line-light);
  background: rgba(255, 255, 255, 0.18);
}

.function-card:first-child {
  border-left: 1px solid var(--wichf-line-light);
}

.function-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 55px;
  border: 1px solid rgba(147, 107, 66, 0.55);
  border-radius: 50%;
  color: var(--wichf-copper);
  place-items: center;
  font-family: var(--serif);
  font-size: 21px;
}

.function-card h3 {
  margin-bottom: 16px;
  font-size: 23px;
  line-height: 1.05;
}

.function-card p {
  margin-bottom: 0;
  color: var(--wichf-text-muted);
  font-size: 11px;
}

.archive {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  isolation: isolate;
}

.archive__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: #07100e;
}

.archive__inner {
  display: grid;
  min-height: 360px;
  grid-template-columns: 7fr 5fr;
  align-items: center;
  gap: 80px;
}

.archive h2 {
  margin-bottom: 30px;
  font-size: 58px;
}

.archive__categories {
  padding: 0;
  list-style: none;
}

.archive__categories li {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--wichf-line-dark);
  font-family: var(--serif);
  font-size: 19px;
}

.archive__categories li:last-child {
  border-bottom: 1px solid var(--wichf-line-dark);
}

.archive__categories span {
  color: var(--wichf-gold-soft);
  font-family: var(--sans);
  font-size: 9px;
}

.updates {
  min-height: 640px;
  padding-block: 74px 82px;
}

.updates__heading {
  display: grid;
  grid-template-columns: 5fr 5fr 2fr;
  align-items: end;
  gap: 34px;
  margin-bottom: 48px;
}

.updates__heading h2 {
  margin-bottom: 0;
  font-size: 58px;
}

.updates__heading > p {
  margin-bottom: 0;
  color: var(--wichf-text-muted);
  font-size: 12px;
}

.updates__heading .text-link {
  justify-self: end;
}

.updates__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--wichf-line-light);
  border-bottom: 1px solid var(--wichf-line-light);
}

.update-card {
  position: relative;
  min-height: 330px;
  padding: 24px 24px 26px;
  border-right: 1px solid var(--wichf-line-light);
}

.update-card:first-child {
  border-left: 1px solid var(--wichf-line-light);
}

.update-card__index {
  margin-bottom: 44px;
  color: rgba(147, 107, 66, 0.4);
  font-family: var(--serif);
  font-size: 42px;
}

.update-card__meta {
  display: flex;
  min-height: 38px;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--wichf-copper);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.update-card__meta span {
  max-width: 150px;
}

.update-card__meta time {
  white-space: nowrap;
}

.update-card h3 {
  min-height: 70px;
  margin-bottom: 16px;
  font-size: 23px;
  line-height: 1.05;
}

.update-card > p:not(.update-card__meta) {
  margin-bottom: 22px;
  color: var(--wichf-text-muted);
  font-size: 10px;
}

.update-card a {
  position: absolute;
  bottom: 27px;
  left: 24px;
  display: inline-flex;
  gap: 20px;
  color: var(--wichf-copper);
  font-size: 10px;
  font-weight: 700;
}

.final-cta {
  min-height: 390px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px) 0 0 / 86px 86px,
    var(--wichf-forest);
}

.final-cta__inner {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 30px;
  font-size: 62px;
}

.site-footer {
  padding-top: 62px;
  background: #08140f;
  color: var(--wichf-text-light);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 80px;
  padding-bottom: 56px;
}

.site-footer__brand img {
  width: 118px;
  margin-bottom: 20px;
  filter: invert(1);
}

.site-footer__brand p {
  max-width: 300px;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.12;
}

.site-footer__brand small {
  color: rgba(245, 240, 231, 0.4);
  font-size: 9px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-links p {
  margin-bottom: 20px;
  color: var(--wichf-gold-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links a,
.footer-links span {
  display: block;
  margin-bottom: 10px;
  color: rgba(245, 240, 231, 0.66);
  font-size: 11px;
}

.footer-links span small {
  display: inline;
  color: rgba(245, 240, 231, 0.34);
  font-size: 8px;
}

.site-footer__base {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--wichf-line-dark);
  color: rgba(245, 240, 231, 0.42);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* 7. Responsive desktop rules */
@media (hover: hover) {
  .primary-nav a:hover,
  .footer-links a:hover,
  .network-panel a:hover,
  .update-card a:hover {
    color: var(--wichf-gold-soft);
  }

  .button--gold:hover {
    background: #c59a5d;
  }

  .button--outline:hover {
    border-color: var(--wichf-gold-soft);
    color: var(--wichf-gold-soft);
  }

  .editorial-card:hover {
    border-color: rgba(147, 107, 66, 0.72);
  }
}

@media (max-width: 1320px) {
  :root {
    --gutter: 42px;
  }

  .site-header__inner {
    width: calc(100% - 48px);
    grid-template-columns: 255px 1fr auto;
    gap: 20px;
  }

  .primary-nav {
    gap: 15px;
  }

  .brand__name {
    display: none;
  }

  .path-item {
    grid-template-columns: 72px 1fr;
    padding-inline: 26px;
  }

  .discovery__grid {
    grid-template-columns: 2.2fr 7.2fr 2.6fr;
    gap: 24px;
  }

  .editorial-card img {
    height: 155px;
  }

  .flagship__layout {
    gap: 38px;
  }

  .project-card {
    height: 262px;
  }

  .project-card__content {
    grid-template-columns: 76px minmax(310px, 430px) 1fr;
  }

  .network__layout {
    gap: 18px;
  }

  .network-panel {
    padding-inline: 20px;
  }
}

@media (max-width: 1100px) {
  :root {
    --gutter: 30px;
  }

  .primary-nav a:nth-last-child(-n + 2) {
    display: none;
  }

  .hero h1 {
    font-size: 74px;
  }

  .discovery__grid {
    grid-template-columns: 2.5fr 7.5fr;
  }

  .discovery__routes {
    display: none;
  }

  .flagship__layout {
    grid-template-columns: 3.3fr 8.7fr;
  }

  .project-card__content {
    grid-template-columns: 64px minmax(290px, 400px) 1fr;
  }

  .project-card h3 {
    font-size: 27px;
  }

  .network__layout {
    grid-template-columns: 3.2fr 5.3fr 3.5fr;
  }

  .traceability__layout {
    gap: 34px;
  }

  .function-card {
    padding-inline: 17px;
  }

  .updates__heading {
    grid-template-columns: 5fr 5fr;
  }

  .updates__heading .text-link {
    display: none;
  }
}

/* H4 will own final 1024/768/390 adaptations. This baseline only prevents collapse. */
@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .institutional-paths__grid,
  .discovery__grid,
  .flagship__layout,
  .network__layout,
  .traceability__layout,
  .archive__inner,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .institutional-paths__grid,
  .traceability__cards,
  .updates__grid,
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .flagship__deck {
    min-width: 0;
  }
}

/* 8. Reduced-motion baseline */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

/* 9. H1.1 template-locked desktop reconstruction */
.wichf-shell-wide {
  width: min(var(--page-shell-max), calc(100vw - 72px));
  margin-inline: auto;
}

.site-header__inner {
  width: min(var(--page-shell-max), calc(100vw - 72px));
  grid-template-columns: 300px 1fr auto;
}

/* Public Discovery: short horizontal editorial band */
.public-discovery {
  height: 340px;
  min-height: 0;
}

.public-discovery__grid {
  display: grid;
  height: 340px;
  min-height: 0;
  grid-template-columns:
    minmax(210px, 230px)
    minmax(0, 1fr)
    minmax(220px, 250px);
  align-items: stretch;
  gap: 24px;
  padding-block: 42px;
}

.public-discovery__intro {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.public-discovery__intro .eyebrow {
  margin-bottom: 8px;
  font-size: 10px;
}

.public-discovery__intro h2 {
  max-width: 210px;
  margin-bottom: 12px;
  font-size: 33px;
  line-height: 0.96;
}

.public-discovery__intro > p:not(.eyebrow) {
  max-width: 198px;
  margin-bottom: 0;
  font-size: 13.5px;
  line-height: 1.42;
}

.public-discovery .public-discovery__intro .text-link {
  margin-top: auto;
  font-size: 11px;
}

.public-discovery__cards {
  display: grid;
  min-width: 0;
  height: 226px;
  align-self: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.public-discovery .editorial-card {
  height: 226px;
  border-radius: 7px;
}

.public-discovery .editorial-card img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.public-discovery .editorial-card__type,
.public-discovery .editorial-card h3,
.public-discovery .editorial-card p {
  margin-inline: 14px;
}

.public-discovery .editorial-card__type {
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 8px;
}

.public-discovery .editorial-card h3 {
  min-height: 32px;
  margin-bottom: 4px;
  font-size: 18px;
  line-height: 0.96;
}

.public-discovery .editorial-card p {
  min-height: 0;
  max-width: calc(100% - 24px);
  margin-bottom: 7px;
  font-size: 11.75px;
  line-height: 1.24;
}

.public-discovery .card-arrow {
  right: 9px;
  bottom: 9px;
  width: 24px;
  height: 24px;
}

@media (min-width: 1361px) {
  .public-discovery__cards {
    grid-template-columns: repeat(3, 235px);
    justify-content: center;
  }
}

.public-discovery__categories {
  align-self: center;
}

.public-discovery__categories > p {
  margin-bottom: 7px;
  font-size: 13px;
}

.public-discovery__categories a {
  min-height: 36px;
  font-size: 11px;
}

/* Flagship Projects: right-aligned progressive card stack */
.flagship {
  height: 500px;
  min-height: 0;
  background:
    radial-gradient(circle at 77% 8%, rgba(147, 107, 66, 0.12), transparent 27%),
    linear-gradient(135deg, #080d0d 0%, #071310 48%, #08100f 100%);
}

.flagship::after {
  opacity: 0.45;
}

.flagship__inner {
  display: grid;
  height: 500px;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  padding-block: 30px;
}

.flagship__copy {
  min-width: 0;
  padding-top: 6px;
}

.flagship__copy .eyebrow {
  margin-bottom: 12px;
  font-size: 9px;
}

.flagship__copy h2 {
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 0.98;
  white-space: nowrap;
}

.flagship__copy > p:not(.eyebrow) {
  max-width: 195px;
  margin-bottom: 20px;
  font-size: 13px;
  line-height: 1.5;
}

.flagship__stage {
  position: relative;
  height: 440px;
  min-height: 0;
  min-width: 0;
  padding: 0;
}

.flagship-plate {
  position: absolute;
  z-index: 0;
  left: -15px;
  width: 38px;
  border: 1px solid rgba(212, 165, 94, 0.56);
  border-radius: 7px 0 0 7px;
  background:
    linear-gradient(135deg, rgba(201, 181, 143, 0.1), rgba(32, 58, 47, 0.9)),
    #4c3827;
  box-shadow: -5px 14px 26px rgba(0, 0, 0, 0.38), 0 0 18px rgba(179, 126, 62, 0.08);
}

.flagship-plate::after {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 181, 143, 0.2);
  content: "";
}

.flagship-plate--01 {
  top: 36px;
  height: 86px;
}

.flagship-plate--02 {
  top: 166px;
  height: 92px;
}

.flagship__stage .project-card {
  position: absolute;
  display: block;
  height: 154px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(214, 172, 105, 0.42);
  border-radius: 9px;
  background: rgba(8, 40, 33, 0.88);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.42),
    0 3px 9px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 245, 218, 0.13),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.flagship-card--01 {
  z-index: 2;
  top: 0;
  left: 5.25%;
  width: 94.75%;
}

.flagship-card--02 {
  z-index: 3;
  top: 128px;
  left: 2.55%;
  width: 97.45%;
}

.flagship-card--03 {
  z-index: 4;
  top: 256px;
  left: 0;
  width: 100%;
}

.flagship__stage .project-card__media {
  position: absolute;
  z-index: 0;
  top: 8px;
  right: 8px;
  bottom: 8px;
  width: 61.5%;
  overflow: hidden;
  border: 1px solid rgba(226, 195, 140, 0.18);
  border-radius: 7px;
  background: #08110f;
  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.22);
}

.flagship__stage .project-card__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 29, 24, 0.82) 0%, rgba(5, 29, 24, 0.18) 28%, transparent 52%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent 25%, transparent 76%, rgba(0, 0, 0, 0.14));
  box-shadow: inset 0 0 22px rgba(0, 0, 0, 0.32);
  content: "";
  pointer-events: none;
}

.flagship__stage .project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.06) brightness(0.84);
}

.flagship-card--01 .project-card__media img {
  object-position: 50% 56%;
}

.flagship-card--02 .project-card__media img {
  object-position: 48% 46%;
}

.flagship-card--03 .project-card__media img {
  object-position: 55% 52%;
}

.flagship__stage .project-card__shade {
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(10, 32, 27, 1) 0%,
      rgba(10, 32, 27, 0.98) 35%,
      rgba(10, 32, 27, 0.72) 50%,
      rgba(10, 32, 27, 0.12) 70%,
      rgba(10, 32, 27, 0) 82%
    );
}

.flagship__stage .project-card__content {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 14px 60px 12px 88px;
}

.flagship__stage .project-card__number {
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 52px;
  line-height: 0.9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.flagship__stage .project-card__text {
  width: 43%;
  max-width: 430px;
}

.flagship__stage .project-card__meta {
  margin-bottom: 4px;
  font-size: 7px;
  line-height: 1.18;
}

.project-card__prototype-badge {
  display: inline-flex;
  margin-right: 7px;
  padding: 1px 4px;
  border: 1px solid rgba(201, 181, 143, 0.62);
  border-radius: 2px;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.flagship__stage .project-card h3 {
  margin-bottom: 5px;
  font-size: 21px;
  line-height: 0.92;
}

.flagship__stage .project-card__text > p:not(.project-card__meta) {
  max-width: 370px;
  margin-bottom: 6px;
  font-size: 8px;
  line-height: 1.28;
}

.flagship__stage .project-card__link {
  gap: 13px;
  padding: 3px 8px;
  border-color: rgba(213, 170, 101, 0.64);
  font-size: 7.5px;
}

.flagship__stage .project-card__arrow {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 34px;
  height: 34px;
  transform: translateY(-50%);
  border-color: rgba(226, 190, 126, 0.55);
  background: rgba(3, 15, 13, 0.68);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 241, 214, 0.06);
  font-size: 14px;
}

/* Featured Activity: retain the light visual bridge and align to the shell */
.activity-bridge {
  height: 320px;
  min-height: 0;
}

.activity-bridge__grid {
  height: 320px;
  min-height: 0;
  grid-template-columns: 4.25fr 7.75fr;
}

.activity-bridge__content {
  padding-block: 35px 31px;
}

/* Global Heritage Network: wide Earth arc with an overlapping panel */
.global-network {
  height: 320px;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 54% 55%, rgba(18, 46, 40, 0.58), transparent 52%),
    #07100f;
}

.global-network__inner {
  position: relative;
  display: block;
  height: 320px;
  min-height: 0;
  padding: 0;
}

.global-network__copy {
  position: absolute;
  z-index: 3;
  top: 42px;
  left: 0;
  width: 210px;
}

.global-network__copy .eyebrow {
  margin-bottom: 10px;
  font-size: 9px;
}

.global-network__copy h2 {
  width: 292px;
  margin-bottom: 11px;
  font-size: 28px;
  line-height: 1;
  white-space: nowrap;
}

.global-network__copy > p:not(.eyebrow) {
  max-width: 205px;
  margin-bottom: 15px;
  font-size: 12.5px;
  line-height: 1.44;
}

.global-network__copy .text-link {
  font-size: 11px;
}

.global-network__earth {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 190px;
  bottom: 0;
  left: 188px;
  min-height: 0;
  overflow: hidden;
}

.global-network__earth::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  border-radius: 0;
  background:
    linear-gradient(
      90deg,
      #07100f 0%,
      transparent 15%,
      transparent 81%,
      #07100f 100%
    ),
    linear-gradient(
      0deg,
      #07100f 0%,
      transparent 22%,
      rgba(7, 16, 15, 0.08) 100%
    );
  box-shadow: none;
  content: "";
  pointer-events: none;
}

.global-network__earth .global-network__earth-image {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 1220px;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
  filter: brightness(0.76) contrast(1.08) saturate(0.9);
}

.global-network__earth .network-node {
  z-index: 3;
  width: 6px;
  height: 6px;
  border-color: rgba(255, 222, 157, 0.94);
  background: #e9aa52;
  box-shadow: 0 0 0 4px rgba(179, 138, 80, 0.1), 0 0 16px rgba(235, 170, 79, 0.9);
}

.network-node__label {
  position: absolute;
  top: 11px;
  left: 10px;
  color: rgba(245, 240, 231, 0.72);
  color: rgba(247, 237, 216, 0.84);
  font-size: 7.5px;
  line-height: 1;
  white-space: nowrap;
}

.network-node--one {
  top: 61%;
  left: 19%;
}

.network-node--two {
  top: 31%;
  left: 53%;
}

.network-node--three {
  top: 63%;
  left: 57%;
}

.network-node--four {
  top: 57%;
  left: 80%;
}

.network-node--five {
  top: 42%;
  left: 68%;
}

.network__credit {
  z-index: 4;
  right: 82px;
  bottom: 7px;
  font-size: 7px;
}

.global-network__panel {
  position: absolute;
  z-index: 4;
  top: 22px;
  right: 0;
  width: 260px;
  height: 276px;
  min-height: 0;
  padding: 12px 15px;
  border: 1px solid rgba(208, 165, 94, 0.34);
  border-radius: 4px;
  background:
    linear-gradient(145deg, rgba(22, 63, 47, 0.98), rgba(9, 37, 30, 0.99));
  box-shadow: -18px 18px 42px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 244, 217, 0.08);
}

.global-network__panel .eyebrow {
  margin-bottom: 4px;
  font-size: 9px;
}

.global-network__panel a {
  min-height: 34px;
  font-size: 10px;
  line-height: 1.05;
}

.global-network__panel .network-panel__cta {
  min-height: 24px;
  color: var(--wichf-gold-soft);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Align the lower-page modules to the H1.1 shell */
.traceability__layout,
.archive__inner,
.updates__heading,
.updates__grid,
.final-cta__inner,
.site-footer__grid,
.site-footer__base {
  width: min(var(--page-shell-max), calc(100vw - 72px));
}

@media (max-width: 1360px) {
  .wichf-shell-wide,
  .site-header__inner,
  .traceability__layout,
  .archive__inner,
  .updates__heading,
  .updates__grid,
  .final-cta__inner,
  .site-footer__grid,
  .site-footer__base {
    width: calc(100vw - 48px);
  }

  .public-discovery__grid {
    grid-template-columns: 230px minmax(0, 1fr) 250px;
  }

  .flagship__inner {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px;
  }

  .global-network__earth {
    right: 190px;
    left: 188px;
  }
}

@media (max-width: 1100px) {
  .site-header__inner {
    grid-template-columns: 230px 1fr auto;
  }

  .public-discovery__grid {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 20px;
  }

  .public-discovery__categories {
    display: none;
  }

  .public-discovery .editorial-card h3 {
    font-size: 18px;
  }

  .public-discovery .editorial-card p {
    font-size: 11.5px;
  }

  .flagship__inner {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 20px;
  }

  .flagship__copy h2 {
    font-size: 30px;
  }

  .flagship__stage .project-card__content {
    padding-left: 78px;
  }

  .flagship__stage .project-card__number {
    left: 16px;
    font-size: 43px;
  }

  .flagship__stage .project-card__text {
    width: 53%;
  }

  .flagship__stage .project-card h3 {
    font-size: 21px;
  }

  .global-network__copy {
    width: 195px;
  }

  .global-network__copy h2 {
    width: 275px;
    font-size: 28px;
  }

  .global-network__copy > p:not(.eyebrow) {
    max-width: 190px;
    font-size: 12px;
  }

  .global-network__earth {
    right: 180px;
    left: 175px;
  }

  .global-network__panel {
    width: 250px;
  }
}

@media (max-width: 900px) {
  .wichf-shell-wide,
  .site-header__inner,
  .traceability__layout,
  .archive__inner,
  .updates__heading,
  .updates__grid,
  .final-cta__inner,
  .site-footer__grid,
  .site-footer__base {
    width: calc(100vw - 40px);
  }

  .public-discovery,
  .flagship,
  .global-network {
    height: auto;
  }

  .public-discovery__grid,
  .flagship__inner,
  .global-network__inner {
    height: auto;
  }

  .flagship__inner {
    grid-template-columns: 1fr;
  }

  .flagship__stage {
    height: 518px;
  }

  .global-network__inner {
    min-height: 660px;
  }
}

/* H1.3 — unified elevation and explicit stacking refinement */
@media (min-width: 901px) {
  .flagship__stage .project-card {
    height: 166px;
    overflow: visible;
    border: 1px solid rgba(179, 138, 80, 0.52);
    border-radius: 14px;
    background:
      linear-gradient(
        135deg,
        rgba(16, 48, 39, 0.98),
        rgba(8, 27, 23, 0.96)
      );
    backdrop-filter: blur(12px);
  }

  .flagship__stage .project-card::after {
    position: absolute;
    z-index: 5;
    inset: 0;
    border-radius: inherit;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.09),
      inset 0 -1px 0 rgba(0, 0, 0, 0.22);
    content: "";
    pointer-events: none;
  }

  .flagship__stage .flagship-card--01 {
    z-index: var(--z-flagship-01);
    top: 0;
    left: 5.5%;
    width: 94.5%;
    box-shadow:
      0 28px 60px rgba(0, 0, 0, 0.44),
      0 10px 24px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .flagship__stage .flagship-card--02 {
    z-index: var(--z-flagship-02);
    top: 132px;
    left: 2.75%;
    width: 97.25%;
    box-shadow:
      0 22px 48px rgba(0, 0, 0, 0.38),
      0 8px 20px rgba(0, 0, 0, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .flagship__stage .flagship-card--03 {
    z-index: var(--z-flagship-03);
    top: 264px;
    left: 0;
    width: 100%;
    box-shadow:
      0 16px 38px rgba(0, 0, 0, 0.32),
      0 6px 16px rgba(0, 0, 0, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .flagship-card__rear-edge {
    position: absolute;
    z-index: 0;
    top: 24px;
    left: -34px;
    width: 38px;
    height: calc(100% - 48px);
    overflow: hidden;
    border: 1px solid rgba(179, 138, 80, 0.48);
    border-right: 0;
    border-radius: 10px 0 0 10px;
    box-shadow:
      -10px 12px 24px rgba(0, 0, 0, 0.32),
      inset 1px 0 0 rgba(255, 255, 255, 0.08),
      inset 0 0 18px rgba(0, 0, 0, 0.34);
  }

  .flagship-card--02 .flagship-card__rear-edge {
    background:
      linear-gradient(90deg, rgba(93, 70, 40, 0.9), rgba(24, 52, 42, 0.82)),
      url("/assets/media/homepage/flagship_tibetan_practice_v2.png") center / cover;
  }

  .flagship-card--03 .flagship-card__rear-edge {
    background:
      linear-gradient(90deg, rgba(93, 70, 40, 0.9), rgba(24, 52, 42, 0.82)),
      url("/assets/media/homepage/flagship_lacquer_prototype_v2.png") center / cover;
  }

  .flagship-card__rear-edge::after {
    position: absolute;
    inset: 8px 7px;
    border: 1px solid rgba(226, 195, 140, 0.2);
    border-right: 0;
    border-radius: 5px 0 0 5px;
    box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.07);
    content: "";
  }

  .flagship__stage .project-card__media {
    z-index: 1;
    top: 8px;
    right: 8px;
    bottom: 8px;
    width: 61%;
    border-radius: 10px;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.05),
      inset 0 0 30px rgba(0, 0, 0, 0.2),
      0 2px 8px rgba(0, 0, 0, 0.26);
  }

  .flagship__stage .project-card__media::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
      linear-gradient(
        90deg,
        rgba(8, 31, 26, 0.94) 0%,
        rgba(8, 31, 26, 0.7) 24%,
        rgba(8, 31, 26, 0.16) 52%,
        rgba(8, 31, 26, 0) 76%
      );
    content: "";
    pointer-events: none;
  }

  .flagship__stage .project-card__shade {
    z-index: 2;
    overflow: hidden;
    border-radius: inherit;
  }

  .flagship__stage .project-card__content {
    z-index: 3;
  }

  .flagship__stage .flagship-card--02 .project-card__content,
  .flagship__stage .flagship-card--03 .project-card__content {
    padding-top: 36px;
  }

  .flagship__stage .flagship-card--02 .project-card__number,
  .flagship__stage .flagship-card--03 .project-card__number {
    top: 36px;
  }

  .flagship__stage .project-card__arrow {
    z-index: var(--z-card-control);
    right: 18px;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(201, 181, 143, 0.72);
    border-radius: 50%;
    background: rgba(5, 14, 12, 0.72);
    backdrop-filter: blur(10px);
    box-shadow:
      0 10px 22px rgba(0, 0, 0, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .featured-activity {
    height: 320px;
    padding-block: 32px;
    background: var(--wichf-ivory);
  }

  .featured-activity .activity-bridge__grid {
    height: 256px;
    min-height: 0;
  }

  .featured-activity__media {
    position: relative;
    height: 256px;
    margin-block: 0;
    overflow: hidden;
    border: 1px solid var(--wichf-border-light-card);
    border-radius: 12px;
    background: var(--wichf-paper);
    box-shadow: var(--wichf-shadow-soft);
  }

  .featured-activity .activity-bridge__content {
    padding: 18px 0 16px 42px;
  }

  .global-network {
    position: relative;
    z-index: 2;
    overflow: visible;
  }

  .global-network__inner {
    overflow: visible;
  }

  .global-network__earth {
    z-index: 1;
  }

  .global-network__panel {
    z-index: var(--z-floating-panel);
    top: 36px;
    right: 0;
    width: 270px;
    height: 302px;
    min-height: 0;
    border: 1px solid rgba(179, 138, 80, 0.46);
    border-radius: 10px;
    background:
      linear-gradient(
        145deg,
        rgba(18, 58, 46, 0.97),
        rgba(11, 41, 34, 0.98)
      );
    box-shadow:
      0 26px 58px rgba(0, 0, 0, 0.4),
      0 10px 24px rgba(0, 0, 0, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  .global-network__panel .eyebrow {
    font-size: 10px;
  }

  .global-network__panel a {
    min-height: 37px;
    font-size: 10px;
  }

  .global-network__panel .network-panel__cta {
    min-height: 27px;
  }

  .traceability {
    position: relative;
    z-index: 1;
  }

  .traceability__cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .traceability-card {
    position: relative;
    z-index: var(--z-medium-card);
    min-height: 238px;
    padding: 26px 22px 24px;
    border: 1px solid var(--wichf-border-light-card);
    border-radius: 10px;
    background:
      linear-gradient(
        180deg,
        rgba(255, 253, 248, 1),
        rgba(244, 239, 230, 0.98)
      );
    box-shadow: var(--wichf-shadow-medium);
    transform: translateY(-4px);
    transition:
      transform 220ms var(--ease),
      box-shadow 220ms var(--ease),
      border-color 220ms ease;
  }

  .traceability-card:first-child {
    border-left: 1px solid var(--wichf-border-light-card);
  }

  .traceability-card:hover,
  .traceability-card:focus-within {
    border-color: rgba(179, 138, 80, 0.42);
    box-shadow:
      0 18px 34px rgba(37, 43, 38, 0.15),
      0 6px 14px rgba(37, 43, 38, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(-8px);
  }

  .public-discovery .editorial-card,
  .update-card {
    border: 1px solid var(--wichf-border-light-card);
    box-shadow: var(--wichf-shadow-soft);
  }

  .updates__grid {
    gap: 14px;
    border-top: 0;
    border-bottom: 0;
  }

  .update-card,
  .update-card:first-child {
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.76);
  }
}

@media (prefers-reduced-motion: reduce) {
  .traceability-card,
  .traceability-card:hover,
  .traceability-card:focus-within {
    transition: none;
    transform: none;
  }
}

/* 10. H2 desktop high-fidelity visual polish */
:root {
  --page-shell-max: 1320px;
  --wichf-text-muted: #656b66;
  --wichf-line-dark: rgba(245, 240, 231, 0.16);
  --wichf-line-light: rgba(27, 33, 30, 0.14);
  --wichf-shadow-discovery:
    0 10px 24px rgba(37, 43, 38, 0.1),
    0 2px 6px rgba(37, 43, 38, 0.06);
  --wichf-shadow-reading-card:
    0 14px 30px rgba(37, 43, 38, 0.12),
    0 3px 9px rgba(37, 43, 38, 0.07);
}

body {
  background: #08100e;
  font-size: 16px;
  line-height: 1.56;
}

.section-light {
  background:
    radial-gradient(circle at 12% 20%, rgba(179, 138, 80, 0.045), transparent 28%),
    linear-gradient(180deg, #f5f1e9 0%, var(--wichf-ivory) 100%);
}

.eyebrow {
  margin-bottom: 14px;
  color: #8a623b;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.16em;
}

.eyebrow--light,
.eyebrow--gold {
  color: #d1bd98;
}

.button {
  min-height: 44px;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.025em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.button--gold {
  border-color: #b99157;
  background: #b99157;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button--outline {
  border-color: rgba(245, 240, 231, 0.52);
  background: rgba(7, 15, 13, 0.28);
}

.text-link {
  font-size: 12.5px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.header--transparent {
  background: linear-gradient(180deg, rgba(5, 11, 9, 0.58), rgba(5, 11, 9, 0));
}

.header--solid-preview {
  border-color: rgba(201, 181, 143, 0.18);
  background: rgba(10, 28, 23, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.site-header {
  z-index: 80;
  border-bottom-color: rgba(245, 240, 231, 0.2);
}

.site-header__inner {
  width: min(var(--page-shell-max), calc(100vw - 64px));
  min-height: 84px;
  grid-template-columns: 338px minmax(0, 1fr) auto;
  gap: 22px;
}

.brand {
  gap: 13px;
}

.brand__wordmark {
  width: 94px;
}

.brand__name {
  display: block;
  max-width: 190px;
  padding-left: 13px;
  color: rgba(245, 240, 231, 0.76);
  font-size: 10.5px;
  line-height: 1.3;
}

.primary-nav {
  gap: clamp(14px, 1.55vw, 23px);
}

.primary-nav a,
.language-link {
  color: rgba(245, 240, 231, 0.84);
  font-size: 12.5px;
  line-height: 1.2;
  letter-spacing: 0.005em;
}

.site-header__actions {
  gap: 13px;
}

.header-search {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(245, 240, 231, 0.78);
  place-items: center;
}

.header-search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.5;
}

.language-link::after {
  margin-left: 5px;
  color: rgba(201, 181, 143, 0.75);
  content: "⌄";
  font-size: 10px;
}

.hero {
  height: min(91vh, 860px);
  min-height: 760px;
  background-position: center 48%;
}

.hero__veil {
  background:
    radial-gradient(circle at 63% 44%, rgba(18, 12, 8, 0.04), rgba(6, 12, 10, 0.2) 54%, rgba(6, 12, 10, 0.48) 100%),
    linear-gradient(90deg, rgba(5, 12, 9, 0.92) 0%, rgba(5, 12, 9, 0.71) 36%, rgba(5, 12, 9, 0.16) 69%, rgba(5, 12, 9, 0.35) 100%),
    linear-gradient(0deg, rgba(5, 12, 9, 0.5), transparent 48%);
}

.hero__grid {
  grid-template-columns: 7.1fr 4.9fr;
  padding-top: 100px;
}

.hero__copy {
  max-width: 660px;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(70px, 5.7vw, 82px);
  line-height: 0.99;
  letter-spacing: -0.032em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.3);
}

.hero h1 em {
  color: #d2bb91;
}

.hero__support {
  margin-bottom: 16px;
  color: #cfb98f;
  font-size: 22px;
  line-height: 1.15;
}

.hero__intro {
  max-width: 505px;
  margin-bottom: 30px;
  color: rgba(245, 240, 231, 0.78);
  font-size: 15.5px;
  line-height: 1.55;
}

.hero__watch {
  padding-bottom: 66px;
}

.watch-control {
  gap: 15px;
  padding: 7px 0;
}

.watch-control__disc {
  width: 60px;
  height: 60px;
  border-color: rgba(245, 240, 231, 0.56);
  background: rgba(7, 15, 13, 0.2);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.watch-control strong {
  font-size: 17px;
  line-height: 1.2;
}

.watch-control small {
  margin-top: 3px;
  color: rgba(245, 240, 231, 0.64);
  font-size: 11px;
  line-height: 1.35;
}

.hero__caption {
  color: rgba(245, 240, 231, 0.52);
  font-size: 10px;
}

.institutional-paths,
.institutional-paths__grid {
  min-height: 194px;
}

.institutional-paths {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(135deg, #0d2a21, #10271f 56%, #0b221b);
}

.path-item {
  grid-template-columns: 82px 1fr;
  gap: 13px;
  padding: 31px 34px;
  border-left-color: rgba(245, 240, 231, 0.14);
}

.path-item:last-child {
  border-right-color: rgba(245, 240, 231, 0.14);
}

.path-item__number {
  color: rgba(201, 181, 143, 0.48);
  font-size: 48px;
}

.path-item h2 {
  margin-bottom: 11px;
  color: #d0ba91;
  font-size: 21px;
  line-height: 1.04;
  letter-spacing: -0.022em;
}

.path-item p {
  max-width: 270px;
  color: rgba(245, 240, 231, 0.73);
  font-size: 14px;
  line-height: 1.48;
}

.public-discovery {
  height: 380px;
}

.public-discovery__grid {
  height: 380px;
  grid-template-columns: 230px minmax(0, 1fr) 240px;
  gap: 24px;
  padding-block: 44px;
}

.public-discovery__intro .eyebrow {
  margin-bottom: 9px;
  font-size: 10.5px;
}

.public-discovery__intro h2 {
  max-width: 225px;
  margin-bottom: 13px;
  font-size: 36px;
  line-height: 1;
}

.public-discovery__intro > p:not(.eyebrow) {
  max-width: 214px;
  color: #5e655f;
  font-size: 14.25px;
  line-height: 1.5;
}

.public-discovery .public-discovery__intro .text-link {
  font-size: 11.5px;
}

.public-discovery__cards {
  height: 270px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.public-discovery .editorial-card {
  height: 270px;
  overflow: hidden;
  border-color: rgba(42, 51, 46, 0.14);
  border-radius: 9px;
  background: rgba(255, 253, 248, 0.83);
  box-shadow: var(--wichf-shadow-discovery);
}

.public-discovery .editorial-card::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  content: "";
  pointer-events: none;
}

.public-discovery .editorial-card img {
  height: 116px;
  filter: saturate(0.74) contrast(1.04) brightness(0.9) sepia(0.04);
}

.public-discovery .editorial-card:nth-child(2) img {
  filter: saturate(0.72) contrast(1.03) brightness(0.92) sepia(0.06);
}

.public-discovery .editorial-card:nth-child(3) img {
  filter: saturate(0.76) contrast(1.04) brightness(0.88) sepia(0.03);
}

.public-discovery .editorial-card__type,
.public-discovery .editorial-card h3,
.public-discovery .editorial-card p {
  margin-inline: 14px;
}

.public-discovery .editorial-card__type {
  margin-top: 10px;
  margin-bottom: 5px;
  color: #86613f;
  font-size: 10px;
  line-height: 1.25;
}

.public-discovery .editorial-card h3 {
  min-height: 42px;
  margin-bottom: 5px;
  font-size: 20px;
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.public-discovery .editorial-card p {
  max-width: calc(100% - 36px);
  color: #626862;
  font-size: 13.5px;
  line-height: 1.36;
}

.public-discovery .card-arrow {
  right: 10px;
  bottom: 10px;
  width: 27px;
  height: 27px;
  border-color: rgba(147, 107, 66, 0.34);
  background: rgba(255, 253, 248, 0.86);
  color: #795635;
}

.public-discovery__categories > p {
  color: #394039;
  font-size: 14px;
}

.public-discovery__categories a {
  min-height: 40px;
  color: #343a35;
  font-size: 12.5px;
}

.flagship {
  height: 500px;
  background:
    radial-gradient(circle at 72% 8%, rgba(147, 107, 66, 0.14), transparent 29%),
    linear-gradient(135deg, #070d0c 0%, #071511 48%, #09110f 100%);
}

.flagship__inner {
  height: 500px;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 20px;
  padding-block: 30px;
}

.flagship__copy .eyebrow {
  font-size: 10px;
}

.flagship__copy h2 {
  margin-bottom: 16px;
  font-size: 34px;
  letter-spacing: -0.03em;
}

.flagship__copy > p:not(.eyebrow) {
  max-width: 205px;
  color: rgba(245, 240, 231, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.flagship__stage .project-card {
  border-color: rgba(179, 138, 80, 0.46);
  background:
    linear-gradient(135deg, rgba(16, 48, 39, 0.98), rgba(8, 27, 23, 0.97));
}

.flagship__stage .project-card__media {
  border-color: rgba(226, 195, 140, 0.15);
}

.flagship__stage .flagship-card--01 .project-card__media img {
  filter: saturate(0.78) contrast(1.05) brightness(0.88) sepia(0.04);
}

.flagship__stage .flagship-card--02 .project-card__media img {
  filter: saturate(0.76) contrast(1.06) brightness(0.84) sepia(0.06);
}

.flagship__stage .flagship-card--03 .project-card__media img {
  filter: saturate(0.8) contrast(1.06) brightness(0.85) sepia(0.05);
}

.flagship__stage .project-card__shade {
  background:
    linear-gradient(
      90deg,
      rgba(9, 31, 26, 0.99) 0%,
      rgba(9, 31, 26, 0.96) 32%,
      rgba(9, 31, 26, 0.66) 49%,
      rgba(9, 31, 26, 0.17) 69%,
      rgba(9, 31, 26, 0) 83%
    );
}

.flagship__stage .project-card__content {
  padding-right: 66px;
  padding-left: 90px;
}

.flagship__stage .project-card__number {
  left: 19px;
  color: rgba(210, 193, 159, 0.58);
  font-size: 54px;
}

.flagship__stage .project-card__text {
  width: 47%;
  max-width: 455px;
}

.flagship__stage .project-card__meta {
  margin-bottom: 3px;
  color: #d0ba91;
  font-size: 9.5px;
  line-height: 1.2;
}

.project-card__prototype-badge {
  border-color: rgba(201, 181, 143, 0.54);
  font-size: 9px;
}

.flagship__stage .project-card h3 {
  margin-bottom: 4px;
  font-size: 24.5px;
  line-height: 0.96;
  letter-spacing: -0.027em;
}

.flagship__stage .project-card__text > p:not(.project-card__meta) {
  max-width: 420px;
  margin-bottom: 5px;
  color: rgba(245, 240, 231, 0.72);
  font-size: 11.5px;
  line-height: 1.32;
}

.flagship__stage .project-card__link {
  gap: 12px;
  min-height: 22px;
  padding: 3px 8px;
  border-color: rgba(213, 170, 101, 0.58);
  font-size: 10px;
  line-height: 1.2;
}

.flagship-card__rear-edge {
  border-color: rgba(179, 138, 80, 0.43);
  filter: saturate(0.72) brightness(0.82);
}

.flagship__stage .project-card__arrow {
  border-color: rgba(201, 181, 143, 0.68);
  background: rgba(5, 14, 12, 0.76);
}

.featured-activity {
  background:
    radial-gradient(circle at 82% 16%, rgba(179, 138, 80, 0.055), transparent 26%),
    linear-gradient(180deg, #f5f1e9, var(--wichf-ivory));
}

.featured-activity__media {
  border-color: rgba(42, 51, 46, 0.15);
  box-shadow: var(--wichf-shadow-discovery);
}

.featured-activity__media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(238, 223, 194, 0.04), rgba(19, 39, 32, 0.08));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  content: "";
  pointer-events: none;
}

.featured-activity__media img {
  filter: saturate(0.7) contrast(1.03) brightness(0.91) sepia(0.07);
}

.featured-activity .activity-bridge__content {
  padding: 17px 0 15px 42px;
}

.activity-bridge h2 {
  margin-bottom: 8px;
  font-size: 40px;
  line-height: 0.99;
  letter-spacing: -0.03em;
}

.activity-bridge__period {
  font-size: 13px;
  line-height: 1.35;
}

.tag-list {
  gap: 7px;
  margin-bottom: 10px;
}

.tag-list li {
  padding: 5px 9px;
  border-color: rgba(42, 51, 46, 0.16);
  color: #5e645f;
  font-size: 11.5px;
  line-height: 1.2;
}

.activity-bridge__footer {
  padding-top: 12px;
}

.activity-bridge__footer p {
  color: #666b67;
  font-size: 12px;
  line-height: 1.45;
}

.global-network {
  background:
    radial-gradient(ellipse at 54% 54%, rgba(18, 52, 45, 0.62), transparent 55%),
    linear-gradient(135deg, #07100f 0%, #081814 54%, #06100e 100%);
}

.global-network__copy {
  top: 38px;
  width: 225px;
}

.global-network__copy .eyebrow {
  font-size: 9.5px;
}

.global-network__copy h2 {
  width: 320px;
  margin-bottom: 12px;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.global-network__copy > p:not(.eyebrow) {
  max-width: 215px;
  margin-bottom: 14px;
  color: rgba(245, 240, 231, 0.72);
  font-size: 14px;
  line-height: 1.48;
}

.global-network__copy .text-link {
  font-size: 10.75px;
}

.global-network__earth {
  right: 194px;
  left: 200px;
}

.global-network__earth::after {
  background:
    linear-gradient(90deg, #07100f 0%, rgba(7, 16, 15, 0.74) 7%, transparent 19%, transparent 81%, #07100f 100%),
    linear-gradient(0deg, #07100f 0%, rgba(7, 16, 15, 0.28) 17%, transparent 38%, rgba(7, 16, 15, 0.18) 100%);
}

.global-network__earth .global-network__earth-image {
  width: 1240px;
  filter: brightness(0.8) contrast(1.08) saturate(0.85) sepia(0.03);
}

.global-network__earth .network-node {
  border-color: rgba(255, 226, 173, 0.92);
  background: #d49d56;
  box-shadow: 0 0 0 4px rgba(179, 138, 80, 0.1), 0 0 14px rgba(218, 161, 84, 0.74);
}

.network-node__label {
  color: rgba(247, 237, 216, 0.88);
  font-size: 8.5px;
  text-shadow: 0 2px 7px rgba(0, 0, 0, 0.72);
}

.network__credit {
  color: rgba(245, 240, 231, 0.5);
  font-size: 7.5px;
}

.global-network__panel {
  padding: 13px 16px;
  border-color: rgba(179, 138, 80, 0.43);
  background:
    linear-gradient(145deg, rgba(20, 61, 48, 0.98), rgba(9, 36, 30, 0.99));
}

.global-network__panel .eyebrow {
  margin-bottom: 5px;
  font-size: 9.5px;
}

.global-network__panel a {
  min-height: 37px;
  color: rgba(245, 240, 231, 0.86);
  font-size: 11.25px;
  line-height: 1.1;
}

.global-network__panel .network-panel__cta {
  min-height: 26px;
  font-size: 10px;
}

.traceability {
  background:
    radial-gradient(circle at 8% 16%, rgba(179, 138, 80, 0.05), transparent 30%),
    linear-gradient(180deg, #f4f0e8, #f1ece3);
}

.traceability__layout {
  grid-template-columns: 3fr 9fr;
  gap: 52px;
  padding-block: 62px;
}

.traceability .section-heading h2 {
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.01;
}

.traceability .section-heading > p:not(.eyebrow) {
  max-width: 318px;
  color: #5f655f;
  font-size: 14px;
  line-height: 1.55;
}

.traceability__cards {
  align-items: stretch;
}

.traceability-card {
  min-height: 260px;
  padding: 24px 21px 22px;
  border-color: rgba(42, 51, 46, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.98), rgba(244, 238, 229, 0.98));
  box-shadow:
    0 12px 28px rgba(37, 43, 38, 0.13),
    0 3px 8px rgba(37, 43, 38, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.function-card__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 35px;
  border-color: rgba(147, 107, 66, 0.48);
}

.function-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.function-card h3 {
  min-height: 43px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.function-card p {
  color: #606661;
  font-size: 14px;
  line-height: 1.48;
}

.archive {
  background: #07100e;
}

.archive__media {
  background-image:
    radial-gradient(circle at 70% 46%, rgba(179, 138, 80, 0.12), transparent 31%),
    linear-gradient(90deg, rgba(5, 14, 12, 0.58) 0%, rgba(5, 14, 12, 0.18) 52%, rgba(5, 14, 12, 0.38) 100%),
    image-set(
      url("/assets/media/homepage/archive_gateway_h3_v1.webp") type("image/webp"),
      url("/assets/media/homepage/archive_gateway_h3_v1.jpg") type("image/jpeg")
    );
  background-position: center, center, 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.92);
}

.archive__inner {
  gap: 72px;
}

.archive h2 {
  margin-bottom: 26px;
  font-size: 44px;
  line-height: 1.02;
}

.archive__categories li {
  min-height: 66px;
  border-color: rgba(245, 240, 231, 0.17);
  color: rgba(245, 240, 231, 0.9);
  font-size: 18px;
  line-height: 1.2;
}

.archive__categories span {
  color: #cdb78f;
  font-size: 10px;
}

.updates {
  min-height: 630px;
  padding-block: 70px 78px;
  background:
    radial-gradient(circle at 90% 5%, rgba(179, 138, 80, 0.05), transparent 26%),
    linear-gradient(180deg, #f4f0e8, #f1ece3);
}

.updates__heading {
  margin-bottom: 42px;
}

.updates__heading h2 {
  font-size: 44px;
  line-height: 1;
}

.updates__heading > p {
  color: #616762;
  font-size: 14px;
  line-height: 1.5;
}

.updates__grid {
  gap: 14px;
}

.update-card,
.update-card:first-child {
  min-height: 346px;
  padding: 22px 22px 25px;
  border: 1px solid rgba(42, 51, 46, 0.14);
  border-radius: 9px;
  background:
    linear-gradient(180deg, rgba(255, 254, 250, 0.95), rgba(246, 241, 233, 0.96));
  box-shadow: var(--wichf-shadow-reading-card);
}

.update-card__index {
  margin-bottom: 32px;
  color: rgba(147, 107, 66, 0.38);
  font-size: 39px;
}

.update-card__meta {
  min-height: 38px;
  margin-bottom: 12px;
  color: #855f3d;
  font-size: 10px;
  line-height: 1.35;
}

.update-card h3 {
  min-height: 67px;
  margin-bottom: 13px;
  font-size: 21px;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.update-card > p:not(.update-card__meta) {
  margin-bottom: 20px;
  color: #606661;
  font-size: 14px;
  line-height: 1.48;
}

.update-card a {
  bottom: 24px;
  left: 22px;
  color: #795735;
  font-size: 11.5px;
}

.final-cta {
  min-height: 370px;
  background:
    radial-gradient(circle at 50% 100%, rgba(147, 107, 66, 0.12), transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px) 0 0 / 86px 86px,
    linear-gradient(135deg, #10291f, #0d241c 62%, #10271f);
}

.final-cta__inner {
  min-height: 370px;
}

.final-cta h2 {
  max-width: 930px;
  margin-bottom: 28px;
  font-size: 50px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.site-footer {
  padding-top: 64px;
  background:
    linear-gradient(180deg, #07140f, #06110d);
}

.site-footer__grid {
  grid-template-columns: 3.6fr 8.4fr;
  gap: 68px;
  padding-bottom: 58px;
}

.site-footer__brand img {
  width: 126px;
}

.site-footer__brand p {
  max-width: 330px;
  font-size: 24px;
  line-height: 1.16;
}

.site-footer__brand small {
  color: rgba(245, 240, 231, 0.5);
  font-size: 11px;
  line-height: 1.4;
}

.footer-links {
  gap: 34px;
}

.footer-links p {
  margin-bottom: 18px;
  font-size: 10.5px;
}

.footer-links a,
.footer-links span {
  margin-bottom: 11px;
  color: rgba(245, 240, 231, 0.72);
  font-size: 12px;
  line-height: 1.4;
}

.footer-links span small {
  color: rgba(245, 240, 231, 0.44);
  font-size: 8.5px;
}

.site-footer__base {
  min-height: 66px;
  color: rgba(245, 240, 231, 0.52);
  font-size: 11px;
}

@media (min-width: 901px) and (max-width: 1360px) {
  .wichf-shell-wide,
  .site-header__inner,
  .traceability__layout,
  .archive__inner,
  .updates__heading,
  .updates__grid,
  .final-cta__inner,
  .site-footer__grid,
  .site-footer__base {
    width: calc(100vw - 64px);
  }

  .site-header__inner {
    grid-template-columns: 308px minmax(0, 1fr) auto;
    gap: 16px;
  }

  .brand__wordmark {
    width: 86px;
  }

  .brand__name {
    max-width: 175px;
    font-size: 9.5px;
  }

  .primary-nav {
    gap: 14px;
  }

  .primary-nav a,
  .language-link {
    font-size: 11.75px;
  }

  .site-header__actions {
    gap: 10px;
  }

  .header-search {
    width: 30px;
  }

  .public-discovery__grid {
    grid-template-columns: 220px minmax(0, 1fr) 226px;
    gap: 20px;
  }

  .public-discovery__cards {
    gap: 12px;
  }

  .public-discovery .editorial-card h3 {
    font-size: 18.5px;
  }

  .public-discovery .editorial-card p {
    font-size: 13px;
  }

  .flagship__inner {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 18px;
  }

  .flagship__stage .project-card__text {
    width: 49%;
  }

  .flagship__stage .project-card h3 {
    font-size: 23.5px;
  }

  .flagship__stage .project-card__text > p:not(.project-card__meta) {
    font-size: 11px;
  }

  .global-network__copy {
    width: 210px;
  }

  .global-network__copy h2 {
    font-size: 31px;
  }

  .global-network__copy > p:not(.eyebrow) {
    max-width: 204px;
    font-size: 13.5px;
  }

  .global-network__earth {
    right: 188px;
    left: 190px;
  }

  .traceability__layout {
    gap: 42px;
  }

  .traceability-card {
    padding-inline: 18px;
  }

  .function-card h3 {
    font-size: 18.5px;
  }

  .function-card p {
    font-size: 13.5px;
  }

  .updates__heading {
    grid-template-columns: 4.5fr 5.5fr 2fr;
  }

  .update-card,
  .update-card:first-child {
    padding-inline: 19px;
  }

  .update-card h3 {
    font-size: 19px;
  }

  .update-card > p:not(.update-card__meta) {
    font-size: 13.5px;
  }

  .update-card a {
    left: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .header--solid-preview,
  .watch-control__disc {
    backdrop-filter: none;
  }
}
