:root {
    --forest-950: #0b281d;
    --forest-900: #103526;
    --forest-800: #174b35;
    --forest-700: #1f6547;
    --forest-100: #dce9df;
    --cream: #f4f0e7;
    --cream-deep: #e9e1d2;
    --paper: #fbf9f4;
    --gold: #c69b4a;
    --gold-light: #e4c27f;
    --ink: #142019;
    --muted: #667069;
    --line: rgba(20, 32, 25, 0.14);
    --white: #fff;
    --shadow: 0 28px 70px rgba(8, 35, 24, 0.15);
    --wrap: min(1180px, calc(100% - 48px));
    --serif: Georgia, "Times New Roman", serif;
    --sans: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    position: fixed;
    inset-inline: 0;
    width: 100%;
    overflow: hidden;
}

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

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

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

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

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

h1,
h2,
h3 {
    text-wrap: balance;
}

h1,
h2 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

h2 {
    margin-bottom: 0;
    font-size: clamp(2.35rem, 5vw, 4.9rem);
}

h3 {
    line-height: 1.2;
}

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

.section {
    padding: clamp(90px, 12vw, 160px) 0;
}

.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 {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: var(--white);
    background: var(--forest-950);
    transform: translateY(-150%);
}

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

.eyebrow {
    margin-bottom: 22px;
    color: var(--forest-700);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.19em;
    text-transform: uppercase;
}

.eyebrow::before {
    display: inline-block;
    width: 28px;
    height: 1px;
    margin: 0 12px 4px 0;
    background: currentColor;
    content: "";
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
    transition: background-color 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
    color: var(--ink);
    background: rgba(251, 249, 244, 0.96);
    border-bottom-color: var(--line);
    box-shadow: 0 10px 35px rgba(10, 40, 28, 0.08);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    width: min(1320px, calc(100% - 48px));
    min-height: 84px;
    margin-inline: auto;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    line-height: 1.15;
}

.brand img {
    width: 56px;
    height: 60px;
    padding: 3px;
    object-fit: contain;
    object-position: center;
    background: #078c25;
    border: 1px solid rgba(228, 194, 127, 0.72);
    border-radius: 12px;
    box-shadow: 0 7px 22px rgba(4, 25, 16, 0.2);
    mix-blend-mode: normal;
}

.is-scrolled .brand img,
.footer-brand img {
    border-color: rgba(198, 155, 74, 0.45);
    box-shadow: 0 5px 16px rgba(4, 25, 16, 0.13);
    mix-blend-mode: normal;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: var(--serif);
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.brand small {
    margin-top: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.72;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 38px);
    font-size: 0.84rem;
    font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
    position: relative;
    padding: 12px 0;
}

.site-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    background: currentColor;
    content: "";
    transform: scaleX(0);
    transition: transform 160ms ease;
}

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

.nav-cta {
    padding: 11px 19px;
    color: var(--ink);
    background: var(--gold-light);
}

.is-scrolled .nav-cta {
    color: var(--white);
    background: var(--forest-800);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 13px 11px;
    color: inherit;
    background: transparent;
    border: 0;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    display: grid;
    min-height: min(900px, 100svh);
    color: var(--white);
    overflow: hidden;
    align-items: center;
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0;
}

.hero-media {
    background-image: url("../images/vereinsheim-hero-hd.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1.01);
}

.hero-shade {
    background:
        linear-gradient(90deg, rgba(8, 32, 23, 0.9) 0%, rgba(8, 32, 23, 0.67) 45%, rgba(8, 32, 23, 0.18) 78%),
        linear-gradient(0deg, rgba(8, 32, 23, 0.45), transparent 40%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 94px;
}

.hero h1 {
    max-width: 820px;
    margin-bottom: 30px;
    font-size: clamp(4rem, 8.6vw, 8rem);
}

.hero h1 em {
    color: var(--gold-light);
    font-weight: 400;
}

.hero-copy {
    max-width: 620px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, 0.83);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 160ms ease, color 160ms ease, background-color 160ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--forest-950);
    background: var(--gold-light);
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}

