

        :root {
            --black: #000000;
            --white: #ffffff;
            --gray-100: #f5f5f5;
            --gray-200: #e5e5e5;
            --gray-400: #a3a3a3;
            --gray-500: #737373;
            --gray-600: #525252;
            --gray-700: #404040;
            --gray-800: #262626;
            --gray-900: #171717;
            --accent: #c2441c;
            --font-display: 'Bebas Neue', Impact, sans-serif;
            --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
        }

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

        html {
            scroll-snap-type: y proximity;
            overflow-y: scroll;
            scroll-padding-top: 80px;
        }

        body {
            font-family: var(--font-body);
            background: var(--black);
            color: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        .snap-section {
            min-height: 100vh;
            width: 100%;
            scroll-snap-align: start;
            scroll-snap-stop: normal;
            position: relative;
            overflow: visible;
        }

        .snap-section.extended {
            height: auto;
            min-height: 100vh;
            scroll-snap-align: start;
            overflow: visible;
        }

        /* Navigation */
      

        nav.nav-hidden {
            opacity: 0;
            pointer-events: none;
            transform: translateY(-100%);
        }

        nav.light-mode {
            background: var(--white);
            box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
        }

        nav.light-mode .logo,
        nav.light-mode .nav-links a {
            color: var(--black);
        }

        nav.light-mode .nav-cta {
            background: var(--black);
            color: var(--white);
        }

        .logo {
            font-family: var(--font-display);
            font-size: 24px;
            letter-spacing: 3px;
            color: var(--white);
            text-decoration: none;
            transition: color 0.4s;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 1px;
            color: var(--white);
            text-decoration: none;
            text-transform: uppercase;
            transition: all 0.3s;
            opacity: 0.8;
        }

        .nav-links a:hover {
            opacity: 1;
        }

        .nav-cta {
            display: inline-block;
            background: var(--white);
            color: var(--black);
            padding: 14px 32px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
        }

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

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

        .mobile-toggle span {
            width: 24px;
            height: 1.5px;
            background: var(--white);
            transition: background 0.4s;
        }

        nav.light-mode .mobile-toggle span {
            background: var(--black);
        }

        /* ========================================
           HERO SECTION - Perfectly Centered
           ======================================== */
        .hero-section {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100vh;
            overflow: hidden;
        }

        .video-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .video-bg video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.6);
            z-index: 1;
        }

        /* Single centered container for all hero content */
        .hero-center {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 80px 40px 0;
            margin-top: 20px;
        }

        .hero-eyebrow {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 24px;
            opacity: 0;
            animation: fadeUp 1s ease 0.2s forwards;
        }

        .hero-title {
            font-family: var(--font-display);
            font-size: clamp(48px, 10vw, 120px);
            line-height: 0.95;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 32px;
            opacity: 0;
            animation: fadeUp 1s ease 0.4s forwards;
        }

        .sub_txt_h1 {

            font-size: 30px;
            display: block;
        }

        .hero-subtitle {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.7;
            color: var(--gray-400);
            max-width: 600px;
            margin-bottom: 48px;
            opacity: 0;
            animation: fadeUp 1s ease 0.6s forwards;
        }

        .hero-cta {
            display: block;
            background: var(--white);
            color: var(--black);
            padding: 20px 7px;
            width: 300px;

            font-size: 13px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            opacity: 0;
            animation: fadeUp 1s ease 0.8s forwards;
        }

        .hero-cta:hover {
            background: var(--accent);
            color: var(--black);
            transform: translateY(-3px) !important;
        }

        /* Scroll Indicator - Part of centered flow */
        .scroll-indicator {
            margin-top: 64px;
            opacity: 0;
            animation: fadeUp 1s ease 1s forwards;
        }

        .scroll-indicator a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
        }

        .scroll-mouse {
            width: 26px;
            height: 42px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 13px;
            position: relative;
            transition: border-color 0.3s;
        }

        .scroll-indicator a:hover .scroll-mouse {
            border-color: var(--accent);
        }

        .scroll-wheel {
            width: 4px;
            height: 10px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 2px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s ease-in-out infinite;
        }

        .scroll-indicator a:hover .scroll-wheel {
            background: var(--accent);
        }

        @keyframes scrollWheel {

            0%,
            100% {
                opacity: 1;
                transform: translateX(-50%) translateY(0);
            }

            50% {
                opacity: 0.2;
                transform: translateX(-50%) translateY(14px);
            }
        }

        .scroll-chevron {
            margin-top: 16px;
            width: 12px;
            height: 12px;
            border-right: 2px solid rgba(255, 255, 255, 0.3);
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            transform: rotate(45deg);
            animation: scrollChevron 2s ease-in-out infinite;
        }

        .scroll-indicator a:hover .scroll-chevron {
            border-color: var(--accent);
        }

        @keyframes scrollChevron {

            0%,
            100% {
                opacity: 0.3;
                transform: rotate(45deg) translateY(0);
            }

            50% {
                opacity: 1;
                transform: rotate(45deg) translateY(4px);
            }
        }

        /* Services Section */
        .services-extended {
            background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
            padding: 120px 0;
            scroll-margin-top: -80px;
        }

        .services-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 48px;
        }

        .services-intro {
            text-align: center;
            margin-bottom: 100px;
        }

        .services-intro h2 {
            font-family: var(--font-display);
            font-size: clamp(48px, 8vw, 80px);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .services-intro p {
            font-size: 18px;
            font-weight: 300;
            color: var(--gray-400);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .packages-section {
            margin-bottom: 100px;
        }

        .packages-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .packages-header h2 {
            font-family: var(--font-display);
            font-size: 40px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .packages-header p {
            font-size: 15px;
            font-weight: 300;
            color: var(--gray-500);
            max-width: 500px;
            margin: 0 auto;
        }

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

        .package-card {
            background: var(--gray-900);
            border: 1px solid var(--gray-800);
            padding: 48px 36px;
            text-align: center;
            position: relative;
            transition: all 0.4s ease;
        }

        .package-card:hover {
            border-color: var(--accent);
            transform: translateY(-8px);
        }

        .package-card.featured {
            border-color: var(--accent);
        }

        .package-card.featured::before {
            content: 'MOST POPULAR';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--accent);
            color: var(--black);
            padding: 8px 20px;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2px;
        }

        .package-name {
            font-family: var(--font-display);
            font-size: 36px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .package-sessions {
            font-size: 14px;
            font-weight: 500;
            color: var(--accent);
            margin-bottom: 8px;
        }

        .package-duration {
            font-size: 13px;
            color: var(--gray-500);
            margin-bottom: 32px;
        }

        .package-divider {
            width: 40px;
            height: 1px;
            background: var(--gray-700);
            margin: 0 auto 32px;
        }

        .package-description {
            font-size: 14px;
            font-weight: 300;
            line-height: 1.7;
            color: var(--gray-400);
            margin-bottom: 32px;
        }

        .package-cta {
            display: inline-block;
            border: 1px solid var(--white);
            color: var(--white);
            padding: 14px 32px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            background: transparent;
        }

        .package-cta:hover {
            background: var(--white);
            color: var(--black);
            transform: translateY(-3px);
        }

        .programs-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        .program-card {
            background: var(--gray-900);
            overflow: hidden;
            min-height: 600px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        .program-card-image-wrap {
            position: relative;
            width: 100%;
            height: 280px;
            overflow: hidden;
        }

        .program-card-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .program-card-image-wrap::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 60px;
            background: var(--gray-900);
            clip-path: polygon(0 100%, 100% 0, 100% 100%);
        }

        .program-card-content {
            padding: 40px 48px 48px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .program-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .program-title {
            font-family: var(--font-display);
            font-size: 48px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .program-description {
            font-size: 15px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--gray-400);
            margin-bottom: 32px;
            max-width: 400px;
        }

        .program-features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .program-features li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--white);
            margin-bottom: 12px;
        }

        .program-features li svg {
            width: 16px;
            height: 16px;
            color: var(--accent);
            flex-shrink: 0;
        }

        .program-cta {
            display: inline-block;
            background: var(--white);
            color: var(--black);
            padding: 16px 36px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            align-self: flex-start;
            margin-top: auto;
        }

        .program-cta:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }

        /* ========================================
           TEAM SECTION - Enhanced Hover Bio
           ======================================== */
        .team-section {
            background: var(--white);
            color: var(--black);
            padding: 120px 0 80px;
        }

        .team-header {
            text-align: center;
            padding: 0 40px 80px;
        }

        .team-header h2 {
            font-family: var(--font-display);
            font-size: clamp(40px, 6vw, 64px);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .team-header p {
            font-size: 16px;
            font-weight: 300;
            color: var(--gray-600);
            max-width: 500px;
            margin: 0 auto;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 48px;
            padding: 0 100px;
            max-width: 1600px;
            margin: 0 auto;
        }

        .team-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 4 / 5;
            min-height: 600px;
        }

        .team-card-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            transition: all 0.6s ease;
        }

        .team-card:hover .team-card-image {
            filter: grayscale(0%);
            transform: scale(1.05);
        }

        .team-card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 48px;
            transition: all 0.5s ease;
        }

        .team-card:hover .team-card-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
        }

        .team-card-info {
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-card-info {
            transform: translateY(-20px);
        }

        .team-card-name {
            font-family: var(--font-display);
            font-size: 40px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white);
            margin-bottom: 8px;
        }

        .team-card-role {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--accent);
        }

        .team-card-details {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .team-card:hover .team-card-details {
            max-height: 300px;
            opacity: 1;
            margin-top: 20px;
        }

        .team-card-bio {
            font-size: 15px;
            font-weight: 400;
            line-height: 1.7;
            color: var(--white);
            margin-bottom: 20px;
        }

        .team-card-creds-label {
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 10px;
        }

        .team-card-credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .team-credential {
            background: rgba(201, 162, 39, 0.15);
            border: 1px solid var(--accent);
            padding: 10px 18px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--accent);
        }

        .team-card-placeholder {
            aspect-ratio: 4 / 5;
            min-height: 550px;
            background: var(--gray-100);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            border: 2px dashed var(--gray-300);
            transition: all 0.3s ease;
        }

        .team-card-placeholder:hover {
            border-color: var(--accent);
            background: var(--gray-200);
        }

        .team-card-placeholder svg {
            width: 56px;
            height: 56px;
            color: var(--gray-400);
            margin-bottom: 20px;
        }

        .team-card-placeholder span {
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gray-500);
        }

        /* ========================================
           COMMUNITY SECTION
           ======================================== */
        .community-section {
            background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 60%, #2a1410 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 0;
            scroll-margin-top: -80px;
            position: relative;
            overflow: hidden;
        }

        .community-section::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 40%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(194, 68, 28, 0.25) 0%, transparent 60%);
            pointer-events: none;
        }

        .community-inner {
            max-width: 1300px;
            width: 100%;
            padding: 0 60px;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 64px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .community-image {
            position: relative;
            aspect-ratio: 4 / 5;
            overflow: hidden;
        }

        .community-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .community-image::before {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(194, 68, 28, 0.4);
            z-index: 2;
            pointer-events: none;
        }

        .community-content h2 {
            font-family: var(--font-display);
            font-size: clamp(40px, 5vw, 72px);
            letter-spacing: 2px;
            text-transform: uppercase;
            line-height: 1.05;
            margin-bottom: 40px;
        }

        .community-content h2 .accent {
            color: var(--accent);
        }

        .community-points {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .community-point {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--gray-800);
            border-left: 3px solid var(--accent);
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 300;
            line-height: 1.7;
            color: var(--gray-200);
            transition: all 0.3s ease;
        }

        .community-point:hover {
            background: rgba(194, 68, 28, 0.08);
            border-color: var(--gray-600);
            border-left-color: var(--accent);
        }

        @media (max-width: 900px) {
            .community-section {
                padding: 70px 0;
            }

            .community-inner {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 40px;
            }

            .community-image {
                max-width: 400px;
                margin: 0 auto;
            }

            .community-content h2 {
                font-size: clamp(36px, 8vw, 52px);
                margin-bottom: 32px;
            }

            .community-point {
                font-size: 15px;
                padding: 18px 20px;
            }
        }

        @media (max-width: 480px) {
            .community-section {
                padding: 60px 0;
            }

            .community-inner {
                padding: 0 24px;
            }

            .community-content h2 {
                font-size: clamp(32px, 9vw, 44px);
            }

            .community-point {
                font-size: 14px;
                padding: 16px 18px;
            }
        }

        /* Beliefs Section */
        .beliefs-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #161210 70%, #1f1410 100%);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 0;
            scroll-margin-top: -80px;
            position: relative;
            overflow: hidden;
        }

        .beliefs-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 35%;
            height: 100%;
            background: radial-gradient(circle at top left, rgba(194, 68, 28, 0.18) 0%, transparent 60%);
            pointer-events: none;
        }

        .beliefs-inner {
            max-width: 1200px;
            padding: 0 80px;
            text-align: center;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .beliefs-header h2 {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 72px);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 72px;
        }

        .beliefs-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            text-align: left;
        }

        .belief-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--gray-800);
            border-top: 3px solid var(--accent);
            padding: 36px 32px;
            transition: all 0.3s ease;
        }

        .belief-item:hover {
            background: rgba(194, 68, 28, 0.08);
            border-color: var(--gray-600);
            border-top-color: var(--accent);
            transform: translateY(-4px);
        }

        .belief-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .belief-icon svg {
            width: 100%;
            height: 100%;
            stroke: var(--accent);
            fill: none;
            stroke-width: 1.5;
        }

        .belief-item h3 {
            font-family: var(--font-display);
            font-size: 32px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .belief-item p {
            font-size: 16px;
            font-weight: 300;
            line-height: 1.7;
            color: var(--gray-400);
        }

        /* ========================================
           TESTIMONIALS SECTION
           ======================================== */
        .testimonials-section {
            background: linear-gradient(180deg, #0a0a0a 0%, #161210 50%, #0a0a0a 100%);
            display: flex;
            align-items: flex-start;
            justify-content: center;
            height: auto;
            overflow: visible;
            padding: 120px 0 80px;
            scroll-margin-top: 0;
        }

        .testimonials-inner {
            max-width: 1200px;
            padding: 0 60px;
            width: 100%;
            min-width: 0;
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 32px;
        }

        .testimonials-header h2 {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 56px);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .testimonials-header p {
            font-size: 14px;
            color: var(--gray-400);
            letter-spacing: 1px;
        }

        .testimonials-slider {
            position: relative;
            width: 100%;
            min-width: 0;
        }

        .testimonials-viewport {
            overflow: hidden;
            width: 100%;
        }

        .testimonials-slides {
            display: flex;
            width: 100%;
            transition: transform 0.45s ease;
        }

        .testimonials-slide {
            flex: 0 0 100%;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            box-sizing: border-box;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            width: 100%;
            min-width: 0;
        }

        .testimonials-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid var(--gray-800);
            background: var(--gray-900);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: border-color 0.3s, color 0.3s;
        }

        .testimonials-arrow:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .testimonials-arrow svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .testimonials-arrow.prev {
            left: -20px;
        }

        .testimonials-arrow.next {
            right: -20px;
        }

        .testimonials-arrow[hidden] {
            display: none;
        }

        .testimonials-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }

        .testimonials-dots[hidden] {
            display: none;
        }

        .testimonials-dots button {
            width: 8px;
            height: 8px;
            padding: 0;
            border: none;
            border-radius: 50%;
            background: var(--gray-600);
            cursor: pointer;
        }

        .testimonials-dots button.active {
            background: var(--accent);
        }

        .testimonial-card {
            background: var(--gray-900);
            padding: 48px;
            border-radius: 4px;
            border-top: 3px solid var(--accent);
            position: relative;
            display: flex;
            flex-direction: column;
            min-height: 280px;
            min-width: 0;
        }

        .testimonial-quote-icon {
            font-family: Georgia, serif;
            font-size: 80px;
            line-height: 1;
            color: var(--accent);
            opacity: 0.3;
            position: absolute;
            top: 20px;
            left: 36px;
            z-index: 0;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
            padding-top: 48px;
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 0;
            min-height: 0;
        }

        .testimonial-stars {
            display: flex;
            gap: 4px;
            margin-bottom: 20px;
            flex-shrink: 0;
        }

        .testimonial-stars svg {
            width: 18px;
            height: 18px;
            fill: var(--accent);
        }

        .testimonial-stars svg.empty {
            opacity: 0.22;
        }

        .testimonial-text {
            font-size: 17px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--gray-200);
            margin-bottom: 28px;
            max-height: 11.5em;
            overflow-x: hidden;
            overflow-y: auto;
            padding-right: 8px;
            flex: 1 1 auto;
            min-width: 0;
            width: 100%;
            white-space: normal;
            overflow-wrap: break-word;
            word-break: break-word;
            isolation: isolate;
        }

        .testimonial-text::-webkit-scrollbar {
            width: 4px;
        }

        .testimonial-text::-webkit-scrollbar-track {
            background: var(--gray-800);
        }

        .testimonial-text::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 4px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-top: auto;
            flex-shrink: 0;
        }

        .testimonial-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--gray-700);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 18px;
            color: var(--white);
        }

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

        .testimonial-name {
            font-weight: 600;
            font-size: 15px;
            color: var(--white);
            margin-bottom: 4px;
        }

        .testimonial-role {
            font-size: 12px;
            color: var(--gray-500);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .testimonials-source {
            text-align: center;
            margin-top: 32px;
            padding-bottom: 8px;
        }

        .testimonials-source a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--gray-500);
            text-decoration: none;
            transition: color 0.3s;
        }

        .testimonials-source a:hover {
            color: var(--accent);
        }

        .testimonials-source svg {
            width: 18px;
            height: 18px;
        }

        @media (max-width: 768px) {
            .testimonials-section {
                padding: 110px 0 80px;
            }

            .testimonials-inner {
                padding: 0 24px;
            }

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

            .testimonials-arrow {
                width: 32px;
                height: 32px;
            }

            .testimonials-arrow.prev {
                left: -8px;
            }

            .testimonials-arrow.next {
                right: -8px;
            }

            .testimonial-card {
                padding: 36px 28px;
                min-height: 300px;
            }

            .testimonial-quote-icon {
                font-size: 60px;
                left: 24px;
            }

            .testimonial-text {
                font-size: 15px;
            }
        }

        /* ========================================
           FAQ SECTION
           ======================================== */
        .faq-section {
            background: linear-gradient(180deg, #141414 0%, #0d0d0d 100%);
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding: 120px 0 100px;
            scroll-margin-top: -80px;
        }

        .faq-inner {
            max-width: 800px;
            padding: 0 60px;
            width: 100%;
        }

        .faq-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 5vw, 56px);
            letter-spacing: 2px;
            text-transform: uppercase;
            text-align: center;
            margin-bottom: 60px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        /* FAQ CTA Bar */
        .faq-cta-bar {
            margin-top: 64px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 22px;
        }

        .faq-cta-text {
            font-family: var(--font-display);
            font-size: 28px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--white);
        }

        .faq-cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .faq-cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 36px;
            font-family: var(--font-body);
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            text-decoration: none;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }

        .faq-cta-btn.solid {
            background: var(--accent);
            color: var(--white);
        }

        .faq-cta-btn.solid:hover {
            background: #a8380f;
            transform: translateY(-3px);
        }

        .faq-cta-btn.outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--accent);
        }

        .faq-cta-btn.outline:hover {
            background: var(--accent);
            transform: translateY(-3px);
        }

        @media (max-width: 600px) {
            .faq-cta-bar {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-top: 48px;
            }

            .faq-cta-text {
                font-size: 22px;
            }

            .faq-cta-buttons {
                width: 100%;
            }

            .faq-cta-btn {
                flex: 1;
                padding: 16px 24px;
                font-size: 13px;
            }
        }

        .faq-item {
            border-bottom: 1px solid var(--gray-800);
        }

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 24px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            text-align: left;
        }

        .faq-question-text {
            font-family: var(--font-display);
            font-size: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: var(--white);
        }

        .faq-icon {
            width: 24px;
            height: 24px;
            position: relative;
            flex-shrink: 0;
            margin-left: 20px;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--accent);
            transition: transform 0.3s ease;
        }

        .faq-icon::before {
            width: 16px;
            height: 2px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-icon::after {
            width: 2px;
            height: 16px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .faq-item.active .faq-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }

        .faq-answer-inner {
            padding: 0 0 24px 0;
            font-size: 15px;
            font-weight: 300;
            line-height: 1.8;
            color: var(--gray-400);
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
        }

        /* ========================================
           LOCATION SECTION - 30/70 Image to Map (Map Bigger)
           ======================================== */
        .location-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--white);
        }

        .location-visual {
            display: grid;
            grid-template-rows: 30% 70%;
            height: 100%;
        }

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

        .location-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(20%);
            transition: all 0.6s ease;
        }

        .location-image:hover img {
            filter: grayscale(0%);
            transform: scale(1.02);
        }

        .location-image-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px 36px;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        }

        .location-image-text {
            font-family: var(--font-display);
            font-size: 24px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--white);
        }

        .location-map {
            position: relative;
            overflow: hidden;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(100%) contrast(1.1);
            transition: filter 0.4s ease;
        }

        .location-map:hover iframe {
            filter: grayscale(50%) contrast(1.1);
        }

        .location-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 100px 60px 60px;
            background: var(--white);
            color: var(--black);
            overflow: hidden;
        }

        .location-title {
            font-family: var(--font-display);
            font-size: 48px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .location-tagline {
            font-size: 14px;
            font-weight: 300;
            color: var(--gray-500);
            margin-bottom: 32px;
        }

        .location-details {
            margin-bottom: 32px;
        }

        .location-item {
            padding: 16px 0;
            border-bottom: 1px solid var(--gray-200);
            display: flex;
            gap: 32px;
        }

        .location-item:first-child {
            border-top: 1px solid var(--gray-200);
        }

        .location-label {
            width: 80px;
            flex-shrink: 0;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray-500);
            padding-top: 3px;
        }

        .location-value {
            font-size: 15px;
            line-height: 1.5;
            color: var(--gray-800);
        }

        .location-value a {
            color: var(--gray-800);
            text-decoration: none;
            transition: color 0.2s;
        }

        .location-value a:hover {
            color: var(--black);
        }

        .location-note {
            font-size: 12px;
            color: var(--gray-500);
            margin-top: 2px;
        }

        .location-cta {
            display: inline-block;
            background: var(--black);
            color: var(--white);
            padding: 16px 36px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s;
            align-self: flex-start;
        }

        .location-cta:hover {
            background: var(--accent);
            color: var(--black);
            transform: translateY(-2px);
        }

        /* Contact Form Section */
        /* Contact Form Section - Clean Rebuild */
        .contact-section {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            min-height: 100vh;
            scroll-snap-align: none;
            scroll-margin-top: -80px;
            background: var(--black);
        }

        .contact-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 120px 60px 80px;
            background: linear-gradient(135deg, #1f1410 0%, #0a0a0a 70%);
            position: sticky;
            top: 0;
            align-self: start;
            height: 100vh;
            overflow-y: auto;
        }

        .contact-image {
            width: 100%;
            margin-bottom: 32px;
           
            border-radius: 4px;
            position: relative;
        }

      
        /* Shorter screens - shrink the image so left content fits */
        @media (max-height: 800px) and (min-width: 769px) {
           
            .contact-image {
                margin-bottom: 20px;
            }

           
            .contact-title {
                font-size: clamp(28px, 3vw, 40px) !important;
                margin-bottom: 14px !important;
            }

            .contact-subtitle {
                font-size: 14px !important;
                margin-bottom: 18px !important;
            }

            .contact-features li {
                font-size: 14px !important;
                margin-bottom: 10px !important;
            }
        }

        @media (max-height: 700px) and (min-width: 769px) {
            .contact-image {
                margin-bottom: 16px;
            }

            
            .contact-title {
                font-size: clamp(24px, 2.5vw, 32px) !important;
            }

            .contact-features li {
                margin-bottom: 8px !important;
            }
        }

        .contact-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 1px solid rgba(194, 68, 28, 0.4);
            border-radius: 4px;
            pointer-events: none;
        }

        .contact-title {
            font-family: var(--font-display);
            font-size: clamp(36px, 3.5vw, 52px);
            letter-spacing: 2px;
            text-transform: uppercase;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .contact-subtitle {
            font-size: clamp(15px, 1.1vw, 18px);
            font-weight: 300;
            line-height: 1.6;
            color: var(--gray-400);
            max-width: 480px;
            margin-bottom: 28px;
        }

        .contact-features {
            list-style: none;
        }

        .contact-features li {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: clamp(14px, 1vw, 17px);
            color: var(--gray-200);
            margin-bottom: 14px;
        }

        .contact-features li svg {
            width: 24px;
            height: 24px;
            color: var(--accent);
            flex-shrink: 0;
        }

        .contact-right {
            display: flex;
            flex-direction: column;
            padding: 100px 60px 80px;
            background: var(--white);
            color: var(--black);
        }

        .contact-form-title {
            font-family: var(--font-display);
            font-size: 36px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
            padding: 16px 28px;
            background: var(--accent);
            color: var(--black);
            display: inline-block;
            align-self: flex-start;
        }

        .pushpress-form-wrap {
            width: 100%;
            background: var(--white);
            padding-bottom: 40px;
        }

        .pushpress-form-wrap iframe {
            display: block;
            width: 100%;
            height: 950px;
            min-height: 950px;
            border: none;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

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

        .form-group label {
            display: block;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--gray-500);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px 0;
            font-family: var(--font-body);
            font-size: 16px;
            color: var(--white);
            background: transparent;
            border: none;
            border-bottom: 1px solid var(--gray-700);
            outline: none;
            transition: border-color 0.3s;
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--gray-600);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
        }

        .form-group textarea {
            resize: none;
            min-height: 60px;
        }

        .form-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23737373' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0 center;
        }

        .form-group select option {
            background: var(--gray-900);
            color: var(--white);
        }

        .form-submit {
            background: var(--white);
            color: var(--black);
            padding: 16px 40px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 8px;
        }

        .form-submit:hover {
            background: var(--accent);
            transform: translateY(-2px);
        }

        .form-note {
            margin-top: 24px;
            font-size: 12px;
            color: var(--gray-500);
        }

        /* Footer */
        .footer-section {
            height: auto;
            min-height: auto;
            scroll-snap-align: end;
            background: var(--black);
            border-top: 1px solid var(--gray-800);
            padding: 60px 48px 40px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 20px;
            letter-spacing: 3px;

        }

        .footer-links {
            display: flex;
            gap: 40px;
        }

        .footer-links a {
            font-size: 12px;
            color: var(--gray-500);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        .footer-social {
            display: flex;
            gap: 20px;
        }

        .footer-social a {
            color: var(--gray-500);
            transition: color 0.2s;
        }

        .footer-social a:hover {
            color: var(--white);
        }

        /* ========================================
           SIDE DOT NAVIGATION
           ======================================== */
        .dot-nav {
            position: fixed;
            right: 32px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .dot-nav a {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            position: relative;
        }

        .dot-nav a:hover {
            background: var(--accent);
            border-color: var(--accent);
            transform: scale(1.2);
        }

        .dot-nav a.active {
            background: var(--accent);
            border-color: var(--accent);
        }

        .cta_section {
            display: flex;
            gap: 20px;
            align-items: center;
            text-transform: uppercase;
        }

        @media (max-width: 767px) {
            .cta_section {

                flex-direction: column;
            }

            .hero-cta.sec {
                margin-bottom: 20px;
            }

        }

        /* Tooltip on hover */
        .dot-nav a::before {
            content: attr(data-section);
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--black);
            color: var(--white);
            padding: 8px 14px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .dot-nav a:hover::before {
            opacity: 1;
        }

        /* Light mode dots for light sections */
        .dot-nav.light-mode a {
            background: rgba(0, 0, 0, 0.2);
            border-color: rgba(0, 0, 0, 0.4);
        }

        .dot-nav.light-mode a:hover,
        .dot-nav.light-mode a.active {
            background: var(--accent);
            border-color: var(--accent);
        }

        .dot-nav.light-mode a::before {
            background: var(--white);
            color: var(--black);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========================================
           RESPONSIVE DESIGN - All Screen Sizes
           ======================================== */

        /* Large Desktop (1440px+) */
        @media (min-width: 1441px) {
            .services-container {
                max-width: 1400px;
            }

            .team-grid {
                max-width: 1600px;
            }

            .location-content {
                padding: 120px 80px 80px;
            }
        }

        /* Desktop (1200px - 1440px) */
        @media (max-width: 1440px) {
            .team-grid {
                padding: 0 80px;
                gap: 40px;
            }

            .team-card {
                min-height: 550px;
            }
        }

        /* Small Desktop / Large Tablet (1024px - 1200px) */
        @media (max-width: 1200px) {
            nav {
                padding: 20px 32px;
            }

            .nav-links {
                gap: 28px;
            }

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

            .services-container {
                padding: 0 40px;
            }

            .packages-grid {
                gap: 20px;
            }

            .package-card {
                padding: 40px 28px;
            }

            .team-section {
                padding: 100px 0 100px;
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
                padding: 0 60px;
                gap: 32px;
            }

            .team-card {
                min-height: 480px;
            }

            .location-content {
                padding: 100px 50px 50px;
            }
        }

        /* Tablet Landscape (768px - 1024px) */
        @media (max-width: 1024px) {
            html {
                scroll-snap-type: y proximity;
            }

            nav {
                padding: 18px 24px;
            }

            .logo {
                font-size: 20px;
            }

            .nav-links {
                gap: 24px;
            }

            .nav-links a {
                font-size: 11px;
            }

            .nav-cta {
                padding: 10px 20px;
                font-size: 10px;
            }

            .hero-title {
                font-size: clamp(40px, 8vw, 80px);
            }

            .hero-subtitle {
                font-size: 16px;
                max-width: 500px;
            }

            .hero-cta {
                padding: 16px 12px;
                font-size: 12px;
                width: 260px;
            }

            .scroll-indicator {
                margin-top: 48px;
            }

            .services-extended {
                padding: 100px 0;
            }

            .services-container {
                padding: 0 32px;
            }

            .services-intro {
                margin-bottom: 80px;
            }

            .services-intro h2 {
                font-size: clamp(36px, 6vw, 56px);
            }

            .packages-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin: 0 auto;
            }

            .package-card {
                padding: 36px 28px;
            }

            .programs-section {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .program-card {
                min-height: 500px;
            }

            .program-card-content {
                padding: 48px;
            }

            .program-title {
                font-size: 40px;
            }

            .team-section {
                padding: 80px 0 100px;
            }

            .team-header {
                padding: 0 32px 50px;
            }

            .team-header h2 {
                font-size: clamp(32px, 5vw, 48px);
            }

            .team-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
                padding: 0 40px;
            }

            .team-card {
                min-height: 420px;
            }

            .team-card-name {
                font-size: 32px;
            }

            .team-card-overlay {
                padding: 36px;
            }

            .beliefs-section {
                padding: 70px 0;
            }

            .beliefs-inner {
                padding: 0 48px;
            }

            .beliefs-header h2 {
                font-size: clamp(36px, 6vw, 56px);
                margin-bottom: 48px;
            }

            .beliefs-grid {
                gap: 40px 48px;
            }

            .belief-item h3 {
                font-size: 26px;
            }

            .belief-item p {
                font-size: 14px;
            }

            .belief-icon {
                width: 40px;
                height: 40px;
            }

            .faq-section {
                padding: 60px 0;
            }

            .faq-inner {
                padding: 0 40px;
            }

            .faq-title {
                font-size: clamp(32px, 5vw, 48px);
                margin-bottom: 40px;
            }

            .faq-question-text {
                font-size: 18px;
            }

            .location-section,
            .contact-section {
                grid-template-columns: 1fr;
                height: auto;
                min-height: auto;
            }

            .location-visual {
                height: 45vh;
                min-height: 350px;
                grid-template-rows: 35% 65%;
            }

            .location-content {
                padding: 80px 40px 60px;
            }

            .location-title {
                font-size: 40px;
            }

            .contact-section {
                min-height: auto;
            }

           

            .contact-left {
                position: static;
                height: auto;
            }

            .contact-title {
                font-size: clamp(32px, 5vw, 44px);
            }
        }


        @media (max-width: 1023px) {
            html {
                scroll-snap-type: none;
            }

            .snap-section,
            .snap-section.extended {
                height: auto !important;
                min-height: 0 !important;
                overflow: visible !important;
            }

            /* Hero stays full viewport height */
            .hero-section {
                min-height: 100vh !important;
                min-height: 100dvh !important;
                overflow: hidden !important;
            }

            /* Hide dot navigation on mobile */
            .dot-nav {
                display: none;
            }

            nav {
                padding: 16px 20px;
            }

            .logo {
                font-size: 18px;
                letter-spacing: 2px;
            }

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

            .mobile-toggle {
                display: flex;
            }

            .hero-center {
                padding: 60px 24px 0;
                margin-top: 10px;
            }

            .hero-eyebrow {
                font-size: 11px;
                letter-spacing: 3px;
                margin-bottom: 20px;
            }

            .hero-title {
                font-size: clamp(36px, 10vw, 64px);
                margin-bottom: 24px;
            }

            .hero-subtitle {
                font-size: 15px;
                margin-bottom: 36px;
                line-height: 1.8;
            }
.contact-left {
    padding: 30px;
}
            .hero-cta {
                padding: 16px 12px;
                font-size: 12px;
            }

            .scroll-indicator {
                margin-top: 40px;
            }

            .scroll-mouse {
                width: 22px;
                height: 36px;
            }

            .services-extended {
                padding: 70px 0;
            }

            .services-container {
                padding: 0 24px;
            }

            .services-intro {
                margin-bottom: 50px;
            }

            .services-intro h2 {
                font-size: clamp(28px, 7vw, 40px);
            }

            .services-intro p {
                font-size: 15px;
            }

            .packages-section {
                margin-bottom: 50px;
            }

            .packages-header h3 {
                font-size: 32px;
            }

            .package-card {
                padding: 32px 24px;
            }

            .package-name {
                font-size: 30px;
            }

            .program-card {
                min-height: 450px;
            }

            .program-card-content {
                padding: 36px 28px;
            }

            .program-title {
                font-size: 34px;
            }

            .program-description {
                font-size: 14px;
            }

            .team-section {
                padding: 70px 0 90px;
            }

            .team-header {
                padding: 0 24px 40px;
            }

            .team-header h2 {
                font-size: clamp(28px, 7vw, 40px);
            }

            .team-header p {
                font-size: 14px;
            }

            .team-grid {
                grid-template-columns: 1fr;
                padding: 0 32px;
                gap: 32px;
            }

            .team-card {
                min-height: 450px;
            }

            .team-card-overlay {
                padding: 28px;
            }

            .team-card-name {
                font-size: 30px;
            }

            .team-card-role {
                font-size: 11px;
            }

            .team-card-bio {
                font-size: 13px;
            }

            .team-credential {
                padding: 8px 14px;
                font-size: 10px;
            }

            /* Show coach bio/credentials by default on touch (no hover) */
            .team-card-details {
                max-height: 400px;
                opacity: 1;
                margin-top: 20px;
            }

            .team-card-image {
                filter: grayscale(0%);
            }

            .beliefs-section {
                padding: 60px 0;
            }

            .beliefs-inner {
                padding: 0 24px;
            }

            .beliefs-header h2 {
                font-size: clamp(32px, 8vw, 44px);
                margin-bottom: 40px;
            }

            .beliefs-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .belief-item {
                padding: 28px 24px;
            }

            .belief-item h3 {
                font-size: 24px;
            }

            .belief-item p {
                font-size: 14px;
            }

            .belief-icon {
                width: 40px;
                height: 40px;
                margin-bottom: 14px;
            }

            .faq-section {
                padding: 50px 0;
            }

            .faq-inner {
                padding: 0 24px;
            }

            .faq-title {
                font-size: clamp(28px, 7vw, 40px);
                margin-bottom: 36px;
            }

            .faq-question-text {
                font-size: 16px;
            }

            .faq-answer-inner {
                font-size: 14px;
            }

            .location-section {
                height: auto;
                min-height: auto;
                grid-template-columns: 1fr;
            }

            .location-visual {
                height: auto;
                grid-template-rows: auto auto;
            }

            .location-image {
                min-height: 200px;
            }

            .location-map {
                min-height: 280px;
            }

            .location-content {
                padding: 70px 24px 50px;
            }

            .location-title {
                font-size: 34px;
            }

            .location-tagline {
                font-size: 13px;
                margin-bottom: 28px;
            }

            .location-item {
                padding: 14px 0;
                gap: 24px;
            }

            .location-label {
                width: 70px;
                font-size: 9px;
            }

            .location-value {
                font-size: 14px;
            }

            .location-cta {
                padding: 14px 32px;
                font-size: 11px;
            }

           

            .contact-image {
                margin-bottom: 28px;
            }

         
            .contact-title {
                font-size: clamp(28px, 7vw, 36px);
            }

            .contact-subtitle {
                font-size: 14px;
            }

            .contact-features li {
                font-size: 13px;
            }

            .contact-form-title {
                font-size: 32px;
                padding: 16px 26px;
            }

            .form-group label {
                font-size: 9px;
            }

            .form-group input,
            .form-group select,
            .form-group textarea {
                font-size: 15px;
                padding: 14px 0;
            }

            .form-submit {
                padding: 16px 36px;
                font-size: 11px;
            }

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

            /* Reset sticky on mobile - stack vertically */
            .contact-section {
                display: block;
                min-height: auto;
            }

            .contact-left {
                position: relative;
                top: auto;
                height: auto;
                overflow: visible;
             
            }

            .contact-right {
                padding: 50px 24px 60px;
            }

           
            .contact-form-title {
                font-size: 28px;
                padding: 14px 22px;
            }

            .pushpress-form-wrap iframe {
                min-height: 2500px;
                height: 2500px;
            }

            .footer-section {
                padding: 50px 24px 32px;
            }

            .footer-inner {
                flex-direction: column;
                gap: 28px;
                text-align: center;
            }

            .footer-logo {
                font-size: 18px;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 24px;
            }

            .footer-links a {
                font-size: 11px;
            }
        }

        /* Mobile Large (480px - 600px) */
        @media (max-width: 600px) {
            .hero-title {
                font-size: 30px !important;
            }

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

            .hero-cta {
                padding: 14px 32px;
            }

            .services-intro h2 {
                font-size: clamp(26px, 8vw, 36px);
            }

            .packages-header h3 {
                font-size: 28px;
            }

            .package-name {
                font-size: 26px;
            }

            .program-title {
                font-size: 28px;
            }

            .team-grid {
                padding: 0 24px;
                gap: 28px;
            }

            .team-card {
                min-height: 400px;
            }

            .team-card-name {
                font-size: 26px;
            }

            .location-content {
                padding: 60px 20px 40px;
            }

            .location-title {
                font-size: 30px;
            }

            .contact-title {
                font-size: clamp(24px, 8vw, 32px);
            }
        }

        /* Mobile Small (< 480px) */
        @media (max-width: 480px) {
            nav {
                padding: 14px 16px;
            }

            .logo {
                font-size: 16px;
                letter-spacing: 2px;
            }

            .hero-center {
                padding: 0 20px;
            }

            .hero-eyebrow {
                font-size: 10px;
                letter-spacing: 2px;
            }

            .hero-title {
                font-size: clamp(28px, 14vw, 40px);
            }

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

            .hero-cta {
                padding: 14px 28px;
                font-size: 9px;
            }

            .services-container {
                padding: 0 20px;
            }

            .services-intro h2 {
                font-size: clamp(24px, 9vw, 32px);
            }

            .services-intro p {
                font-size: 14px;
            }

            .package-card {
                padding: 28px 20px;
            }

            .program-card-content {
                padding: 28px 24px;
            }

            .program-title {
                font-size: 26px;
            }

            .program-features li {
                font-size: 13px;
            }

            .team-grid {
                padding: 0 20px;
                gap: 24px;
            }

            .team-card {
                min-height: 380px;
            }

            .team-card-overlay {
                padding: 24px;
            }

            .team-card-name {
                font-size: 24px;
            }

            .team-card-bio {
                font-size: 12px;
                line-height: 1.7;
            }

            .team-credential {
                padding: 6px 12px;
                font-size: 9px;
            }

            .beliefs-inner {
                padding: 0 20px;
            }

            .beliefs-header h2 {
                font-size: clamp(28px, 9vw, 38px);
            }

            .belief-item h3 {
                font-size: 21px;
            }

            .belief-item p {
                font-size: 13px;
            }

            .location-image {
                min-height: 160px;
            }

            .location-map {
                min-height: 240px;
            }

            .location-content {
                padding: 50px 20px 36px;
            }

            .location-title {
                font-size: 28px;
            }

            .location-item {
                flex-direction: column;
                gap: 6px;
            }

            .location-label {
                width: auto;
            }

            .contact-left,
            .contact-right {
                padding: 40px 20px;
            }

            .contact-title {
                font-size: clamp(22px, 8vw, 28px);
            }

            .contact-form-title {
                font-size: 28px;
                margin-bottom: 24px;
                padding: 14px 22px;
            }

            .footer-section {
                padding: 40px 20px 28px;
            }

            .footer-links {
                gap: 20px;
            }
        }

        /* Handle notch/safe areas on modern phones */
        @supports (padding: max(0px)) {
            .hero-section {
                padding-left: max(20px, env(safe-area-inset-left));
                padding-right: max(20px, env(safe-area-inset-right));
            }

            .footer-section {
                padding-bottom: max(28px, env(safe-area-inset-bottom));
            }
        }

        /* ========================================
           SHORT VIEWPORT ADAPTATIONS
           Fixes content cut-off on smaller laptop screens
           (13" MacBook viewport ~720px, 15" ~820px)
           ======================================== */

        /* Short viewport: 800px or less (most 13-15" laptops in landscape) */
        @media (max-height: 800px) and (min-width: 769px) {

            /* Hero section */
            .hero-title {
                font-size: clamp(40px, 7vw, 80px) !important;
                margin-bottom: 20px !important;
            }

            .hero-subtitle {
                font-size: 15px !important;
                margin-bottom: 28px !important;
            }

            .hero-cta {
                padding: 14px 30px !important;
                font-size: 12px !important;
            }

            .hero-eyebrow {
                font-size: 11px !important;
                margin-bottom: 16px !important;
            }

            /* Services/Programs section */
            .services-extended {
                padding: 70px 0 !important;
            }

            .services-header {
                padding: 0 80px 50px !important;
            }

            .services-header h2 {
                font-size: clamp(36px, 5vw, 56px) !important;
                margin-bottom: 12px !important;
            }

            /* Team/Coaches section */
            .team-section {
                padding: 80px 0 60px !important;
            }

            .team-header {
                padding: 0 40px 50px !important;
            }

            .team-header h2 {
                font-size: clamp(36px, 5vw, 52px) !important;
                margin-bottom: 12px !important;
            }

            /* Beliefs section */
            .beliefs-section {
                padding: 70px 0 !important;
            }

            .beliefs-header h2 {
                font-size: clamp(32px, 4.5vw, 52px) !important;
                margin-bottom: 14px !important;
            }

            /* Community section */
            .community-section {
                padding: 70px 0 !important;
            }

            .community-content h2 {
                font-size: clamp(36px, 4.5vw, 56px) !important;
                margin-bottom: 24px !important;
            }

            /* Testimonials section — keep heading and Google link in view */
            .testimonials-section {
                padding: 110px 0 72px !important;
            }

            .testimonials-title {
                font-size: clamp(32px, 5vw, 52px) !important;
                margin-bottom: 14px !important;
            }

            /* FAQ section */
            .faq-section {
                padding: 60px 0 !important;
            }

            .faq-title {
                font-size: clamp(32px, 4.5vw, 52px) !important;
                margin-bottom: 36px !important;
            }

            .faq-question {
                padding: 18px 0 !important;
            }

            .faq-cta-bar {
                margin-top: 40px !important;
            }

            /* Location section */
            .location-content {
                padding: 60px 50px !important;
            }

            .location-title {
                font-size: clamp(32px, 4.5vw, 52px) !important;
            }
        }

        /* Very short viewport: 700px or less (small 13" laptops, browser zoomed) */
        @media (max-height: 700px) and (min-width: 769px) {
            .hero-title {
                font-size: clamp(36px, 6vw, 64px) !important;
                margin-bottom: 16px !important;
            }

            .hero-subtitle {
                font-size: 14px !important;
                margin-bottom: 22px !important;
            }

            .hero-cta {
                padding: 12px 20px !important;
                font-size: 11px !important;
            }

            .services-extended,
            .team-section,
            .beliefs-section,
            .community-section,
            .faq-section {
                padding: 50px 0 !important;
            }

            .testimonials-section {
                padding: 100px 0 64px !important;
            }

            .services-header,
            .team-header {
                padding-bottom: 36px !important;
            }

            .services-header h2,
            .team-header h2,
            .beliefs-header h2,
            .community-content h2,
            .testimonials-title,
            .faq-title {
                font-size: clamp(28px, 4vw, 44px) !important;
                margin-bottom: 10px !important;
            }
        }

        /* Prefer reduced motion */
        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-snap-type: none;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        /* Dynamic viewport height for mobile browsers */
        @supports (height: 100dvh) {
            .snap-section {
                height: 100dvh;
            }

            .snap-section.extended {
                min-height: 100dvh;
            }
        }

        /* ========================================
           LEAD MAGNET POPUP
           ======================================== */
        .popup-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: -1;
            pointer-events: none !important;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;

        }

        .popup-overlay.active {
            opacity: 1;
            visibility: visible;
            z-index: 2000;
            pointer-events: auto !important;
            transition: opacity 0.4s ease, visibility 0.4s ease, z-index 0s;
        }

        .popup-container {
            background: var(--gray-900);
            max-width: 480px;
            width: 100%;
            max-height: 700px;
            border-radius: 4px;
            overflow: hidden;
            position: relative;
            transform: translateY(30px);
            transition: transform 0.4s ease;
        }

        .popup-overlay.active .popup-container {
            transform: translateY(0);
        }

        .popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            width: 32px;
            height: 32px;
            background: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .popup-close:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .popup-close svg {
            width: 16px;
            height: 16px;
            stroke: var(--white);
        }

        .popup-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .popup-content {
            padding: 40px;
            text-align: center;
        }

        .popup-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 16px;
        }

        .popup-title {
            font-family: var(--font-display);
            font-size: 32px;
            letter-spacing: 2px;
            text-transform: uppercase;
            line-height: 1.2;
            margin-bottom: 12px;
        }

        .popup-subtitle {
            font-size: 15px;
            font-weight: 300;
            color: var(--gray-400);

            line-height: 1.6;
        }

        .popup-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .popup-input {
            width: 100%;
            padding: 16px 20px;
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--white);
            background: var(--gray-800);
            border: 1px solid var(--gray-700);
            border-radius: 2px;
            outline: none;
            transition: border-color 0.3s;
        }

        .popup-input::placeholder {
            color: var(--gray-500);
        }

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

        .popup-submit {
            width: 100%;
            padding: 18px 24px;
            font-family: var(--font-body);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--black);
            background: var(--accent);
            border: none;
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .popup-submit:hover {
            background: var(--white);
            transform: translateY(-2px);
        }

        .popup-note {
            font-size: 12px;
            color: var(--gray-500);
            margin-top: 16px;
        }

        .popup-note a {
            color: var(--accent);
            text-decoration: none;
        }

        .popup-note a:hover {
            text-decoration: underline;
        }

        /* Popup responsive */
        @media (max-width: 540px) {
            .popup-container {
                max-width: 100%;
            }

            .popup-image {
                height: 160px;
            }

            .popup-content {
                padding: 32px 24px;
            }

            .popup-title {
                font-size: 26px;
            }

            .popup-subtitle {
                font-size: 14px;
            }

            .sub_txt_h1 {

                font-size: 20px;
            }
        }

.contact-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}
