:root {
 --navy: #15233a;
 --navy-mid: #1c3254;
 --navy-deep: #0b1220;
 --cream: #f3eee4;
 --paper: #fffcf8;
 --ink: #171717;
 --muted: #5a6370;
 --line: #e2d9cc;
 --gold: #c4a35a;
 --gold-dark: #8a6d32;
 --donate: #c8102e;
 --donate-hover: #9e0c24;
 --white: #ffffff;
 --shadow: 0 12px 40px rgba(11, 18, 32, 0.1);
 --max: 1200px;
 --header: 88px;
 --font: "Source Sans 3", "Segoe UI", sans-serif;
 --serif: "Source Serif 4", Georgia, serif;
 --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
 box-sizing: border-box;
}

html {
 scroll-behavior: smooth;
}

body {
 margin: 0;
 font-family: var(--font);
 color: var(--ink);
 background: var(--paper);
 line-height: 1.6;
}

body.nav-open,
body.modal-open {
 overflow: hidden;
}

img {
 max-width: 100%;
 display: block;
}

a {
 color: var(--navy-mid);
}

:focus-visible {
 outline: 3px solid var(--gold);
 outline-offset: 3px;
}

.skip {
 position: absolute;
 left: -999px;
 top: 8px;
 background: var(--navy);
 color: var(--white);
 padding: 8px 12px;
 z-index: 2000;
}

.skip:focus {
 left: 8px;
}

.wrap {
 width: min(var(--max), calc(100% - 48px));
 margin-inline: auto;
}

.util-bar {
 background: var(--navy-deep);
 color: #c9d3e2;
 font-size: 12px;
 letter-spacing: 0.02em;
}

.util-bar .wrap {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 16px;
 min-height: 38px;
 flex-wrap: wrap;
}

.util-bar .wrap > span {
 line-height: 1.4;
}

.util-bar a {
 color: #c9d3e2;
 text-decoration: none;
}

.util-bar a:hover {
 color: var(--white);
}

.util-links {
 display: flex;
 gap: 18px;
}

.site-header {
 position: sticky;
 top: 0;
 z-index: 90;
 background: rgba(255, 252, 248, 0.94);
 backdrop-filter: blur(14px);
 border-bottom: 1px solid transparent;
 transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.site-header.is-scrolled {
 border-bottom-color: var(--line);
 box-shadow: 0 8px 24px rgba(11, 18, 32, 0.08);
}

.site-header .wrap {
 position: relative;
 display: flex;
 align-items: center;
 min-height: var(--header);
 gap: 20px;
 transition: min-height 0.25s var(--ease);
}

.site-header.is-scrolled .wrap {
 min-height: 72px;
}

.site-header.is-scrolled .brand img {
 width: 56px;
 height: 56px;
}

.brand {
 display: flex;
 align-items: center;
 gap: 12px;
 text-decoration: none;
 color: var(--navy);
 min-width: 210px;
}

.brand img {
 width: 70px;
 height: 70px;
 object-fit: contain;
 border-radius: 50%;
 background: #1a140c;
 transition: width 0.25s var(--ease), height 0.25s var(--ease);
}

.brand-text {
 display: flex;
 flex-direction: column;
 justify-content: center;
 line-height: 1.2;
 text-align: left;
}

.brand-text strong {
 font-size: 13px;
 letter-spacing: 0.05em;
 text-transform: uppercase;
}

.brand-text span {
 font-size: 12px;
 color: var(--muted);
}

.header-tools {
 display: flex;
 align-items: center;
 gap: 12px;
 margin-left: auto;
}

.header-tools .nav {
 margin-right: 6px;
}

.nav {
 display: flex;
 align-items: center;
 gap: 6px 20px;
}

.nav a {
 position: relative;
 text-decoration: none;
 color: var(--navy);
 font-weight: 600;
 font-size: 15px;
 padding: 8px 0;
 line-height: 1.2;
 white-space: nowrap;
}

.nav .btn-donate {
 padding: 0 18px;
 min-height: 44px;
 margin-left: 8px;
 line-height: 1;
 white-space: nowrap;
}

.nav .btn-donate,
.nav .btn-donate:hover {
 color: var(--white);
}

.nav .btn-donate::after {
 display: none;
}

.nav a:not(.btn)::after {
 content: "";
 position: absolute;
 left: 0;
 right: 0;
 bottom: 0;
 height: 2px;
 background: var(--donate);
 transform: scaleX(0);
 transform-origin: left;
 transition: transform 0.22s var(--ease);
}

.nav a:hover::after,
.nav a.is-current::after {
 transform: scaleX(1);
}

.nav a:hover,
.nav a.is-current {
 color: var(--donate);
}

.nav a.is-current {
 color: var(--donate);
}

.icon-btn {
 width: 44px;
 height: 44px;
 border: 1px solid var(--line);
 background: var(--white);
 border-radius: 50%;
 cursor: pointer;
 display: grid;
 place-items: center;
 color: var(--navy);
 flex-shrink: 0;
 padding: 0;
}

.icon-btn svg {
 width: 18px;
 height: 18px;
}

.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 48px;
 padding: 0 22px;
 border-radius: 2px;
 font-weight: 700;
 text-decoration: none;
 border: 2px solid transparent;
 cursor: pointer;
 font-family: inherit;
 font-size: 15px;
 letter-spacing: 0.01em;
 line-height: 1;
 transition: background 0.2s var(--ease), transform 0.2s var(--ease), color 0.2s var(--ease);
}

