.hero {
    background: linear-gradient(160deg, #1a0000 0%, #3d0000 45%, #8B1A1A 100%);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero .container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-content {
    flex: 1;
    padding-bottom: 60px;
}

.hero-tag {
    display: inline-block;
    background: var(--color-primary);
    color: #f5d0d0;
    font-size: 0.625rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    margin-bottom: 16px;
    color: var(--color-text);
}

.hero h1 em {
    color: var(--color-accent);
    font-style: normal;
}

.hero p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    max-width: 420px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 0 0 auto;
    align-self: flex-end;
    max-width: 380px;
    width: 40%;
}

.hero-image img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-image {
        width: 70%;
        max-width: 280px;
        align-self: flex-end;
    }

    .hero-content { padding-bottom: 20px; }
}

@media (max-width: 480px) {
    .hero-image { width: 60%; }
    .hero-cta { flex-direction: column; }
    .btn { text-align: center; }
}