/* Traditional Pilates Center - Dark & Yellow Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Public+Sans:wght@400;700&family=Public+Sans:wght@700&display=swap');

:root {
    /* Color Palette */
    --bg-color: rgba(21, 20, 2, 1);
    /* Dark almost black */
    --text-color: #FFFFFF;
    /* White */
    --accent-color: rgba(255, 245, 0, 1);
    /* Bright Yellow */
    --secondary-text: #E0E0E0;
    /* Slightly muted white */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Utilities */
.text-center {
    text-align: center;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    font-weight: 400;
    /* Canela is often lighter */
    color: var(--text-color);
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--secondary-text);
}

/* Header */
header {
    background-color: var(--bg-color);
    position: fixed;
    /* Makes it stay still while scrolling */
    width: 100vw;
    max-width: none;
    left: 0;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    /* Hidden at the top */
    transition: border-bottom 0.3s ease, background-color 0.3s ease;
}

.header-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    height: 120px;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Modifier class added by JS when scrolling */
header.scrolled {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Shows the line when scrolling */
}

.logo img {
    height: 40px;
    /* Adjust based on actual logo */
    display: block;
}

/* Fallback if no image */
.logo-text {
    color: var(--accent-color);
    font-size: 2rem;
    font-weight: bold;
}

header nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

header nav a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-heading);
    /* Matches the image serif style */
    font-size: 1rem;
    position: relative;
    padding-bottom: 6px;
    /* Room for the underline */
    transition: color 0.3s ease;
    white-space: nowrap;
}

header nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    border-radius: 4px;
    /* Rounded corners for the line */
}

header nav a:hover::after,
header nav a.active::after {
    width: 100%;
}

header nav a:hover,
header nav a.active {
    color: var(--accent-color);
}

/* Nav Pill Button */
.nav-btn {
    background-color: var(--accent-color);
    color: #000;
    padding: 0.8rem 2.2rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.nav-btn:hover,
.nav-btn.active {
    background-color: #e5d800;
    color: #000;
}

/* --- Mobile Menu Styles --- */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .header-container {
        height: 100px;
    }

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

    .nav-btn {
        display: none;
        /* Hide primary CTA on mobile header to save space */
    }

    header nav {
        display: none;
        /* Hide standard nav on mobile */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--bg-color);
        transform: none;
        /* Reset desktop absolute transform */
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
    }

    header.mobile-menu-open nav {
        display: flex;
    }

    header nav ul {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    header nav a {
        font-size: 1.5rem;
    }

    /* Hamburger animation to X */
    header.mobile-menu-open .mobile-menu-btn .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    header.mobile-menu-open .mobile-menu-btn .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    header.mobile-menu-open .mobile-menu-btn .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Maintain no-scroll on body when menu open */
body.no-scroll {
    overflow: hidden;
}

/* Main Content Layout */
main {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* Hero Section */
#hero {
    position: relative;
}

.new-hero-container {
    width: 90vw;
    max-width: 1800px;
    margin-left: calc(50% - 45vw);
    border-radius: clamp(20px, 4vw, 40px);
    background-image: url('assets/images/hero-image.png');
    background-size: cover;
    background-position: left;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: clamp(400px, 60vw, 550px);
    padding: clamp(3rem, 6vw, 6rem) 2rem;
}

/* Dark gradient overlay to ensure text readability against any image */
.new-hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(21, 20, 2, 0.2) 0%, rgba(21, 20, 2, 0.9) 100%);
    z-index: 1;
}

.new-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero-subtitle {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-title {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: clamp(42px, 8vw, 80px);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title-italic {
    color: var(--accent-color);
    font-style: italic;
    font-family: var(--font-heading);
}

.hero-description {
    color: #FFFFFF;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    margin: 0 auto 3rem;
    max-width: 650px;
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    width: 240px;
    height: 60px;
    border-radius: 50px;
    /* Pill shape */
    font-family: var(--font-heading);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    /* Ensure padding doesn't affect width if added later */
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    /* Black text on yellow */
    border: 2px solid var(--accent-color);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: #000;
}

/* Sections generic */
section {
    padding: var(--spacing-lg) 5%;
}

/* Footer */
/* Footer Redesign */
.site-footer {
    background: #151402;
    border-top: 1px solid #2A2A2A;
    padding: 80px 0 40px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1280px;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
    gap: 48px;
    width: 100%;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    grid-column: 1 / -1;
    /* Spans full width by default on smaller screens */
}

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    height: 15px;
    width: auto;
    object-fit: contain;
}

.footer-brand h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

.footer-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 14px);
    line-height: 20px;
    color: rgba(203, 213, 225, 0.7);
    max-width: 400px;
    margin: 0;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-nav-col h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav-list li a {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: rgba(203, 213, 225, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-list li a:hover {
    color: #FFF500;
}

.footer-social-row {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    border-color: #FFF500;
    background: rgba(255, 245, 0, 0.1);
}

.footer-social-link img {
    width: 18px;
    height: 18px;
    transition: filter 0.3s ease;
}

.footer-social-link:hover img {
    filter: brightness(0) saturate(100%) invert(91%) sepia(98%) saturate(1000%) hue-rotate(5deg) brightness(101%) contrast(105%);
    /* #FFF500 color approx */
}

.footer-bottom {
    width: 100%;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #2A2A2A;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: rgba(203, 213, 225, 0.5);
    margin: 0;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: rgba(203, 213, 225, 0.5);
}

.location-icon {
    width: 9.33px;
    height: 11.67px;
    background: rgba(203, 213, 225, 0.5);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'%3E%3C/path%3E%3Ccircle cx='12' cy='10' r='3'%3E%3C/circle%3E%3C/svg%3E") no-repeat center;
}

@media (min-width: 1024px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }
}

@media (max-width: 768px) {
    .footer-container {
        gap: 40px;
    }

    .footer-top {
        gap: 40px;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-logo-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 16px;
    }

    .footer-logo {
        content: url('assets/images/footer-logo.png');
        height: 250px;
    }

    .footer-brand h2 {
        display: none;
    }

    .footer-desc {
        text-align: center;
    }

    .footer-nav-col {
        align-items: center;
        text-align: center;
    }

    .footer-nav-list {
        align-items: center;
    }

    .footer-social-row {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


.btn-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    filter: brightness(0);
    transition: filter 0.3s ease;
    vertical-align: middle;
    /* Ensure alignment */
}

.btn-primary:hover .btn-icon {
    filter: brightness(0) saturate(100%) invert(88%) sepia(54%) saturate(2222%) hue-rotate(352deg) brightness(103%) contrast(105%);
}

/* Feature Cards Section */
#features {
    padding: clamp(3rem, 6vw, 3.9375rem) 5% clamp(4rem, 7vw, 5rem);
    background: #151402;
}

.features-grid {
    display: grid;
    grid-template-columns: minmax(0, 350px) 1px minmax(0, 350px) 1px minmax(0, 350px);
    justify-content: center;
    align-items: center;
    column-gap: clamp(1.5rem, 4vw, 3.375rem);
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.feature-card {
    width: 100%;
    /* min-height: 400px; */
    padding: 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    box-sizing: border-box;
    border-radius: 12px;
    border: .5px solid #151402;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 245, 0, 0.3);
}

.feature-divider {
    width: 1px;
    height: 242px;
    background: rgba(255, 255, 255, 0.16);
    justify-self: center;
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 46px;
    height: 46px;
    margin: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-card:hover .feature-icon img {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(255, 245, 0, 0.8));
}

.feature-card h3 {
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 500;
    line-height: 1.2226;
    margin: 0;
    color: var(--text-color);
}

.feature-card p {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.2226;
    color: #9CA3AF;
    margin: 0;
    max-width: 280px;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 0;
    }

    .feature-card {
        min-height: auto;
        max-width: 350px;
        padding: 2rem 0;
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }

    .feature-divider {
        width: min(350px, 100%);
        height: 1px;
        margin: 0 auto;
    }

    .feature-icon {
        justify-content: center;
    }

    .feature-card h3,
    .feature-card p {
        max-width: 100%;
        text-align: center;
    }
}

/* Hero Mobile Breakpoint */
@media (max-width: 600px) {
    #hero {
        padding-top: 7rem !important;
        padding-bottom: 3rem !important;
    }

    .new-hero-container {
        width: auto;
    }

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

    #hero h2,
    #true-pilates h2,
    #trainings h2,
    #request-info h2 {
        font-size: 42px;
        line-height: 44px;
    }

    .testimonials-title {
        font-size: 42px;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-subtitle {
        letter-spacing: 2px;
    }

    .request-info-logo-img {
        display: none;
    }
}

/* Request More Information Section */
.request-info-section {
    padding: clamp(4rem, 6vw, 6rem) 5% clamp(1.5rem, 3vw, 2rem);
    text-align: center;
}

