@font-face {
  font-family: "Roc Grotesk";
  src: url("/assets/roc-grotesk-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("/assets/eb-garamond-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("/assets/eb-garamond-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("/assets/eb-garamond-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("/assets/eb-garamond-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "EB Garamond";
  src: url("/assets/eb-garamond-semibold-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Roc Grotesk";
  src: url("/assets/roc-grotesk-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --font-display: "Roc Grotesk", "Helvetica Neue", sans-serif;
  --font-body: "EB Garamond", Georgia, serif;
  --header-pad: clamp(1.35rem, 4vw, 3.2rem);
  --wide: 61.35rem;
  --narrow: 49rem;
  --title: min(5.32rem, calc(1rem + 5.4vw));
  --h2: min(3.88rem, calc(1rem + 3.6vw));
  --h3: min(3.4rem, calc(1rem + 3vw));
  --body: min(1.4rem, calc(1rem + 0.5vw));
  --body-leading: 1.38;
  --grain-texture: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

h1,
h2,
h3,
.site-header,
.hero,
.futures,
.read-more,
.site-footer,
.skip-link {
  font-family: var(--font-display);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  background: var(--black);
  color: var(--white);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.75rem 1rem;
  transform: translateY(-200%);
  background: var(--white);
  color: var(--black);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  min-height: 8.1875rem;
  padding: 0 var(--header-pad);
  color: var(--white);
  mix-blend-mode: normal;
  transition: color 180ms ease, min-height 220ms ease;
}

.site-header.header-dark {
  color: var(--black);
}

.site-header.header-dark a:focus-visible,
.site-header.header-dark button:focus-visible {
  outline-color: var(--black);
}

@media (min-width: 800px) {
  .site-header.is-scrolled {
    min-height: 6.278rem;
  }
}

.site-title {
  width: max-content;
  font-size: min(1.672rem, calc(1rem + 0.84vw));
  letter-spacing: normal;
  line-height: 1.3;
  text-decoration: none;
}

.site-nav {
  display: grid;
  max-width: 20rem;
  grid-template-columns: repeat(6, max-content);
  justify-content: center;
  gap: 0 0.72rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  justify-self: center;
}

.site-nav a {
  position: relative;
  padding: 0.1rem 0;
  text-decoration: none;
}

.site-nav a:last-child {
  grid-column: 1 / -1;
  justify-self: center;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

main {
  min-height: 75vh;
}

.hero {
  position: relative;
  min-height: min(49vw, 39rem);
  overflow: hidden;
  background: var(--black);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-media.media-load {
  opacity: 1;
  transition-duration: 200ms;
}

.hero-shade {
  background: rgba(0, 0, 0, 0.3);
}

.year-hero::before {
  z-index: 1;
  inset: -35%;
  background-image: var(--grain-texture);
  mix-blend-mode: soft-light;
  opacity: 0;
}

body[data-page="2028"] .year-hero::before {
  opacity: 0.3;
  animation: fx-grain 0.24s steps(2) infinite;
}

body[data-page="2027"] .year-hero::before,
body[data-page="2029"] .year-hero::before {
  inset: -12%;
  background:
    radial-gradient(ellipse at 25% 35%, rgba(255, 255, 255, 0.2), transparent 34%),
    radial-gradient(ellipse at 78% 68%, rgba(22, 43, 65, 0.28), transparent 42%);
  mix-blend-mode: soft-light;
  opacity: 0.42;
  animation: fx-liquid-shift 13s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8.3rem 2rem 1.5rem;
  text-align: center;
}

.hero h1,
.display-heading {
  max-width: 8.25em;
  margin: 0;
  font-size: var(--title);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.066;
}

.home-hero {
  min-height: min(43.56vw, 34.85rem);
}

.home-hero h1 {
  max-width: 5.7em;
}

.hero p {
  max-width: 36.5rem;
  margin: 1rem 0 0;
  font-size: 1rem;
  line-height: 1.5;
}

.intro {
  display: grid;
  min-height: 47.6rem;
  place-items: center;
  padding: 2.6rem 2rem;
}

.intro-inner {
  width: min(100%, var(--narrow));
}

.intro h2,
.futures h2,
.story-heading,
.read-more h2 {
  margin: 0 0 2rem;
  font-size: var(--h2);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.144;
}

.read-more h2 {
  font-size: var(--h2);
  line-height: 1.144;
}

.read-more h1 {
  margin: 0 0 2rem;
  font-size: var(--title);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.066;
}

.intro p {
  margin: 0 0 1.25rem;
  font-size: var(--body);
  hyphens: auto;
  letter-spacing: 0;
  line-height: var(--body-leading);
  overflow-wrap: break-word;
  text-align: justify;
}

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

.futures {
  padding: 3.7rem clamp(2rem, 6.28vw, 5.05rem) 3.9rem;
}

.futures > h2 {
  text-align: center;
}

.future-grid {
  display: grid;
  max-width: 70rem;
  margin: 3rem auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.15rem 4.3rem;
}

.future-card {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
}

.future-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: calc(50% - 2.15rem);
  justify-self: center;
}

.future-card img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 350ms ease;
}

.future-card h3 {
  position: absolute;
  inset: auto 0 0;
  margin: 0;
  padding: 0.55rem 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
}

.future-card:hover img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.year-hero {
  min-height: min(49vw, 39rem);
}

.year-hero h1 {
  width: min(calc(100vw - 4rem), 36.45625rem);
  max-width: none;
}

body[data-page="2027"] .year-hero h1,
body[data-page="2028"] .year-hero h1 {
  max-width: none;
}

body[data-page="2029"] .year-hero h1 {
  width: min(calc(100vw - 4rem), 73.625rem);
  max-width: none;
}

.story-section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7.5rem) clamp(2rem, 11.65vw, 9.35rem);
}

.theme-black {
  background-color: var(--black);
  color: var(--white);
}

.theme-light {
  background-color: #e0e0db;
  color: #253551;
}

.theme-white {
  background-color: #fff;
  color: #000;
}

.theme-charcoal {
  background-color: #2a2829;
  color: var(--white);
}

.tone-blue {
  color: #253551;
}

.tone-white {
  color: var(--white);
}

.tone-black {
  color: var(--black);
}

.tone-light {
  color: #e0e0db;
}

.story-section.has-background {
  overflow: hidden;
}

.story-background-media,
.story-section.has-background::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.story-background-media {
  z-index: 0;
  max-width: none;
  object-fit: cover;
}

.story-section.has-background::before {
  z-index: 1;
  background-image:
    linear-gradient(
      rgba(var(--section-overlay-color, 0, 0, 0), var(--section-overlay, 0.24)),
      rgba(var(--section-overlay-color, 0, 0, 0), var(--section-overlay, 0.24))
    );
  content: "";
}

.story-section.has-ambient-fx {
  overflow: hidden;
}

.has-ambient-fx .split-story,
.has-ambient-fx .story-media {
  position: relative;
  z-index: 2;
}

.ambient-fx {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.ambient-fx-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(var(--effect-overlay-color, 0, 0, 0), var(--effect-overlay, 0));
  pointer-events: none;
}

.ambient-fx i {
  position: absolute;
  display: block;
}

.fx-blobs {
  background: #000;
}

.fx-blobs i {
  width: clamp(9rem, 21vw, 22rem);
  aspect-ratio: 1.25;
  border-radius: 48% 52% 61% 39% / 40% 45% 55% 60%;
  background: rgba(67, 102, 72, 0.78);
  animation: fx-blob-drift 18s ease-in-out infinite alternate;
}

.fx-blobs i:nth-child(1) { top: -4%; left: 82%; }
.fx-blobs i:nth-child(2) { top: 15%; left: 47%; width: clamp(10rem, 18vw, 18rem); animation-delay: -4s; }
.fx-blobs i:nth-child(3) { top: 35%; left: 4%; width: clamp(12rem, 24vw, 25rem); animation-delay: -9s; }
.fx-blobs i:nth-child(4) { top: 29%; left: 83%; width: clamp(12rem, 28vw, 29rem); animation-delay: -13s; }
.fx-blobs i:nth-child(5) { top: 66%; left: 62%; width: clamp(8rem, 17vw, 16rem); animation-delay: -6s; }
.fx-blobs i:nth-child(6) { top: 79%; left: -3%; width: clamp(11rem, 23vw, 22rem); animation-delay: -15s; }
.fx-blobs i:nth-child(7) { top: 91%; left: 78%; width: clamp(7rem, 14vw, 13rem); animation-delay: -2s; }
.fx-blobs i:nth-child(8) { top: 53%; left: 49%; width: clamp(5rem, 10vw, 9rem); animation-delay: -11s; }

.fx-midnight {
  background:
    radial-gradient(circle at 78% 16%, rgba(104, 126, 155, 0.32), transparent 35%),
    radial-gradient(circle at 14% 78%, rgba(62, 83, 114, 0.42), transparent 42%),
    linear-gradient(135deg, #2b3d58 0%, #1a2b45 48%, #263954 100%);
}

.fx-midnight::after,
.year-hero::before,
body[data-page="2028"] article > section:nth-child(2) .story-media::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.fx-midnight::after {
  inset: -35%;
  background-image: var(--grain-texture);
  mix-blend-mode: soft-light;
  opacity: 0.26;
  animation: fx-grain 0.35s steps(2) infinite;
}

.fx-particles-green,
.fx-particles-gold {
  background:
    radial-gradient(circle at 74% 92%, currentColor 0%, transparent 31%),
    radial-gradient(circle at 18% 112%, currentColor 0%, transparent 34%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 44%);
}

.fx-particles-green {
  inset: -3%;
  color: rgba(194, 208, 187, 0.78);
  background:
    radial-gradient(ellipse at 50% 48%, rgba(3, 10, 2, 0.94) 0 18%, rgba(7, 20, 4, 0.6) 39%, transparent 67%),
    radial-gradient(ellipse at 82% 82%, rgba(52, 81, 38, 0.35), transparent 42%),
    radial-gradient(ellipse at 14% 86%, rgba(49, 78, 36, 0.3), transparent 45%),
    #0a1a02;
  animation: fx-bokeh-drift 24s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.fx-particles-gold {
  color: rgba(156, 132, 65, 0.52);
  background-color: #251f0d;
}

.fx-particles-green i,
.fx-particles-gold i {
  width: clamp(9rem, 22vw, 23rem);
  aspect-ratio: 1;
  background-image:
    radial-gradient(circle 2px at 8% 21%, currentColor 0 72%, transparent 100%),
    radial-gradient(circle 4px at 17% 63%, currentColor 0 68%, transparent 100%),
    radial-gradient(circle 1px at 26% 38%, currentColor 0 70%, transparent 100%),
    radial-gradient(circle 5px at 33% 78%, currentColor 0 62%, transparent 100%),
    radial-gradient(circle 2px at 42% 13%, currentColor 0 74%, transparent 100%),
    radial-gradient(circle 3px at 49% 52%, currentColor 0 66%, transparent 100%),
    radial-gradient(circle 1px at 56% 89%, currentColor 0 72%, transparent 100%),
    radial-gradient(circle 6px at 63% 29%, currentColor 0 58%, transparent 100%),
    radial-gradient(circle 2px at 69% 69%, currentColor 0 72%, transparent 100%),
    radial-gradient(circle 4px at 76% 43%, currentColor 0 64%, transparent 100%),
    radial-gradient(circle 1px at 82% 84%, currentColor 0 74%, transparent 100%),
    radial-gradient(circle 3px at 89% 18%, currentColor 0 66%, transparent 100%),
    radial-gradient(circle 2px at 94% 57%, currentColor 0 70%, transparent 100%),
    radial-gradient(circle 5px at 38% 46%, currentColor 0 60%, transparent 100%),
    radial-gradient(circle 2px at 72% 7%, currentColor 0 72%, transparent 100%);
  filter: blur(0.55px);
  mask-image: radial-gradient(circle, #000 0%, rgba(0, 0, 0, 0.78) 36%, transparent 72%);
  opacity: 0.68;
  animation: fx-particle-drift 16s ease-in-out infinite alternate;
}

.fx-particles-green i:nth-child(odd),
.fx-particles-gold i:nth-child(odd) {
  opacity: 0.42;
  transform: rotate(23deg) scale(0.88);
}

.fx-particles-green i:nth-child(1), .fx-particles-gold i:nth-child(1) { right: -2%; bottom: -10%; }
.fx-particles-green i:nth-child(2), .fx-particles-gold i:nth-child(2) { right: 20%; bottom: -20%; animation-delay: -6s; }
.fx-particles-green i:nth-child(3), .fx-particles-gold i:nth-child(3) { left: 8%; bottom: -15%; animation-delay: -11s; }
.fx-particles-green i:nth-child(4), .fx-particles-gold i:nth-child(4) { left: 28%; bottom: -28%; animation-delay: -3s; }
.fx-particles-green i:nth-child(5), .fx-particles-gold i:nth-child(5) { right: 8%; top: 8%; animation-delay: -8s; }
.fx-particles-green i:nth-child(6), .fx-particles-gold i:nth-child(6) { left: -7%; top: 22%; animation-delay: -13s; }
.fx-particles-green i:nth-child(7), .fx-particles-gold i:nth-child(7) { left: 48%; top: 38%; animation-delay: -5s; }
.fx-particles-green i:nth-child(8), .fx-particles-gold i:nth-child(8) { right: 34%; top: -13%; animation-delay: -9s; }

.fx-particles-green i {
  width: clamp(10rem, 21vw, 21rem);
  aspect-ratio: 1;
  background-image:
    radial-gradient(circle 2px at 4% 14%, rgba(255, 255, 255, 0.82) 0 74%, transparent 100%),
    radial-gradient(circle 5px at 10% 43%, rgba(224, 224, 219, 0.7) 0 64%, transparent 100%),
    radial-gradient(circle 3px at 15% 76%, rgba(109, 139, 95, 0.76) 0 70%, transparent 100%),
    radial-gradient(circle 7px at 22% 24%, rgba(224, 224, 219, 0.54) 0 58%, transparent 100%),
    radial-gradient(circle 2px at 28% 57%, rgba(255, 255, 255, 0.76) 0 72%, transparent 100%),
    radial-gradient(circle 4px at 34% 91%, rgba(126, 154, 114, 0.72) 0 66%, transparent 100%),
    radial-gradient(circle 6px at 40% 36%, rgba(224, 224, 219, 0.62) 0 60%, transparent 100%),
    radial-gradient(circle 2px at 46% 69%, rgba(255, 255, 255, 0.78) 0 72%, transparent 100%),
    radial-gradient(circle 8px at 53% 8%, rgba(96, 128, 82, 0.66) 0 55%, transparent 100%),
    radial-gradient(circle 3px at 58% 49%, rgba(224, 224, 219, 0.7) 0 69%, transparent 100%),
    radial-gradient(circle 5px at 64% 84%, rgba(122, 151, 109, 0.72) 0 63%, transparent 100%),
    radial-gradient(circle 2px at 70% 27%, rgba(255, 255, 255, 0.8) 0 72%, transparent 100%),
    radial-gradient(circle 7px at 76% 61%, rgba(224, 224, 219, 0.56) 0 58%, transparent 100%),
    radial-gradient(circle 3px at 81% 94%, rgba(102, 134, 88, 0.72) 0 68%, transparent 100%),
    radial-gradient(circle 5px at 87% 43%, rgba(224, 224, 219, 0.68) 0 62%, transparent 100%),
    radial-gradient(circle 2px at 92% 72%, rgba(255, 255, 255, 0.78) 0 72%, transparent 100%),
    radial-gradient(circle 6px at 96% 17%, rgba(115, 145, 101, 0.72) 0 60%, transparent 100%),
    radial-gradient(circle 3px at 37% 12%, rgba(224, 224, 219, 0.66) 0 68%, transparent 100%),
    radial-gradient(circle 2px at 68% 55%, rgba(255, 255, 255, 0.78) 0 72%, transparent 100%),
    radial-gradient(circle 4px at 19% 9%, rgba(109, 140, 95, 0.72) 0 65%, transparent 100%),
    radial-gradient(circle 3px at 84% 13%, rgba(224, 224, 219, 0.65) 0 68%, transparent 100%);
  filter: blur(0.9px);
  mask-image: none;
  opacity: 0.82;
  animation: none;
}

.fx-particles-green i:nth-child(odd) {
  opacity: 0.58;
}

.fx-particles-green i:nth-child(1) { top: -10%; right: auto; bottom: auto; left: -3%; animation-delay: -2s; }
.fx-particles-green i:nth-child(2) { top: -13%; right: auto; bottom: auto; left: 22%; animation-delay: -11s; }
.fx-particles-green i:nth-child(3) { top: -14%; right: auto; bottom: auto; left: 52%; animation-delay: -17s; }
.fx-particles-green i:nth-child(4) { top: -9%; right: -4%; bottom: auto; left: auto; animation-delay: -6s; }
.fx-particles-green i:nth-child(5) { top: 8%; right: -10%; bottom: auto; left: auto; animation-delay: -20s; }
.fx-particles-green i:nth-child(6) { top: 16%; right: auto; bottom: auto; left: -11%; animation-delay: -13s; }
.fx-particles-green i:nth-child(7) { top: 35%; right: auto; bottom: auto; left: -9%; animation-delay: -4s; }
.fx-particles-green i:nth-child(8) { top: 54%; right: auto; bottom: auto; left: -8%; animation-delay: -22s; }
.fx-particles-green i:nth-child(9) { top: 74%; right: auto; bottom: auto; left: -5%; animation-delay: -8s; }
.fx-particles-green i:nth-child(10) { top: 78%; right: auto; bottom: auto; left: 18%; animation-delay: -19s; }
.fx-particles-green i:nth-child(11) { top: 77%; right: auto; bottom: auto; left: 41%; animation-delay: -7s; }
.fx-particles-green i:nth-child(12) { top: 76%; right: auto; bottom: auto; left: 64%; animation-delay: -15s; }
.fx-particles-green i:nth-child(13) { top: 69%; right: -8%; bottom: auto; left: auto; animation-delay: -1s; }
.fx-particles-green i:nth-child(14) { top: 49%; right: -10%; bottom: auto; left: auto; animation-delay: -10s; }
.fx-particles-green i:nth-child(15) { top: 28%; right: -11%; bottom: auto; left: auto; animation-delay: -21s; }
.fx-particles-green i:nth-child(16) { top: 12%; right: -9%; bottom: auto; left: auto; animation-delay: -5s; }
.fx-particles-green i:nth-child(17) { top: 56%; right: auto; bottom: auto; left: 12%; animation-delay: -16s; }
.fx-particles-green i:nth-child(18) { top: 68%; right: auto; bottom: auto; left: 33%; animation-delay: -12s; }
.fx-particles-green i:nth-child(19) { top: 64%; right: auto; bottom: auto; left: 56%; animation-delay: -3s; }

.fx-section-particles-green.fx-active .fx-particles-green {
  will-change: transform;
}

.fx-section-particles-green::after,
.fx-section-particles-gold::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 6vw;
  background: #2a2829;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 44 C8.33 50 8.33 50 16.66 44 S25 38 33.33 44 S41.66 50 50 44 S58.33 38 66.66 44 S75 50 83.33 44 S91.66 38 100 44 V100 H0 Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 44 C8.33 50 8.33 50 16.66 44 S25 38 33.33 44 S41.66 50 50 44 S58.33 38 66.66 44 S75 50 83.33 44 S91.66 38 100 44 V100 H0 Z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  content: "";
  pointer-events: none;
}

.fx-section-particles-gold::after {
  background: #000;
}

.fx-soft-focus {
  inset: -8%;
  background:
    radial-gradient(ellipse at 18% 28%, rgba(226, 231, 229, 0.86) 0 13%, transparent 32%),
    radial-gradient(ellipse at 78% 18%, rgba(100, 118, 144, 0.82) 0 18%, transparent 40%),
    radial-gradient(ellipse at 42% 82%, rgba(31, 52, 80, 0.9) 0 22%, transparent 48%),
    radial-gradient(ellipse at 92% 72%, rgba(213, 217, 214, 0.72) 0 15%, transparent 36%),
    #68778d;
  filter: blur(34px);
  transform: scale(1.08);
  animation: fx-contour-shift 16s ease-in-out infinite alternate;
}

@keyframes fx-blob-drift {
  from { transform: translate3d(-2%, -1%, 0) rotate(-2deg); }
  to { transform: translate3d(6%, 5%, 0) rotate(5deg); }
}

@keyframes fx-particle-drift {
  from { transform: translate3d(-2%, 3%, 0) scale(0.96); }
  to { transform: translate3d(5%, -5%, 0) scale(1.05); }
}

@keyframes fx-bokeh-drift {
  from { transform: translate3d(-1.5%, 1.5%, 0) scale(0.98) rotate(-0.5deg); }
  to { transform: translate3d(2.5%, -2%, 0) scale(1.025) rotate(0.75deg); }
}

@keyframes fx-contour-shift {
  from { transform: scale(1.08) translate3d(-1.5%, 0, 0); }
  to { transform: scale(1.13) translate3d(2%, -1.5%, 0); }
}

@keyframes fx-liquid-shift {
  from { transform: translate3d(-2%, -1%, 0) scale(1.02) rotate(-0.35deg); }
  to { transform: translate3d(2%, 1.5%, 0) scale(1.07) rotate(0.35deg); }
}

@keyframes fx-grain {
  0% { transform: translate3d(-2%, -3%, 0); }
  25% { transform: translate3d(3%, -1%, 0); }
  50% { transform: translate3d(-1%, 3%, 0); }
  75% { transform: translate3d(2%, 2%, 0); }
  100% { transform: translate3d(-3%, 1%, 0); }
}

.story-section.compact {
  padding-top: 3.4rem;
  padding-bottom: 3.4rem;
}

.story-section.is-split {
  padding-right: 2.3125vw;
  padding-left: var(--header-pad);
}

.story-section.media-only {
  padding: 1.6875rem 5vw;
}

.story-section.media-only .story-copy {
  display: none;
}

.story-copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--wide));
  margin: 0 auto;
}

.story-copy.narrow {
  width: min(100%, 42rem);
}

.story-copy p {
  margin: 0 0 calc(1.5em + 2rem);
  font-size: var(--body);
  hyphens: auto;
  letter-spacing: 0;
  line-height: var(--body-leading);
  overflow-wrap: break-word;
  text-align: justify;
}

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

.story-list + p {
  margin-top: calc(1.5em + 2rem);
}

.copy-blur .story-copy {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.story-copy strong {
  font-weight: 600;
}

.story-list {
  margin: 1rem 0 0;
  padding-left: 1.35em;
  font-size: var(--body);
  hyphens: auto;
  letter-spacing: 0;
  line-height: var(--body-leading);
  overflow-wrap: break-word;
}

.story-list li + li {
  margin-top: 0.5em;
}

.story-heading.centered {
  text-align: center;
}

.split-story {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.107fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 6.14vw, 5rem);
}

.split-story.reverse .story-copy {
  order: 2;
}

.split-story.reverse .story-media {
  order: 1;
}

.story-media {
  display: grid;
  gap: 1rem;
}

.story-media img,
.story-media video {
  width: 100%;
  max-height: 47rem;
  object-fit: cover;
}

.image-pair {
  display: grid;
  width: min(100%, 70rem);
  margin: 3.4rem auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.image-pair img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.media-only .image-pair,
.media-only .story-media {
  width: 100%;
  max-width: none;
  margin: 0;
}

.media-only .image-pair img,
.media-only .story-media img {
  width: 100%;
  height: min(37.5vw, 30rem);
  min-height: 0;
  object-fit: cover;
}

.feature-image {
  width: 100%;
  max-height: 70rem;
  object-fit: cover;
}

.feature-block {
  position: relative;
  display: grid;
  min-height: clamp(34rem, 67vw, 83rem);
  overflow: hidden;
  place-items: center;
  padding: 6rem 2rem;
}

.feature-block.heading-only {
  min-height: 34.125rem;
}

.feature-block > img,
.feature-block > video,
.feature-block::after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.feature-block > img,
.feature-block > video {
  z-index: 0;
  object-fit: cover;
}

.feature-block::after {
  z-index: 2;
  background: rgba(var(--feature-overlay-color, 0, 0, 0), var(--feature-overlay, 0.25));
  content: "";
}

body[data-page="2028"] article > section:nth-child(2) .story-media {
  position: relative;
  overflow: hidden;
}

body[data-page="2028"] article > section:nth-child(2) .story-media::after {
  z-index: 2;
  inset: -35%;
  background-image: var(--grain-texture);
  mix-blend-mode: soft-light;
  opacity: 0.32;
  animation: fx-grain 0.24s steps(2) infinite;
}

.feature-collage {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.feature-collage img {
  position: absolute;
  object-fit: cover;
}

.feature-block-content {
  position: relative;
  z-index: 3;
  width: min(100%, 55rem);
  text-align: center;
}

.feature-block-content h2,
.feature-block-content h1 {
  margin: 0;
  font-weight: 400;
  line-height: 1.066;
}

.feature-block-content h1 {
  font-size: var(--title);
}

.feature-block-content h2 {
  font-size: var(--h2);
  line-height: 1.144;
}

.feature-block.align-left {
  place-items: center start;
  padding-inline: var(--header-pad);
}

.feature-block.align-left .feature-block-content {
  width: min(100%, 36.45625rem);
  text-align: left;
}

.feature-block-content.content-inset {
  padding-inline: 1.8rem;
}

.feature-block-content.has-heading-panel {
  padding: 3.05rem 1.8rem;
  background: rgba(0, 0, 0, var(--heading-panel-opacity, 0));
}

.feature-block-content p {
  margin: 2rem 0 0;
  font-size: var(--body);
  hyphens: auto;
  letter-spacing: 0;
  line-height: var(--body-leading);
  overflow-wrap: break-word;
}

.intro strong,
.feature-block-content strong,
.story-list strong {
  font-weight: 600;
}

.year-hero:not(.fx-active)::before,
.has-ambient-fx:not(.fx-active) .ambient-fx,
.has-ambient-fx:not(.fx-active) .ambient-fx::after,
.has-ambient-fx:not(.fx-active) .ambient-fx i,
body[data-page="2028"] article > section:nth-child(2):not(.fx-active) .story-media::after {
  animation-play-state: paused;
}

.quote-band {
  position: relative;
  display: grid;
  min-height: 33.4rem;
  overflow: hidden;
  place-items: center;
  padding: 4rem 2rem;
  background-position: center;
  background-size: cover;
  text-align: center;
}

.quote-band.tone-white {
  color: var(--white);
}

.quote-band::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "";
}

.quote-band-art {
  position: absolute;
  inset: 0;
}

.quote-band-art img {
  position: absolute;
  top: 0;
  width: 53.4%;
  height: 100%;
  object-fit: cover;
}

.quote-band-art img:first-child {
  left: 0;
}

.quote-band-art img:last-child {
  right: 0;
}

.quote-band h2 {
  position: relative;
  z-index: 2;
  width: min(100%, 55rem);
  margin: 0;
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.144;
}

.quote-band.align-left {
  place-items: center start;
  padding-inline: var(--header-pad);
  text-align: left;
}

.quote-band.align-left h2 {
  width: min(100%, 36.45625rem);
}

.quote-band.has-heading-panel h2 {
  padding: 2.187rem;
  background: rgba(0, 0, 0, var(--heading-panel-opacity, 0));
}

.read-more {
  position: relative;
  display: grid;
  min-height: 44.625rem;
  align-content: start;
  overflow: hidden;
  padding: 2.64375rem 2rem 4.2rem;
  text-align: center;
}

.read-more > h1,
.read-more > h2,
.read-more > nav {
  position: relative;
  z-index: 2;
  width: min(100%, 67.46875rem);
  margin-right: auto;
  margin-left: auto;
}

.read-more > h1,
.read-more > h2 {
  margin-bottom: 0.65625rem;
}

body[data-page="2025"] .read-more > h2 {
  margin-bottom: 3.5rem;
}

.read-more-art {
  position: absolute;
  z-index: 1;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transform-origin: 66% 40%;
  transition: opacity 180ms ease-out, transform 220ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.read-more-art::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  content: "";
}

body[data-page="2025"] .read-more-art::after {
  display: none;
}

.read-more:has(nav a:is(:hover, :focus-visible)) .read-more-art {
  opacity: 1;
  transform: none;
}

.read-more-art img {
  position: absolute;
  object-fit: contain;
}

.read-more-art img:first-child {
  top: 29.5%;
  left: 50%;
  width: 30.7%;
  height: auto;
}

.read-more-art img:nth-child(2) {
  top: 5.9%;
  left: 72.8%;
  width: 11.9%;
  aspect-ratio: 1;
}

.read-more-art img:nth-child(3) {
  top: 13%;
  left: 69%;
  width: 11.9%;
  aspect-ratio: 1;
}

.read-more nav {
  display: grid;
  gap: 2rem;
}

.read-more a {
  display: block;
  font-size: var(--h3);
  line-height: 1.17;
  color: #e0e0db;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: opacity 180ms ease;
}

.read-more nav:has(a:hover) a:not(:hover),
.read-more nav:has(a:focus-visible) a:not(:focus-visible) {
  opacity: 0.28;
}

.site-footer {
  display: grid;
  min-height: 4rem;
  grid-template-columns: 5fr 14fr 5fr;
  align-items: center;
  padding: 0 var(--header-pad);
  font-size: 1rem;
  line-height: 1.5;
  color: var(--white);
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.site-footer > a {
  justify-self: center;
}

.site-footer .footer-logo {
  justify-self: center;
  transform: translateX(-0.31rem);
}

.site-footer > a:last-child {
  transform: translateX(0.275rem);
}

.footer-logo img {
  width: 9.65rem;
  height: auto;
}

.media-load {
  opacity: 0;
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.media-load.is-loaded {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: scale(0.97);
  transform-origin: 50% 50%;
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1) 100ms,
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1) 100ms;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.reveal-copy {
  transform: none;
  transition-property: opacity;
  will-change: opacity;
}

.story-section.has-decorative-media {
  overflow: hidden;
}

.has-decorative-media > .story-media {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.has-decorative-media > .story-media img {
  position: absolute;
  top: 46.9%;
  left: 6.5%;
  width: 44.5%;
  height: 41.7%;
  object-fit: cover;
}

body[data-page="2025"] article > section:nth-child(5)::after,
body[data-page="2026"] article > section:nth-child(4)::after {
  display: none;
}

body[data-page="2025"] article > section:nth-child(5) .quote-band-art img:first-child,
body[data-page="2026"] article > section:nth-child(4) .quote-band-art img:first-child,
body[data-page="2025"] article > section:nth-child(10) .feature-collage img:first-child,
body[data-page="2025"] article > section:nth-child(11) > .story-media img {
  filter: brightness(0.5);
}

body[data-page="2026"] article > section:nth-child(4) .quote-band-art img:first-child {
  z-index: 1;
}

body[data-page="2025"] article > section:nth-child(10) .feature-collage {
  z-index: 3;
}

body[data-page="2025"] article > section:nth-child(10) .feature-block-content {
  z-index: 4;
}

@media (min-width: 800px) {
  .year-hero .hero-content {
    justify-content: flex-start;
    padding-top: 8.998rem;
  }

  .year-hero .hero-content p {
    margin-top: 2rem;
  }

  .story-section:not(.media-only) {
    padding-block: 3.125rem;
  }

  body[data-page="2025"] .year-hero {
    height: 37.0625rem;
    min-height: 37.0625rem;
  }

  body[data-page="2025"] .year-hero .hero-content {
    padding-top: 7.08125rem;
  }

  body[data-page="2025"] article > section:nth-child(1) {
    min-height: 37.5rem;
    padding-block: 4.4rem;
  }

  body[data-page="2025"] article > section:nth-child(1) .story-media img {
    height: 20.56rem;
  }

  body[data-page="2025"] article > section:nth-child(2) {
    min-height: 40.625rem;
    padding-block: 4.25rem;
  }

  body[data-page="2025"] article > section:nth-child(2) .story-media img {
    height: 18.5rem;
  }

  body[data-page="2025"] article > section:nth-child(3) {
    min-height: 41.5rem;
    padding-block: 1.625rem;
  }

  body[data-page="2025"] article > section:nth-child(4) {
    height: 54.125rem;
    min-height: 54.125rem;
    padding-block: 5rem;
  }

  body[data-page="2025"] article > section:nth-child(5) {
    height: 53.8125rem;
    min-height: 53.8125rem;
  }

  body[data-page="2025"] article > section:nth-child(5)::after {
    display: none;
  }

  body[data-page="2025"] article > section:nth-child(5) .quote-band-art img:first-child {
    filter: brightness(0.5);
  }

  body[data-page="2025"] article > section:nth-child(5) .quote-band-art {
    inset: 0;
  }

  body[data-page="2025"] article > section:nth-child(5) .quote-band-art img:first-child {
    top: 5%;
    left: 2.48%;
    width: 44.61%;
    height: 90%;
  }

  body[data-page="2025"] article > section:nth-child(5) .quote-band-art img:last-child {
    top: 5%;
    right: 2.67%;
    width: 48.09%;
    height: 90%;
  }

  body[data-page="2025"] article > section:nth-child(5) h2 {
    top: -1.125rem;
    width: min(100%, 67.4125rem);
  }

  body[data-page="2025"] article > section:nth-child(6) {
    min-height: 85.1875rem;
    padding-block: 2.64rem;
  }

  body[data-page="2025"] article > section:nth-child(6) .story-copy > p:nth-of-type(-n + 4) {
    margin-bottom: 3.5rem;
  }

  body[data-page="2025"] article > section:nth-child(7) {
    height: 33.375rem;
    min-height: 33.375rem;
    padding-block: 2.4rem;
  }

  body[data-page="2025"] article > section:nth-child(8) {
    min-height: 37.1875rem;
    overflow: visible;
  }

  body[data-page="2025"] article > section:nth-child(8) > .story-background-media,
  body[data-page="2025"] article > section:nth-child(8)::before {
    top: -6vw;
    height: calc(100% + 6vw);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 9 C10 9 17 0 28 1 S45 8 55 7 S72 0 84 3 S94 9 100 8 V100 H0 Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 9 C10 9 17 0 28 1 S45 8 55 7 S72 0 84 3 S94 9 100 8 V100 H0 Z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
  }

  body[data-page="2025"] article > section:nth-child(9) {
    min-height: 90.75rem;
    padding-block: 2.64rem;
  }

  body[data-page="2025"] article > section:nth-child(9) .story-copy {
    width: 589px;
    max-width: none;
  }

  body[data-page="2025"] article > section:nth-child(9) .story-media img {
    height: 49.8125rem;
    max-height: none;
  }

  body[data-page="2025"] article > section:nth-child(10) {
    height: 83.4375rem;
    min-height: 83.4375rem;
  }

  body[data-page="2025"] article > section:nth-child(10) .feature-collage {
    z-index: 3;
  }

  body[data-page="2025"] article > section:nth-child(10) .feature-block-content {
    z-index: 4;
  }

  body[data-page="2025"] article > section:nth-child(10) .feature-collage img:first-child {
    filter: brightness(0.5);
  }

  body[data-page="2025"] article > section:nth-child(10) .feature-collage img:first-child {
    top: 30.9%;
    left: 15.55%;
    width: 68.9%;
    height: 65.3%;
  }

  body[data-page="2025"] article > section:nth-child(10) .feature-collage img:nth-child(2) {
    top: 9.5%;
    left: 33%;
    width: 34.1%;
    height: 23.7%;
  }

  body[data-page="2025"] article > section:nth-child(11) {
    min-height: 57.3125rem;
    padding-top: 5.28rem;
  }

  body[data-page="2025"] article > section:nth-child(11) > .story-media img {
    filter: brightness(0.5);
  }

  body[data-page="2025"] .read-more {
    height: 36.6875rem;
    min-height: 36.6875rem;
  }

  body[data-page="2025"] .read-more-art img:first-child {
    top: 43.3%;
    left: 51.6%;
    width: 27.6%;
  }

  body[data-page="2025"] .read-more-art img:nth-child(2) {
    top: 8.5%;
    left: 73.35%;
    width: 10.85%;
  }

  body[data-page="2025"] .read-more-art img:nth-child(3) {
    top: 22.5%;
    left: 65.9%;
    width: 10.3%;
  }

  body[data-page="2026"] .year-hero {
    height: 34.0625rem;
    min-height: 34.0625rem;
  }

  body[data-page="2026"] article > section:nth-child(1) {
    min-height: 68.25rem;
    padding-block: 3.16rem 1.58rem;
  }

  body[data-page="2026"] article > section:nth-child(1) .story-copy > p:first-of-type {
    margin-bottom: 3.5rem;
  }

  body[data-page="2026"] article > section:nth-child(1) .story-copy > p:nth-of-type(2) {
    margin-bottom: 1rem;
  }

  body[data-page="2026"] article > section:nth-child(1) .story-list + p {
    margin-top: 3.5rem;
  }

  body[data-page="2026"] article > section:nth-child(2) {
    height: 29.5625rem;
    min-height: 29.5625rem;
  }

  body[data-page="2026"] article > section:nth-child(2) .feature-block-content {
    top: 0.9rem;
    width: 24.075rem;
  }

  body[data-page="2026"] article > section:nth-child(3) {
    min-height: 58.1875rem;
    padding-block: 2.64rem;
  }

  body[data-page="2026"] article > section:nth-child(3) .story-copy > p:first-of-type {
    margin-bottom: 3.5rem;
  }

  body[data-page="2026"] article > section:nth-child(3) .story-copy > p:nth-of-type(2) {
    margin-bottom: 1rem;
  }

  body[data-page="2026"] article > section:nth-child(4) {
    height: 33.375rem;
    min-height: 33.375rem;
  }

  body[data-page="2026"] article > section:nth-child(3) .story-copy p {
    text-align: left;
  }

  body[data-page="2026"] article > section:nth-child(4)::after {
    display: none;
  }

  body[data-page="2026"] article > section:nth-child(4) .quote-band-art {
    inset: 0;
  }

  body[data-page="2026"] article > section:nth-child(4) .quote-band-art img:first-child {
    left: 0;
    width: 49.57%;
    filter: brightness(0.5);
  }

  body[data-page="2026"] article > section:nth-child(4) .quote-band-art img:last-child {
    right: 0;
    width: 53.44%;
  }

  body[data-page="2026"] article > section:nth-child(5) {
    min-height: 58rem;
    padding-block: 2.27rem;
  }

  body[data-page="2026"] article > section:nth-child(5) .story-copy > p:nth-of-type(2) {
    margin-bottom: 1rem;
  }

  body[data-page="2026"] article > section:nth-child(6) {
    min-height: 125rem;
    overflow: hidden;
  }

  body[data-page="2026"] article > section:nth-child(6) > .story-media {
    position: absolute;
    z-index: 1;
    top: 2.625rem;
    left: 50%;
    width: min(61.2197rem, 88vw);
    height: 107.8994rem;
    transform: translateX(-50%);
  }

  body[data-page="2026"] article > section:nth-child(6) > .story-media video {
    width: 100%;
    height: 107.8994rem;
    max-height: none;
    object-fit: contain;
  }

  body[data-page="2026"] article > section:nth-child(7) {
    min-height: 53.75rem;
  }

  body[data-page="2026"] article > section:nth-child(8) {
    min-height: 69.5rem;
    padding-block: 1.5625rem 0;
  }

  body[data-page="2026"] article > section:nth-child(8) .story-media {
    height: 67.9375rem;
  }

  body[data-page="2026"] article > section:nth-child(8) .story-media img {
    height: 100%;
    max-height: none;
  }

  body[data-page="2026"] .read-more {
    height: 44.625rem;
  }

  body[data-page="2027"] .year-hero {
    height: 27.625rem;
    min-height: 27.625rem;
  }

  body[data-page="2027"] article > section:nth-child(1) {
    min-height: 162.9rem;
    padding-block: 3.16rem 1.6rem;
  }

  body[data-page="2027"] article > section:nth-child(1) .story-copy > p:nth-of-type(-n + 4) {
    margin-bottom: 1rem;
  }

  body[data-page="2027"] article > section:nth-child(1) .story-copy > p:nth-of-type(10) {
    margin-bottom: 1rem;
  }

  body[data-page="2027"] article > section:nth-child(2) {
    height: 34.125rem;
  }

  body[data-page="2027"] article > section:nth-child(3) {
    min-height: 56rem;
    padding-block: 2.64rem;
  }

  body[data-page="2027"] article > section:nth-child(4) {
    min-height: 43.25rem;
    padding-top: 2.64rem;
  }

  body[data-page="2027"] article > section:nth-child(5) {
    height: 28.8125rem;
    min-height: 28.8125rem;
    place-items: start start;
    padding-top: 5.5125rem;
  }

  body[data-page="2027"] article > section:nth-child(5) > img {
    inset: 1.4375rem 5%;
    width: 90%;
    height: calc(100% - 2.875rem);
  }

  body[data-page="2027"] article > section:nth-child(5) .feature-block-content {
    width: 36.45625rem;
    padding: 2.1875rem;
    box-shadow: 0 -0.973rem 0 rgba(0, 0, 0, var(--heading-panel-opacity, 0)),
      0 0.973rem 0 rgba(0, 0, 0, var(--heading-panel-opacity, 0));
    text-align: left;
  }

  body[data-page="2027"] article > section:nth-child(6) {
    min-height: 63.25rem;
    padding-block: 2.27rem 2.5rem;
  }

  body[data-page="2027"] article > section:nth-child(7) {
    min-height: 97.1875rem;
    padding-block: 2.64rem 4.9rem;
  }

  body[data-page="2027"] .read-more {
    height: 49.3125rem;
  }

  body[data-page="2028"] .year-hero {
    height: 36.375rem;
    min-height: 36.375rem;
  }

  body[data-page="2028"] article > section:nth-child(1) {
    min-height: 68.3125rem;
    padding-bottom: 1.58rem;
  }

  body[data-page="2028"] article > section:nth-child(1) .story-copy > p:nth-of-type(3) {
    margin-bottom: 3.5rem;
  }

  body[data-page="2028"] article > section:nth-child(2) {
    min-height: 47.8125rem;
    padding-block: 1.5625rem;
  }

  body[data-page="2028"] article > section:nth-child(2) .story-media {
    height: 43rem;
  }

  body[data-page="2028"] article > section:nth-child(2) .story-media img {
    height: 100%;
    max-height: none;
  }

  body[data-page="2028"] article > section:nth-child(3) {
    min-height: 125.5625rem;
    padding-bottom: 1.58rem;
  }

  body[data-page="2028"] article > section:nth-child(4) {
    height: 34.125rem;
  }

  body[data-page="2028"] article > section:nth-child(5) {
    min-height: 72.1875rem;
    padding-block: 2.64rem;
  }

  body[data-page="2028"] article > section:nth-child(5) .story-copy > p:nth-of-type(3) {
    margin-bottom: 1rem;
  }

  body[data-page="2028"] article > section:nth-child(6) {
    min-height: 91.625rem;
    padding-block: 2.27rem 2.92rem;
  }

  body[data-page="2028"] article > section:nth-child(6) .story-copy {
    width: min(100%, 61.21875rem);
  }

  body[data-page="2028"] article > section:nth-child(6) .story-copy > p:nth-of-type(1),
  body[data-page="2028"] article > section:nth-child(6) .story-copy > p:nth-of-type(3) {
    margin-bottom: 1rem;
  }

  body[data-page="2028"] article > section:nth-child(6) .story-copy > p:nth-of-type(n + 4):not(:last-child) {
    margin-bottom: 0.5em;
  }

  body[data-page="2028"] article > section:nth-child(7) {
    height: 33.375rem;
    padding: 0;
  }

  body[data-page="2028"] article > section:nth-child(7) .story-media,
  body[data-page="2028"] article > section:nth-child(7) .story-media img {
    height: 100%;
  }

  body[data-page="2028"] article > section:nth-child(8) {
    min-height: 43.75rem;
    padding-block: 2.27rem 4.79rem;
  }

  body[data-page="2028"] article > section:nth-child(8) .story-copy > p:first-child {
    margin-bottom: 3.5rem;
  }

  body[data-page="2028"] .read-more {
    height: 44.625rem;
    transform: translateY(-2.54vw);
  }

  body[data-page="2029"] .year-hero {
    height: 34.0625rem;
    min-height: 34.0625rem;
  }

  body[data-page="2029"] article > section:nth-child(1) {
    min-height: 87.25rem;
    padding-block: 3.16rem 2.5rem;
  }

  body[data-page="2029"] article > section:nth-child(2) {
    height: 34.125rem;
  }

  body[data-page="2029"] article > section:nth-child(3) {
    min-height: 38.4375rem;
    padding-block: 2.64rem;
  }

  body[data-page="2029"] article > section:nth-child(4) {
    height: 33.375rem;
    padding: 0;
  }

  body[data-page="2029"] article > section:nth-child(4) .image-pair {
    position: relative;
    display: block;
    width: 100%;
    height: 30.01875rem;
    top: 1.66875rem;
  }

  body[data-page="2029"] article > section:nth-child(4) .image-pair img {
    position: absolute;
    top: 0;
    height: 100%;
    min-height: 0;
  }

  body[data-page="2029"] article > section:nth-child(4) .image-pair img:first-child {
    right: 2.67%;
    left: auto;
    width: 48.09%;
  }

  body[data-page="2029"] article > section:nth-child(4) .image-pair img:nth-child(2) {
    right: auto;
    left: 2.48%;
    width: 44.61%;
  }

  body[data-page="2029"] article > section:nth-child(5) {
    min-height: 83.6875rem;
    padding-block: 2.27rem;
  }

  body[data-page="2029"] article > section:nth-child(5) .story-copy > p:nth-of-type(-n + 2) {
    margin-bottom: 1rem;
  }

  body[data-page="2029"] article > section:nth-child(6) {
    min-height: 75.4375rem;
    padding-bottom: 2.5rem;
  }

  body[data-page="2029"] article > section:nth-child(7) {
    height: 57.9375rem;
    min-height: 57.9375rem;
    padding: 0;
  }

  body[data-page="2029"] article > section:nth-child(7) .split-story {
    height: 100%;
    grid-template-columns: 50% 41.55%;
    gap: 6.14%;
  }

  body[data-page="2029"] article > section:nth-child(7) .story-copy {
    width: calc(100% - 4vw);
    margin: 1.58rem 0 0 4vw;
  }

  body[data-page="2029"] article > section:nth-child(7) .story-media {
    height: calc(100% - 5.794rem);
    margin-top: 2.897rem;
  }

  body[data-page="2029"] article > section:nth-child(7) .story-media img {
    height: 100%;
    max-height: none;
  }

  body[data-page="2029"] article > section:nth-child(8) {
    height: 31.8125rem;
    min-height: 31.8125rem;
  }

  body[data-page="2029"] article > section:nth-child(9) {
    min-height: 66.5rem;
    padding-bottom: 2.94rem;
  }

  body[data-page="2029"] article > section:nth-child(10) {
    min-height: 34rem;
  }

  body[data-page="2029"] .read-more {
    height: 44.625rem;
  }

  body[data-page="2029"] .read-more-art img:first-child {
    top: 39.4%;
    left: 51.6%;
    width: 27.6%;
  }

  body[data-page="2029"] .read-more-art img:nth-child(2) {
    top: 6.9%;
    left: 73.4%;
    width: 10.7%;
  }

  body[data-page="2029"] .read-more-art img:nth-child(3) {
    top: 14%;
    left: 69.6%;
    width: 10.7%;
  }
}

@media (min-width: 1100px) {
  body[data-page="2025"] article > section:nth-child(1) {
    height: 34.846rem;
    min-height: 34.846rem;
    padding: 2.64rem 0 0;
  }

  body[data-page="2025"] article > section:nth-child(1) .split-story,
  body[data-page="2025"] article > section:nth-child(2) .split-story {
    width: auto;
    margin-left: 11.666vw;
    grid-template-columns: 42.167vw 38.34vw;
    gap: 3.835vw;
  }

  body[data-page="2025"] article > section:nth-child(1) .story-media img {
    width: 100%;
    height: 20.56rem;
  }

  body[data-page="2025"] article > section:nth-child(2) {
    height: 39.943rem;
    min-height: 39.943rem;
    padding: 2.64rem 0 0;
  }

  body[data-page="2025"] article > section:nth-child(2) .story-media {
    position: absolute;
    top: 12.525rem;
    left: 59.586vw;
    width: 34.5vw;
    height: 20.5625rem;
  }

  body[data-page="2025"] article > section:nth-child(2) .story-media img {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 90%;
    max-height: none;
  }

  body[data-page="2025"] article > section:nth-child(3) {
    height: 44.818rem;
    min-height: 44.818rem;
    padding: 2.64rem 0 0;
  }

  body[data-page="2025"] article > section:nth-child(3) .story-copy {
    width: min(100%, var(--wide));
  }

  body[data-page="2025"] article > section:nth-child(3) .image-pair {
    position: absolute;
    top: 21.6125rem;
    left: 0;
    display: block;
    width: 100%;
    height: 20.56875rem;
    margin: 0;
  }

  body[data-page="2025"] article > section:nth-child(3) .image-pair img {
    position: absolute;
    top: 5%;
    height: 90%;
    min-height: 0;
  }

  body[data-page="2025"] article > section:nth-child(3) .image-pair img:first-child {
    left: 6.3%;
    width: 41.4%;
  }

  body[data-page="2025"] article > section:nth-child(3) .image-pair img:nth-child(2) {
    left: 48.66%;
    width: 44.85%;
  }

  body[data-page="2025"] article > section:nth-child(4) {
    place-items: start center;
    padding: 1.982rem 0 0;
  }

  body[data-page="2025"] article > section:nth-child(4) .feature-block-content {
    display: flex;
    width: 100%;
    max-width: none;
    flex-direction: column;
  }

  body[data-page="2025"] article > section:nth-child(4) h1 {
    width: 30.4375rem;
    margin-inline: auto;
    text-align: center;
  }

  body[data-page="2025"] article > section:nth-child(4) p,
  body[data-page="2025"] article > section:nth-child(7) p {
    margin-right: auto;
    margin-left: auto;
    text-align: justify;
  }

  body[data-page="2025"] article > section:nth-child(4) p {
    width: min(100%, 61.271rem);
  }

  body[data-page="2025"] article > section:nth-child(7) p {
    width: min(100%, 61.22rem);
  }

  body[data-page="2025"] article > section:nth-child(4) p:first-of-type {
    margin-top: 2.332rem;
  }

  body[data-page="2025"] article > section:nth-child(4) p:nth-of-type(2) {
    margin-top: 3.932rem;
  }

  body[data-page="2025"] article > section:nth-child(4) p:nth-of-type(3) {
    margin-top: 3.5rem;
  }

  body[data-page="2025"] article > section:nth-child(7) {
    place-items: start center;
    padding: 2.64rem 0 0;
  }

  body[data-page="2025"] article > section:nth-child(7) .feature-block-content {
    width: 100%;
    max-width: none;
  }

  body[data-page="2025"] article > section:nth-child(7) h2 {
    width: min(100%, 61.22rem);
    margin-inline: auto;
  }

  body[data-page="2025"] article > section:nth-child(7) p:first-of-type {
    margin-top: 0.694rem;
  }

  body[data-page="2025"] article > section:nth-child(10) {
    place-items: end center;
    padding-bottom: 0.156rem;
  }

  body[data-page="2025"] article > section:nth-child(10) .feature-block-content {
    width: 30.27rem;
  }

}

@media (min-width: 800px) and (max-width: 1279px) {
  body[data-page="2027"] .year-hero {
    height: calc(14.3376vw + 258.47px);
    min-height: calc(14.3376vw + 258.47px);
  }

  body[data-page="2027"] article > section:nth-child(2) {
    height: calc(32.4145vw + 131.1px);
    min-height: calc(32.4145vw + 131.1px);
  }

  body[data-page="2027"] article > section:nth-child(3) {
    padding-block: 3.3vw;
  }

  body[data-page="2027"] article > section:nth-child(4) {
    min-height: calc(-20.49vw + 954.3px);
  }

  body[data-page="2027"] article > section:nth-child(5) {
    height: calc(25.7051vw + 131.97px);
    min-height: calc(25.7051vw + 131.97px);
  }

  body[data-page="2027"] article > section:nth-child(5) > img {
    inset-block: 1.79vw;
    height: calc(100% - 3.58vw);
  }

  body[data-page="2027"] article > section:nth-child(6) {
    padding-top: calc(1.97vw + 11.1px);
  }

  body[data-page="2027"] article > section:nth-child(7) {
    padding-top: 3.3vw;
    padding-bottom: calc(5.235vw + 11.4px);
  }

  body[data-page="2027"] .read-more {
    height: calc(38.1624vw + 300.5px);
    min-height: calc(38.1624vw + 300.5px);
  }

  .site-footer {
    min-height: calc(3.077vw + 24.62px);
  }
}

@media (max-width: 799px) {
  :root {
    --title: clamp(3.2rem, 15.78872vw, 4.65rem);
    --h2: clamp(2.65rem, 11.89333vw, 4rem);
    --h3: clamp(2.2rem, 10.59487vw, 3rem);
    --body: 1.298rem;
    --body-leading: 1.375;
  }

  .site-header {
    position: fixed;
    display: flex;
    min-height: 5.25rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.45rem 6vw;
  }

  .site-title {
    position: relative;
    z-index: 102;
    max-width: none;
    font-size: 1rem;
    line-height: 1.3;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 2.9375rem;
    height: 2.3125rem;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .menu-label {
    display: none;
  }

  .menu-lines {
    position: relative;
    display: block;
    width: 2.1875rem;
    height: 2.1875rem;
  }

  .menu-lines i {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: top 180ms ease, transform 220ms ease;
  }

  .menu-lines i:first-child {
    top: 0.75rem;
  }

  .menu-lines i:last-child {
    top: 1.4375rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:first-child {
    top: 1.0625rem;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-lines i:last-child {
    top: 1.0625rem;
    transform: rotate(-45deg);
  }

  .menu-toggle:focus-visible {
    outline: none;
  }

  .menu-toggle:focus-visible .menu-lines {
    filter: drop-shadow(0 0 3px currentColor);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 5.25rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    width: 100%;
    max-width: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-content: safe center;
    gap: 1.5rem;
    overflow-y: auto;
    padding: 2.5rem 2rem 0;
    background: var(--black);
    font-size: clamp(2rem, 8.5vw, 3rem);
    line-height: 1;
    opacity: 0;
    justify-self: stretch;
    pointer-events: none;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0;
  }

  .site-nav a:last-child {
    margin-top: 0;
    font-size: inherit;
  }

  .hero,
  .year-hero {
    min-height: 78vh;
  }

  .hero-content {
    padding: 7.5rem 6vw 2rem;
  }

  .hero h1 {
    width: 100%;
    max-width: none;
    overflow-wrap: anywhere;
  }

  body[data-page="2026"] .year-hero .hero-content {
    justify-content: flex-start;
    padding-top: 10.1375rem;
  }

  body[data-page="2026"] .year-hero .hero-content p {
    margin-top: 2rem;
  }

  .intro {
    min-height: 0;
    padding: 5rem 6vw;
  }

  .intro p,
  .story-copy p {
    text-align: justify;
  }

  .futures {
    padding: 4.5rem 6vw;
  }

  .future-grid,
  .image-pair,
  .split-story {
    grid-template-columns: 1fr;
  }

  .future-card:last-child:nth-child(odd) {
    grid-column: auto;
    width: 100%;
  }

  .future-card img {
    min-height: 18rem;
  }

  .story-section {
    padding: 4.5rem 6vw;
  }

  .story-section.is-split {
    padding: 4.5rem 0 0;
  }

  .story-section.is-split .story-copy {
    width: 100%;
    padding-inline: 6vw;
  }

  .story-section.is-split .story-media {
    width: 100%;
    margin-top: 4rem;
  }

  .story-section.is-split .story-media img,
  .story-section.is-split .story-media video {
    width: 100%;
    max-height: none;
  }

  .split-story.reverse .story-copy,
  .split-story.reverse .story-media {
    order: initial;
  }

  .feature-block {
    min-height: 42rem;
  }

  .feature-block.heading-only {
    min-height: 20rem;
    padding: 3.75rem 2.5625rem;
  }

  .read-more {
    padding: 1.75rem 6vw 4rem;
  }

  .read-more > h1,
  .read-more > h2,
  .read-more > nav {
    width: 100%;
  }

  .read-more > h1,
  .read-more > h2 {
    margin-bottom: 1.9rem;
  }

  body[data-page="2025"] .read-more > h2 {
    margin-bottom: 1.18125rem;
  }

  .media-only .image-pair img,
  .media-only .story-media img {
    height: 22rem;
  }

  body[data-page="2025"] .year-hero,
  body[data-page="2026"] .year-hero {
    min-height: 45.75rem;
  }

  body[data-page="2025"] .year-hero {
    height: 44.922rem;
    min-height: 44.922rem;
  }

  body[data-page="2025"] .year-hero .hero-content {
    justify-content: flex-start;
    padding-top: 9.325rem;
  }

  body[data-page="2025"] .year-hero .hero-content p {
    margin-top: 2rem;
  }

  body[data-page="2025"] article > section:nth-child(1) {
    height: 75.356rem;
    min-height: 75.356rem;
    padding: 0;
  }

  body[data-page="2025"] article > section:nth-child(1) .story-copy {
    position: absolute;
    top: 30.244rem;
    left: 1.4625rem;
    width: 21.45rem;
  }

  body[data-page="2025"] article > section:nth-child(1) .story-media {
    position: absolute;
    top: 9.556rem;
    left: 1.4625rem;
    width: 21.45rem;
    height: 14.3625rem;
    margin: 0;
  }

  body[data-page="2025"] article > section:nth-child(1) .story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page="2025"] article > section:nth-child(2) {
    height: 77.1875rem;
    min-height: 77.1875rem;
    padding: 0;
  }

  body[data-page="2025"] article > section:nth-child(2) .story-copy {
    position: absolute;
    top: 1.5rem;
    left: 1.4625rem;
    width: 21.45rem;
  }

  body[data-page="2025"] article > section:nth-child(2) .story-media {
    position: absolute;
    top: 58.00625rem;
    left: 10.4vw;
    width: 79.2vw;
    height: 14.3625rem;
    margin: 0;
  }

  body[data-page="2025"] article > section:nth-child(2) .story-media img {
    position: absolute;
    top: 5%;
    left: 0;
    width: 100%;
    height: 90%;
    max-height: none;
    object-fit: cover;
  }

  body[data-page="2025"] article > section:nth-child(3) {
    height: 103.356rem;
    min-height: 103.356rem;
    padding: 0;
  }

  body[data-page="2025"] article > section:nth-child(3) .story-copy {
    position: absolute;
    top: 1.5rem;
    left: 1.4625rem;
    width: 21.45rem;
  }

  body[data-page="2025"] article > section:nth-child(3) .image-pair {
    position: absolute;
    top: 47.622rem;
    left: 0;
    display: block;
    width: 100%;
    height: 54rem;
    margin: 0;
  }

  body[data-page="2025"] article > section:nth-child(3) .image-pair img {
    position: absolute;
    left: 5%;
    width: 90%;
    height: 24.3rem;
    min-height: 0;
    object-fit: cover;
  }

  body[data-page="2025"] article > section:nth-child(3) .image-pair img:first-child {
    top: 1.35rem;
  }

  body[data-page="2025"] article > section:nth-child(3) .image-pair img:nth-child(2) {
    top: 28.35rem;
  }

  body[data-page="2025"] article > section:nth-child(4) {
    height: 93.678rem;
    min-height: 93.678rem;
    place-items: start center;
    padding: 1.875rem 0 0;
  }

  body[data-page="2025"] article > section:nth-child(4) .feature-block-content {
    display: flex;
    width: 100%;
    max-width: none;
    flex-direction: column;
  }

  body[data-page="2025"] article > section:nth-child(4) h1 {
    width: 21.45rem;
    margin-inline: auto;
  }

  body[data-page="2025"] article > section:nth-child(4) p {
    width: 21.45rem;
    margin-right: auto;
    margin-left: auto;
    text-align: justify;
  }

  body[data-page="2025"] article > section:nth-child(4) p:first-of-type {
    margin-top: 1.15rem;
  }

  body[data-page="2025"] article > section:nth-child(4) p:nth-of-type(2) {
    margin-top: calc(1.5em + 2rem);
  }

  body[data-page="2025"] article > section:nth-child(4) p:nth-of-type(3) {
    margin-top: 3.5rem;
  }

  body[data-page="2025"] article > section:nth-child(5) {
    height: 43.044rem;
    min-height: 43.044rem;
    padding-inline: 6vw;
  }

  body[data-page="2025"] article > section:nth-child(5) .quote-band-art {
    inset: 0;
  }

  body[data-page="2025"] article > section:nth-child(5) .quote-band-art img:first-child {
    top: 5%;
    left: 2.43%;
    width: 43.73%;
    height: 90%;
  }

  body[data-page="2025"] article > section:nth-child(5) .quote-band-art img:last-child {
    top: 5%;
    right: 3.05%;
    width: 53.95%;
    height: 90%;
  }

  body[data-page="2025"] article > section:nth-child(5) h2 {
    top: -1.8125rem;
    width: 100%;
  }

  body[data-page="2025"] article > section:nth-child(6) {
    min-height: 178.475rem;
    padding-block: 1.75rem;
  }

  body[data-page="2025"] article > section:nth-child(6) .story-copy > p:nth-of-type(-n + 4) {
    margin-bottom: 3.5rem;
  }

  body[data-page="2025"] article > section:nth-child(7) {
    height: 60.915rem;
    min-height: 60.915rem;
    place-items: start center;
    padding: 6.116rem 0 0;
  }

  body[data-page="2025"] article > section:nth-child(7) .feature-block-content {
    width: 100%;
    max-width: none;
  }

  body[data-page="2025"] article > section:nth-child(7) h2 {
    width: 15.91rem;
    margin-inline: auto;
  }

  body[data-page="2025"] article > section:nth-child(7) p {
    width: 21.45rem;
    margin: 4.234rem auto 0;
    text-align: justify;
  }

  body[data-page="2025"] article > section:nth-child(8) {
    min-height: 68.428rem;
    overflow: visible;
  }

  body[data-page="2025"] article > section:nth-child(8) > .story-background-media,
  body[data-page="2025"] article > section:nth-child(8)::before {
    top: -6vw;
    height: calc(100% + 6vw);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 9 C10 9 17 0 28 1 S45 8 55 7 S72 0 84 3 S94 9 100 8 V100 H0 Z'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 9 C10 9 17 0 28 1 S45 8 55 7 S72 0 84 3 S94 9 100 8 V100 H0 Z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: 100% 100%;
  }

  body[data-page="2025"] article > section:nth-child(9) {
    min-height: 145.557rem;
    padding: 3.24rem 0 0;
  }

  body[data-page="2025"] article > section:nth-child(9) .story-copy {
    width: 100%;
    padding-inline: 1.4625rem;
  }

  body[data-page="2025"] article > section:nth-child(9) .split-story {
    position: static;
  }

  body[data-page="2025"] article > section:nth-child(9) .story-media {
    position: absolute;
    bottom: 2.49375rem;
    left: 5%;
    width: 90%;
    height: 13.5rem;
    margin: 0;
  }

  body[data-page="2025"] article > section:nth-child(9) .story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page="2025"] article > section:nth-child(10) {
    height: 38.793rem;
    min-height: 38.793rem;
    place-items: start center;
    padding: 0;
  }

  body[data-page="2025"] article > section:nth-child(10) .feature-collage img:first-child {
    top: 10.1375rem;
    left: 10.4%;
    width: 79.2%;
    height: 24.975rem;
  }

  body[data-page="2025"] article > section:nth-child(10) .feature-collage img:nth-child(2) {
    top: 0.625rem;
    left: 20.62%;
    width: 58.77%;
    height: 11.194rem;
  }

  body[data-page="2025"] article > section:nth-child(10) .feature-block-content {
    position: absolute;
    top: 17.5rem;
    width: 21.45rem;
  }

  body[data-page="2025"] article > section:nth-child(11) {
    height: 126.467rem;
    min-height: 126.467rem;
    padding: 0;
  }

  body[data-page="2025"] article > section:nth-child(11) > .story-media img {
    top: 4.331rem;
    left: 10.4%;
    width: 79.2%;
    height: 12.925rem;
  }

  body[data-page="2025"] article > section:nth-child(11) .story-copy {
    position: absolute;
    top: 18.794rem;
    left: 1.4625rem;
    width: 21.45rem;
  }

  body[data-page="2025"] .read-more {
    height: 47.175rem;
    min-height: 47.175rem;
  }

  body[data-page="2026"] article > section:nth-child(1) {
    height: auto;
    min-height: 166.026rem;
    padding: 28.5rem 1.4625rem 1.5rem;
  }

  body[data-page="2026"] article > section:nth-child(1) > .story-background-media,
  body[data-page="2026"] article > section:nth-child(1).has-background::before {
    top: 0;
    bottom: auto;
    height: 27rem;
  }

  body[data-page="2026"] article > section:nth-child(1) .story-copy > p:first-of-type {
    margin-bottom: 3.5rem;
  }

  body[data-page="2026"] article > section:nth-child(1) .story-copy > p:nth-of-type(2) {
    margin-bottom: 1rem;
  }

  body[data-page="2026"] article > section:nth-child(1) .story-list + p {
    margin-top: 3.5rem;
  }

  body[data-page="2026"] article > section:nth-child(2) {
    height: 22.079rem;
    min-height: 22.079rem;
    place-items: start;
    padding: 1.741rem 0 0 1.4625rem;
  }

  body[data-page="2026"] article > section:nth-child(2) .feature-block-content {
    top: 0;
    width: 13.149rem;
    max-width: none;
  }

  body[data-page="2026"] article > section:nth-child(2) h1 {
    transform: none;
  }

  body[data-page="2026"] article > section:nth-child(3) {
    height: 125.954rem;
    min-height: 125.954rem;
    padding-block: 3.616rem 1.741rem;
  }

  body[data-page="2026"] article > section:nth-child(3) .story-copy > p:first-of-type {
    margin-bottom: 3.5rem;
  }

  body[data-page="2026"] article > section:nth-child(3) .story-copy > p:nth-of-type(2) {
    margin-bottom: 1rem;
  }

  body[data-page="2026"] article > section:nth-child(4) {
    height: 32.632rem;
    min-height: 32.632rem;
    place-items: center;
    padding-inline: 0;
  }

  body[data-page="2026"] article > section:nth-child(4) .quote-band-art {
    inset: 0;
  }

  body[data-page="2026"] article > section:nth-child(4) .quote-band-art img:first-child {
    left: 0;
    width: 48.59%;
  }

  body[data-page="2026"] article > section:nth-child(4) .quote-band-art img:last-child {
    right: 0;
    width: 59.95%;
  }

  body[data-page="2026"] article > section:nth-child(4) h2 {
    width: 100%;
    max-width: none;
    padding: 1.4625rem;
  }

  body[data-page="2026"] article > section:nth-child(5) {
    height: 116.24rem;
    min-height: 116.24rem;
    padding-block: 2.1875rem 0;
  }

  body[data-page="2026"] article > section:nth-child(5) .story-copy > p:nth-of-type(2) {
    margin-bottom: 1rem;
  }

  body[data-page="2026"] article > section:nth-child(6) {
    height: 136.486rem;
    min-height: 136.486rem;
    padding: 0;
  }

  body[data-page="2026"] article > section:nth-child(6) .story-copy {
    position: absolute;
    top: 6.116rem;
    left: 6vw;
    width: 88vw;
  }

  body[data-page="2026"] article > section:nth-child(6) .story-copy > p:first-of-type {
    margin-bottom: 1rem;
  }

  body[data-page="2026"] article > section:nth-child(6) > .story-media {
    position: absolute;
    top: 91.683rem;
    left: 6vw;
    width: 88vw;
    height: 43.0625rem;
    margin: 0;
    align-items: start;
  }

  body[data-page="2026"] article > section:nth-child(6) > .story-media video {
    width: 100%;
    height: 37.806rem;
    max-height: none;
    object-fit: contain;
  }

  body[data-page="2026"] article > section:nth-child(7) {
    height: 109.998rem;
    min-height: 109.998rem;
    padding-block: 4.375rem 1.4625rem;
  }

  body[data-page="2026"] article > section:nth-child(8) {
    height: 121.2125rem;
    min-height: 121.2125rem;
    padding: 1.5rem 0 21rem;
  }

  body[data-page="2026"] article > section:nth-child(8) .split-story {
    position: static;
  }

  body[data-page="2026"] article > section:nth-child(8) .story-media {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 21rem;
    margin: 0;
    padding: 0;
  }

  body[data-page="2026"] article > section:nth-child(8) .story-media img {
    position: absolute;
    top: 1.05rem;
    left: 5%;
    width: 90%;
    height: 18.9rem;
    object-fit: cover;
  }

  body[data-page="2026"] .read-more {
    height: 44.175rem;
    min-height: 44.175rem;
  }

  body[data-page="2027"] .year-hero {
    min-height: 33.4375rem;
  }

  body[data-page="2028"] .year-hero {
    min-height: 43.125rem;
  }

  body[data-page="2027"] article > section:nth-child(2) {
    height: 19.875rem;
    min-height: 19.875rem;
    overflow: hidden;
  }

  body[data-page="2027"] article > section:nth-child(2).align-left {
    padding-inline: 1.4375rem;
  }

  body[data-page="2027"] article > section:nth-child(2) .feature-block-content {
    width: min(100%, 19.35rem);
  }

  body[data-page="2027"] article > section:nth-child(1) {
    min-height: 345rem;
    padding-block: 1.5rem;
  }

  body[data-page="2027"] article > section:nth-child(1) .story-copy > p:nth-of-type(-n + 4),
  body[data-page="2027"] article > section:nth-child(1) .story-copy > p:nth-of-type(10) {
    margin-bottom: 1rem;
  }

  body[data-page="2027"] article > section:nth-child(3) {
    min-height: 117rem;
    padding-block: 2.68rem;
  }

  body[data-page="2027"] article > section:nth-child(4) {
    min-height: 85.5rem;
    padding-block: 4.07rem;
  }

  body[data-page="2027"] article > section:nth-child(5) {
    min-height: 25.5625rem;
  }

  body[data-page="2027"] article > section:nth-child(5).align-left {
    padding: 0;
    place-items: start start;
    padding-top: 6.5625rem;
  }

  body[data-page="2027"] article > section:nth-child(5) > img {
    top: 5%;
    right: 3%;
    bottom: auto;
    left: auto;
    width: 53.95%;
    height: 90%;
  }

  body[data-page="2027"] article > section:nth-child(5) .feature-block-content {
    width: 100%;
    height: 12.4375rem;
    max-width: none;
    padding: 1.4625rem;
    box-shadow: none;
    text-align: left;
  }

  body[data-page="2029"] article > section:nth-child(1) {
    padding: 28.5rem 1.4375rem 4rem;
  }

  body[data-page="2029"] article > section:nth-child(1) > .story-background-media,
  body[data-page="2029"] article > section:nth-child(1).has-background::before {
    top: 0;
    bottom: auto;
    height: 27rem;
  }

  body[data-page="2029"] article > section:nth-child(4) {
    height: 25.5625rem;
    min-height: 25.5625rem;
    padding: 0;
  }

  body[data-page="2029"] article > section:nth-child(4) .image-pair {
    position: absolute;
    top: 1.278rem;
    right: 0;
    bottom: auto;
    left: 0;
    display: block;
    width: 100%;
    height: 23.006rem;
    margin: 0;
  }

  body[data-page="2029"] article > section:nth-child(4) .image-pair img {
    position: absolute;
    top: 0;
    height: 100%;
    min-height: 0;
  }

  body[data-page="2029"] article > section:nth-child(4) .image-pair img:first-child {
    right: 3%;
    left: auto;
    width: 53.95%;
  }

  body[data-page="2029"] article > section:nth-child(4) .image-pair img:nth-child(2) {
    right: auto;
    left: 2.43%;
    width: 43.73%;
  }

  body[data-page="2029"] .year-hero {
    min-height: 41.6375rem;
  }

  body[data-page="2029"] .year-hero h1 {
    max-width: 100%;
  }

  body[data-page="2029"] .year-hero .hero-content {
    justify-content: flex-start;
    padding: 10.14rem 1.4375rem 0;
  }

  body[data-page="2029"] .year-hero .hero-content p {
    margin-top: 2rem;
  }

  body[data-page="2029"] article > section:nth-child(2),
  body[data-page="2029"] article > section:nth-child(8) {
    height: 24.5375rem;
    min-height: 24.5375rem;
    padding-inline: 0;
  }

  body[data-page="2029"] article > section:nth-child(2) .feature-block-content,
  body[data-page="2029"] article > section:nth-child(8) .feature-block-content {
    max-width: none;
    margin-inline: auto;
    padding: 0;
  }

  body[data-page="2029"] article > section:nth-child(2) .feature-block-content {
    width: 21.6875rem;
  }

  body[data-page="2029"] article > section:nth-child(8) .feature-block-content {
    width: 22.5625rem;
  }

  body[data-page="2029"] article > section:nth-child(2) h1 {
    padding-inline: 0.52rem;
    overflow-wrap: anywhere;
    line-height: 1.077;
  }

  body[data-page="2029"] article > section:nth-child(8) h1 {
    line-height: 1.12;
  }

  body[data-page="2029"] article > section:nth-child(3) {
    padding-block: 2.675rem;
  }

  body[data-page="2029"] article > section:nth-child(5) {
    padding-block: 2.1875rem;
  }

  body[data-page="2029"] article > section:nth-child(5) .story-copy > p:nth-of-type(-n + 2) {
    margin-bottom: 1rem;
  }

  body[data-page="2029"] article > section:nth-child(5) .story-list + p {
    margin-top: 5.57rem;
  }

  body[data-page="2029"] article > section:nth-child(6) {
    padding-top: 28.5rem;
    padding-bottom: 4rem;
  }

  body[data-page="2029"] article > section:nth-child(6) > .story-background-media,
  body[data-page="2029"] article > section:nth-child(6).has-background::before {
    top: 1.35rem;
    right: 5%;
    bottom: auto;
    left: 5%;
    width: 90%;
    height: 24.3rem;
  }

  body[data-page="2029"] article > section:nth-child(7) {
    min-height: 101.6125rem;
    padding: 1.5rem 0 0;
  }

  body[data-page="2029"] article > section:nth-child(7) .story-media {
    position: absolute;
    bottom: 1.05rem;
    left: 5%;
    width: 90%;
    height: 18.9rem;
    margin: 0;
  }

  body[data-page="2029"] article > section:nth-child(7) .story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page="2029"] article > section:nth-child(9) {
    padding-block: 1.5rem 4.275rem;
  }

  body[data-page="2029"] article > section:nth-child(10) {
    padding-block: 1.5rem 3rem;
  }

  body[data-page="2029"] .read-more {
    height: 44.175rem;
    min-height: 44.175rem;
  }

  body[data-page="2027"] article > section:nth-child(6) {
    min-height: 132.3125rem;
    padding-block: 1.5rem 2.5rem;
  }

  body[data-page="2027"] article > section:nth-child(7) {
    min-height: 195rem;
    padding-block: 6.116rem 1.741rem;
  }

  body[data-page="2028"] article > section:nth-child(1) {
    min-height: 144.4375rem;
    padding-block: 1.5rem;
  }

  body[data-page="2028"] article > section:nth-child(1) .story-copy > p:nth-of-type(3) {
    margin-bottom: 3.5rem;
  }

  body[data-page="2028"] article > section:nth-child(2) {
    min-height: 106.5rem;
  }

  body[data-page="2028"] article > section:nth-child(2) .story-media {
    position: absolute;
    bottom: 1.05rem;
    left: 5%;
    width: 90%;
    height: 18.9rem;
    margin: 0;
  }

  body[data-page="2028"] article > section:nth-child(2) .story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body[data-page="2028"] article > section:nth-child(3) {
    min-height: 263.625rem;
    padding-block: 1.5rem;
  }

  body[data-page="2028"] article > section:nth-child(4) {
    height: 18.125rem;
    min-height: 18.125rem;
    overflow: hidden;
    padding-block: 2.9rem;
  }

  body[data-page="2028"] article > section:nth-child(5) {
    min-height: 153.25rem;
    padding-block: 2.68rem;
  }

  body[data-page="2028"] article > section:nth-child(5) .story-copy > p:nth-of-type(3) {
    margin-bottom: 1rem;
  }

  body[data-page="2028"] article > section:nth-child(6) {
    min-height: 207.875rem;
  }

  body[data-page="2028"] article > section:nth-child(6) .story-copy > p:nth-of-type(1),
  body[data-page="2028"] article > section:nth-child(6) .story-copy > p:nth-of-type(3) {
    margin-bottom: 1rem;
  }

  body[data-page="2028"] article > section:nth-child(6) .story-copy > p:nth-of-type(n + 4):not(:last-child) {
    margin-bottom: 0.5em;
  }

  body[data-page="2028"] article > section:nth-child(7) {
    height: 25.5625rem;
    min-height: 25.5625rem;
    padding: 0;
  }

  body[data-page="2028"] article > section:nth-child(7) .story-media,
  body[data-page="2028"] article > section:nth-child(7) .story-media img {
    height: 100%;
  }

  body[data-page="2028"] article > section:nth-child(8) {
    min-height: 99.1875rem;
  }

  body[data-page="2027"] .read-more {
    height: 50.1875rem;
    min-height: 50.1875rem;
  }

  body[data-page="2028"] .read-more {
    height: 47.1875rem;
    min-height: 47.1875rem;
    transform: translateY(-0.8625rem);
  }

  .site-footer {
    min-height: 14.75rem;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 6vw;
  }

  .footer-logo img {
    width: min(100%, 14.75rem);
  }

  .site-footer > a {
    justify-self: center;
    transform: none;
  }
}

@media (max-width: 359px) {
  body[data-page="2026"] article > section:nth-child(6) {
    height: auto;
    min-height: 136.486rem;
    padding: 6.116rem 0 1.5rem;
  }

  body[data-page="2026"] article > section:nth-child(6) .story-copy,
  body[data-page="2026"] article > section:nth-child(6) > .story-media {
    position: relative;
    top: auto;
    left: auto;
    width: 88vw;
    height: auto;
    margin-right: auto;
    margin-left: auto;
  }

  body[data-page="2026"] article > section:nth-child(6) > .story-media {
    margin-top: 4rem;
  }

  body[data-page="2026"] article > section:nth-child(6) > .story-media video {
    height: auto;
    aspect-ratio: 9 / 16;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
