/* =========================================
   ID FITNESS — ISAAC DUNCAN
   MAIN STYLESHEET
========================================= */

:root {
    --black: #0b0c0d;
    --dark: #111315;
    --dark-2: #17191c;
    --panel: #1c1f22;
    --white: #f5f5f2;
    --muted: #a1a5a9;
    --line: rgba(255,255,255,0.10);
    --red: #d71920;
    --red-dark: #a90f15;

    --body-font: "Barlow", sans-serif;
    --heading-font: "Bebas Neue", sans-serif;

    --container: 1240px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--body-font);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================
   GENERAL
========================================= */

.section {
    position: relative;
    width: 100%;
    padding: 120px 6%;
}

.section > * {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
}

.section-top {
    max-width: var(--container);
    margin-bottom: 55px;

    display: flex;
    align-items: center;
    gap: 18px;

    color: var(--muted);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-top span {
    color: var(--red);
    font-size: 0.85rem;
}

.section-top p {
    margin: 0;
}

.eyebrow {
    color: var(--red);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-heading {
    margin-bottom: 65px;
}

.section-heading h2 {
    margin: 14px 0 20px;

    font-family: var(--heading-font);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.01em;
}

.section-heading h2 span {
    color: var(--red);
}

.section-heading > p:last-child {
    max-width: 650px;
    color: var(--muted);
    font-size: 1rem;
}


/* =========================================
   BUTTONS
========================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 0 28px;

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-red {
    background: var(--red);
    color: #fff;
}

.button-red:hover {
    background: var(--red-dark);
}

.button-outline {
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    gap: 15px;
}

.button-outline:hover {
    border-color: var(--red);
    color: var(--red);
}


/* =========================================
   HEADER
========================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 95px;

    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(11,12,13,0.92);
    border-bottom: 1px solid var(--line);

    backdrop-filter: blur(14px);

    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 95px;
    height: auto;
    display: block;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    color: #d6d7d8;

    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    transition: color 0.2s ease;
}

.navigation a:hover {
    color: var(--red);
}

.header-button {
    padding: 13px 20px;

    background: var(--red);
    color: #fff;

    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;

    background: #fff;
}

.mobile-navigation {
    display: none;
}


/* =========================================
   HERO
========================================= */

.hero {
    position: relative;

    min-height: 100vh;
    padding: 150px 6% 90px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
    radial-gradient(
        circle at 75% 55%,
        rgba(220, 20, 30, 0.10) 0%,
        transparent 45%
    ),
    repeating-linear-gradient(
        125deg,
        transparent 0,
        transparent 140px,
        rgba(255, 255, 255, 0.035) 141px,
        transparent 143px
    ),
    repeating-linear-gradient(
        125deg,
        transparent 0,
        transparent 280px,
        rgba(220, 20, 30, 0.045) 281px,
        transparent 284px
    ),
    linear-gradient(
        135deg,
        #08090a 0%,
        #111214 55%,
        #170d10 100%
    );
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.75),
            rgba(0,0,0,0.15)
        );

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    margin: 18px 0 25px;

    font-family: var(--heading-font);
    font-size: clamp(5rem, 12vw, 11rem);
    font-weight: 400;
    line-height: 0.78;
    letter-spacing: -0.01em;
}

.hero h1 span {
    display: block;
    color: var(--red);
}

.hero-description {
    max-width: 560px;
    margin-bottom: 32px;

    color: #b9bdc0;
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    max-width: 800px;
    margin-top: 75px;

    border-top: 1px solid var(--line);
}

.hero-stats div {
    padding: 25px 25px 0 0;
}

.hero-stats strong {
    display: block;

    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 400;
}

