:root {
  --navy-950: #061b35;
  --navy-900: #09284d;
  --navy-800: #103861;
  --blue-200: #b8d0df;
  --blue-100: #e6f0f4;
  --copper-500: #cf8b57;
  --copper-300: #edbd93;
  --ivory: #f6f2ea;
  --white: #fffdfa;
  --ink: #142033;
  --muted: #5c6877;
  --line: rgba(9, 40, 77, 0.15);
  --shadow: 0 26px 80px rgba(6, 27, 53, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

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

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button {
  font: inherit;
}

.sr-only {
  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 {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 78px;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(255, 253, 250, 0.92);
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(6, 27, 53, 0.06);
  backdrop-filter: blur(18px);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  color: var(--navy-900);
  text-decoration: none;
}

.wordmark-major {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.wordmark-connector {
  color: var(--copper-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  color: var(--navy-950);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--copper-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white) !important;
  background: var(--navy-900);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: 138px max(28px, calc((100vw - var(--max-width)) / 2)) 86px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 253, 250, 0.96), rgba(230, 240, 244, 0.78)),
    var(--white);
}

.hero::after {
  position: absolute;
  right: -8vw;
  bottom: -38%;
  width: 52vw;
  height: 52vw;
  border: 1px solid rgba(207, 139, 87, 0.22);
  border-radius: 50%;
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  top: 20%;
  left: -10%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(184, 208, 223, 0.5), transparent 68%);
}

.hero-glow-two {
  right: 14%;
  bottom: 8%;
  width: 30vw;
  height: 30vw;
  background: radial-gradient(circle, rgba(237, 189, 147, 0.26), transparent 70%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  color: var(--navy-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  max-width: 650px;
  margin-bottom: 28px;
  font-size: clamp(58px, 5vw, 82px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 5vw, 72px);
}

h3 {
  color: var(--navy-900);
  font-size: 24px;
  line-height: 1.2;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 18px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button span {
  font-size: 17px;
  transition: transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover span,
.button:focus-visible span {
  transform: translate(2px, -2px);
}

.button-primary {
  color: var(--white);
  background: var(--navy-900);
  box-shadow: 0 12px 30px rgba(9, 40, 77, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy-800);
  box-shadow: 0 16px 34px rgba(9, 40, 77, 0.25);
}

.button-copper {
  color: var(--navy-950);
  background: var(--copper-300);
}

.text-link {
  position: relative;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
}

.hero-visual {
  justify-self: end;
  width: 100%;
  max-width: 760px;
}

.brand-frame {
  position: relative;
  aspect-ratio: 5 / 4;
  overflow: visible;
}

.brand-frame::after {
  content: none;
}

.brand-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 35px rgba(6, 27, 53, 0.16));
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px 28px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  align-items: end;
  gap: 80px;
  margin-bottom: 60px;
}

.section-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 16px;
}

.event-section {
  padding-top: 132px;
}

.event-card {
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.event-image {
  position: relative;
  aspect-ratio: 1920 / 650;
  overflow: hidden;
  background: var(--navy-950);
}

.event-image::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6, 27, 53, 0.24), transparent 42%),
    rgba(9, 40, 77, 0.08);
  content: "";
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(0.96) brightness(0.92);
}

