        /* CSS RESET & VARIABLES */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --primary-white: #FFFFFF;
            --service-gold: #F59E0B;
            --dark-charcoal: #454040;
            --olive-green: #5B7E3C;
            --light-sage: #A8BBA3;
            --light-gray: #FAFAFA;
            --warm-yellow: #F4CE14;
            --soft-stone: #EEEDEB;
            --black: #111111;
            
            --font-main: 'Roboto', sans-serif;
            --transition-smooth: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--primary-white);
            color: var(--dark-charcoal);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .footer-newsletter-panel{
    display:flex;
    justify-content:space-between;
    gap:4rem;
    padding:70px 0;
    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);
    margin:60px 0;
}

.newsletter-left{
    flex:1;
}

.newsletter-left h3{
    font-size:2rem;
    margin-bottom:15px;
}

.newsletter-left p{
    line-height:1.8;
    opacity:.75;
    max-width:550px;
}

.newsletter-right{
    flex:1;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.footer-form{
    display:flex;
    gap:15px;
}

.footer-form input{
    flex:1;
    padding:16px 18px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.05);
    color:#fff;
    border-radius:8px;
    outline:none;
    font-size:15px;
}

.footer-form input::placeholder{
    color:rgba(255,255,255,.55);
}

.footer-form button{
    padding:16px 28px;
    border:none;
    background:#D6336C;
    color:#fff;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.footer-form button:hover{
    transform:translateY(-2px);
}

.unsubscribe-form button{
    background:#555;
}