.request-info-logo {
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.request-info-logo-img {
    height: clamp(180px, 30vw, 290px);
    margin-bottom: 1rem;
}

.request-info-tagline {
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: clamp(12px, 1.5vw, 14px);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.request-info-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 1rem;
}

.request-info-desc {
    color: var(--secondary-text);
    font-size: clamp(15px, 1.5vw, 18px);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
}

.request-info-btn-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}

.request-info-copyright {
    color: var(--secondary-text);
    font-size: 12px;
    margin-top: clamp(3rem, 5vw, 6rem);
}

/* Return to True Pilates Section */
#true-pilates {
    background: rgba(26, 26, 26, 0.1);
    border-top: 1px solid #2A2A2A;
    border-bottom: 1px solid #2A2A2A;
    padding: 35px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.true-pilates-container {
    width: 100%;
    max-width: 1280px;
    min-height: 536px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 614px);
    align-items: center;
    gap: 50px;
}

.true-pilates-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 14px;
}

.true-pilates-heading {
    width: 100%;
}

.true-pilates-title {
    margin: 0;
    font-size: clamp(2.75rem, 3vw + 1.75rem, 56px);
    line-height: 0.95;
    font-weight: 500;
    text-align: left;
}

.true-pilates-accent {
    color: var(--accent-color);
    font-style: italic;
}

.true-pilates-lead {
    max-width: 509px;
    margin: 0;
    font-size: clamp(1.25rem, 1vw + 0.9rem, 24px);
    line-height: 1.2226;
    color: #9CA3AF;
}

.true-pilates-lead strong {
    color: #FFFFFF;
    font-weight: 700;
}

.true-pilates-support {
    max-width: 430px;
    margin: 28px 0 0;
    font-size: 16px;
    line-height: 1.2226;
    color: #9CA3AF;
}

.true-pilates-media {
    width: 100%;
    max-width: 614px;
    height: 390px;
    border-radius: 16px;
    overflow: hidden;
}

.true-pilates-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .true-pilates-container {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
        min-height: auto;
    }

    .true-pilates-content {
        align-items: center;
        text-align: center;
    }

    .true-pilates-title {
        text-align: center;
    }

    .true-pilates-lead,
    .true-pilates-support {
        max-width: 680px;
        text-align: center;
    }

    .true-pilates-media {
        max-width: 100%;
        height: clamp(260px, 48vw, 390px);
    }
}

/* Our Trainings Section */
#trainings {
    background: #151402;
    padding: 55px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 54px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.trainings-shell {
    width: 100%;
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 54px;
}

.trainings-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.trainings-subtitle {
    margin: 0;
    font-family: 'Public Sans', sans-serif;
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: #FFF500;
}

.trainings-title {
    margin: 0;
    font-size: clamp(3rem, 4vw + 1.25rem, 56px);
    line-height: 0.9;
    font-weight: 500;
    text-align: center;
}

.trainings-title-accent {
    color: #FFF500;
    font-style: italic;
}

.trainings-description {
    max-width: 512px;
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #9CA3AF;
}

.trainings-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.training-preview-card {
    box-sizing: border-box;
    min-height: 536px;
    padding: 33px;
    background: #181812;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.training-preview-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 245, 0, 0.2);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
}

.training-preview-media {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 543 / 268.88;
}

.training-preview-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.training-preview-card:hover .training-preview-image {
    transform: scale(1.03);
}

.training-preview-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.training-preview-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: #F1F5F9;
}

.training-preview-desc {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 26px;
    color: #94A3B8;
}

.training-preview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 6px;
}

.training-preview-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 48px;
    background: rgba(255, 245, 0, 0.1);
    font-family: 'Public Sans', sans-serif;
    font-size: 12px;
    line-height: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFF500;
}

.trainings-cta-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.trainings-cta {
    width: 85%;
    max-width: 375px;
    min-height: 66px;
    padding: 0 32px;
    border: 0.5px solid #FFF500;
    border-radius: 79px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-decoration: none;
    color: #FFF500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.trainings-cta:hover {
    background: rgba(255, 245, 0, 0.08);
}

.trainings-cta span {
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1.2226;
    font-weight: 500;
}

.trainings-cta-arrow {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 980px) {
    .trainings-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .training-preview-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    #trainings {
        padding: 48px 4%;
        gap: 40px;
    }

    .trainings-shell {
        gap: 40px;
    }

    .training-preview-card {
        padding: 20px;
        gap: 24px;
    }

    .training-preview-tags {
        gap: 10px;
    }

    .trainings-cta {
        width: 85%;
    }
}

/* Footer Socials */
.social-circle {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-text);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.social-circle:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* About Page Hero Section */
.about-hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5%;
}

.about-hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    justify-content: center;
}

.about-hero-img {
    width: 120%;
    height: auto;
    display: block;
}

.about-hero-text {
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero-text h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
}

.about-subtitle {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 17px);
    letter-spacing: clamp(2px, 0.5vw, 5px);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 500;
}

.about-hero-text p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: var(--secondary-text);
    line-height: 1.5;
}

/* About Page Hero Section responsive */

@media (max-width: 1024px) {
    .about-hero-img {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .about-hero-img {
        width: 100%;
    }
}

/* Our Philosophy Section */
.about-philosophy-section {
    padding: clamp(4rem, 8vw, 8rem) 5%;
    background-color: var(--bg-color);
}

.philosophy-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.philosophy-text {
    flex: 1;
    max-width: 550px;
}

.philosophy-text h2 {
    font-size: clamp(30px, 4.5vw, 44px);
    margin-bottom: 5px;
    text-align: left;
    font-weight: normal;
}

.philosophy-subtitle {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 17px);
    letter-spacing: clamp(2px, 0.5vw, 5px);
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}

.philosophy-text p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 0;
}

.philosophy-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.philosophy-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive adjustments for Philosophy Section */
@media (max-width: 900px) {
    .philosophy-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .philosophy-text {
        max-width: 100%;
    }

    .philosophy-text h2 {
        text-align: center;
    }

    .philosophy-subtitle {
        text-align: center;
    }

    .philosophy-image {
        justify-content: center;
    }
}

/* Our Method Develops Section */
.about-method-section {
    padding: clamp(3rem, 6vw, 6rem) 5%;
    text-align: center;
    background-color: #1A1803;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.method-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 5vw, 4rem);
    font-weight: normal;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.method-card {
    position: relative;
    width: 100%;
    aspect-ratio: 250 / 320;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--accent-color);
    text-align: center;
    background-color: #222;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 245, 0, 0.2);
}

.method-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.method-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(21, 20, 2, 0.95) 0%, rgba(21, 20, 2, 0.7) 40%, rgba(21, 20, 2, 0) 100%);
    pointer-events: none;
}

.method-text {
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 100%;
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.3;
    padding: 0 1rem;
    box-sizing: border-box;
}

@media (max-width: 515px) {
    .method-text {
        font-size: 18px;
        font-weight: 600;
        line-height: 1.4;
    }
}

/* What Traditional Means Section */
.about-traditional-section {
    padding: clamp(4rem, 8vw, 8rem) 5%;
    background-color: var(--bg-color);
}

.traditional-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
}

.traditional-text-content {
    flex: 1.2;
    max-width: 800px;
}

.traditional-text-content h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 1rem;
    text-align: left;
    font-weight: normal;
    line-height: 1.3;
}

.traditional-subtitle {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 17px);
    letter-spacing: clamp(2px, 0.5vw, 5px);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
    line-height: 1;
}

.traditional-list {
    list-style: none;
    padding: 10px 0;
    margin: 0 0 2rem 0;
}

.traditional-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #b0b0b0;
    font-size: clamp(14px, 1.5vw, 16px);
}

.traditional-list li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.traditional-quote {
    color: #e0e0e0;
    font-style: italic;
    font-family: var(--font-heading);
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    padding-top: 1rem;
    position: relative;
}

.traditional-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 1px;
    background-color: var(--accent-color);
}

.traditional-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.traditional-image img {
    width: 90%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .traditional-container {
        flex-direction: column;
        text-align: center;
    }

    .traditional-text-content h2 {
        text-align: center;
    }

    .traditional-subtitle {
        text-align: center;
    }

    .traditional-list {
        text-align: left;
    }

    .traditional-quote {
        text-align: center;
    }

    .traditional-quote::before {
        left: 25%;
        width: 50%;
    }

    .traditional-image {
        justify-content: center;
    }

    .traditional-image img {
        width: 100%;
        max-width: 450px;
    }
}

/* Who We Work With Section */
.about-who-section {
    padding: clamp(4rem, 8vw, 8rem) 5%;
    text-align: center;
    background-color: #1A1803;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.who-container {
    max-width: 1280px;
    margin: 0 auto;
}

