:root {
    --green: #006b3f;
    --green-dark: #042b1d;
    --green-deep: #00160f;
    --black: #070908;
    --white: #ffffff;
    --muted: #dfe8e3;
    --line: rgba(255, 255, 255, 0.18);
    --max-width: 1180px;
    --header-height: 74px;
    --sponsor-height: 70px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding-bottom: var(--sponsor-height);
    color: var(--black);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: var(--header-height);
    padding: 14px clamp(18px, 4vw, 56px);
    color: var(--white);
    background: rgba(0, 12, 8, 0.16);
    border-bottom: 1px solid transparent;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(0, 18, 12, 0.94);
    border-color: var(--line);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: 0;
}

.brand__mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--green-deep);
    background: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.7);
    font-weight: 900;
}

.brand__text {
    font-size: 0.98rem;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav__item {
    position: relative;
}

.main-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    background: rgba(255, 255, 255, 0.13);
    outline: none;
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 210px;
    padding: 8px;
    color: var(--white);
    background: rgba(0, 23, 15, 0.98);
    border: 1px solid var(--line);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown a {
    display: flex;
    width: 100%;
    text-transform: none;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
}

.hero {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 92vh;
    padding: calc(var(--header-height) + 52px) 18px 74px;
    color: var(--white);
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 25, 16, 0.58)),
        var(--hero-image) center / cover no-repeat,
        radial-gradient(circle at 20% 20%, #0b5d3b, #00120c 72%);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 80, 48, 0.22), rgba(0, 0, 0, 0.64));
}

.hero__content {
    position: relative;
    width: min(100%, 980px);
    text-align: center;
}

.hero__sport {
    margin: 0 0 18px;
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 800;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    font-size: clamp(3.1rem, 12vw, 7.4rem);
    line-height: 0.92;
    font-weight: 900;
    text-transform: uppercase;
}

.hero__subtitle {
    max-width: 720px;
    margin: 28px auto 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.3rem, 4vw, 2rem);
    font-style: italic;
}

.sponsor-strip {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    overflow: hidden;
    color: var(--white);
    min-height: var(--sponsor-height);
    background: rgba(0, 18, 12, 0.97);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(12px);
}

.sponsor-strip__track {
    display: flex;
    width: max-content;
    animation: sponsor-scroll 28s linear infinite;
}

.sponsor-logo {
    display: grid;
    place-items: center;
    width: 210px;
    height: var(--sponsor-height);
    padding: 8px 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.sponsor-logo::after {
    content: attr(data-fallback);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.sponsor-logo img {
    width: 100%;
    max-width: 178px;
    max-height: 50px;
    padding: 7px 12px;
    object-fit: contain;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

@keyframes sponsor-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section {
    padding: clamp(56px, 9vw, 110px) 18px;
}

.section__inner {
    width: min(100%, var(--max-width));
    margin: 0 auto;
}

.section__eyebrow {
    margin: 0 0 12px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.section h2 {
    margin: 0;
    font-size: clamp(2rem, 6vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
}

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(28px, 7vw, 88px);
    align-items: start;
}

.rich-text {
    font-size: clamp(1rem, 2.4vw, 1.2rem);
}

.rich-text p {
    margin: 0 0 18px;
}

.section--teams {
    color: var(--white);
    background: var(--black);
}

.section--teams .section__eyebrow {
    color: #8fe1b8;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 28px);
}

.team-card {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    background: #111;
}

.team-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 220ms ease;
}

.team-card img.is-missing {
    visibility: hidden;
}



.team-card:hover img {
    transform: scale(1.04);
}

.team-card__label {
    position: absolute;
    inset: auto 0 0;
    padding: 58px 20px 20px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
}

.team-card h3 {
    margin: 0;
    font-size: clamp(1.08rem, 2.4vw, 1.35rem);
    text-transform: uppercase;
}


.section--safeguarding {
    background: #f3f7f5;
}

.safeguarding-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
    gap: clamp(28px, 6vw, 78px);
    align-items: start;
}

.safeguarding-intro {
    max-width: 680px;
    margin: 22px 0 0;
    font-size: clamp(1rem, 2.2vw, 1.18rem);
}

.safeguarding-panel {
    display: grid;
    gap: 18px;
}

.safeguarding-contact,
.document-list {
    padding: 22px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.safeguarding-contact span {
    display: block;
    margin-bottom: 4px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.safeguarding-contact strong {
    display: block;
    font-size: 1.35rem;
}

.safeguarding-contact a {
    display: inline-flex;
    margin-top: 10px;
    color: var(--green);
    font-weight: 800;
}

.document-list h3 {
    margin: 0 0 14px;
    font-size: 1rem;
    text-transform: uppercase;
}

.document-list p {
    margin: 0;
}

.document-link {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    color: var(--green-deep);
    font-weight: 800;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.document-link svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}
.site-footer {
    padding: 46px 18px;
    color: var(--white);
    background: var(--green-deep);
}

.site-footer__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 28px;
    width: min(100%, var(--max-width));
    margin: 0 auto;
}

.site-footer__copy {
    max-width: 560px;
}

.site-footer h2 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 5vw, 3rem);
    text-transform: uppercase;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
}

.footer-contacts {
    display: grid;
    gap: 10px;
    min-width: min(100%, 360px);
    font-style: normal;
}

.contact-link {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: var(--muted);
}

.contact-link:hover,
.contact-link:focus-visible {
    color: var(--white);
    outline: none;
}

.contact-link svg {
    width: 21px;
    height: 21px;
    margin-top: 2px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.contact-link span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.contact-link strong {
    display: block;
    color: var(--muted);
}

@media (max-width: 920px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        right: 14px;
        left: 14px;
        display: none;
        align-items: stretch;
        padding: 10px;
        background: rgba(0, 18, 12, 0.97);
        border: 1px solid var(--line);
    }

    .main-nav.is-open {
        display: grid;
    }

    .main-nav a {
        width: 100%;
    }

    .main-nav__item {
        width: 100%;
    }

    .dropdown {
        position: static;
        display: grid;
        min-width: 0;
        padding: 0 0 4px 14px;
        background: transparent;
        border: 0;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .hero {
        min-height: 88vh;
    }

    .intro-grid,
    .safeguarding-layout,
    .site-footer__inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .brand__text {
        max-width: 154px;
        font-size: 0.82rem;
    }

    .hero {
        min-height: 84vh;
        padding-bottom: 54px;
    }

    .hero h1 {
        font-size: clamp(3rem, 18vw, 5.2rem);
    }

    .sponsor-logo {
        width: 178px;
    }

    .section-heading {
        display: block;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-card,
    .team-card img {
        min-height: 240px;
    }
}

