:root {
    --green-950: #06291e;
    --green-900: #0b3d2c;
    --green-850: #104934;
    --green-800: #15573f;
    --green-700: #1f6d4f;
    --green-600: #2c8a63;
    --green-500: #49a97f;
    --green-200: #b9dfce;
    --green-100: #dff2e9;
    --green-50: #f2f9f5;
    --lime: #c8f26c;
    --ink: #142019;
    --ink-soft: #34463c;
    --muted: #69776f;
    --line: #dbe6df;
    --line-strong: #c9d9d0;
    --paper: #ffffff;
    --paper-warm: #fbfcfa;
    --soft: #f5f8f6;
    --danger: #b42318;
    --danger-soft: #fff1ef;
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --radius-xl: 46px;
    --shadow-sm: 0 12px 36px rgba(8, 45, 29, 0.08);
    --shadow-md: 0 24px 70px rgba(8, 45, 29, 0.12);
    --shell: min(1220px, calc(100vw - 48px));
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

::selection {
    background: var(--green-200);
    color: var(--green-950);
}

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

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    border-radius: 999px;
    background: var(--paper);
    color: var(--green-900);
    box-shadow: var(--shadow-md);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

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

.safety-strip {
    position: relative;
    z-index: 210;
    background: var(--green-950);
    color: rgba(255, 255, 255, 0.86);
}

.safety-strip-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.74rem;
    letter-spacing: 0.01em;
}

.safety-strip-copy {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.pulse-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 5px rgba(200, 242, 108, 0.1);
}

.safety-strip a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    color: #fff;
}

.safety-strip a > span:first-child {
    opacity: 0.6;
}

.safety-strip a strong {
    font-size: 0.76rem;
}

.site-header {
    position: sticky;
    z-index: 200;
    top: 0;
    border-bottom: 1px solid rgba(219, 230, 223, 0.78);
    background: rgba(255, 255, 255, 0.91);
    backdrop-filter: blur(22px) saturate(140%);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    min-width: max-content;
}

.brand-mark {
    width: 48px;
    aspect-ratio: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: linear-gradient(145deg, var(--green-700), var(--green-950));
    color: #fff;
    box-shadow: 0 10px 28px rgba(10, 61, 43, 0.18);
}

.brand-mark > span {
    display: grid;
    place-items: center;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.brand-mark > span:last-child {
    border-right: 0;
}

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

.brand-copy strong {
    font-size: 0.94rem;
    letter-spacing: -0.01em;
}

.brand-copy small {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.69rem;
    letter-spacing: 0.01em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(13px, 1.45vw, 23px);
    flex: 1;
}

.desktop-nav a {
    position: relative;
    padding-block: 28px;
    color: #415047;
    font-size: 0.79rem;
    font-weight: 680;
    white-space: nowrap;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 18px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--green-600);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-switch {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    border-radius: 999px;
    color: var(--green-900);
    font-size: 0.78rem;
    font-weight: 760;
}

.language-switch:hover,
.language-switch:focus-visible {
    background: var(--green-50);
}

.language-globe {
    font-size: 1rem;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 22px;
    border: 1px solid var(--green-800);
    border-radius: 999px;
    background: var(--green-800);
    color: #fff;
    font-weight: 760;
    letter-spacing: -0.01em;
    box-shadow: 0 12px 28px rgba(21, 87, 63, 0.15);
    transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, border-color 170ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    border-color: var(--green-950);
    background: var(--green-950);
    box-shadow: 0 18px 38px rgba(8, 45, 29, 0.2);
}

.button-small {
    min-height: 40px;
    padding-inline: 17px;
    font-size: 0.78rem;
}

.button-primary {
    min-height: 54px;
    padding-inline: 25px;
}

.button-ghost {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.76);
    color: var(--green-900);
    box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
    border-color: var(--green-200);
    background: var(--green-50);
    color: var(--green-950);
}

.button-light {
    border-color: #fff;
    background: #fff;
    color: var(--green-950);
    box-shadow: none;
}

.button-light:hover,
.button-light:focus-visible {
    border-color: var(--lime);
    background: var(--lime);
    color: var(--green-950);
}

.button-large {
    min-height: 58px;
    padding-inline: 28px;
}

.mobile-nav {
    display: none;
    margin-left: auto;
}