.btn:hover {
 transform: translateY(-1px);
}

.btn-donate {
 background: var(--donate);
 color: var(--white);
}

.btn-donate:hover {
 background: var(--donate-hover);
 color: var(--white);
}

.btn-ghost {
 background: transparent;
 color: var(--white);
 border: 2px solid var(--white);
}

.btn-ghost:hover {
 background: var(--white);
 color: var(--navy);
}

.btn-navy {
 background: var(--navy);
 color: var(--white);
}

.btn-navy:hover {
 background: var(--navy-mid);
 color: var(--white);
}

.menu-toggle {
 display: none;
 border: 1px solid var(--line);
 width: 44px;
 height: 44px;
 border-radius: 4px;
 cursor: pointer;
 position: relative;
 background: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
 content: "";
 position: absolute;
 left: 12px;
 width: 18px;
 height: 2px;
 background: var(--navy);
 transition: transform 0.2s var(--ease), opacity 0.2s var(--ease), top 0.2s var(--ease);
}

.menu-toggle::before {
 top: 14px;
}

.menu-toggle span {
 top: 21px;
}

.menu-toggle::after {
 top: 28px;
}

.menu-toggle.is-open span {
 opacity: 0;
}

.menu-toggle.is-open::before {
 top: 21px;
 transform: rotate(45deg);
}

.menu-toggle.is-open::after {
 top: 21px;
 transform: rotate(-45deg);
}

.hero {
 position: relative;
 min-height: min(88vh, 760px);
 display: grid;
 align-items: center;
 color: var(--white);
 background: var(--navy) center / cover no-repeat;
 isolation: isolate;
}

.hero::before {
 content: "";
 position: absolute;
 inset: 0;
 background: inherit;
 background-size: cover;
 transform: scale(1.06);
 z-index: -2;
}

.hero::after {
 content: "";
 position: absolute;
 inset: 0;
 z-index: -1;
 background:
 linear-gradient(90deg, rgba(11, 18, 32, 0.88) 0%, rgba(11, 18, 32, 0.55) 48%, rgba(11, 18, 32, 0.18) 100%),
 linear-gradient(180deg, rgba(11, 18, 32, 0.2) 0%, rgba(11, 18, 32, 0.35) 100%);
}

.hero-inner {
 position: relative;
 z-index: 1;
 padding: 96px 0 80px;
 max-width: 680px;
}

.kicker {
 display: inline-block;
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.16em;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 14px;
}

.hero h1,
.page-hero h1 {
 font-family: var(--serif);
 font-weight: 600;
 line-height: 1.08;
 margin: 0 0 18px;
}

.hero h1 {
 font-size: clamp(40px, 6vw, 68px);
}

