/* ============================================
   JOHNSON PERFORMANCE CO.
   Dark Luxury Aesthetic — Black, Gold, White
   ============================================ */

/* --- VARIABLES --- */
:root {
    --black: #0A0A0A;
    --dark: #111111;
    --dark-2: #161616;
    --dark-3: #1A1A1A;
    --dark-4: #222222;
    --dark-5: #333333;
    --gray: #666666;
    --light-gray: #999999;
    --off-white: #E8E8E3;
    --white: #FFFFFF;
    --gold: #C9A94E;
    --gold-light: #D4BA6A;
    --gold-dark: #A88B3A;
    --gold-glow: rgba(201, 169, 78, 0.15);

    --font-display: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --nav-height: 80px;
    --container: 1200px;
    --container-tight: 900px;
}

/* --- RESET --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--off-white);
    background: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

::selection {
    background: var(--gold);
    color: var(--black);
}

/* --- LOADER --- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-smooth), visibility 0.6s;
}
.loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader__inner {
    text-align: center;
}
.loader__line {
    width: 60px;
    height: 2px;
    background: var(--dark-5);
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}
.loader__line::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: loaderSlide 1s var(--ease-smooth) infinite;
}
@keyframes loaderSlide {
    to { left: 100%; }
}
.loader__text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* --- CONTAINER --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}
.btn--gold {
    background: var(--gold);
    color: var(--black);
}
.btn--gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 78, 0.3);
}
.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--dark-5);
}
.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.btn--sm {
    padding: 12px 28px;
    font-size: 0.8rem;
}
.btn--full {
    width: 100%;
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 1000;
    background: rgba(6, 6, 4, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 78, 0.08);
    transition: background 0.4s var(--ease-smooth), box-shadow 0.4s;
    overflow: hidden;
}

.nav__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    z-index: 1001;
    transition: width 0.1s linear;
    width: 0%;
}
.nav.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(201, 169, 78, 0.1);
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.nav__logo-mark {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--gold);
    letter-spacing: 0.05em;
}
.nav__logo-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
}
.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav__link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--light-gray);
    transition: color 0.3s;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-smooth);
}
.nav__link:hover {
    color: var(--white);
}
.nav__link:hover::after {
    width: 100%;
}
.nav__link--cta {
    color: var(--black);
    background: var(--gold);
    padding: 10px 24px;
    font-weight: 600;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover {
    background: var(--gold-light);
    color: var(--black);
}
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}
.nav__toggle span {
    width: 28px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s var(--ease-smooth);
    display: block;
}
.nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav__toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg-placeholder {
    width: 100%;
    height: 100%;
    background: #050503;
    position: relative;
    overflow: hidden;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.5) 0%,
        rgba(10, 10, 10, 0.3) 40%,
        rgba(10, 10, 10, 0.7) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}
.hero__badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 169, 78, 0.3);
    padding: 8px 24px;
    margin-bottom: 32px;
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 28px;
}
.hero__title-line {
    display: block;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--white);
}
.hero__title-line--gold {
    color: var(--gold);
}
.hero__sub {
    font-size: 1.05rem;
    color: var(--light-gray);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}
.hero__scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--light-gray);
}
.hero__scroll-line {
    width: 1px;
    height: 50px;
    background: var(--dark-5);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gold);
    animation: scrollLine 2s var(--ease-smooth) infinite;
}
@keyframes scrollLine {
    0% { top: -50%; }
    100% { top: 100%; }
}

/* --- SECTIONS GENERAL --- */
.section {
    padding: 120px 0;
    position: relative;
}
.section__label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}
.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section__intro {
    font-size: 1.05rem;
    color: var(--light-gray);
    max-width: 600px;
    line-height: 1.8;
}
.gold-rule {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 28px;
}

/* --- ABOUT --- */
.about {
    background: var(--dark);
}
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.about__image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.about__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}
.about__image-col {
    position: relative;
}
.about__bio {
    font-size: 1rem;
    color: var(--off-white);
    margin-bottom: 16px;
    line-height: 1.8;
}
.about__bio strong {
    color: var(--gold);
    font-weight: 600;
}
.about__bio em {
    color: var(--gold);
    font-style: italic;
}
.about__stats {
    display: flex;
    gap: 32px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--dark-4);
}
.about__stat {
    display: flex;
    align-items: center;
    gap: 10px;
}
.about__stat-icon {
    font-size: 1.2rem;
}
.about__stat-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--light-gray);
}

