:root {
    --ink: #16211f;
    --river: #0f6b68;
    --river-dark: #084846;
    --sun: #f4b942;
    --coral: #e76f51;
    --leaf: #7aa95c;
    --cream: #fbf7ed;
    --white: #ffffff;
    --muted: #63716e;
    --line: rgba(22, 33, 31, 0.14);
    --shadow: 0 22px 70px rgba(13, 31, 29, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.skip-link,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link:focus {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0.75rem 1rem;
    clip: auto;
    background: var(--sun);
    z-index: 20;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem clamp(1rem, 4vw, 3.5rem);
    color: var(--white);
    transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
    color: var(--ink);
    background: rgba(251, 247, 237, 0.94);
    box-shadow: 0 10px 34px rgba(22, 33, 31, 0.12);
    backdrop-filter: blur(16px);
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 800;
}

.brand-mark {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    padding: 0.35rem;
}

.brand span {
    max-width: 190px;
    line-height: 1.05;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(0.8rem, 2vw, 1.5rem);
    font-weight: 700;
}

.site-nav a {
    text-decoration: none;
}

.nav-action,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

.nav-action {
    color: var(--ink);
    background: var(--sun);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: var(--sun);
    color: var(--ink);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: currentColor;
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--river-dark);
}

.hero-image,
.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-image {
    object-fit: cover;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(8, 72, 70, 0.9) 0%, rgba(8, 72, 70, 0.58) 45%, rgba(8, 72, 70, 0.22) 100%),
        linear-gradient(0deg, rgba(22, 33, 31, 0.68) 0%, rgba(22, 33, 31, 0.05) 58%);
}

.hero-content {
    position: relative;
    width: min(850px, calc(100% - 2rem));
    padding: 9rem 0 clamp(3rem, 8vw, 6rem);
    margin-left: clamp(1rem, 7vw, 6rem);
    color: var(--white);
}

.eyebrow,
.section-kicker {
    margin: 0 0 1rem;
    color: var(--sun);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h1,
h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.05;
}

h1 {
    max-width: 760px;
    font-size: clamp(3rem, 8vw, 6.8rem);
}

h2 {
    font-size: clamp(2.2rem, 5vw, 4.6rem);
}

h3 {
    margin: 0.35rem 0 0.7rem;
    font-size: 1.2rem;
    line-height: 1.2;
}

.hero-copy {
    max-width: 650px;
    margin: 1.4rem 0 0;
    font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions,
.connect-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.7rem;
}

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

.button-secondary {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.78);
}

.button-dark {
    color: var(--white);
    background: var(--river-dark);
}

.intro-band {
    background: var(--river);
    color: var(--white);
}

.intro-grid {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.18);
}

.intro-grid > div {
    min-height: 190px;
    padding: clamp(1.4rem, 4vw, 2.5rem);
    background: var(--river);
}

.stat {
    color: var(--sun);
    font-weight: 900;
}

.intro-grid p {
    margin: 0.6rem 0 0;
    font-size: 1.08rem;
    font-weight: 700;
}

.section,
.media-feature,
.social-section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.mission-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: start;
}

.mission-copy {
    font-size: 1.1rem;
}

blockquote {
    margin: 2rem 0 0;
    padding-left: 1.2rem;
    border-left: 5px solid var(--coral);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.35;
}

cite {
    display: block;
    margin-top: 0.7rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-style: normal;
}

.outreach-section {
    border-top: 1px solid var(--line);
}

.outreach-head {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: end;
}

.outreach-head p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.outreach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.outreach-card {
    min-height: 260px;
    padding: 1.35rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 12px 34px rgba(22, 33, 31, 0.08);
}

.outreach-card span {
    color: var(--coral);
    font-weight: 900;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.outreach-card p {
    margin: 0;
    color: var(--muted);
}

.media-feature {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
}

.media-copy p {
    color: var(--muted);
    font-size: 1.08rem;
}

.text-link {
    color: var(--river-dark);
    font-weight: 900;
    text-decoration-color: var(--sun);
    text-decoration-thickness: 4px;
    text-underline-offset: 0.3em;
}

.media-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 1rem;
    align-items: stretch;
}

.event-photo,
.event-video-wrap {
    margin: 0;
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.event-photo img,
.event-video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
    align-items: center;
    border-top: 1px solid var(--line);
}

.social-copy p {
    color: var(--muted);
    max-width: 570px;
}

.social-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-tile {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.4rem;
    border-radius: 8px;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow);
}

.social-tile span {
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.social-tile strong {
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    line-height: 1.15;
}

.instagram {
    background: linear-gradient(135deg, var(--coral), #bd3f72 55%, var(--river-dark));
}

.facebook {
    background: linear-gradient(135deg, #2256a3, var(--river));
}

.connect-section {
    padding-top: 0;
}

.connect-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: clamp(1.5rem, 5vw, 3rem);
    border-radius: 8px;
    color: var(--white);
    background: var(--river-dark);
}

.connect-panel p {
    max-width: 680px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

.site-footer {
    padding: 2rem clamp(1rem, 4vw, 3.5rem);
    color: var(--white);
    background: var(--ink);
}

.footer-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 2rem;
    align-items: center;
}

.footer-brand img {
    width: 190px;
    filter: brightness(0) invert(1);
}

.footer-copy p {
    margin: 0.15rem 0;
    color: rgba(255, 255, 255, 0.76);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    font-weight: 800;
}

.footer-links a {
    text-decoration: none;
}

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

    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 1rem;
        width: min(320px, calc(100vw - 2rem));
        display: none;
        padding: 1rem;
        border-radius: 8px;
        color: var(--ink);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
    }

    .nav-action {
        width: 100%;
    }

    .intro-grid,
    .mission-layout,
    .outreach-head,
    .media-feature,
    .social-section,
    .connect-panel,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .outreach-head {
        align-items: start;
    }

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

    .connect-actions,
    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .site-header {
        padding: 0.8rem 1rem;
    }

    .brand span {
        max-width: 145px;
        font-size: 0.9rem;
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .hero {
        min-height: 88vh;
    }

    .hero-content {
        margin-left: 1rem;
        padding-top: 7rem;
    }

    h1 {
        font-size: clamp(2.65rem, 15vw, 4.2rem);
    }

    .hero-actions .button,
    .connect-actions .button {
        width: 100%;
    }

    .intro-grid,
    .outreach-grid,
    .media-grid,
    .social-actions {
        grid-template-columns: 1fr;
    }

    .event-photo,
    .event-video-wrap {
        min-height: 300px;
    }

    .footer-brand img {
        width: 170px;
    }
}
