:root {
    --bg: #f6f1e8;
    --surface: #fffaf2;
    --surface-2: #efe6da;
    --line: rgba(22, 31, 55, 0.16);
    --text: #151a2d;
    --muted: #606a7a;
    --lime: #8d1022;
    --gold: #d49a2f;
    --red: #b1122b;
    --blue: #17213d;
    --cream: #fff8ed;
    --shadow: 0 24px 80px rgba(23, 33, 61, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: clip;
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Arial, sans-serif;
    margin: 0;
    max-width: 100%;
    overflow-x: clip;
}

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

.site-header {
    align-items: center;
    backdrop-filter: blur(18px);
    background: rgba(255, 248, 237, 0.88);
    border-bottom: 1px solid var(--line);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    left: 0;
    padding: 16px clamp(18px, 5vw, 72px);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 20;
}

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

.brand-mark {
    align-items: center;
    background: var(--cream);
    border-radius: 8px;
    border: 1px solid rgba(141, 16, 34, 0.18);
    box-shadow: 0 10px 26px rgba(23, 33, 61, 0.12);
    display: inline-flex;
    height: 54px;
    justify-content: center;
    overflow: hidden;
    width: 54px;
}

.brand-mark img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1;
    text-transform: uppercase;
}

.brand strong {
    color: var(--blue);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 24px;
    letter-spacing: 0;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    margin-top: 3px;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: clamp(14px, 2vw, 28px);
}

.nav-links a,
.header-action {
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
}

.nav-links a:hover,
.header-action:hover {
    color: var(--lime);
}

.header-action {
    align-items: center;
    border: 1px solid rgba(141, 16, 34, 0.22);
    border-radius: 8px;
    display: inline-flex;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
}

.hero {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(12, 17, 34, 0.94), rgba(41, 15, 29, 0.78) 48%, rgba(141, 16, 34, 0.34)),
        url("https://images.unsplash.com/photo-1549719386-74dfcbf7dbed?q=80&w=2200&auto=format&fit=crop") center / cover no-repeat;
    color: var(--cream);
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 340px;
    min-height: 82vh;
    padding: 116px clamp(18px, 6vw, 86px) 46px;
}

.hero-content {
    max-width: 760px;
}

.hero-kicker {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.hero-kicker img {
    background: var(--cream);
    border: 2px solid rgba(255, 248, 237, 0.72);
    border-radius: 8px;
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
    display: block;
    height: 64px;
    object-fit: cover;
    width: 64px;
}

.eyebrow {
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    margin: 0 0 12px;
    text-transform: uppercase;
}

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

h1,
h2 {
    font-family: "Barlow Condensed", Impact, sans-serif;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 0.92;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(58px, 9.5vw, 132px);
    margin-bottom: 20px;
    max-width: 820px;
}

.hero-copy {
    color: #f0e9df;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
    max-width: 680px;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 900;
    gap: 10px;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    text-transform: uppercase;
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--red);
    color: #fff8ed;
}

.btn-secondary {
    background: rgba(255, 248, 237, 0.12);
    border: 1px solid rgba(255, 248, 237, 0.26);
    color: var(--cream);
}

.hero-panel {
    align-self: end;
    background: rgba(255, 248, 237, 0.9);
    border: 1px solid rgba(255, 248, 237, 0.32);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 10px;
    padding: 22px;
}

.hero-panel strong {
    color: var(--red);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
    text-transform: uppercase;
}

.hero-panel span {
    border-top: 1px solid var(--line);
    color: var(--blue);
    font-size: 15px;
    font-weight: 800;
    padding-top: 10px;
}

.section {
    padding: 86px clamp(18px, 6vw, 86px);
}

.section-heading {
    align-items: end;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 0.75fr) minmax(280px, 0.45fr);
    margin-bottom: 34px;
}

.section-heading h2,
.club-copy h2,
.contact-copy h2 {
    font-size: clamp(44px, 6vw, 82px);
    margin-bottom: 0;
}

.section-heading p:not(.eyebrow),
.club-copy p,
.contact-copy p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.programs-section {
    background:
        linear-gradient(180deg, #fff8ed, #f0e6d8);
}

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

.program-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    min-height: 270px;
    padding: 24px;
    box-shadow: 0 18px 50px rgba(23, 33, 61, 0.08);
}

.program-card:nth-child(2n) {
    background: var(--surface-2);
}

.program-icon {
    align-items: center;
    background: rgba(141, 16, 34, 0.09);
    border: 1px solid rgba(141, 16, 34, 0.22);
    border-radius: 8px;
    color: var(--lime);
    display: inline-flex;
    font-size: 22px;
    height: 48px;
    justify-content: center;
    margin-bottom: 22px;
    width: 48px;
}

.program-card span,
.post-tag {
    color: var(--gold);
    display: inline-block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.program-card h3,
.feed-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.program-card p,
.feed-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 0;
}

.club-band {
    background:
        linear-gradient(120deg, rgba(141, 16, 34, 0.9), rgba(23, 33, 61, 0.94) 50%, rgba(212, 154, 47, 0.24)),
        var(--blue);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.6fr);
    padding: 86px clamp(18px, 6vw, 86px);
    color: var(--cream);
}

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