/* --- FACILITY --- */
.facility {
    background: var(--black);
}
.facility__header {
    text-align: center;
    margin-bottom: 60px;
}
.facility__header .section__intro {
    margin: 0 auto;
}
.facility__header .gold-rule {
    margin: 0 auto 28px;
}
.facility__gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: 12px;
    margin-bottom: 60px;
}
.facility__photo {
    overflow: hidden;
    position: relative;
}
.facility__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}
.facility__photo:hover img {
    transform: scale(1.05);
}
.facility__photo--large {
    grid-column: span 2;
    grid-row: span 2;
}
.facility__photo--tall {
    grid-row: span 2;
}
.facility__features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.facility__feature {
    padding: 36px 28px;
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    transition: border-color 0.3s, transform 0.3s;
}
.facility__feature:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}
.facility__feature-icon {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.facility__feature h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}
.facility__feature p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.7;
}

/* --- EXPERIENCE --- */
.experience {
    background: var(--dark);
}
.experience__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}
.experience__body {
    font-size: 1.05rem;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 36px;
}
.experience__list li {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--dark-4);
}
.experience__list li:first-child {
    border-top: 1px solid var(--dark-4);
}
.experience__list-marker {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold);
    opacity: 0.6;
    min-width: 40px;
    padding-top: 2px;
}
.experience__list strong {
    display: block;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 4px;
}
.experience__list p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.6;
}
.experience__card {
    background: var(--dark-3);
    border: 1px solid var(--dark-4);
    overflow: hidden;
    position: sticky;
    top: 120px;
}
.experience__card-top {
    background: var(--gold);
    padding: 20px 28px;
}
.experience__card-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--black);
}
.experience__card-body {
    padding: 28px;
}
.experience__card-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--dark-4);
    font-size: 0.95rem;
    color: var(--off-white);
}
.experience__card-item:last-child {
    border-bottom: none;
}
.experience__card-check {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
}

/* --- RESULTS --- */
.results {
    background: var(--black);
}
.results__header {
    text-align: center;
    margin-bottom: 60px;
}
.results__header .section__intro {
    margin: 0 auto;
}
.results__header .gold-rule {
    margin: 0 auto 28px;
}
.results__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.testimonial {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    padding: 36px 28px;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}
.testimonial:hover {
    border-color: rgba(201, 169, 78, 0.3);
    transform: translateY(-4px);
}
.testimonial__photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 2px solid var(--dark-4);
}
.testimonial__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial__stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 4px;
    margin-bottom: 16px;
}
.testimonial__quote {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 20px;
}
.testimonial__author {
    display: block;
    font-style: normal;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}
.testimonial__detail {
    font-size: 0.78rem;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* --- BOOK --- */
.book {
    background: var(--dark);
}
.book__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.book__body {
    font-size: 1rem;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 12px;
}
.book__details {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.book__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.book__detail-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.book__detail strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.book__detail p {
    font-size: 0.9rem;
    color: var(--light-gray);
}
.book__calendar-placeholder {
    background: var(--dark-3);
    border: 1px solid var(--dark-4);
    overflow: hidden;
}
.book__calendar-mock {
    min-height: 400px;
    display: flex;
    flex-direction: column;
}
.book__calendar-header {
    background: var(--dark-4);
    padding: 20px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
}
.book__calendar-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 28px;
    text-align: center;
}
.book__calendar-body p {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 24px;
    max-width: 280px;
}

/* Calendly override styles */
.calendly-inline-widget {
    min-height: 630px;
}

/* --- CONTACT --- */
.contact {
    background: var(--black);
}
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact__body {
    font-size: 1rem;
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 32px;
}
.contact__links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact__link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--light-gray);
    transition: color 0.3s;
}
.contact__link:hover {
    color: var(--gold);
}
.contact__link-icon {
    font-size: 1.1rem;
}