.mobile-nav summary {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    list-style: none;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 0.78rem;
    font-weight: 760;
}

.mobile-nav summary::-webkit-details-marker {
    display: none;
}

.menu-icon {
    width: 18px;
    display: grid;
    gap: 4px;
}

.menu-icon i {
    height: 1.5px;
    display: block;
    border-radius: 999px;
    background: var(--ink);
}

.mobile-nav[open] .menu-icon i:first-child {
    transform: translateY(2.75px) rotate(45deg);
}

.mobile-nav[open] .menu-icon i:last-child {
    transform: translateY(-2.75px) rotate(-45deg);
}

.mobile-nav-panel {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: grid;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.mobile-nav-panel > a:not(.button) {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0 10px;
    border-bottom: 1px solid var(--line);
    font-weight: 680;
}

.mobile-nav-panel > a:nth-last-child(2) {
    border-bottom: 0;
}

.mobile-nav-panel .button {
    margin-top: 12px;
}

.mobile-language {
    color: var(--green-700);
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 8%, rgba(67, 173, 125, 0.2), transparent 28%),
        radial-gradient(circle at 20% 100%, rgba(200, 242, 108, 0.15), transparent 30%),
        linear-gradient(180deg, #fbfdfb 0%, #eef6f1 100%);
}

.hero-grid {
    position: relative;
    z-index: 2;
    min-height: 700px;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
    align-items: center;
    gap: clamp(48px, 7vw, 96px);
    padding-block: 92px 74px;
}

.hero-copy {
    max-width: 680px;
}

.eyebrow {
    margin: 0 0 15px;
    color: var(--green-700);
    font-size: 0.73rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.hero-kicker > span {
    width: 26px;
    height: 1px;
    background: var(--green-600);
}

.hero h1,
.section h2,
.volunteer h2,
.site-footer h2 {
    margin: 0;
    letter-spacing: -0.055em;
    line-height: 1.01;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(3.35rem, 6.1vw, 6rem);
    font-weight: 770;
}

.hero-intro {
    max-width: 610px;
    margin: 27px 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.08rem, 1.7vw, 1.28rem);
    line-height: 1.55;
}

.hero-note {
    max-width: 590px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 34px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 37px;
}

.hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 12px;
    border: 1px solid rgba(21, 87, 63, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--green-900);
    font-size: 0.76rem;
    font-weight: 730;
}

.hero-proof span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-500);
}

.hero-art {
    position: relative;
    min-height: 520px;
}

.hero-frame {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(21, 87, 63, 0.11);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(150deg, rgba(255, 255, 255, 0.92), rgba(230, 244, 236, 0.84)),
        var(--green-50);
    box-shadow: var(--shadow-md);
}

.hero-frame-grid {
    position: absolute;
    inset: 0;
    opacity: 0.48;
    background-image:
        linear-gradient(rgba(21, 87, 63, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21, 87, 63, 0.08) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(160deg, #000 0%, transparent 72%);
}

.hero-city-label {
    position: absolute;
    top: 46px;
    left: 46px;
    display: grid;
    z-index: 2;
}

.hero-city-label span {
    color: var(--green-700);
    font-size: 0.63rem;
    font-weight: 850;
    letter-spacing: 0.18em;
}

.hero-city-label strong {
    margin-top: 4px;
    color: var(--green-950);
    font-size: clamp(3.3rem, 6vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.hero-ring {
    position: absolute;
    z-index: 1;
    border: 1px solid rgba(31, 109, 79, 0.18);
    border-radius: 50%;
}

.hero-ring-one {
    width: 340px;
    height: 340px;
    right: -74px;
    top: 46px;
}

.hero-ring-two {
    width: 230px;
    height: 230px;
    right: -19px;
    top: 101px;
}

.hero-route {
    position: absolute;
    z-index: 2;
    right: 80px;
    bottom: 86px;
    width: 210px;
    height: 150px;
    border-right: 2px dashed rgba(31, 109, 79, 0.38);
    border-bottom: 2px dashed rgba(31, 109, 79, 0.38);
    border-radius: 0 0 60px 0;
    transform: rotate(-9deg);
}

.hero-route i {
    position: absolute;
    width: 12px;
    height: 12px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: var(--green-600);
    box-shadow: 0 0 0 1px rgba(31, 109, 79, 0.15);
}

.hero-route i:nth-child(1) {
    left: -4px;
    bottom: -7px;
}

.hero-route i:nth-child(2) {
    left: 76px;
    bottom: -7px;
}

.hero-route i:nth-child(3) {
    right: -7px;
    bottom: 34px;
}

.hero-route i:nth-child(4) {
    right: -7px;
    top: -6px;
    background: var(--lime);
}

.hero-message {
    position: absolute;
    z-index: 4;
    right: 26px;
    bottom: 28px;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 17px 18px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.91);
    box-shadow: 0 18px 50px rgba(8, 45, 29, 0.16);
    backdrop-filter: blur(14px);
}

.message-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--green-100);
    color: var(--green-800);
    font-weight: 900;
}

.hero-message div {
    display: grid;
}

.hero-message small {
    color: var(--muted);
    font-size: 0.68rem;
}

.hero-message strong {
    margin-top: 1px;
    font-size: 0.9rem;
}

.hero-badge {
    position: absolute;
    z-index: 3;
    left: 34px;
    bottom: 44px;
    width: 152px;
    min-height: 154px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border-radius: 24px;
    background: var(--green-950);
    color: #fff;
    box-shadow: 0 18px 44px rgba(8, 45, 29, 0.2);
}

.hero-badge span {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--lime);
    font-size: 0.75rem;
    font-weight: 850;
}

