@font-face {
    font-family: "Archivo Black";
    src: url("../fonts/archivo-black-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Space Grotesk";
    src: url("../fonts/space-grotesk-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
}

:root {
    --ink: #10130e;
    --paper: #f2f0e4;
    --acid: #c8ff36;
    --signal: #ff5c35;
    --moss: #254c32;
    --sky: #a8e8f0;
    --white: #fffef4;
    --muted: #686b62;
    --line: 2px solid var(--ink);
    --display: "Archivo Black", Impact, sans-serif;
    --body: "Space Grotesk", Arial, sans-serif;
    --shadow: 8px 8px 0 var(--ink);
    --shell: min(1280px, calc(100% - 48px));
}

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

html {
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--body);
    font-size: 18px;
    line-height: 1.55;
    overflow-x: clip;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    content: "";
    opacity: 0.045;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

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

a {
    color: inherit;
}

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

button,
input {
    font: inherit;
}

[hidden] {
    display: none !important;
}

::selection {
    background: var(--signal);
    color: var(--white);
}

:focus-visible {
    outline: 4px solid var(--signal);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 2000;
    padding: 12px 18px;
    background: var(--white);
    border: var(--line);
    font-weight: 700;
    transform: translateY(-160%);
}

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

.section-shell {
    width: var(--shell);
    margin-inline: auto;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 88px;
    background: var(--acid);
    border-bottom: var(--line);
    transition: height 180ms ease, box-shadow 180ms ease;
}

.site-nav.is-compact {
    height: 72px;
    box-shadow: 0 5px 0 rgb(16 19 14 / 24%);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--shell);
    height: 100%;
    margin-inline: auto;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    text-decoration: none;
}

.logo {
    width: 50px;
    height: 50px;
}

.logo-wordmark {
    font-family: var(--display);
    font-size: 15px;
    line-height: 0.88;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.3vw, 36px);
}