.button-ghost:hover {
    color: var(--forest-950);
    background: var(--white);
}

.button-light {
    color: var(--forest-950);
    background: var(--cream);
}

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

.next-event {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    display: grid;
    width: min(520px, 45vw);
    min-height: 132px;
    padding: 24px 32px;
    color: var(--ink);
    background: var(--cream);
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 22px;
    transition: background-color 160ms ease;
}

.next-event:hover {
    background: var(--gold-light);
}

.next-event-date {
    min-width: 62px;
    padding-right: 20px;
    border-right: 1px solid var(--line);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.next-event-date strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.4rem;
    font-weight: 400;
    line-height: 0.9;
}

.next-event small,
.next-event > span > strong {
    display: block;
}

.next-event small {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.next-event > span > strong {
    line-height: 1.25;
}

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

.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: clamp(50px, 9vw, 130px);
}

.intro h2 {
    max-width: 760px;
}

.intro-copy {
    padding-bottom: 10px;
}

.intro-copy p {
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 1.04rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--forest-700);
    font-size: 0.83rem;
    font-weight: 800;
    border-bottom: 1px solid currentColor;
}

.icon-arrow {
    position: relative;
    display: inline-block;
    width: 18px;
    height: 18px;
    color: currentColor;
    flex: 0 0 18px;
    transform-origin: center;
    transition: transform 180ms ease;
}

.icon-arrow::before {
    position: absolute;
    inset: 0;
    background: currentColor;
    clip-path: polygon(0 44%, 58% 44%, 58% 28%, 100% 50%, 58% 72%, 58% 56%, 0 56%);
    content: "";
}

.icon-arrow--down {
    transform: rotate(90deg);
}

.icon-arrow--external {
    transform: rotate(-45deg);
}

.text-link:hover .icon-arrow,
.text-link:focus-visible .icon-arrow,
.news-details summary:hover .icon-arrow,
.news-details summary:focus-visible .icon-arrow,
.contact-details a:hover .icon-arrow:not(.icon-arrow--external),
.contact-details a:focus-visible .icon-arrow:not(.icon-arrow--external) {
    transform: translateX(4px);
}

.next-event:hover .icon-arrow--down,
.next-event:focus-visible .icon-arrow--down {
    transform: translateY(4px) rotate(90deg);
}

.contact-details a:hover .icon-arrow--external,
.contact-details a:focus-visible .icon-arrow--external {
    transform: translate(3px, -3px) rotate(-45deg);
}

.section-heading {
    display: flex;
    margin-bottom: clamp(50px, 8vw, 90px);
    align-items: end;
    justify-content: space-between;
    gap: 60px;
}

.section-heading > p {
    max-width: 440px;
    margin-bottom: 8px;
    color: var(--muted);
}

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

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

.event-row {
    display: grid;
    min-height: 150px;
    padding: 27px 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: 110px minmax(0, 1fr);
    align-items: center;
    gap: clamp(22px, 4vw, 55px);
    transition: padding 180ms ease, background-color 180ms ease;
}

.event-row:hover {
    padding-right: 20px;
    padding-left: 20px;
    background: var(--cream);
}

.event-date {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    column-gap: 8px;
    line-height: 1;
}

.event-date strong {
    font-family: var(--serif);
    font-size: 3.5rem;
    font-weight: 400;
}