.hero-badge strong {
    font-size: 0.92rem;
    line-height: 1.25;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-one {
    width: 520px;
    height: 520px;
    right: -260px;
    top: -240px;
    background: rgba(73, 169, 127, 0.1);
}

.hero-orb-two {
    width: 280px;
    height: 280px;
    left: -145px;
    bottom: -130px;
    background: rgba(200, 242, 108, 0.14);
}

.hero-bottom {
    position: relative;
    z-index: 2;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(21, 87, 63, 0.12);
    color: var(--muted);
    font-size: 0.72rem;
}

.hero-bottom span:first-child {
    color: var(--green-900);
    font-weight: 800;
}

.section {
    padding-block: 112px;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
    align-items: end;
    gap: 58px;
    margin-bottom: 48px;
}

.section-heading h2,
.resources-copy h2,
.news-heading h2 {
    max-width: 760px;
    font-size: clamp(2.4rem, 4.3vw, 4.35rem);
    font-weight: 740;
}

.section-heading > p,
.resources-copy > p,
.news-heading > p {
    margin: 0;
    color: var(--muted);
}

.section-heading-inline {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-700);
    font-size: 0.84rem;
    font-weight: 790;
}

.text-link span {
    transition: transform 170ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
    transform: translate(2px, -2px);
}

.services {
    background: var(--paper);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(220px, auto);
    gap: 16px;
}

.bento-card {
    grid-column: span 4;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--paper-warm);
    transition: transform 170ms ease, box-shadow 170ms ease, border-color 170ms ease;
}

.bento-card-large {
    grid-column: span 7;
    min-height: 350px;
    background:
        radial-gradient(circle at 80% 10%, rgba(73, 169, 127, 0.14), transparent 30%),
        var(--green-50);
}

.bento-card-tall {
    grid-column: span 5;
    min-height: 350px;
    background: var(--green-950);
    color: #fff;
}

.bento-card:nth-child(3) {
    grid-column: span 5;
}

.bento-card:nth-child(4) {
    grid-column: span 7;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(31, 109, 79, 0.25);
    box-shadow: var(--shadow-sm);
}

.bento-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(31, 109, 79, 0.12);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--green-800);
    font-size: 0.72rem;
    font-weight: 850;
}

.bento-card-tall .feature-number {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    color: var(--lime);
}

.bento-arrow {
    font-size: 1.1rem;
    opacity: 0.55;
}