/* --- FORM --- */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light-gray);
}
.form__optional {
    color: var(--gray);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.form__input {
    background: var(--dark-2);
    border: 1px solid var(--dark-4);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 14px 18px;
    outline: none;
    transition: border-color 0.3s;
}
.form__input::placeholder {
    color: var(--gray);
}
.form__input:focus {
    border-color: var(--gold);
}
.form__textarea {
    resize: vertical;
    min-height: 130px;
}

/* --- FOOTER --- */
.footer {
    background: var(--dark);
    border-top: 1px solid var(--dark-4);
    padding: 60px 0 40px;
}
.footer__inner {
    text-align: center;
}
.footer__brand {
    margin-bottom: 28px;
}
.footer__brand .nav__logo-mark {
    display: inline-flex;
    margin-bottom: 12px;
}
.footer__name {
    display: block;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-top: 10px;
}
.footer__tagline {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-top: 4px;
}
.footer__links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}
.footer__links a {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--light-gray);
    transition: color 0.3s;
}
.footer__links a:hover {
    color: var(--gold);
}
.footer__bottom {
    padding-top: 28px;
    border-top: 1px solid var(--dark-4);
}
.footer__bottom p {
    font-size: 0.78rem;
    color: var(--gray);
}
.footer__credit {
    margin-top: 6px;
}
.footer__credit a {
    color: var(--gold);
    transition: opacity 0.3s;
}
.footer__credit a:hover {
    opacity: 0.7;
}

/* --- PLACEHOLDER IMAGES --- */
.placeholder-img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--dark-5);
}
.placeholder-img span {
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.placeholder-img--portrait {
    aspect-ratio: 3/4;
}
.placeholder-img--square {
    aspect-ratio: 1/1;
    min-height: auto;
    border-radius: 50%;
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about__image-frame {
        max-width: 400px;
    }
    .experience__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .experience__card {
        position: static;
    }
    .facility__features {
        grid-template-columns: repeat(2, 1fr);
    }
    .book__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 70px;
    }
    .nav {
        padding: 0 20px;
    }
    .nav__logo-text {
        display: none;
    }
    .nav__toggle {
        display: flex;
    }
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        gap: 24px;
        transition: right 0.4s var(--ease-smooth);
        border-left: 1px solid var(--dark-4);
    }
    .nav__menu.open {
        right: 0;
    }
    .nav__link {
        font-size: 1rem;
    }
    .nav__link--cta {
        margin-top: 12px;
    }

    .section {
        padding: 80px 0;
    }
    .hero__title-line {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }
    .facility__gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .facility__photo--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    .facility__photo--tall {
        grid-row: span 1;
    }
    .facility__features {
        grid-template-columns: 1fr;
    }
    .results__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about__stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer__links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .hero__actions .btn {
        width: 100%;
        max-width: 300px;
    }
    .facility__gallery {
        grid-template-columns: 1fr;
    }
    .facility__photo--large {
        grid-column: span 1;
    }
}


/* ============================================
   ENHANCED — Gym Textures, Animations & Polish
   ============================================ */

/* --- GRAIN TEXTURE OVERLAY --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 9990;
    mix-blend-mode: overlay;
}

/* --- GOLD LINE ACCENT --- */
.section__title::after,
h2::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 16px;
}

/* --- ANIMATED GOLD GRADIENT TEXT --- */
.gold-animated {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold), var(--gold-dark));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s ease infinite;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- COUNTER ANIMATION --- */
[data-target] {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* --- HORIZONTAL DIVIDERS --- */
.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
    margin: 0;
    opacity: 0.3;
}

/* --- TICKER / MARQUEE --- */
.ticker {
    overflow: hidden;
    background: var(--dark-2);
    border-top: 1px solid rgba(201,169,78,0.15);
    border-bottom: 1px solid rgba(201,169,78,0.15);
    padding: 16px 0;
    white-space: nowrap;
}
.ticker__inner {
    display: inline-flex;
    gap: 80px;
    will-change: transform;
}
.ticker__item {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
}
.ticker__item::before {
    content: '◆';
    margin-right: 24px;
    font-size: 0.5rem;
    vertical-align: middle;
}

/* --- BARBELL DECORATIVE ELEMENT --- */
.barbell-deco {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin: 32px auto;
    opacity: 0.2;
}
.barbell-deco__plate {
    width: 8px;
    height: 28px;
    background: var(--gold);
    border-radius: 2px;
}
.barbell-deco__bar {
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}

/* --- STAT CARDS HOVER GLOW --- */
.results__card,
.facility__feature {
    position: relative;
    overflow: hidden;
}

.results__card::before,
.facility__feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,169,78,0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}

.results__card:hover::before,
.facility__feature:hover::before {
    opacity: 1;
}

/* --- PARALLAX SECTION BACKGROUNDS --- */
/* Texture canvas sits behind everything */
#heroTexture {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 1;
    z-index: 0;
}

/* --- PULSING GOLD DOT (available indicator) --- */
.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 8px;
    animation: pulse-gold 2s ease infinite;
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201,169,78,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(201,169,78,0); }
}