.event-date span {
    padding-bottom: 8px;
    color: var(--forest-700);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.event-date small {
    color: var(--muted);
    font-size: 0.65rem;
    grid-column: 2;
}

.event-meta {
    margin-bottom: 8px;
    color: var(--forest-700);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.event-main h3 {
    margin-bottom: 5px;
    font-family: var(--serif);
    font-size: clamp(1.35rem, 2.6vw, 2rem);
    font-weight: 400;
}

.event-main > p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

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

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

.news-card {
    min-width: 0;
    background: var(--paper);
}

.news-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 400ms ease;
}

.news-card:hover .news-image img {
    transform: scale(1.035);
}

.news-content {
    padding: clamp(26px, 5vw, 48px);
}

.news-content time {
    display: block;
    margin-bottom: 18px;
    color: var(--forest-700);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.news-content h3 {
    margin-bottom: 18px;
    font-family: var(--serif);
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    font-weight: 400;
}

.news-content > p {
    color: var(--muted);
}

.news-details {
    margin-top: 26px;
}

.news-details summary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--forest-700);
    border-bottom: 1px solid currentColor;
    font-size: 0.79rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
}

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

.news-details[open] summary {
    margin-bottom: 20px;
}

.news-details div {
    color: var(--muted);
}

.club-section {
    color: var(--white);
    background: var(--forest-900);
    overflow: hidden;
}

.club-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
    align-items: center;
    gap: clamp(70px, 10vw, 150px);
}

.club-collage {
    position: relative;
    min-height: 650px;
}

.club-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 78%;
    height: 72%;
    object-fit: cover;
}

.club-image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 60%;
    height: 48%;
    object-fit: cover;
    border: 12px solid var(--forest-900);
}

.since-badge {
    position: absolute;
    top: 44%;
    left: 6%;
    display: grid;
    width: 135px;
    height: 135px;
    color: var(--forest-950);
    background: var(--gold-light);
    border-radius: 50%;
    place-content: center;
    text-align: center;
    transform: rotate(-7deg);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.since-badge strong {
    display: block;
    font-family: var(--serif);
    font-size: 2.15rem;
    font-weight: 400;
    letter-spacing: 0;
}

.club-copy h2 {
    margin-bottom: 34px;
}

.club-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.72);
}

.club-facts {
    display: grid;
    margin: 45px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.club-facts strong,
.club-facts span {
    display: block;
}

.club-facts strong {
    color: var(--gold-light);
    font-family: var(--serif);
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.2;
    white-space: nowrap;
}

.club-facts span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.61);
    font-size: 0.7rem;
}

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

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

.training-card {
    min-height: 540px;
    background: var(--cream);
}

.training-card-photo {
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.training-card-photo::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 27, 19, 0.93), rgba(5, 27, 19, 0.03) 65%);
    content: "";
}

.training-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.training-card-photo:hover img {
    transform: scale(1.04);
}

.training-card-photo > div {
    position: absolute;
    z-index: 2;
    right: 32px;
    bottom: 32px;
    left: 32px;
}

.training-card span {
    color: var(--gold-light);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.training-card h3 {
    margin: 12px 0;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
}

.training-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.74);
}

.youth-card {
    position: relative;
    display: flex;
    padding: clamp(32px, 4vw, 52px);
    color: var(--white);
    background: var(--forest-700);
    flex-direction: column;
    justify-content: flex-end;
}

.youth-card .card-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(255, 255, 255, 0.15);
    font-family: var(--serif);
    font-size: 6rem;
    line-height: 1;
}

.youth-card .eyebrow {
    margin-bottom: 12px;
}

.youth-card .text-link {
    align-self: flex-start;
    margin-top: 30px;
}

.light-link {
    color: var(--gold-light);
}

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

.rental-card {
    display: grid;
    min-height: 660px;
    background: var(--white);
    box-shadow: var(--shadow);
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
}

.rental-image {
    min-height: 520px;
}

.rental-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rental-copy {
    display: flex;
    padding: clamp(42px, 7vw, 85px);
    flex-direction: column;
    justify-content: center;
}

.rental-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.rental-copy > p {
    color: var(--muted);
}

.check-list {
    padding: 0;
    margin: 25px 0 34px;
    list-style: none;
}