.hero p {
 font-size: 20px;
 max-width: 38ch;
 margin: 0 0 32px;
 color: #e8edf4;
}

.hero-actions {
 display: flex;
 flex-wrap: wrap;
 gap: 12px;
}

.page-hero {
 position: relative;
 background-color: var(--navy);
 background-position: center;
 background-size: cover;
 background-repeat: no-repeat;
 color: var(--white);
 padding: 72px 0 64px;
 isolation: isolate;
}

.page-hero::after {
 content: "";
 position: absolute;
 inset: 0;
 z-index: -1;
 background: linear-gradient(120deg, rgba(11, 18, 32, 0.88), rgba(28, 50, 84, 0.72));
}

.page-hero .wrap {
 position: relative;
 z-index: 1;
}

.page-hero h1 {
 font-size: clamp(34px, 4.5vw, 54px);
}

.page-hero .crumb {
 margin: 0 0 14px;
 font-size: 13px;
 line-height: 1.4;
 color: #c9d3e2;
 max-width: none;
}

.page-hero .wrap > p:not(.crumb) {
 margin: 0;
 max-width: 62ch;
 color: #d7deea;
 font-size: 18px;
 line-height: 1.55;
}

.crumb {
 font-size: 13px;
 color: #c9d3e2;
 margin-bottom: 12px;
}

.crumb a {
 color: #e8edf4;
 text-decoration: none;
}

h1, h2, h3, p {
 margin-top: 0;
}

.section {
 padding: 88px 0;
}

.section-head {
 display: flex;
 justify-content: space-between;
 align-items: flex-end;
 gap: 24px;
 margin-bottom: 32px;
}

.section-head h2 {
 margin-bottom: 8px;
}

.section-head .lede {
 margin-bottom: 0;
}

.section h2 {
 font-family: var(--serif);
 font-size: clamp(30px, 3.2vw, 44px);
 margin: 0 0 12px;
 line-height: 1.15;
}

.lede {
 font-size: 18px;
 color: var(--muted);
 max-width: 62ch;
 margin: 0 0 40px;
}

.card-grid {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 22px;
}