.who-header h2 {
    font-size: clamp(30px, 4.5vw, 44px);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.who-subtitle {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: clamp(12px, 1.5vw, 17px);
    letter-spacing: clamp(2px, 0.5vw, 5px);
    text-transform: uppercase;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    font-weight: 500;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: 1.5rem;
    margin-bottom: clamp(3rem, 5vw, 5rem);
}

.who-card {
    background-color: rgba(18, 17, 2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-sizing: border-box;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: left;
    transition: transform 0.3s ease;
}

.who-card:hover {
    transform: translateY(-5px);
}

.who-icon-wrapper {
    background-color: rgba(255, 245, 0, 0.05);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.who-icon {
    width: 22px;
    height: 22px;
    color: var(--accent-color);
}

.who-card h3 {
    font-size: clamp(18px, 2vw, 20px);
    margin-bottom: 1rem;
    font-weight: 600;
    color: #fff;
    font-family: var(--font-body);
}

.who-card p {
    font-size: clamp(14px, 1.5vw, 16px);
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.who-pill {
    display: inline-block;
    border: 1px solid rgba(255, 245, 0, 0.3);
    border-radius: 50px;
    padding: 1.2rem clamp(1.5rem, 3vw, 3rem);
    font-size: clamp(13px, 1.5vw, 15px);
    color: #e0e0e0;
    background-color: #0E0D02;
}

.who-pill span {
    color: var(--accent-color);
    font-style: italic;
    font-family: var(--font-heading);
    font-size: clamp(15px, 1.8vw, 18px);
}

@media (max-width: 600px) {
    .who-pill {
        padding: 1rem 1.5rem;
    }
}

/* Training Page Sections */
.training-hero-section {
    padding: 0.75rem 5% 0 5%;
    background-color: var(--bg-color);
}

.training-group-section {
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background-color: var(--bg-color);
}

.training-header {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1rem, 2.5vw, 2rem);
}

.training-header h1 {
    font-size: clamp(36px, 6vw, 60px);
    margin-bottom: 1rem;
}

.training-intro {
    max-width: 680px;
    margin: 0 auto;
    color: var(--secondary-text);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
}

.training-group-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(2rem, 5vw, 4rem);
}

.training-group-image {
    flex: 1;
    min-width: 0;
}

.training-group-image img {
    width: 100%;
    max-width: 563px;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    display: block;
}

.training-group-text {
    flex: 1;
    max-width: 480px;
}

.training-subtitle {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.training-group-text h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 15px;
    text-align: left;
    font-weight: normal;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1.2;
}

.training-desc {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.training-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.training-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.4rem 0;
    color: #e0e0e0;
    font-size: 14px;
    line-height: 1.4;
}

.training-list .check-icon {
    width: 16px;
    height: 16px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.training-private-section {
    padding-bottom: clamp(3rem, 6vw, 5rem);
    background-color: var(--bg-color);
}

.training-private-section .training-group-image img {
    max-width: 593px;
}

@media (max-width: 900px) {
    .training-group-container {
        flex-direction: column;
        gap: 2rem;
    }

    .training-group-container.training-reverse {
        flex-direction: column-reverse;
    }

    .training-group-text {
        max-width: 100%;
    }

    .training-group-image img {
        max-width: 100%;
    }

    .training-group-text h2 {
        text-align: center;
    }

    .training-subtitle {
        text-align: center;
    }

    .training-desc {
        text-align: center;
    }

    .training-list {
        display: inline-flex;
        flex-direction: column;
    }

    .training-group-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* Our Commitment Section */
.about-commitment-section {
    padding: 2rem 5%;
    text-align: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.commitment-container {
    max-width: 1280px;
    margin: clamp(30px, 5vw, 50px) auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.commitment-container h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: normal;
    color: #e0e0e0;
    margin-bottom: 5px;
    text-align: center;
}

.commitment-subtitle {
    color: var(--accent-color);
    font-family: var(--font-body);
    font-size: clamp(11px, 1.3vw, 13px);
    letter-spacing: clamp(2px, 0.4vw, 4px);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}

.commitment-desc {
    color: #b0b0b0;
    font-size: clamp(14px, 1.5vw, 15px);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 650px;
}

.commitment-quote {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: italic;
    margin-bottom: clamp(2rem, 4vw, 4rem);
    line-height: 1.5;
    text-align: center;
}

.commitment-btn {
    font-family: var(--font-heading);
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 50px;
    padding: 1.5rem 3rem;
    font-weight: 600;
}

/* ─── Membership Details Modal ─── */

.md-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.md-modal.visible {
    opacity: 1;
    visibility: visible;
}

.md-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.md-modal-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: #1A1A1A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.md-modal-content::-webkit-scrollbar {
    width: 6px;
}

.md-modal-content::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 10px;
}

.md-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
    transition: all 0.2s ease;
    backdrop-filter: blur(4px);
}

.md-close-btn:hover {
    background: #FFF500;
    color: #000;
}

.md-hero {
    position: relative;
    height: 300px;
    width: 100%;
    overflow: hidden;
}

.md-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.md-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #1A1A1A, transparent);
}

.md-hero-logo {
    position: absolute;
    bottom: 32px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFF500;
}

.md-hero-logo-img {
    height: 16px;
    width: auto;
    object-fit: contain;
}

.md-hero-logo span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1;
}

.md-body {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    padding: 40px;
}

.md-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.md-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-align: left;
    color: #FFF;
}

.md-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.md-large-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.md-info-note {
    background: #282828;
    border: 1px solid #FFF500;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 16px;
}

.md-note-text strong {
    display: block;
    margin-bottom: 4px;
    color: #FFF;
}

.md-note-text p {
    font-size: 14px;
    margin-bottom: 0%;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.md-sections {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    gap: 20px;
}

.md-info-row {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.md-info-row:last-child {
    border-bottom: none;
}

.md-info-content h3 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFF;
}

.md-info-content p {
    font-size: 14px;
    margin-bottom: 0%;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

/* Sidebar */
.md-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.md-overview-card {
    background: #282828;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.md-card-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
}

.md-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.md-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.md-stat:last-child {
    border-bottom: none;
}

.md-stat span:first-child {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.md-stat strong {
    font-size: 18px;
    font-weight: 700;
    color: #FFF;
}

.md-stat span:last-child:not(strong) {
    font-size: 14px;
    font-weight: 500;
    color: #FFF;
}

.md-stat .md-highlight {
    color: #FFF500;
}

.md-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.md-start-btn {
    width: 100%;
    background: #FFF500;
    color: #000;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.md-start-btn:hover {
    opacity: 0.9;
}

.md-contact-btn {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFF;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s ease;
}

.md-contact-btn:hover {
    background: rgba(255, 255, 255, 0.05);
}

.md-help-box {
    padding: 0 24px;
}

.md-help-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #FFF;
}

.md-help-box p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.md-help-link {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #FFF500;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.md-help-link svg {
    transition: transform 0.2s ease;
}

.md-help-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 850px) {
    .md-body {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .md-hero {
        height: 200px;
    }

    .md-hero-logo {
        left: 20px;
        bottom: 20px;
    }

    .md-body {
        padding: 24px;
    }
}

/* Why Choose Traditional Pilates Comparison Section */
/* Training Page Fluid Section Headings */
.comparison-section-title {
    font-size: clamp(32px, 5vw, 48px);
}

.training-quote-text {
    font-size: clamp(22px, 3vw, 32px);
}

.training-pricing-title {
    font-size: clamp(32px, 5vw, 48px);
}

.comparison-container {
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: stretch;
}

.comparison-card {
    border-radius: 20px;
    padding: 3rem;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.traditional-card {
    background: linear-gradient(180deg, rgba(255, 245, 0, 0.05) 0%, rgba(255, 245, 0, 0) 100%), #141302;
    border: 1px solid rgba(255, 245, 0, 0.1);
}

.modern-card {
    background: #141302;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.traditional-card .comparison-card-header {
    border-bottom-color: rgba(255, 245, 0, 0.2);
}

.comparison-title-icon {
    width: 28px;
    height: 28px;
}

.comparison-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #fff;
    font-family: var(--font-body);
}

.modern-card h3 {
    color: #999;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.comparison-list li:last-child {
    margin-bottom: 0;
}

.comparison-icon-wrap {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.traditional-icon {
    color: var(--accent-color);
}

.modern-icon {
    color: #555;
}

.comparison-text-wrap h4 {
    font-size: 18px;
    font-weight: 600;
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.modern-card .comparison-text-wrap h4 {
    color: #999;
}

.comparison-text-wrap p {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    margin: 0;
}

.traditional-card .comparison-text-wrap p {
    color: #aaa;
}

@media (max-width: 900px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .comparison-card {
        padding: clamp(1.5rem, 4vw, 3rem);
    }
}

/* Training Pricing Cards Section */
#training-pricing .pricing-cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(28px, 5vw, 48px);
    width: 544px;
    min-height: 488px;
    height: auto;
    border-radius: 16px;
    text-align: left;
    position: relative;
    background: #191914;
    flex: none;
    flex-grow: 1;
}

.group-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.private-card {
    border: 1px solid rgba(255, 245, 0, 0.2);
    isolation: isolate;
}

.most-targeted-badge {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    position: absolute;
    height: 23px;
    right: 1px;
    top: 1px;
    background: var(--accent-color);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0 15px 0 10px;
    text-transform: uppercase;
    z-index: 4;
}

.pricing-card-title {
    font-size: clamp(20px, 2.5vw, 24px);
    color: #fff;
    margin-bottom: 8px;
    font-weight: normal;
    font-family: var(--font-heading);
}

.pricing-card-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.pricing-price {
    margin-bottom: 2rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.pricing-price .price-amount {
    font-size: clamp(26px, 3vw, 32px);
    color: var(--accent-color);
    font-weight: 600;
}

.pricing-price .price-period {
    font-size: 14px;
    color: #888;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    width: 100%;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: clamp(14px, 1.5vw, 16px);
    margin-bottom: 1rem;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pricing-card .pricing-btn {
    display: block;
    box-sizing: border-box;
    align-self: stretch;
    width: 100% !important;
    max-width: none !important;
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: auto;
    color: #000;
}

@media (max-width: 900px) {
    #training-pricing .pricing-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 544px;
        min-height: unset;
    }
}

/* The Studio Hero Section */
.studio-hero-section {
    display: flex;
    justify-content: center;
    padding: clamp(6rem, 15vh, 9rem) 5% 4rem 5%;
}

.studio-hero-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: clamp(40px, 8vw, 70px) 0;
    isolation: isolate;

    width: 100%;
    max-width: 1280px;
    height: clamp(400px, 80vh, 700px);

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.26)),
        linear-gradient(180deg, rgba(0, 0, 0, 0) 10.68%, #0A0A0A 100%),
        url('assets/images/thestudio.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    box-sizing: border-box;
}

.studio-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 clamp(20px, 8vw, 93px);
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
}

.studio-hero-subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.5;
    letter-spacing: clamp(3px, 0.5vw, 5px);
    text-transform: uppercase;
    color: #E2EF00;
    margin-bottom: 20px;
}

.studio-hero-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(40px, 6vw, 60px);
    line-height: 1.1;
    color: #FFFFFF;
}

