@font-face {
    font-family: "LFC Sans";
    src: url("../fonts/LFCSans-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "LFC Sans";
    src: url("../fonts/LFCSans-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}
@font-face {
    font-family: "LFC Serif Condensed";
    src: url("../fonts/LFCSerifCondensed-Regular.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "LFC Serif Condensed";
    src: url("../fonts/LFCSerifCondensed-Bold.woff2") format("woff2");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --red: #e31b23;
    --red-dark: #400000;
    --ink: #17171a;
    --muted: #696972;
    --line: #dedee3;
    --soft: #f4f3f2;
    --white: #fff;
    --shadow: 0 18px 45px rgba(20, 20, 24, .09);
    --shell: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: "LFC Sans", "Noto Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-family: "LFC Serif Condensed", Georgia, serif; font-weight: 700; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; padding: 10px 14px; background: var(--ink); color: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 20; top: 0; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(23,23,26,.08); }
.site-header__inner { min-height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.site-brand { flex: 0 0 auto; display: block; }
.official-logo { --visual-width: 280px; position: relative; display: block; width: var(--visual-width); height: calc(var(--visual-width) * .3136); overflow: hidden; }
.official-logo img { position: absolute; max-width: none; width: calc(var(--visual-width) * 2.3826); height: auto; transform: translate(calc(var(--visual-width) * -.6969), calc(var(--visual-width) * -.2334)); }
.official-logo--header { --visual-width: 280px; }
.site-nav { display: flex; align-items: stretch; align-self: stretch; }
.site-nav a { position: relative; display: grid; place-items: center; padding: 0 20px; color: #33333a; font-size: 1rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.site-nav a::after { position: absolute; right: 20px; bottom: 22px; left: 20px; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a:focus-visible::after, .site-nav a.is-active::after { transform: scaleX(1); }
.site-nav a.is-active { color: var(--red); }
.menu-toggle { display: none; border: 0; background: none; color: var(--ink); }
.menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.menu-toggle__icon { display: grid; gap: 5px; width: 28px; }
.menu-toggle__icon i { display: block; height: 2px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.site-hero { position: relative; min-height: clamp(430px, 54vw, 650px); display: grid; align-items: center; overflow: hidden; color: #fff; background: var(--red-dark); }
.site-hero__overlay { position: absolute; inset: 0 0 0 58%; background: rgba(227, 27, 35, .34); transform: skewX(-12deg); transform-origin: bottom; }
.site-hero::after { position: absolute; inset: auto 0 0; height: 5px; background: var(--red); content: ""; }
.site-hero__content { position: relative; z-index: 1; padding-block: 80px; }
.eyebrow { margin: 0 0 12px; color: inherit; font-size: 1rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow--red { color: var(--red); }
.site-hero h1 { max-width: 780px; margin: 0; font-family: "LFC Serif Condensed", Georgia, serif; font-size: clamp(3.8rem, 8vw, 7rem); font-weight: 700; line-height: .9; letter-spacing: -.015em; text-transform: uppercase; text-wrap: balance; }
.site-hero__location { max-width: 620px; margin: 18px 0 30px; color: #fff; font-size: clamp(1rem, 2vw, 1.45rem); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid transparent; border-radius: 3px; font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { background: var(--red); color: #fff; }
.button--primary:hover { background: var(--red-dark); }
.button--ghost { border-color: rgba(255,255,255,.7); color: #fff; }
.button--ghost:hover { background: #fff; color: var(--ink); }
.button--light { background: #fff; color: var(--red); }

.section { padding-block: clamp(64px, 8vw, 108px); }
.section--soft { background: var(--soft); }
.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading--with-controls { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-heading h2, .page-intro h2 { margin: 0; font-family: "LFC Serif Condensed", Georgia, serif; font-size: clamp(2.25rem, 5vw, 4.7rem); line-height: 1; letter-spacing: -.015em; }
.section-heading h3 { margin: 0; font-family: "LFC Serif Condensed", Georgia, serif; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.05; letter-spacing: -.01em; }
.section-heading p:last-child, .page-intro > p, .page-intro > div > p:last-child { max-width: 670px; margin: 16px 0 0; color: var(--muted); font-size: 1.08rem; }

.carousel-controls { display: flex; gap: 8px; }
.carousel-controls button { width: 48px; height: 48px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-size: 1.35rem; }
.carousel-controls button:hover, .carousel-controls button:focus-visible { border-color: var(--red); color: var(--red); }
.carousel-controls button:disabled { opacity: .35; cursor: default; }
.news-grid { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 38%); gap: 22px; overflow-x: auto; padding: 4px 4px 24px; scroll-snap-type: x mandatory; scrollbar-color: var(--red) var(--soft); }
.news-card { min-height: 100%; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--line); background: #fff; scroll-snap-align: start; }
.news-card__image { aspect-ratio: 16/9; overflow: hidden; background: var(--soft); }
.news-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.news-card__image img.is-fallback { padding: 34px; object-fit: contain; }
.news-card:hover .news-card__image img { transform: scale(1.03); }
.news-card__body { min-height: 220px; display: flex; flex-direction: column; align-items: flex-start; padding: 24px; }
.news-card time { color: var(--red); font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.news-card h3 { margin: 12px 0 22px; font-size: clamp(1.2rem, 2vw, 1.55rem); line-height: 1.25; letter-spacing: -.02em; }
.text-link { margin-top: auto; color: var(--red); font-size: 1rem; font-weight: 700; letter-spacing: .06em; text-decoration: none; text-transform: uppercase; }
.text-link span { margin-left: 6px; }

.match-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 24px; align-items: start; }
.panel { overflow: hidden; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.panel__heading { padding: 26px 28px; border-bottom: 3px solid var(--red); }
.panel__heading--red { background: var(--red); color: #fff; border: 0; }
.panel__kicker { margin: 0 0 4px; color: inherit; opacity: .7; font-size: 1rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.panel__heading h3 { margin: 0; font-size: 1.65rem; letter-spacing: -.035em; }
.fixture-month { margin: 0; padding: 18px 28px 10px; color: var(--red); font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; }
.fixture-list { padding: 0 28px 28px; }
.fixture-card { padding: 20px 0; border-bottom: 1px solid var(--line); }
.fixture-card:last-child { border-bottom: 0; }
.fixture-card__meta { display: flex; flex-wrap: wrap; gap: 5px 14px; color: var(--muted); font-size: 1rem; }
.fixture-card__meta strong { color: var(--ink); }
.fixture-card__teams { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center; margin-top: 18px; }
.fixture-team { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 700; }
.fixture-team:last-child { flex-direction: row-reverse; text-align: right; }
.fixture-team img { width: 38px; height: 38px; object-fit: contain; }
.fixture-versus { color: var(--muted); font-size: 1rem; }
.league-table-wrap { overflow-x: auto; }
.league-table { width: 100%; border-collapse: collapse; font-size: 1rem; white-space: nowrap; }
.league-table th, .league-table td { height: 43px; padding: 8px 10px; border-bottom: 1px solid #ececef; text-align: center; }
.league-table th:nth-child(2) { min-width: 130px; text-align: left; }
.league-table thead { background: #252529; color: #fff; font-size: 1rem; letter-spacing: .05em; text-transform: uppercase; }
.league-table tbody tr:nth-child(even) { background: #fafafa; }
.league-table tr.is-liverpool { background: #fff0f2 !important; box-shadow: inset 4px 0 0 var(--red); }

.membership-banner { padding-block: 52px; background: var(--red); color: #fff; }
.membership-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.membership-banner h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.05; letter-spacing: -.045em; }
.membership-banner p:last-child { margin: 8px 0 0; opacity: .82; }

.page-section { min-height: 450px; }
.page-intro { max-width: 850px; margin-bottom: 64px; }
.page-intro--split, .page-intro--membership { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 32px; }
.page-intro--membership > div { max-width: 780px; }
.page-intro__count { flex: 0 0 auto; padding-bottom: 6px; color: var(--red) !important; font-size: 1rem !important; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.squad-group + .squad-group { margin-top: 64px; }
.squad-group__heading { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 20px; padding-bottom: 13px; border-bottom: 2px solid var(--red); }
.squad-group__heading h3 { margin: 0; font-size: 1.8rem; letter-spacing: -.035em; }
.squad-group__heading span { color: var(--muted); font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.player-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.player-card { overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.player-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.player-card__image { aspect-ratio: 4/4.5; overflow: hidden; background: #e9e8e7; }
.player-card__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.player-card__placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: #c4c2c2; font-size: 2.2rem; font-weight: 700; }
.player-card__body { position: relative; min-height: 84px; display: flex; align-items: center; padding: 20px; }
.player-card__body h4 { margin: 0; font-size: 1.1rem; line-height: 1.2; }
.player-card__number { min-width: 42px; margin-right: 12px; padding-right: 12px; border-right: 1px solid var(--line); color: var(--red); font-size: 1.5rem; font-weight: 700; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.gallery-card { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--soft); text-decoration: none; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-card span { position: absolute; right: 0; bottom: 0; padding: 9px 13px; background: var(--red); color: #fff; font-size: 1rem; font-weight: 700; letter-spacing: .08em; opacity: 0; text-transform: uppercase; transition: opacity .2s ease; }
.gallery-card:hover img { transform: scale(1.03); }
.gallery-card:hover span, .gallery-card:focus-visible span { opacity: 1; }
.gallery-dialog { width: min(92vw, 1100px); max-height: 90vh; padding: 0; border: 0; background: transparent; }
.gallery-dialog::backdrop { background: rgba(0,0,0,.9); }
.gallery-dialog img { width: 100%; max-height: 86vh; object-fit: contain; }
.gallery-dialog__close { position: fixed; z-index: 2; top: 24px; right: 24px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.5); background: #111; color: #fff; font-size: 1.8rem; line-height: 1; }

.content-block { padding-block: 52px; border-top: 1px solid var(--line); }
.content-block__heading { display: flex; gap: 20px; align-items: start; margin-bottom: 30px; }
.content-block__heading > span { color: var(--red); font-size: 1rem; font-weight: 700; }
.content-block__heading h3 { margin: 0; font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1; letter-spacing: -.04em; }
.fee-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.fee-card { min-height: 220px; display: flex; flex-direction: column; padding: 24px; border: 1px solid var(--line); background: #fff; }
.fee-card--featured { border-top: 5px solid var(--red); }
.fee-card p { min-height: 50px; margin: 0; font-weight: 700; }
.fee-card strong { margin: auto 0 4px; color: var(--red); font-size: 2.25rem; letter-spacing: -.05em; }
.fee-card span { color: var(--muted); font-size: 1rem; }
.content-block--two-column { display: grid; grid-template-columns: minmax(220px, .5fr) minmax(0, 1.35fr) minmax(230px, .55fr); gap: 34px; align-items: start; }
.benefit-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 30px; }
.benefit-list > div { padding: 0 0 20px 18px; border-left: 3px solid var(--red); }
.benefit-list strong { font-size: 1rem; }
.benefit-list p { margin: 5px 0 0; color: var(--muted); font-size: 1rem; }
.membership-note { padding: 24px; border-top: 4px solid var(--red); background: var(--soft); }
.membership-note p { margin: 8px 0 0; color: var(--muted); font-size: 1rem; }
.policy-statement, .privacy-summary { max-width: 900px; margin: 24px 0 0; padding: 18px 20px; border-left: 4px solid var(--red); background: var(--soft); color: var(--muted); font-size: 1rem; }
.privacy-summary { margin-bottom: 24px; }
.privacy-summary a { color: var(--red); font-weight: 700; }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 0 0 24px; padding: 0; list-style: none; }
.steps li { min-height: 170px; padding: 22px; border: 1px solid var(--line); }
.steps li > span { color: var(--red); font-size: 1.5rem; font-weight: 700; }
.steps strong { display: block; margin-top: 18px; }
.steps p { margin: 6px 0 0; color: var(--muted); font-size: 1rem; }
.payment-notice { margin-bottom: 24px; padding: 15px 18px; border-left: 4px solid var(--red); background: #fff1f2; }

.story-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 70px; padding-block: 24px 72px; }
.story-grid > div:first-child { position: sticky; top: 120px; align-self: start; }
.story-grid h3 { margin: 0; font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1; letter-spacing: -.045em; }
.timeline { border-left: 2px solid var(--line); }
.timeline article { position: relative; padding: 0 0 42px 34px; }
.timeline article::before { position: absolute; top: 5px; left: -7px; width: 12px; height: 12px; background: var(--red); content: ""; }
.timeline time { color: var(--red); font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.timeline h4 { margin: 6px 0; font-size: 1.35rem; }
.timeline p { margin: 0; color: var(--muted); }
.purpose-panel { padding: clamp(32px, 6vw, 70px); background: #242328; color: #fff; }
.purpose-panel h3 { margin: 0; font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1; }
.purpose-panel > p:last-child { max-width: 850px; margin: 22px 0 0; color: #d5d3d5; font-size: 1.05rem; }
.committee-section { padding-top: 80px; }
.committee-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.committee-grid article { min-height: 150px; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.committee-grid span { color: var(--red); font-size: 1rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.committee-grid h4 { margin: 20px 0 0; font-size: 1.2rem; }
.privacy-content { max-width: 900px; }
.privacy-content section { padding: 28px 0; border-top: 1px solid var(--line); }
.privacy-content h3 { margin: 0 0 10px; font-size: 1.35rem; }
.privacy-content p, .privacy-content li { color: var(--muted); }
.privacy-content ul { padding-left: 20px; }

.empty-state { width: 100%; min-height: 220px; display: grid; place-content: center; padding: 36px; border: 1px dashed #c9c9cf; background: var(--soft); text-align: center; }
.empty-state h3, .empty-state p { margin: 0; }
.empty-state p { color: var(--muted); }
.empty-state--compact { min-height: 150px; }

.site-footer { padding-top: 62px; background: var(--red-dark); color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr .7fr 1fr .6fr; gap: 50px; padding-bottom: 52px; }
.official-logo--footer { --visual-width: 260px; margin-bottom: 18px; }
.site-footer p, .site-footer address { color: #e4e2e2; font-size: 1rem; font-style: normal; }
.site-footer__about p { max-width: 330px; }
.site-footer h2 { margin: 0 0 16px; font-size: 1rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; }
.footer-links a, .footer-email { color: #f2f1f1; font-size: 1rem; text-decoration: none; }
.footer-links a:hover, .footer-email:hover { color: #fff; }
.social-links { display: flex; gap: 8px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid #55535b; color: #fff; font-weight: 700; text-decoration: none; }
.social-links a:hover { border-color: var(--red); background: var(--red); }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid #37363b; }
.site-footer__bottom p { margin: 0; font-size: 1rem; }

@media (max-width: 960px) {
    .site-header__inner { min-height: 92px; }
    .official-logo--header { --visual-width: 240px; }
    .menu-toggle { z-index: 2; display: block; padding: 12px 0 12px 12px; }
    .site-nav { position: fixed; inset: 92px 0 auto; display: none; padding: 10px 24px 24px; border-bottom: 1px solid var(--line); background: #fff; box-shadow: 0 20px 40px rgba(0,0,0,.12); }
    .site-nav.is-open { display: grid; }
    .site-nav a { min-height: 54px; justify-content: start; padding: 0; border-bottom: 1px solid var(--line); }
    .site-nav a::after { right: auto; bottom: 10px; left: 0; width: 28px; }
    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:first-child { transform: translateY(7px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] .menu-toggle__icon i:last-child { transform: translateY(-7px) rotate(-45deg); }
    .match-grid, .story-grid { grid-template-columns: 1fr; }
    .story-grid { gap: 30px; }
    .story-grid > div:first-child { position: static; }
    .player-grid { grid-template-columns: repeat(3, 1fr); }
    .fee-grid { grid-template-columns: repeat(3, 1fr); }
    .content-block--two-column { grid-template-columns: 1fr 2fr; }
    .content-block--two-column .membership-note { grid-column: 2; }
    .site-footer__grid { grid-template-columns: 1.3fr 1fr 1fr; }
    .site-footer__grid > div:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
    .shell { width: min(calc(100% - 32px), var(--shell)); }
    .site-hero { min-height: 500px; background-position: 61% center; }
    .site-hero__content { padding-block: 60px; }
    .site-hero h1 br { display: block; }
    .section { padding-block: 64px; }
    .section-heading--with-controls, .page-intro--split, .page-intro--membership, .membership-banner__inner { align-items: flex-start; flex-direction: column; }
    .page-intro { margin-bottom: 44px; }
    .news-grid { grid-auto-columns: 84%; }
    .match-grid { gap: 18px; }
    .player-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .fee-grid { grid-template-columns: repeat(2, 1fr); }
    .content-block--two-column { display: block; }
    .benefit-list { margin-bottom: 26px; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .committee-grid { grid-template-columns: repeat(2, 1fr); }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
    .site-footer__grid > div:last-child { grid-column: auto; }
}

@media (max-width: 520px) {
    .site-header__inner { min-height: 84px; }
    .official-logo--header { --visual-width: 200px; }
    .site-nav { inset-block-start: 84px; }
    .site-hero { min-height: 470px; }
    .site-hero h1 { max-width: 100%; font-size: clamp(3.25rem, 17vw, 4.5rem); overflow-wrap: anywhere; }
    .site-hero__actions { align-items: stretch; flex-direction: column; }
    .button { width: 100%; }
    .carousel-controls { width: 100%; justify-content: flex-end; }
    .news-grid { margin-right: -16px; grid-auto-columns: 89%; }
    .fixture-list, .panel__heading { padding-inline: 18px; }
    .fixture-month { padding-inline: 18px; }
    .fixture-card__teams { gap: 8px; }
    .fixture-team { align-items: center; flex-direction: column; text-align: center; }
    .fixture-team:last-child { flex-direction: column; text-align: center; }
    .league-table th, .league-table td { padding-inline: 8px; }
    .player-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .player-card__body { min-height: 72px; padding: 12px; }
    .player-card__body h4 { font-size: 1rem; }
    .player-card__number { min-width: 31px; margin-right: 8px; padding-right: 8px; font-size: 1.15rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .fee-grid, .benefit-list, .steps, .committee-grid { grid-template-columns: 1fr; }
    .fee-card { min-height: 180px; }
    .steps li { min-height: auto; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__bottom { flex-direction: column; }
}

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