        /* -------------------------------------------------------------
           CUSTOM PROPERTIES & RESET
        ------------------------------------------------------------- */
        :root {
            --primary: #C44A3A;
            --bg-light: #EEEEEE;
            --text-light: #EEEEEE;
            --text-dark: #C44A3A;
            --white: #FFFFFF;
            --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-family: 'Manrope', sans-serif;
            background-color: var(--primary);
            color: var(--text-light);
            -webkit-font-smoothing: antialiased;
        }

        body {
            overflow-x: hidden;
            background-color: var(--bg-light);
        }

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: var(--transition-smooth);
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition-smooth);
        }

        hr {
            border: none;
            border-top: 1px solid rgba(238, 238, 238, 0.3);
            width: 100%;
            margin: 0;
        }

        /* Typography Utilities */
        h1, h2, h3 { font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1.1; }
        p { font-weight: 300; line-height: 1.7; font-size: 1.1rem; }
        .quote-text { font-weight: 200; font-style: italic; }

        /* Elegant Scrollbar */
        ::-webkit-scrollbar { width: 6px; }
        ::-webkit-scrollbar-track { background: var(--primary); }
        ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); }

        /* -------------------------------------------------------------
           HEADER & NAVIGATION (HAMBURGER)
        ------------------------------------------------------------- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 90px;
            background-color: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(196, 74, 58, 0.1);
        }
.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 242px;          /* adjust based on your design */
    width: auto;
    margin-top: 4rem;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}
        .menu-btn {
            background-color: var(--primary);
            color: var(--text-light);
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition-smooth);
            z-index: 1002;
        }

        .menu-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(196, 74, 58, 0.2);
        }

        .hamburger {
            display: inline-block;
            width: 16px;
            height: 2px;
            background: var(--text-light);
            position: relative;
            transition: var(--transition-smooth);
        }

        .hamburger::before, .hamburger::after {
            content: '';
            position: absolute;
            width: 16px;
            height: 2px;
            background: var(--text-light);
            left: 0;
            transition: var(--transition-smooth);
        }
        .hamburger::before { top: -5px; }
        .hamburger::after { top: 5px; }

        /* Hamburger Active State */
        .menu-btn.active .hamburger { background: transparent; }
        .menu-btn.active .hamburger::before { transform: rotate(45deg); top: 0; background: var(--text-dark); }
        .menu-btn.active .hamburger::after { transform: rotate(-45deg); top: 0; background: var(--text-dark); }
        .menu-btn.active { background: var(--bg-light); color: var(--text-dark); }

        /* Menu Overlay Drawer */
        .menu-overlay {
            position: fixed;
            top: 0;
            right: -100%;
            width: 450px;
            height: 100vh;
            background: var(--white);
            z-index: 1001;
            box-shadow: -10px 0 40px rgba(0,0,0,0.05);
            transition: var(--transition-smooth);
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10%;
        }

        .menu-overlay.open { right: 0; }

        .body-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.4);
            z-index: 999;
            opacity: 0;
            pointer-events: none;
            transition: var(--transition-smooth);
        }
        .body-overlay.show { opacity: 1; pointer-events: auto; }

        .nav-links {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .nav-links a {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            position: relative;
            width: fit-content;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--text-dark);
            transition: var(--transition-smooth);
        }

        .nav-links a:hover::after { width: 100%; }

        /* -------------------------------------------------------------
           PAGE ROUTING SYSTEM SETUP
        ------------------------------------------------------------- */
        .page {
            display: none;
            padding-top: 90px;
            animation: fadeInPage 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .page.active-page { display: block; }

        @keyframes fadeInPage {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* -------------------------------------------------------------
           HOME PAGE SECTIONS
        ------------------------------------------------------------- */
        
        /* Section 01: Hero */
        .hero {
            height: calc(100vh - 90px);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
        }

        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background:  
                        url('https://i.pinimg.com/736x/89/7a/41/897a41d74a7a953535e09cce652125ba.jpg') center/cover no-repeat;
            z-index: -1;
            transform: scale(1.05);
            animation: slowReveal 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInText 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .hero-subtitle {
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.4em;
            margin-bottom: 1.5rem;
        }

        .hero-quote {
            font-size: 2.5rem;
            font-weight: 200;
            line-height: 1.4;
        }

        /* Section 02: Split Layout */
        .sec-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 80vh;
        }

        .sec-split-left {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 12% 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .sec-split-left h2 { font-size: 3.5rem; margin-bottom: 2rem; max-width: 500px; }
        .sec-split-left p { max-width: 450px; opacity: 0.9; }

        .sec-split-right { position: relative; min-height: 500px; overflow: hidden; }
        .sec-split-right img:hover { transform: scale(1.03); }

        /* Section 03: Immersive Banner */
        .sec-immersive {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 10% 5% 0 5%;
        }

        .sec-immersive-header {
            max-width: 600px;
            margin-bottom: 5rem;
        }

        .sec-immersive-header h2 { font-size: 4rem; margin-bottom: 1.5rem; }
        
        .parallax-container {
            width: 100%;
            height: 70vh;
            overflow: hidden;
            position: relative;
        }
        
        /* Simulated Parallax Viewport */
        .parallax-container img {
            height: 130%;
            top: -15%;
            position: relative;
        }

        /* Section 04: Editorial Columns */
        .sec-editorial {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 10% 5%;
        }

        .sec-editorial h2 { font-size: 4rem; margin-bottom: 6rem; }

        .editorial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 5rem;
            margin-bottom: 8srem;
        }

        .editorial-col h3 { font-size: 1.5rem; margin-bottom: 1.5rem; letter-spacing: 0; }
        .editorial-col p { font-size: 1.05rem; opacity: 0.85; text-transform: none; }

        .cinematic-banner {
            width: 100%;
            height: 80vh;
            margin-top: 8rem;
            overflow: hidden;
        }

        /* Section 05: Minimal Accordion/Dividers */
        .sec-dividers {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 10% 5%;
        }

        .sec-dividers h2 { font-size: 4rem; margin-bottom: 5rem; }

        .divider-row {
            padding: 2.5rem 0;
            display: grid;
            grid-template-columns: 1fr 2fr;
            align-items: top;
            transition: var(--transition-smooth);
        }

        .divider-row h3 { font-size: 1.8rem; font-weight: 700; }
        .divider-row p { font-size: 1.2rem; max-width: 600px; opacity: 0.9; }
        .divider-hr { border-top: 1px solid rgba(238, 238, 238, 0.4); }

        /* Section 06: Newsletter Layout */
        .sec-newsletter {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 10% 5%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .sec-newsletter-left h2 { font-size: 4rem; margin-bottom: 1.5rem; }
        .sec-newsletter-left p { max-width: 450px; opacity: 0.85; }

        .newsletter-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 3.5rem;
            border-radius: 4px;
            transition: var(--transition-smooth);
        }

        .newsletter-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-5px);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .newsletter-card input[type="email"] {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(238, 238, 238, 0.4);
            padding: 1rem 0;
            color: var(--text-light);
            font-family: 'Manrope', sans-serif;
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition-smooth);
        }

        .newsletter-card input[type="email"]:focus {
            border-bottom-color: var(--white);
        }

        .newsletter-card input[type="email"]::placeholder {
            color: rgba(238, 238, 238, 0.5);
        }

        .submit-btn {
            background: var(--bg-light);
            color: var(--text-dark);
            border: none;
            width: 100%;
            padding: 1.2rem;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            cursor: pointer;
            transition: var(--transition-smooth);
            margin-bottom: 1.5rem;
        }

        .submit-btn:hover { background: var(--white); color: #000; }

        .form-footer {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            opacity: 0.6;
        }

        .form-footer a:hover { opacity: 1; text-decoration: underline; }

        /* -------------------------------------------------------------
           FOOTER
        ------------------------------------------------------------- */
        footer {
            background-color: var(--primary);
            color: var(--text-light);
            padding: 6% 5% 3% 5%;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 2fr;
            gap: 4rem;
            padding-bottom: 5rem;
        }

        .footer-col h4 {
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            margin-bottom: 2rem;
            opacity: 0.6;
            font-weight: 600;
        }

        .footer-col p { font-size: 1rem; opacity: 0.8; max-width: 300px; }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
        .footer-col ul a { opacity: 0.8; font-size: 1rem; }
        .footer-col ul a:hover { opacity: 1; padding-left: 5px; }

        .footer-inline-form {
            display: flex;
            border-bottom: 1px solid rgba(238, 238, 238, 0.4);
            padding-bottom: 0.5rem;
        }

        .footer-inline-form input {
            background: transparent;
            border: none;
            outline: none;
            color: var(--text-light);
            padding: 0.5rem 0;
            width: 100%;
            font-family: 'Manrope', sans-serif;
        }

        .footer-inline-form button {
            background: transparent;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.85rem;
        }

        .footer-bottom {
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.7;
        }

        .footer-bottom-center { display: flex; gap: 2rem; }
        .footer-bottom-right { display: flex; gap: 1.5rem; }

        /* -------------------------------------------------------------
           INNER PAGES STYLING (ABOUT, SERVICES, CONTACT, LEGAL)
        ------------------------------------------------------------- */
        .inner-hero {
            background-color: var(--primary);
            padding: 8% 5% 4% 5%;
            border-bottom: 1px solid rgba(238,238,238,0.1);
        }

        .inner-hero h1 { font-size: 5rem; max-width: 900px; }
        
        .inner-content {
            background-color: var(--primary);
            padding: 6% 5% 10% 5%;
        }

        /* About Page Grid */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
        }

        /* Services Module */
        .services-list {
            display: flex;
            flex-direction: column;
        }

        .service-card {
            border-bottom: 1px solid rgba(238,238,238,0.2);
            padding: 4rem 0;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
        }

        .service-card h3 { font-size: 2rem; }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
        }

        .contact-info-block { margin-bottom: 3rem; }
        .contact-info-block h4 { font-size: 0.9rem; letter-spacing: 0.1em; opacity: 0.6; margin-bottom: 0.5rem; }
        .contact-info-block p { font-size: 1.5rem; }

        .contact-form .form-group { margin-bottom: 2rem; }
        .contact-form input, .contact-form textarea {
            width: 100%;
            background: transparent;
            border: none;
            border-bottom: 1px solid rgba(238,238,238,0.3);
            padding: 1rem 0;
            color: var(--text-light);
            font-family: 'Manrope', sans-serif;
            outline: none;
            font-size: 1.1rem;
        }
        .contact-form textarea { height: 120px; resize: none; }
        .contact-form input:focus, .contact-form textarea:focus { border-bottom-color: var(--white); }

        /* Legal Content Styling */
        .legal-text { max-width: 800px; }
        .legal-text h3 { font-size: 1.8rem; margin: 3rem 0 1rem 0; }
        .legal-text p { margin-bottom: 1.5rem; opacity: 0.85; }

        /* -------------------------------------------------------------
           ANIMATION KEYFRAMES
        ------------------------------------------------------------- */
        @keyframes slowReveal {
            from { transform: scale(1.1); filter: blur(5px); }
            to { transform: scale(1); filter: blur(0); }
        }

        @keyframes fadeInText {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* -------------------------------------------------------------
           RESPONSIVE DESIGN (MEDIA QUERIES)
        ------------------------------------------------------------- */
        @media (max-width: 1100px) {
            h1 { font-size: 4rem !important; }
            h2 { font-size: 3rem !important; }
            .editorial-grid { gap: 2.5rem; }
        }

        @media (max-width: 900px) {
            .sec-split { grid-template-columns: 1fr; }
            .sec-newsletter { grid-template-columns: 1fr; gap: 3rem; }
            .editorial-grid { grid-template-columns: 1fr; gap: 3rem; }
            .divider-row { grid-template-columns: 1fr; gap: 1rem; }
            .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
            .service-card { grid-template-columns: 1fr; gap: 1rem; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-bottom { flex-direction: column; gap: 1.5rem; text-align: center; }
            .footer-bottom-center, .footer-bottom-right { justify-content: center; width: 100%; }
        }

        @media (max-width: 600px) {
            header { height: 80px; padding: 0 20px; }
            .menu-overlay { width: 100%; padding: 15%; }
            .nav-links a { font-size: 2rem; }
            .hero-quote { font-size: 1.8rem; }
            .inner-hero h1 { font-size: 2.8rem !important; }
            .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .footer-bottom-center { flex-direction: column; gap: 0.8rem; }
        }

        .form-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tab {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 12px;
}

.tab.active {
    background: #C44A3A;
    color: #fff;
}

.submit-btn.danger {
    background: #333;
    color: #fff;
}

.dark-theme {
    background: #111;
    color: #eee;
}

.dark-theme .newsletter-card {
    background: #1b1b1b;
}