.studio-hero-title-italic {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(40px, 6vw, 60px);
    line-height: 1.1;
    color: var(--accent-color);
    display: block;
    margin-top: 10px;
}

/* Studio Features Section */
.studio-features-section {
    background: #151402;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(4rem, 8vw, 6rem) 5%;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.studio-features-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: clamp(2rem, 5vw, 53px);
    max-width: 1280px;
    width: 100%;
}

.studio-features-text {
    flex: 1;
    max-width: 539px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.4;
    color: #CBD5E1;
}

.studio-features-text strong {
    font-weight: 600;
    color: #FFFFFF;
}

.studio-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(270px, 100%), 1fr));
    gap: 25.91px;
    flex: 1;
    max-width: 570px;
    width: 100%;
}

.studio-feature-card {
    box-sizing: border-box;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid #2A2A2A;
    border-radius: 13px;
    padding: clamp(25px, 5vw, 41.5px) clamp(20px, 4vw, 35.6px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.studio-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sf-icon {
    width: 27px;
    height: 27px;
    margin-bottom: 23px;
    color: #FFF500;
}

.sf-icon svg {
    width: 100%;
    height: 100%;
}

.sf-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(16px, 1.8vw, 17.27px);
    line-height: 1.4;
    letter-spacing: 0.431818px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin-bottom: 8px;
    margin-top: 0;
}

.sf-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 15.11px);
    line-height: 1.4;
    color: #94A3B8;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .studio-features-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .studio-features-text {
        text-align: center;
        max-width: 800px;
    }

    .studio-feature-card {
        align-items: center;
        text-align: center;
    }

    .studio-features-grid {
        max-width: 100%;
        justify-content: center;
    }
}

@media (min-width: 1025px) {
    .studio-feature-card {
        height: 254px;
    }
}

/* Studio Apparatus Section */
.studio-apparatus-section {
    background: #171609;
    border-top: 1px solid #2A2A2A;
    border-bottom: 1px solid #2A2A2A;
    padding: clamp(64px, 8vw, 96px) 5%;
    display: flex;
    justify-content: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.apparatus-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(40px, 6vw, 64px);
    width: 100%;
    max-width: 1280px;
}

.apparatus-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16.5px;
    width: 100%;
}

.apparatus-subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.5;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #E2EF00;
    margin: 0;
    text-align: center;
}

.apparatus-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    color: #F1F5F9;
    margin: 0 0 7.5px 0;
    text-align: center;
}

.apparatus-divider {
    width: 96px;
    height: 1px;
    background: #E2EF00;
}

.apparatus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 32px;
    width: 100%;
}

.apparatus-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.apparatus-img-box {
    width: 100%;
    height: clamp(280px, 40vw, 440px);
    background-color: #1A1A1A;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.apparatus-card:hover .apparatus-img-box {
    filter: grayscale(0%);
}

.apparatus-card-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(20px, 2.5vw, 24px);
    line-height: 1.4;
    color: #FFFFFF;
    margin: 24px 0 0 0;
}

.apparatus-card-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.6;
    color: #94A3B8;
    margin: 7px 0 0 0;
}

@media (max-width: 640px) {
    .apparatus-img-box {
        height: 260px;
    }
}

/* Studio Gallery Section */
.studio-gallery-section {
    padding: clamp(40px, 6vw, 58px) 5%;
    display: flex;
    justify-content: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-top: clamp(40px, 6vw, 80px);
    margin-bottom: clamp(60px, 8vw, 100px);
    margin-left: -50vw;
    margin-right: -50vw;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
    width: 100%;
    max-width: 1280px;
}

.gallery-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.gallery-subtitle {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.5;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #E2EF00;
    margin: 0;
    text-align: center;
}

.gallery-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.1;
    color: #F1F5F9;
    margin: 0 0 7.5px 0;
    text-align: center;
}

.gallery-divider {
    width: 96px;
    height: 1px;
    background: #E2EF00;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    align-items: stretch;
}

.gallery-left-col {
    display: flex;
    min-height: 0;
}

.gallery-right-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 0;
}

.gallery-right-top-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
    width: 100%;
}

.gallery-img:hover {
    filter: grayscale(0%);
}

.gallery-img-large {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border-radius: 16px;
}

.gallery-img-small {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
}

.gallery-img-wide {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-left-col {
        grid-row: auto;
    }

    .gallery-img-large {
        aspect-ratio: 16 / 9;
        min-height: unset;
    }
}

@media (max-width: 640px) {
    .gallery-right-top-row {
        grid-template-columns: 1fr;
    }

    .gallery-img-small {
        aspect-ratio: 16 / 9;
    }
}

/* Studio Testimonials Section */
.studio-testimonials-section {
    background: #151402;
    display: flex;
    justify-content: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    width: 100%;
    max-width: 1280px;
}

.testimonials-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.testimonials-subtitle {
    font-family: 'Public Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #FFF500;
    margin: 0;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 56px;
    line-height: 1;
    color: #FFFFFF;
    margin: 0;
}

.testimonials-title em {
    font-style: italic;
    color: var(--accent-color);
}

@media (max-width: 600px) {
    .testimonials-title {
        font-size: 42px;
    }

    .testimonials-container {
        gap: 20px;
    }
}

.testimonials-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 32px;
}

.testimonials-scroll-container {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 24px;
    padding-top: 24px;
    /* Space for scrollbar if visible */
    /* Hide scrollbar for cleaner look */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
}

.testimonials-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.testimonial-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: clamp(24px, 4vw, 40px);
    gap: 24px;
    width: clamp(300px, 80vw, 450px);
    min-width: clamp(300px, 80vw, 450px);
    background: #181812;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    --mx: 50%;
    --my: 50%;
    transition:
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    will-change: transform;
}

/* Cursor-follow spotlight */
.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mx) var(--my),
            rgba(255, 240, 120, 0.08) 0%,
            rgba(255, 230, 80, 0.04) 35%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

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

/* Ensure content sits above the glow layer */
.testimonial-card>* {
    position: relative;
    z-index: 1;
}

/* Lift + border brightening on hover */
.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 240, 120, 0.18);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 240, 120, 0.06);
}


