:root {
  --paper: #fbf7ef;
  --surface: #fffdf8;
  --surface-warm: #f5efe5;
  --ink: #102b36;
  --ink-soft: #395963;
  --navy: #082f3d;
  --night: #041b24;
  --line: #d8d0c4;
  --coral: #d1495b;
  --teal: #00798c;
  --gold: #c98216;
  --green: #2f855a;
  --violet: #6656a6;
  --focus: #f3a712;
  --shadow: 0 18px 46px rgba(16, 43, 54, .12);
  --max: 1180px;
  --reading: 70ch;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.62;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: .2;
  background-image: linear-gradient(rgba(16, 43, 54, .035) 1px, transparent 1px);
  background-size: 100% 36px;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
summary { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  color: white;
  background: var(--navy);
  border-radius: 6px;
  transform: translateY(-180%);
}

.skip-link:focus { transform: none; }

.section-inner,
.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.event-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(251, 247, 239, .96);
  border-bottom: 1px solid rgba(16, 43, 54, .14);
  backdrop-filter: blur(14px);
}

.event-header::after {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--green), var(--teal), var(--violet));
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 68px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 44px;
  min-height: 44px;
  gap: .7rem;
  margin-right: auto;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}

.brand-copy,
.brand-copy strong,
.brand-copy span { display: block; line-height: 1.15; }
.brand-copy strong { font-size: .95rem; }
.brand-copy span { color: var(--ink-soft); font-size: .72rem; font-weight: 800; text-transform: uppercase; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: .15rem;
}

.desktop-nav a,
.mobile-menu summary,
.mobile-menu nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: .65rem .72rem;
  color: var(--ink-soft);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.desktop-nav a:hover { color: var(--ink); background: white; border-color: var(--line); }
