:root {
    --white: #ffffff;
    --paper: #fffdf8;
    --ink: #251d16;
    --muted: #6d6257;
    --gold: #c89b3c;
    --gold-light: #e4bc64;
    --gold-pale: #f4ead2;
    --brown: #2b2119;
    --line: rgba(37, 29, 22, 0.15);
    --sans: "Poppins", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

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

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

.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;
    top: 10px;
    left: 10px;
    z-index: 1000;
    padding: 10px 16px;
    background: var(--white);
    transform: translateY(-150%);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 78px;
    background: rgba(255, 253, 248, 0.95);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: block;
    flex: 0 0 auto;
    width: clamp(210px, 20vw, 280px);
    transform: translateY(-4px);
}

.brand img {
    width: 100%;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    color: #4e443b;
    font-size: 13px;
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible { color: #916c20; }

.nav-button {
    padding: 9px 16px;
    border: 1px solid var(--gold);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }

.hero {
    position: relative;
    min-height: 720px;
    display: grid;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
    color: var(--white);
    background: url("../img/hero-jesus.webp") center 45% / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(20, 15, 11, .9) 0%, rgba(25, 18, 13, .7) 42%, rgba(25, 18, 13, .12) 78%),
        linear-gradient(0deg, rgba(20, 15, 11, .65) 0%, transparent 40%);
}

.hero-content { padding: 90px 0 140px; }

.eyebrow {
    margin: 0 0 20px;
    color: #987126;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow-light { color: var(--gold-light); }

h1, h2 {
    margin: 0;
    font-family: var(--sans);
    font-weight: 700;
    letter-spacing: -.05em;
    line-height: 1.04;
}

h1 {
    max-width: 1080px;
    font-size: clamp(54px, 6.5vw, 90px);
}
h2 { font-size: clamp(48px, 5.5vw, 78px); }

.hero-intro {
    max-width: 650px;
    margin: 30px 0 0;
    color: rgba(255, 255, 255, .84);
    font-size: 19px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 12px 23px;
    border: 1px solid transparent;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

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

.button-gold { background: var(--gold-light); color: var(--ink); }
.button-gold:hover { background: #f0cb7a; }

.button-dark { background: var(--brown); color: var(--white); }
.button-dark:hover,
.button-dark:focus-visible { background: #463629; }

.button-outline {
    border-color: var(--brown);
    background: transparent;
    color: var(--brown);
}

.button-outline:hover,
.button-outline:focus-visible { background: var(--brown); color: var(--white); }

.text-link {
    padding: 8px 0;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 700;
}

.hero-principles {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, .24);
}

.hero-principles span {
    padding: 22px 24px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.hero-principles span + span { border-left: 1px solid rgba(255, 255, 255, .24); }

.section { padding: 125px 0; }

.donate-section {
    padding: 78px 0;
    background: var(--gold-pale);
    border-bottom: 1px solid rgba(37, 29, 22, .12);
}

.donate-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 90px;
    align-items: center;
}

.donate-section h2 {
    max-width: 720px;
    font-size: clamp(40px, 4.5vw, 65px);
}

.donate-copy > p {
    margin: 0 0 26px;
    color: #55483c;
    font-size: 17px;
}

.donate-copy small {
    display: block;
    margin-top: 12px;
    color: #766858;
}

.shop-section {
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

.shop-layout {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 80px;
    align-items: center;
}

.shop-copy .lead {
    max-width: 500px;
    margin-top: 28px;
}

.shop-price {
    margin: 30px 0 22px;
    color: var(--muted);
    font-size: 18px;
}

.shop-price strong {
    color: var(--ink);
    font-size: 28px;
}

.shirt-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.shirt-card {
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--gold-pale);
    transition: transform .18s ease, box-shadow .18s ease;
}

.shirt-card:hover,
.shirt-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(37, 29, 22, .12);
}

.shirt-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.shirt-card span {
    display: block;
    padding: 18px 20px;
    background: var(--white);
    font-size: 14px;
    font-weight: 700;
}

.section-heading { margin-bottom: 68px; }

.split-heading {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: end;
}

.lead {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.8;
}

.principle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
}

.principle-card {
    min-height: 330px;
    padding: 38px;
    background: var(--white);
}

.principle-card + .principle-card { border-left: 1px solid var(--line); }
.principle-card.featured { background: var(--gold-pale); }

.number,
.covenant-item > span {
    color: #9c772e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
}

.principle-card h3,
.gathering-step h3 {
    margin: 88px 0 15px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.15;
}

.principle-card p,
.gathering-step p { margin: 0; color: var(--muted); }

.love-section { background: var(--white); }

.love-layout {
    display: grid;
    grid-template-columns: .86fr 1.14fr;
    gap: 100px;
    align-items: center;
}

.cross-stage {
    position: relative;
    min-height: 650px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #f7f0e1;
}

.cross-stage::before,
.cross-stage::after {
    content: "";
    position: absolute;
    background: rgba(172, 130, 46, .27);
}

.cross-stage::before { width: 1px; height: 100%; }
.cross-stage::after { width: 100%; height: 1px; }

.cross-stage img {
    position: relative;
    z-index: 2;
    width: 42%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 20px 18px rgba(49, 31, 18, .18));
}

.gold-halo {
    position: absolute;
    width: 68%;
    aspect-ratio: 1;
    border: 1px solid rgba(184, 139, 48, .4);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(207, 170, 93, .07), 0 0 0 76px rgba(207, 170, 93, .04);
}

.love-lead { margin-top: 30px; }

.simple-list {
    margin-top: 42px;
    border-top: 1px solid var(--line);
}

.simple-list p {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    margin: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.simple-list span { color: #9c772e; font-size: 11px; font-weight: 800; }

.gathering-section { background: var(--brown); color: var(--white); }
.gathering-section .lead,
.gathering-step p { color: rgba(255, 255, 255, .66); }

.gathering-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block: 1px solid rgba(255, 255, 255, .17);
}

.gathering-step {
    min-height: 350px;
    padding: 35px 28px;
}

.gathering-step + .gathering-step { border-left: 1px solid rgba(255, 255, 255, .17); }

.participation-note {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    margin-top: 42px;
    padding: 32px 36px;
    border: 1px solid rgba(228, 188, 100, .48);
}

.participation-note p { margin: 0; }
.participation-note > p:last-child { color: rgba(255, 255, 255, .72); }

.clergy-section { background: var(--white); }

.clergy-model {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
}

.minister-role {
    min-height: 315px;
    padding: 36px;
}

.minister-role + .minister-role { border-left: 1px solid var(--line); }

.minister-role h3 {
    margin: 70px 0 16px;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1.2;
}

.minister-role p { margin: 0; color: var(--muted); }

.clergy-standards {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px;
    margin-top: 28px;
    padding: 50px;
    background: var(--brown);
    color: var(--white);
}

.standards-heading h3 {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -.04em;
}

.standards-heading > p:last-child {
    margin: 0;
    color: rgba(255, 255, 255, .68);
}

.standard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.standard-grid > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.standard-grid span {
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 800;
}

.standard-grid p { margin: 0; color: rgba(255, 255, 255, .82); }

.attire-note {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 28px;
    align-items: center;
    margin-top: 28px;
    padding: 34px 38px;
    border: 1px solid var(--line);
    background: var(--gold-pale);
}

.attire-note h3 {
    margin: 0 0 8px;
    font-size: 24px;
    letter-spacing: -.035em;
}

.attire-note p { margin: 0; color: #574b3f; }

.collar-mark {
    position: relative;
    width: 76px;
    height: 76px;
    background: #171717;
}

.collar-mark::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 22px;
    width: 32px;
    height: 24px;
    background: var(--white);
}

.collar-mark span {
    position: absolute;
    top: 18px;
    left: 35px;
    width: 6px;
    height: 24px;
    background: #171717;
}

.membership-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: start;
}

.membership-intro { position: sticky; top: 115px; }
.membership-intro .lead { margin-top: 30px; }
.membership-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

blockquote {
    margin: 42px 0 0;
    padding: 28px;
    background: var(--gold-pale);
    color: #4f4439;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.55;
}

.covenant-list { border-top: 1px solid var(--line); }

.covenant-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.covenant-item p { margin: 0; color: #4f4439; font-size: 17px; }

.leadership-section { background: var(--gold-pale); }

.leadership-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 100px;
}

.accountability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 45px;
    border-top: 1px solid rgba(37, 29, 22, .22);
    border-left: 1px solid rgba(37, 29, 22, .22);
}