.testimonial-stars {
    display: flex;
    flex-direction: row;
    gap: 4px;
    color: #FFF500;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.45;
    color: #E2E8F0;
    margin: 0;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.author-name {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.author-title {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #64748B;
}

.testimonials-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
}

.carousel-nav-btn {
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    aspect-ratio: 1 / 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #FFFFFF;
    transition: all 0.3s ease;
    flex: none;
    outline: none;
}

.carousel-nav-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.carousel-nav-btn svg {
    display: block;
    width: 20px;
    height: 14px;
    stroke: #FFFFFF;
    stroke-width: 2.5px;
    overflow: visible;
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 320px;
        min-width: 320px;
        padding: 24px;
    }
}

/* ==========================================
   Studio Locations Section
   ========================================== */

.studio-loc-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(48px, 7vw, 76px) 5%;
    gap: clamp(32px, 5vw, 53px);
    background: #151402;
}

.loc-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 768px;
    text-align: center;
}

.loc-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #E2EF00;
    margin-bottom: 0;
}

.loc-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.4;
    color: #F1F5F9;
    margin-top: 0;
}

.loc-cards-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 41px;
    width: 100%;
    max-width: 1280px;
}

.loc-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 567px;
    background: #181812;
    border-radius: 24px;
    padding-bottom: 57px;
    gap: 33px;
    flex: 1;
}

/* Card Image Area */
.loc-card-image {
    position: relative;
    width: 100%;
    height: 256px;
    border-radius: 24px 24px 0 0;
    background-size: cover;
    background-position: center;
}

.loc-img-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0) 100%);
    border-radius: 24px 24px 0 0;
    z-index: 1;
}

.loc-badge {
    position: absolute;
    left: 24px;
    bottom: 13px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 3px 12px;
    border-radius: 9999px;
    z-index: 2;
}

.loc-badge-primary {
    background: #FFF500;
}

.loc-badge-primary .badge-text {
    font-family: 'Public Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #0A0A0A;
}

.loc-badge-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.loc-badge-secondary .badge-text {
    font-family: 'Public Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #F1F5F9;
}

/* Card Content Area */
.loc-card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    max-width: 492px;
    padding: 0 5%;
}

.loc-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 30px;
    line-height: 36px;
    color: #F1F5F9;
}

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 11px;
    width: 100%;
}

.loc-detail-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.loc-icon-container {
    display: flex;
    margin-top: 2px;
    color: #FFF500;
}

.loc-text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #CBD5E1;
}

/* Opening Hours */
.loc-hours-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.loc-hours-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #64748B;
    margin: 0;
}

.loc-hours-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.loc-time-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.loc-day {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    color: #64748B;
    display: inline-flex;
}

.loc-time {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    color: #64748B;
}

.loc-divider {
    font-family: 'Public Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    color: rgba(255, 255, 255, 0.2);
}

.loc-closed {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 23px;
    color: #64748B;
}

/* Book Button */
.loc-book-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 0;
    gap: 8px;
    width: 100%;
    background: #FFF500;
    border-radius: 58px;
    margin-top: 16px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.loc-book-btn:hover {
    transform: translateY(-2px);
    background: #e6df00;
}

.loc-book-btn span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #0A0A0A;
}

.loc-book-btn svg {
    color: #0A0A0A;
}

/* Banner Section */
.loc-banner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    width: 100%;
    max-width: 1176px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 21px;
    margin-top: 20px;
}

.loc-banner-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.loc-banner-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 245, 0, 0.1);
    border-radius: 50%;
}

.loc-banner-icon svg {
    color: #FFF500;
}

.loc-banner-text {
    display: flex;
    flex-direction: column;
}

.loc-banner-text h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: #F1F5F9;
    margin: 0;
}

.loc-banner-text p {
    font-family: 'Public Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #94A3B8;
    margin: 0;
}

.loc-banner-buttons {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.loc-btn-outline {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    font-family: 'Public Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #F1F5F9;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.loc-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .loc-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .loc-card {
        width: 100%;
        max-width: 567px;
    }

    .loc-banner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .loc-banner-info {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .loc-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .loc-btn-outline {
        width: 100%;
    }

    .loc-card-content {
        padding: 0 20px;
    }
}

/* ==========================================
   Private Studio Hours Section
   ========================================== */
.private-studio-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(48px, 7vw, 96px) 5%;
    background: #151402;
    width: 100%;
    box-sizing: border-box;
}

.ps-card {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1280px;
    min-height: 500px;
    background: rgba(28, 25, 23, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-sizing: border-box;
}

/* Left Panel */
.ps-left-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(32px, 5vw, 56px);
    width: clamp(280px, 35%, 391px);
    background: linear-gradient(135deg, #191914 0%, rgba(28, 25, 23, 0) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
}

.ps-header-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ps-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: #FFF500;
}

.ps-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    color: #F1F5F9;
    text-align: left;
    margin: 0;
}

.ps-title em {
    font-style: italic;
    color: #FFF500;
    display: block;
    text-align: left;
}

.ps-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 16px;
}

.ps-info-block {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.ps-info-icon {
    display: flex;
    justify-content: center;
    width: 20px;
    padding-top: 2px;
}

.ps-info-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.ps-info-title {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #F1F5F9;
    margin: 0;
}

.ps-info-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 23px;
    color: #94A3B8;
    margin: 0;
}

.ps-info-desc a {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 245, 0, 0.55);
    text-underline-offset: 0.18em;
}

.ps-divider {
    height: 0px;
    border: 0.5px solid #383728;
    width: 100%;
    margin: 8px 0;
}

.ps-address-2 {
    transform: rotate(0.02deg);
}

.ps-book-area {
    margin-top: 48px;
}

.ps-book-btn {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    gap: 12px;
    background: #FFF500;
    border-radius: 89px;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #23220F;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ps-book-btn:hover {
    transform: translateY(-2px);
    background: #e6df00;
}

/* Right Panel */
.ps-right-panel {
    display: flex;
    flex-direction: column;
    padding: clamp(32px, 5vw, 56px);
    flex: 1;
    background: rgba(28, 25, 23, 0.2);
    box-sizing: border-box;
}

.ps-hours-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
    color: #F1F5F9;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 0 40px 0;
}

.ps-hours-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 40px;
}

.ps-hour-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ps-hour-row.last {
    border-bottom: none;
}

.ps-day {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
    color: #94A3B8;
}

.ps-time {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 24px;
    color: #F1F5F9;
}

.ps-closed {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #FFF500;
}

/* Disclaimer Box */
.ps-disclaimer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background: rgba(255, 245, 0, 0.05);
    border: 1px solid rgba(255, 245, 0, 0.1);
    border-radius: 19px;
}

.ps-disclaimer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #94A3B8;
    margin: 0;
}

/* Responsive Overrides for Private Studio Section */
@media (max-width: 1024px) {
    .ps-card {
        flex-direction: column;
    }

    .ps-left-panel {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .ps-book-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {

    .ps-left-panel,
    .ps-right-panel {
        padding: 28px 20px;
    }

    /* Center all text in the left panel on mobile */
    .ps-subtitle,
    .ps-title,
    .ps-title em,
    .ps-info-title,
    .ps-info-desc {
        text-align: center;
    }

    .ps-header-info {
        align-items: center;
    }

    /* Stack icon on top of text, both centered */
    .ps-info-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ps-info-text {
        align-items: center;
    }

    .ps-book-area {
        display: flex;
        justify-content: center;
        margin-top: 32px;
    }

    .ps-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .ps-hour-row {
        padding: 12px 0;
    }

    .ps-hours-title {
        font-size: 20px;
    }
}

/* =====================================================
   MEMBERSHIPS PAGE STYLES
   ===================================================== */

/* Memberships Hero Section */
.memberships-hero-section {
    padding: 0;
    background-color: #151402;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.memberships-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 4rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.memberships-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw + 1rem, 60px);
    font-weight: 400;
    color: #fff;
    margin-bottom: 1.2rem;
    line-height: 1.1;
}

.memberships-hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 16px);
    color: var(--secondary-text);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* Memberships Filter & Search Section */
.memberships-filter-section {
    padding: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(26, 26, 26, 0.1);
    border-top: 1px solid #2A2A2A;
}

.memberships-filter-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 58px 2rem 40px 2rem;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Top Row */
.mf-top-row {
    display: flex;
    flex-wrap: wrap;
    /* Allows stacking on mobile */
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.mf-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.mf-heading {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color: #FFFFFF;
    margin: 0;
}

/* Search Input */
.mf-search-wrapper {
    position: relative;
    width: 100%;
    max-width: 448px;
    height: 55px;
}

.mf-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.mf-search-input {
    width: 100%;
    height: 100%;
    padding: 14px 16px 15px 48px;
    background: #191914;
    border: none;
    box-shadow: 0px 0px 0px 1px #2D2D2D;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    outline: none;
    transition: box-shadow 0.2s ease;
}

.mf-search-input::placeholder {
    color: #6B7280;
}

.mf-search-input:focus {
    box-shadow: 0px 0px 0px 1px #4A4A4A;
}

/* Sort Buttons (right side) */
.mf-right {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.mf-sort-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    height: 36px;
    background: #191914;
    box-shadow: 0px 0px 0px 1px #2D2D2D;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
    white-space: nowrap;
}

.mf-sort-btn span {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #6B7280;
}

.mf-sort-btn:hover {
    box-shadow: 0px 0px 0px 1px #4A4A4A;
}

.mf-chevron {
    flex-shrink: 0;
}

/* Filter Tags Row */
.mf-tags-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    padding-bottom: 16px;
    flex-wrap: wrap;
    /* Allows tags to stack safely on mobile */
}

.mf-tag-btn {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 8px 16px;
    gap: 8px;
    height: 38px;
    background: #191914;
    border: 1px solid #2D2D2D;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    color: #CBD5E1;
}

.mf-tag-btn span {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: inherit;
}

.mf-tag-btn:hover {
    border-color: #4A4A4A;
}

/* Active filter tag (Studio) */
.mf-tag-active {
    background: rgba(255, 245, 0, 0.1);
    border: 1px solid rgba(255, 245, 0, 0.2);
    color: #FFF500;
}

.mf-tag-active span {
    font-weight: 400;
}

.mf-tag-active:hover {
    border-color: rgba(255, 245, 0, 0.4);
}

.mf-tag-chevron {
    flex-shrink: 0;
}

/* Memberships Cards Grid Section */
.memberships-grid-section {
    padding: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: rgba(26, 26, 26, 0.1);
    border-bottom: 1px solid #2A2A2A;
}

.memberships-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem 75px 2rem;
}

