:root {
    --navy: #0b1f33;
    --navy-soft: #173048;
    --red: #df1f2d;
    --red-dark: #b41420;
    --sage: #4f8f78;
    --cream: #fbf8f5;
    --mist: #f1f3f5;
    --line: #d8dee4;
    --text: #223548;
    --muted: #61707d;
    --white: #ffffff;
    --content: 80rem;
    --gutter: clamp(1.25rem, 4vw, 4.5rem);
    --section-space: clamp(2.75rem, 4.5vw, 4.75rem);
    --section-space-tight: clamp(2rem, 3vw, 3.25rem);
    --flow-gap: clamp(1.25rem, 2.2vw, 2.5rem);
    --grid-gap: clamp(1.5rem, 4vw, 4rem);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 5.25rem;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--cream);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.58;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

[data-protected-media] {
    -webkit-touch-callout: none;
    user-select: none;
}

[data-protected-media] img,
[data-protected-media] video {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

a {
    color: inherit;
}

button,
input,
textarea,
select {
    font: inherit;
}

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

h1,
h2,
h3 {
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.03;
}

h2 {
    margin-bottom: clamp(1rem, 1.5vw, 1.75rem);
    font-size: clamp(2.25rem, 4.8vw, 4.75rem);
}

h3 {
    font-size: clamp(1.5rem, 2.6vw, 2.35rem);
}

:focus-visible {
    outline: 3px solid #0069d9;
    outline-offset: 4px;
}

.sr-only {
    position: absolute !important;
    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: 0.75rem;
    left: 0.75rem;
    z-index: 200;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--navy);
    border-radius: 0.4rem;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    color: var(--navy);
    background: rgba(251, 248, 245, 0.94);
    background: color-mix(in srgb, var(--cream) 94%, transparent);
    border-bottom: 1px solid rgba(11, 31, 51, 0.1);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%, calc(var(--content) + (2 * var(--gutter))));
    min-height: 4.75rem;
    margin: 0 auto;
    padding: 0.75rem var(--gutter);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.brand-monogram {
    display: grid;
    place-items: center;
    width: 3.15rem;
    aspect-ratio: 1;
    color: var(--white);
    background: var(--red);
    border-radius: 0.3rem 1rem 0.3rem 0.3rem;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.brand-copy {
    display: grid;
    line-height: 1.15;
}

.brand-copy strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.brand-copy small {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.75rem;
}

.brand-copy small b {
    color: var(--navy);
    font-weight: 850;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: clamp(0.25rem, 1.2vw, 0.75rem);
}

.main-navigation a {
    padding: 0.75rem 0.85rem;
    border-radius: 0.5rem;
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
}

.main-navigation a:hover {
    color: var(--red-dark);
    background: rgba(223, 31, 45, 0.06);
}

.main-navigation .nav-contact {
    padding-inline: 1.15rem;
    color: var(--white);
    background: var(--red);
}

.main-navigation .nav-contact:hover {
    color: var(--white);
    background: var(--red-dark);
}

.menu-toggle {
    display: none;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.9rem;
    padding: 0.65rem 0.85rem;
    color: var(--navy);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 0.6rem;
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
    display: block;
    width: 1.25rem;
    height: 2px;
    background: currentColor;
    transition: transform 160ms ease;
}

.menu-lines {
    position: relative;
}

.menu-lines::before,
.menu-lines::after {
    position: absolute;
    left: 0;
    content: "";
}

.menu-lines::before {
    top: -0.38rem;
}

.menu-lines::after {
    top: 0.38rem;
}

.menu-toggle[aria-expanded="true"] .menu-lines {
    background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-lines::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.hero {
    width: 100%;
    overflow: hidden;
    background: #38543c;
}

.hero picture,
.hero img {
    width: 100%;
}

.hero img {
    height: auto;
}

.content-section {
    width: min(100%, calc(var(--content) + (2 * var(--gutter))));
    margin: 0 auto;
    padding: var(--section-space) var(--gutter);
}

.section-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.8fr);
    gap: var(--grid-gap);
}

