:root {
    --black: #050505;
    --charcoal: #111111;
    --steel: #1b1b1b;
    --orange: #ff8428;
    --orange-dark: #a84e0a;
    --white: #f7f7f2;
    --muted: #bdbdb6;
    --line: rgba(255, 255, 255, 0.13);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "Roboto", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    background:
        radial-gradient(circle at 10% 0%, rgba(255, 132, 40, 0.28), transparent 28rem),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: auto, 84px 84px, 84px 84px;
    content: "";
    inset: 0;
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

a {
    color: inherit;
}

.container {
    margin: 0 auto;
    max-width: 1180px;
    padding: 0 22px;
    width: 100%;
}

.navbar {
    align-items: center;
    background: rgba(5, 5, 5, 0.82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
    display: flex;
    height: 74px;
    justify-content: space-between;
    left: 0;
    padding: 0 clamp(18px, 5vw, 64px);
    position: fixed;
    right: 0;
    top: 0;
    z-index: 20;
}

.brand {
    align-items: center;
    display: inline-flex;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.08rem;
    font-weight: 900;
    gap: 12px;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.brand-mark {
    align-items: center;
    background: var(--orange);
    border: 1px solid rgba(255, 255, 255, 0.24);
    display: inline-flex;
    font-size: 0.82rem;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.nav-menu {
    align-items: center;
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--white);
}

.menu-toggle {
    background: transparent;
    border: 0;
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 38px;
}

.menu-toggle span {
    background: var(--white);
    display: block;
    height: 2px;
    width: 100%;
}

.hero {
    align-items: end;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.68) 40%, rgba(0, 0, 0, 0.18) 78%),
        linear-gradient(0deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.08) 34%),
        url("assets/hero-calavera.jpg") center right / cover no-repeat;
    display: flex;
    min-height: 88vh;
    padding: 112px clamp(22px, 7vw, 86px) 56px;
    position: relative;
}

.hero::after {
    background: linear-gradient(120deg, transparent 0 66%, rgba(255, 132, 40, 0.64) 66% 67%, transparent 67%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.hero-copy {
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: var(--orange);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    font-family: "Anton", "Roboto Condensed", sans-serif;
    font-weight: 400;
    line-height: 1.06;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(3.8rem, 9vw, 8rem);
    line-height: 0.96;
    max-width: 10ch;
}

h1 span,
.final-cta strong {
    color: var(--orange);
}

h2 {
    font-size: clamp(2.4rem, 5.4vw, 5.4rem);
}

h3 {
    font-size: 1.55rem;
}

.hero-lead {
    color: var(--white);
    font-family: "Roboto Condensed", sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    font-weight: 900;
    margin-top: 24px;
    max-width: 720px;
    text-transform: uppercase;
}

.hero-text,
.section-heading p,
.copy-stack p,
.results-section p,
.contact-section p {
    color: var(--muted);
    font-size: 1.03rem;
    max-width: 690px;
}

.hero-text {
    margin-top: 12px;
}

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

.btn {
    align-items: center;
    border: 1px solid transparent;
    display: inline-flex;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    justify-content: center;
    letter-spacing: 0.08em;
    min-height: 48px;
    padding: 13px 22px;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
    background: var(--orange);
    color: var(--white);
}

.btn-primary:hover {
    background: #ff9a4d;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--white);
}

.section {
    padding: clamp(76px, 10vw, 132px) 0;
}

.split {
    align-items: start;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(260px, 0.85fr) 1.15fr;
}

.intro-section {
    background: var(--black);
}

.copy-stack {
    border-left: 2px solid rgba(255, 132, 40, 0.55);
    display: grid;
    gap: 14px;
    padding-left: clamp(18px, 2vw, 28px);
}

.copy-stack p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 620px;
}

.copy-stack p:first-child {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.6;
}

.history-section {
    background: var(--black);
    border-top: 1px solid var(--line);
}

.history-track {
    display: grid;
    gap: clamp(40px, 6vw, 84px);
}

.history-row {
    align-items: center;
    display: grid;
    gap: clamp(24px, 4vw, 56px);
    grid-template-columns: 1fr 1fr;
}

.history-row:nth-child(even) .history-media {
    order: 2;
}

.history-media {
    border: 1px solid var(--line);
    overflow: hidden;
}

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

.history-copy h3 {
    margin: 0 0 14px;
}

.history-copy p {
    color: var(--muted);
    font-size: 1.03rem;
    max-width: 48ch;
}

.dark-section,
.testimonials-section {
    background: linear-gradient(180deg, var(--charcoal), #070707);
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
}

.section-heading {
    margin: 0 auto 42px;
    max-width: 760px;
    text-align: center;
}

.section-heading.left {
    margin: 0;
    text-align: left;
}

.section-heading.left p:last-child {
    border-left: 2px solid rgba(255, 132, 40, 0.55);
    line-height: 1.75;
    margin-top: 22px;
    padding-left: clamp(18px, 2vw, 28px);
}

.training-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(6, 1fr);
}

.training-grid article,
.testimonial-grid blockquote,
.schedule-table-wrap,
.contact-form {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
}

.training-grid article {
    min-height: 250px;
    padding: 28px 20px;
}

.training-grid i {
    color: var(--orange);
    font-size: 1.6rem;
    margin-bottom: 26px;
}

.training-grid p {
    color: var(--muted);
    margin-top: 14px;
}

.reasons-section {
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.8)),
        url("assets/hero-calavera.jpg") center / cover fixed;
}

