        /* 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 {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--dark-bg);
            /* background: rgba(255, 255, 255, 0.98); */
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 25px 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .logo-container {
            flex-shrink: 0;
        }

        .logo img {
            height: 70px;
            width: auto;
            display: block;
            transition: opacity 0.3s ease;
        }

        .logo img:hover {
            opacity: 0.8;
        }

        /* Navigation Menu */
        nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 45px;
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-size: 18px;
            font-weight: 400;
            letter-spacing: 1.2px;
            text-transform: capitalize;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: #b66e41;
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: #b66e41;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        /* Header CTA Button */
        .header-cta {
            flex-shrink: 0;
        }

        .btn-book-talent {
            display: inline-block;
            padding: 12px 32px;
            background: #b66e41;
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .btn-book-talent:hover {
            background: #9a5a35;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(182, 110, 65, 0.3);
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 2px;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 999;
            padding: 100px 40px;
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .mobile-nav.active {
            transform: translateX(0);
        }

        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav li {
            margin-bottom: 30px;
        }

        .mobile-nav a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 24px;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: capitalize;
            transition: color 0.3s ease;
        }

        .mobile-nav a:hover {
            color: #b66e41;
        }

        /* ────────────────────────────────────────────────────────────
        HERO SECTION - Updated with New Content
        ──────────────────────────────────────────────────────────── */

        .hero {
            position: relative;
            height: 100vh;
            width: 100%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.3) 0%,
                    rgba(0, 0, 0, 0.5) 50%,
                    rgba(0, 0, 0, 0.6) 100%);
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-content {
            max-width: 900px;
            padding: 0 60px;
            text-align: center;
            color: white;
            z-index: 3;
            animation: heroFadeIn 1.2s ease-out;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-brand {
            font-family: 'Georgia', serif;
            font-size: 72px;
            font-weight: 700;
            letter-spacing: 8px;
            margin: 0 0 20px 0;
            text-transform: uppercase;
            color: white;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .hero-tagline {
            font-family: var(--primary-font);
            font-size: 32px;
            font-weight: 300;
            letter-spacing: 3px;
            margin: 0 0 30px 0;
            color: rgba(255, 255, 255, 0.95);
        }

        .hero-description {
            font-size: 22px;
            font-weight: 300;
            line-height: 1.8;
            letter-spacing: 0.5px;
            margin: 0 0 50px 0;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Hero Buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-hero {
            display: inline-block;
            padding: 16px 45px;
            font-size: 16px;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .btn-hero.btn-primary {
            background: white;
            color: var(--text-dark);
            border-color: white;
        }

        .btn-hero.btn-primary:hover {
            background: transparent;
            color: white;
            border-color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        .btn-hero.btn-secondary {
            background: transparent;
            color: white;
            border-color: white;
        }

        .btn-hero.btn-secondary:hover {
            background: white;
            color: var(--text-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 50px;
            border: 2px solid rgba(255, 255, 255, 0.7);
            border-radius: 25px;
            cursor: pointer;
            z-index: 3;
            transition: all 0.3s ease;
        }

        .scroll-indicator::before {
            content: '';
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 6px;
            height: 10px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 3px;
            animation: scrollAnimation 2s infinite;
        }

        @keyframes scrollAnimation {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
                opacity: 1;
            }

            50% {
                transform: translateX(-50%) translateY(15px);
                opacity: 0;
            }
        }

        .scroll-indicator:hover {
            border-color: white;
        }

        /* 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::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            pointer-events: none;
        }


        .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: 600;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 12px;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
        }

        .model-category-link {
            font-size: 16px;
            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: 20px;
            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 var(--text-dark);
            background: transparent;
            font-size: 18px;
            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 select {
            width: 100%;
            padding: 14px;
            background: white;
            border: 1px solid #ddd;
            font-size: 18px;
            font-family: var(--primary-font);
            color: var(--text-dark);
            border-radius: 4px;
            cursor: pointer;
            transition: border-color 0.3s ease;
        }

        .form-group select:focus {
            outline: none;
            border-color: #b66e41;
        }

        .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: #b66e41;
            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:  #9a5a35;
            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-subtitle {
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 25px;
            color: var(--text-dark);
        }

        .apply-bold {
            font-weight: 500;
            font-style: italic;
            color: #b66e41;
        }

        .apply-list {
            list-style: none;
            padding: 0;
            margin: 15px 0;
            /* text-align: left; */
        }

        .apply-list li {
            padding: 5px 0 5px 25px;
            font-size: 20px;
            position: relative;
        }
/* 
        .apply-list li::before {
            content: '•';
            position: absolute;
            left: 10px;
            color: #b66e41;
            font-weight: bold;
        } */

        .apply-closing {
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
            font-size: 15px;
            line-height: 1.8;
        }

        .apply-text {
            color: var(--text-light);
            line-height: 2;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .apply-text h4 {
            font-size: 22px;
            font-weight: 500;
            margin: 30px 0 15px;
            color: var(--text-dark);
            letter-spacing: 0.5px;
        }

        .apply-text {
            text-align: left;
        }

        .apply-text p {
            font-size: 20px;
            margin: 15px 0;
        }


        /* =============================================
        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-tagline {
            font-size: 20px;
            font-weight: 400;
            letter-spacing: 1px;
            margin: 10px 0;
            color: rgba(255, 255, 255, 0.85);
        }

        .footer-statement {
            font-size: 18px;
            font-weight: 300;
            line-height: 1.8;
            margin: 15px 0 25px;
            color: rgba(255, 255, 255, 0.75);
        }

        .footer-address {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.9;
            font-size: 18px;
            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: 16px;
            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: 16px;
            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: 16px;
            font-weight: 300;
            transition: color 0.3s ease;
        }

        .footer-bottom-right a:hover {
            color: white;
        }




        /* ────────────────────────────────────────────────────────────
        RESPONSIVE - Header & Hero
        ──────────────────────────────────────────────────────────── */

        @media (max-width: 1060px) {
            .logo img {
                height: 50px;
            }
        }

        @media (max-width: 968px) {
            header {
                padding: 20px 0;
            }

            .header-container {
                padding: 0 30px;
            }

            .logo img {
                height: 60px;
            }

            /* Hide desktop nav */
            nav,
            .header-cta {
                display: none;
            }

            /* Show mobile menu button */
            .mobile-menu-btn {
                display: flex;
                margin-left: 10px;
            }

            .mobile-nav {
                display: block;
                margin-top: 50px;

            }

            .hero {
                margin-top: 120px;
                height: 60vh;
            }

            /* Hero responsive */
            .hero-brand {
                font-size: 48px;
                letter-spacing: 4px;
            }

            .hero-tagline {
                font-size: 24px;
                letter-spacing: 2px;
            }

            .hero-description {
                font-size: 15px;
            }

            .hero-content {
                padding: 0 30px;
            }

            .btn-hero {
                padding: 14px 35px;
                font-size: 12px;
            }


            .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;
            }
        }

        @media (max-width: 600px) {

            .hero {
                height: 90vh;
            }

            .hero-brand {
                font-size: 36px;
                letter-spacing: 3px;
            }

            .hero-tagline {
                font-size: 20px;
                letter-spacing: 1.5px;
                margin-bottom: 20px;
            }

            .hero-description {
                font-size: 18px;
                line-height: 1.7;
                margin-bottom: 35px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .btn-hero {
                width: 100%;
                max-width: 280px;
            }

            .footer-social {
                gap: 14px;
            }

            .footer-legal {
                flex-direction: column;
                gap: 5px;
            }
        }

          @media (max-width: 320px) {
            .hero {
                height: 120vh;
            }
        }


        /* 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;
        }
