        :root { scroll-behavior: smooth; }
        body { background-color: #FFFFFF; color: #000000; font-family: 'Barlow', sans-serif; overflow-x: hidden; }

        /* Typography Mapping */
        .barlow-thin { font-weight: 100; }
        .barlow-extralight { font-weight: 200; }
        .barlow-light { font-weight: 300; }
        .barlow-regular { font-weight: 400; }
        .barlow-medium { font-weight: 500; }
        .barlow-semibold { font-weight: 600; }
        .barlow-bold { font-weight: 700; }
        .barlow-medium-italic { font-weight: 500; font-style: italic; }

        /* Layout Margins */
        .editorial-margin { max-width: 1440px; margin-left: auto; margin-right: auto; padding-left: 8%; padding-right: 8%; }

        /* Animations */
        .fade-in { opacity: 0; transform: translateY(30px); transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1); }
        .fade-in.visible { opacity: 1; transform: translateY(0); }

        /* Header Navigation */
        .nav-link { position: relative; transition: opacity 0.3s; }
        .nav-link::after {
            content: ''; position: absolute; bottom: -2px; left: 0; width: 0;
            height: 1px; background: #000; transition: width 0.4s ease;
        }
        .nav-link:hover::after { width: 100%; }

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    padding-left: 8%;   /* match editorial-margin padding */
    padding-right: 8%;
    box-sizing: border-box;
}

.hero-bg {
    width: 100%;        /* fill the container minus padding */
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    animation: panEffect 40s infinite alternate;
}
     @keyframes panEffect { 0% { transform: scale(1.1) translateX(-2%); } 100% { transform: scale(1.1) translateX(2%); } }

        /* Page Routing */
        .page-content { display: none; }
        .page-content.active { display: block; }

        /* Watch Cards */
        .watch-card { transition: opacity 0.5s ease; cursor: pointer; border-bottom: 1px solid transparent; padding-bottom: 2rem; }
        .watch-card:hover { border-bottom-color: #E5E5E5; }

        /* Overlays */
        .overlay { 
            position: fixed; inset: 0; background: white; z-index: 1000; 
            display: none; opacity: 0; transition: opacity 0.4s ease;
        }
        .overlay.active { display: block; opacity: 1; }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 5px; }
        ::-webkit-scrollbar-track { background: #fff; }
        ::-webkit-scrollbar-thumb { background: #000; }

        /* Layout Grid for Sub-Pages */
        .subpage-section { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: start; padding-bottom: 8rem; border-bottom: 1px solid #E5E5E5; margin-bottom: 8rem; }
        @media (min-width: 1024px) {
            .subpage-section { grid-template-columns: 250px 1fr 350px; }
        }