.check-list li {
    position: relative;
    padding: 11px 0 11px 32px;
    border-bottom: 1px solid var(--line);
}

.check-list li::before {
    position: absolute;
    top: 14px;
    left: 4px;
    width: 7px;
    height: 12px;
    border-right: 2px solid var(--forest-700);
    border-bottom: 2px solid var(--forest-700);
    content: "";
    transform: rotate(45deg);
}

.rental-copy .button {
    align-self: flex-start;
}

.rental-copy small {
    margin-top: 13px;
    color: var(--muted);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: minmax(0, 8fr) minmax(0, 4.5fr) minmax(0, 4fr);
    align-items: start;
    gap: 14px;
}

.gallery-grid figure {
    margin: 0;
    overflow: hidden;
}

.gallery-grid img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 450ms ease;
}

.gallery-grid figure:hover img {
    transform: scale(1.04);
}

.gallery-stack {
    display: grid;
    gap: 14px;
}

.contact-section {
    padding: clamp(90px, 11vw, 140px) 0;
    color: var(--white);
    background: var(--forest-950);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
    align-items: center;
    gap: clamp(60px, 10vw, 140px);
}

.contact-grid h2 {
    margin-bottom: 25px;
}

.contact-grid > div:first-child > p:last-child {
    max-width: 560px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.67);
}

.contact-details a {
    position: relative;
    display: block;
    padding: 22px 45px 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details a > .icon-arrow {
    position: absolute;
    top: 50%;
    right: 4px;
    color: var(--gold-light);
    margin-top: -9px;
}

.contact-details small,
.contact-details strong {
    display: block;
}

.contact-details small {
    margin-bottom: 7px;
    color: var(--gold-light);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.contact-details strong {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
}

.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: #071c14;
}

.footer-main {
    display: grid;
    padding: 70px 0;
    grid-template-columns: minmax(300px, 1.4fr) 0.6fr 0.7fr;
    gap: 55px;
}

.footer-brand {
    align-self: start;
    color: var(--white);
}

.footer-brand img {
    border-radius: 12px;
    filter: none;
}

.footer-links {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    font-size: 0.84rem;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 0.67rem;
    letter-spacing: 0.05em;
}

.legal-page {
    min-height: 100vh;
    padding: 150px 0 100px;
    background: var(--cream);
}

.legal-card {
    max-width: 860px;
    padding: clamp(30px, 7vw, 76px);
    margin-inline: auto;
    background: var(--white);
    box-shadow: var(--shadow);
}

.legal-card h1 {
    margin-bottom: 45px;
    font-size: clamp(3rem, 7vw, 5.6rem);
}

.legal-card h2 {
    margin: 50px 0 18px;
    font-size: 2rem;
}

.legal-card h3 {
    margin: 32px 0 12px;
}

.legal-card p,
.legal-card li {
    color: var(--muted);
}

.legal-card a:not(.button) {
    color: var(--forest-700);
    text-decoration: underline;
}

.legal-card .button {
    margin-top: 45px;
}

@media (max-width: 1000px) {
    .menu-toggle {
        position: relative;
        z-index: 2;
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        z-index: 1;
        display: flex;
        width: 100vw;
        height: 100dvh;
        min-height: 100vh;
        padding: 120px 30px 40px;
        color: var(--white);
        background: var(--forest-950);
        overflow-y: auto;
        overscroll-behavior: contain;
        visibility: hidden;
        opacity: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        pointer-events: none;
        transition: opacity 180ms ease, visibility 180ms ease;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav > a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        font-family: var(--serif);
        font-size: 1.8rem;
        font-weight: 400;
    }

    .site-nav .nav-cta {
        padding: 15px 0;
        color: var(--gold-light);
        background: transparent;
    }

    .menu-open .site-header,
    .menu-open .site-header.is-scrolled {
        color: var(--white);
        background: transparent;
        border-color: transparent;
        box-shadow: none;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .menu-open .brand {
        position: relative;
        z-index: 2;
    }

    .menu-open .brand img {
        border-color: rgba(228, 194, 127, 0.72);
        mix-blend-mode: normal;
    }

    .menu-open .menu-toggle > span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle > span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle > span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        min-height: 820px;
    }

    .next-event {
        width: min(600px, 70vw);
    }

    .intro-grid,
    .club-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        gap: 45px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 25px;
    }

    .club-collage {
        min-height: 600px;
    }

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

    .youth-card {
        min-height: 390px;
        grid-column: span 2;
    }

    .rental-card {
        grid-template-columns: 1fr;
    }

    .rental-image {
        min-height: 460px;
    }

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

    .gallery-feature {
        grid-column: 1 / -1;
    }

    .footer-main {
        grid-template-columns: 1.4fr 0.7fr 0.8fr;
    }
}

