    .hero-description, 
    .section-description, 
    .project-description, 
    .programme-description {
        text-align: justify;
        text-justify: inter-word; /* Creates even, clean gaps between words */
    }

    /* Hero Section */
        .hero {
            /* Reduced from 70vh to 55vh to keep it "above the fold" on desktop */
            min-height: 55vh; 
            background: linear-gradient(180deg, #1A241E 0%, #0D1410 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            /* Space for your fixed navbar - keep this as is */
            padding-top: 100px; 
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            opacity: 0.3;
            background-image: 
                linear-gradient(rgba(198, 168, 103, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(198, 168, 103, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* Ensure the orb stays behind the text but visible */
        .hero-orb {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(45, 90, 61, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            filter: blur(80px);
            top: -10%;
            right: -5%;
            z-index: 0;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            /* Significantly reduced vertical padding */
            /* Top: 40px, Bottom: 60px */
            padding: 40px 0 60px;
            position: relative;
            z-index: 2;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
        }

        .breadcrumb a {
            color: #888;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .breadcrumb a:hover {
            color: #C6A867;
        }

        .breadcrumb-separator {
            color: #555;
        }

        .breadcrumb-current {
            color: #C6A867;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 10px 24px;
            background: rgba(198, 168, 103, 0.2);
            border-radius: 100px;
            border: 1px solid rgba(198, 168, 103, 0.4);
            margin-bottom: 24px;
        }

        .hero-badge-text {
            font-family: 'DM Sans', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #C6A867;
        }

        .hero-title {
            font-family: 'Playfair Display', Georgia, serif;
            /* Keeps the font large but tightens the line height */
            font-size: clamp(38px, 5vw, 60px); 
            font-weight: 400;
            color: #FFFFFF;
            line-height: 1.1;
            max-width: 900px;
            margin-bottom: 20px; /* Reduced from 24px */
        }

        .hero-title-highlight {
            font-style: italic;
            background: linear-gradient(135deg, #C6A867 0%, #E8D5A3 50%, #C6A867 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-family: 'DM Sans', sans-serif;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: #C6A867;
            margin-bottom: 20px;
        }

        .hero-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px; /* Slightly smaller for a tighter look */
            color: #A8A49C;
            line-height: 1.6; /* Tighter line height */
            max-width: 850px; /* Wider to take up less vertical rows */
            margin-bottom: 0;
        }

        /* Project Cards Section */
        .projects-section {
            background: #FAFAF8;
            padding: 120px 0;
            overflow: hidden;
        }
        
        .projects-row {
            display: flex;
            flex-direction: row; /* Forces same line */
            justify-content: center; /* Centers the row of cards */
            gap: 28px;
            width: 100%;
            max-width: 1300px;
            margin: 0 auto;
        }

        .projects-wrapper {
            max-width: 1400px; /* Limits width to keep 3 cards comfortable */
            margin: 0 auto;
            padding: 0 40px;
        }

        .projects-scroll-container {
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 40px 0;
            margin: 0 -40px;
            padding-left: 40px;
        }

        .projects-scroll-container::-webkit-scrollbar {
            display: none;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-eyebrow {
            font-family: 'DM Sans', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #2D5A3D;
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: clamp(36px, 5vw, 52px);
            font-weight: 400;
            color: #1A241E;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .section-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 17px;
            color: #666;
            line-height: 1.8;
            max-width: 700px;
            margin: 0 auto;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 420px));
            gap: 32px;
            justify-content: center; /* Centers the cards */
        }

        /* Ensure the card has position:relative for the absolute number badge */
        .project-card {
            background: #FFFFFF;
            border-radius: 24px;
            border: 1px solid rgba(0,0,0,0.06);
            flex: 1;
            max-width: 420px;
            display: flex;
            flex-direction: column;
            transition: all 0.4s ease;
            overflow: hidden;
            position: relative;  /* required for .project-number absolute positioning */
        }

        .project-card:last-child {
            margin-right: 0;  /* was 40px — this was causing the asymmetry */
        }

        .project-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 24px 56px rgba(0,0,0,0.12);
        }

        .scroll-hint {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
            font-family: 'DM Sans', sans-serif;
            font-size: 13px;
            color: #888;
            animation: scrollHint 2s ease-in-out infinite;
        }

        @keyframes scrollHint {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }

        .project-number {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.95);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 20px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            z-index: 2;
        }

        .project-image {
            aspect-ratio: 16/10;
            background: linear-gradient(135deg, #2D3A32 0%, #1A241E 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .project-icon {
            font-size: 72px;
            position: relative;
            z-index: 1;
        }

        .project-content {
            padding: 40px 36px;
            display: flex;
            flex-direction: column;
            height: 100%;
            flex-grow: 1;
        }

        .project-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 28px;
            font-weight: 500;
            color: #1A241E;
            margin-bottom: 16px;
            line-height: 1.3;
            
            /* FIX: Force all titles to take up the space of 2 lines */
            min-height: 72px; 
            display: flex;
            align-items: flex-end; /* Keeps single-line titles aligned with the bottom of the 2-line titles */
        }

        .project-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
            flex-grow: 1; /* Pushes the button down by filling remaining space */
        }

        .project-link {
            margin-top: auto; /* Aligns all buttons to the bottom edge */
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 100px;
            text-decoration: none;
            font-weight: 600;
            width: fit-content;
        }

        .project-link-1 {
            background: rgba(45, 90, 61, 0.1);
            color: #2D5A3D;
        }

        .project-link-1:hover {
            background: #2D5A3D;
            color: #FFFFFF;
        }

        .project-link-2 {
            background: rgba(139, 115, 85, 0.1);
            color: #8B7355;
        }

        .project-link-2:hover {
            background: #8B7355;
            color: #FFFFFF;
        }

        .project-link-3 {
            background: rgba(198, 168, 103, 0.1);
            color: #C6A867;
        }

        .project-link-3:hover {
            background: #C6A867;
            color: #1A241E;
        }

        /* Programme Section */
        .programme-section {
            background: #1A241E;
            padding: 120px 40px;
        }

        .programme-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }

        .programme-card {
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 40px 32px;
            transition: all 0.4s ease;
        }

        .programme-card:hover {
            background: rgba(255,255,255,0.06);
            border-color: rgba(198, 168, 103, 0.3);
            transform: translateY(-6px);
        }

        .programme-icon {
            width: 56px;
            height: 56px;
            background: rgba(198, 168, 103, 0.15);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 24px;
        }

        .programme-title {
            font-family: 'Playfair Display', Georgia, serif;
            font-size: 22px;
            font-weight: 500;
            color: #FFFFFF;
            margin-bottom: 12px;
        }

        .programme-description {
            font-family: 'DM Sans', sans-serif;
            font-size: 15px;
            color: #A8A49C;
            line-height: 1.7;
        }
        
        /* Tablet and Mobile (Everything 992px and smaller) */
        @media (max-width: 992px) {
            .hero {
                min-height: 60vh; /* Shorter on tablets */
            }
            .hero-content {
                padding: 60px 0;
            }
            .projects-row {
                flex-direction: column;
                align-items: center;
                gap: 40px; /* Increased gap for vertical breathing room */
            }
            
            .project-card {
                width: 100%;
                max-width: 500px; /* Prevents cards from being too wide */
            }
        }
        
        @media (max-width: 768px) {
            .hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 40px;
    }
    
    .hero-content {
        padding: 30px 0;
    }
            
            .breadcrumb, .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        
            .hero-title {
                /* clamp() handles the font size, but we can set a safe fallback */
                font-size: 36px;
                line-height: 1.2;
            }
        
            .hero-description {
                font-size: 16px;
                text-align: center; /* Overriding 'justify' for mobile readability */
                padding: 0 10px;
            }
        
            .hero-orb {
                width: 300px;
                height: 300px;
                top: 20%;
                right: 0;
            }
        }
        
        /* Specific Small Phone Fixes (480px and smaller) */
        @media (max-width: 480px) {
            .hero-description, 
            .section-description, 
            .project-description, 
            .programme-description {
                text-align: justify;
        text-justify: inter-word; /* Better readability on tiny screens */
            }
            
            .project-content {
                padding: 30px 20px; /* Slightly tighter padding for small screens */
            }
        }