:root {
    --orange: #fe7c25;
    --deep-orange: #b53300;
    --ink: #10131a;
    --muted: #5d6570;
    --line: #e5e7eb;
    --surface: #f6f7f8;
    --dark: #060811;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: 'Geist', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.65;
}

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

img {
    height: auto;
}

a {
    color: var(--deep-orange);
}

a:hover,
a:focus-visible {
    color: #7f2600;
}

.container {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 10;
    padding: .6rem 1rem;
    color: var(--ink);
    background: #fff;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 118px;
}

.brand img {
    width: 300px;
    height: 109px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .35rem;
}

.site-nav a {
    padding: .7rem .85rem;
    color: var(--ink);
    text-decoration: none;
    font-weight: 400;
    border-radius: .35rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
    color: var(--deep-orange);
    background: #fff1e8;
}

.site-nav a.is-active {
    color: var(--deep-orange);
    background: #fff1e8;
}

.menu-toggle {
    display: none;
    padding: .55rem .8rem;
    color: var(--ink);
    background: #fff;
    border: 2px solid var(--ink);
    font: inherit;
    font-weight: 700;
}

.page-shell {
    padding: 4rem 0;
}

.page-shell > .container {
    max-width: 1170px;
}

h1,
h2,
h3 {
    color: var(--dark);
    line-height: 1.15;
    font-family: 'Atkinson Hyperlegible', Arial, sans-serif;
    font-weight: 600;
}

h1 {
    margin: 0 0 1.4rem;
    font-size: clamp(1.63rem, 4vw, 2.6rem);
}

h2 {
    margin: 3rem 0 1rem;
    font-size: clamp(1.2rem, 3vw, 1.76rem);
}

h3 {
    margin: 2rem 0 .75rem;
    font-size: 1.08rem;
}

p,
ul,
ol,
blockquote,
table {
    margin: 0 0 1.2rem;
}

blockquote {
    padding: 1rem 1.25rem;
    color: var(--deep-orange);
    background: var(--surface);
    border-left: 4px solid var(--orange);
    font-size: 1.15rem;
    font-style: italic;
}

.hero {
    color: #fff;
    background: linear-gradient(#f6ba26 0%, #f6ba26 4%, #f76d25 4%, #b53300 96%, #cd4d01 96%, #cd4d01 100%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 3rem 0;
}

.hero h1,
.hero h2,
.hero p {
    color: #fff;
}

.hero h1 {
    font-size: clamp(1.76rem, 5vw, 3.2rem);
}

.hero img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.home-content {
    padding: 4rem 0;
}

.home-content section {
    max-width: 1170px;
    margin: 0 auto 3rem;
}

.full-bleed-image {
    width: 100%;
    max-height: 620px;
    margin: 2rem 0 4rem;
    object-fit: cover;
}

.gyms {
    padding: 2rem;
    background: var(--surface);
    border-left: 5px solid var(--orange);
}

.content-image {
    margin: 2rem auto;
}

.gallery-link {
    display: block;
    margin-top: 2rem;
}

.gallery-link img {
    width: 100%;
}

.contact-grid,
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-frame {
    width: 100%;
    min-height: 450px;
    border: 0;
}

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

.news-card {
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--line);
}

.news-card h2 {
    margin: .4rem 0 .8rem;
    font-size: 1.08rem;
}

.news-card h2 a {
    color: var(--dark);
    text-decoration: none;
}

.news-card h2 a:hover {
    color: var(--deep-orange);
}

.eyebrow {
    margin: 0;
    color: var(--deep-orange);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.pagination {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.table-wrap {
    overflow-x: auto;
    margin: 1.5rem 0;
}

table {
    width: 100%;
    min-width: 680px;
    border-collapse: collapse;
}

th,
td {
    padding: .75rem;
    text-align: left;
    vertical-align: top;
    border: 1px solid var(--line);
}

th {
    color: #fff;
    background: var(--dark);
}

.video {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 1rem 0 2rem;
    border: 0;
}

.site-footer {
    padding: 3rem 0;
    color: #f7f7f7;
    background: #000;
}

.site-footer h2 {
    margin-top: 0;
    color: #fff;
    font-size: 1.12rem;
}

.site-footer a {
    color: #ffb17d;
}

.site-footer address {
    font-style: normal;
}

.footer-credit {
    font-size: .8rem;
}

@media (max-width: 800px) {
    .header-inner {
        min-height: 92px;
        flex-wrap: wrap;
    }

    .brand img {
        width: 210px;
        height: auto;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        padding-bottom: 1rem;
    }

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

    .site-nav a {
        padding: .6rem;
    }

    .hero-inner,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        padding: 2rem 0 3rem;
    }

    .hero-media {
        order: -1;
    }

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

    .page-shell,
    .home-content {
        padding: 2.5rem 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