@media (max-width: 720px) {
    :root {
        --wrap: min(100% - 30px, 1180px);
    }

    .header-inner {
        width: min(100% - 28px, 1320px);
        min-height: 72px;
    }

    .brand img {
        width: 47px;
        height: 51px;
        border-radius: 10px;
    }

    .hero {
        min-height: 780px;
        padding-bottom: 125px;
    }

    .hero-media {
        background-position: 58% center;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(8, 32, 23, 0.92), rgba(8, 32, 23, 0.55)),
            linear-gradient(0deg, rgba(8, 32, 23, 0.75), transparent 45%);
    }

    .hero-content {
        padding-top: 90px;
    }

    .hero h1 {
        font-size: clamp(3.6rem, 17vw, 5.5rem);
    }

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

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

    .next-event {
        width: 100%;
        min-height: 115px;
        padding: 20px 18px;
        grid-template-columns: auto 1fr auto;
        gap: 15px;
    }

    .next-event-date {
        min-width: 55px;
        padding-right: 14px;
    }

    .next-event-date strong {
        font-size: 2rem;
    }

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

    .event-row {
        padding: 24px 0;
        grid-template-columns: 76px 1fr;
        gap: 20px;
    }

    .event-row:hover {
        padding-right: 0;
        padding-left: 0;
        background: transparent;
    }

    .event-date strong {
        font-size: 2.6rem;
    }

    .news-grid,
    .training-grid {
        grid-template-columns: 1fr;
    }

    .youth-card {
        min-height: 480px;
        grid-column: auto;
    }

    .club-grid {
        gap: 70px;
    }

    .club-collage {
        min-height: 470px;
    }

    .club-image-main {
        width: 88%;
        height: 70%;
    }

    .club-image-small {
        width: 62%;
        height: 43%;
        border-width: 8px;
    }

    .since-badge {
        top: 48%;
        width: 105px;
        height: 105px;
    }

    .since-badge strong {
        font-size: 1.75rem;
    }

    .club-facts {
        grid-template-columns: 1fr;
    }

    .club-facts > div {
        display: grid;
        grid-template-columns: minmax(122px, max-content) minmax(0, 1fr);
        align-items: center;
        gap: 14px;
    }

    .rental-image {
        min-height: 320px;
    }

    .rental-copy {
        padding: 40px 25px 48px;
    }

    .rental-copy .button {
        width: 100%;
    }

    .contact-details strong {
        overflow-wrap: anywhere;
    }

    .footer-main {
        padding: 55px 0;
        grid-template-columns: 1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 430px) {
    .brand strong {
        font-size: 1rem;
    }

    .brand small {
        font-size: 0.55rem;
    }

    .hero {
        min-height: 760px;
    }

    .hero h1 {
        font-size: clamp(2.85rem, 15.2vw, 3.45rem);
    }

    .next-event > span:nth-child(2) strong {
        font-size: 0.88rem;
    }

    .gallery-grid {
        display: block;
    }

    .gallery-grid > figure,
    .gallery-stack figure {
        margin-bottom: 12px;
    }
}

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