.bento-card h3 {
    margin: 0 0 10px;
    font-size: clamp(1.35rem, 2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.bento-card p {
    max-width: 520px;
    margin: 0;
    color: var(--muted);
}

.bento-card-tall p {
    color: rgba(255, 255, 255, 0.66);
}

.events-section {
    background: var(--soft);
}

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

.event-row {
    display: grid;
    grid-template-columns: 70px minmax(160px, 0.55fr) minmax(0, 1.45fr) 52px;
    align-items: center;
    gap: 22px;
    min-height: 142px;
    border-bottom: 1px solid var(--line-strong);
    transition: background 150ms ease, padding 150ms ease;
}

.event-row:hover {
    padding-inline: 12px;
    background: rgba(255, 255, 255, 0.66);
}

.event-index {
    color: var(--green-700);
    font-size: 0.75rem;
    font-weight: 850;
}

.event-date {
    display: grid;
}

.event-date span {
    color: var(--green-950);
    font-size: 0.9rem;
    font-weight: 800;
}

.event-date small {
    margin-top: 4px;
    color: var(--muted);
}

.event-main h3 {
    margin: 0;
    font-size: clamp(1.3rem, 2.1vw, 2rem);
    letter-spacing: -0.035em;
}

.event-main p {
    max-width: 650px;
    margin: 7px 0 0;
    color: var(--muted);
}

.event-action {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--green-800);
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.event-action:hover,
.event-action:focus-visible {
    transform: translate(2px, -2px);
    background: var(--green-900);
    color: #fff;
}

.safety-section {
    position: relative;
    overflow: hidden;
    background: var(--green-950);
    color: #fff;
}

.safety-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -260px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    box-shadow: 0 0 0 84px rgba(255, 255, 255, 0.025), 0 0 0 168px rgba(255, 255, 255, 0.018);
}

.safety-section .shell {
    position: relative;
    z-index: 2;
}

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

.safety-heading > p {
    color: rgba(255, 255, 255, 0.64);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.safety-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(6px);
}

.emergency-card {
    border-color: rgba(255, 178, 168, 0.16);
    background: rgba(123, 36, 27, 0.18);
}

.safety-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.safety-code {
    font-size: 1rem;
    font-weight: 870;
    letter-spacing: -0.01em;
}

.safety-pill {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.64rem;
    font-weight: 760;
    text-transform: uppercase;
}

.safety-card h3 {
    margin: 58px 0 10px;
    font-size: clamp(1.5rem, 2.4vw, 2.2rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.safety-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.63);
}

.safety-card > a,
.safety-actions {
    margin-top: auto;
    padding-top: 28px;
}

.safety-card a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #fff;
    font-weight: 780;
}

.safety-actions {
    display: grid;
    gap: 10px;
}

.safety-actions a + a {
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
}

.safety-disclaimer {
    max-width: 860px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.79rem;
}

.resources-section {
    background: var(--paper);
}

.resources-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(58px, 8vw, 110px);
    align-items: stretch;
}

.resources-copy {
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.resources-copy > p {
    max-width: 520px;
    margin-top: 24px;
}

.resource-visual {
    position: relative;
    min-height: 230px;
    margin-top: auto;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--green-100), var(--green-50));
}

.resource-visual strong {
    position: absolute;
    left: 28px;
    bottom: 16px;
    color: var(--green-900);
    font-size: clamp(4.5rem, 8vw, 7rem);
    line-height: 1;
    letter-spacing: -0.08em;
}

.resource-disc {
    position: absolute;
    border: 1px solid rgba(21, 87, 63, 0.16);
    border-radius: 50%;
}

.resource-disc-one {
    width: 260px;
    height: 260px;
    right: -50px;
    top: -50px;
}

.resource-disc-two {
    width: 170px;
    height: 170px;
    right: -5px;
    top: -5px;
    background: rgba(200, 242, 108, 0.24);
}

.resource-links {
    border-top: 1px solid var(--line-strong);
}

.resource-links a {
    min-height: 112px;
    display: grid;
    grid-template-columns: 50px 1fr 32px;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--line-strong);
    transition: padding 160ms ease, background 160ms ease;
}

.resource-links a:hover,
.resource-links a:focus-visible {
    padding-inline: 12px;
    background: var(--green-50);
}

.resource-links span {
    color: var(--green-700);
    font-size: 0.72rem;
    font-weight: 850;
}

.resource-links strong {
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    letter-spacing: -0.025em;
}

.resource-links em {
    justify-self: end;
    color: var(--green-700);
    font-style: normal;
}

.volunteer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(125deg, var(--green-800), var(--green-950));
    color: #fff;
}

.volunteer-mesh {
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at 75% 40%, #000, transparent 70%);
}

.volunteer-inner {
    position: relative;
    z-index: 2;
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding-block: 72px;
}

