/* ================================
   CSS VARIABLES & DESIGN TOKENS
   BLACK + BRASS ULTRA-PREMIUM THEME
   ================================ */
:root {
    /* Core Colors - Black & Brass */
    --black: #000000;                /* Pure black background */
    --near-black: #0a0a0a;           /* Subtle variation */
    --dark-gray: #141414;            /* Section backgrounds - darker */
    --darker-gray: #0d0d0d;          /* Even darker for depth */
    --gold: #C9A961;                 /* Warmer brass gold */
    --gold-dark: #A8894A;            /* Rich brass for hover */
    --gold-light: #D4B877;           /* Bright brass highlights */
    --gold-metallic: #B8975E;        /* Metallic brass */

    /* Neutrals */
    --white: #ffffff;
    --off-white: #f8f8f8;
    --medium-gray: #7a7a7a;
    --light-gray: #2a2a2a;           /* Borders on dark bg - lighter */
    --text-color: #ffffff;
    --text-muted: #8a8a8a;           /* Lighter for better readability */
    --text-dim: #5a5a5a;             /* Very dim for subtle text */

    /* Shadows - More dramatic */
    --shadow-sm: 0 4px 16px rgba(0,0,0,0.4);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.5);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
    --shadow-gold: 0 8px 32px rgba(201, 169, 97, 0.25);
    --shadow-gold-lg: 0 12px 48px rgba(201, 169, 97, 0.3);

    /* Transitions - More sophisticated */
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Spacing - DRAMATICALLY more generous */
    --section-padding: 200px;
    --section-padding-small: 120px;
    --container-width: 1200px;
    --container-narrow: 900px;

    /* Typography */
    --font-heading: 'Space Grotesk', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* ================================
   RESET & BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-muted);
    background: var(--black);
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(201, 169, 97, 0.01) 2px, rgba(201, 169, 97, 0.01) 4px);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ================================
   TYPOGRAPHY - DRAMATIC & PREMIUM
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

h1 {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

h2 {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.0;
}

h3 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h4 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 24px;
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 17px;
}

.intro-text {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ================================
   SECTION STYLES
   ================================ */
section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    margin-bottom: 80px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
    font-family: var(--font-heading);
}

.section-description {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 750px;
    margin: 24px auto 0;
    line-height: 1.7;
}

/* ================================
   BUTTONS - DRAMATIC PRESENCE
   ================================ */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 24px 56px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    font-family: var(--font-heading);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold-dark);
    transition: var(--transition-smooth);
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    z-index: 1;
}

.btn-primary span,
.btn-primary::after {
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--light-gray);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.btn-large {
    padding: 28px 64px;
    font-size: 13px;
}

button {
    font-family: var(--font-heading);
}

/* ================================
   HEADER & NAVIGATION - BLACK THEME
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--black);
    border-bottom: 1px solid var(--light-gray);
}

.top-bar {
    background: var(--near-black);
    color: var(--text-muted);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--light-gray);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 25px;
}

.contact-info a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--text-muted);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--light-gray);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 32px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.02em;
    font-family: var(--font-heading);
}

.logo-accent {
    color: var(--gold);
    font-size: 48px;
    line-height: 0;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 28px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--secondary-color);
    transition: var(--transition);
}

/* ================================
   HERO SECTION - FULL WIDTH IMAGE
   ================================ */
.hero {
    margin-top: 105px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 35px;
    font-family: var(--font-heading);
    padding: 10px 24px;
    border: 1px solid var(--gold);
    background: rgba(201, 169, 97, 0.05);
}