.card {
 background: var(--white);
 border: 0;
 box-shadow: var(--shadow);
 display: flex;
 flex-direction: column;
 min-height: 100%;
 overflow: hidden;
 text-decoration: none;
 color: inherit;
 transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.card:hover {
 transform: translateY(-6px);
 box-shadow: 0 18px 48px rgba(11, 18, 32, 0.16);
}

.card .media {
 overflow: hidden;
 height: 188px;
}

.card img {
 height: 188px;
 width: 100%;
 object-fit: cover;
 transition: transform 0.5s var(--ease);
}

.card:hover img {
 transform: scale(1.08);
}

.card-body {
 padding: 22px;
 display: flex;
 flex-direction: column;
 gap: 8px;
 flex: 1;
}

.card h3 {
 margin: 0;
 font-size: 22px;
}

.card p {
 margin: 0;
 color: var(--muted);
 flex: 1;
}

.text-link {
 font-weight: 700;
 text-decoration: none;
 color: var(--donate);
}

.text-link::after {
 content: " ->";
}

.impact {
 background: var(--cream);
}

.stats {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 0;
 margin-top: 40px;
}

.stat {
 padding: 0 28px;
 border-right: 1px solid #d7cdb8;
}

.stat:first-child {
 padding-left: 0;
}

.stat:last-child {
 border-right: 0;
 padding-right: 0;
}

.stat strong {
 display: block;
 font-family: var(--serif);
 font-size: clamp(36px, 4vw, 52px);
 color: var(--navy);
 line-height: 1;
}

.stat span {
 display: block;
 margin-top: 10px;
 color: var(--muted);
}

.split {
 display: grid;
 grid-template-columns: 1.05fr 0.95fr;
 gap: 56px;
 align-items: center;
}

.split img {
 width: 100%;
 height: 460px;
 object-fit: cover;
}

.news-grid {
 display: grid;
 grid-template-columns: 1.35fr 1fr 1fr;
 gap: 22px;
}

.news-card {
 background: var(--white);
 box-shadow: var(--shadow);
 overflow: hidden;
 display: flex;
 flex-direction: column;
 transition: transform 0.28s var(--ease);
}

.news-card:hover {
 transform: translateY(-4px);
}

.news-card img {
 height: 230px;
 width: 100%;
 object-fit: cover;
}

.news-card .card-body time {
 color: var(--gold-dark);
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
}

.cta-band,
.signup-band,
.event-band {
 padding: 64px 0;
}

.cta-band {
 background: var(--navy);
 color: var(--white);
}

.cta-band .wrap,
.signup-band .wrap,
.event-band .wrap {
 display: flex;
 justify-content: space-between;
 gap: 32px;
 align-items: center;
}

.cta-band h2,
.signup-band h2,
.event-band h2 {
 margin: 0 0 8px;
 font-family: var(--serif);
 font-size: clamp(28px, 3vw, 38px);
}

.cta-band .wrap > div,
.signup-band .wrap > div,
.event-band .wrap > div {
 min-width: 0;
 flex: 1;
}

.cta-band .wrap .btn,
.signup-band .wrap .btn,
.event-band .wrap .btn {
 flex-shrink: 0;
}

.cta-band p,
.event-band p {
 margin: 0;
 color: #d7deea;
}

.signup-band p {
 margin: 0;
 color: var(--muted);
 max-width: 46ch;
}

.signup-band {
 background: var(--cream);
}

.signup-form {
 display: flex;
 align-items: stretch;
 gap: 8px;
 width: min(440px, 100%);
 flex-shrink: 0;
}

.signup-form input {
 width: auto;
 flex: 1;
 min-width: 0;
 min-height: 48px;
}

.signup-form .btn {
 flex-shrink: 0;
}

.event-band {
 background:
 linear-gradient(100deg, rgba(11, 18, 32, 0.82), rgba(11, 18, 32, 0.45)),
 url("../images/team-banquet.png") center / cover no-repeat;
 color: var(--white);
}

.site-footer {
 background: #070b14;
 color: #c5cdd8;
 padding: 72px 0 28px;
 font-size: 14px;
 line-height: 1.6;
 border-top: 3px solid var(--donate);
}

.footer-grid {
 display: grid;
 grid-template-columns: 1.45fr 0.9fr 0.9fr 1.25fr;
 gap: 40px 32px;
 align-items: start;
}

.footer-brand {
 display: flex;
 flex-direction: column;
 gap: 14px;
}

.footer-brand-mark {
 display: flex;
 align-items: center;
 gap: 12px;
 text-decoration: none;
 color: var(--white);
}

.footer-brand-mark img {
 width: 52px;
 height: 52px;
 object-fit: contain;
 border-radius: 50%;
 background: #1a140c;
 flex-shrink: 0;
}

.site-footer h3 {
 color: var(--white);
 font-size: 13px;
 font-weight: 700;
 letter-spacing: 0.12em;
 text-transform: uppercase;
 margin: 0 0 16px;
 line-height: 1.35;
}

.footer-brand h3 {
 margin: 0;
 max-width: 18ch;
}

.site-footer address {
 font-style: normal;
 margin: 0;
 color: #b7c0cc;
}

.site-footer p {
 margin: 0;
 color: #b7c0cc;
}

.footer-legal-copy {
 color: #9aa6b5;
 font-size: 13px;
 line-height: 1.55;
 max-width: 42ch;
 margin: 0;
}

.site-footer a {
 color: #f3f6fa;
 text-decoration: none;
 transition: color 0.2s var(--ease);
}

.site-footer a:hover {
 color: var(--gold);
}

.site-footer ul {
 list-style: none;
 margin: 0;
 padding: 0;
}

.site-footer li {
 margin: 0 0 10px;
}

.site-footer li a {
 display: inline-block;
 position: relative;
 padding-bottom: 2px;
}

.site-footer li a::after {
 content: "";
 position: absolute;
 left: 0;
 bottom: 0;
 width: 100%;
 height: 1px;
 background: var(--gold);
 transform: scaleX(0);
 transform-origin: left;
 transition: transform 0.2s var(--ease);
}

.site-footer li a:hover::after {
 transform: scaleX(1);
}

.footer-bar {
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 20px;
 margin-top: 48px;
 padding-top: 22px;
 border-top: 1px solid #243044;
}

.footer-bar p {
 margin: 0;
 color: #8b97a8;
 font-size: 13px;
 max-width: 70ch;
}

.footer-bar .btn-donate {
 min-height: 44px;
 padding: 0 22px;
 flex-shrink: 0;
}

.legal {
 border-top: 1px solid #24344d;
 margin-top: 36px;
 padding-top: 18px;
 color: #93a0b4;
 font-size: 13px;
}

.prose {
 max-width: 760px;
}

.prose h2 {
 margin-top: 36px;
}

.prose p,
.prose li {
 font-size: 17px;
}

.inductee-list {
 columns: 2;
 gap: 32px;
 padding-left: 1.2em;
 font-size: 18px;
}

.inductee-list li {
 margin: 0 0 8px;
}

.form {
 display: grid;
 gap: 14px;
 max-width: 560px;
}

label {
 font-weight: 700;
 font-size: 14px;
}

input[type="hidden"] {
 display: none;
}

input:not([type="hidden"]),
textarea,
select {
 width: 100%;
 min-height: 48px;
 border: 1px solid var(--line);
 border-radius: 2px;
 padding: 10px 12px;
 font: inherit;
 background: var(--white);
}

textarea {
 min-height: 140px;
 resize: vertical;
}

.amounts {
 display: flex;
 flex-wrap: wrap;
 gap: 8px;
}

.amounts button {
 min-width: 88px;
 min-height: 48px;
 border: 1px solid var(--navy);
 background: var(--white);
 font-weight: 700;
 cursor: pointer;
}

.amounts button.is-on,
.amounts button:hover {
 background: var(--navy);
 color: var(--white);
}

.note {
 background: var(--cream);
 border-left: 4px solid var(--gold);
 padding: 16px 18px;
}

.two-col {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 40px;
}

.leader-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 22px;
}

