/* ============================================
   Hero Section
   ============================================ */
.hero {
    background-color: transparent;
}

.hero__top {
    background-color: #FDF9F6;
}

.hero__inner {
    display: flex;
    align-items: center;
    gap: 168px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 32px 64px 64px;
    box-sizing: border-box;
}

.hero__content {
    flex: 1;
    min-width: 0;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero__overline {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--neutral-400);
    margin-bottom: 1.5rem;
}

.hero__title {
    display: flex;
    flex-direction: column;
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 3.6vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--neutral-900);
    margin: 0 0 2rem;
}

.hero__title-line {
    display: block;
}

.hero__desc {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--neutral-500);
    margin: 0 0 2.5rem;
    max-width: 460px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.875rem;
}

.hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8125rem 1.625rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.hero__btn--primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
}

.hero__btn--primary:hover {
    background-color: var(--btn-primary-hover);
}

.hero__btn--outline {
    background-color: transparent;
    color: var(--color-neutral);
    border-color: var(--neutral-400);
}

.hero__btn--outline:hover {
    background-color: var(--neutral-50);
    border-color: var(--neutral-400);
}

.hero__media {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
}

.hero__image {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 640 / 680;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
}

/* ============================================
   Hero Story (bagian bawah hero)
   ============================================ */
.hero__story {
    background-color: #FFF1E8;
}

.hero__story-inner {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px;
    box-sizing: border-box;
}

.hero__story-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    width: min(100%, 591.03px);
    max-width: 591.03px;
    padding-top: 16px;
    flex-shrink: 1;
    box-sizing: border-box;
}

.hero__story-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.hero__story-content {
    flex: 1;
    min-width: 0;
    max-width: 560px;
}

.hero__story-title {
    font-family: var(--font-headline);
    font-size: clamp(1.75rem, 2.5vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--neutral-900);
    margin: 0 0 1.5rem;
}

.hero__story-text {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.75;
    color: var(--neutral-500);
    margin: 0 0 1rem;
}

.hero__story-text:last-of-type {
    margin-bottom: 1.75rem;
}

.hero__story-divider {
    border: none;
    height: 1px;
    background-color: rgba(203, 198, 189, 0.5);
    margin: 0 0 1.75rem;
}

.hero__story-stats {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.hero__story-stat {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.hero__story-stat-value {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
    color: var(--neutral-900);
}

.hero__story-stat-label {
    font-family: var(--font-body);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neutral-400);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1199.98px) {
    .hero__inner {
        gap: 80px;
        padding: 28px 32px 48px;
    }

    .hero__story-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 40px;
        padding: 48px 32px;
    }

    .hero__story-content {
        max-width: none;
    }

    .hero__story-gallery {
        width: 100%;
        max-width: 591.03px;
        grid-template-columns: 1fr 1fr;
        padding-top: 0;
    }

    .hero__story-img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }
}

@media (max-width: 991.98px) {
    .hero__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 48px;
        padding: 28px 32px 48px;
    }

    .hero__content {
        max-width: none;
    }

    .hero__desc {
        max-width: none;
    }

    .hero__media {
        justify-content: center;
    }

    .hero__image {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero__inner {
        padding: 24px 1.25rem 40px;
        gap: 32px;
    }

    .hero__title {
        margin-bottom: 1.5rem;
    }

    .hero__desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__btn {
        width: 100%;
    }

    .hero__image {
        border-radius: 24px;
    }

    .hero__story-inner {
        padding: 40px 1.25rem;
        gap: 32px;
    }

    .hero__story-gallery {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .hero__story-stats {
        gap: 2.5rem;
    }

    .hero__story-stat-value {
        font-size: 2rem;
    }
}
