:root {
    --brand-lime: #76bc21;
    --dark-slate: #1a1a1a;
    --glass-overlay: rgba(26, 26, 26, 0.8);
    --max-w: 1440px;
}

/* =========================================
   1. LAYOUT & CONTAINERS
   ========================================= */
.v-container-wide { 
    max-width: var(--max-w); 
    margin: 0 auto; 
    padding: 0 40px; 
}

.v-container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* =========================================
   2. HERO SECTION (FIXED & CENTERED)
   ========================================= */
.v-hero-section {
    position: relative;
    height: 85vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111; /* Fallback color */
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Ensure the inner container is actually taking up space */
.v-hero-inner {
    z-index: 10;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

/* The Box itself */
.v-hero-content {
    min-height: 200px; /* Force visibility even if text is missing */
    width: 100%;
    max-width: 800px;
    padding: 50px;
    background: rgba(0, 0, 0, 0.6) !important; /* Darker for better visibility */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    text-align: center;
    visibility: visible !important;
    opacity: 1 !important;
}

/* RESTORED: Premium Heading Size */
.v-hero-content h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem); 
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 800;
}

.v-lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #e0e0e0;
    margin-bottom: 25px; 
    line-height: 1.4;
}

.v-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center; 
}

/* =========================================
   3. RANGE SHOWCASE (5-PANEL ACCORDION)
   ========================================= */
.v-range-showcase {
    position: relative;
    width: 100%;
    background: #0a0a0a;
    padding: 120px 0;
    z-index: 5;
    clear: both;
}

.v-section-intro { text-align: center; margin-bottom: 60px; }

.v-section-intro h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.v-eyebrow { 
    color: var(--brand-lime); 
    font-weight: 700; 
    letter-spacing: 3px; 
    text-transform: uppercase; 
    display: block; 
    margin-bottom: 10px; 
}

/* --- Optimized Panel Container --- */
.v-panel-container {
    display: flex;
    width: 100%;
    height: 350px;
    gap: 15px;
    margin-top: 40px;
    overflow: hidden; /* Keeps the rounded corners of the container clean */
}

/* Individual Panels */
.v-panel {
    position: relative;
    flex: 1 1 0%; /* Uses flex-basis for smoother GPU rendering */
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    transition: flex 0.8s cubic-bezier(0.25, 1, 0.33, 1);
    cursor: pointer;
}

.v-panel:hover {
    flex: 4 1 0%; /* Gives the active panel significantly more room */
}
.v-panel-overlay {
   background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0) 0%, 
        rgba(0, 0, 0, 0.2) 40%, 
        rgba(0, 0, 0, 0.85) 90%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.v-panel-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    
    /* THE TIGHTEST FIT POSSIBLE */
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: min-content; /* Tells the box: "Shrink to the smallest possible width" */
    
    z-index: 2;
    pointer-events: none;
    
    /* The Glass Look */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(0, 0, 0, 0.5); 
    padding: 12px 18px; 
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
    transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
    opacity: 0; /* Start invisible */
    animation: vBoxFadeUp 0.8s cubic-bezier(0.25, 1, 0.33, 1) forwards;
    animation-delay: 0.2s; /* Tiny delay so the image loads first */
}
@keyframes vBoxFadeUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Zero out all default browser margins that cause 'phantom' gaps */
.v-panel-content h3, 
.v-panel-spec, 
.v-panel-desc p {
    margin: 0;
    padding: 0;
    display: table; /* Forces each element to ignore the 100% width rule */
    width: auto;
    white-space: nowrap;
}

.v-panel-content h3 {
    font-size: 1.4rem;
    margin: 4px 0; /* Vertical gap only */
}

/* This controls the width of the box when hovered */
.v-panel-desc {
    display: block;
    width: 180px; /* If the box is too wide on the right, reduce this number */
    white-space: normal;
    margin-top: 8px;
}

.v-panel-desc p {
    white-space: normal;
    display: block; /* Allows text to wrap within the 180px width */
}

.v-panel-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--brand-lime);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid var(--brand-lime);
    padding-bottom: 2px;
}

.v-panel:hover .v-panel-desc,
.v-panel:hover .v-panel-link {
    opacity: 1;
    transform: translateY(0);
}