.memberships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 34px;
}

/* Membership Card */
.mc-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    background: #191914;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Card Image */
.mc-image-wrapper {
    position: relative;
    width: 100%;
    height: 224px;
    overflow: hidden;
}

.mc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

/* Badge */
.mc-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 12px;
    background: #FFF500;
    border-radius: 9999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-transform: uppercase;
    color: #000000;
    z-index: 2;
}

/* Card Content */
.mc-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    flex: 1;
}

.mc-info {
    display: flex;
    flex-direction: column;
}

.mc-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 24px);
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.mc-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #94A3B8;
    margin-bottom: 16px;
}

/* Metadata Rows */
.mc-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.mc-meta-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.mc-meta-icon {
    flex-shrink: 0;
}

.mc-meta-row span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #CBD5E1;
}

/* Card Footer */
.mc-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #2D2D2D;
}

.mc-price-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 24px;
    height: 40px;
    background: #FFF500;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.mc-price-btn:hover {
    background: #e5dd00;
}

.mc-read-more {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mc-read-more:hover {
    color: #CBD5E1;
}

.mc-read-more svg {
    flex-shrink: 0;
}

/* ─── Tag Wrapper (for dropdown positioning) ─── */
.mf-tag-wrapper {
    position: relative;
    display: inline-flex;
}

/* ─── Sort Active State ─── */
.mf-sort-active {
    box-shadow: 0px 0px 0px 1px #FFF500 !important;
}

.mf-sort-active span {
    color: #FFF500 !important;
}

/* ─── Tag Open State ─── */
.mf-tag-open {
    border-color: #4A4A4A !important;
}

/* ─── Filter Dropdown Panel ─── */
.mf-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 200px;
    background: #191914;
    border: 1px solid #2D2D2D;
    border-radius: 12px;
    padding: 8px;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.mf-dropdown.open {
    display: block;
}

/* Radio Dropdown Items */
.mf-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 20px;
    color: #CBD5E1;
}

.mf-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.mf-dropdown-item input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid #4A4A4A;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.mf-dropdown-item input[type="radio"]:checked {
    border-color: #FFF500;
}

.mf-dropdown-item input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFF500;
}

/* ─── Dual-Range Slider Dropdown ─── */
.mf-dropdown-slider {
    min-width: 260px;
    padding: 16px;
}

.mf-range-labels {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 500;
}

.mf-range-label-sep {
    color: #6B7280;
}

.mf-range-track-wrapper {
    position: relative;
    height: 36px;
    display: flex;
    align-items: center;
}

.mf-range-track {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #2D2D2D;
    border-radius: 2px;
    pointer-events: none;
}

.mf-range-fill {
    position: absolute;
    height: 100%;
    background: #FFF500;
    border-radius: 2px;
}

.mf-range-input {
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: none;
    margin: 0;
    outline: none;
}

/* Webkit Thumb */
.mf-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #FFF500;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid #191914;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.mf-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Mozilla Thumb */
.mf-range-input::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #FFF500;
    cursor: pointer;
    pointer-events: auto;
    border: 2px solid #191914;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

.mf-range-input::-moz-range-track {
    background: transparent;
    border: none;
}

@media (max-width: 768px) {
    .mf-right {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }

    .mf-sort-btn {
        flex: 1 1 0;
        min-width: 0;
        justify-content: space-between;
    }

    .mf-sort-btn span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mf-tag-wrapper {
        display: flex;
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
    }

    .mf-tag-btn {
        width: 100%;
        justify-content: space-between;
        min-width: 0;
    }

    .mf-tag-btn span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #mf-tag-membershipType,
    #mf-tag-duration,
    #mf-tag-sessions,
    #mf-tag-priceRange {
        flex-basis: 100%;
        width: 100%;
    }

    #mf-tag-duration .mf-dropdown-slider,
    #mf-tag-sessions .mf-dropdown-slider,
    #mf-tag-priceRange .mf-dropdown-slider {
        left: 0;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .mf-search-wrapper {
        height: 52px;
    }

    .mf-range-labels {
        gap: 6px;
        margin-bottom: 14px;
        font-size: 13px;
        flex-wrap: wrap;
    }
}

/* ─── Pagination ─── */
.mc-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding-top: 48px;
}

.mc-page-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: #191914;
    border: 1px solid #2D2D2D;
    border-radius: 10px;
    color: #CBD5E1;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mc-page-btn:hover:not(.disabled):not(.active) {
    border-color: #4A4A4A;
    color: #FFFFFF;
}

.mc-page-btn.active {
    background: #FFF500;
    border-color: #FFF500;
    color: #000000;
    font-weight: 700;
}

.mc-page-btn.disabled {
    opacity: 0.3;
    cursor: default;
}

.mc-page-arrow {
    padding: 0;
    min-width: 40px;
}

/* ─── No Results ─── */
.mc-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
}

.mc-no-results p {
    font-family: var(--font-body);
    font-size: 16px;
    color: #94A3B8;
    margin-bottom: 20px;
}

.mc-clear-filters-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #FFF500;
    border-radius: 8px;
    color: #FFF500;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mc-clear-filters-btn:hover {
    background: rgba(255, 245, 0, 0.1);
}

/* =====================================================
   WHY CHOOSE / FLEXIBLE ACCESS SECTION
   ===================================================== */

.mwc-section {
    padding: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #151402;
}

.mwc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 2rem;
    display: flex;
    gap: 48px;
    align-items: center;
}

/* Left Column */
.mwc-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.mwc-heading {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 48px;
    line-height: 48px;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
    margin-bottom: 0;
}

.mwc-heading em {
    font-style: italic;
    color: #FFF500;
}

.mwc-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mwc-feature {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
}

.mwc-icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 245, 0, 0.2);
    border-radius: 12px;
}

.mwc-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mwc-feature-title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin: 0;
}

.mwc-feature-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #94A3B8;
    margin: 0;
}

/* Right Column: Image */
.mwc-right {
    position: relative;
    width: 100%;
    max-width: 616px;
    height: 536px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .mwc-container {
        flex-direction: column;
        text-align: center;
        padding: 50px 2rem;
    }

    .mwc-heading {
        text-align: center;
    }

    .mwc-feature {
        align-items: center;
        text-align: left;
        /* Keep feature text readable */
    }

    .mwc-right {
        height: auto;
        aspect-ratio: 4/3;
    }
}

.mwc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mwc-image-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    gap: 3px;
}

.mwc-image-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #FFF500;
    margin: 0;
}

.mwc-image-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 354px;
}

/* =========================================================================
   INSTRUCTOR PAGE STYLES
   ========================================================================= */

/* Hero Section */
.instructor-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: #151402;
    min-height: 280px;
    margin-top: 80px;
    width: 100%;
}

.instructor-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    gap: 16px;
    max-width: 1280px;
    width: 100%;
    margin: 48px auto 32px;
}

.instructor-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #FFF500;
    margin: 0;
}

.instructor-hero-title {
    font-family: 'Playfair Display', serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw + 1rem, 60px);
    line-height: 1.1;
    text-align: center;
    color: #FFFFFF;
    margin: 0;
}