.hero-stats span {
    display: block;
    margin-top: 3px;

    color: var(--muted);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.hero-number {
    position: absolute;
    right: 5%;
    bottom: 55px;

    color: rgba(255,255,255,0.25);

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;

    writing-mode: vertical-rl;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 6%;

    color: var(--muted);

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.hero-scroll span {
    color: var(--red);
    margin-left: 10px;
}


/* =========================================
   ABOUT
========================================= */

.about-section {
    background: var(--dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 90px;
    align-items: center;
}

.about-text h2 {
    margin: 15px 0 25px;

    font-family: var(--heading-font);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 0.9;
}

.about-text h2 span {
    display: block;
    color: var(--red);
}

.about-text p {
    max-width: 650px;
    margin-bottom: 20px;

    color: var(--muted);
    font-size: 0.98rem;
}

.about-text .large-text {
    color: #e2e3e3;
    font-size: 1.15rem;
}

.about-text .button {
    margin-top: 15px;
}

.about-image {
    position: relative;
}

.about-image .media-placeholder {
    width: 100%;
    min-height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background: var(--panel);
    border: 1px solid var(--line);
}

.about-image .media-placeholder img {
    width: 100%;
    height: 560px;

    display: block;

    object-fit: cover;
}

.red-tag {
    position: absolute;
    bottom: 0;
    left: 0;

    padding: 12px 20px;

    background: var(--red);

    color: #fff;

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.credential-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    margin-top: 80px;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.credential-strip > div {
    padding: 25px 20px;
    border-right: 1px solid var(--line);
}

.credential-strip > div:last-child {
    border-right: 0;
}

.credential-strip strong {
    display: block;

    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 400;
}

.credential-strip span {
    display: block;
    margin-top: 4px;

    color: var(--muted);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}


/* =========================================
   TRAINING
========================================= */

.training-section {
    background: var(--black);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.training-grid .training-card {
    position: relative;

    min-height: 370px;
    padding: 35px 28px;

    background:
        linear-gradient(
            150deg,
            rgba(215,25,32,0.18),
            var(--dark-2)
        );

    border: 1px solid var(--line);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

.training-card:hover {
    transform: translateY(-5px);
    border-color: rgba(215,25,32,0.5);
}

.training-card.featured {
    background:
        linear-gradient(
            150deg,
            rgba(215,25,32,0.18),
            var(--dark-2)
        );
}

.card-number {
    position: absolute;
    top: 22px;
    right: 22px;

    color: rgba(255,255,255,0.25);

    font-size: 0.6rem;
    font-weight: 700;
}

.card-icon {
    width: 45px;
    height: 45px;

    margin-bottom: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.2);

    color: var(--red);

    font-size: 0.65rem;
    font-weight: 700;
}

.training-card h3 {
    margin-bottom: 15px;

    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 400;
}

.training-card p {
    color: var(--muted);
    font-size: 0.86rem;
}

.availability {
    margin-top: 50px;
    padding: 35px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: var(--dark-2);
    border: 1px solid var(--line);
}

.availability p {
    margin-bottom: 5px;

    color: var(--red);

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.availability strong {
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 400;
    line-height: 0.95;
}

/* =========================
   PRICING
========================= */

.pricing-section {
    background: var(--black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.pricing-card {
    width: 100%;
    box-sizing: border-box;
    position: relative;
    min-height: 360px;
    padding: 35px 28px;
    background: linear-gradient(
        150deg,
        rgba(215, 25, 32, 0.18),
        var(--dark-2)
    );
    border: 1px solid var(--line);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(215, 25, 32, 0.5);
}

.pricing-number {
    display: block;
    color: var(--red);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 55px;
}

.pricing-card h3 {
    margin-bottom: 15px;
    font-family: var(--heading-font);
    font-size: 2rem;
    font-weight: 400;
}

.pricing-price {
    font-family: var(--heading-font);
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 8px;
}

.pricing-per {
    display: block;
    color: var(--red);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 25px;
}

.pricing-card p {
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.7;
}

.pricing-card strong {
    display: block;
    margin-top: 25px;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: #fff;
}

.pricing-bottom {
    margin-top: 35px;
    padding: 25px 30px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pricing-bottom strong {
    font-family: var(--heading-font);
    font-size: 1.4rem;
    font-weight: 400;
}

.pricing-bottom span {
    color: var(--muted);
    font-size: 0.85rem;
}
/* =========================================
   MEDIA
========================================= */

.media-section {
    background: var(--dark);
}

.media-photo-grid {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-bottom: 65px;
}

.media-photo {
    width: 100%;
    max-width: 520px;
}

.media-photo a {
    display: block;
    cursor: zoom-in;
}

.media-photo img {
    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;

    border: 1px solid var(--line);
}


/* ONE FEATURED VIDEO */

.featured-video {
    width: 100%;
    max-width: 950px;

    margin: 0 auto;
}

.video-placeholder {
    position: relative;

    width: 100%;
    min-height: 520px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(215,25,32,0.12),
            transparent 45%
        ),
        #101214;

    border: 1px solid var(--line);

    overflow: hidden;
}

.video-placeholder::before {
    content: "";

    position: absolute;
    inset: 20px;

    border: 1px solid rgba(255,255,255,0.05);

    pointer-events: none;
}

.video-placeholder span {
    position: relative;

    color: var(--red);

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.video-placeholder strong {
    position: relative;

    margin-top: 12px;

    font-family: var(--heading-font);
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 400;
    line-height: 0.9;
}

.video-placeholder small {
    position: relative;

    margin-top: 30px;

    color: var(--muted);

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}


/* FUTURE VIDEO */

.featured-video video {
    width: 100%;
    height: auto;
    display: block;

    background: #000;
}


/* =========================================
   RESULTS
========================================= */

.results-section {
    background: var(--black);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.result-card {
    min-width: 0;
}

.result-placeholder {
    position: relative;

    width: 100%;
    min-height: 430px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background:
    linear-gradient(
        135deg,
        #202327 0%,
        #2a0f12 50%,
        #111315 100%
    );
    border: 1px solid var(--line);

    overflow: hidden;
}

.result-placeholder > span {
    color: var(--red);

    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.result-placeholder > strong {
    margin-top: 10px;

    font-family: var(--heading-font);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 0.9;
}

.result-placeholder a {
    position: absolute;
    inset: 0;

    display: block;

    cursor: zoom-in;
}

.result-placeholder img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;

    background: #111315;
}

.result-caption {
    padding: 16px 0;

    border-bottom: 1px solid var(--line);

    color: #d9dada;

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.result-caption span {
    margin-right: 10px;
    color: var(--red);
}


/* =========================================
   CREDENTIALS
========================================= */

.credentials-section {
    background: var(--dark);
}

.credentials-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 100px;
    align-items: start;
}

.credentials-list {
    border-top: 1px solid var(--line);
}

.credential {
    display: flex;
    align-items: center;
    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid var(--line);
}

.credential > span {
    color: var(--red);

    font-size: 0.65rem;
    font-weight: 700;
}

.credential strong {
    display: block;

    font-family: var(--heading-font);
    font-size: 1.7rem;
    font-weight: 400;
}

.credential small {
    display: block;
    margin-top: 3px;

    color: var(--muted);

    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}


/* CERTIFICATE */

.certificate {
    width: 100%;
    margin-top: 80px;

    display: flex;
    justify-content: center;
}

.certificate-placeholder {
    width: 100%;
    max-width: 900px;

    display: flex;
    justify-content: center;

    background: transparent;
    border: none;
}

.certificate-placeholder img {
    width: 100%;
    max-width: 900px;
    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================
   LOCATION
========================================= */

.location-section {
    background: var(--black);
}

.location-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
    align-items: stretch;
}

.location-content h2 {
    margin: 15px 0 25px;

    font-family: var(--heading-font);
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 400;
    line-height: 0.9;
}

.location-content h2 span {
    display: block;
    color: var(--red);
}

.location-content > p:not(.eyebrow) {
    max-width: 500px;
    color: var(--muted);
}

.address {
    margin-top: 45px;
    padding-top: 25px;

    border-top: 1px solid var(--line);
}

.address span {
    display: block;
    margin-bottom: 10px;

    color: var(--red);

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.address strong {
    font-family: var(--heading-font);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.05;
}

.location-buttons {
    margin-top: 30px;
}

.gym-socials {
    margin-top: 45px;

    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;

    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.gym-socials span {
    color: var(--muted);
}

.gym-socials a {
    transition: color 0.2s ease;
}

.gym-socials a:hover {
    color: var(--red);
}

.map-container {
    min-height: 520px;

    background: var(--dark-2);
    border: 1px solid var(--line);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;

    display: block;

    border: 0;

    filter: grayscale(100%) contrast(1.1);
}


/* =========================================
   CONTACT
========================================= */

.contact-section {
    position: relative;

    padding: 140px 6%;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(215,25,32,0.16),
            transparent 40%
        ),
        var(--red);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-section .eyebrow {
    color: rgba(255,255,255,0.75);
}

.contact-section h2 {
    margin: 15px 0 25px;

    font-family: var(--heading-font);
    font-size: clamp(4rem, 9vw, 8rem);
    font-weight: 400;
    line-height: 0.85;
}

.contact-section h2 span {
    display: block;
    color: #111;
}

.contact-section p:not(.eyebrow) {
    max-width: 600px;
    margin: 0 auto;

    color: rgba(255,255,255,0.85);
}

.contact-buttons {
    margin-top: 40px;

    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-button {
    min-height: 52px;
    padding: 0 28px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.dark-button {
    background: #111;
    color: #fff;

    transition: transform 0.25s ease;
}

.dark-button:hover {
    transform: translateY(-2px);
}

.phone-placeholder {
    display: block;
    margin-top: 25px;

    color: rgba(255,255,255,0.55);

    font-size: 0.58rem;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    padding: 55px 6% 30px;

    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: end;
    gap: 50px;

    background: #08090a;

    border-top: 1px solid var(--line);
}

.footer-brand img {
    width: 95px;
    display: block;
}

.footer-brand p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.13em;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a,
.footer-socials a {
    color: var(--muted);

    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;

    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-socials a:hover {
    color: var(--red);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.copyright {
    grid-column: 1 / -1;

    padding-top: 25px;

    border-top: 1px solid var(--line);

    color: #55595d;

    font-size: 0.55rem;
    letter-spacing: 0.1em;
}


/* =========================================
   PHOTO LIGHTBOX
========================================= */

.photo-lightbox-overlay {
    position: fixed;
    inset: 0;

    z-index: 9999;

    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.94);

    cursor: zoom-out;
}

.photo-lightbox-overlay img {
    max-width: 95vw;
    max-height: 95vh;

    width: auto;
    height: auto;

    display: block;

    object-fit: contain;
}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 1000px) {

    .navigation {
        gap: 18px;
    }

    .header-button {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-image {
        max-width: 650px;
    }

    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        min-height: 450px;
    }

    .footer {
        grid-template-columns: 1fr;
    }

    .footer-links,
    .footer-socials {
        justify-content: flex-start;
    }

}


/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 700px) {

    .header {
        height: 72px;
        padding: 0 5%;
    }

    .logo img {
        width: 80px;
    }

    .navigation {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .mobile-navigation {
        position: fixed;
        top: 72px;
        left: 0;

        width: 100%;

        padding: 25px 6%;

        display: none;
        flex-direction: column;
        gap: 20px;

        background: #0b0c0d;
        border-bottom: 1px solid var(--line);

        z-index: 999;
    }

    .mobile-navigation.active {
        display: flex;
    }

    .mobile-navigation a {
        color: #fff;

        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.16em;
    }
.pricing-card h3 {
    white-space: nowrap;
    text-align: center;
}

    .section {
        padding: 85px 6%;
    }

    .section-top {
        margin-bottom: 40px;
    }


    /* HERO */

    .hero {
        min-height: 100svh;
        padding: 125px 6% 80px;
    }

    .hero h1 {
        font-size: clamp(4.5rem, 20vw, 7rem);
    }

    .hero-description {
        font-size: 0.92rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .hero-stats div {
        padding: 16px 0;
        border-bottom: 1px solid var(--line);
    }

    .hero-number {
        display: none;
    }

    .hero-scroll {
        display: none;
    }


    /* ABOUT */

    .about-grid {
        gap: 40px;
    }

    .about-text h2,
    .location-content h2 {
        font-size: 4rem;
    }

    .about-image .media-placeholder {
        min-height: 430px;
    }

    .about-image .media-placeholder img {
        height: 430px;
    }

    .credential-strip {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 50px;
    }

    .credential-strip > div:nth-child(2) {
        border-right: 0;
    }

    .credential-strip > div:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }


    /* TRAINING */

    .training-grid {
        grid-template-columns: 1fr;
    }

    .training-card {
        min-height: 320px;
    }

    .card-icon {
        margin-bottom: 65px;
    }

    .availability {
        flex-direction: column;
        align-items: flex-start;
    }


    /* MEDIA */

    .media-photo-grid {
        margin-bottom: 45px;
    }

    .media-photo {
        max-width: 100%;
    }

    .video-placeholder {
        min-height: 360px;
    }

    .video-placeholder strong {
        font-size: 3.5rem;
    }


    /* RESULTS */

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-placeholder {
        min-height: 400px;
    }


    /* CREDENTIALS */

    .certificate {
        margin-top: 55px;
    }


    /* LOCATION */

    .location-grid {
        gap: 45px;
    }

    .map-container,
    .map-container iframe {
        min-height: 350px;
    }


    /* CONTACT */

    .contact-section {
        padding: 100px 6%;
    }

    .contact-section h2 {
        font-size: 4.5rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-button {
        width: 100%;
    }


    /* FOOTER */

    .footer {
        padding: 45px 6% 25px;
        gap: 30px;
    }

    .footer-links {
        flex-direction: column;
        gap: 14px;
    }

    .footer-socials {
        gap: 15px;
    }

}
.footer {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 400px;
}

.footer-brand {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-brand img {
    width: 330px;
    max-width: 100%;
    margin: 0;
}

.footer-links {
    width: 45%;
    margin-left: 0;
    margin-right: auto;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.video-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.video-lightbox-content {
    position: relative;
    width: min(1100px, 95vw);
}

.video-lightbox-content video {
    width: 100%;
    max-height: 85vh;
    display: block;
    background: #000;
}

.video-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
}
/* ISAAC TRAINING VIDEO */

.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 80px;
    height: 80px;

    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 50%;
    background: rgba(0,0,0,0.55);

    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
}

.video-play-button::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-left: 20px solid white;
    margin-left: 5px;
}

.video-play-button:hover {
    background: rgba(0,0,0,0.75);
}

.video-play-button.is-playing::before {
    width: 5px;
    height: 22px;
    border: none;
    background: white;
    margin: 0;
    box-shadow: 9px 0 0 white;
}

/* FINAL MOBILE HEADER FIX */

@media (max-width: 600px) {
    .header {
        height: 90px !important;
        min-height: 90px !important;
        padding: 0 5% !important;
    }

    .header .logo,
    .header img {
        max-height: 90px !important;
    }
}
/* FINAL RESULT BOX COLOUR FIX */
.result-placeholder {
    background:
        linear-gradient(
            135deg,
            #2a0f12 0%,
            #1f1115 50%,
            #111315 100%
        ) !important;
}
/* =========================================
   TRAINING CARDS — ALL MATCH CARD 02
   ========================================= */

.training-grid .training-card {
    background: linear-gradient(
        135deg,
        #2a0f12 0%,
        #1b1113 50%,
        #111315 100%
    ) !important;

    border: 1px solid rgba(220, 20, 30, 0.28) !important;
}