.accountability-grid p {
    margin: 0;
    padding: 21px;
    border-right: 1px solid rgba(37, 29, 22, .22);
    border-bottom: 1px solid rgba(37, 29, 22, .22);
    font-size: 18px;
    font-weight: 600;
}

.vision-prototype {
    width: 100%;
    margin: 72px 0 0;
    background: var(--brown);
}

.vision-prototype img {
    width: 100%;
    height: auto;
}

.vision-prototype figcaption {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 32px;
    padding: 28px 32px;
    color: var(--white);
}

.vision-prototype figcaption > span {
    color: var(--gold-light);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.vision-prototype figcaption strong {
    display: block;
    margin-bottom: 6px;
    font-size: 19px;
}

.vision-prototype figcaption p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, .7);
}

.welcome-section {
    padding: 120px 0;
    background: var(--gold-pale);
}

.welcome-heading {
    max-width: 800px;
    margin-bottom: 58px;
}

.welcome-heading > p:not(.eyebrow) {
    max-width: 730px;
    margin: 28px 0 0;
    color: #5d5044;
    font-size: 18px;
}

.location-note {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2px 14px;
    max-width: 720px;
    margin-top: 34px;
    padding: 22px 24px;
    border-left: 4px solid var(--gold);
    background: rgba(255, 255, 255, .68);
}