/* --- ENHANCED BUTTON --- */
.btn--primary {
    position: relative;
    overflow: hidden;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn--primary:hover::before {
    width: 300px;
    height: 300px;
}

/* --- SCROLL PROGRESS BAR --- */
.scroll-progress {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    z-index: 1002;
    transform-origin: left;
    transition: width 0.1s;
    /* Sits at bottom of viewport as a reading progress indicator */
}

/* --- GYM PATTERN BACKGROUND --- */
.gym-pattern {
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(201,169,78,0.02) 10px,
            rgba(201,169,78,0.02) 11px
        );
}

/* --- ENHANCED REVEAL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* --- MAGNETIC BUTTON TRANSITION --- */
.btn, .nav__link--cta {
    transition: transform 0.2s var(--ease-spring), background 0.3s, box-shadow 0.3s, color 0.3s;
}

/* ============================================
   BOOKING CTA CARD
   ============================================ */
.book__cta-card {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
    border: 1px solid rgba(201, 169, 78, 0.35);
    border-radius: 4px;
    padding: 56px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(201, 169, 78, 0.08),
        0 0 40px rgba(201, 169, 78, 0.08),
        0 0 80px rgba(201, 169, 78, 0.04),
        inset 0 1px 0 rgba(201, 169, 78, 0.15);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.book__cta-card:hover {
    border-color: rgba(201, 169, 78, 0.6);
    box-shadow:
        0 0 0 1px rgba(201, 169, 78, 0.12),
        0 0 60px rgba(201, 169, 78, 0.15),
        0 0 120px rgba(201, 169, 78, 0.08),
        inset 0 1px 0 rgba(201, 169, 78, 0.2);
}

.book__cta-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.book__cta-card::after {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,78,0.06), transparent 70%);
    pointer-events: none;
}

.book__cta-icon {
    font-size: 1.5rem;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 24px;
    letter-spacing: 8px;
}

.book__cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.book__cta-sub {
    color: var(--light-gray);
    font-size: 1rem;
    line-height: 1.7;
    max-width: 440px;
    margin: 0 auto 36px;
}

.book__cta-details {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.book__cta-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--light-gray);
    letter-spacing: 0.05em;
}

.book__cta-detail-icon {
    color: var(--gold);
    font-size: 0.9rem;
}

.book__cta-btn {
    font-size: 0.95rem;
    padding: 16px 48px;
    letter-spacing: 0.08em;
}

.book__cta-note {
    margin-top: 20px;
    font-size: 0.75rem;
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .book__cta-card { padding: 40px 24px; }
    .book__cta-details { gap: 16px; }
}

/* ============================================
   LIGHTNING + GOLD PULSE EFFECTS
   ============================================ */

/* --- HERO TITLE GOLD PULSE --- */
@keyframes goldPulse {
    0%, 100% {
        text-shadow:
            0 0 10px rgba(201, 169, 78, 0.2),
            0 0 30px rgba(201, 169, 78, 0.1);
    }
    50% {
        text-shadow:
            0 0 20px rgba(201, 169, 78, 0.9),
            0 0 50px rgba(201, 169, 78, 0.6),
            0 0 100px rgba(201, 169, 78, 0.4),
            0 0 150px rgba(201, 169, 78, 0.2);
    }
}

@keyframes goldPulseGold {
    0%, 100% {
        text-shadow:
            0 0 15px rgba(201, 169, 78, 0.5),
            0 0 40px rgba(201, 169, 78, 0.3);
        color: var(--gold-light);
    }
    50% {
        text-shadow:
            0 0 25px rgba(255, 220, 100, 1),
            0 0 60px rgba(201, 169, 78, 0.8),
            0 0 120px rgba(201, 169, 78, 0.5),
            0 0 200px rgba(201, 169, 78, 0.2);
        color: #ffe87a;
    }
}

.hero__title-pulse {
    animation: goldPulse 3s ease-in-out infinite;
}

.hero__title-line--gold.hero__title-pulse {
    animation: goldPulseGold 2s ease-in-out infinite;
}

/* --- LIGHTNING FLASH on background --- */
@keyframes bgFlash {
    0% { background: transparent; }
    10% { background: rgba(201, 169, 78, 0.03); }
    20% { background: transparent; }
    30% { background: rgba(201, 169, 78, 0.02); }
    100% { background: transparent; }
}

.hero.lightning-flash {
    animation: bgFlash 0.4s ease forwards;
}

/* --- HERO overlay gets slight gold tint during strike --- */
.hero__title-line {
    will-change: text-shadow;
}