.leader-card {
 display: grid;
 grid-template-columns: 108px 1fr;
 background: var(--white);
 box-shadow: var(--shadow);
 min-height: 100%;
 overflow: hidden;
}

.leader-card.with-photo {
 grid-template-columns: 176px 1fr;
}

.leader-mark {
 display: flex;
 align-items: center;
 justify-content: center;
 background: var(--navy);
 color: var(--cream);
 font-family: var(--serif);
 font-size: 32px;
 font-weight: 600;
 overflow: hidden;
}

.leader-mark img {
 width: 100%;
 height: 100%;
 min-height: 200px;
 object-fit: cover;
 object-position: center 18%;
}

.photo-band {
 padding: 0;
}

.photo-band img {
 width: 100%;
 height: min(56vh, 560px);
 object-fit: cover;
 display: block;
}

.gallery-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 14px;
}

.gallery-grid figure {
 margin: 0;
 cursor: zoom-in;
}

.gallery-grid img {
 width: 100%;
 height: 270px;
 object-fit: cover;
 transition: transform 0.4s var(--ease);
}

.gallery-grid figure:hover img {
 transform: scale(1.04);
}

.gallery-grid figcaption {
 font-size: 13px;
 color: var(--muted);
 padding-top: 8px;
}

.leader-card .card-body {
 padding: 22px 22px 22px 20px;
 text-align: left;
 justify-content: center;
}

.leader-role {
 margin: 0;
 color: var(--donate);
 font-size: 12px;
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
}

.leader-strip {
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 16px;
}

.leader-strip a {
 text-decoration: none;
 color: inherit;
 background: var(--white);
 padding: 22px 18px;
 display: block;
 box-shadow: var(--shadow);
 transition: transform 0.25s var(--ease);
}

.leader-strip a:hover {
 transform: translateY(-4px);
}

.leader-strip strong {
 display: block;
 font-size: 16px;
}

.leader-strip span {
 display: block;
 margin-top: 4px;
 color: var(--muted);
 font-size: 14px;
}

.reveal {
 opacity: 0;
 transform: translateY(18px);
 animation: rise 0.7s var(--ease) forwards;
}

