/* ========================================
   O'WELLNESS — BRANCH PAGE STYLES
   Extracted from Sky index.html, generic for all branches
   ======================================== */

/* ─── Preloader ─── */
.sky-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0a0705;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.sky-preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.sky-preloader-logo {
    width: clamp(140px, 22vw, 200px);
    opacity: 0;
    animation: logoReveal 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes logoReveal {
    0% {
        opacity: 0;
        filter: brightness(0);
        transform: scale(0.94);
    }

    20% {
        opacity: 1;
        filter: brightness(1) sepia(1) saturate(3) hue-rotate(-10deg) brightness(0.85);
        transform: scale(0.97);
    }

    60% {
        opacity: 1;
        filter: brightness(1) sepia(1) saturate(3) hue-rotate(-10deg) brightness(0.85);
        transform: scale(1);
    }

    100% {
        opacity: 1;
        filter: brightness(1) sepia(0) saturate(1);
        transform: scale(1);
    }
}

/* ─── Branch Header ─── */
.sky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(24px, 4vw, 60px);
    height: 80px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.sky-header.scrolled {
    background: rgba(10, 7, 5, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    height: 68px;
    border-bottom-color: rgba(201, 169, 110, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.sky-header-logo img {
    height: 44px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.sky-header.scrolled .sky-header-logo img {
    height: 36px;
}

.sky-header-nav {
    display: flex;
    align-items: center;
    gap: 2px;
}

.sky-header-nav a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.sky-header-nav a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--brand-gold);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

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

.sky-header-nav a:hover::after {
    width: 20px;
}

.sky-header-nav a.active {
    color: var(--brand-gold);
}

.sky-header-nav a.active::after {
    width: 20px;
}

.sky-header-nav a.sky-nav-cta {
    background: linear-gradient(135deg, var(--brand-gold), #d4b876);
    color: #0a0705;
    font-weight: 800;
    padding: 10px 28px;
    border-radius: 50px;
    margin-left: 14px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 16px rgba(201, 169, 110, 0.25);
}

.sky-header-nav a.sky-nav-cta::after {
    display: none;
}

.sky-header-nav a.sky-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.4);
    color: #0a0705;
}

/* Header Language Switcher (desktop) */
.sky-header-lang {
    position: relative;
    margin-left: 12px;
}

.sky-header-lang .sky-lang-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
}

.sky-header-lang .sky-lang-trigger::after {
    display: none;
}

.sky-header-lang .sky-lang-trigger svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.sky-header-lang:hover .sky-lang-trigger {
    border-color: var(--brand-gold);
    background: rgba(201, 169, 110, 0.05);
    color: var(--brand-gold);
}

.sky-header-lang:hover .sky-lang-trigger svg {
    transform: rotate(180deg);
    opacity: 1;
}

.sky-lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: rgba(15, 12, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 8px;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.sky-header-lang:hover .sky-lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sky-lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.sky-lang-dropdown a::after {
    display: none;
}

.sky-lang-dropdown a:hover {
    color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.05);
}

.sky-lang-dropdown a.active {
    color: var(--brand-gold);
    font-weight: 600;
}

/* Mobile Menu Button */
.sky-mobile-btn {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}

.sky-mobile-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .sky-header {
        height: 68px;
        padding: 0 20px;
    }

    .sky-header-logo img {
        height: 36px;
    }

    .sky-header.scrolled {
        height: 60px;
    }

    .sky-header.scrolled .sky-header-logo img {
        height: 30px;
    }

    .sky-header-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: rgba(10, 7, 5, 0.96);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        padding: 20px 24px;
        gap: 4px;
        border-bottom: 1px solid rgba(201, 169, 110, 0.1);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .sky-header-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .sky-header-nav a {
        width: 100%;
        padding: 14px 16px;
        font-size: 12px;
        border-radius: 10px;
    }

    .sky-header-nav a::after {
        display: none;
    }

    .sky-header-nav a:hover {
        background: rgba(255, 255, 255, 0.04);
    }

    .sky-header-nav a.sky-nav-cta {
        text-align: center;
        margin-left: 0;
        margin-top: 10px;
        padding: 14px 24px;
    }

    .sky-header-lang {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
    }

    .sky-header-lang .sky-lang-trigger {
        width: fit-content;
        padding: 8px 16px;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .sky-lang-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 8px 0 0 16px;
        display: none;
    }

    .sky-header-lang.active .sky-lang-dropdown {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
    }

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

/* ─── Mobile Bottom Nav ─── */
.sky-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.sky-bottom-nav-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(10, 7, 5, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sky-bottom-nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 8px;
    height: 40px;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.sky-bottom-nav-item svg {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.sky-bottom-nav-item.btn-contact svg {
    fill: var(--brand-gold);
}

.sky-bottom-nav-item.btn-form {
    border-color: rgba(201, 169, 110, 0.2);
    color: var(--brand-gold);
}

.sky-bottom-nav-item.btn-form svg {
    fill: var(--brand-gold);
}

.sky-bottom-nav-item.btn-lang svg {
    fill: rgba(255, 255, 255, 0.5);
}

/* Expand panel */
.sky-bottom-expand {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    display: flex;
    gap: 8px;
    padding: 10px 10px 6px;
    background: rgba(10, 7, 5, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
}

.sky-bottom-expand.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.sky-bottom-expand a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    padding: 10px 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.2s ease;
}

.sky-bottom-expand a svg {
    width: 18px;
    height: 18px;
}

.sky-bottom-expand a span {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.sky-bottom-expand .exp-call {
    color: rgba(255, 255, 255, 0.6);
}

.sky-bottom-expand .exp-call svg {
    fill: var(--white);
}

.sky-bottom-expand .exp-wp {
    color: #25D366;
}

.sky-bottom-expand .exp-wp svg {
    fill: #25D366;
}

.sky-bottom-expand .exp-dir {
    color: var(--brand-gold);
}

.sky-bottom-expand .exp-dir svg {
    fill: none;
    stroke: var(--brand-gold);
    stroke-width: 2;
}

.sky-bottom-expand .exp-lang-item {
    color: rgba(255, 255, 255, 0.6);
    font-size: 11px;
}

.sky-bottom-expand .exp-lang-item.active {
    color: var(--brand-gold);
    border-color: rgba(201, 169, 110, 0.2);
}

@media (max-width: 768px) {
    .sky-bottom-nav {
        display: block;
    }

    body {
        padding-bottom: 52px;
    }
}

/* ─── Hero Section ─── */
.sky-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.sky-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(0.9);
    background-color: #0a0705;
}

.sky-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 7, 5, 0.2) 0%,
            rgba(10, 7, 5, 0.1) 30%,
            rgba(10, 7, 5, 0.6) 70%,
            rgba(10, 7, 5, 0.95) 100%);
}

.sky-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 clamp(20px, 5vw, 80px);
    padding-top: 80px;
    z-index: 5;
}