@media(max-width:900px){

.footer-newsletter-panel{
    flex-direction:column;
}

.footer-form{
    flex-direction:column;
}

.footer-form button{
    width:100%;
}

}

        /* STRUCTURAL ARCHITECTURE */
        .page-view {
            display: none;
            min-height: calc(100vh - 130px);
            animation: fadeInView 0.6s ease forward;
        }

        .page-view.active-page {
            display: block;
        }

        @keyframes fadeInView {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 4%;
            width: 100%;
        }

        .section-spacer {
            padding: 120px 0;
        }

        /* TYPOGRAPHY COMPONENTS */
        .hero-title-text {
            font-size: 15rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 0.95;
        }

        .section-title-text {
            font-size: 3rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: -0.01em;
            margin-bottom: 1.5rem;
        }

        p {
            font-size: 1.15rem;
            font-weight: 400;
            color: var(--dark-charcoal);
            line-height: 1.8;
        }

        /* BUTTONS & ACTIONS */
        .btn-action-container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .btn-luxury {
            display: inline-block;
            padding: 16px 40px;
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            border: 2px solid var(--dark-charcoal);
            background: transparent;
            color: var(--dark-charcoal);
            cursor: pointer;
            position: relative;
            z-index: 1;
            transition: var(--transition-smooth);
            overflow: hidden;
        }

        .btn-luxury::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background-color: var(--dark-charcoal);
            z-index: -1;
            transition: var(--transition-smooth);
        }

        .btn-luxury:hover {
            color: var(--primary-white);
        }

        .btn-luxury:hover::before {
            left: 0;
        }

        .btn-luxury-white {
            border-color: var(--primary-white);
            color: var(--primary-white);
        }

        .btn-luxury-white::before {
            background-color: var(--primary-white);
        }

        .btn-luxury-white:hover {
            color: var(--black);
        }

        /* HEADER 1 */
        header.brand-header {
            height: 80px;
            background-color: var(--primary-white);
            border-bottom: 1px solid var(--soft-stone);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 4%;
            position: relative;
            z-index: 1000;
        }

        .logo-box img, .logo-fallback {
            font-size: 1.75rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.02em;
            color: var(--black);
            cursor: pointer;
        }

        .logo-fallback span {
            color: var(--service-gold);
        }

        .header-contact-link {
            font-size: 1.1rem;
            font-weight: 500;
            color: var(--black);
            text-decoration: none;
        }

        /* HEADER 2 & STICKY NAVIGATION */
        .navigation-bar-container {
            background-color: var(--service-gold);
            position: sticky;
            top: 0;
            z-index: 999;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .nav-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 50px;
        }

        .nav-links-list {
            display: flex;
            list-style: none;
            width: 100%;
            height: 100%;
            justify-content: center;
        }

        .nav-links-list li {
            display: flex;
            align-items: center;
            position: relative;
            height: 100%;
        }

        .nav-links-list li:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0;
            width: 1px;
            height: 20px;
            background-color: rgba(91, 126, 60, 0.4);
        }

        .nav-links-list a {
            color: var(--olive-green);
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.15em;
            text-decoration: none;
            padding: 0 35px;
            display: flex;
            align-items: center;
            height: 100%;
            transition: var(--transition-smooth);
        }

        .nav-links-list a:hover, .nav-links-list li.active-nav a {
            color: var(--primary-white);
            background-color: rgba(0,0,0,0.05);
        }

        /* HAMBURGER STYLES */
        .hamburger-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            flex-direction: column;
            gap: 6px;
            padding: 8px;
        }

        .hamburger-btn span {
            display: block;
            width: 26px;
            height: 3px;
            background-color: var(--black);
            transition: var(--transition-smooth);
        }

        /* HERO VIEWPORT COMPONENT */
        .hero-banner-viewport {
            height: 150vh;
            width: 100%;
            background-image: url('https://i.pinimg.com/1200x/b1/23/f2/b123f2db953c07d2c5f088b0e4ae9f38.jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .hero-bottom-overlay {
            height: 30%;
            background-color: rgba(0,0,0,0.65);
            backdrop-filter: blur(5px);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-align: center;
        }

        .hero-bottom-overlay .hero-title-text {
            color: var(--primary-white);
            font-size: clamp(5.5rem, 9vw, 9rem);
        }

        .hero-subline-announcement {
            color: var(--primary-white);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.25em;
            text-transform: uppercase;
            margin-top: 5px;
            white-space: nowrap;
        }

        /* SECTION 2: ARCHITECTURE */
        .sec-needs-container {
            background-color: var(--light-gray);
            text-align: center;
        }

        .sec-needs-container .section-title-text {
            color: var(--light-sage);
        }

        .editorial-four-column {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-top: 80px;
            text-align: left;
        }

        .editorial-col-node h3 {
            font-size: 1.75rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 15px;
            color: var(--dark-charcoal);
            position: relative;
            display: inline-block;
            padding-bottom: 6px;
        }

        .editorial-col-node h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--dark-charcoal);
            transition: var(--transition-smooth);
        }

        .editorial-col-node:hover h3::after {
            width: 100%;
        }

        /* SECTION 3: SPLIT GRID STYLE */
        .editorial-split-50-50 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 650px;
        }

        .split-pane {
            padding: 100px 10%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .split-pane-left {
            background-color: var(--dark-charcoal);
            color: var(--primary-white);
        }

        .split-pane-left p {
            color: var(--primary-white);
            opacity: 0.9;
        }

        .split-pane-right {
            background-color: var(--warm-yellow);
            color: var(--dark-charcoal);
        }

        /* SECTION 4: SHOWROOM AUTOMOTIVE GALLERY */
        .sec-gallery-container {
            background-color: var(--light-gray);
        }

        .sec-gallery-container .section-title-text {
            color: var(--dark-charcoal);
            margin-bottom: 5px;
        }

        .editorial-quote {
            font-style: italic;
            font-size: 1.3rem;
            color: var(--dark-charcoal);
            margin-bottom: 60px;
            font-weight: 300;
        }

        .showroom-grid-layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(2, auto);
            gap: 40px;
        }

        .gallery-card-item {
            display: flex;
            flex-direction: column;
        }

        .gallery-image-frame {
            aspect-ratio: 1 / 1;
            overflow: hidden;
            background-color: var(--soft-stone);
        }

        .gallery-image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-smooth);
        }

        .gallery-card-item:hover .gallery-image-frame img {
            transform: scale(1.06);
        }

        .gallery-image-caption {
            margin-top: 15px;
            font-size: 1rem;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: var(--dark-charcoal);
        }

        /* SECTION 5: PERFORMANCE GIF FEATURES */
        .sec-why-choose-container {
            background-color: var(--soft-stone);
            text-align: center;
        }

        .icon-presentation-flex {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 25px;
            margin-top: 60px;
            flex-wrap: wrap;
        }

        .animated-icon-box {
            flex: 1;
            min-width: 200px;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .animated-icon-box img {
            width: 94px;
            height: 94px;
            object-fit: contain;
            margin-bottom: 20px;
        }

        .animated-icon-box span {
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 0.02em;
        }


        /* SECTION 6: SERVICE PROMPT */
        .sec-keeps-moving-container {
            background-color: var(--warm-yellow);
            text-align: center;
        }

        .sec-keeps-moving-container .container {
            max-width: 900px;
        }

        /* SECTION 7: PARALLAX BANNER STAGE */
        .parallax-stage-banner {
            height: 80vh;
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://i.pinimg.com/736x/de/44/0d/de440ddef70e1f91ba4fef2b9a72b669.jpg');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .parallax-stage-banner * {
            animation: slowFadeTransition 3s ease-in-out infinite alternate;
        }

        @keyframes slowFadeTransition {
            0% { opacity: 0.85; }
            100% { opacity: 1; }
        }

        .parallax-stage-banner h2 {
            color: var(--primary-white);
            font-size: 3.5rem;
            text-transform: uppercase;
            margin-bottom: 15px;
            font-weight: 900;
        }

        .parallax-stage-banner p {
            color: var(--primary-white);
            font-size: 1.4rem;
            font-weight: 300;
            letter-spacing: 0.05em;
        }

        /* INTERNAL SUB-PAGES COMPONENT ARCHITECTURE */
        .internal-hero-strip {
            height: 45vh;
            background-color: var(--dark-charcoal);
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            display: flex;
            align-items: center;
            position: relative;
        }

        .internal-hero-strip::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
        }

        .internal-hero-strip .container {
            position: relative;
            z-index: 2;
            color: var(--primary-white);
        }

        /* SIDEBAR + FILTER LAYOUT FOR VEHICLE SHOWROOMS */
        .showroom-workspace-layout {
            display: grid;
            grid-template-columns: 300px 1fr;
            gap: 50px;
            margin-top: 60px;
        }

        .filter-workspace-sidebar {
            background-color: var(--light-gray);
            padding: 40px 30px;
            height: fit-content;
        }

        .filter-header-title {
            font-size: 1.2rem;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 25px;
            border-bottom: 2px solid var(--soft-stone);
            padding-bottom: 10px;
        }

        .filter-section-group {
            margin-bottom: 35px;
        }

        .filter-section-group h5 {
            font-size: 0.95rem;
            text-transform: uppercase;
            margin-bottom: 15px;
            letter-spacing: 0.05em;
        }

        .filter-label-node {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            font-size: 1rem;
            cursor: pointer;
        }

        .filter-label-node input[type="checkbox"], .filter-label-node input[type="radio"] {
            accent-color: var(--service-gold);
            width: 18px;
            height: 18px;
        }

        .showroom-listings-workspace {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .product-vehicle-card {
            background-color: var(--primary-white);
            border: 1px solid var(--soft-stone);
            transition: var(--transition-smooth);
        }

        .product-vehicle-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.05);
        }

        .product-card-img-wrapper {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .product-card-img-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .product-badge-overlay {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--service-gold);
            color: var(--primary-white);
            padding: 6px 12px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }

        .product-card-meta-details {
            padding: 25px;
        }

        .product-card-meta-details h4 {
            font-size: 1.4rem;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .product-card-price-point {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--olive-green);
            margin-bottom: 15px;
        }

        .product-spec-row-list {
            list-style: none;
            border-top: 1px solid var(--soft-stone);
            padding-top: 15px;
            margin-bottom: 20px;
        }

        .product-spec-row-list li {
            font-size: 0.95rem;
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            opacity: 0.8;
        }

        /* EDITORIAL FINANCIAL AND CONTACT APPLICATIONS */
        .split-editorial-form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
        }

        .editorial-form-wrapper {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .input-group-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-input-element, .form-select-element, .form-textarea-element {
            width: 100%;
            padding: 16px 20px;
            font-family: var(--font-main);
            font-size: 1rem;
            border: 1px solid #CCCCCC;
            background-color: var(--light-gray);
            outline: none;
            transition: var(--transition-smooth);
        }

        .form-input-element:focus, .form-select-element:focus, .form-textarea-element:focus {
            border-color: var(--service-gold);
            background-color: var(--primary-white);
        }

        /* INTERNAL CALCULATOR BLOCK */
        .calculator-workspace-card {
            background-color: var(--soft-stone);
            padding: 40px;
            margin-bottom: 40px;
        }

        .calculator-metrics-output-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
            background: var(--primary-white);
            padding: 30px;
            text-align: center;
        }

        .metric-output-block span {
            display: block;
            font-size: 0.85rem;
            text-transform: uppercase;
            font-weight: 600;
            opacity: 0.7;
        }

        .metric-output-block strong {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--black);
        }

        /* CONTACT HOURS AND MAP MAP */
        .business-hours-table-box {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }

        .business-hours-table-box td {
            padding: 12px 0;
            border-bottom: 1px solid var(--soft-stone);
            font-size: 1.05rem;
        }

        .business-hours-table-box td:last-child {
            text-align: right;
            font-weight: 600;
        }

        .interactive-embedded-map-canvas {
            width: 100%;
            height: 400px;
            background-color: #E5E7EB;
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 0.1em;
            color: var(--dark-charcoal);
            border: 1px solid #D1D5DB;
        }

        /* STANDARD PRIVACY / COOKIE SYSTEM LAYOUTS */
        .legal-editorial-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .legal-editorial-container h3 {
            font-size: 1.6rem;
            text-transform: uppercase;
            margin: 35px 0 15px 0;
        }

        .legal-editorial-container ul {
            margin-left: 20px;
            margin-bottom: 20px;
        }

        .legal-editorial-container li {
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        /* FOOTER STRUCTURE */
        footer.showroom-editorial-footer {
            background-color: var(--dark-charcoal);
            color: var(--primary-white);
            padding: 100px 0 40px 0;
        }

        .footer-top-heading h2 {
            font-size: 2.5rem;
            color: var(--warm-yellow);
            text-transform: uppercase;
            font-weight: 900;
            margin-bottom: 60px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            padding-bottom: 40px;
        }

        .footer-grid-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .footer-column-node h4 {
            font-size: 1.1rem;
            text-transform: uppercase;
            margin-bottom: 25px;
            letter-spacing: 0.05em;
            color: var(--primary-white);
        }

        .footer-column-node ul {
            list-style: none;
        }

        .footer-column-node ul li {
            margin-bottom: 14px;
        }

        .footer-column-node ul li a {
            color: var(--primary-white);
            opacity: 0.75;
            text-decoration: none;
            font-size: 1rem;
            transition: var(--transition-smooth);
        }

        .footer-column-node ul li a:hover {
            opacity: 1;
            color: var(--warm-yellow);
            padding-left: 6px;
        }

        .footer-bottom-copyright-strip {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.95rem;
            opacity: 0.6;
        }

        /* SYSTEM RESPONSIVE MEDIA ADAPTATIONS */
        @media (max-width: 1200px) {
            .hero-title-text { font-size: 5rem; }
            .editorial-four-column { grid-template-columns: repeat(2, 1fr); }
            .showroom-grid-layout { grid-template-columns: repeat(2, 1fr); }
            .showroom-workspace-layout { grid-template-columns: 1fr; }
            .showroom-listings-workspace { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 992px) {
            .editorial-split-50-50 { grid-template-columns: 1fr; }
            .split-editorial-form-grid { grid-template-columns: 1fr; gap: 50px; }
            .footer-grid-layout { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .hamburger-btn { display: flex; }
            
            .nav-wrapper {
                display: none;
                height: auto;
                background-color: var(--service-gold);
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            }

            .nav-wrapper.mobile-menu-open {
                display: block;
            }

            .nav-links-list {
                flex-direction: column;
                align-items: stretch;
            }

            .nav-links-list li {
                height: auto;
                border-bottom: 1px solid rgba(91, 126, 60, 0.1);
            }

            .nav-links-list li::after { display: none !important; }

            .nav-links-list a {
                padding: 20px;
                width: 100%;
                justify-content: center;
            }

            .editorial-four-column { grid-template-columns: 1fr; }
            .showroom-grid-layout { grid-template-columns: 1fr; }
            .showroom-listings-workspace { grid-template-columns: 1fr; }
            .calculator-metrics-output-row { grid-template-columns: 1fr; gap: 15px; }
            .input-group-row { grid-template-columns: 1fr; }
            .footer-grid-layout { grid-template-columns: 1fr; }
            .hero-title-text { font-size: 3.5rem; }
            .section-title-text { font-size: 2.2rem; }
        }