.volunteer-copy {
    max-width: 760px;
}

.volunteer h2 {
    max-width: 700px;
    font-size: clamp(2.8rem, 5.4vw, 5.6rem);
}

.volunteer p:not(.eyebrow) {
    max-width: 650px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
}

.news-section {
    background: var(--soft);
}

.news-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(54px, 8vw, 110px);
}

.news-heading {
    align-self: start;
    position: sticky;
    top: 130px;
}

.news-heading > p {
    max-width: 430px;
    margin-top: 22px;
}

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

.news-list article {
    position: relative;
    min-height: 260px;
    padding: 28px 64px 28px 0;
    border-bottom: 1px solid var(--line-strong);
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--green-700);
    font-size: 0.7rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.news-list h3 {
    max-width: 640px;
    margin: 54px 0 12px;
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.news-list p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
}

.news-list article > a {
    position: absolute;
    right: 0;
    bottom: 28px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--green-700);
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.news-list article > a:hover,
.news-list article > a:focus-visible {
    transform: translate(2px, -2px);
    background: var(--green-900);
    color: #fff;
}

.site-footer {
    padding-block: 84px 28px;
    background: #071c15;
    color: #fff;
}

.footer-top {
    display: grid;
    grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, 0.75fr));
    gap: clamp(34px, 5vw, 72px);
    padding-bottom: 72px;
}

.brand-mark-footer {
    width: 54px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.footer-brand h2 {
    margin-top: 22px;
    font-size: clamp(2rem, 3.5vw, 3.4rem);
}

.footer-brand p {
    max-width: 420px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.52);
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-column h3 {
    margin: 0 0 9px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.68rem;
    font-weight: 820;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-column a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.86rem;
    font-weight: 640;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--lime);
}

.footer-column p {
    margin: 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.84rem;
}

.footer-pending {
    width: fit-content;
    margin-top: 7px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.68rem;
}

.footer-language {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 3px;
}

.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.7rem;
}

:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 3px;
}

