        /* ==================== CSS VARIABLES ==================== */
        :root {
            /* Royal Color Palette - Brand Guide */
            --royal-gold: #D4AF37;
            --royal-gold-dark: #B8941E;
            --royal-gold-light: #E6C955;
            --royal-gold-glow: #F4E4C1;
            
            --deep-black: #000000;
            --rich-charcoal: #0A0A0A;
            --elegant-charcoal: #1A1A1A;
            --refined-charcoal: #2A2A2A;
            
            --platinum: #E5E5E5;
            --silver: #C0C0C0;
            --pearl-white: #FAFAF8;
            
            /* Semantic Colors */
            --text-primary: #FAFAF8;
            --text-secondary: #C0C0C0;
            --text-muted: #808080;
            --text-dark: #0A0A0A;
            
            --background-primary: #000000;
            --background-secondary: #0A0A0A;
            --background-tertiary: #1A1A1A;
            --background-elevated: #1F1F1F;
            
            --border-subtle: rgba(212, 175, 55, 0.15);
            --border-medium: rgba(212, 175, 55, 0.3);
            --border-strong: rgba(212, 175, 55, 0.5);
            
            /* Typography - Brand Guide Fonts */
            --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            --font-display: 'Cinzel', Georgia, serif;
            --font-elegant: 'Cormorant Garamond', Georgia, serif;
            
            /* Spacing Scale */
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2rem;
            --space-xl: 3rem;
            --space-2xl: 4rem;
            --space-3xl: 6rem;
            --space-4xl: 8rem;
            
            /* Border Radius */
            --radius-sm: 0.25rem;
            --radius-md: 0.5rem;
            --radius-lg: 1rem;
            --radius-xl: 1.5rem;
            --radius-2xl: 2rem;
            --radius-full: 9999px;
            
            /* Shadows - Royal & Rich */
            --shadow-subtle: 0 2px 8px rgba(0, 0, 0, 0.6);
            --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.7);
            --shadow-large: 0 16px 48px rgba(0, 0, 0, 0.8);
            --shadow-gold-glow: 0 0 60px rgba(212, 175, 55, 0.3);
            --shadow-gold-glow-strong: 0 0 80px rgba(212, 175, 55, 0.5);
            
            /* Transitions */
            --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
            
            /* Z-Index */
            --z-base: 1;
            --z-dropdown: 1000;
            --z-sticky: 1020;
            --z-fixed: 1030;
            --z-modal-backdrop: 1040;
            --z-modal: 1050;
        }
        
        /* ==================== GLOBAL STYLES ==================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        @media (max-width: 768px) {
            html {
                font-size: 15px;
            }
        }
        
        body {
            font-family: var(--font-primary);
            background-color: var(--background-primary);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-weight: 300;
        }
        
        /* ==================== TYPOGRAPHY ==================== */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: var(--space-lg);
            letter-spacing: 0.02em;
        }
        
        h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        h2 {
            font-family: var(--font-display);
            font-size: clamp(2rem, 4vw, 3.75rem);
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        
        h3 {
            font-family: var(--font-primary);
            font-size: clamp(1.5rem, 2.5vw, 2.25rem);
            font-weight: 500;
            letter-spacing: 0.03em;
        }
        
        h4 {
            font-family: var(--font-primary);
            font-size: clamp(1.25rem, 2vw, 1.5rem);
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        
        p {
            margin-bottom: var(--space-md);
            color: var(--text-secondary);
            font-size: 1.125rem;
            line-height: 1.9;
            font-weight: 300;
            letter-spacing: 0.01em;
        }
        
        a {
            color: var(--royal-gold);
            text-decoration: none;
            transition: all var(--transition-base);
        }
        
        a:hover {
            color: var(--royal-gold-light);
        }
        
        /* ==================== UTILITY CLASSES ==================== */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }
        
        .section {
            padding: var(--space-4xl) 0;
        }
        
        .accent-text {
            color: var(--royal-gold);
            font-weight: 600;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* ==================== ROYAL BUTTONS ==================== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1.25rem 3rem;
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: all var(--transition-base);
            border: 1px solid transparent;
            text-decoration: none;
            letter-spacing: 0.15em;
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            font-family: var(--font-primary);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btn:hover::before {
            width: 400px;
            height: 400px;
        }
        
        .btn-primary {
            background: var(--royal-gold);
            color: var(--deep-black);
            border-color: var(--royal-gold);
        }
        
        .btn-primary:hover {
            background: var(--royal-gold-light);
            border-color: var(--royal-gold-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold-glow);
        }
        
        .btn-secondary {
            background: transparent;
            color: var(--royal-gold);
            border: 1px solid var(--royal-gold);
        }
        
        .btn-secondary:hover {
            background: var(--royal-gold);
            color: var(--deep-black);
            transform: translateY(-2px);
        }
        
        .btn-lg {
            padding: 1.5rem 3.5rem;
            font-size: 0.9375rem;
        }
        
        /* ==================== NAVIGATION ==================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.95);
            backdrop-filter: blur(30px) saturate(180%);
            z-index: var(--z-fixed);
            padding: 1.5rem 0;
            border-bottom: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }
        
        .navbar.scrolled {
            padding: 1rem 0;
            box-shadow: var(--shadow-large);
            background: rgba(0, 0, 0, 0.98);
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }
        
        .navbar-brand {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            text-decoration: none;
            transition: color var(--transition-base);
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }
        
        .navbar-brand:hover {
            color: var(--royal-gold);
        }
        
        .navbar-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: var(--space-md);
        }
        
        .navbar-link {
            color: var(--text-secondary);
            font-weight: 400;
            padding: 0.75rem 1.25rem;
            transition: all var(--transition-base);
            font-size: 0.875rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        
        .navbar-link:hover {
            color: var(--royal-gold);
        }
        
        .navbar-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-primary);
            font-size: 1.75rem;
            cursor: pointer;
            font-weight: 200;
        }
        
        /* ==================== HERO SECTION - WITH PHOTO ==================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: var(--space-4xl) 0;
            position: relative;
            overflow: hidden;
            background: var(--background-primary);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            pointer-events: none;
            animation: float 25s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(3deg); }
            66% { transform: translate(-20px, 20px) rotate(-3deg); }
        }
        
        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
            position: relative;
            z-index: var(--z-base);
        }
        
        .hero-content {
            position: relative;
            z-index: var(--z-base);
        }
        
        .hero-photo-section {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hero-photo-container {
            position: relative;
            width: 500px;
            height: 750px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            border: 1px solid var(--royal-gold);
            box-shadow: var(--shadow-gold-glow);
            background: var(--background-tertiary);
        }
        
        .hero-photo-container::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
            z-index: 1;
            pointer-events: none;
        }
        
        .hero-photo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .hero-photo-accent {
            position: absolute;
            top: -20px;
            right: -20px;
            width: 150px;
            height: 150px;
            border: 1px solid rgba(212, 175, 55, 0.3);
            opacity: 0.5;
            animation: pulse 3s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.05); opacity: 0.5; }
        }
        
        .hero-label {
            display: inline-block;
            font-size: 0.75rem;
            color: var(--royal-gold);
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid var(--border-subtle);
            margin-bottom: var(--space-lg);
            text-transform: uppercase;
            letter-spacing: 0.25em;
            font-family: var(--font-primary);
        }
        
        .hero-title {
            margin-bottom: var(--space-lg);
            line-height: 1.1;
        }
        
        .hero-description {
            font-size: 1.1875rem;
            color: var(--text-secondary);
            margin-bottom: var(--space-xl);
            line-height: 1.9;
            font-weight: 300;
        }
        
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-lg);
            margin: var(--space-xl) 0;
        }
        
        .hero-stat {
            background: rgba(212, 175, 55, 0.05);
            padding: var(--space-lg);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }
        
        .hero-stat:hover {
            border-color: var(--border-medium);
            background: rgba(212, 175, 55, 0.08);
            transform: translateY(-5px);
        }
        
        .hero-stat-number {
            display: block;
            font-family: var(--font-display);
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--royal-gold);
            margin-bottom: var(--space-xs);
            line-height: 1;
            letter-spacing: 0.02em;
        }
        
        .hero-stat-label {
            display: block;
            font-size: 0.9375rem;
            color: var(--text-secondary);
            font-weight: 300;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        .hero-cta {
            display: flex;
            gap: var(--space-md);
            flex-wrap: wrap;
            margin-top: var(--space-xl);
        }
        
        /* ==================== SECTION HEADERS ==================== */
        .section-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            color: var(--royal-gold);
            font-weight: 500;
            padding: 0.5rem 1.5rem;
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid var(--border-subtle);
            margin-bottom: var(--space-md);
            text-transform: uppercase;
            letter-spacing: 0.25em;
            font-family: var(--font-primary);
        }
        
        .section-title {
            margin-bottom: var(--space-md);
        }
        
        .section-description {
            font-size: 1.1875rem;
            color: var(--text-secondary);
            line-height: 1.9;
            font-weight: 300;
        }
        
        /* ==================== UNIFIED OUTCOME CARDS - 2 COLUMNS ==================== */
        .outcome-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-xl);
            margin-top: var(--space-3xl);
        }
        
        .outcome-card {
            background: var(--background-elevated);
            padding: var(--space-2xl);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-slow);
            position: relative;
            overflow: hidden;
        }
        
        .outcome-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
            opacity: 0;
            transition: opacity var(--transition-slow);
        }
        
        .outcome-card:hover {
            border-color: var(--border-strong);
            transform: translateY(-8px);
            box-shadow: var(--shadow-gold-glow);
        }
        
        .outcome-card:hover::before {
            opacity: 1;
        }
        
        /* Hide cards 5-8 initially */
        .outcome-card.hidden {
            display: none;
        }
        
        .outcome-number {
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 500;
            color: var(--royal-gold);
            margin-bottom: var(--space-lg);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
            padding-bottom: var(--space-sm);
        }
        
        .outcome-number::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 1px;
            background: var(--royal-gold);
        }
        
        .outcome-card h3 {
            color: var(--text-primary);
            margin-bottom: var(--space-md);
            font-size: 1.5rem;
            position: relative;
            font-weight: 500;
            letter-spacing: 0.02em;
        }
        
        .outcome-result {
            font-size: 1.0625rem;
            color: var(--royal-gold);
            font-weight: 400;
            margin-bottom: var(--space-lg);
            padding: var(--space-md);
            background: rgba(212, 175, 55, 0.08);
            border-left: 2px solid var(--royal-gold);
            letter-spacing: 0.02em;
            font-style: italic;
            font-family: var(--font-elegant);
            line-height: 1.7;
        }
        
        .outcome-description {
            color: var(--text-secondary);
            margin-bottom: var(--space-lg);
            line-height: 1.9;
            font-weight: 300;
            font-size: 1.0625rem;
        }
        
        .outcome-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .outcome-list li {
            color: var(--text-secondary);
            padding: var(--space-sm) 0;
            padding-left: 1.5rem;
            position: relative;
            line-height: 1.8;
            font-size: 1.0625rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            font-weight: 300;
        }
        
        .outcome-list li:last-child {
            border-bottom: none;
        }
        
        .outcome-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 1.125rem;
            width: 4px;
            height: 4px;
            background: var(--royal-gold);
            transform: rotate(45deg);
        }
        
        /* View All Button */
        .view-all-container {
            text-align: center;
            margin-top: var(--space-2xl);
        }
        
        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
        }
        
        .view-all-btn.hidden {
            display: none;
        }
        
        /* ==================== RESULTS SHOWCASE - 3 COLUMNS ==================== */
        .results-showcase {
            background: var(--background-secondary);
            padding: var(--space-3xl);
            border: 1px solid var(--border-medium);
            margin: var(--space-3xl) 0;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-large);
        }
        
        .results-showcase::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        
        .results-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-xl);
            position: relative;
            z-index: var(--z-base);
        }
        
        .result-metric {
            text-align: center;
            padding: var(--space-xl);
            background: var(--background-elevated);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }
        
        .result-metric:hover {
            border-color: var(--border-strong);
            transform: translateY(-8px);
            box-shadow: var(--shadow-gold-glow);
        }
        
        .result-number {
            display: block;
            font-family: var(--font-display);
            font-size: 3rem;
            font-weight: 600;
            color: var(--royal-gold);
            margin-bottom: var(--space-xs);
            line-height: 1;
            letter-spacing: 0.02em;
        }
        
        .result-label {
            display: block;
            font-size: 1rem;
            color: var(--text-secondary);
            font-weight: 300;
            line-height: 1.6;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        /* ==================== CONTACT SECTION ==================== */
        .contact {
            background: var(--background-primary);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: start;
        }
        
        .contact-info {
            opacity: 0;
            transform: translateX(-30px);
        }
        
        .contact-info.loaded {
            opacity: 1;
            transform: translateX(0);
        }
        
        .contact-info h3 {
            color: var(--royal-gold);
            margin-bottom: var(--space-lg);
            font-size: 2rem;
            font-weight: 500;
        }
        
        .contact-details {
            list-style: none;
            padding: 0;
            margin-top: var(--space-xl);
        }
        
        .contact-details li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
            padding: var(--space-lg);
            margin-bottom: var(--space-md);
            background: var(--background-elevated);
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }
        
        .contact-details li:hover {
            border-color: var(--border-strong);
            transform: translateX(8px);
        }
        
        .contact-icon {
            font-size: 1.125rem;
            color: var(--royal-gold);
            flex-shrink: 0;
            font-weight: 400;
            font-family: var(--font-primary);
        }
        
        .contact-details strong {
            display: block;
            color: var(--text-primary);
            margin-bottom: 0.375rem;
            font-weight: 500;
            font-size: 1.0625rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        .contact-details p {
            margin: 0;
            color: var(--text-secondary);
            font-size: 1.0625rem;
            font-weight: 300;
        }
        
        .contact-form {
            background: var(--background-elevated);
            padding: var(--space-2xl);
            border: 1px solid var(--border-subtle);
            opacity: 0;
            transform: translateX(30px);
            box-shadow: var(--shadow-large);
        }
        
        .contact-form.loaded {
            opacity: 1;
            transform: translateX(0);
        }
        
        .form-group {
            margin-bottom: var(--space-lg);
        }
        
        .form-group label {
            display: block;
            margin-bottom: var(--space-sm);
            color: var(--text-primary);
            font-weight: 400;
            font-size: 0.9375rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 1rem 1.25rem;
            background: var(--background-secondary);
            border: 1px solid var(--border-subtle);
            color: var(--text-primary);
            font-family: var(--font-primary);
            font-size: 1.0625rem;
            transition: all var(--transition-base);
            font-weight: 300;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--royal-gold);
            background: var(--background-tertiary);
        }
        
        .form-group textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--background-secondary);
            padding: var(--space-3xl) 0 var(--space-lg);
            border-top: 1px solid var(--border-medium);
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-2xl);
            margin-bottom: var(--space-2xl);
        }
        
        .footer-section h3 {
            color: var(--royal-gold);
            margin-bottom: var(--space-md);
            font-size: 1.125rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        .footer-section p {
            color: var(--text-secondary);
            margin-bottom: var(--space-sm);
            font-size: 1.0625rem;
            font-weight: 300;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: var(--space-sm);
        }
        
        .footer-links a {
            color: var(--text-secondary);
            transition: color var(--transition-base);
            font-size: 1.0625rem;
            font-weight: 300;
            letter-spacing: 0.02em;
        }
        
        .footer-links a:hover {
            color: var(--royal-gold);
            transform: translateX(5px);
            display: inline-block;
        }
        
        .social-links {
            display: flex;
            gap: var(--space-md);
            margin-top: var(--space-md);
        }
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--background-tertiary);
            border: 1px solid var(--border-subtle);
            color: var(--royal-gold);
            font-size: 0.875rem;
            transition: all var(--transition-base);
            font-weight: 400;
            font-family: var(--font-primary);
        }
        
        .social-link:hover {
            background: var(--royal-gold);
            color: var(--deep-black);
            border-color: var(--royal-gold);
            transform: translateY(-4px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: var(--space-lg);
            border-top: 1px solid var(--border-subtle);
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 300;
            letter-spacing: 0.05em;
        }
        
        .footer-tagline {
            font-family: var(--font-elegant);
            font-style: italic;
            color: var(--royal-gold);
            margin-top: 0.5rem;
            font-size: 1.0625rem;
        }
        
        /* ==================== ANIMATIONS ==================== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }
        
        .loading {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .loaded {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ==================== RESPONSIVE DESIGN ==================== */
        @media (max-width: 1024px) {
            :root {
                --space-4xl: 6rem;
                --space-3xl: 4rem;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
            }
            
            .hero-photo-section {
                order: -1;
            }
            
            .hero-photo-container {
                width: 100%;
                max-width: 400px;
                height: 500px;
            }
            
            /* Results grid stays 3 columns on tablet */
            .results-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            :root {
                --space-4xl: 4rem;
                --space-3xl: 3rem;
                --space-2xl: 2rem;
            }
            
            .navbar-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(0, 0, 0, 0.98);
                backdrop-filter: blur(30px);
                flex-direction: column;
                padding: var(--space-lg);
                border-top: 1px solid var(--border-medium);
                box-shadow: var(--shadow-large);
            }
            
            .navbar-menu.active {
                display: flex;
            }
            
            .navbar-toggle {
                display: block;
            }
            
            .navbar-cta {
                width: 100%;
            }
            
            .navbar-cta .btn {
                width: 100%;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .outcome-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
            }
            
            .hero-photo-container {
                height: 450px;
            }
            
            /* Results grid becomes 1 column on mobile */
            .results-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            html {
                font-size: 14px;
            }
            
            .hero-photo-container {
                height: 400px;
            }
        }