.hero-title {
    color: var(--white);
    font-size: 140px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 0.9;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.hero-subtitle-large {
    color: var(--text-muted);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 70px;
    font-family: var(--font-body);
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-hero-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 22px 55px;
    border-radius: 0;
    transition: var(--transition);
    border: none;
}

.btn-hero-primary:hover {
    background: var(--gold-dark);
    box-shadow: var(--shadow-gold);
}

.hero-cta-note {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 400;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--gold);
    font-size: 20px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ================================
   UTILITY CONTAINERS
   ================================ */
.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-intro-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro-center h2 {
    font-size: 64px;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.section-intro-center .lead {
    font-size: 22px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.content-eyebrow {
    display: block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* ================================
   HOW IT WORKS SECTION
   ================================ */
.how-it-works {
    background: var(--dark-gray);
    padding: var(--section-padding-small) 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.steps-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.step-simple {
    text-align: center;
}

.step-num {
    width: 80px;
    height: 80px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 600;
    margin: 0 auto 30px;
    transition: var(--transition);
    font-family: var(--font-heading);
}

.step-simple:hover .step-num {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.step-simple h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--white);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.step-simple p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ================================
   IMAGE-TEXT SPLIT SECTIONS
   ================================ */
.image-text-section {
    padding: 0;
    overflow: hidden;
    background: var(--black);
}

.image-text-section.alt {
    background: var(--dark-gray);
}

.image-text-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.image-text-row.reverse {
    direction: rtl;
}

.image-text-row.reverse > * {
    direction: ltr;
}

.image-text-image {
    position: relative;
    overflow: hidden;
}

.image-text-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
}

.image-text-content {
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-text-content h2 {
    font-size: 64px;
    margin-bottom: 35px;
    color: var(--white);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.image-text-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.content-list {
    list-style: none;
    margin: 30px 0;
}

.content-list li {
    padding: 15px 0;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-muted);
    border-bottom: 1px solid var(--light-gray);
}

.content-list li:last-child {
    border-bottom: none;
}

.content-list strong {
    color: var(--gold);
    font-weight: 700;
}

.btn-text-link {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 14px;
    margin-top: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.btn-text-link:hover {
    color: var(--gold-light);
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--light-gray);
}

.quick-stat {
    text-align: center;
}

.quick-stat strong {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: -0.03em;
    font-family: var(--font-heading);
}

.quick-stat span {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-family: var(--font-heading);
}

/* ================================
   STATS SECTION (UNIQUE ELEMENT!)
   ================================ */
.stats-section {
    background: var(--near-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 96px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.04em;
    font-family: var(--font-heading);
}

.stat-plus,
.stat-percent {
    display: inline;
    font-size: 80px;
    color: var(--gold);
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-family: var(--font-heading);
}

/* ================================
   ABOUT SECTION
   ================================ */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-features {
    margin-top: 35px;
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--gold);
    font-size: 20px;
}

.feature-item span {
    font-weight: 500;
    color: var(--white);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 0;
    box-shadow: var(--shadow-lg);
    width: 100%;
    filter: grayscale(20%);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 0;
    z-index: -1;
}

/* ================================
   WORKOUTS SECTION
   ================================ */
.workouts-section {
    background: var(--black);
}

.workouts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.workout-card {
    background: var(--dark-gray);
    padding: 45px;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.workout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.workout-card:hover::before {
    transform: scaleX(1);
}

.workout-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: var(--gold);
}

.workout-icon-wrapper {
    width: 70px;
    height: 70px;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
}

.workout-card:hover .workout-icon-wrapper {
    transform: rotate(360deg);
    background: var(--gold);
}

.workout-icon {
    font-size: 30px;
    color: var(--gold);
    transition: var(--transition);
}

.workout-card:hover .workout-icon {
    color: var(--black);
}

.workout-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 700;
}

.workout-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.workout-features {
    display: grid;
    gap: 12px;
}

.workout-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 15px;
}

.workout-features i {
    color: var(--gold);
    font-size: 14px;
}

/* ================================
   SCHEDULE SECTION - WEEKLY GRID
   ================================ */
.schedule-section {
    background: var(--dark-gray);
    padding: var(--section-padding-small) 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.weekly-schedule {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.schedule-day {
    background: var(--black);
    padding: 25px 20px;
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.schedule-day:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.day-header {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 700;
}

.day-focus {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.day-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

.hours-box {
    background: var(--black);
    padding: 50px;
    border-radius: 0;
    text-align: center;
    border: 1px solid var(--light-gray);
}

.hours-box h3 {
    font-size: 28px;
    margin-bottom: 35px;
    color: var(--white);
    font-weight: 800;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.hours-grid div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-grid strong {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    font-weight: 700;
}

.hours-grid span {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hours-note-small {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

/* ================================
   PRICING SECTION
   ================================ */
.pricing-section {
    background: var(--black);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--dark-gray);
    border-radius: 0;
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--light-gray);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-gold-lg);
    border-color: var(--gold);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--gold);
    transform: scale(1.05);
    border-width: 2px;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 0;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--light-gray);
}

.pricing-header h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-family: var(--font-heading);
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 88px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: -0.04em;
    font-family: var(--font-heading);
    line-height: 1;
}

.price-period {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--font-heading);
    margin-top: 8px;
}

.pricing-features {
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 15px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--light-gray);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--gold);
    font-size: 16px;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
}

.pricing-note {
    text-align: center;
    background: var(--dark-gray);
    padding: 30px;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--light-gray);
}