.instructor-hero-title .hero-title-italic {
    font-style: italic;
    color: #FFF500;
}

.instructor-hero-desc {
    max-width: 700px;
    width: 100%;
}

.instructor-hero-desc p {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 16px);
    line-height: 1.6;
    text-align: center;
    color: #CBD5E1;
    margin: 0;
}

@media (max-width: 768px) {
    .instructor-hero-content {
        padding: 40px 20px;
    }
}

/* Featured Instructor Section */
.featured-instructor-section {
    background: #151402;
    padding: 50px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.featured-instructor-container {
    max-width: 1280px;
    width: 100%;
    height: 466px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    isolation: isolate;
}

.featured-instructor-bg {
    width: 100%;
    min-height: 466px;
    /* Match container height */
    position: relative;
    background-color: #0A0A0A;
    display: flex;
    flex-direction: column;
}

.featured-instructor-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('assets/images/stephen-photo.jpg');
    background-size: cover;
    background-position: top center;
    filter: grayscale(100%) contrast(1.1);
    opacity: 0.85;
    /* Increased for better mobile visibility */
    z-index: 0;
}

.featured-instructor-overlay {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%);
    z-index: 1;
}

.featured-instructor-content {
    max-width: 896px;
    width: 100%;
}

.featured-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #FFF500;
    display: block;
    margin-bottom: 8px;
    text-align: left;
}

.featured-name {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2.5rem, 5vw + 1rem, 60px);
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 12px;
    text-align: left;
}

.featured-role {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 2vw + 0.5rem, 20px);
    line-height: 1.4;
    color: #D1D5DB;
    margin-bottom: 24px;
    text-align: left;
}

.featured-quote-wrapper {
    border-left: 4px solid #FFF500;
    padding-left: 24px;
    max-width: 672px;
}

.featured-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(1.25rem, 3vw + 0.5rem, 30px);
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

@media (max-width: 1024px) {
    .featured-instructor-section {
        padding: 30px 5%;
    }

    .featured-instructor-container {
        height: auto;
    }

    .featured-instructor-bg {
        min-height: 450px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        text-align: center;
    }

    .featured-instructor-overlay {
        position: relative;
        /* Keep relative to preserve container height */
        padding: 60px 24px 40px;
        /* More padding on top to push text down and show image */
        background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%);
        width: 100%;
    }

    .featured-subtitle,
    .featured-name,
    .featured-role,
    .featured-quote {
        text-align: center;
    }

    .featured-quote-wrapper {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #FFF500;
        padding-top: 15px;
        margin: 0 auto;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .featured-instructor-overlay {
        padding: 40px 20px;
    }
}

/* Legacy of Precision Section */
.legacy-precision-section {
    background: #151402;
    padding: 70px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.legacy-precision-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 64px;
}

.legacy-heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 341px;
    flex-shrink: 0;
}

.legacy-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(1.75rem, 3vw + 0.5rem, 36px);
    line-height: 1.2;
    color: #FFFFFF;
    margin: 0;
    text-align: left;
}

.legacy-title .accent-italic {
    color: #FFF500;
    font-style: italic;
}

.legacy-divider {
    width: 80px;
    height: 4px;
    background: #FFF500;
}

.legacy-content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 48px;
    width: 683px;
}

.legacy-content-wrapper p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29px;
    color: #CBD5E1;
    margin: 0;
    flex: 1;
}

@media (max-width: 1024px) {
    .legacy-precision-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        align-items: center;
    }

    .legacy-content-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 24px;
        text-align: center;
        align-items: center;
    }

    .legacy-content-wrapper p {
        text-align: center;
    }

    .legacy-heading-wrapper {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .legacy-title {
        text-align: center;
    }

    .legacy-divider {
        margin: 0 auto;
    }
}

/* Teaching Philosophy Section */
.philosophy-section {
    background: rgba(26, 26, 26, 0.1);
    border-top: 1px solid #2A2A2A;
    border-bottom: 1px solid #2A2A2A;
    padding: 100px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.philosophy-section .philosophy-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    width: 100%;
    max-width: 896px;
}

.philosophy-section .philosophy-subtitle {
    font-family: 'Public Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 4.8px;
    text-transform: uppercase;
    color: #FFF500;
    margin: 0;
}

.philosophy-section .philosophy-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(2rem, 5vw + 1rem, 60px);
    line-height: 1.1;
    text-align: center;
    color: #FFF500;
    margin: 0;
}

.philosophy-section .philosophy-statement {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 3vw + 0.5rem, 36px);
    line-height: 1.2;
    text-align: center;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0;
    max-width: 773px;
}

.philosophy-section .philosophy-quote {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 18px);
    line-height: 1.6;
    text-align: center;
    color: #FFF500;
    opacity: 0.8;
    margin: 0;
    max-width: 720px;
}

@media (max-width: 768px) {
    .philosophy-section {
        padding: 60px 5%;
    }
}

/* Why Clients Connect Section */
.connect-section {
    background: #151402;
    padding: 96px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.connect-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 39px;
}

.connect-header {
    width: 100%;
    text-align: center;
}

.connect-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw + 1rem, 48px);
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0;
}

.connect-title .accent-italic {
    color: #FFF500;
    font-style: italic;
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 32px;
    width: 100%;
}

.connect-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 24px;
    gap: 16px;
    background: #151402;
    border-radius: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.connect-icon {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 8px;
}

.connect-icon svg {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.connect-card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 0;
}

.connect-card-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #9CA3AF;
    margin: 0;
}

.connect-divider {
    display: none;
    /* Removed for dynamic grid */
}

/* Hover Animations */
.connect-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 245, 0, 0.3);
}

.connect-card:hover .connect-icon svg {
    transform: scale(1.15) translateY(-2px);
    filter: drop-shadow(0 0 10px rgba(255, 245, 0, 0.8));
}

@media (max-width: 768px) {
    .connect-section {
        padding: 60px 4%;
    }

    .connect-card {
        padding: 24px 20px;
        align-items: center;
        text-align: center;
    }

    .connect-icon {
        justify-content: center;
    }
}

/* What to Expect Section */
.expect-section {
    background: rgba(26, 26, 26, 0.1);
    border-top: 1px solid #2A2A2A;
    border-bottom: 1px solid #2A2A2A;
    padding: 88px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.expect-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.expect-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    max-width: 491px;
}

.expect-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw + 1rem, 48px);
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 8px;
    text-align: left;
}

.expect-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.expect-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.expect-number {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 36px;
    line-height: 40px;
    color: #FFF500;
    min-width: 40px;
}

.expect-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.expect-item-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0.6px;
    color: #FFFFFF;
    margin: 0;
}

.expect-item-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #9CA3AF;
    margin: 0;
    max-width: 448px;
}

.expect-image-wrapper {
    width: 100%;
    max-width: 720px;
    height: 514px;
    flex-shrink: 0;
}

.expect-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('assets/images/stephen-photo2.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 26px;
}

@media (max-width: 1024px) {
    .expect-section {
        padding: 60px 4%;
        text-align: center;
    }

    .expect-container {
        flex-direction: column;
        gap: 60px;
        align-items: center;
    }

    .expect-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .expect-title {
        text-align: center;
    }

    .expect-list {
        align-items: center;
    }

    .expect-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .expect-text {
        align-items: center;
    }

    .expect-item-desc {
        text-align: center;
    }

    .expect-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .expect-title {
        font-size: 36px;
        line-height: 44px;
    }

    .expect-image-wrapper {
        height: 300px;
    }

    .expect-number {
        font-size: 28px;
        min-width: unset;
    }
}

/* Instructor CTA Section */
.instructor-cta-section {
    background: #151402;
    padding: 100px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.instructor-cta-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    text-align: center;
}

.instructor-cta-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #FFF500;
}

.instructor-cta-title {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: clamp(2rem, 5vw + 1rem, 60px);
    line-height: 1.1;
    color: #FFFFFF;
    margin: 0;
}

.instructor-cta-title .accent-italic {
    font-style: italic;
    color: #FFF500;
}

.instructor-cta-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    color: #9CA3AF;
    max-width: 630px;
    margin: 0;
}



@media (max-width: 768px) {
    .instructor-cta-section {
        padding: 60px 5%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .instructor-cta-content {
        align-items: center;
    }

    .instructor-cta-title {
        text-align: center;
    }

    .instructor-cta-desc {
        text-align: center;
    }

    .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 16px;
        align-items: center;
    }

    .btn {
        width: 100% !important;
        max-width: 300px;
    }
}

/* ==========================================================================
   FAQ PAGE STYLES
   ========================================================================== */
.faq-page-main {
    padding-top: 120px;
    /* Account for fixed header */
    max-width: 100%;
    /* Hero and NAV can be full width or centered */
}