.sky-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-gold-light);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.sky-hero-badge svg {
    width: 14px;
    height: 14px;
    fill: var(--brand-gold);
}

.sky-hero-title {
    font-family: 'Copperplate', serif;
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.sky-hero-title span {
    color: var(--brand-gold);
}

.sky-hero-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.sky-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* Hero Button Overrides */
.sky-hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--brand-gold), #d4b876);
    color: #0a0705;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 6px 24px rgba(201, 169, 110, 0.3);
    border: none;
    font-size: 13px;
}

.sky-hero-actions .btn-primary:hover {
    box-shadow: 0 10px 36px rgba(201, 169, 110, 0.45);
    transform: translateY(-3px);
    background: linear-gradient(135deg, #d4b876, var(--brand-gold));
}

.sky-hero-actions .btn-primary svg {
    fill: #0a0705;
}

.sky-hero-actions .btn-outline {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 16px 36px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 13px;
}

.sky-hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sky-hero-actions .btn-outline svg {
    fill: var(--white);
}

/* ─── About Section Cards ─── */
.about-section {
    padding: clamp(60px, 8vw, 120px) 0;
    background: #0a0705;
}

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

.about-card {
    position: relative;
    height: clamp(500px, 60vh, 700px);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0, 0, 0.2, 1);
    z-index: 1;
}

.about-card:hover .about-card-bg {
    transform: scale(1.1);
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 7, 5, 0.95) 0%, rgba(10, 7, 5, 0.4) 50%, transparent 100%);
    z-index: 2;
}

.about-card-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-card-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
}

.about-card-title span {
    color: var(--brand-gold);
}

.about-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

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

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

    .about-card {
        height: 500px;
        padding: 30px;
    }
}

/* ─── Studio Showcase (Swiper) ─── */
.studio-showcase {
    position: relative;
    padding: 100px 0;
    background: #0a0705;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 12px;
}

.studio-swiper-wrapper {
    padding: 0;
}

.studio-swiper {
    width: 100%;
    height: clamp(500px, 70vh, 800px);
    border-radius: 20px;
}

