        /* Baskerville Fonts */
        @font-face {
            font-family: 'Baskerville Normal';
            font-style: normal;
            font-weight: normal;
            src: local('Baskerville Normal'), url('fonts/baskvl.woff') format('woff');
        }

        @font-face {
            font-family: 'Baskerville Regular';
            font-style: normal;
            font-weight: normal;
            src: local('Baskerville Regular'), url('fonts/baskervi.woff') format('woff');
        }

        @font-face {
            font-family: 'Baskerville Light-Italic';
            font-style: normal;
            font-weight: normal;
            src: local('Baskerville Light-Italic'), url('fonts/BASKE10.woff') format('woff');
        }

        @font-face {
            font-family: 'Baskerville Light';
            font-style: normal;
            font-weight: normal;
            src: local('Baskerville Light'), url('fonts/BASKE9.woff') format('woff');
        }

        @font-face {
            font-family: 'Baskerville LightA';
            font-style: normal;
            font-weight: normal;
            src: local('Baskerville LightA'), url('fonts/BASKRV_L.woff') format('woff');
        }

        @font-face {
            font-family: 'Baskerville Bold';
            font-style: normal;
            font-weight: normal;
            src: local('Baskerville Bold'), url('fonts/BASKE1.woff') format('woff');
        }

        @font-face {
            font-family: 'Baskerville BT Roman';
            font-style: normal;
            font-weight: normal;
            src: local('Baskerville BT Roman'), url('fonts/BaskervilleBT.woff') format('woff');
        }

        @font-face {
            font-family: 'Baskerville BT Italic';
            font-style: normal;
            font-weight: normal;
            src: local('Baskerville BT Italic'), url('fonts/BaskervilleItalicBT.woff') format('woff');
        }

        @font-face {
            font-family: 'Baskerville BT Bold';
            font-style: normal;
            font-weight: normal;
            src: local('Baskerville BT Bold'), url('fonts/BaskervilleBoldBT.woff') format('woff');
        }

        @font-face {
            font-family: 'Baskerville BT Bold Italic';
            font-style: normal;
            font-weight: normal;
            src: local('Baskerville BT Bold Italic'), url('fonts/BaskervilleBoldItalicBT.woff') format('woff');
        }
    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --dark-bg: #2a2a2a;
            --light-bg: #f8f8f8;
            --text-dark: #2c2c2c;
            --text-light: #6b6b6b;
            --accent: #999;
            --white: #ffffff;
            --serif: 'Baskerville BT Roman', 'Baskerville Regular', Georgia, serif;
            --serif-italic: 'Baskerville BT Italic', 'Baskerville Light-Italic', Georgia, serif;
            --sans: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        body {
            font-family: var(--serif);
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        /* header { */
            /* position: fixed;
            top: 0;
            left: 0;
            right: 0; */
            /* background-image: url("images/bg.jpg");
            z-index: 1000;
            padding: 25px 0; */
        /* } */

        header {
            /* Change 'fixed' to 'sticky' */
            position: -webkit-sticky; /* Support for Safari */
            position: sticky;
            top: 0; 
            
            /* Keep these to ensure it spans the full width */
            left: 0;
            right: 0;
            
            /* Your existing styling */
            background-color: #ffffff; 
            background-image: url('images/bg.jpg');
            background-size: cover;
            background-position: center;
            z-index: 1000;
            padding: 25px 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: 15px 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: 80px;
            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: 50px;
            align-items: center;
        }

        .nav-menu li a {
            color: var(--white);
            text-decoration: none;
            font-size: 26px;
            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: 230px;
            left: 0;
            right: 0;
            text-align: center;
        }

        .hero-title {
            color: white;
            font-family: var(--serif-italic);
            font-size: 26px;
            font-weight: 700;
            letter-spacing: 2px;
            font-style: italic;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 140px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 60px;
            border: 4px 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: 10px;
            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: 18px;
            line-height: 2;
            color: #ffffff;
            margin-bottom: 30px;
            text-align: justify;
            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);
        }

        /* Section Title */
        .section-title {
            font-family: var(--serif);
            font-size: 60px;
            font-weight: 400;
            text-align: center;
            margin-bottom: 80px;
            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 {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            aspect-ratio: 3/4;
            background: #ccc;
        }

        .commission-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }

        .commission-item:hover img {
            transform: scale(1.1);
        }

        .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: 18px;
            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;
            aspect-ratio: 3/4;
            background: var(--accent);
        }

        .model-category img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: grayscale(100%);
            opacity: 0.6;
            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: 16px;
            letter-spacing: 2px;
            text-decoration: none;
            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;
            filter: grayscale(100%);
        }

        /* About Section */
        .about-section {
            padding: 120px 60px;
            background: var(--light-bg);
            position: relative;
            z-index: 10;
        }

        .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: 14px;
            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 #3B1C18;
            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: 24px;
            font-weight: 300;
            line-height: 1.6;
        }

        .press-arrow {
            width: 30px;
            height: 30px;
            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(--serif);
            font-size: 48px;
            font-weight: 400;
            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: 14px;
            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: 12px;
            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: 25px;
            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 {
            background: var(--dark-bg);
            color: white;
            padding: 80px 60px 50px;
            position: relative;
            z-index: 10;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 80px;
            margin-bottom: 60px;
        }

        .footer-logo {
            padding: 40px 0 20px; /* Adds space above and below */
        }

        .footer-logo img {
            height: 80px;       /* Slightly smaller than the header logo */
            width: auto;
            filter: brightness(0) invert(1); /* Optional: makes logo pure white (good for dark footers) */
            opacity: 0.7;       /* Makes it less distracting */
            transition: opacity 0.3s ease;
        }

        .footer-logo img:hover {
            opacity: 1;         /* Lights up when hovered */
        }

        .footer-address {
            color: #999;
            line-height: 2;
            font-size: 13px;
            font-weight: 300;
        }

        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }

        .social-icon {
            width: 35px;
            height: 35px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #555;
            border-radius: 50%;
            color: #999;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            border-color: white;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links h4 {
            font-size: 16px;
            margin-bottom: 25px;
            font-weight: 400;
            letter-spacing: 1px;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: #999;
            text-decoration: none;
            font-size: 16px;
            transition: color 0.3s ease;
            font-weight: 300;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1400px;
            margin: 0 auto;
            padding-top: 40px;
            border-top: 1px solid #444;
            text-align: center;
            color: #666;
            font-size: 16px;
            font-weight: 300;
        }

        .footer-bottom p {
            margin-bottom: 8px;
        }

        .footer-bottom a {
            color: #666;
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: #999;
        }

        /* 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: 40px;
            }

            .hero {
                /* margin-top: 120px; */
                height: 70vh;
            }

            .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-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }

        /* 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;
        }