/* =========================================
   HERO SECTION
   ========================================= */

.hero {
    position: relative;
    min-height: clamp(480px, 92vh, 860px);
    padding-bottom: clamp(4rem, 8vw, 7rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero__backdrop,
.hero__gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__backdrop {
    background-size: cover;
    background-position: center;
    filter: saturate(1) brightness(0.6);
}

.hero__gradient {
    background: radial-gradient(circle at center,
            var(--sky-blue) 0%,
            var(--dark-blue) 50%,
            var(--rose) 80%,
            var(--light-rose) 100%);
    opacity: 0.3;
}

.hero__content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    color: var(--forest-dark);
}

.hero__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    padding: clamp(4.5rem, 10vw, 7rem) 0 clamp(2rem, 6vw, 4rem);
}

.hero__inner h1 {
    margin: 0;
    font-size: clamp(2.35rem, 8vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    text-shadow: 0 2px 24px rgba(11, 61, 46, 0.15);
    max-width: 15ch;
    text-wrap: balance;
}

.hero__inner p {
    max-width: 50rem;
    font-size: clamp(1rem, 3.2vw, 1.5rem);
    color: var(--forest-mid);
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.hero__note {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 0.95rem;
}

.hero__note sl-icon::part(base) {
    width: 18px;
    height: 18px;
}