:root {
    --ink: #17202a;
    --muted: #5b6670;
    --line: #d9e2e8;
    --paper: #ffffff;
    --soft: #f3f7f4;
    --navy: #102d42;
    --green: #2f684e;
    --clay: #b65d32;
    --gold: #f0b84d;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    margin: 0;
    line-height: 1.6;
}

a {
    color: inherit;
}

.site-hero {
    min-height: 86vh;
    background:
        linear-gradient(90deg, rgba(12, 24, 34, 0.88), rgba(12, 24, 34, 0.58) 48%, rgba(12, 24, 34, 0.16)),
        url("header.jpeg");
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    flex-direction: column;
}

.page-hero {
    background:
        linear-gradient(90deg, rgba(12, 24, 34, 0.9), rgba(12, 24, 34, 0.64)),
        url("header.jpeg");
    background-size: cover;
    background-position: center;
    color: white;
}

.site-nav {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo {
    font-weight: 800;
    text-decoration: none;
    font-size: 1.05rem;
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

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

.site-nav li a {
    display: inline-flex;
    padding: 9px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.site-nav li a:hover,
.site-nav li a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.hero-content {
    width: min(1120px, calc(100% - 40px));
    margin: auto auto 8vh;
    max-width: 680px;
}

.page-title {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: 82px 0 96px;
    max-width: 760px;
}

.page-title h1 {
    margin-bottom: 0;
}

.eyebrow {
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

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

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

h1 {
    font-size: clamp(2.6rem, 7vw, 5.4rem);
    line-height: 0.98;
    margin-bottom: 22px;
    max-width: 760px;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 16px;
}

h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
}

.hero-copy {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.18rem;
    max-width: 620px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 800;
}

.button.primary {
    background: var(--gold);
    color: #1d242b;
}

.button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.section-inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.section-inner.narrow {
    max-width: 760px;
}

.intro-band {
    background: var(--navy);
    color: white;
    padding: 56px 0;
}

.intro-band p {
    color: rgba(255, 255, 255, 0.86);
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 42px;
    align-items: center;
}

.quick-list {
    display: grid;
    gap: 14px;
}

.quick-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.quick-list span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: var(--gold);
    color: #1d242b;
    font-weight: 900;
}

.quick-list p {
    margin: 0;
}

.guide-section {
    padding: 72px 0;
}

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

.section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.section-heading p {
    color: var(--muted);
}

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

.info-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid article,
.league-grid a {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
}

.info-grid article {
    border-top: 4px solid var(--green);
}

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

.comparison-grid article {
    border-left: 4px solid var(--clay);
    padding: 22px 0 22px 20px;
}

.comparison-grid p {
    color: var(--muted);
    margin-bottom: 0;
}

.program-directory {
    margin-top: 46px;
}

.program-directory h3 {
    font-size: 1.45rem;
    margin-bottom: 18px;
}

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

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

.league-update-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    min-height: 245px;
    padding: 22px;
}

.league-update-card.featured {
    border-top: 4px solid var(--green);
}

.league-update-card p {
    color: var(--muted);
}

.feed-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.feed-actions a {
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--green);
    font-weight: 800;
    padding: 8px 10px;
    text-decoration: none;
}

.news-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px;
}

.news-grid p {
    color: var(--muted);
    margin-bottom: 0;
}

.news-tag {
    color: var(--clay);
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.embed-placeholder {
    background: white;
    border: 1px dashed #aebdc7;
    border-radius: 8px;
    color: var(--muted);
    margin-top: 18px;
    padding: 28px;
}

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

.embed-placeholder h3 {
    color: var(--ink);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.equipment-grid article {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
}

.equipment-grid p {
    color: var(--muted);
    margin-bottom: 0;
}

.rule-table {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.rule-row {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 18px;
    padding: 18px 20px;
    border-top: 1px solid var(--line);
}

.rule-row:first-child {
    border-top: 0;
}

.rule-row.heading {
    background: var(--navy);
    color: white;
    font-weight: 800;
}

.rule-row span:first-child {
    font-weight: 800;
}

.rule-row span:last-child {
    color: var(--muted);
}

.rule-row.heading span:last-child {
    color: white;
}

.info-grid p {
    color: var(--muted);
    margin-bottom: 0;
}

.text-link {
    display: inline-flex;
    margin-top: 16px;
    color: var(--green);
    font-weight: 800;
}

.notice {
    background: var(--soft);
    border-left: 4px solid var(--green);
    color: var(--ink);
    padding: 16px 18px;
}
}

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

.social-callout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 22px;
    padding: 22px;
}

.social-callout h3 {
    margin-bottom: 4px;
}

.social-callout p {
    color: var(--muted);
    margin-bottom: 0;
}

.league-grid a {
    display: flex;
    min-height: 132px;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    transition: border-color 160ms ease, transform 160ms ease;
}

.league-grid a:hover {
    border-color: var(--green);
    transform: translateY(-2px);
}

.league-grid strong {
    font-size: 1.03rem;
    line-height: 1.3;
}

.league-grid span {
    color: var(--muted);
    font-size: 0.94rem;
}

.timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    border-top: 1px solid var(--line);
}

.timeline li {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.timeline strong {
    color: var(--green);
}

.timeline span {
    color: var(--muted);
}

.next-step {
    background: var(--green);
    color: white;
    padding: 64px 0;
}

.next-step .section-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: center;
}

.next-step p {
    color: rgba(255, 255, 255, 0.86);
    max-width: 720px;
    margin-bottom: 0;
}

footer {
    background: #111820;
    color: white;
    text-align: center;
    padding: 22px 20px;
}

footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 900px) {
    .site-hero {
        min-height: auto;
    }

    .hero-content {
        margin: 70px auto 60px;
    }

    .two-column,
    .info-grid,
    .info-grid.three,
    .comparison-grid,
    .equipment-grid,
    .league-grid,
    .news-grid,
    .league-news-grid,
    .embed-grid,
    .social-callout,
    .next-step .section-inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .site-nav {
        align-items: flex-start;
        flex-direction: column;
        width: min(100% - 28px, 1120px);
    }

    .site-nav ul {
        justify-content: flex-start;
    }

    .site-nav li a {
        padding: 8px 9px;
    }

    .section-inner,
    .hero-content {
        width: min(100% - 28px, 1120px);
    }

    h1 {
        font-size: 2.55rem;
    }

    .info-grid,
    .rule-row,
    .timeline li {
        grid-template-columns: 1fr;
    }

    .timeline li {
        gap: 6px;
    }

    .button {
        width: 100%;
    }
}
