  :root {
            --charcoal: #1B211A;
            --accent-red: #BF092F;
            --white: #ff8c8c;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: #ff8c8c;
            color: var(--charcoal);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* FLOATING NAV STYLING */
        .nav-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 60px;
            z-index: 1000;
        }

        .nav-card {
            background: #ff8c8c;
            padding: 15px 40px;
            border-radius: 4px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            margin-right: 0;
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .nav-link {
            font-size: 11px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            font-weight: 500;
            margin: 0 20px;
            color: black;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent-red);
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--accent-red);
        }

        /* HERO STYLING */
        .hero-section {
            height: 100vh;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 80px;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
        }

        /* SCROLL REVEAL ANIMATIONS */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ASYMMETRIC GRID */
        .story-block {
            margin: 100px 40px;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .story-image {
            flex: 1;
            height: 500px;
            background-size: cover;
            background-position: center;
            filter: grayscale(100%);
            transition: filter 0.6s ease;
        }

        .story-image:hover {
            filter: grayscale(0%);
        }

        .story-text {
            flex: 1;
            padding: 40px;
        }

        /* SECTION 1 CARDS */
        .heighted-card {
            position: relative;
            height: 550px;
            overflow: hidden;
            margin: 15px;
            transition: transform 0.5s ease;
        }
        
        .heighted-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1.5s ease;
        }

        .heighted-card:hover img {
            transform: scale(1.1);
        }

        .card-overlay-text {
            position: absolute;
            bottom: 40px;
            left: 40px;
            right: 40px;
            color: #ff8c8c;
            z-index: 2;
        }

        /* HAMBURGER */
        .hamburger {
            display: none;
            cursor: pointer;
            padding: 10px;
            background: #ff8c8c;
            border-radius: 4px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        @media (max-width: 768px) {
            .nav-card { display: none; }
            .hamburger { display: block; }
            .nav-container { padding: 20px; }
            .story-block { flex-direction: column !important; margin: 40px 20px; gap: 20px; }
            .hero-section { padding: 40px; }
            .hero-title { font-size: 3rem !important; }
            .hero-para { font-size: 1rem !important; }
        }