.float-donate {
 position: fixed;
 right: 20px;
 bottom: 20px;
 z-index: 70;
 display: none;
}

.float-donate.is-on {
 display: inline-flex;
}

.search-modal {
 position: fixed;
 inset: 0;
 background: rgba(11, 18, 32, 0.72);
 z-index: 120;
 display: none;
 align-items: flex-start;
 justify-content: center;
 padding: 12vh 20px 20px;
}

.search-modal.is-open {
 display: flex;
}

.search-panel {
 width: min(640px, 100%);
 background: var(--white);
 padding: 24px;
 box-shadow: var(--shadow);
}

.search-panel label {
 display: block;
 margin-bottom: 8px;
}

.split > div,
.two-col > div {
 min-width: 0;
}

.search-panel input {
 font-size: 18px;
}

.search-hits {
 list-style: none;
 margin: 16px 0 0;
 padding: 0;
}

.search-hits a {
 display: block;
 padding: 10px 0;
 text-decoration: none;
 color: var(--navy);
 border-bottom: 1px solid var(--line);
 font-weight: 600;
}

.lightbox {
 position: fixed;
 inset: 0;
 background: rgba(11, 18, 32, 0.92);
 z-index: 130;
 display: none;
 align-items: center;
 justify-content: center;
 padding: 24px;
}

.lightbox.is-open {
 display: flex;
}

.lightbox img {
 max-width: min(1100px, 92vw);
 max-height: 86vh;
 object-fit: contain;
}

.lightbox-close {
 position: absolute;
 top: 18px;
 right: 18px;
 background: transparent;
 color: var(--white);
 border: 0;
 font-size: 32px;
 cursor: pointer;
}

@keyframes rise {
 to {
 opacity: 1;
 transform: none;
 }
}

@media (max-width: 1080px) {
 .header-tools {
 margin-left: auto;
 }

 .menu-toggle {
 display: block;
 }

 .nav {
 display: none;
 position: fixed;
 inset: 0;
 background: var(--paper);
 z-index: 85;
 flex-direction: column;
 align-items: flex-start;
 padding: 100px 28px 40px;
 gap: 18px;
 overflow: auto;
 }

 .nav.is-open {
 display: flex;
 }

 .nav a {
 font-size: 22px;
 white-space: normal;
 padding: 4px 0;
 }

 .nav .btn-donate {
 margin-left: 0;
 margin-top: 12px;
 }

 .brand-text {
 display: none;
 }
}

@media (max-width: 960px) {
 .card-grid,
 .stats,
 .news-grid,
 .footer-grid,
 .split,
 .two-col,
 .leader-grid,
 .leader-strip {
 grid-template-columns: 1fr 1fr;
 }

 .signup-form {
 width: 100%;
 }

 .stat {
 border-right: 0;
 padding: 12px 0;
 border-bottom: 1px solid #d7cdb8;
 }

 .gallery-grid {
 grid-template-columns: 1fr 1fr;
 }
}

@media (max-width: 760px) {
 .util-bar .wrap,
 .cta-band .wrap,
 .signup-band .wrap,
 .event-band .wrap,
 .section-head {
 flex-direction: column;
 align-items: flex-start;
 padding-top: 8px;
 padding-bottom: 8px;
 }

 .card-grid,
 .stats,
 .news-grid,
 .footer-grid,
 .split,
 .two-col,
 .gallery-grid,
 .inductee-list,
 .leader-grid,
 .leader-strip,
 .leader-card {
 grid-template-columns: 1fr;
 columns: 1;
 }

 .footer-bar {
 flex-direction: column;
 align-items: flex-start;
 }

 .hero {
 min-height: 78vh;
 align-items: end;
 }

 .hero-inner {
 padding: 48px 0 40px;
 }

 .section {
 padding: 64px 0;
 }
}

@media (prefers-reduced-motion: reduce) {
 html {
 scroll-behavior: auto;
 }

 *,
 *::before,
 *::after {
 animation: none !important;
 transition: none !important;
 }

 .reveal {
 opacity: 1;
 transform: none;
 }
}
