        /* --- Root Variables --- */
        :root {
            --navy: #1a2e3b;
            --dark-charcoal: #292929;
            --oil-gold: #c28334;
            --water-blue: #4a6984;
            --green-accent: #22b573;
            --white: #ffffff;
            --light-bg: #f8fafc;
            --card-bg: #ffffff;
            --border-color: #e2e8f0;
            --brand-font: 'Oswald', sans-serif;
            --body-font: 'Plus Jakarta Sans', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--body-font);
            background-color: var(--white);
            color: var(--dark-charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* --- Navigation --- */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 4rem;
            background-color: var(--white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            z-index: 1001;
        }

        .logo-img {
            height: 3.5rem;
            width: auto;
            display: block;
            object-fit: contain;
        }

        .nav-menu-wrapper {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--dark-charcoal);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--oil-gold);
        }

        .nav-btn-reserve {
            background-color: var(--navy);
            color: var(--white);
            text-decoration: none;
            padding: 0.7rem 1.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            border-radius: 4px;
            transition: background-color 0.3s ease;
            text-align: center;
        }

        .nav-btn-reserve:hover {
            background-color: var(--green-accent);
        }

        /* Hamburger Toggle Button */
        .hamburger-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            z-index: 1001;
            padding: 0;
        }

        .hamburger-toggle span {
            width: 100%;
            height: 3px;
            background-color: var(--navy);
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
        }

        /* Mobile Animation Active State */
        .hamburger-toggle.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .hamburger-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger-toggle.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* --- Hero Section --- */
        .hero-section {
            background-color: var(--light-bg);
            padding: 4rem 4rem 6rem 4rem;
            border-bottom: 1px solid var(--border-color);
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 3rem;
            max-width: 1300px;
            margin: 2rem auto 0 auto;
        }

        .hero-text-container {
            width: 100%;
        }

        .hero-image-container {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-truck-img {
            width: 100%;
            max-width: 580px;
            height: auto;
            object-fit: contain;
            mix-blend-mode: multiply;
        }

        .hero-title {
            font-family: var(--brand-font);
            font-size: 3rem;
            text-transform: uppercase;
            line-height: 1.1;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }

        .highlight-green {
            color: var(--green-accent);
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--dark-charcoal);
            margin-bottom: 2.5rem;
            max-width: 650px;
        }

        .hero-actions {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background-color: var(--oil-gold);
            color: var(--white);
            text-decoration: none;
            padding: 1rem 2rem;
            font-weight: 700;
            font-family: var(--brand-font);
            font-size: 1.1rem;
            text-transform: uppercase;
            border-radius: 4px;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: inline-block;
            text-align: center;
        }

        .btn-primary:hover {
            background-color: var(--green-accent);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--navy);
            text-decoration: none;
            padding: 1rem 2rem;
            font-weight: 700;
            font-family: var(--brand-font);
            font-size: 1.1rem;
            text-transform: uppercase;
            border: 2px solid var(--navy);
            border-radius: 4px;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
        }

        .btn-secondary:hover {
            background-color: var(--navy);
            color: var(--white);
        }

        .featured-banner {
            display: flex;
            align-items: center;
            gap: 1.2rem;
            background: var(--white);
            border-left: 4px solid var(--green-accent);
            padding: 1.2rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            max-width: 500px;
        }

        .banner-badge {
            background: var(--green-accent);
            color: var(--white);
            min-width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-weight: bold;
        }

        .banner-text h4 {
            font-family: var(--brand-font);
            color: var(--navy);
            font-size: 1.1rem;
        }

        .banner-text p {
            font-size: 0.85rem;
            color: #64748b;
        }

        /* --- Split Highlight Section --- */
        .highlight-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            padding: 6rem 4rem;
            background-color: var(--white);
            gap: 4rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .tagline {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--oil-gold);
            font-weight: 700;
            margin-bottom: 0.5rem;
            display: block;
        }

        .tagline.light-tag {
            color: var(--green-accent);
        }

        .section-title-brand {
            font-family: var(--brand-font);
            font-size: 3rem;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .highlight-text {
            font-size: 1.15rem;
            color: var(--dark-charcoal);
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .highlight-subtext {
            font-size: 1rem;
            color: #64748b;
            margin-bottom: 2rem;
        }

        .text-link {
            color: var(--navy);
            font-weight: 700;
            text-decoration: none;
            border-bottom: 2px solid var(--oil-gold);
            padding-bottom: 2px;
        }

        .highlight-image-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .graphic-card {
            background-color: var(--light-bg);
            border: 1px solid var(--border-color);
            padding: 3rem;
            border-radius: 8px;
            width: 100%;
        }

        .graphic-card h3 {
            font-family: var(--brand-font);
            color: var(--navy);
            font-size: 1.5rem;
            text-transform: uppercase;
        }

        .card-divider {
            border: 0;
            height: 1px;
            background: var(--border-color);
            margin: 1.5rem 0;
        }

        /* --- Hospitality Section --- */
        .hospitality-section {
            background-color: var(--navy);
            color: var(--white);
            padding: 6rem 4rem;
        }

        .hospitality-header {
            max-width: 1100px;
            margin: 0 auto 4rem auto;
        }

        .section-title-white {
            font-family: var(--brand-font);
            font-size: 3rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .hospitality-intro {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.1rem;
        }

        .hospitality-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .hosp-card {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 2.5rem;
            border-radius: 6px;
            border-top: 4px solid var(--green-accent);
        }

        .hosp-card h3 {
            font-family: var(--brand-font);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .hosp-card p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.95rem;
        }

        /* --- Menu / Services Section --- */
        .menu-section {
            padding: 6rem 4rem;
            background-color: var(--white);
            max-width: 1300px;
            margin: 0 auto;
        }

        .menu-header {
            margin-bottom: 3rem;
        }

        .menu-main-title {
            font-family: var(--brand-font);
            font-size: 3rem;
            text-transform: uppercase;
            color: var(--navy);
        }

        .menu-container {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 4rem;
        }

        .service-highlight-box {
            background-color: var(--light-bg);
            border: 2px solid var(--water-blue);
            padding: 2.5rem;
            border-radius: 6px;
        }

        .service-highlight-box h3 {
            font-family: var(--brand-font);
            color: var(--navy);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .check-list {
            list-style: none;
            margin-top: 1.5rem;
        }

        .check-list li {
            padding-left: 1.5rem;
            position: relative;
            margin-bottom: 0.8rem;
            font-weight: 500;
        }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--green-accent);
            font-weight: bold;
        }

        .services-grid {
            display: grid;
            gap: 1.5rem;
        }

        .service-card {
            background-color: var(--white);
            border: 1px solid var(--border-color);
            padding: 1rem;
            border-radius: 6px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
        }

        .service-card-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 0.2rem;
            gap: 1rem;
        }

        .service-card-header h4 {
            font-family: var(--brand-font);
            font-size: 1.5rem;
            color: var(--navy);
        }

        .service-price {
            font-family: var(--brand-font);
            color: var(--oil-gold);
            font-weight: 700;
            white-space: nowrap;
        }

        .service-duration {
            font-size: 0.8rem;
            color: var(--water-blue);
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        /* --- Documentation Section --- */
        .doc-section {
            padding: 6rem 4rem;
            background-color: var(--light-bg);
            border-top: 1px solid var(--border-color);
        }

        .centralized {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem auto;
        }

        .section-subtitle-center {
            color: #64748b;
            font-size: 1.1rem;
            margin-top: 0.5rem;
        }

        .doc-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
            max-width: 1300px;
            margin-left: auto;
            margin-right: auto;
        }

        .doc-block {
            background-color: var(--white);
            padding: 2.5rem;
            border-radius: 6px;
            border: 1px solid var(--border-color);
        }

        .doc-block h3 {
            font-family: var(--brand-font);
            color: var(--navy);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .ba-visual-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            max-width: 1300px;
            margin: 0 auto;
        }

        .ba-card {
            background-color: var(--white);
            border: 2px dashed var(--border-color);
            padding: 3rem;
            border-radius: 6px;
            position: relative;
        }

        .ba-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--dark-charcoal);
            color: var(--white);
            font-family: var(--brand-font);
            padding: 0.2rem 0.8rem;
            font-size: 0.9rem;
            border-radius: 3px;
        }

        .ba-badge.green {
            background-color: var(--green-accent);
        }

        .ba-card h4 {
            font-family: var(--brand-font);
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        /* --- Footer & Contact Form --- */
        .site-footer {
            background-color: var(--white);
            color: var(--dark-charcoal);
            padding: 6rem 4rem 2rem 4rem;
            border-top: 2px solid var(--border-color);
        }

        .footer-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            margin-bottom: 4rem;
            max-width: 1300px;
            margin: 0 auto 4rem auto;
        }

        .disclaimer-text {
            font-size: 0.95rem;
            color: #4a5568;
            margin-top: 1.5rem;
            line-height: 1.6;
        }

        .disclaimer-text strong {
            color: var(--navy);
        }

        .footer-form-container {
            background-color: var(--light-bg);
            padding: 2.5rem;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .footer-form-container h4 {
            font-family: var(--brand-font);
            font-size: 1.6rem;
            text-transform: uppercase;
            color: var(--navy);
            margin-bottom: 1.5rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea,
        .form-row input {
            width: 100%;
            padding: 0.85rem 1rem;
            background-color: var(--white);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: var(--dark-charcoal);
            font-family: var(--body-font);
            font-size: 0.95rem;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus,
        .form-row input:focus {
            outline: none;
            border-color: var(--navy);
            box-shadow: 0 0 0 3px rgba(26, 46, 59, 0.1);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .wide-btn {
            width: 100%;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            text-align: center;
            font-size: 0.85rem;
            color: #718096;
        }

        /* --- Responsive Media Queries --- */
        @media (max-width: 1024px) {
            .navbar {
                padding: 1.2rem 2rem;
            }

            .hamburger-toggle {
                display: flex;
            }

            .nav-menu-wrapper {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 320px;
                background-color: var(--white);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                padding: 6rem 2rem 2rem 2rem;
                transition: right 0.3s ease-in-out;
                z-index: 1000;
            }

            .nav-menu-wrapper.active {
                right: 0;
                z-index: 1020;
            }

            .nav-links {
                flex-direction: column;
                gap: 1.5rem;
                margin-bottom: 2rem;
            }

            .nav-links a {
                font-size: 1.1rem;
                display: block;
            }

            .hero-section,
            .highlight-section,
            .hospitality-section,
            .menu-section,
            .doc-section,
            .site-footer {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            /* .hero-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            } */

            .hero-content {
                display: flex;
                flex-direction: column-reverse;
                /* Reverses the flex order: image container moves to top */
                gap: 2.5rem;
            }

            .hero-truck-img {
                max-width: 450px;
            }

            .highlight-section,
            .menu-container,
            .hospitality-grid,
            .doc-grid,
            .ba-visual-container,
            .footer-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 768px) {
            .hamburger-toggle {
                display: flex;
            }

            .nav-menu-wrapper {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 320px;
                background-color: var(--white);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                padding: 6rem 2rem 2rem 2rem;
                transition: right 0.3s ease-in-out;
                z-index: 1000;
            }

            .nav-menu-wrapper.active {
                right: 0;
                z-index: 1020;
            }

            .nav-links {
                flex-direction: column;
                gap: 1.5rem;
                margin-bottom: 2rem;
            }

            .nav-links a {
                font-size: 1.1rem;
                display: block;
            }

            .hero-section {
                padding: 2.5rem 1.5rem 4rem 1.5rem;
            }

            .hero-title {
                font-size: 2.3rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .hero-actions {
                flex-direction: column;
                gap: 1rem;
            }

            .btn-primary,
            .btn-secondary {
                width: 100%;
            }

            .section-title-brand,
            .section-title-white,
            .menu-main-title {
                font-size: 2.2rem;
            }

            .highlight-section,
            .hospitality-section,
            .menu-section,
            .doc-section,
            .site-footer {
                padding: 4rem 1.5rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .graphic-card,
            .hosp-card,
            .service-highlight-box,
            .doc-block,
            .ba-card,
            .footer-form-container {
                padding: 1.5rem;
            }

            .service-card-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.2rem;
            }
        }

        @media (max-width: 480px) {
            .logo-img {
                height: 2.8rem;
            }

            .hero-title {
                font-size: 1.9rem;
            }

            .featured-banner {
                align-items: flex-start;
                gap: 0.8rem;
            }
        }