.studio-slide {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.studio-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 7, 5, 0.8) 0%, rgba(10, 7, 5, 0.4) 50%, rgba(10, 7, 5, 0.2) 100%);
    z-index: 1;
}

.studio-content-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 550px;
    padding: 60px;
    margin-left: 80px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.swiper-slide-active .studio-content-box {
    transform: translateX(0);
    opacity: 1;
}

.studio-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.studio-title span {
    color: var(--brand-gold);
}

.studio-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Studio Bottom Bar — Thumbnails + Nav */
.studio-bottom-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 30px clamp(20px, 4vw, 80px) 0;
    max-width: 1400px;
    margin: 0 auto;
}

.studio-thumb-wrapper {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.studio-thumbs {
    padding: 10px 0;
    cursor: pointer;
}

.studio-thumb-slide {
    width: 80px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.studio-thumb-img {
    width: 100%;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.studio-thumb-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.studio-thumb-name {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.studio-thumb-slide.swiper-slide-thumb-active {
    opacity: 1;
    transform: translateY(-4px);
}

.studio-thumb-slide.swiper-slide-thumb-active .studio-thumb-img {
    border-color: var(--brand-gold);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.studio-thumb-slide.swiper-slide-thumb-active .studio-thumb-name {
    color: var(--brand-gold);
}

.studio-nav {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.studio-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.studio-nav-btn:hover {
    background: var(--brand-gold);
    color: var(--black);
    border-color: var(--brand-gold);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .studio-content-box {
        margin: 0 40px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .studio-swiper {
        height: 600px;
        border-radius: 0;
    }

    .studio-content-box {
        margin: 0 20px;
        padding: 30px;
        max-width: none;
        background: linear-gradient(to top, rgba(10, 7, 5, 0.9), transparent);
        border: none;
        backdrop-filter: none;
        justify-content: flex-end;
        height: 100%;
    }

    .studio-slide::before {
        background: linear-gradient(to top, rgba(10, 7, 5, 0.8) 0%, transparent 100%);
    }

    .studio-bottom-bar {
        gap: 16px;
        padding: 16px 16px 0;
        align-items: flex-start;
    }

    .studio-thumb-slide {
        width: 56px;
    }

    .studio-thumb-img {
        height: 36px;
    }

    .studio-thumb-name {
        font-size: 8px;
    }

    .studio-nav {
        padding-top: 10px;
    }

    .studio-nav-btn {
        width: 36px;
        height: 36px;
    }

    .studio-nav-btn svg {
        width: 18px;
        height: 18px;
    }
}

/* ─── Contact Hub ─── */
.contact-hub-wrapper {
    position: relative;
    padding: 0;
    background: #0a0705;
    overflow: hidden;
}

.contact-hub-map {
    width: 100%;
    height: 380px;
    position: relative;
    overflow: hidden;
}

.contact-hub-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(0.92) brightness(0.6) contrast(1.3) sepia(0.15);
    pointer-events: none;
}

.contact-hub-map::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, #0a0705, transparent);
    pointer-events: none;
    z-index: 2;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.map-pin-label {
    background: #ad9160;
    color: #0a0705;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    margin-bottom: 8px;
    box-shadow: 0 4px 16px rgba(173, 145, 96, 0.4);
}

.map-pin-dot {
    width: 14px;
    height: 14px;
    background: #ad9160;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 0 6px rgba(173, 145, 96, 0.25), 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
}

.map-pin-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(173, 145, 96, 0.15);
    animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

.map-pin-info {
    margin-top: 10px;
    text-align: center;
    background: rgba(10, 7, 5, 0.85);
    backdrop-filter: blur(12px);
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-pin-info span {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.map-pin-info a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    font-size: 10px;
    font-weight: 700;
    color: #ad9160;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    pointer-events: auto;
}

.contact-hub-body {
    position: relative;
    max-width: 1000px;
    margin: -60px auto 0;
    padding: 0 clamp(20px, 4vw, 60px) 80px;
    z-index: 2;
}

.contact-hub-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-bottom: 12px;
}

.contact-hub-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 40px;
}

.contact-hub-title span {
    color: var(--brand-gold);
}

.contact-hub-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ch-item {
    padding: 32px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.ch-item:not(:nth-child(3n+1)) {
    padding-left: 32px;
}

.ch-item:not(:nth-child(3n))::after {
    content: '';
    position: absolute;
    right: 0;
    top: 32px;
    bottom: 32px;
    width: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.ch-item-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 10px;
}

.ch-item-value {
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.ch-item-value a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ch-item-value a:hover {
    color: var(--brand-gold);
}

.contact-hub-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.ch-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.ch-action svg {
    width: 16px;
    height: 16px;
    fill: var(--brand-gold);
    transition: all 0.3s ease;
}

.ch-action:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: rgba(201, 169, 110, 0.3);
    color: var(--white);
    transform: translateY(-2px);
}

.ch-action-directions svg {
    fill: none;
    stroke: var(--brand-gold);
}

@media (max-width: 768px) {
    .contact-hub-strip {
        grid-template-columns: 1fr;
    }

    .ch-item:not(:nth-child(3n+1)) {
        padding-left: 0;
    }

    .ch-item:not(:nth-child(3n))::after {
        display: none;
    }

    .contact-hub-map {
        height: 280px;
    }

    .contact-hub-actions {
        flex-direction: column;
    }

    .ch-action {
        justify-content: center;
    }
}

/* ─── Lead Capture Section ─── */
.lead-runway {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
    background: #0a0705;
    overflow: hidden;
}

.lead-runway-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.18) saturate(0.6);
}

.lead-runway::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(10, 7, 5, 0.5) 0%, rgba(10, 7, 5, 0.9) 70%);
    pointer-events: none;
}

.lead-runway-inner {
    position: relative;
    z-index: 2;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
}

.lead-headline-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-gold);
    margin-bottom: 20px;
    display: block;
    font-weight: 600;
}

