/* ===== HERO COMMON ===== */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: calc(var(--container) + var(--container-padding) * 2);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-label {
    display: inline-block;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-accent);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 32px;
}

.hero-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-family: var(--font-main);
    line-height: 1.5;
}

.hero-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-main);
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

/* ===== VARIANT LABEL ===== */
.variant-label {
    text-align: center;
    padding: 20px;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-top: 1px dashed #ddd;
}

/* ========================================
   VARIANT 1 — Dark Cinematic
   Full-width photo, dark overlay, white text
   ======================================== */
.hero--v1 {
    min-height: 600px;
    display: flex;
    align-items: center;
    background: var(--color-graphite);
}

/* Background image slider */
.hero--v1 .hero-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero--v1 .hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero--v1 .hero-bg-slide.is-active {
    opacity: 1;
}

/* Dark overlay on top of images */
.hero--v1 .hero-bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.hero--v1 .hero-inner {
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero--v1 .hero-content {
    max-width: 640px;
}

.hero--v1 .hero-label {
    color: var(--color-beige);
}

.hero--v1 .hero-title {
    font-size: clamp(28px, 3.2vw, 48px);
    color: var(--color-white);
}

.hero--v1 .hero-bullets li {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 1.1vw, 16px);
}

.hero--v1 .hero-bullets li::before {
    background: var(--color-green);
}

.hero--v1 .hero-btn--primary {
    padding: 14px 32px;
    font-size: 15px;
    background: var(--color-green);
    color: var(--color-white);
    border: 2px solid var(--color-green);
}

.hero--v1 .hero-btn--primary:hover {
    background: #5a6b53;
    border-color: #5a6b53;
}

.hero--v1 .hero-btn--secondary {
    padding: 14px 32px;
    font-size: 15px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero--v1 .hero-btn--secondary:hover {
    border-color: var(--color-white);
}

/* ========================================
   VARIANT 2 — Brand Warm
   Beige background, graphite text, accent card
   ======================================== */
.hero--v2 {
    background: linear-gradient(135deg, #f5f0eb 0%, #e8ddd3 100%);
    position: relative;
}

.hero--v2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    background: linear-gradient(135deg, #2a2a2a 0%, #3d3d3d 100%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero--v2 .hero-inner {
    display: flex;
    align-items: center;
    min-height: 560px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero--v2 .hero-content {
    max-width: 55%;
    position: relative;
    z-index: 2;
}

.hero--v2 .hero-label {
    color: var(--color-green);
    background: rgba(105, 123, 97, 0.1);
    padding: 6px 14px;
    border-radius: 4px;
}

.hero--v2 .hero-title {
    font-size: clamp(26px, 3vw, 44px);
    color: var(--color-graphite);
}

.hero--v2 .hero-bullets li {
    color: #555;
    font-size: clamp(14px, 1.1vw, 16px);
}

.hero--v2 .hero-bullets li::before {
    background: var(--color-beige);
}

.hero--v2 .hero-btn--primary {
    padding: 14px 32px;
    font-size: 15px;
    background: var(--color-graphite);
    color: var(--color-white);
    border: 2px solid var(--color-graphite);
}

.hero--v2 .hero-btn--primary:hover {
    background: #333;
}

.hero--v2 .hero-btn--secondary {
    padding: 14px 32px;
    font-size: 15px;
    background: transparent;
    color: var(--color-graphite);
    border: 2px solid var(--color-beige);
}

.hero--v2 .hero-btn--secondary:hover {
    border-color: var(--color-graphite);
}

.hero--v2 .hero-inner {
    display: flex;
    justify-content: space-between;
}

.hero-visual-v2 {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-visual-v2--empty {
    display: none;
}

/* ========================================
   VARIANT 3 — Bold Green
   Dark graphite bg, green accent, modern grid
   ======================================== */
.hero--v3 {
    background: var(--color-graphite);
    position: relative;
}

.hero--v3::before {
    content: '';
    position: absolute;
    right: var(--container-padding);
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(105, 123, 97, 0.15) 0%, transparent 70%);
}

.hero--v3 .hero-inner {
    padding-top: 80px;
    padding-bottom: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero--v3 .hero-content {
    position: relative;
    z-index: 2;
}

.hero--v3 .hero-visual {
    position: relative;
    z-index: 2;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-family: var(--font-main);
    font-size: 14px;
}

.hero--v3 .hero-label {
    color: var(--color-green);
}

.hero--v3 .hero-title {
    font-size: clamp(26px, 2.8vw, 42px);
    color: var(--color-white);
}

.hero--v3 .hero-bullets li {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(14px, 1.1vw, 16px);
}

.hero--v3 .hero-bullets li::before {
    background: var(--color-green);
    box-shadow: 0 0 8px rgba(105, 123, 97, 0.5);
}

.hero--v3 .hero-btn--primary {
    padding: 14px 32px;
    font-size: 15px;
    background: var(--color-green);
    color: var(--color-white);
    border: 2px solid var(--color-green);
}

.hero--v3 .hero-btn--primary:hover {
    background: #5a6b53;
    border-color: #5a6b53;
}

.hero--v3 .hero-btn--secondary {
    padding: 14px 32px;
    font-size: 15px;
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero--v3 .hero-btn--secondary:hover {
    border-color: var(--color-green);
    color: var(--color-green);
}

/* ===== HERO RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero--v3 .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero--v3 .hero-visual {
        max-width: 500px;
    }

    .hero--v2::before {
        display: none;
    }

    .hero--v2 .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero--v1 {
        min-height: 480px;
    }

    .hero--v1 .hero-inner,
    .hero--v2 .hero-inner,
    .hero--v3 .hero-inner {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn {
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .hero--v2 .hero-inner {
        min-height: auto;
    }

    /* Hide hero photo + diagonal dark block on mobile */
    .hero--v2::before,
    .hero-visual-v2 {
        display: none;
    }

    .hero--v2 .hero-content {
        max-width: 100%;
    }
}

@media (max-width: 390px) {
    .hero--v1 {
        min-height: 420px;
    }

    .hero--v1 .hero-btn--primary,
    .hero--v1 .hero-btn--secondary,
    .hero--v2 .hero-btn--primary,
    .hero--v2 .hero-btn--secondary,
    .hero--v3 .hero-btn--primary,
    .hero--v3 .hero-btn--secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
}