.intro-section {
    background: var(--cream);
}

.intro-grid h2 {
    max-width: 11ch;
}

.eyebrow {
    margin-bottom: 1.15rem;
    color: var(--red-dark);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.intro-copy {
    padding-top: clamp(0rem, 1vw, 1rem);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
}

.rich-text p:last-child {
    margin-bottom: 0;
}

.rich-text a {
    color: var(--red-dark);
    font-weight: 700;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

blockquote {
    margin: 1.5rem 0 0;
    padding: 0.3rem 0 0.3rem 1.5rem;
    color: var(--navy);
    border-left: 5px solid var(--red);
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 750;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.roles-section {
    padding: var(--section-space-tight) var(--gutter) var(--section-space);
    background: var(--cream);
}

.roles-heading {
    width: min(100%, var(--content));
    margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.roles-heading h2 {
    max-width: 21ch;
    margin-bottom: 0;
    font-size: clamp(2.25rem, 4.2vw, 4.25rem);
}

.roles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, var(--content));
    margin: 0 auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.role-card {
    padding: clamp(1.6rem, 2.5vw, 2.5rem);
    border-right: 1px solid var(--line);
}

.role-card:last-child {
    border-right: 0;
}

.role-card .eyebrow {
    margin-top: 1.5rem;
}

.role-card h3 {
    margin-bottom: 0.9rem;
}

.role-card p:last-child,
.priority-card p:last-child {
    color: var(--muted);
}

.card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 2rem;
    color: var(--white);
    background: var(--red);
    border-radius: 0.25rem 0.8rem 0.25rem 0.25rem;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.image-story {
    position: relative;
    color: var(--white);
    background: var(--navy);
}

.full-bleed-image {
    margin: 0;
}

.full-bleed-image img {
    width: 100%;
    height: auto;
}

.story-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    column-gap: var(--grid-gap);
    row-gap: 0.75rem;
    width: min(100%, calc(var(--content) + (2 * var(--gutter))));
    margin: 0 auto;
    padding: var(--section-space-tight) var(--gutter);
}

.story-panel h2 {
    max-width: 12ch;
    margin-bottom: 0;
    color: var(--white);
}

.story-panel > p:last-child {
    align-self: end;
    margin-bottom: 0.9rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.image-story .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
    color: #ff7780;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(10rem, 0.4fr) minmax(0, 1fr);
    gap: var(--flow-gap);
    align-items: start;
}

.section-heading h2 {
    max-width: 16ch;
}

.section-heading .eyebrow {
    margin-bottom: 0;
}

.priority-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: var(--flow-gap);
}

.priorities-section-continuation {
    padding-block: var(--section-space-tight);
}

.priority-card {
    padding: clamp(1.5rem, 2.4vw, 2.25rem);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 0.6rem 4rem 0.6rem 0.6rem;
}

.priority-card:nth-child(3n + 2) {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.priority-card:nth-child(3n + 2) h3,
.priority-card:nth-child(3n + 2) p:last-child {
    color: var(--white);
}

.priority-card h3 {
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
}

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

.about-copy {
    width: min(100%, calc(var(--content) + (2 * var(--gutter))));
    margin: 0 auto;
    padding: var(--section-space) var(--gutter);
}

.about-copy h2 {
    font-size: clamp(2.75rem, 5vw, 5rem);
}

.about-copy .rich-text {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem clamp(2rem, 5vw, 5rem);
    max-width: none;
}

.about-copy .rich-text p {
    margin-bottom: 0;
}

.fact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.fact-list li {
    padding: 0.55rem 0.85rem;
    color: var(--navy);
    background: var(--mist);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 750;
}

.election-section {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
    gap: var(--grid-gap);
    width: min(100%, calc(var(--content) + (2 * var(--gutter))));
    margin: 0 auto;
    padding: var(--section-space-tight) var(--gutter);
}

.election-section h2 {
    max-width: 10ch;
}

.election-details {
    align-self: center;
    padding: clamp(1.75rem, 4vw, 3rem);
    color: var(--white);
    background: var(--red);
    border-radius: 0.6rem 4rem 0.6rem 0.6rem;
}

.election-details ul {
    margin: 0 0 2rem;
    padding: 0;
    list-style: none;
}

.election-details li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    font-weight: 800;
}

.text-link {
    font-weight: 850;
    text-underline-offset: 0.25em;
}

.video-break {
    position: relative;
    margin: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.scroll-pan-window-video video {
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: cover;
    object-position: 50% var(--video-pan-position, 50%);
}

.scroll-pan-window-video video::-webkit-media-controls,
.scroll-pan-window-video video::-webkit-media-controls-enclosure {
    display: none !important;
}

.scroll-pan-window-video.is-pan-ready video {
    will-change: object-position;
}

.video-break-caption {
    position: absolute;
    top: clamp(0.75rem, 2vw, 1.25rem);
    left: var(--gutter);
    z-index: 2;
    display: flex;
    gap: 0.6rem;
    align-items: center;
    max-width: min(80vw, 42rem);
    padding: 0.65rem 0.85rem;
    color: var(--white);
    background: rgba(11, 31, 51, 0.88);
    border-radius: 0.4rem 1.2rem 0.4rem 0.4rem;
    font-size: 0.82rem;
    line-height: 1.3;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-toggle {
    display: inline-grid;
    flex: 0 0 auto;
    place-items: center;
    width: 2.15rem;
    height: 2.15rem;
    padding: 0;
    color: var(--white);
    background: var(--red);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.video-toggle:hover {
    background: var(--red-dark);
}

.video-toggle-icon {
    display: block;
}

.video-toggle[data-video-state="paused"] .video-toggle-icon {
    width: 0;
    height: 0;
    margin-left: 0.15rem;
    border-top: 0.38rem solid transparent;
    border-bottom: 0.38rem solid transparent;
    border-left: 0.62rem solid currentColor;
}

.video-toggle[data-video-state="playing"] .video-toggle-icon {
    width: 0.62rem;
    height: 0.72rem;
    background: linear-gradient(
        to right,
        currentColor 0 32%,
        transparent 32% 68%,
        currentColor 68% 100%
    );
}

.video-caption-copy {
    display: flex;
    flex: 1 1 auto;
    gap: 0.7rem;
    align-items: baseline;
    min-width: 0;
}

.video-break-caption strong {
    min-width: 0;
    font-weight: 850;
}

.full-width-gallery {
    background: var(--navy);
}

.gallery-item {
    position: relative;
    margin: 0;
    background: var(--cream);
}

.gallery-item img {
    width: 100%;
    height: auto;
}

.scroll-pan-window {
    --pan-depth: clamp(4rem, 8vw, 8rem);
    position: relative;
    height: clamp(16rem, 26vw, 25rem);
    max-height: 48svh;
    overflow: hidden;
    background: var(--navy);
}

.scroll-pan-window img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    max-width: none;
    height: calc(100% + var(--pan-depth));
    object-fit: cover;
    transform: translateY(-50%);
}

.scroll-pan-window.is-pan-ready img {
    top: 0;
    transform: translate3d(0, var(--pan-offset, 0), 0);
    will-change: transform;
}

.scroll-pan-window-landscape img {
    object-position: 46% 54%;
}

.scroll-pan-window-gallery img {
    object-position: 50% 50%;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
    gap: var(--grid-gap);
    padding: var(--section-space-tight) var(--gutter);
    color: var(--white);
    background: var(--red);
}

.contact-intro {
    max-width: 50rem;
    justify-self: end;
}

.contact-section .eyebrow {
    color: var(--white);
}

.contact-section h2 {
    max-width: none;
    color: var(--white);
    font-size: clamp(2.1rem, 4.4vw, 4.4rem);
    white-space: nowrap;
}

.contact-intro > p:last-child {
    max-width: 38rem;
    margin-bottom: 0;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.contact-actions {
    align-self: center;
}

.contact-button {
    display: grid;
    padding: 1rem 1.35rem;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 0.6rem;
    text-decoration: none;
    transition: transform 160ms ease, background-color 160ms ease;
}

.contact-button + .contact-button {
    margin-top: 0.8rem;
}

.contact-button:hover {
    background: rgba(255, 255, 255, 0.11);
    transform: translateY(-2px);
}

.contact-button > span:first-child {
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-button strong,
.protected-email-card .protected-email-value {
    margin-top: 0.25rem;
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 800;
    overflow-wrap: anywhere;
}

.protected-email {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.7rem;
    align-items: center;
}

.protected-email-value a {
    color: inherit;
    font-weight: 800;
    text-underline-offset: 0.2em;
}

.email-reveal-button {
    min-height: 2.75rem;
    padding: 0.55rem 0.8rem;
    color: var(--red-dark);
    background: var(--white);
    border: 1px solid currentColor;
    border-radius: 0.45rem;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
}

.email-reveal-button:hover {
    color: var(--white);
    background: var(--red-dark);
}

.email-reveal-button:disabled {
    cursor: wait;
    opacity: 0.72;
}

.protected-email-error {
    flex-basis: 100%;
    color: currentColor;
    font-size: 0.84rem;
}

.protected-email-card .protected-email {
    margin-top: 0.25rem;
}

.protected-email-card .protected-email-value,
.protected-email-card .protected-email-value a {
    color: var(--white);
}

.protected-email-card .email-reveal-button {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

.protected-email-card .email-reveal-button:hover {
    color: var(--red-dark);
    background: var(--white);
}

.contact-button-light {
    color: var(--navy);
    background: var(--white);
    border-color: var(--white);
}

.contact-button-light:hover {
    background: #fff2f3;
}

.site-footer {
    color: rgba(255, 255, 255, 0.76);
    background: var(--navy);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    width: min(100%, calc(var(--content) + (2 * var(--gutter))));
    margin: 0 auto;
    padding: clamp(2.25rem, 4vw, 3.75rem) var(--gutter);
}

.footer-brand {
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 850;
    text-decoration: none;
}

.footer-inner > div p {
    margin: 0.35rem 0 0;
}

.footer-inner > div p strong {
    color: var(--white);
}

.footer-inner nav {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: start;
}

.footer-inner nav a {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 650;
    text-decoration: none;
    transition: color 160ms ease;
}

.footer-inner nav a:hover {
    color: var(--white);
}

.footer-meta {
    grid-column: 1 / -1;
    margin: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.85rem;
}

.legal-main {
    min-height: 65vh;
    background: var(--white);
}

.legal-hero {
    padding: clamp(1.5rem, 3vw, 2.5rem) var(--gutter);
    color: var(--white);
    background: var(--navy);
}

.legal-hero-inner,
.legal-content {
    width: min(100%, 54rem);
    margin: 0 auto;
}

.legal-hero .eyebrow {
    margin-bottom: 0.55rem;
    color: #ff8189;
}

.legal-hero h1 {
    margin: 0;
    color: var(--white);
    font-size: clamp(2.6rem, 5vw, 4.75rem);
}

.legal-content {
    padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
}

.legal-content h2 {
    margin-top: 2.75rem;
    margin-bottom: 1.1rem;
    font-size: clamp(1.8rem, 3.5vw, 2.7rem);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    margin-top: 2.5rem;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.legal-content address {
    font-style: normal;
}

.legal-content a {
    color: var(--red-dark);
    font-weight: 700;
    text-underline-offset: 0.2em;
}

.legal-note {
    margin-top: 3rem;
    padding: 1.25rem 1.4rem;
    background: var(--mist);
    border-left: 4px solid var(--sage);
}

@media (max-width: 980px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .js .header-inner {
        flex-wrap: nowrap;
    }

    .js .menu-toggle {
        display: inline-flex;
    }

    .main-navigation {
        flex-basis: 100%;
        display: grid;
        gap: 0.4rem;
        padding: 1rem 0;
        border-top: 1px solid var(--line);
    }

    .js .main-navigation {
        position: fixed;
        inset: 4.75rem 0 auto;
        padding: 1.25rem var(--gutter) 2rem;
        background: var(--cream);
        border-top: 0;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 1.2rem 2.5rem rgba(11, 31, 51, 0.15);
        transform: translateY(-140%);
        visibility: hidden;
        transition: transform 200ms ease, visibility 200ms ease;
    }

    .js .main-navigation.is-open {
        transform: translateY(0);
        visibility: visible;
    }

    .main-navigation a {
        padding: 0.9rem 1rem;
    }

    .section-grid,
    .story-panel,
    .election-section,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .intro-copy {
        padding-top: 0;
    }

    .about-copy .rich-text {
        grid-template-columns: 1fr;
        max-width: 48rem;
    }

    .roles-grid,
    .priority-grid {
        grid-template-columns: 1fr;
    }

    .role-card {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .role-card:last-child {
        border-bottom: 0;
    }

    .role-card h3 {
        min-height: 0;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .contact-intro {
        justify-self: start;
    }
}

@media (max-width: 620px) {
    :root {
        --gutter: 1.1rem;
        --section-space: 2.35rem;
        --section-space-tight: 1.9rem;
        --flow-gap: 1rem;
        --grid-gap: 1.25rem;
    }

    .header-inner {
        min-height: 4.75rem;
    }

    .brand-copy small {
        display: none;
    }

    .brand-monogram {
        width: 2.8rem;
    }

    .main-navigation {
        inset-block-start: 4.75rem;
    }

    .roles-section {
        padding-inline: 0;
    }

    .roles-heading {
        padding-inline: var(--gutter);
    }

    .intro-grid > div:first-child {
        text-align: center;
    }

    .intro-grid h2 {
        margin-inline: auto;
    }

    .priorities-section .section-heading h2 {
        margin-bottom: 0;
    }

    .priorities-section .priority-grid {
        margin-top: 1rem;
    }

    .roles-grid {
        border-radius: 0;
    }

    .image-story .eyebrow {
        margin-bottom: 0;
    }

    .priority-card h3 {
        margin-top: 2rem;
    }

    .election-details {
        border-radius: 0.6rem 2.5rem 0.6rem 0.6rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-inner nav {
        display: grid;
        gap: 0.8rem;
    }
}

@media (max-width: 700px) {
    .scroll-pan-window {
        --pan-depth: 0rem;
        height: clamp(13rem, 55vw, 20rem);
        max-height: none;
    }

    .scroll-pan-window img,
    .scroll-pan-window.is-pan-ready img {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none;
        will-change: auto;
    }

    .scroll-pan-window-video video,
    .scroll-pan-window-video.is-pan-ready video {
        object-position: 50% 50%;
        will-change: auto;
    }

    .video-break-caption {
        position: static;
        gap: 0.45rem;
        width: 100%;
        max-width: none;
        padding: 0.5rem var(--gutter);
        font-size: 0.76rem;
        border-radius: 0;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .video-toggle {
        width: 1.9rem;
        height: 1.9rem;
    }

    .video-caption-copy strong {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

}

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

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

    .scroll-pan-window {
        --pan-depth: 0rem;
    }

    .scroll-pan-window img,
    .scroll-pan-window.is-pan-ready img {
        position: static;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
        will-change: auto;
    }
    .scroll-pan-window-video video,
    .scroll-pan-window-video.is-pan-ready video {
        object-position: 50% 50%;
        will-change: auto;
    }
}
