/* Hero Section with 12-column grid */
.hero-section {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    padding: 100px 20px 60px !important;
    align-items: start;
    min-height: calc(100vh - 90px);
    gap: 20px;
    margin: 0 auto;
}

.left-location {
    grid-column: 1 / 4;
    grid-row: 1;
    font-size: 14px;
    color: var(--text-light);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
    line-height: 1.4;
}

.left-location .subtle {
    color: var(--text-muted);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.hero-text {
    grid-column: 4 / -1;
    grid-row: 1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.2s;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
    color: var(--text-dark);
}

.hero-text .text-orange {
    color: var(--accent-orange);
}

.hero-images {
    grid-column: 4 / -1;
    grid-row: 2;
    display: flex;
    gap: 30px;
    margin-top: 80px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards 0.4s;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    align-items: stretch;
}

/* Hero Image Placeholder Styles */
.image-placeholder {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16/9 !important;
    object-fit: cover !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    flex: 1;
    transform: scale(1) !important;
    display: block;
    max-width: 100%;
    min-height: 200px;
}

/* Hero Images Container Sizing */
.hero-images {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: flex;
    gap: 20px;
    margin-top: 60px;
    align-items: stretch;
}

.hero-images > * {
    flex: 1 1 0;
    min-width: 0;
}

/* Hero Images Responsive Sizing */
@media (min-width: 1200px) {
    .hero-images img,
    .image-placeholder {
        min-height: 300px;
        max-height: 400px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-images img,
    .image-placeholder {
        min-height: 250px;
        max-height: 350px;
    }
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16/9) {
    .hero-images img,
    .image-placeholder {
        height: 280px;
        width: 100%;
    }
}