.location-note > span {
    color: #8c6723;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.location-note > strong {
    font-size: 18px;
}

.location-note > p {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    color: var(--muted);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.welcome-card {
    padding: 42px;
    background: var(--white);
    border: 1px solid rgba(37, 29, 22, .12);
}

.welcome-card h3 {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: -.035em;
}

.welcome-card > p:not(.card-kicker):not(.bookmark-help) { color: var(--muted); }

.card-kicker {
    margin: 0 0 12px;
    color: #8c6723;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.check-list {
    margin: 26px 0 32px;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 12px 0 12px 28px;
    border-bottom: 1px solid var(--line);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #987126;
    font-weight: 800;
}

.bookmark-help {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.contact-section {
    padding: 120px 0;
    background: var(--brown);
    color: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.contact-section .lead {
    margin-top: 28px;
    color: rgba(255, 255, 255, .72);
}

.contact-section .lead a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.site-form {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.site-form label {
    margin-top: 5px;
    color: #4f4338;
    font-size: 13px;
    font-weight: 600;
}

.site-form input,
.site-form textarea {
    width: 100%;
    border: 1px solid rgba(37, 29, 22, .22);
    border-radius: 0;
    background: #fffefa;
    color: var(--ink);
    font: inherit;
    outline: none;
}

.site-form input { min-height: 50px; padding: 10px 13px; }
.site-form textarea { padding: 13px; resize: vertical; }

.site-form input:focus,
.site-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 155, 60, .15);
}

.site-form .button {
    justify-self: start;
    margin-top: 12px;
    cursor: pointer;
}

.contact-form {
    margin-top: 0;
    padding: 38px;
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-row > div { display: grid; gap: 12px; }

.form-trap {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    margin: 18px 0;
    padding: 13px 15px;
    border: 1px solid;
    font-size: 14px;
}

.form-status.success {
    border-color: #5d8b68;
    background: #edf7ef;
    color: #285936;
}

.form-status.error {
    border-color: #b86358;
    background: #fff0ed;
    color: #7d3028;
}

.site-footer {
    padding: 55px 0;
    background: #1d1712;
    color: rgba(255, 255, 255, .58);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 65px;
    align-items: end;
}

.footer-inner p { margin: 0; }
.footer-brand {
    display: block;
    width: min(290px, 100%);
    margin-bottom: 16px;
}
.footer-brand img { width: 100%; height: auto; }
.footer-location { margin-top: 8px !important; color: var(--gold-light); font-size: 13px; }
.site-footer nav { display: flex; gap: 26px; color: rgba(255, 255, 255, .78); font-size: 13px; }

@media (max-width: 900px) {
    .menu-toggle { display: block; }

    .site-nav {
        position: fixed;
        top: 78px;
        right: 0;
        bottom: auto;
        height: calc(100vh - 78px);
        height: calc(100dvh - 78px);
        width: min(360px, 100%);
        padding: 45px 30px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--paper);
        box-shadow: -12px 20px 30px rgba(37, 29, 22, .12);
        transform: translateX(105%);
        transition: transform .22s ease;
    }

    .site-nav.open { transform: translateX(0); }
    .site-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
    .site-nav .nav-button { margin-top: 20px; padding: 12px 15px; text-align: center; }

    .split-heading,
    .donate-layout,
    .shop-layout,
    .love-layout,
    .membership-layout,
    .leadership-layout,
    .contact-layout { grid-template-columns: 1fr; gap: 50px; }

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

    .clergy-model { grid-template-columns: 1fr; }
    .minister-role { min-height: auto; }
    .minister-role + .minister-role { border-top: 1px solid var(--line); border-left: 0; }
    .clergy-standards { grid-template-columns: 1fr; gap: 40px; }

    .principle-grid { grid-template-columns: 1fr; }
    .principle-card { min-height: auto; }
    .principle-card + .principle-card { border-top: 1px solid var(--line); border-left: 0; }
    .principle-card h3 { margin-top: 48px; }

    .cross-stage { min-height: 560px; }
    .gathering-grid { grid-template-columns: repeat(2, 1fr); }
    .gathering-step:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, .17); border-left: 0; }
    .gathering-step:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .17); }
    .membership-intro { position: static; }
    .footer-inner { grid-template-columns: 1fr; gap: 28px; align-items: start; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 32px, 1180px); }
    .site-header, .header-inner { min-height: 68px; }
    .site-nav {
        top: 68px;
        height: calc(100vh - 68px);
        height: calc(100dvh - 68px);
    }
    .brand { width: min(210px, calc(100vw - 100px)); }

    .hero { min-height: 760px; background-position: 65% center; }
    .hero-content { padding: 75px 0 60px; }
    h1 { font-size: clamp(42px, 12vw, 58px); }
    h2 { font-size: clamp(42px, 13vw, 58px); }
    .hero-intro, .lead { font-size: 16px; }
    .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }

    .hero-principles { position: relative; grid-template-columns: 1fr; margin-top: auto; }
    .hero-principles span { padding: 9px; font-size: 14px; }
    .hero-principles span + span { border-top: 1px solid rgba(255, 255, 255, .18); border-left: 0; }

    .section { padding: 82px 0; }
    .donate-section { padding: 65px 0; }
    .shop-layout { gap: 45px; }
    .section-heading { margin-bottom: 45px; }
    .principle-card { padding: 28px; }
    .cross-stage { min-height: 450px; }

    .gathering-grid { grid-template-columns: 1fr; }
    .gathering-step { min-height: auto; padding: 30px 20px 40px; }
    .gathering-step + .gathering-step { border-top: 1px solid rgba(255, 255, 255, .17); border-left: 0; }
    .gathering-step h3 { margin-top: 42px; }
    .participation-note { grid-template-columns: 1fr; gap: 10px; padding: 25px; }

    .clergy-standards { padding: 28px; }
    .standard-grid { grid-template-columns: 1fr; }
    .attire-note { grid-template-columns: 1fr; padding: 28px; }

    .covenant-item { grid-template-columns: 38px 1fr; gap: 12px; }
    .accountability-grid { grid-template-columns: 1fr; }
    .vision-prototype { margin-top: 48px; }
    .vision-prototype figcaption { grid-template-columns: 1fr; gap: 10px; padding: 24px; }
    .welcome-section, .contact-section { padding: 85px 0; }
    .welcome-card, .contact-form { padding: 27px; }
    .form-row { grid-template-columns: 1fr; }
    .site-footer nav { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .shirt-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .01ms !important; }
}