.nav-links a {
    position: relative;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

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

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    padding: 10px 16px;
    background: var(--ink);
    color: var(--acid);
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 var(--white);
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.nav-cta:hover {
    box-shadow: 1px 1px 0 var(--white);
    transform: translate(3px, 3px);
}

.burger-menu {
    display: none;
    width: 48px;
    height: 44px;
    padding: 8px;
    background: var(--ink);
    border: 0;
    cursor: pointer;
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background: var(--acid);
    transition: transform 180ms ease, opacity 180ms ease;
}

.burger-menu[aria-expanded="true"] .burger-line:first-child {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu[aria-expanded="true"] .burger-line:last-child {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100svh;
    padding-top: 88px;
    overflow: hidden;
    background: var(--ink);
    color: var(--paper);
}

.hero::before {
    position: absolute;
    top: 12%;
    left: -12%;
    width: 46vw;
    height: 46vw;
    min-width: 420px;
    min-height: 420px;
    border: 2px solid rgb(200 255 54 / 20%);
    border-radius: 50%;
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
    gap: clamp(48px, 7vw, 110px);
    align-items: center;
    min-height: calc(100svh - 152px);
    padding-block: clamp(80px, 10vh, 130px);
}

.eyebrow,
.section-number {
    margin: 0 0 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-number::before {
    content: "[ ";
}

.eyebrow::after,
.section-number::after {
    content: " ]";
}

.hero h1,
.section-heading h2,
.contact h2,
.not-found h1 {
    margin: 0;
    font-family: var(--display);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 0.88;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(66px, 8.8vw, 148px);
}

.hero h1 span {
    display: block;
}

.hero-accent {
    color: var(--acid);
}

.hero-description {
    max-width: 650px;
    margin: 34px 0 0;
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 500;
    line-height: 1.35;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    align-items: center;
    margin-top: 42px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 24px;
    border: 2px solid;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.1;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 6px 6px 0 var(--signal);
    transition: transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
    box-shadow: 2px 2px 0 var(--signal);
    transform: translate(4px, 4px);
}

.button-primary {
    background: var(--acid);
    color: var(--ink);
    border-color: var(--acid);
}

.button-dark {
    background: var(--ink);
    color: var(--acid);
    border-color: var(--ink);
    box-shadow: 6px 6px 0 var(--white);
}

.button-dark:hover {
    box-shadow: 2px 2px 0 var(--white);
}

.text-link {
    font-weight: 700;
    text-underline-offset: 5px;
}

.hero-visual {
    position: relative;
}

.hero-photo-wrap {
    position: relative;
    border: 3px solid var(--acid);
    box-shadow: 16px 16px 0 var(--signal);
    transform: rotate(2deg);
}

.hero-photo {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    filter: contrast(1.12) saturate(0.82);
}

.photo-stamp {
    position: absolute;
    top: 24px;
    right: -30px;
    display: grid;
    place-items: center;
    width: 112px;
    height: 112px;
    padding: 10px;
    background: var(--acid);
    color: var(--ink);
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
    transform: rotate(10deg);
}

.event-ticket {
    position: absolute;
    right: -24px;
    bottom: -58px;
    width: min(400px, 90%);
    padding: 18px 22px;
    background: var(--paper);
    color: var(--ink);
    border: var(--line);
    box-shadow: 8px 8px 0 var(--acid);
    transform: rotate(-2deg);
}

.event-ticket p {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 14px;
    margin: 0;
    padding: 7px 0;
    border-bottom: 1px solid var(--ink);
}

.event-ticket p:last-child {
    border: 0;
}

.event-ticket span {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.event-ticket strong {
    font-size: 14px;
}

.ticker {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    background: var(--signal);
    color: var(--ink);
    border-block: var(--line);
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker 28s linear infinite;
}

.ticker span {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px 28px;
    font-family: var(--display);
    font-size: 18px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.ticker span::after {
    color: var(--paper);
    content: "✳";
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.story,
.schedule,
.meeting,
.allies {
    padding-block: clamp(90px, 11vw, 160px);
}

.section-heading {
    max-width: 1000px;
    margin-bottom: clamp(54px, 7vw, 92px);
}

.section-heading h2,
.contact h2 {
    font-size: clamp(52px, 7.6vw, 112px);
}

.section-intro {
    max-width: 650px;
    margin: 24px 0 0;
    font-size: clamp(19px, 2vw, 26px);
    font-weight: 500;
    line-height: 1.4;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(50px, 8vw, 120px);
    align-items: start;
}

.story-image {
    position: sticky;
    top: 110px;
}

.story-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border: var(--line);
    box-shadow: var(--shadow);
}

.image-note {
    max-width: 420px;
    margin: 24px 0 0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.prose p {
    margin: 0 0 28px;
    font-size: clamp(20px, 2vw, 27px);
    line-height: 1.52;
}

.prose strong {
    background: linear-gradient(transparent 58%, var(--acid) 58%);
}

.pull-quote {
    margin-top: 54px;
    padding: 32px;
    background: var(--acid);
    border: var(--line);
    font-family: var(--display);
    font-size: clamp(28px, 3.2vw, 46px);
    letter-spacing: -0.04em;
    line-height: 1.04;
    text-transform: uppercase;
    box-shadow: 8px 8px 0 var(--signal);
    transform: rotate(-1deg);
}

.stakes,
.field-notes {
    padding-block: clamp(90px, 11vw, 160px);
    background: var(--ink);
    color: var(--paper);
}

.section-heading-light .section-number,
.stakes .section-number {
    color: var(--acid);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 2px solid var(--paper);
    border-left: 2px solid var(--paper);
}

.stat-card {
    min-height: 350px;
    padding: clamp(24px, 3vw, 40px);
    border-right: 2px solid var(--paper);
    border-bottom: 2px solid var(--paper);
    transition: background 180ms ease, color 180ms ease;
}

.stat-card:hover {
    background: var(--acid);
    color: var(--ink);
}

.stat-value {
    margin: 0 0 68px;
    color: var(--signal);
    font-family: var(--display);
    font-size: clamp(46px, 5vw, 76px);
    letter-spacing: -0.06em;
    line-height: 0.9;
    text-transform: uppercase;
}

.stat-card:hover .stat-value {
    color: var(--moss);
}

.stat-card h3 {
    margin: 0 0 14px;
    font-size: 19px;
    text-transform: uppercase;
}

.stat-card p:last-child {
    margin: 0;
    color: #c9cabe;
    font-size: 15px;
}

.stat-card:hover p:last-child {
    color: var(--ink);
}

.stakes-note {
    max-width: 900px;
    margin: 56px 0 0 auto;
    color: var(--acid);
    font-family: var(--display);
    font-size: clamp(28px, 3.8vw, 52px);
    letter-spacing: -0.04em;
    line-height: 1;
    text-align: right;
    text-transform: uppercase;
}

.split-heading {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    gap: 70px;
    align-items: end;
    max-width: none;
}

.split-heading .section-intro {
    margin: 0;
}

.day-schedule {
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: clamp(36px, 6vw, 90px);
}

.day-label {
    align-self: start;
    padding: 22px;
    background: var(--signal);
    border: var(--line);
    box-shadow: var(--shadow);
    text-transform: uppercase;
    transform: rotate(-2deg);
}

.day-label span {
    display: block;
    font-family: var(--display);
    font-size: 33px;
}

.day-label small {
    font-weight: 700;
}

.timeline {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: var(--line);
}

.timeline li {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 28px;
    padding: 27px 0;
    border-bottom: var(--line);
}

.timeline time {
    padding-top: 4px;
    color: var(--moss);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.timeline h3 {
    margin: 0;
    font-size: clamp(22px, 2.2vw, 31px);
    line-height: 1.1;
    text-transform: uppercase;
}

.timeline p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 16px;
}

.bring-strip {
    margin-top: 58px;
    padding: 22px 26px;
    background: var(--sky);
    border: var(--line);
    box-shadow: 7px 7px 0 var(--ink);
    font-size: 16px;
    transform: rotate(0.5deg);
}

.gallery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 110px;
    gap: 24px;
}

.gallery-track {
    min-width: 0;
}

.gallery-slide {
    position: relative;
    margin: 0;
    animation: reveal-slide 420ms ease both;
}

.gallery-slide img {
    width: 100%;
    height: min(70vh, 760px);
    min-height: 520px;
    object-fit: cover;
    border: 2px solid var(--paper);
    filter: contrast(1.08) saturate(0.86);
}

.gallery-slide figcaption {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px 22px;
    background: var(--acid);
    color: var(--ink);
    border: var(--line);
    box-shadow: 6px 6px 0 var(--signal);
}

.gallery-slide figcaption span {
    font-family: var(--display);
    font-size: 28px;
}

.gallery-slide figcaption p {
    margin: 0;
    font-size: clamp(17px, 1.8vw, 23px);
    font-weight: 700;
}

.gallery-controls {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 12px;
}

.gallery-controls button {
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    background: var(--paper);
    color: var(--ink);
    border: 2px solid var(--paper);
    font-size: 38px;
    cursor: pointer;
    transition: background 150ms ease, color 150ms ease;
}

.gallery-controls button:hover {
    background: var(--signal);
    color: var(--paper);
}

.gallery-controls p {
    margin: 4px 0;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

@keyframes reveal-slide {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.meeting-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    gap: clamp(45px, 8vw, 110px);
    align-items: center;
}

.map-card {
    padding: 14px;
    background: var(--acid);
    border: var(--line);
    box-shadow: 12px 12px 0 var(--signal);
    transform: rotate(-1deg);
}

.map-card img {
    width: 100%;
    border: var(--line);
}

.meeting-details .eyebrow {
    color: var(--moss);
}

.meeting-details h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(38px, 4vw, 64px);
    letter-spacing: -0.05em;
    line-height: 0.95;
    text-transform: uppercase;
}

.meeting-address {
    margin: 24px 0;
    padding: 14px 0;
    border-block: var(--line);
    font-size: 19px;
    font-weight: 700;
}

.meeting-details dl {
    margin: 32px 0 0;
}

.meeting-details dl div {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px solid var(--ink);
}

.meeting-details dt {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.meeting-details dd {
    margin: 0;
    font-size: 15px;
}

.compact-heading {
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    column-gap: 80px;
    max-width: none;
}

.compact-heading .section-number {
    grid-column: 1 / -1;
}

.compact-heading .section-intro {
    align-self: end;
    margin: 0;
}

.ally-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: var(--line);
    border-left: var(--line);
}

.ally-badge {
    display: grid;
    place-items: center;
    min-height: 230px;
    padding: 30px;
    border-right: var(--line);
    border-bottom: var(--line);
}

.ally-badge:nth-child(2n) {
    background: var(--sky);
}

.ally-badge:nth-child(3n) {
    background: var(--acid);
}

.ally-badge img {
    width: 100%;
    max-width: 210px;
    max-height: 130px;
}

.contact {
    padding-block: clamp(90px, 11vw, 150px);
    background: var(--acid);
    border-top: var(--line);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.7fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: center;
}

.contact-callout > p:not(.section-number) {
    max-width: 700px;
    margin: 30px 0 0;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 500;
}

.dark-link {
    color: var(--ink);
}

.safety-card {
    padding: clamp(28px, 4vw, 48px);
    background: var(--paper);
    border: var(--line);
    box-shadow: 11px 11px 0 var(--signal);
    transform: rotate(1deg);
}

.safety-card h3 {
    margin: 0 0 24px;
    font-family: var(--display);
    font-size: 35px;
    text-transform: uppercase;
}

.safety-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.safety-card li {
    position: relative;
    padding: 15px 0 15px 28px;
    border-top: 1px solid var(--ink);
    font-size: 15px;
}

.safety-card li::before {
    position: absolute;
    top: 15px;
    left: 2px;
    color: var(--signal);
    content: "✳";
}

.safety-card > p {
    margin: 24px 0 0;
    padding-top: 20px;
    border-top: var(--line);
    font-size: 14px;
}

footer {
    padding: 54px 0;
    background: var(--ink);
    color: var(--paper);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 36px;
    align-items: center;
    width: var(--shell);
    margin-inline: auto;
}

.footer-mark {
    display: flex;
    gap: 16px;
    align-items: center;
}

.footer-mark p,
.footer-note {
    margin: 0;
    font-size: 13px;
}

.footer-mark strong {
    color: var(--acid);
    font-family: var(--display);
    font-size: 18px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--acid);
    font-size: 13px;
    font-weight: 700;
    text-underline-offset: 4px;
    text-transform: uppercase;
}

.footer-note {
    grid-column: 1 / -1;
    padding-top: 24px;
    color: #9a9c91;
    border-top: 1px solid #45483f;
}

.not-found {
    min-height: calc(100svh - 88px);
    padding-block: 190px 110px;
}

.not-found h1 {
    font-size: clamp(70px, 12vw, 170px);
}

.not-found h1 span {
    color: var(--signal);
}

.not-found > p:not(.eyebrow) {
    margin: 34px 0;
    font-size: 24px;
}

@media (max-width: 1100px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        min-height: 300px;
    }

    .ally-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    :root {
        --shell: min(100% - 32px, 720px);
    }

    .site-nav,
    .site-nav.is-compact {
        height: 72px;
    }

    .logo {
        width: 43px;
        height: 43px;
    }

    .burger-menu {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 18px 16px 28px;
        background: var(--acid);
        border-bottom: var(--line);
        box-shadow: 0 8px 0 rgb(16 19 14 / 25%);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 13px 8px;
        border-bottom: 1px solid var(--ink);
        font-size: 16px;
    }

    .nav-links .nav-cta {
        margin-top: 16px;
        padding: 14px;
        text-align: center;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 76px;
        padding-top: 74px;
        padding-bottom: 150px;
    }

    .hero h1 {
        font-size: clamp(62px, 15vw, 112px);
    }

    .hero-visual {
        width: calc(100% - 18px);
        max-width: 600px;
        margin-inline: auto;
    }

    .hero-photo {
        aspect-ratio: 5 / 4;
    }

    .photo-stamp {
        right: -16px;
    }

    .event-ticket {
        right: -10px;
        bottom: -70px;
    }

    .story-grid,
    .meeting-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .story-image {
        position: static;
    }

    .story-image img {
        aspect-ratio: 16 / 11;
    }

    .split-heading,
    .compact-heading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .day-schedule {
        grid-template-columns: 1fr;
    }

    .day-label {
        width: min(100%, 320px);
    }

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

    .gallery-controls {
        display: grid;
        grid-template-columns: 74px 1fr 74px;
        align-items: center;
    }

    .gallery-controls button {
        aspect-ratio: 1;
    }

    .gallery-controls .previous {
        grid-column: 1;
    }

    .gallery-controls p {
        grid-column: 2;
        grid-row: 1;
    }

    .gallery-controls .next {
        grid-column: 3;
    }

    .gallery-slide img {
        height: 60vh;
        min-height: 460px;
    }

    .contact-callout {
        order: 1;
    }

    .safety-card {
        max-width: 650px;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .logo-wordmark {
        font-size: 13px;
    }

    .hero-grid {
        gap: 60px;
        padding-top: 55px;
    }

    .hero h1 {
        font-size: clamp(54px, 16vw, 82px);
    }

    .hero-description {
        font-size: 19px;
    }

    .hero-actions,
    .contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .text-link,
    .contact-actions .text-link {
        text-align: center;
    }

    .hero-photo {
        aspect-ratio: 4 / 5;
    }

    .photo-stamp {
        top: 16px;
        width: 88px;
        height: 88px;
        font-size: 10px;
    }

    .event-ticket {
        width: 96%;
        padding: 14px;
    }

    .ticker span {
        padding-block: 10px;
        font-size: 15px;
    }

    .section-heading h2,
    .contact h2 {
        font-size: clamp(47px, 14vw, 72px);
    }

    .section-intro,
    .prose p {
        font-size: 18px;
    }

    .pull-quote {
        padding: 24px;
    }

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

    .stat-card {
        min-height: 0;
    }

    .stat-value {
        margin-bottom: 40px;
    }

    .timeline li {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gallery-slide img {
        height: 520px;
        min-height: 0;
    }

    .gallery-slide figcaption {
        right: 12px;
        bottom: 12px;
        left: 12px;
        grid-template-columns: 44px 1fr;
        padding: 14px;
    }

    .gallery-slide figcaption span {
        font-size: 22px;
    }

    .meeting-details dl div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

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

    .ally-badge {
        min-height: 190px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}

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