.reasons-layout,
.contact-layout {
    align-items: start;
    display: grid;
    gap: 52px;
    grid-template-columns: 0.95fr 1.05fr;
}

.check-list {
    display: grid;
    gap: 12px;
    list-style: none;
}

.check-list li {
    background: rgba(255, 255, 255, 0.06);
    border-left: 4px solid var(--orange);
    color: var(--white);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.18rem;
    font-weight: 900;
    padding: 18px 20px;
    text-transform: uppercase;
}

.check-list li::before {
    color: var(--orange);
    content: "✓";
    margin-right: 12px;
}

.results-section {
    background: var(--orange-dark);
    padding: clamp(44px, 6vw, 68px) 0;
}

.results-section .eyebrow,
.results-section p {
    color: var(--white);
}

.results-compact {
    max-width: 820px;
    text-align: center;
}

.results-compact p {
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 8px auto 0;
    max-width: 720px;
}

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

.testimonial-grid blockquote {
    color: var(--white);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.3;
    min-height: 190px;
    padding: 28px;
    text-transform: uppercase;
}

.testimonial-grid blockquote::before {
    color: var(--orange);
    content: "“";
    display: block;
    font-family: Georgia, serif;
    font-size: 4rem;
    line-height: 0.7;
}

.gallery-section {
    background: linear-gradient(180deg, var(--charcoal), #070707);
    border-top: 1px solid var(--line);
}

.gallery-grid {
    column-count: 3;
    column-gap: 14px;
}

.gallery-grid figure {
    border: 1px solid var(--line);
    break-inside: avoid;
    margin: 0 0 14px;
    overflow: hidden;
}

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

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

@media (max-width: 1020px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.promos-section {
    background: var(--black);
}

.carousel {
    margin: 0 auto;
    max-width: 600px;
    position: relative;
}

.carousel-viewport {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--line);
    height: clamp(440px, 76vh, 760px);
    overflow: hidden;
}

.carousel-track {
    display: flex;
    height: 100%;
    list-style: none;
    transition: transform 450ms ease;
}

.carousel-slide {
    align-items: center;
    display: flex;
    flex: 0 0 100%;
    height: 100%;
    justify-content: center;
    padding: clamp(14px, 2.5vw, 26px);
}

.carousel-slide img {
    height: auto;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.carousel-btn {
    align-items: center;
    background: var(--orange);
    border: 0;
    color: #050505;
    cursor: pointer;
    display: flex;
    font-size: 1.05rem;
    height: 46px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 180ms ease;
    width: 46px;
    z-index: 2;
}

.carousel-btn:hover {
    background: #ff9a4d;
}

.carousel-prev {
    left: clamp(6px, 1.5vw, 14px);
}

.carousel-next {
    right: clamp(6px, 1.5vw, 14px);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 22px;
}

.carousel-dot {
    background: transparent;
    border: 1px solid var(--orange);
    cursor: pointer;
    height: 12px;
    padding: 0;
    transition: background 180ms ease;
    width: 12px;
}

.carousel-dot.active {
    background: var(--orange);
}

.schedules-section {
    background: #000;
}

.schedule-table-wrap {
    margin: 0 auto;
    max-width: 980px;
    overflow-x: auto;
    padding: clamp(14px, 2vw, 22px);
    scrollbar-color: var(--orange) #111;
}

.schedule-table {
    border-collapse: separate;
    border-spacing: 6px;
    color: #050505;
    min-width: 720px;
    table-layout: fixed;
    width: 100%;
}

.schedule-table th,
.schedule-table td {
    background: #fbfbf7;
    border: 0;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    height: 70px;
    line-height: 1.15;
    overflow-wrap: anywhere;
    padding: 10px 8px;
    text-align: center;
    vertical-align: middle;
}

.schedule-table thead th {
    color: var(--orange);
    font-size: 0.92rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.schedule-table .time-heading,
.schedule-table tbody th {
    background: var(--orange);
    color: #050505;
    font-weight: 900;
    width: clamp(64px, 9vw, 92px);
}

.schedule-table .time-heading i {
    font-size: 1.5rem;
}

.schedule-table td span {
    display: block;
    font-weight: 900;
}

.schedule-table td small {
    color: #5a5a5a;
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 5px;
    text-transform: uppercase;
}

.gym-hours {
    margin: clamp(40px, 5vw, 60px) auto 0;
    max-width: 720px;
    text-align: center;
}

.gym-hours h3 {
    color: var(--white);
    margin-bottom: 14px;
}

.gym-hours p {
    color: var(--muted);
    font-size: 1.03rem;
    letter-spacing: 0.02em;
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.contact-section {
    background: linear-gradient(180deg, #080808, var(--steel));
}

.contact-section h2 {
    margin-bottom: 24px;
}

.contact-section p {
    border-left: 2px solid rgba(255, 132, 40, 0.55);
    line-height: 1.75;
    padding-left: clamp(18px, 2vw, 28px);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 26px;
}

.contact-form label {
    color: var(--muted);
    display: grid;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.84rem;
    font-weight: 900;
    gap: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(0, 0, 0, 0.44);
    border: 1px solid var(--line);
    color: var(--white);
    font: inherit;
    letter-spacing: 0;
    min-height: 48px;
    padding: 12px 14px;
    text-transform: none;
}

.contact-form textarea {
    resize: vertical;
}

.final-cta {
    background: var(--white);
    color: var(--black);
    padding: clamp(60px, 8vw, 92px) 0;
    text-align: center;
}

.final-cta p {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
}

.final-cta h2 {
    margin: 10px auto 18px;
    max-width: 880px;
}

.final-cta strong {
    display: block;
    font-family: "Anton", sans-serif;
    font-size: clamp(2.6rem, 7vw, 6.2rem);
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
}

.final-cta .btn {
    margin-top: 26px;
}

.floating-social {
    bottom: 22px;
    display: flex;
    flex-direction: column-reverse;
    gap: 14px;
    position: fixed;
    right: 22px;
    z-index: 30;
}

.floating-btn {
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    color: #fff;
    display: flex;
    font-size: 1.8rem;
    height: 58px;
    justify-content: center;
    text-decoration: none;
    transition: transform 180ms ease;
    width: 58px;
}

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

.floating-whatsapp {
    background: #25d366;
}

.floating-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.floating-mail {
    background: var(--orange);
    color: #050505;
}

.floating-promos {
    align-items: center;
    animation: promo-pulse 2.4s ease-out infinite;
    background: var(--orange);
    border-radius: 30px;
    bottom: 22px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
    color: #050505;
    display: inline-flex;
    font-size: 1.25rem;
    gap: 9px;
    height: 56px;
    left: 22px;
    padding: 0 20px;
    position: fixed;
    text-decoration: none;
    transition: transform 180ms ease;
    z-index: 30;
}

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

.floating-promos span {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.95rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@keyframes promo-pulse {
    0% {
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 132, 40, 0.55);
    }
    70% {
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 0 16px rgba(255, 132, 40, 0);
    }
    100% {
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(255, 132, 40, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-promos {
        animation: none;
    }
}

.end-contact {
    background: var(--steel);
    border-top: 1px solid var(--line);
    padding: clamp(48px, 7vw, 84px) 0;
}

.end-contact-title {
    color: var(--white);
    display: inline-block;
    font-family: "Roboto", Arial, sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 28px;
    padding-bottom: 10px;
    position: relative;
    text-transform: none;
}

.end-contact-title::after {
    background: var(--orange);
    bottom: 0;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%;
}

.end-contact-list {
    display: grid;
    gap: 18px;
    list-style: none;
    max-width: 540px;
}

.end-contact-list li {
    align-items: start;
    color: var(--muted);
    display: grid;
    font-size: 1rem;
    gap: 14px;
    grid-template-columns: 22px 1fr;
    line-height: 1.5;
}

.end-contact-list i {
    color: var(--orange);
    font-size: 1.05rem;
    margin-top: 4px;
    text-align: center;
}

.end-contact-list a {
    color: var(--muted);
    text-decoration: none;
    transition: color 180ms ease;
}

.end-contact-list a:hover {
    color: var(--white);
}

.footer {
    background: #030303;
    border-top: 1px solid var(--line);
    color: var(--muted);
    padding: 24px 0;
}

.footer-inner {
    display: flex;
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 900;
    justify-content: space-between;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 1020px) {
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split,
    .reasons-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .history-row {
        grid-template-columns: 1fr;
    }

    .history-row:nth-child(even) .history-media {
        order: 0;
    }

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

    .schedule-table {
        border-spacing: 5px;
    }

    .schedule-table th,
    .schedule-table td {
        font-size: 0.9rem;
        height: 62px;
        padding: 8px 5px;
    }

    .schedule-table thead th {
        font-size: 0.82rem;
    }

    .schedule-table .time-heading,
    .schedule-table tbody th {
        width: 60px;
    }

    .schedule-table .time-heading i {
        font-size: 1.3rem;
    }

    .schedule-table td small {
        font-size: 0.66rem;
    }
}

@media (max-width: 760px) {
    .navbar {
        height: 68px;
        padding: 0 18px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        background: rgba(5, 5, 5, 0.97);
        border-bottom: 1px solid var(--line);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 12px 18px 18px;
        position: fixed;
        right: 0;
        top: 68px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li,
    .nav-menu a {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 14px 0;
    }

    .hero {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.9) 58%, #050505 100%),
            url("assets/hero-calavera.jpg") center top / cover no-repeat;
        min-height: 84vh;
        padding: 102px 20px 38px;
    }

    .hero::after {
        opacity: 0.28;
    }

    h1 {
        font-size: clamp(2.95rem, 15vw, 4.45rem);
    }

    .hero-lead {
        font-size: 1.18rem;
    }

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

    .training-grid article,
    .training-grid article:last-child {
        grid-column: auto;
        min-height: auto;
    }

    .schedule-table {
        min-width: 720px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 460px) {
    .brand {
        font-size: 0.92rem;
        letter-spacing: 0.04em;
    }

    .brand-mark {
        height: 34px;
        width: 34px;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
