        /* Futura Cyrillic Fonts */
        @font-face {
            font-family: 'Futura Cyrillic';
            font-style: normal;
            font-weight: 300;
            src: local('Futura Cyrillic Light'), url('fonts/FuturaCyrillicLight.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura Cyrillic';
            font-style: normal;
            font-weight: 400;
            src: local('Futura Cyrillic Book'), url('fonts/FuturaCyrillicBook.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura Cyrillic';
            font-style: normal;
            font-weight: 500;
            src: local('Futura Cyrillic Medium'), url('fonts/FuturaCyrillicMedium.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura Cyrillic';
            font-style: normal;
            font-weight: 600;
            src: local('Futura Cyrillic Demi'), url('fonts/FuturaCyrillicDemi.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura Cyrillic';
            font-style: normal;
            font-weight: 700;
            src: local('Futura Cyrillic Bold'), url('fonts/FuturaCyrillicBold.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura Cyrillic';
            font-style: normal;
            font-weight: 800;
            src: local('Futura Cyrillic Extra Bold'), url('fonts/FuturaCyrillicExtraBold.woff') format('woff');
            font-display: swap;
        }

        @font-face {
            font-family: 'Futura Cyrillic';
            font-style: normal;
            font-weight: 900;
            src: local('Futura Cyrillic Heavy'), url('fonts/FuturaCyrillicHeavy.woff') format('woff');
            font-display: swap;
        }
    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dark-bg: #523622;
            --light-bg: #f8f8f8;
            --text-dark: #2c2c2c;
            --text-light: #6b6b6b;
            --accent: #999;
            --white: #ffffff;
            --primary-font: 'Futura Cyrillic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            font-family: var(--primary-font);
            font-weight: 400;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--dark-bg);
            z-index: 1000;
            padding: 55px 0;
            box-sizing: border-box; 
            transition: background 0.4s ease, transform 0.3s ease, padding 0.4s ease, box-shadow 0.4s ease;
        }

        /* This class is added by JS when the user scrolls down */
        header.header-scrolled {
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
            padding: 55px 0; /* Optional: Shrink the header height slightly when scrolling */
        }

        .header-container {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Logo - Centered */
        .logo-container {
            text-align: center;
            margin-bottom: 25px;
        }

        /* Container for the logo */
        .logo {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* The clickable link */
        .logo a {
            display: inline-block;
            line-height: 0;
        }

        /* The actual image */
        .logo img {
            height: 100px;
            width: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        /* Subtle hover effect */
        .logo img:hover {
            transform: scale(1.05);
        }

        /* Navigation - Centered Below Logo */
        nav {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 100px;
            align-items: center;
        }

        .nav-menu li a {
            color: var(--white);
            text-decoration: none;
            font-size: 30px;
            font-weight: 300;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu li a::after {
            content: '.';
            opacity: 0.7;
        }

        .nav-menu li a:hover {
            color: var(--accent);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            position: absolute;
            top: 40px;
            right: 40px;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: white;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            height: 100vh;
            background: var(--dark-bg);
            z-index: 999;
            padding: 100px 40px;
            transition: right 0.4s ease;
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav ul {
            list-style: none;
        }

        .mobile-nav ul li {
            margin-bottom: 30px;
        }

        .mobile-nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 24px;
            font-weight: 300;
        }

        /* Hero Section */
        .hero {
            margin-top: 150px;
            position: relative;
            height: 90vh;
            overflow: hidden;
            background: #000;
            z-index: 10;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            bottom: 140px;
            left: 0;
            right: 0;
            text-align: center;
        }

        .hero-title {
            color: white;
            /* font-family: var(--primary-font); */
            font-family: 'Georgia', serif;
            font-size: 25px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 90px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 15px;
            cursor: pointer;
            z-index: 20;
        }

        .scroll-indicator::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 8px;
            background: rgba(255,255,255,0.7);
            border-radius: 2px;
            animation: scroll 2s infinite;
        }

        @keyframes scroll {
            0% { top: 8px; opacity: 1; }
            100% { top: 25px; opacity: 0; }
        }

        /* Video Banner - Parallax Effect */
        .video-banner {
            width: 100%;
            height: 100vh;
            position: fixed;
            top: 0;
            left: 0;
            overflow: hidden;
            background: #000;
            z-index: 1;
        }

        .video-banner video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Content Wrapper - sits above fixed video */
        .content-wrapper {
            position: relative;
            z-index: 5;
        }

        /* Intro Section - transparent to show video behind */
        .intro-section {
            padding: 100px 60px;
            background: transparent;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 5;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .intro-text {
            font-size: 22px;
            line-height: 2;
            color: var(--white);
            text-align: center;
            font-weight: 300;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
            background: rgba(0,0,0,0.3);
            padding: 20px;
            border-radius: 8px;
            backdrop-filter: blur(5px);
        }

         .intro-text  p{
            margin-bottom: 15px;
         }

        /* Section Title */
        .section-title {
            /* font-family: var(--primary-font); */
            font-family: 'Georgia', serif;
            font-size: 70px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 40px;
            color: var(--text-dark);
            letter-spacing: 2px;
        }

        /* Commissions Section - solid background to cover video */
        .commissions-section {
            padding: 120px 60px;
            background: var(--light-bg);
            position: relative;
            z-index: 10;
        }

        .commissions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto 50px;
        }

        /* Commission Item - Fixed Height */
        .commission-item {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            height: 250px; /* Fixed height for all items */
        }

        .commission-item a {
            display: block;
            width: 100%;
            height: 100%;
            position: relative;
        }

        /* Image Styles */
        .commission-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease, opacity 0.3s ease;
        }

        .commission-item:hover img {
            transform: scale(1.1);
            opacity: 0.7;
        }

        /* Overlay with Commission Name */
        .commission-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .commission-item:hover .commission-overlay {
            opacity: 1;
        }

        .commission-name {
            color: white;
            font-size: 18px;
            font-weight: 500;
            letter-spacing: 2px;
            text-align: center;
            padding: 20px;
            font-family: var(--primary-font);
        }

        /* See All Button */
        .see-all {
            text-align: center;
            margin-top: 60px;
        }

        .btn-primary {
            display: inline-block;
            padding: 15px 50px;
            background: var(--dark-bg);
            color: white;
            text-decoration: none;
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: lowercase;
            border-radius: 30px;
            transition: all 0.4s ease;
            font-weight: 300;
        }

        .btn-primary:hover {
            background: #444;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        /* Models Section */
        .models-section {
            padding: 120px 60px;
            background: white;
            position: relative;
            z-index: 10;
        }

        .models-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto 40px;
        }

        .model-category {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            background: var(--accent);
        }

        .model-category a {
            display: block;
            width: 100%;
            height: 100%;
            text-decoration: none;
            position: relative;
        }

        .model-category img {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: all 0.7s ease;
        }

        .model-category:hover img {
            opacity: 0.4;
            transform: scale(1.08);
        }

        .model-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            pointer-events: none;
        }

        .model-category-title {
            font-size: 36px;
            font-weight: 300;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 12px;
        }

        .model-category-link {
            font-size: 11px;
            letter-spacing: 2px;
            color: white;
            font-weight: 300;
        }

        .new-faces-banner {
            width: 100%;
            height: 500px;
            position: relative;
            overflow: hidden;
            margin-top: 40px;
        }

        .new-faces-banner img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* About Section */
        .about-section {
            padding: 120px 60px;
            background: var(--light-bg);
            position: relative;
            z-index: 10;
        }

        .about-section .section-title{
            margin-bottom: 10px !important;
        }

        .about-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-top: 80px;
        }

        .about-image-container {
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text-block {
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: var(--dark-bg);
            padding: 60px 50px;
            color: white;
        }

        .about-text-block h3 {
            font-size: 28px;
            margin-bottom: 30px;
            font-weight: 300;
            letter-spacing: 1px;
        }

        .about-text-block ul {
            list-style: none;
            line-height: 2.2;
            font-size: 18px;
            font-weight: 300;
        }

        .about-text-block ul li {
            margin-bottom: 12px;
        }

        /* Press Section */
        .press-section {
            padding: 120px 60px;
            background: rgba(255, 255, 255, 0.9);
            position: relative;
            z-index: 10;
        }

        .press-list {
            max-width: 1000px;
            margin: 0 auto;
        }

        .press-item {
            border-bottom: 1px solid #e5e5e5;
            padding: 35px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            text-decoration: none;
            color: var(--text-dark);
            transition: all 0.3s ease;
        }

        .press-item:hover {
            padding-left: 30px;
            background: #fafafa;
        }

        .press-content {
            flex: 1;
        }

        .press-title {
            font-size: 28px;
            font-weight: 300;
            line-height: 1.6;
        }

        .press-arrow {
            width: 24px;
            height: 24px;
            stroke: var(--accent);
            transition: transform 0.3s ease;
            flex-shrink: 0;
            margin-left: 30px;
        }

        .press-item:hover .press-arrow {
            transform: translateX(10px);
        }

        /* Dual Section */
        .dual-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: var(--light-bg);
            position: relative;
            z-index: 10;
        }

        .clients-section,
        .applicants-section {
            padding: 120px 60px;

        }

        .clients-section {
            background: var(--light-bg);

        }

        .applicants-section {
            background: white;

        }

        .section-title-small {
            font-family: var(--primary-font);
            font-size: 48px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 60px;
            color: var(--text-dark);
            letter-spacing: 2px;
        }

        .form-container {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 16px;
            color: var(--text-light);
            font-weight: 300;
            letter-spacing: 1px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 0;
            border: none;
            border-bottom: 1px solid #ddd;
            background: transparent;
            font-size: 16px;
            font-family: inherit;
            transition: border-color 0.3s ease;
            font-weight: 300;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom-color: var(--text-dark);
        }

        .form-group textarea {
            min-height: 100px;
            resize: vertical;
        }

        .checkbox-wrapper {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .checkbox-wrapper input[type="checkbox"] {
            width: auto;
        }

        .checkbox-wrapper label {
            font-size: 12px;
            margin: 0;
        }

        .submit-btn {
            background: var(--dark-bg);
            color: white;
            border: none;
            padding: 15px 50px;
            font-size: 16px;
            letter-spacing: 2px;
            text-transform: lowercase;
            cursor: pointer;
            border-radius: 30px;
            transition: all 0.4s ease;
            font-weight: 300;
        }

        .submit-btn:hover {
            background: #444;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .applicants-content {
            text-align: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .applicants-image-container {
            position: relative;
            width: 320px;
            height: 320px;
            margin: 0 auto 40px;
            border-radius: 50%;
            overflow: hidden;
            cursor: pointer;
        }

        .applicants-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .applicants-image-container:hover .applicants-image {
            transform: scale(1.1);
        }

        .applicants-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            letter-spacing: 2px;
            font-weight: 300;
        }

        .apply-title {
            font-size: 24px;
            margin-bottom: 25px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .apply-text {
            color: var(--text-light);
            font-size: 18px;
            line-height: 2;
            margin-bottom: 40px;
            font-weight: 300;
        }

        /* =============================================
        FOOTER
        ============================================= */

        /* ── Footer ── */
        footer {
            background: var(--dark-bg);
            border-top: 2px solid #888 !important;
            padding: 50px 60px 0 !important;
        }

        .footer-main {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding-bottom: 40px;
        }

        .footer-left {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .footer-logo img {
            height: 80px;
            width: auto;
            display: block;
        }

        .footer-address {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.9;
            font-size: 14px;
            font-weight: 300;
        }

        /* Social icons - right side */
        .footer-right {
            display: flex;
            align-items: flex-start;
            padding-top: 10px;
        }

        .footer-social {
            display: flex;
            gap: 18px;
            align-items: center;
        }

        .social-icon {
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .social-icon:hover {
            color: white;
        }

        .social-icon svg {
            width: 18px;
            height: 18px;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0 25px;
            border-top: 1px solid rgba(255,255,255,0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .footer-bottom-left {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .footer-bottom-left p {
            font-size: 13px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .footer-legal {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: underline;
            font-size: 13px;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: white;
        }

        .footer-bottom-right a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 13px;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .footer-bottom-right a:hover {
            color: white;
        }

        /* Remove old footer classes no longer needed */
        .footer-links,
        .footer-content {
            display: none;
        }


        /* Responsive */
        @media (max-width: 968px) {
            header {
                padding: 20px 0;
            }

            .logo img {
                height: 60px;
            }

            .nav-menu {
                display: none;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-nav {
                display: block;
                margin-top: 30px;
            }

            .hero {
                margin-top: 120px;
                height: 60vh;
            }

            .intro-section,
            .commissions-section,
            .models-section,
            .about-section,
            .press-section,
            .clients-section,
            .applicants-section {
                padding: 60px 30px;
            }

            .section-title {
                font-size: 40px;
            }

            .commissions-grid,
            .models-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .dual-section {
                grid-template-columns: 1fr;
            }

            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            footer {
                padding: 40px 30px 0;
            }

            .footer-main {
                flex-direction: column;
                gap: 30px;
            }

            .footer-right {
                padding-top: 0;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 20px 0 25px;
            }
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 1s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        header {
            animation: fadeDown 0.8s ease;
        }


        /* Responsive Design */
        @media (max-width: 968px) {
            .commissions-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .commission-item {
                height: 300px;
            }
            
            .commission-name {
                font-size: 14px;
            }
        }

        @media (max-width: 600px) {
            .commissions-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .commission-item {
                height: 350px;
            }
            
            .commission-name {
                font-size: 12px;
            }
        }


    @media (max-width: 600px) {
        .footer-social {
            gap: 14px;
        }

        .footer-legal {
            flex-direction: column;
            gap: 5px;
        }
    }