.v-panel:hover .v-panel-overlay {
    background: linear-gradient(
        to bottom, 
        rgba(0, 0, 0, 0.1) 0%, 
        rgba(0, 0, 0, 0.4) 30%, 
        rgba(0, 0, 0, 0.95) 100%
    );
}
/* =========================================
   4. BUTTONS & UTILS
   ========================================= */
.v-btn { 
    padding: 16px 35px; 
    text-decoration: none; 
    display: inline-block; 
    font-weight: 700; 
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.v-btn-lime {
    background-color: var(--brand-lime);
    color: #fff;
    border: 2px solid var(--brand-lime);
}

.v-btn-lime:hover { 
    background-color: #65a11c; 
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.v-btn-outline { 
    border: 2px solid white; 
    color: white; 
}

.v-btn-outline:hover {
    background: white;
    color: #000;
}

/* =========================================
   5. RESPONSIVE
   ========================================= */
/* Tablet / Small Laptop */
@media (max-width: 1100px) {
    .v-hero-content { padding: 40px; }
    /* Match your new desktop height or slightly increase for smaller screens */
    .v-panel-container { height: 350px; gap: 10px; } 
}

/* Mobile */
@media (max-width: 768px) {
    .v-hero-inner { padding: 0 20px; }
    .v-hero-content { border-radius: 0; width: 100%; max-width: 100%; }
    
    .v-panel-container { 
        flex-direction: column; 
        height: auto; /* Required for vertical stacking */
        gap: 12px; 
    }
    
    .v-panel { 
        height: 220px; /* Slight bump from 200px to give the 'View Specs' button room */
        flex: none; 
    }
    
    .v-panel:hover { flex: none; } /* Disable expansion on mobile */

    /* Ensure text is readable on smaller screens */
    .v-panel-content {
        bottom: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }

    .v-panel-content h3 {
        font-size: 1.3rem;
    }

    /* Force visibility of descriptions on mobile since there is no 'hover' */
    .v-panel-desc-wrap { 
        max-height: 100px; 
        opacity: 1; 
    }
    
    .v-panel-trigger {
        font-size: 0.7rem;
    }
}
/* Engineering Section Update */
.v-engineering-section {
    padding: 80px 0;
    background-color: #0f0f0f;
    width: 100%;
}

/* Force this section to follow the 1440px rule */
.v-engineering-section .v-container-wide {
    max-width: 1440px; /* Same as your cards */
    margin: 0 auto;
    padding: 0 40px; /* Matches the hero and nav padding */
}

.v-engineering-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 15px; /* Matches the gap between your 5 range panels */
}

/* Feature Cards */
.v-eng-card {
    background: #161616;
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.33, 1);
    cursor: pointer; /* Signals it is clickable */
    position: relative;
    overflow: hidden;
}

/* Large Card stays full width */
.v-card-large {
    grid-column: span 2;
    display: flex;
    flex-direction: row;
    height: 500px; /* Locked height to match the look of the range section */
}