.pricing-note p {
    margin: 0;
    color: var(--text-muted);
    font-size: 16px;
}

.pricing-note strong {
    color: var(--gold);
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: var(--dark-gray);
    padding: 50px;
    border-radius: 0;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
    border-right: 1px solid var(--light-gray);
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold-lg);
    border-left-color: var(--gold-light);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.stars {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 25px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact-section {
    background: var(--dark-gray);
    border-top: 1px solid var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.contact-info-col h3 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.location-tagline {
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 19px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover i {
    background: var(--gold);
    color: var(--black);
}

.contact-item strong {
    display: block;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-item p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.social-links-large {
    display: flex;
    gap: 15px;
}

.social-links-large a {
    width: 50px;
    height: 50px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
}

.social-links-large a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.contact-form-col h3 {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.contact-form-col > p {
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 18px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 24px;
    border: 1px solid var(--light-gray);
    border-radius: 0;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
    background: var(--black);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form button {
    width: 100%;
    border: none;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--near-black);
    color: var(--white);
    padding: 80px 0 40px;
    border-top: 1px solid var(--light-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 32px;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.footer-col h4 {
    font-size: 14px;
    color: var(--white);
    margin-bottom: 28px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--font-heading);
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.7;
}

.footer-address {
    margin-top: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul li {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid var(--light-gray);
    padding-top: 40px;
    text-align: center;
}

.footer-certifications {
    margin-bottom: 20px;
}

.footer-certifications small {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
}

/* ================================
   SCROLL REVEAL ANIMATIONS
   ================================ */
.workout-card,
.testimonial-card,
.pricing-card,
.step {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.workout-card.revealed,
.testimonial-card.revealed,
.pricing-card.revealed,
.step.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 968px) {
    :root {
        --section-padding: 100px;
        --section-padding-small: 80px;
    }

    h1 { font-size: 64px; }
    h2 { font-size: 48px; }
    h3 { font-size: 28px; }

    .hero-title {
        font-size: 80px;
    }

    .section-intro-center h2 {
        font-size: 48px;
    }

    .image-text-content h2 {
        font-size: 48px;
    }

    .price-amount {
        font-size: 72px;
    }

    .stat-number {
        font-size: 72px;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

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

    .steps-simple {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .image-text-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .image-text-row.reverse {
        direction: ltr;
    }

    .image-text-content {
        padding: 50px 40px;
    }

    .quick-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .weekly-schedule {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding: 80px;
        --section-padding-small: 60px;
    }

    body {
        font-size: 16px;
    }

    .container {
        padding: 0 20px;
    }

    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }

    .hero {
        margin-top: 100px;
        padding: 80px 0;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-intro-center h2 {
        font-size: 40px;
    }

    .image-text-content h2 {
        font-size: 40px;
    }

    .contact-info-col h3,
    .contact-form-col h3 {
        font-size: 36px;
    }

    .price-amount {
        font-size: 64px;
    }

    .stat-number {
        font-size: 56px;
    }

    .hero-details {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .badges-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .stat-number {
        font-size: 48px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-subtitle-large {
        font-size: 20px;
    }

    .steps-simple {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-text-content {
        padding: 40px 25px;
    }

    .quick-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .weekly-schedule {
        grid-template-columns: 1fr;
        gap: 12px;
    }

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

    .workout-card {
        padding: 30px;
    }

    .testimonial-card {
        padding: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .section-description {
        font-size: 16px;
    }
}