.lead-headline-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.lead-headline-title em {
    font-style: normal;
    color: var(--brand-gold);
}

.lead-headline-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto 32px;
}

.lead-form-panel {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 32px;
    position: relative;
}

.lead-form-panel::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 32px;
    right: 32px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.4), transparent);
}

.lead-modern-form .lead-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.lead-modern-form .input-group {
    margin-bottom: 12px;
}

.lead-modern-form input,
.lead-modern-form select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    font-size: 14px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.lead-modern-form input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.lead-modern-form input:focus,
.lead-modern-form select:focus {
    outline: none;
    border-color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.08);
}

.lead-modern-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.lead-modern-form select option {
    background: #1a1510;
    color: var(--white);
}

.btn-runway-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--brand-gold);
    color: #0a0705;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-runway-submit svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-runway-submit:hover {
    background: var(--brand-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.25);
}

.btn-runway-submit:hover svg {
    transform: translateX(3px);
}

.lead-form-privacy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.25);
    text-align: center;
    margin-top: 16px;
    line-height: 1.5;
}

.lead-form-privacy a {
    color: var(--brand-gold);
    text-decoration: none;
}

@media (max-width: 580px) {
    .lead-modern-form .lead-form-row {
        grid-template-columns: 1fr;
    }

    .lead-form-panel {
        padding: 24px 20px;
    }
}

/* ─── Studio Cards (used on classes page) ─── */
.studio-card {
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.studio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-brown), var(--brand-gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.studio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

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

.studio-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-brown), var(--brand-brown-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(79, 50, 34, 0.3);
}

.studio-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

.studio-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.studio-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.studio-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand-gold);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.studio-card-link svg {
    width: 14px;
    height: 14px;
    fill: var(--brand-gold);
}

.studio-card-link:hover {
    gap: 10px;
}

/* ─── Footer Overrides for Branch ─── */
.footer-brand-logo img {
    height: 48px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 32px !important;
    }

    .footer-brand {
        max-width: none;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand-logo {
        justify-content: center;
    }

    .footer-brand p {
        max-width: 300px;
    }

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

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0 16px;
    }

    .footer-col ul li {
        margin-bottom: 8px;
    }
}

/* ═══════════════════════════════════════
   SUB-PAGE STYLES (trainers, classes, schedule)
   ═══════════════════════════════════════ */

/* ─── Trainer Cards ─── */
.trainer-card {
    border-radius: var(--radius-md);
    background: var(--surface-2);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all var(--transition-base);
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-width: 0;
    text-decoration: none;
    cursor: pointer;
}

.trainer-card:hover {
    transform: translateY(-8px);
    border-color: var(--brand-gold);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
}

.trainer-avatar {
    width: 100%;
    aspect-ratio: 3.5/5;
    background: var(--surface-3);
    position: relative;
    overflow: hidden;
}

.trainer-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to bottom, transparent, var(--surface-2));
    z-index: 2;
}

.trainer-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.trainer-card:hover .trainer-avatar img {
    transform: scale(1.08);
}