.v-card-large .v-eng-image {
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.v-card-large .v-eng-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Interaction Effects */
.v-eng-card:hover {
    background: #1a1a1a;
    border-color: var(--brand-lime);
    transform: translateY(-5px);
}

/* Custom Click "Flash" */
.v-eng-card:active {
    transform: scale(0.98);
}

/* Responsive Fix */
@media (max-width: 992px) {
    .v-engineering-grid {
        grid-template-columns: 1fr;
    }
    .v-card-large {
        flex-direction: column;
    }
    .v-card-large .v-eng-image, 
    .v-card-large .v-eng-content {
        width: 100%;
    }
}

.v-tech-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.v-tech-overlay.active {
    opacity: 1;
    visibility: visible;
}

.v-tech-modal {
    width: 90%;
    max-width: 1000px;
    background: #111;
    padding: 60px;
    border-radius: 30px;
    border: 1px solid var(--brand-lime);
    position: relative;
}

.v-close-tech {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
/* Slide-out Panel Styling */
.v-side-panel {
    position: fixed;
    top: 0; right: -500px; /* Hidden by default */
    width: 450px;
    height: 100vh;
    background: #111;
    z-index: 10001;
    transition: right 0.5s cubic-bezier(0.25, 1, 0.33, 1);
    padding: 60px 40px;
    border-left: 1px solid var(--brand-lime);
    box-shadow: -20px 0 50px rgba(0,0,0,0.5);
}

.v-side-panel.active { right: 0; }

.v-overlay-mask {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.v-overlay-mask.active { opacity: 1; visibility: visible; }

/* Panel Content Typography */
.v-panel-eyebrow { color: var(--brand-lime); text-transform: uppercase; letter-spacing: 2px; font-weight: 800; font-size: 0.7rem; }
.v-panel-close { background: none; border: none; color: #fff; font-size: 2.5rem; cursor: pointer; float: right; margin-top: -15px; }

.v-side-panel-body h2 { color: #fff; margin: 30px 0 20px; font-size: 2rem; }
.v-side-panel-body p { color: #888; line-height: 1.8; margin-bottom: 30px; }

.v-tech-drawing {
    width: 100%;
    height: 250px;
    background: #1a1a1a;
    border: 1px dashed #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-lime);
    font-size: 0.8rem;
    text-transform: uppercase;
    border-radius: 10px;
}

.v-material-palette {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.v-palette-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.v-swatch-display {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.v-material-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.v-material-card:hover {
    transform: translateY(-10px);
}

.v-swatch-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Subtle grain effect to simulate powder coating */
.v-texture-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.v-custom-swatch {
    background: linear-gradient(45deg, #76bc21, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-custom-label {
    font-weight: 900;
    font-size: 2.5rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.v-material-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.v-material-card span {
    color: var(--brand-lime);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .v-swatch-display { grid-template-columns: repeat(2, 1fr); gap: 50px; }
}

.v-palette-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    background: #111;
    padding: 10px;
    border-radius: 50px;
    display: inline-flex;
}

.v-filter-btn {
    background: none;
    border: none;
    color: #888;
    padding: 10px 25px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.v-filter-btn.active {
    background: var(--brand-lime); /* #76bc21 */
    color: #fff;
}
.v-comfort-modules {
    padding: 120px 0;
    background-color: #000;
}

.v-comfort-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.v-comfort-card {
    background: #111;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.33, 1);
}

.v-comfort-img {
    height: 350px;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* The "Glow" animation for lighting */
.v-glow-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(118, 188, 33, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.v-comfort-card:hover .v-glow-effect {
    opacity: 1;
}

.v-comfort-info {
    padding: 40px;
}

.v-comfort-info h3 {
    color: var(--brand-lime);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.v-comfort-info h4 {
    color: #fff;;
    font-size: 1.0rem;
    margin-bottom: 15px;
}
.v-comfort-info p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.v-comfort-tag {
    color: var(--brand-lime);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    border: 1px solid var(--brand-lime);
    padding: 5px 12px;
    border-radius: 50px;
}

.v-comfort-card:hover {
    border-color: var(--brand-lime);
    transform: translateY(-10px);
}

@media (max-width: 1100px) {
    .v-comfort-grid { grid-template-columns: 1fr; }
}
.v-final-cta {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.v-cta-card {
    background: linear-gradient(145deg, #161616 0%, #0a0a0a 100%);
    border-radius: 30px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(118, 188, 33, 0.2); /* Subtle lime glow */
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.v-cta-content { max-width: 600px; }

.v-cta-content h2 {
    font-size: 3.5rem;
    color: #fff;
    margin: 20px 0;
}

.v-cta-features {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.v-cta-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #888;
    font-weight: 700;
    font-size: 0.9rem;
}

.v-cta-action {
    text-align: center;
}

.v-small-print {
    color: #555;
    font-size: 0.75rem;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .v-cta-card { flex-direction: column; text-align: center; padding: 60px 30px; }
    .v-cta-content { margin-bottom: 50px; }
    .v-cta-features { justify-content: center; }
}
@media (max-width: 768px) {
    .v-hero-content {
        padding: 30px;
        margin: 0 10px;
        max-width: 100%;
    }
    
    #vHeroTitle {
        font-size: 2.5rem;
    }
    
    .v-hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .v-hero-actions .v-btn {
        width: 100%;
        text-align: center;
    }
}
.v-panel-trigger {
    background: none;
    border: none;
    color: var(--brand-lime);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0;
    margin-top: 15px;
    border-bottom: 2px solid var(--brand-lime);
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.v-panel-trigger:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Ensure the side panel doesn't look cramped with technical data */
.v-spec-list span {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}
/* Container for the content */
.v-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    height: 100%;
    display: flex;
    align-items: center; /* Vertically centers the box */
}

/* THE GLASS BOX */
.v-hero-content {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    width: fit-content;
    min-width: 400px; /* Gives the box a base shape before text arrives */
    min-height: 200px; /* Prevents the box 'growing' and jumping when text hits */
    max-width: 650px;
    padding: 50px;
    border-radius: 20px;
    
    /* The Glass Effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(0, 0, 0, 0.45); 
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* THE ANIMATION - Exactly like Pergolas */
    opacity: 0;
    animation: vHeroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.3s;
}

/* Ensure this matches the name used in your Pergolas CSS for perfect consistency */
@keyframes vHeroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Text Adjustments inside the box */
#vHeroTitle {
    font-size: 4rem;
    margin: 0 0 15px 0;
    color: #fff;
    line-height: 1.1;
}

#vHeroSubtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Actions spacing */
.v-hero-actions {
    display: flex;
    gap: 15px;
}
.v-collection-stacked { padding: 100px 0; background: #000; }

.v-section-header { text-align: center; margin-bottom: 80px; }
.v-section-header .v-tag { color: #76bc21; text-transform: uppercase; font-size: 0.8rem; font-weight: 700; }
.v-section-header h2 { font-size: 3rem; color: #fff; margin: 10px 0; }
.v-section-header p { color: #888; max-width: 600px; margin: 0 auto; }

/* Stacked Item Layout */
.v-stacked-item { margin-bottom: 120px; }
.v-stacked-grid { display: flex; align-items: center; gap: 80px; }
.v-reverse .v-stacked-grid { flex-direction: row-reverse; }

.v-stacked-media { flex: 1.2; }
.v-stacked-media img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }

.v-stacked-info { flex: 1; }
.v-model-eyebrow { color: #76bc21; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; }
.v-stacked-info h3 { font-size: 2.5rem; color: #fff; margin: 15px 0; }
.v-stacked-info p { color: #aaa; line-height: 1.7; margin-bottom: 25px; }

/* Feature Box */
.v-feature-box { background: #0a0a0a; padding: 25px; border-radius: 15px; border-left: 3px solid #76bc21; margin-bottom: 30px; }
.v-feature-box h4 { font-size: 0.75rem; color: #666; text-transform: uppercase; margin-bottom: 15px; }
.v-feature-box ul { list-style: none; padding: 0; margin: 0; }
.v-feature-box li { color: #ddd; font-size: 0.9rem; margin-bottom: 10px; position: relative; padding-left: 20px; }
.v-feature-box li::before { content: '•'; position: absolute; left: 0; color: #76bc21; }

/* Button Override */
.v-btn-outline {
    background: #000; /* Force black background */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    display: inline-block;
}

.v-btn-outline:hover {
    background: #000; /* Keep background black */
    color: #76bc21; /* Text turns green */
    border-color: #76bc21; /* Border turns green */
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .v-stacked-grid, .v-reverse .v-stacked-grid { flex-direction: column; gap: 40px; text-align: center; }
    .v-feature-box { text-align: left; }
}

.v-about-page {
    background: #000;
    color: #fff;
}

.v-hero-simple {
    padding: 140px 0 60px;
    text-align: center;
}

.v-hero-simple h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1;
    margin-top: 15px;
}

/* Three-Column Technical Grid */
.v-tech-philosophy {
    padding: 100px 0;
    border-top: 1px solid #1a1a1a;
}

.v-about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.v-about-card h3 {
    color: #76bc21; /* Your brand lime */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.v-about-card p {
    color: #888;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .v-about-grid { grid-template-columns: 1fr; gap: 40px; }
}/* 1. Target the box specifically */
.v-about-hero-box {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Keeps it from getting too wide on desktops */
    height: 500px;     /* Forces the height to be manageable */
    margin: 40px auto 0;
    overflow: hidden;  /* Crops the image so it doesn't spill out */
    border-radius: 12px;
    background: #111;  /* Fallback color while loading */
}

/* 2. Force the image to stay inside that box */
.v-main-hero-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Forces it to fill the 500px height */
    display: block !important;
}

/* 3. Fix the logo position inside that box */
.v-logo-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 180px;
    z-index: 5;
}

.v-logo-overlay img {
    width: 100% !important;
    height: auto !important;
}