:root {
  --blue: #06429d;
  --blue-ink: #052f70;
  --sky: #83a8e8;
  --orange: #fe7801;
  --cream: #fbf3d0;
  --paper: #f7f6f1;
  --ink: #172237;
  --muted: #586273;
  --line: #cdd4de;
  --display: "Arial Rounded MT Bold", "SF Pro Rounded", "Avenir Next", sans-serif;
  --body: "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content: 1180px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
::selection { background: var(--orange); color: #172237; }

.splash { display: none; }

.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--cream);
  color: var(--blue-ink);
  font-weight: 700;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px max(24px, calc((100vw - var(--content)) / 2));
  background: rgba(247, 246, 241, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms ease, box-shadow 240ms ease, background-color 240ms ease;
}
.site-header::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: linear-gradient(90deg, var(--orange), var(--blue)); transform: scaleX(var(--scroll-progress, 0)); transform-origin: left; transition: transform 80ms linear; }
.site-header.is-scrolled { border-color: var(--line); background: rgba(247, 246, 241, 0.9); box-shadow: 0 8px 28px rgba(5, 47, 112, 0.08); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; transition: transform 450ms var(--ease-out), filter 450ms ease; }
.brand:hover img { transform: rotate(-5deg) scale(1.06); filter: drop-shadow(0 7px 8px rgba(5, 47, 112, 0.12)); }
.brand span { display: grid; line-height: 1.05; }
.brand strong { color: var(--blue); font-family: var(--display); font-size: 1.15rem; }
.brand small { margin-top: 4px; color: var(--muted); font-size: 0.78rem; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { position: relative; text-decoration: none; font-size: 0.91rem; font-weight: 700; }
.main-nav a::after { content: ""; position: absolute; right: 0; bottom: -8px; left: 0; height: 2px; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform 380ms var(--ease-out); }
.main-nav a:hover::after, .main-nav a:focus-visible::after, .main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--blue); }
.main-nav a:active { color: var(--blue); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 11px 8px; border: 1px solid var(--line); background: transparent; color: var(--ink); }
.menu-toggle span:not(.sr-only) { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform 160ms ease; }