.event-chip {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  padding: 8px 12px;
  color: var(--navy-950);
  background: var(--copper-300);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-details {
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(330px, 1fr) minmax(280px, 0.85fr);
  align-items: center;
  gap: 32px;
  padding: 36px clamp(32px, 4vw, 58px);
}

.event-date {
  display: block;
}

.event-date div {
  display: flex;
  flex-direction: column;
}

.event-date strong {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.event-date small {
  margin-top: 8px;
  color: var(--muted);
}

.countdown {
  margin: 0;
  padding: 0 32px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.countdown > p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.countdown-grid div {
  display: flex;
  flex-direction: column;
}

.countdown-grid strong {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.countdown-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.event-actions {
  align-items: stretch;
  flex-direction: column;
  gap: 18px;
}

.donation-panel {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.donation-qr {
  display: block;
  border-radius: 8px;
}

.donation-qr:focus-visible {
  outline: 3px solid var(--copper-500);
  outline-offset: 3px;
}

.donation-panel img {
  width: 150px;
  height: auto;
  background: var(--white);
  border-radius: 8px;
  image-rendering: pixelated;
}

.donation-panel p {
  margin-bottom: 6px;
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.1;
}

.donation-panel span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.event-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(420px, 1.15fr);
  align-items: start;
  gap: clamp(60px, 10vw, 130px);
}

.about-heading {
  position: sticky;
  top: 120px;
}

.about-heading h2 {
  max-width: 540px;
}

.about-copy {
  padding: 18px 0 18px 42px;
  border-left: 1px solid var(--line);
}

.about-copy > p {
  max-width: 610px;
  color: var(--muted);
}

.about-copy .about-lede {
  color: var(--navy-900) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  line-height: 1.45;
}

.about-copy .text-link {
  display: inline-block;
  margin-top: 16px;
}

.founder-note {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin: 30px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.founder-note span {
  color: var(--copper-500);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.founder-note strong {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.impact-section {
  padding: 32px;
  background: var(--white);
}

.impact-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px max(28px, calc((100% - var(--max-width)) / 2 + 28px));
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(207, 139, 87, 0.22), transparent 28%),
    linear-gradient(135deg, var(--navy-950), #0d355f);
  border-radius: var(--radius-lg);
}

.section-heading.light h2,
.section-heading.light > p {
  color: var(--white);
}

.section-heading.light > p {
  opacity: 0.68;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-grid article {
  padding: 50px 38px 0 0;
}

.stats-grid article + article {
  padding-left: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stats-grid strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 7vw, 94px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stats-grid p {
  max-width: 240px;
  margin: 18px 0 0;
  color: var(--blue-200);
  font-size: 13px;
}

.timeline {
  position: relative;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 126px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 126px 1fr;
  padding: 0 0 62px;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.timeline-item::before {
  position: absolute;
  top: 4px;
  left: 120px;
  width: 11px;
  height: 11px;
  background: var(--copper-500);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--copper-500);
  content: "";
}

.timeline-item time {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.timeline-item time strong {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.timeline-item > div {
  max-width: 830px;
  padding-left: 64px;
}

.timeline-label {
  margin-bottom: 12px;
  color: var(--copper-500);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-item h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.timeline-item > div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.participate-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
  align-items: center;
  gap: 100px;
  padding: 120px max(28px, calc((100vw - var(--max-width)) / 2));
  background:
    radial-gradient(circle at 5% 90%, rgba(184, 208, 223, 0.5), transparent 30%),
    linear-gradient(130deg, var(--blue-100), var(--ivory));
}

.participate-copy h2 {
  margin-bottom: 28px;
}

.participate-copy > p:last-child {
  max-width: 460px;
  color: var(--muted);
}

.participate-tool {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.role-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px;
  background: var(--blue-100);
}

.role-tab {
  min-height: 58px;
  padding: 10px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.25;
}

.role-tab.active {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(6, 27, 53, 0.08);
}

.role-panel {
  min-height: 340px;
  padding: 48px;
}

.role-kicker {
  margin-bottom: 24px;
  color: var(--copper-500);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.role-panel h3 {
  max-width: 470px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 500;
}

.role-panel > p:not(.role-kicker) {
  max-width: 500px;
  margin-bottom: 34px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  padding: 72px max(28px, calc((100vw - var(--max-width)) / 2)) 28px;
  color: var(--blue-200);
  background: var(--navy-950);
}

.footer-mark {
  color: var(--white);
}

.site-footer > div:first-child > p {
  max-width: 380px;
  margin: 20px 0 0;
  color: rgba(230, 240, 244, 0.65);
  font-size: 13px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-contact p {
  margin-bottom: 12px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.footer-contact a {
  margin: 3px 0;
  color: var(--blue-200);
  font-size: 13px;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--copper-300);
}

.copyright {
  grid-column: 1 / -1;
  margin: 34px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(230, 240, 244, 0.45);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 132px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    justify-self: start;
    max-width: 680px;
  }

  .event-details {
    grid-template-columns: minmax(220px, 0.8fr) minmax(360px, 1.2fr);
  }

  .event-actions {
    grid-column: 1 / -1;
    align-items: center;
    flex-direction: row;
  }

  .donation-panel {
    max-width: 480px;
  }

  .event-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-section,
  .participate-section {
    grid-template-columns: 1fr;
  }

  .about-section {
    gap: 60px;
  }

  .about-heading {
    position: static;
  }

  .about-copy {
    max-width: 740px;
  }

  .participate-section {
    gap: 56px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 72px;
  }

  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .menu-toggle > span:not(.sr-only) {
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--navy-900);
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

  .menu-toggle > span:first-child {
    transform: translateY(-5px);
  }

  .menu-toggle > span:nth-child(2) {
    transform: translateY(5px);
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 26px;
    padding: 100px 28px;
    background: rgba(255, 253, 250, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    font-weight: 500;
  }

  .site-nav .nav-cta {
    margin-top: 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 116px 20px 76px;
  }

  h1 {
    font-size: clamp(53px, 16vw, 72px);
  }

  h2 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-intro {
    font-size: 16px;
  }

  .section {
    padding: 88px 20px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 44px;
  }

  .event-section {
    padding-top: 92px;
  }

  .event-card,
  .impact-inner,
  .participate-tool {
    border-radius: 22px;
  }

  .event-details {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px 36px;
  }

  .event-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .donation-panel {
    grid-template-columns: 168px 1fr;
    max-width: none;
  }

  .donation-panel img {
    width: 168px;
  }

  .event-links {
    flex-direction: row;
    align-items: center;
  }

  .event-date strong {
    font-size: 27px;
  }

  .countdown {
    padding: 22px 0;
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .countdown-grid strong {
    font-size: 26px;
  }

  .about-section {
    gap: 54px;
  }

  .about-copy {
    padding: 0;
    border-left: 0;
  }

  .about-copy .about-lede {
    font-size: 21px;
  }

  .impact-section {
    padding: 12px;
  }

  .impact-inner {
    padding: 78px 24px;
  }

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

  .stats-grid article,
  .stats-grid article + article {
    padding: 34px 0;
    border-left: 0;
  }

  .stats-grid article + article {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .timeline::before {
    left: 13px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding: 0 0 54px 42px;
  }

  .timeline-item::before {
    top: 5px;
    left: 8px;
  }

  .timeline-item time {
    margin-bottom: 18px;
  }

  .timeline-item > div {
    padding-left: 0;
  }

  .timeline-item h3 {
    font-size: 26px;
  }

  .participate-section {
    padding: 88px 20px;
  }

  .role-tabs {
    grid-template-columns: 1fr;
  }

  .role-tab {
    min-height: 44px;
  }

  .role-panel {
    min-height: 380px;
    padding: 34px 24px;
  }

  .role-panel h3 {
    font-size: 32px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 64px 20px 26px;
  }
}

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

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

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