 /* ============================
           1. CORE STYLES & VARIABLES
           ============================ */
        /* CRITICAL FIX: Ensures padding doesn't break widths on mobile */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box; 
        }

        :root {
            --black: #1a1a1a; 
            --white: #FFFFFF; 
            --off-white: #f8f9fa;
            --gold: #C5A021; 
            --gold-light: #e0c35c; /* Added missing variable */
            --text-grey: #555555; /* Added missing variable */
            --shadow: 0 5px 15px rgba(0,0,0,0.15); /* Added missing variable */
            --font-main: "Times New Roman", Times, serif;
        }
        html.lenis, html.lenis body {
          height: auto;
        }
        
        .lenis.lenis-smooth {
          scroll-behavior: auto !important;
        }
        
        .lenis.lenis-smooth [data-lenis-prevent] {
          overscroll-behavior: contain;
        }
        
        .lenis.lenis-stopped {
          overflow: hidden;
        }
        
        .lenis.lenis-smooth iframe {
          pointer-events: none;
        }
        
        body {
            font-family: var(--font-main);
            overflow-x: hidden; /* Prevents horizontal scroll */
        }

        /* Typography Utilities */
        h1, h2, h3 {
            color: var(--black);
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: bold;
        }

        /* ============================
           3. CEO / FOUNDER SECTION
           ============================ */
        .ceo {
            padding: 80px 10%;
            background-color: var(--off-white);
            min-height: 80vh; 
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .ceo-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 60px;
            position: relative;
        }

        /* Gold Line under Title */
        .ceo-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--gold);
            margin: 15px auto 0;
        }

        .ceo-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        /* Left Side (Text) */
        .left-content {
            flex: 1;
            font-size: 1.2rem;
            text-align: justify;
            color: var(--text-grey);
            line-height: 1.6;
        }
        
        /* First letter drop cap effect for luxury feel */
        .left-content p::first-letter {
            font-size: 3.5rem;
            float: left;
            margin-right: 10px;
            line-height: 1;
            color: var(--gold);
        }

        /* Right Side (Image) */
        .right-content {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .right-content img {
            width: 100%;
            max-width: 450px;
            /* Luxury Offset Shadow Effect */
            box-shadow: 20px 20px 0px var(--gold-light);
            transition: 0.3s ease;
        }

        .right-content img:hover {
            transform: translateY(-5px);
            box-shadow: 20px 25px 0px var(--gold);
        }

        /* ============================
           4. CHAT TOAST (Sticky)
           ============================ */
        .ceo-chat-toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--white);
            border: 1px solid var(--gold);
            padding: 25px;
            width: 300px;
            box-shadow: var(--shadow);
            z-index: 2000;
            display: none; /* JS will toggle this */
            border-left: 5px solid var(--gold);
        }

        .ceo-chat-toast h1 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            letter-spacing: 1px;
            text-align: center;
        }

        .ceo-chat-toast p {
            font-size: 0.95rem;
            margin-bottom: 20px;
            color: #555;
        }

        #ceo-chat-close {
            position: absolute;
            top: 10px;
            right: 15px;
            cursor: pointer;
            font-size: 20px;
            color: var(--black);
        }

        #ceo-chat-btn {
            width: 100%;
            padding: 12px;
            background-color: var(--black);
            color: var(--gold);
            border: 1px solid var(--black);
            text-transform: uppercase;
            font-family: "Times New Roman", serif;
            letter-spacing: 1px;
            cursor: pointer;
            transition: 0.3s;
        }

        #ceo-chat-btn:hover {
            background-color: var(--gold);
            color: var(--white);
            border-color: var(--gold);
        }

        /* ============================
           6. RESPONSIVE
           ============================ */
        @media (max-width: 900px) {
            .ceo { padding: 60px 5%; }
            .ceo-container { flex-direction: column-reverse; gap: 40px; }
            .right-content img { width: 100%; max-width: 100%; box-shadow: 10px 10px 0px var(--gold-light); }
            
            /* FIXED: Chat Toast Responsiveness */
            .ceo-chat-toast { 
                width: 90%; 
                max-width: 400px; /* Stops it from being too wide on tablets */
                bottom: 20px; 
                right: auto; /* Removes the fixed right positioning */
                left: 50%; /* Centers it relative to the screen */
                transform: translateX(-50%); /* Pulls it back perfectly to the center */
            }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; } 
            .hamburger { display: flex; }
            .footer { flex-direction: column; gap: 20px; text-align: center; }
            .footer-left { flex-direction: column; gap: 20px; }
            .footer-left img { border-right: none; padding-right: 0; height: 70px; } /* Scaled down logo on mobile */
        }