.hero {
  position: relative;
  min-height: min(780px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  background: var(--blue);
}
.hero::after { content: ""; position: absolute; inset: 0 48% 0 0; z-index: 1; background: var(--blue); }
.hero-copy { position: relative; z-index: 2; width: min(56%, 760px); margin-left: max(24px, calc((100vw - var(--content)) / 2)); padding: 72px 42px 74px 0; }
.eyebrow { margin: 0 0 22px; color: var(--blue); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; }
.hero .eyebrow { color: var(--sky); }
.hero h1 { max-width: 740px; margin: 0; color: var(--cream); font-family: var(--display); font-size: clamp(3.8rem, 5vw, 5rem); line-height: 0.98; letter-spacing: -0.055em; text-wrap: balance; }
.hero-lead { max-width: 610px; margin: 30px 0 0; color: #e6edfa; font-size: clamp(1.1rem, 1.7vw, 1.35rem); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button { position: relative; display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 20px; overflow: hidden; border: 2px solid transparent; border-radius: 4px; text-decoration: none; font-size: 0.92rem; font-weight: 800; transition: background 260ms ease, color 260ms ease, transform 300ms var(--ease-out), border-color 260ms ease, box-shadow 300ms ease; }
.button::after { content: ""; position: absolute; inset: -50% auto -50% -35%; width: 28%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent); transform: skewX(-18deg) translateX(-220%); transition: transform 650ms var(--ease-out); }
.button:hover::after { transform: skewX(-18deg) translateX(620%); }
.button-primary { background: var(--orange); color: var(--blue-ink); }
.button-primary:hover { background: var(--cream); box-shadow: 0 12px 24px rgba(3, 29, 70, 0.2); transform: translateY(-3px); }
.button-primary:active { transform: translateY(0); }
.text-link { padding: 7px 0; color: var(--cream); font-weight: 800; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.text-link span { display: inline-block; transition: transform 320ms var(--ease-out); }
.text-link:hover { color: var(--orange); }
.text-link:hover span { transform: translateY(4px); }
.hero-note { max-width: 570px; margin: 36px 0 0; padding-top: 18px; border-top: 1px solid rgba(251, 243, 208, 0.32); color: #cdd9ec; font-size: 0.92rem; }
.hero-note strong { color: var(--cream); }
.hero-media { position: absolute; z-index: 0; inset: 0; overflow: hidden; pointer-events: none; }
.hero-image { position: absolute; top: 50%; right: -4vw; width: min(58vw, 940px); height: auto; transform: translate3d(var(--hero-shift-x, 0px), calc(-50% + var(--hero-shift-y, 0px)), 0); object-fit: contain; will-change: transform; transition: transform 900ms var(--ease-out); }

.facts { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--content); margin: 0 auto; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts p { min-height: 120px; margin: 0; padding: 28px 24px; border-right: 1px solid var(--line); }
.facts p:first-child { padding-left: 0; }
.facts p:last-child { border-right: 0; }
.facts strong, .facts span { display: block; }
.facts strong { color: var(--blue); font-family: var(--display); font-size: 1.45rem; line-height: 1.2; }
.facts span { margin-top: 7px; color: var(--muted); font-size: 0.88rem; line-height: 1.35; }

.section { max-width: var(--content); margin: 0 auto; padding: 112px 0; }
.section-kicker { margin-bottom: 36px; color: var(--orange); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.section h2, .closing h2 { margin: 0; color: var(--blue-ink); font-family: var(--display); font-size: clamp(2.35rem, 4.5vw, 4.4rem); line-height: 1.05; letter-spacing: -0.045em; }
.purpose-grid { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 90px; align-items: start; }
.body-copy p { margin: 0 0 22px; font-size: 1.08rem; }
.objective-line { display: grid; grid-template-columns: 180px 1fr; gap: 50px; margin-top: 72px; padding: 34px 0; border-top: 2px solid var(--blue); border-bottom: 1px solid var(--line); }
.objective-line span { color: var(--blue); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.objective-line p { max-width: 850px; margin: 0; font-size: 1.35rem; font-weight: 600; line-height: 1.5; }

.journey { max-width: none; padding-right: max(24px, calc((100vw - var(--content)) / 2)); padding-left: max(24px, calc((100vw - var(--content)) / 2)); background: var(--blue-ink); color: var(--cream); }
.journey .section-kicker { color: var(--orange); }
.section-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 70px; align-items: end; margin-bottom: 64px; }
.journey h2 { color: var(--cream); }
.section-heading > p { max-width: 420px; margin: 0; color: #dfe8fb; font-size: 1.06rem; }
.journey-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(251, 243, 208, 0.28); }
.journey-list li { display: grid; grid-template-columns: 75px 1fr 150px; gap: 24px; align-items: start; padding: 36px 0; border-bottom: 1px solid rgba(251, 243, 208, 0.28); transition: background-color 350ms ease, padding 450ms var(--ease-out); }
.journey-list li:hover { padding-right: 20px; padding-left: 20px; background: rgba(255, 255, 255, 0.045); }
.journey-number { color: var(--orange); font-family: var(--display); font-size: 1.55rem; }
.journey-list h3 { margin: 0 0 8px; color: var(--cream); font-family: var(--display); font-size: 1.62rem; }
.journey-list p { max-width: 720px; margin: 0; color: #dfe8fb; }
.journey-tag { justify-self: end; padding-top: 6px; color: var(--sky); font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; }

.participate-layout { display: grid; grid-template-columns: 1fr 0.82fr; gap: 100px; align-items: start; }
.participate-layout > div > p { max-width: 660px; margin: 26px 0 0; color: var(--muted); font-size: 1.08rem; }
.participate ul { margin: 8px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.participate li { padding: 16px 0; border-bottom: 1px solid var(--line); font-weight: 650; }
.participate li { transition: color 250ms ease, transform 350ms var(--ease-out); }
.participate li::before { content: "→"; display: inline-block; width: 30px; color: var(--orange); transition: transform 350ms var(--ease-out); }
.participate li:hover { color: var(--blue); transform: translateX(4px); }
.participate li:hover::before { transform: translateX(4px); }

.principles { max-width: none; padding-right: max(24px, calc((100vw - var(--content)) / 2)); padding-left: max(24px, calc((100vw - var(--content)) / 2)); background: var(--cream); }
.principles-intro { display: grid; grid-template-columns: 1fr 0.85fr; gap: 90px; align-items: end; }
.principles-intro p { margin: 0; font-size: 1.12rem; }
.principle-list { margin: 68px 0 0; border-top: 2px solid var(--blue); }
.principle-list > div { display: grid; grid-template-columns: 0.32fr 0.68fr; gap: 50px; padding: 22px 0; border-bottom: 1px solid rgba(6, 66, 157, 0.28); transition: padding 420ms var(--ease-out), background-color 300ms ease; }
.principle-list > div:hover { padding-right: 18px; padding-left: 18px; background: rgba(255, 255, 255, 0.42); }
.principle-list dt { color: var(--blue); font-family: var(--display); font-size: 1.25rem; }
.principle-list dd { margin: 0; }
.principles-note { max-width: 830px; margin: 38px 0 0 32%; color: var(--muted); font-size: 0.94rem; }

.calendar { max-width: none; padding-right: max(24px, calc((100vw - var(--content)) / 2)); padding-left: max(24px, calc((100vw - var(--content)) / 2)); }
.calendar-layout { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 80px; }
.calendar-heading > p { max-width: 430px; margin: 26px 0 0; color: var(--muted); }
.timeline { display: grid; grid-template-columns: 220px 1fr; border-top: 2px solid var(--blue); border-bottom: 1px solid var(--line); }
.timeline-tabs { display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.timeline-tabs button { position: relative; width: 100%; min-height: 94px; padding: 18px 20px; overflow: hidden; border: 0; border-bottom: 1px solid var(--line); background: transparent; color: var(--ink); text-align: left; cursor: pointer; transition: background 280ms ease, color 280ms ease, padding 380ms var(--ease-out); }
.timeline-tabs button::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 4px; background: var(--orange); transform: scaleY(0); transform-origin: bottom; transition: transform 420ms var(--ease-out); }
.timeline-tabs button:last-child { border-bottom: 0; }
.timeline-tabs button:hover { background: #eef1f5; }
.timeline-tabs button:active { background: #e1e7ef; }
.timeline-tabs button[aria-selected="true"] { padding-left: 25px; background: var(--blue); color: var(--cream); }
.timeline-tabs button[aria-selected="true"]::before { transform: scaleY(1); }
.timeline-tabs button:disabled { color: #8a929e; cursor: not-allowed; }
.timeline-tabs span, .timeline-tabs small { display: block; }
.timeline-tabs span { font-family: var(--display); font-size: 1.1rem; }
.timeline-tabs small { margin-top: 5px; opacity: 0.78; font-size: 0.73rem; }
.timeline-panels { min-height: 418px; padding: 34px 38px; background: #fff; }
.timeline-panels section { animation: panel-in 520ms var(--ease-out) both; }
.timeline-panels section > * { animation: panel-detail-in 560ms var(--ease-out) both; }
.timeline-panels section > *:nth-child(2) { animation-delay: 50ms; }
.timeline-panels section > *:nth-child(3) { animation-delay: 100ms; }
.timeline-panels section > *:nth-child(4) { animation-delay: 150ms; }
@keyframes panel-in { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
@keyframes panel-detail-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.panel-month { margin: 0 0 16px; color: var(--orange); font-size: 0.75rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.timeline-panels h3 { max-width: 520px; margin: 0; color: var(--blue-ink); font-family: var(--display); font-size: 1.75rem; line-height: 1.18; }
.timeline-panels ul { margin: 24px 0 0; padding-left: 20px; }
.timeline-panels li { margin-bottom: 8px; }
.timeline-panels li::marker { color: var(--orange); }
.panel-result { margin: 26px 0 0; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.9rem; }

.future { max-width: none; padding: 0; background: var(--sky); }
.future-copy { width: min(var(--content), calc(100% - 48px)); max-width: 980px; margin: 0 auto; padding: 104px 0; }
.future-copy h2 { color: var(--blue-ink); }
.future-copy p { max-width: 760px; margin: 28px 0 0; font-size: 1.08rem; }

.stewardship { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 90px; }
.stewardship h2 { font-size: clamp(2.15rem, 3.8vw, 3.6rem); }
.stewardship-copy p { margin: 0 0 24px; font-size: 1.04rem; }

.closing { display: grid; grid-template-columns: 190px 1fr; gap: 58px; align-items: center; padding: 92px max(24px, calc((100vw - var(--content)) / 2)); background: var(--blue); color: var(--cream); }
.closing img { width: 168px; height: 168px; object-fit: contain; }
.closing .eyebrow { color: var(--sky); }
.closing h2 { max-width: 900px; color: var(--cream); font-size: clamp(2.1rem, 4vw, 4rem); }
.button-light { margin-top: 32px; border-color: var(--cream); color: var(--cream); }
.button-light:hover { background: var(--cream); color: var(--blue-ink); box-shadow: 0 12px 28px rgba(3, 29, 70, 0.24); transform: translateY(-3px); }
.button-light:active { transform: translateY(0); }

footer { display: flex; justify-content: space-between; gap: 30px; padding: 28px max(24px, calc((100vw - var(--content)) / 2)); background: var(--blue-ink); color: var(--cream); font-size: 0.82rem; }
footer p { margin: 0; }
footer strong, footer span { display: block; }
footer span { color: var(--sky); }

/* A single, quiet motion language for page entry and scroll discovery. */
.motion-ready:not(.splash-open) .hero-copy > * { animation: hero-copy-in 820ms var(--ease-out) both; }
.motion-ready:not(.splash-open) .hero-copy > *:nth-child(1) { animation-delay: 80ms; }
.motion-ready:not(.splash-open) .hero-copy > *:nth-child(2) { animation-delay: 150ms; }
.motion-ready:not(.splash-open) .hero-copy > *:nth-child(3) { animation-delay: 230ms; }
.motion-ready:not(.splash-open) .hero-copy > *:nth-child(4) { animation-delay: 310ms; }
.motion-ready:not(.splash-open) .hero-copy > *:nth-child(5) { animation-delay: 390ms; }
.motion-ready:not(.splash-open) .hero-media { animation: hero-art-in 1100ms var(--ease-out) 160ms both; }

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 720ms var(--ease-out), transform 820ms var(--ease-out);
  transition-delay: min(calc(var(--reveal-order, 0) * 70ms), 280ms);
}
.motion-ready [data-reveal="line"] { transform: scaleX(0.94); transform-origin: left center; }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0) scaleX(1); }

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-art-in {
  from { opacity: 0; transform: scale(0.975); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1080px) {
  :root { --content: calc(100vw - 48px); }
  .hero-copy { width: 58%; padding-right: 36px; }
  .hero h1 { font-size: clamp(3.3rem, 6.5vw, 4.35rem); }
  .hero-image { right: -10vw; width: 68vw; }
  .purpose-grid, .principles-intro, .participate-layout, .calendar-layout, .stewardship { gap: 54px; }
  .calendar-layout { grid-template-columns: 0.65fr 1.35fr; }
  .timeline { grid-template-columns: 180px 1fr; }
  .future-copy { padding-left: 58px; }
}

@media (max-width: 820px) {
  html { scroll-padding-top: 72px; }
  .site-header { min-height: 64px; }
  .menu-toggle { display: block; }
  .menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span[aria-hidden="true"]:nth-of-type(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .main-nav { position: absolute; top: 64px; right: 0; left: 0; display: grid; align-items: stretch; gap: 0; padding: 10px 24px 22px; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 12px 24px rgba(5, 47, 112, 0.08); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-10px); transform-origin: top; transition: opacity 260ms ease, visibility 260ms ease, transform 380ms var(--ease-out); }
  .main-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .main-nav a { opacity: 0; transform: translateY(-5px); transition: opacity 260ms ease, transform 380ms var(--ease-out); }
  .main-nav.is-open a { opacity: 1; transform: translateY(0); }
  .main-nav.is-open a:nth-child(2) { transition-delay: 35ms; }
  .main-nav.is-open a:nth-child(3) { transition-delay: 70ms; }
  .main-nav.is-open a:nth-child(4) { transition-delay: 105ms; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; display: block; padding: 0; }
  .hero::after { display: none; }
  .hero-copy { width: auto; max-width: 680px; margin: 0; padding: 56px 24px 44px; }
  .hero h1 { max-width: 720px; }
  .hero-media { display: none; }
  .facts { grid-template-columns: 1fr 1fr; margin: 0 24px; }
  .facts p, .facts p:first-child { padding: 24px 20px; border-bottom: 1px solid var(--line); }
  .facts p:nth-child(2) { border-right: 0; }
  .section { padding: 84px 24px; }
  .purpose-grid, .section-heading, .participate-layout, .principles-intro, .calendar-layout, .stewardship { grid-template-columns: 1fr; gap: 36px; }
  .objective-line { grid-template-columns: 1fr; gap: 15px; margin-top: 52px; }
  .journey-list li { grid-template-columns: 60px 1fr; }
  .journey-tag { grid-column: 2; justify-self: start; }
  .principles-note { margin-left: 0; }
  .timeline { grid-template-columns: 1fr; }
  .timeline-tabs { display: grid; grid-template-columns: 1fr 1fr; border-right: 0; border-bottom: 1px solid var(--line); }
  .timeline-tabs button { min-height: 82px; border-right: 1px solid var(--line); }
  .timeline-tabs button:nth-child(even) { border-right: 0; }
  .future-copy { width: auto; margin: 0; padding: 78px 24px; }
  .closing { grid-template-columns: 120px 1fr; gap: 30px; padding-top: 70px; padding-bottom: 70px; }
  .closing img { width: 112px; height: 112px; margin-left: -28px; }
}

@media (max-width: 560px) {
  :root { --content: calc(100vw - 36px); }

  body { overflow-x: hidden; font-size: 0.97rem; }
  html { scroll-padding-top: 64px; }

  .site-header { min-height: 60px; padding: 7px 18px; }
  .brand { gap: 8px; }
  .brand img { width: 42px; height: 42px; }
  .brand strong { font-size: 1rem; }
  .brand small { margin-top: 2px; font-size: 0.7rem; }
  .menu-toggle { width: 42px; height: 42px; border: 0; border-radius: 50%; background: #fff; box-shadow: 0 3px 14px rgba(5, 47, 112, 0.1); }
  .main-nav { top: 60px; padding: 8px 18px 20px; }

  .hero { min-height: 570px; isolation: isolate; background: linear-gradient(155deg, var(--blue) 0%, var(--blue-ink) 100%); }
  .hero::after {
    display: block;
    inset: auto -86px -76px auto;
    width: 310px;
    height: 310px;
    background: url("assets/pej-logo.png") center / contain no-repeat;
    opacity: 0.08;
  }
  .hero-copy { min-height: 570px; display: flex; flex-direction: column; justify-content: center; padding: 48px 18px 66px; }
  .hero .eyebrow { max-width: 290px; margin-bottom: 18px; font-size: 0.68rem; line-height: 1.45; }
  .hero h1 { max-width: 345px; font-size: clamp(2.75rem, 13.5vw, 3.5rem); line-height: 0.96; letter-spacing: -0.06em; text-wrap: pretty; }
  .hero-lead { max-width: 350px; margin-top: 22px; font-size: 1rem; line-height: 1.52; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; margin-top: 28px; }
  .button { width: 100%; min-height: 52px; border-radius: 8px; }
  .text-link { padding: 8px 0 2px; text-align: left; }
  .hero-note { max-width: 340px; margin-top: 26px; padding-top: 16px; font-size: 0.84rem; line-height: 1.45; }

  .facts {
    position: relative;
    z-index: 3;
    grid-template-columns: 1fr 1fr;
    margin: -22px 14px 0;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: 14px;
    box-shadow: 0 14px 34px rgba(5, 47, 112, 0.12);
  }
  .facts p, .facts p:first-child { min-height: 112px; padding: 20px 16px; border-right: 1px solid #e2e6ed; border-bottom: 1px solid #e2e6ed; }
  .facts p:nth-child(even) { border-right: 0; }
  .facts p:nth-last-child(-n + 2) { border-bottom: 0; }
  .facts strong { font-size: 1.15rem; }
  .facts span { font-size: 0.76rem; }

  .section { padding: 68px 18px; }
  .section-kicker { margin-bottom: 24px; font-size: 0.7rem; }
  .section h2 { font-size: clamp(2.15rem, 10.8vw, 2.9rem); line-height: 1.02; }
  .purpose-grid, .section-heading, .participate-layout, .principles-intro, .calendar-layout, .stewardship { gap: 30px; }
  .body-copy p, .participate-layout > div > p, .future-copy p, .stewardship-copy p { font-size: 1rem; }
  .objective-line { gap: 12px; margin-top: 42px; padding: 24px 20px; background: #edf3fb; border-top: 4px solid var(--blue); border-bottom: 0; border-radius: 0 0 10px 10px; }
  .objective-line p { font-size: 1.08rem; line-height: 1.45; }

  .journey { padding-top: 68px; padding-bottom: 68px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading > p { font-size: 0.98rem; }
  .journey-list { display: grid; gap: 14px; border-top: 0; }
  .journey-list li {
    grid-template-columns: auto 1fr;
    gap: 16px 14px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(251, 243, 208, 0.18);
    border-radius: 12px;
  }
  .journey-number { grid-column: 1; grid-row: 1; font-size: 1.1rem; line-height: 1; }
  .journey-list li > div { grid-column: 1 / -1; grid-row: 2; }
  .journey-list h3 { margin-bottom: 10px; font-size: 1.4rem; line-height: 1.15; }
  .journey-list p { font-size: 0.92rem; line-height: 1.55; }
  .journey-tag {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    align-self: center;
    padding: 5px 9px;
    background: rgba(131, 168, 232, 0.14);
    border-radius: 999px;
    font-size: 0.65rem;
    line-height: 1;
  }

  .participate ul { margin-top: 0; }
  .participate li { display: grid; grid-template-columns: 26px 1fr; gap: 4px; padding: 14px 0; line-height: 1.4; }
  .participate li::before { width: auto; }

  .principles { background: linear-gradient(180deg, var(--cream) 0%, #fff8dc 100%); }
  .principle-list { display: grid; gap: 10px; margin-top: 38px; border-top: 0; }
  .principle-list > div { grid-template-columns: 1fr; gap: 5px; padding: 18px; background: rgba(255, 255, 255, 0.62); border: 1px solid rgba(6, 66, 157, 0.14); border-radius: 10px; }
  .principle-list > div:hover { padding: 18px; }
  .principle-list dt { font-size: 1.12rem; }
  .principle-list dd { font-size: 0.91rem; line-height: 1.5; }
  .principles-note { margin-top: 28px; padding-left: 16px; border-left: 3px solid var(--orange); line-height: 1.5; }

  .calendar { overflow: hidden; }
  .calendar-heading > p { margin-top: 18px; }
  .timeline { display: block; border: 0; }
  .timeline-tabs {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 0 -18px;
    padding: 2px 18px 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    border: 0;
  }
  .timeline-tabs::-webkit-scrollbar { display: none; }
  .timeline-tabs button, .timeline-tabs button:nth-child(even) {
    flex: 0 0 154px;
    width: 154px;
    min-height: 76px;
    padding: 13px 14px;
    scroll-snap-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(5, 47, 112, 0.05);
  }
  .timeline-tabs button[aria-selected="true"] { background: var(--blue); border-color: var(--blue); box-shadow: 0 7px 18px rgba(5, 47, 112, 0.22); }
  .timeline-tabs span { font-size: 1rem; }
  .timeline-panels { min-height: 0; padding: 26px 20px 20px; border: 1px solid #e0e5ed; border-radius: 12px; box-shadow: 0 12px 30px rgba(5, 47, 112, 0.08); }
  .timeline-panels h3 { font-size: 1.55rem; line-height: 1.16; }
  .timeline-panels ul { margin-top: 22px; padding-left: 18px; }
  .timeline-panels li { margin-bottom: 10px; line-height: 1.48; }
  .panel-result {
    margin: 24px 0 0;
    padding: 16px 16px 17px;
    background: #fff3df;
    border-top: 0;
    border-left: 4px solid var(--orange);
    border-radius: 0 9px 9px 0;
    color: var(--blue-ink);
    font-size: 1rem;
    line-height: 1.45;
  }
  .panel-result strong { display: block; margin-bottom: 3px; color: var(--orange); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

  body.splash-open { overflow: hidden; }
  .splash {
    position: fixed;
    z-index: 1000;
    inset: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: max(24px, env(safe-area-inset-top)) 24px max(28px, env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 86% 12%, rgba(254, 120, 1, 0.2), transparent 29%),
      radial-gradient(circle at 5% 92%, rgba(131, 168, 232, 0.22), transparent 34%),
      linear-gradient(155deg, #073f92 0%, #052f70 54%, #031d46 100%);
    color: var(--cream);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .splash::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
    -webkit-mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
    mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
  }
  .splash::after {
    content: "";
    position: absolute;
    width: min(84vw, 390px);
    aspect-ratio: 1;
    border: 1px solid rgba(251, 243, 208, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 48px rgba(251, 243, 208, 0.025), 0 0 0 96px rgba(251, 243, 208, 0.018);
  }
  .splash.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: splash-away 2.65s cubic-bezier(0.7, 0, 0.25, 1) both;
  }
  .splash-glow { position: absolute; border-radius: 50%; filter: blur(2px); }
  .splash-glow-one { top: -70px; right: -85px; width: 210px; height: 210px; border: 1px solid rgba(254, 120, 1, 0.38); }
  .splash-glow-two { bottom: 8%; left: -80px; width: 180px; height: 180px; border: 1px solid rgba(131, 168, 232, 0.35); }
  .splash-content { position: relative; z-index: 2; width: 100%; max-width: 360px; text-align: center; }
  .splash-mark {
    position: relative;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(251, 243, 208, 0.28);
    border-radius: 34px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2), inset 0 1px rgba(255, 255, 255, 0.12);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    animation: splash-mark-in 900ms cubic-bezier(0.2, 0.85, 0.25, 1) 100ms both;
  }
  .splash-mark span { position: absolute; inset: -9px; border: 1px solid rgba(254, 120, 1, 0.5); border-radius: 42px; transform: rotate(8deg); }
  .splash-mark img { width: 82px; height: 82px; object-fit: contain; filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.18)); }
  .splash-place { margin: 0 0 14px; color: var(--orange); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; animation: splash-rise 650ms ease 480ms both; }
  .splash-name { margin: 0; color: var(--cream); font-family: var(--display); font-size: clamp(2.15rem, 11vw, 3rem); line-height: 0.98; letter-spacing: -0.045em; }
  .splash-name span { display: block; animation: splash-rise 720ms cubic-bezier(0.2, 0.8, 0.2, 1) both; }
  .splash-name span:first-child { animation-delay: 560ms; }
  .splash-name span:last-child { animation-delay: 650ms; }
  .splash-line { width: 104px; height: 2px; margin: 24px auto 18px; overflow: hidden; background: rgba(251, 243, 208, 0.13); }
  .splash-line span { display: block; width: 100%; height: 100%; background: var(--orange); transform-origin: left; animation: splash-line-in 680ms ease 920ms both; }
  .splash-message { margin: 0; color: #dce7f9; font-size: 0.96rem; letter-spacing: 0.015em; animation: splash-rise 600ms ease 1.04s both; }
  .splash-skip {
    position: absolute;
    z-index: 4;
    top: max(18px, env(safe-area-inset-top));
    right: 18px;
    padding: 8px 10px;
    border: 0;
    background: transparent;
    color: rgba(251, 243, 208, 0.7);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .splash-signature { position: absolute; z-index: 2; right: 0; bottom: max(24px, env(safe-area-inset-bottom)); left: 0; margin: 0; color: rgba(251, 243, 208, 0.38); font-size: 0.62rem; font-weight: 800; letter-spacing: 0.24em; text-align: center; }
  .splash-signature span { padding: 0 5px; color: var(--orange); }

  @keyframes splash-mark-in {
    from { opacity: 0; transform: translateY(18px) scale(0.78) rotate(-5deg); }
    to { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
  }
  @keyframes splash-rise {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes splash-line-in {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
  }
  @keyframes splash-away {
    0%, 82% { opacity: 1; visibility: visible; }
    100% { opacity: 0; visibility: hidden; }
  }

  .future-copy { padding: 62px 18px 68px; }
  .stewardship { padding-top: 64px; }
  .closing { grid-template-columns: 1fr; gap: 24px; padding: 58px 18px 62px; }
  .closing img { width: 86px; height: 86px; margin-left: -20px; }
  .closing h2 { font-size: clamp(2rem, 10vw, 2.75rem); line-height: 1.05; }
  footer { flex-direction: column; gap: 18px; padding: 24px 18px; }
}

@media (max-width: 360px) {
  .hero h1 { font-size: 2.58rem; }
  .facts { margin-right: 10px; margin-left: 10px; }
  .facts p, .facts p:first-child { padding-right: 12px; padding-left: 12px; }
  .timeline-tabs button, .timeline-tabs button:nth-child(even) { flex-basis: 142px; width: 142px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
}