@media (max-width: 1024px) {
    .faq-page-main {
        padding-top: 80px;
    }

    .faq-category-nav {
        top: 80px;
        /* Synchronized with reduced header height at 1024px */
        padding: 1.5rem 1rem;
        z-index: 800;
    }
}

/* FAQ Hero Section */
.faq-hero {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--bg-color);
}

.faq-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.faq-hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 3.6px;
    text-transform: uppercase;
    color: #FFF500;
    margin-bottom: 15px;
}

.faq-title {
    font-size: clamp(2.5rem, 5vw + 1rem, 60px);
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.faq-subtitle {
    font-size: clamp(0.875rem, 1vw + 0.5rem, 16px);
    color: var(--secondary-text);
    font-weight: 300;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.faq-search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.faq-search-input {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 3rem 1rem 0;
    font-size: 1.25rem;
    color: var(--text-color);
    font-family: var(--font-body);
    font-weight: 300;
    transition: border-color 0.3s ease;
    outline: none;
}

.faq-search-input:focus {
    border-color: var(--accent-color);
}

.faq-search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.faq-search-wrapper .search-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    pointer-events: none;
}

/* Sticky Category Nav */
.faq-category-nav {
    position: sticky;
    top: 120px;
    /* Below the main header */
    left: 0;
    transform: none;
    width: 100%;
    z-index: 800;
    /* Stays above content but below header menu if needed */
    background-color: rgba(21, 20, 2, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 1rem;
}

.faq-category-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.faq-category-nav .filter-btn {
    background: none;
    border: none;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.faq-category-nav .filter-btn:hover {
    color: var(--accent-color);
}

.faq-category-nav .filter-btn.active {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

/* FAQ Grid Section */
.faq-grid-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 1.5rem;
    align-items: start;
}

.faq-card {
    background-color: rgba(24, 24, 27, 0.4);
    /* Tailwind zinc-900/40 approx */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    cursor: pointer;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    min-height: 200px;
    border-radius: 12px;
}

.faq-card:hover {
    border-color: rgba(255, 245, 0, 0.5);
}

.faq-card.expanded {
    background-color: #212013;
    border-color: var(--accent-color);
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.faq-category {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: block;
    opacity: 0.6;
    font-family: var(--font-body);
    font-weight: 600;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw + 1rem, 1.875rem);
    color: var(--text-color);
    line-height: 1.3;
    margin: 0;
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    pointer-events: none;
    overflow: hidden;
}

.faq-card.expanded .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding-top: 1.5rem;
    pointer-events: auto;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.hidden-card {
    display: none !important;
}

/* FAQ Closing CTA */
.faq-cta {
    background-color: #151402;
    /* zinc-950 */
    padding: 8rem 5%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-cta-title {
    font-size: clamp(2rem, 4vw + 1rem, 48px);
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-weight: 400;
    color: #FFFFFF;
}

.faq-cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .faq-category-nav {
        top: 80px;
        /* Reduced to match mobile header height */
        padding: 1rem;
        z-index: 800;
    }

    .faq-category-container {
        gap: 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 5px;
        /* Space for scrollbar if it appears */
    }

    .faq-category-container::-webkit-scrollbar {
        display: none;
        /* Hide scrollbar for a cleaner mobile look */
    }

    .faq-category-nav .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .faq-cta-container .btn-group {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .faq-cta-container .btn {
        width: 100% !important;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .studio-hero-container {
        align-items: center;
    }

    .studio-hero-content {
        align-items: center;
        text-align: center;
    }

    .studio-hero-subtitle,
    .studio-hero-title,
    .studio-hero-title-italic {
        text-align: center;
    }

    .hero-subtitle,
    .request-info-tagline,
    .trainings-subtitle,
    .about-subtitle,
    .philosophy-subtitle,
    .traditional-subtitle,
    .who-subtitle,
    .training-subtitle,
    .commitment-subtitle,
    .pricing-card-subtitle,
    .studio-hero-subtitle,
    .apparatus-subtitle,
    .gallery-subtitle,
    .testimonials-subtitle,
    .loc-subtitle,
    .ps-subtitle,
    .memberships-hero-subtitle,
    .instructor-hero-subtitle,
    .featured-subtitle,
    .philosophy-section .philosophy-subtitle,
    .instructor-cta-subtitle,
    .faq-hero-subtitle,
    .faq-subtitle,
    .faq-cta-subtitle {
        font-size: 12px;
    }

    .about-hero-text h1,
    .philosophy-text h2,
    .traditional-text-content h2,
    .who-header h2,
    .commitment-container h2,
    .training-header h1,
    .training-group-text h2,
    .training-pricing-title,
    .studio-hero-title,
    .studio-hero-title-italic,
    .loc-title,
    .apparatus-title,
    .gallery-title,
    .ps-title,
    .instructor-hero-title,
    .connect-title,
    .expect-title,
    .instructor-cta-title,
    .mwc-heading {
        font-size: 42px;
    }

    .method-title {
        font-size: 40px;
        line-height: 40px;
    }

    .comparison-section-title {
        font-size: 42px;
        line-height: 50px;
    }

    .training-quote-text {
        font-size: 32px;
    }

    .pricing-card-title {
        font-size: 26px;
    }
}

/* 404 Error Page */
.error-page {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 245, 0, 0.1), rgba(255, 245, 0, 0) 18rem),
        radial-gradient(circle at 50% 48%, rgba(248, 248, 245, 0.08), rgba(248, 248, 245, 0) 13rem),
        radial-gradient(71.52% 69.93% at 50% 50%, rgba(25, 25, 20, 0) 0%, #151402 70%),
        linear-gradient(180deg, #141402 0%, #0b0a01 100%);
    position: relative;
    overflow: hidden;
}

.error-page::before,
.error-page::after {
    content: '';
    position: fixed;
    inset: auto;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(110px);
    opacity: 0.2;
}

.error-page::before {
    top: -10rem;
    left: -8rem;
    background: rgba(255, 245, 0, 0.16);
}

.error-page::after {
    right: -10rem;
    bottom: -12rem;
    background: rgba(255, 245, 0, 0.12);
}

.error-main {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: clamp(2rem, 5vw, 4rem) 1.5rem;
    isolation: isolate;
}

.error-shell {
    width: min(100%, 78rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1.25rem, 2vw, 1.875rem);
    text-align: center;
}

.error-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 1.75rem;
    padding: 0.25rem 1rem;
    border: 1px solid rgba(255, 245, 0, 0.3);
    border-radius: 9999px;
    background: rgba(255, 245, 0, 0.1);
    color: var(--accent-color);
    font-family: 'Public Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

.error-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100%, 74rem);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(3.75rem, 7.4vw, 6rem);
    line-height: 0.9;
    letter-spacing: clamp(-0.12rem, -0.2vw, -0.1875rem);
    text-wrap: balance;
}

.error-title-primary,
.error-title-accent {
    display: block;
}

.error-title-primary {
    color: #F8F8F5;
}

.error-title-accent {
    color: var(--accent-color);
    font-style: italic;
    white-space: nowrap;
    text-shadow: 0 0 32px rgba(255, 245, 0, 0.12);
}

.error-copy {
    width: min(100%, 48rem);
}

.error-copy p {
    margin: 0;
    color: #94A3B8;
    opacity: 0.9;
    font-size: clamp(1rem, 0.9rem + 0.6vw, 1.25rem);
    line-height: 1.4;
    text-wrap: balance;
}

.error-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 0.25rem;
}

.error-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: clamp(14rem, 38vw, 15rem);
    min-height: 3.625rem;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    border: 1px solid transparent;
    background: var(--accent-color);
    color: #121212;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.25;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(255, 245, 0, 0.15);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.error-cta:hover,
.error-cta:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 0 36px rgba(255, 245, 0, 0.28);
    background-color: #fff16a;
}

.error-cta:focus-visible {
    outline: 2px solid rgba(255, 245, 0, 0.35);
    outline-offset: 4px;
}

@media (max-width: 767px) {
    .error-main {
        padding-inline: 1.25rem;
    }

    .error-shell {
        gap: 1.25rem;
    }

    .error-title {
        font-size: clamp(3rem, 16vw, 4.5rem);
        line-height: 0.98;
        width: 100%;
    }

    .error-title-accent {
        white-space: normal;
    }

    .error-copy {
        width: min(100%, 34rem);
    }

    .error-actions,
    .error-cta {
        width: 100%;
    }
}

/* SEO/GEO Content Enhancements */
.hero-description a,
.training-intro a,
.memberships-hero-subtitle a,
.faq-subtitle a,
.studio-features-text a {
    color: inherit;
    text-decoration: none;
}

.loc-text[href] {
    color: inherit;
    text-decoration: underline;
    text-decoration-color: rgba(255, 245, 0, 0.55);
    text-underline-offset: 0.18em;
}