.trainer-info {
    padding: 20px 24px 28px;
    background: var(--surface-2);
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 3;
}

.trainer-info h3 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trainer-role {
    font-size: 11px;
    font-weight: 500;
    color: var(--brand-gold);
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainer-link-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.trainer-card:hover .trainer-link-icon {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    transform: scale(1.1);
}

.trainer-link-icon svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.trainer-card:hover .trainer-link-icon svg {
    fill: var(--black);
}

/* Join Team Card */
.trainer-card-join {
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    aspect-ratio: 3.5/6.2;
    transition: all var(--transition-base);
    cursor: pointer;
    text-decoration: none;
    background: var(--surface-2);
}

.trainer-card-join:hover {
    border-color: var(--brand-gold);
    background: rgba(201, 169, 110, 0.05);
    transform: translateY(-8px);
}

.join-plus-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: all var(--transition-base);
}

.trainer-card-join:hover .join-plus-wrapper {
    border-color: var(--brand-gold);
    transform: scale(1.1);
}

.join-plus-wrapper svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.3);
}

.trainer-card-join:hover .join-plus-wrapper svg {
    fill: var(--brand-gold);
}

.join-btn {
    background: #1a1a1a;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trainer-card-join:hover .join-btn {
    background: var(--brand-gold);
    color: var(--black);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.3);
    border-color: var(--brand-gold);
}

/* ─── Class Cards ─── */
.class-card-item {
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all var(--transition-base);
}

.class-card-item:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, .2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.class-card-image {
    width: 100%;
    height: clamp(200px, 25vw, 280px);
    background-size: cover;
    background-position: center;
    position: relative;
}

.class-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--surface-2));
}

.class-card-content {
    padding: 28px;
}

.class-card-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.class-card-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* ─── Service Cards (Private Classes) ─── */
.service-card {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-base);
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 169, 110, .2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .3);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--brand-brown), var(--brand-brown-light));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(79, 50, 34, .3);
    flex-shrink: 0;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media(max-width:768px) {
    .service-card {
        grid-template-columns: 1fr;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .service-icon svg {
        width: 26px;
        height: 26px;
    }
}

.class-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    background: rgba(79, 50, 34, .2);
    border: 1px solid rgba(201, 169, 110, .15);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--brand-gold);
    margin-right: 6px;
    margin-bottom: 6px;
}

/* ─── Schedule Styles ─── */
.schedule-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.day-nav-wrapper {
    width: 100%;
    margin: 0 auto 60px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    display: flex;
    gap: 6px;
}

.day-btn {
    flex: 1;
    padding: 15px 10px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-btn:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
}

.day-btn.active {
    background: var(--brand-gold);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(201, 169, 110, 0.15);
}

.schedule-timeline {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.schedule-day-content {
    display: none;
    animation: fadeIn 0.5s ease-out;
}

.schedule-day-content.active {
    display: block;
}

/* Schedule Card */
.sched-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sched-card.active {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.sched-card .card-header {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    gap: 20px;
}

.sched-card .card-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.class-title-main {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    margin-left: auto;
}

.header-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-item svg {
    width: 16px;
    height: 16px;
    color: var(--brand-gold);
}

.header-separator {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
}

.card-arrow {
    color: rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.sched-card.active .card-arrow {
    transform: rotate(180deg);
    color: var(--brand-gold);
}

.sched-card .card-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    padding: 0 30px;
    opacity: 0;
}

.sched-card.active .card-body {
    max-height: 1000px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
    padding: 10px 30px 40px;
    opacity: 1;
}

.card-body-inner {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trainer-profile-box {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    padding: 12px;
    gap: 15px;
    align-items: center;
}

.profile-img {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    object-fit: cover;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.profile-role {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.studio-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    background: var(--brand-gold);
    color: var(--black);
    font-size: 9px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.studio-badge svg {
    width: 10px;
    height: 10px;
}

.class-description-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
}

.schedule-note {
    text-align: center;
    max-width: 600px;
    margin: 40px auto 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.6;
    letter-spacing: 0.5px;
}

@media(max-width: 768px) {
    .day-nav-wrapper {
        flex-wrap: wrap;
        border-radius: 12px;
        padding: 10px;
    }

    .day-btn {
        flex: none;
        width: calc(33.33% - 6px);
        font-size: 11px;
        padding: 12px 5px;
    }

    .sched-card .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .card-body-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .trainer-profile-box {
        max-width: 100%;
    }

    .schedule-container {
        padding: 20px;
    }
}