.desktop-nav .nav-action { color: white; background: var(--navy); border-color: var(--navy); }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { color: white; background: var(--navy); list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary::after { content: "+"; margin-left: .5rem; font-size: 1rem; }
.mobile-menu[open] summary::after { content: "−"; }
.mobile-menu nav {
  position: absolute;
  top: calc(100% + .45rem);
  right: 0;
  display: grid;
  width: min(260px, calc(100vw - 1rem));
  padding: .4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.mobile-menu nav a:hover { background: var(--surface-warm); }

main { overflow: clip; }

.section {
  padding-block: 6.75rem;
  scroll-margin-top: 74px;
}

.section + .section { border-top: 1px solid rgba(16, 43, 54, .1); }

.eyebrow {
  margin: 0 0 .55rem;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 { font-size: 6.8rem; }
h2 { font-size: 4.65rem; }
h3 { font-size: 1.65rem; }
p { max-width: var(--reading); }
.lede { color: var(--ink-soft); font-size: 1.28rem; }

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .75rem 1.05rem;
  border: 1px solid var(--navy);
  border-radius: 6px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.button-primary { color: white; background: var(--navy); }
.button-teal { color: white; background: #006a79; border-color: #006a79; }
.button-light { color: var(--navy); background: white; border-color: white; }
.button-outline-light { color: white; background: rgba(4, 27, 36, .2); border-color: rgba(255, 255, 255, .72); }
.button-outline { color: var(--navy); background: transparent; }
.button-quiet { color: var(--navy); background: transparent; border-color: var(--line); }
.button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(4, 27, 36, .16); }

.hero {
  position: relative;
  display: grid;
  min-height: min(86svh, 850px);
  overflow: hidden;
  color: white;
  background: var(--night);
}

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

.hero-image { object-fit: cover; object-position: 40% center; }
.hero-scrim {
  background: linear-gradient(90deg, rgba(4, 27, 36, .08) 0%, rgba(4, 27, 36, .3) 38%, rgba(4, 27, 36, .92) 66%, rgba(4, 27, 36, .98) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  justify-items: end;
  width: min(100% - 2rem, var(--max));
  min-height: inherit;
  margin-inline: auto;
  padding-block: 5.2rem 2rem;
}

.hero-copy { width: min(55%, 680px); }
.hero .eyebrow { color: #ffd166; }
.hero h1 { max-width: 11ch; }
.hero-date { margin: .85rem 0 0; color: #ffd166; font-size: 1.85rem; font-weight: 850; }
.hero-intro { margin-top: 1.15rem; font-size: 1.16rem; }
.hero-info-session {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .4rem 1.25rem;
  align-items: center;
  margin-top: 1.15rem;
  padding: .85rem 1rem;
  background: rgba(4, 27, 36, .58);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 6px;
}
.hero-info-session p { margin: 0; color: #e4eef0; font-size: .9rem; line-height: 1.45; }
.hero-info-session .hero-info-session-title { margin-bottom: .15rem; color: white; font-size: 1rem; font-weight: 900; line-height: 1.3; }
.hero-info-session-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #ffd166;
  font-size: .88rem;
  font-weight: 900;
  text-underline-offset: .22rem;
  white-space: nowrap;
}
.hero-info-session + .button-row { margin-top: 1rem; }
.hero-caption { position: absolute; bottom: 1rem; left: 0; margin: 0; font-size: .78rem; color: #e4eef0; }

.overview { padding-block: 4.5rem; background: var(--surface); }
.section-heading { margin-bottom: 3.5rem; }
.overview-heading,
.experience-heading,
.participation-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: end;
  gap: 4rem;
}
.section-heading > p { margin: 0; color: var(--ink-soft); font-size: 1.08rem; }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.overview-item {
  position: relative;
  min-height: 150px;
  padding: 1.5rem;
  background: var(--surface);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.overview-item:nth-child(3n) { border-right: 0; }
.overview-item:nth-child(n + 4) { border-bottom: 0; }
.overview-item::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--coral); }
.overview-item-2::before { background: var(--teal); }
.overview-item-3::before { background: var(--gold); }
.overview-item-4::before { background: var(--green); }
.overview-item-5::before { background: var(--violet); }
.overview-item-6::before { background: linear-gradient(90deg, var(--coral), var(--gold), var(--green), var(--teal), var(--violet)); }
.overview-item dt { margin-top: .35rem; color: var(--ink-soft); font-size: .74rem; font-weight: 900; text-transform: uppercase; }
.overview-item dd { margin: .45rem 0 0; font-size: 1.45rem; font-weight: 900; line-height: 1.16; }

.purpose { background: var(--paper); }
.purpose-layout { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 6rem; }
.purpose-heading { position: sticky; top: 110px; align-self: start; }
.purpose-heading h2 { max-width: 9ch; }
.purpose-copy { padding-top: .5rem; }
.purpose-copy > p { margin-top: 0; font-size: 1.08rem; }
.purpose-copy > p + p { margin-top: 1.5rem; }
.purpose-themes { margin: 2.3rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.purpose-themes li { display: grid; grid-template-columns: minmax(130px, .38fr) 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.purpose-themes strong { color: var(--teal); }
.purpose-themes span { color: var(--ink-soft); }

.info-session-callout { padding-block: clamp(2rem, 5vw, 4rem); color: white; background: var(--navy); }
.info-session-callout-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem 4rem; align-items: center; }
.info-session-callout .eyebrow { color: #ffd166; }
.info-session-callout h2 { max-width: 13ch; margin-bottom: .65rem; font-size: clamp(2.5rem, 6vw, 5rem); }
.info-session-callout p { max-width: 62ch; color: #dbe8eb; }
.info-session-callout .info-session-date { margin-bottom: 0; color: white; font-weight: 900; }
.info-session-callout .button { white-space: nowrap; }

.experience { color: white; background: var(--navy); }
.experience .eyebrow { color: #ffd166; }
.experience .section-heading > p { color: #dbe8eb; }

.story-carousel {
  display: grid;
  gap: 1rem;
  outline-offset: 6px;
}

.carousel-instruction {
  margin: 0;
  color: #dbe8eb;
  font-size: .92rem;
}

.carousel-stage {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.story-slide {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: var(--night);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  scroll-snap-align: center;
}

.story-slide picture {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(310px, 58svh, 660px);
  overflow: hidden;
  background: #061f2a;
}

.story-slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.story-slide figcaption {
  padding: .85rem 1rem;
  color: white;
  background: rgba(4, 27, 36, .96);
  font-size: .9rem;
}

.carousel-controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
}

.carousel-button {
  min-width: 108px;
  min-height: 48px;
  padding: .75rem 1rem;
  color: white;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 6px;
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  cursor: pointer;
}

.carousel-button:hover { background: rgba(255, 255, 255, .2); }

.carousel-status {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: .8rem;
  color: #dbe8eb;
  font-size: .86rem;
  font-weight: 850;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem;
}

.carousel-dot {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: white;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  text-decoration: none;
}

.carousel-dot span { font-size: .72rem; font-weight: 900; }

.carousel-dot.is-active {
  color: var(--night);
  background: #ffd166;
  border-color: #ffd166;
}

.momentum { background: var(--surface-warm); }
.momentum-layout { display: grid; grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr); gap: 5rem; align-items: center; }
.momentum-copy h2 { max-width: 12ch; }
.momentum-copy > p:not(.eyebrow) { font-size: 1.08rem; }
.momentum-figure { margin: 0; }
.momentum-figure picture { display: block; overflow: hidden; border-radius: 6px; box-shadow: var(--shadow); }
.momentum-figure img { width: 100%; height: auto; }
.momentum-figure figcaption { margin-top: .65rem; color: var(--ink-soft); font-size: .82rem; }

.history-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
  margin: 2rem 0;
}
.history-stats div { padding-top: .8rem; border-top: 5px solid var(--coral); }
.history-stats div:nth-child(2) { border-color: var(--teal); }
.history-stats div:nth-child(3) { border-color: var(--gold); }
.history-stats dt { color: var(--ink-soft); font-size: .7rem; font-weight: 850; text-transform: uppercase; }
.history-stats dd { margin: .2rem 0 0; font-size: 1.18rem; font-weight: 900; line-height: 1.15; }

.text-link { display: inline-flex; align-items: center; min-height: 44px; gap: .45rem; color: var(--teal); font-weight: 900; text-underline-offset: .25rem; }
.text-link span { font-size: 1.25rem; }

.expectations { background: var(--paper); }
.expectations-layout { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 6rem; }
.expectations-intro { align-self: start; }
.expectations-intro h2 { max-width: 10ch; }
.planning-note { margin-top: 2rem; padding: 1rem 1.15rem; color: var(--ink-soft); background: var(--surface); border-left: 5px solid var(--gold); border-radius: 0 6px 6px 0; font-size: .92rem; }
.expectation-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.expectation-list li { display: grid; grid-template-columns: 56px 1fr; gap: 1.2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.expectation-number { color: var(--coral); font-size: .82rem; font-weight: 900; }
.expectation-list p { margin: .55rem 0 0; color: var(--ink-soft); }

.participation { background: var(--surface); }
.primary-roles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; container-type: inline-size; }
.role { min-height: 350px; padding: 2.1rem; border-radius: 8px; box-shadow: var(--shadow); }
.role-rider { color: white; background: var(--navy); }
.role-volunteer { color: var(--ink); background: #dfeff0; }
.role h3 { font-size: 3.2rem; }
.role p:not(.role-label) { max-width: 48ch; }
.role .button { margin-top: 1rem; }
.role-label { margin: 0 0 .75rem; color: #ffd166; font-size: .74rem; font-weight: 900; text-transform: uppercase; }
.role-volunteer .role-label { color: #006a79; }
.secondary-roles { display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr); gap: 1rem; margin-top: 1rem; }
.secondary-roles > article { padding: 1.5rem 0; border-top: 1px solid var(--line); }
.secondary-roles h3 { font-size: 1.4rem; }
.secondary-roles p { color: var(--ink-soft); }
.partner-note { display: flex; justify-content: space-between; align-items: center; gap: 2rem; }
.partner-note .eyebrow { margin-bottom: .25rem; }
.partner-note p { margin-block: 0; }
.partner-note .button { flex: 0 0 auto; }

.affirmations {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  color: white;
  background: var(--night);
}
.affirmations-media,
.affirmations-image,
.affirmations-scrim { position: absolute; inset: 0; width: 100%; height: 100%; }
.affirmations-image { object-fit: cover; object-position: center; transform: translateX(24%); }
.affirmations-scrim { background: linear-gradient(90deg, var(--night) 0%, rgba(4, 27, 36, .96) 30%, rgba(4, 27, 36, .58) 54%, rgba(4, 27, 36, .08) 82%, rgba(4, 27, 36, .12) 100%); }
.affirmations-inner { position: relative; z-index: 1; display: grid; justify-items: start; align-content: center; min-height: inherit; padding-block: 5rem 2rem; }
.affirmations-panel { width: min(46%, 530px); }
.affirmations-panel .eyebrow { color: #ffd166; }
.affirmations-panel h2 { font-size: 4.1rem; }
.affirmations-panel p { color: #e0ecee; }
.service-list { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.5rem 0; padding: 0; list-style: none; }
.service-list li { padding: .45rem .65rem; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .35); border-radius: 5px; font-size: .82rem; font-weight: 800; }
.text-link-light { color: #ffd166; }
.context-note { padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .28); font-size: .78rem; }
.affirmations-caption { align-self: end; justify-self: start; margin: 4rem 0 0; color: #e0ecee; font-size: .78rem; }

.closing { background: var(--surface-warm); }
.closing-layout { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr); gap: 5rem; align-items: center; }
.closing-layout h2 { max-width: 10ch; }
.closing-actions { display: grid; gap: .75rem; }
.email-link { justify-self: center; min-height: 44px; padding: .55rem; color: var(--ink-soft); font-weight: 800; text-underline-offset: .2rem; }

.event-footer { padding-block: 2.5rem; color: white; background: var(--night); }
.footer-inner { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
.footer-inner p { margin: 0; color: #dce8e9; font-size: .9rem; }
.footer-inner nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: .35rem 1.1rem; }
.footer-inner a { min-height: 44px; display: inline-flex; align-items: center; color: #dce8e9; font-size: .85rem; font-weight: 800; text-underline-offset: .2rem; }
.footer-inner .footer-admin { color: #aebfc2; font-size: .76rem; font-weight: 700; }

@container (max-width: 720px) {
  .role { min-height: 0; }
}

@media (max-width: 1050px) {
  h1 { font-size: 5.4rem; }
  h2 { font-size: 3.8rem; }
  .desktop-nav a { padding-inline: .5rem; }
  .overview-heading,
  .experience-heading,
  .participation-heading { gap: 2.5rem; }
  .purpose-layout,
  .expectations-layout { gap: 3.5rem; }
  .momentum-layout { gap: 3rem; }
  .affirmations-panel { width: 49%; }
  .affirmations-panel h2 { font-size: 3.4rem; }
}

@media (min-width: 861px) and (max-height: 760px) {
  .hero { min-height: calc(100svh - 118px); }
  .hero h1 { font-size: 5.8rem; }
  .hero-inner { padding-block: 3.5rem 1.25rem; }
  .hero-intro { font-size: 1.04rem; }
}

@media (max-width: 860px) {
  html { scroll-padding-top: 72px; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .section { padding-block: 5.25rem; }
  .hero { min-height: 780px; }
  .hero-media { height: 46%; bottom: auto; }
  .hero-image { object-position: 37% center; }
  .hero-scrim { background: linear-gradient(0deg, var(--night) 0%, var(--night) 55%, rgba(4, 27, 36, .7) 63%, transparent 74%); }
  .hero-inner { align-content: end; justify-items: start; padding-bottom: 2.7rem; }
  .hero-copy { width: min(100%, 690px); }
  .hero-caption { position: static; order: -1; margin: 0 0 2rem; }
  .overview-heading,
  .experience-heading,
  .participation-heading,
  .info-session-callout-inner,
  .purpose-layout,
  .momentum-layout,
  .expectations-layout,
  .closing-layout { grid-template-columns: 1fr; }
  .overview-heading,
  .experience-heading,
  .participation-heading { align-items: start; gap: 1.3rem; }
  .purpose-layout,
  .momentum-layout,
  .expectations-layout,
  .closing-layout { gap: 2.6rem; }
  .purpose-heading { position: static; }
  .purpose-heading h2,
  .momentum-copy h2,
  .expectations-intro h2 { max-width: 12ch; }
  .story-slide picture { height: clamp(280px, 48svh, 560px); }
  .momentum-figure { order: -1; }
  .affirmations { display: flex; flex-direction: column; min-height: 0; }
  .affirmations-media { position: relative; display: block; width: 100%; height: auto; background: var(--night); }
  .affirmations-image { position: relative; width: 100%; height: auto; object-fit: contain; transform: none; }
  .affirmations-scrim { display: none; }
  .affirmations-inner { display: block; min-height: 0; padding-block: 3.5rem; }
  .affirmations-panel { width: 100%; }
  .affirmations-panel h2 { font-size: 3.8rem; }
  .affirmations-caption { margin: 2rem 0 0; }
  .footer-inner { align-items: start; }
}

@media (max-width: 640px) {
  .section-inner,
  .header-inner { width: min(100% - 1.25rem, var(--max)); }
  .brand-copy span { display: none; }
  .section { padding-block: 4.25rem; }
  h1 { font-size: 3.55rem; }
  h2 { font-size: 2.75rem; }
  h3 { font-size: 1.4rem; }
  .lede { font-size: 1.1rem; }
  .hero { min-height: 800px; }
  .hero-media { height: 39%; }
  .hero-scrim { background: linear-gradient(0deg, var(--night) 0%, var(--night) 61%, rgba(4, 27, 36, .8) 68%, transparent 79%); }
  .hero-inner { padding-bottom: 2.2rem; }
  .hero-date { font-size: 1.35rem; }
  .hero-intro { font-size: 1rem; }
  .hero-info-session { grid-template-columns: 1fr; gap: .25rem; margin-top: .8rem; padding: .65rem .8rem; }
  .hero-info-session-link { justify-self: start; }
  .hero-info-session + .button-row { margin-top: .75rem; }
  .hero-caption { position: absolute; top: 2rem; right: auto; bottom: auto; left: 0; width: min(100%, 42ch); margin: 0; font-size: .72rem; }
  .button-row { display: grid; }
  .button-row .button { width: 100%; }
  .overview { padding-block: 3.5rem; }
  .section-heading { margin-bottom: 2.4rem; }
  .overview-grid { grid-template-columns: 1fr; }
  .overview-item { min-height: 112px; border-right: 0; border-bottom: 1px solid var(--line); }
  .overview-item:nth-child(n + 4) { border-bottom: 1px solid var(--line); }
  .overview-item:last-child { border-bottom: 0; }
  .purpose-themes li { grid-template-columns: 1fr; gap: .15rem; }
  .carousel-stage { gap: .65rem; }
  .story-slide picture { height: clamp(240px, 44svh, 440px); }
  .carousel-controls { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .carousel-status { grid-column: 1 / -1; grid-row: 1; }
  .carousel-button { width: 100%; min-width: 0; }
  .history-stats { grid-template-columns: 1fr; }
  .expectation-list li { grid-template-columns: 38px 1fr; gap: .7rem; }
  .primary-roles,
  .secondary-roles { grid-template-columns: 1fr; }
  .role { min-height: 0; padding: 1.5rem; }
  .role h3 { font-size: 2.4rem; }
  .role .button { width: 100%; }
  .partner-note { display: grid; gap: 1rem; }
  .partner-note .button { justify-self: start; width: 100%; }
  .affirmations-panel h2 { font-size: 2.75rem; }
  .service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .closing-actions .button { width: 100%; }
  .footer-inner { display: grid; }
  .footer-inner nav { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { scroll-behavior: auto !important; transition: none !important; }
  .button:hover { transform: none; }
}

@media print {
  @page { margin: .55in; }
  body { color: #111; background: white; font-size: 10pt; }
  body::before,
  .event-header,
  .button-row,
  .closing-actions,
  .partner-note .button { display: none !important; }
  .section { padding-block: .22in; }
  .hero { display: block; min-height: 0; color: #111; background: white; }
  .hero-media { position: relative; display: block; height: auto; }
  .hero-image { position: relative; height: auto; }
  .hero-scrim { display: none; }
  .hero-inner { display: block; width: 100%; min-height: 0; padding: .2in 0; }
  .hero-copy { width: 100%; }
  .hero-caption { color: #222; }
  h1 { font-size: 30pt; }
  h2 { font-size: 20pt; }
  h3 { font-size: 13pt; }
  .eyebrow { color: #8f2937; }
  .overview-grid { box-shadow: none; }
  .purpose-heading { position: static; }
  .carousel-instruction,
  .carousel-controls { display: none; }
  .carousel-stage { display: grid; grid-template-columns: repeat(2, 1fr); overflow: visible; }
  .story-slide { break-inside: avoid; }
  .story-slide picture { display: block; height: auto; overflow: visible; }
  .story-slide img { width: 100%; height: auto; max-height: none; }
  .story-slide figcaption { padding: .08in; color: #111; background: white; }
  .experience { color: #111; background: white; }
  .experience .eyebrow,
  .experience .section-heading > p { color: #222; }
  .affirmations { display: block; min-height: 0; color: #111; background: white; }
  .affirmations-media { position: relative; display: block; height: auto; }
  .affirmations-image { position: relative; width: 100%; height: auto; }
  .affirmations-scrim { display: none; }
  .affirmations-inner { display: block; min-height: 0; padding-block: .2in; }
  .affirmations-panel { width: 100%; }
  .affirmations-panel p,
  .affirmations-caption { color: #222; }
  .service-list li { color: #111; border-color: #777; background: white; }
  figure,
  .overview-grid,
  .role,
  .expectation-list li { break-inside: avoid; }
  a { text-decoration: underline; }
}