@media (max-width: 1120px) {
    .desktop-nav {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .mobile-nav {
        display: block;
        margin-left: 0;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
        gap: 44px;
    }

    .hero h1 {
        font-size: clamp(3.2rem, 6.2vw, 5rem);
    }

    .footer-top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

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

    .safety-strip-copy {
        max-width: 60%;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 54px;
        padding-block: 72px 44px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-art {
        min-height: 480px;
    }

    .section {
        padding-block: 88px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 24px;
    }

    .section-heading > p {
        max-width: 580px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: auto;
    }

    .bento-card,
    .bento-card-large,
    .bento-card-tall,
    .bento-card:nth-child(3),
    .bento-card:nth-child(4) {
        grid-column: span 1;
        min-height: 280px;
    }

    .event-row {
        grid-template-columns: 46px 145px minmax(0, 1fr) 44px;
        gap: 16px;
    }

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

    .safety-card {
        min-height: 280px;
    }

    .safety-card h3 {
        margin-top: 38px;
    }

    .resources-layout,
    .news-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .resources-copy {
        min-height: 440px;
    }

    .news-heading {
        position: static;
    }

    .volunteer-inner {
        min-height: 360px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }
}

@media (max-width: 680px) {
    :root {
        --shell: calc(100vw - 28px);
        --radius-md: 18px;
        --radius-lg: 26px;
        --radius-xl: 28px;
    }

    .safety-strip-inner {
        min-height: 42px;
        gap: 12px;
        font-size: 0.67rem;
    }

    .safety-strip-copy {
        max-width: 58%;
    }

    .safety-strip a > span:first-child {
        display: none;
    }

    .header-inner {
        min-height: 68px;
        gap: 10px;
    }

    .brand {
        gap: 9px;
    }

    .brand-mark {
        width: 42px;
        border-radius: 13px;
    }

    .brand-copy small {
        display: none;
    }

    .brand-copy strong {
        max-width: 142px;
        overflow: hidden;
        font-size: 0.82rem;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .header-actions {
        display: none;
    }

    .mobile-nav {
        margin-left: auto;
    }

    .mobile-nav-panel {
        right: 14px;
        left: 14px;
    }

    .hero-grid {
        gap: 42px;
        padding-block: 58px 34px;
    }

    .hero h1 {
        font-size: clamp(2.85rem, 13.5vw, 4.5rem);
        letter-spacing: -0.06em;
    }

    .hero-intro {
        margin-top: 22px;
        font-size: 1.02rem;
    }

    .hero-note {
        font-size: 0.86rem;
    }

    .button-row {
        display: grid;
        grid-template-columns: 1fr;
        margin-top: 28px;
    }

    .button-row .button {
        width: 100%;
    }

    .hero-proof {
        margin-top: 28px;
    }

    .hero-art {
        min-height: 405px;
    }

    .hero-frame {
        border-radius: 28px;
    }

    .hero-city-label {
        top: 30px;
        left: 28px;
    }

    .hero-city-label strong {
        font-size: 3.7rem;
    }

    .hero-ring-one {
        width: 280px;
        height: 280px;
        right: -105px;
    }

    .hero-ring-two {
        width: 185px;
        height: 185px;
        right: -57px;
    }

    .hero-route {
        right: 40px;
        bottom: 92px;
        width: 170px;
    }

    .hero-badge {
        left: 20px;
        bottom: 22px;
        width: 132px;
        min-height: 132px;
        padding: 15px;
        border-radius: 20px;
    }

    .hero-message {
        right: 16px;
        bottom: 18px;
        min-width: 215px;
        max-width: calc(100% - 150px);
        padding: 13px 14px;
        border-radius: 17px;
    }

    .message-icon {
        width: 31px;
        height: 31px;
    }

    .hero-message small {
        font-size: 0.6rem;
    }

    .hero-message strong {
        font-size: 0.76rem;
    }

    .hero-bottom {
        min-height: 50px;
        align-items: center;
    }

    .hero-bottom span:last-child {
        display: none;
    }

    .section {
        padding-block: 74px;
    }

    .section-heading,
    .section-heading-inline {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 34px;
    }

    .section-heading h2,
    .resources-copy h2,
    .news-heading h2 {
        font-size: clamp(2.15rem, 10vw, 3.4rem);
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bento-card,
    .bento-card-large,
    .bento-card-tall,
    .bento-card:nth-child(3),
    .bento-card:nth-child(4) {
        grid-column: auto;
        min-height: 250px;
        padding: 23px;
    }

    .event-list {
        display: grid;
        gap: 12px;
        border-top: 0;
    }

    .event-row {
        grid-template-columns: 40px 1fr 42px;
        gap: 12px;
        min-height: 0;
        padding: 22px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: #fff;
    }

    .event-row:hover {
        padding: 22px;
    }

    .event-date {
        grid-column: 2;
        grid-row: 1;
    }

    .event-main {
        grid-column: 1 / -1;
        grid-row: 2;
    }

    .event-action {
        grid-column: 3;
        grid-row: 1;
    }

    .event-main h3 {
        font-size: 1.4rem;
    }

    .safety-card {
        min-height: 270px;
        padding: 22px;
    }

    .safety-card-top {
        align-items: flex-start;
    }

    .safety-code {
        font-size: 0.9rem;
    }

    .resources-copy {
        min-height: 390px;
    }

    .resource-links a {
        min-height: 96px;
        grid-template-columns: 38px 1fr 26px;
        gap: 12px;
    }

    .volunteer-inner {
        min-height: 420px;
        padding-block: 64px;
    }

    .volunteer h2 {
        font-size: clamp(2.7rem, 12vw, 4.4rem);
    }

    .volunteer .button {
        width: 100%;
    }

    .news-list article {
        min-height: 235px;
        padding-right: 50px;
    }

    .news-list h3 {
        margin-top: 42px;
        font-size: 1.7rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 42px;
        padding-bottom: 52px;
    }

    .footer-bottom {
        min-height: 90px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
    }
}

@media (max-width: 430px) {
    .hero-art {
        min-height: 365px;
    }

    .hero-city-label strong {
        font-size: 3.1rem;
    }

    .hero-badge {
        width: 118px;
        min-height: 118px;
    }

    .hero-badge span {
        width: 32px;
        height: 32px;
    }

    .hero-badge strong {
        font-size: 0.78rem;
    }

    .hero-message {
        min-width: 196px;
        max-width: calc(100% - 130px);
    }

    .hero-message .message-icon {
        display: none;
    }
}

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