.club-band .eyebrow,
.contact-section .eyebrow {
    color: var(--gold);
}

.club-band .club-copy p,
.contact-section .contact-copy p {
    color: rgba(255, 248, 237, 0.78);
}

.club-stats {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
}

.club-stats div {
    background: rgba(255, 248, 237, 0.09);
    border: 1px solid rgba(255, 248, 237, 0.18);
    border-radius: 8px;
    padding: 18px;
}

.club-stats strong {
    color: var(--gold);
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 48px;
    line-height: 0.9;
}

.club-stats span {
    color: rgba(255, 248, 237, 0.72);
    display: block;
    font-size: 13px;
    font-weight: 800;
    margin-top: 8px;
    text-transform: uppercase;
}

.highlight-list {
    display: grid;
    gap: 12px;
    grid-column: 2;
    list-style: none;
    margin: 0;
    padding: 0;
}

.highlight-list li {
    align-items: center;
    background: rgba(255, 248, 237, 0.08);
    border: 1px solid rgba(255, 248, 237, 0.16);
    border-radius: 8px;
    color: #e7ebf2;
    display: flex;
    gap: 12px;
    padding: 14px 16px;
}

.highlight-list i {
    color: var(--gold);
}

.gallery-section {
    background:
        linear-gradient(180deg, #fff8ed, #f6f1e8);
}

.gallery-grid {
    columns: 4 240px;
    column-gap: 18px;
}

.gallery-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(23, 33, 61, 0.08);
    break-inside: avoid;
    display: block;
    margin: 0 0 18px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    display: block;
    height: auto;
    transition: transform 220ms ease, filter 220ms ease;
    width: 100%;
}

.gallery-item span {
    background: linear-gradient(180deg, rgba(21, 26, 45, 0), rgba(21, 26, 45, 0.82));
    bottom: 0;
    color: var(--cream);
    display: block;
    font-size: 12px;
    font-weight: 900;
    left: 0;
    padding: 42px 14px 14px;
    position: absolute;
    right: 0;
    text-transform: uppercase;
}

.gallery-item:hover img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.03);
}

.feed-section {
    background: #f6f1e8;
}

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

.feed-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(23, 33, 61, 0.08);
}

.feed-card img {
    aspect-ratio: 4 / 3;
    display: block;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.feed-card div {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 240px;
    padding: 22px;
}

.post-link {
    align-items: center;
    border-top: 1px solid var(--line);
    color: var(--lime);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    text-transform: uppercase;
}

.post-link:hover {
    color: var(--red);
}

.contact-section {
    align-items: center;
    background:
        linear-gradient(90deg, rgba(23, 33, 61, 0.92), rgba(141, 16, 34, 0.72)),
        url("https://images.unsplash.com/photo-1517838277536-f5f99be501cd?q=80&w=1900&auto=format&fit=crop") center / cover no-repeat;
    color: var(--cream);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    padding: 86px clamp(18px, 6vw, 86px);
}

.contact-copy {
    max-width: 820px;
}

.contact-card {
    background: rgba(255, 248, 237, 0.92);
    border: 1px solid rgba(255, 248, 237, 0.34);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--blue);
    font-style: normal;
    padding: 24px;
}

.contact-card-label {
    color: var(--gold);
    display: block;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-card strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.contact-card p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
}

.contact-card a {
    align-items: center;
    border-top: 1px solid var(--line);
    color: var(--lime);
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    gap: 8px;
    padding-top: 16px;
    text-transform: uppercase;
}

.map-frame {
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-top: 20px;
    overflow: hidden;
}

.map-frame iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
}

.site-footer {
    align-items: center;
    background: var(--blue);
    border-top: 1px solid var(--line);
    color: rgba(255, 248, 237, 0.72);
    display: flex;
    flex-wrap: wrap;
    font-size: 14px;
    gap: 14px;
    justify-content: space-between;
    padding: 28px clamp(18px, 6vw, 86px);
}

.site-footer a {
    color: var(--gold);
    font-weight: 900;
}

@media (max-width: 980px) {
    .site-header {
        flex-wrap: wrap;
        gap: 14px;
    }

    .nav-links {
        order: 3;
        overflow-x: auto;
        padding-bottom: 2px;
        width: 100%;
    }

    .hero,
    .section-heading,
    .club-band,
    .contact-section {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 156px;
    }

    .hero-panel {
        max-width: 520px;
    }

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

    .gallery-grid {
        columns: 3 220px;
    }

    .highlight-list {
        grid-column: auto;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 12px 14px;
    }

    .brand strong {
        font-size: 20px;
    }

    .header-action {
        min-height: 38px;
        padding: 0 12px;
    }

    .hero {
        padding: 152px 16px 42px;
    }

    .hero-panel {
        display: none;
    }

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

    .btn {
        width: 100%;
    }

    .section,
    .club-band,
    .contact-section {
        padding: 58px 16px;
    }

    .program-grid,
    .feed-grid,
    .club-stats {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        columns: 1;
    }

    .program-card {
        min-height: auto;
    }
}
