.hero-section {
    position: relative;

    overflow: hidden;

    min-height: calc(100vh - 88px);

    display: flex;
    align-items: center;

    background:
    radial-gradient(
        circle at 80% 20%,
        rgba(169,151,124,.20),
        transparent 30%
    ),
    linear-gradient(
        180deg,
        #f8f5ef 0%,
        #f4efe6 100%
    );
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 760px;
}

.hero-content p {
    font-size: 21px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.hero-panel {
    background: rgba(255,255,255,.75);

    backdrop-filter: blur(20px);

    border: 1px solid rgba(255,255,255,.9);

    border-radius: 28px;

    padding: 42px;

    box-shadow: var(--shadow-soft);
}

.hero-panel > span {
    display: inline-flex;

    background: var(--color-accent);

    color: white;

    padding: 10px 16px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;

    margin-bottom: 20px;
}

.hero-panel h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.price {
    margin-top: 36px;
    padding-top: 26px;

    border-top: 1px solid var(--color-border);
}

.price strong {
    display: block;

    color: var(--color-accent-dark);

    font-size: 72px;
    line-height: 1;

    letter-spacing: -.06em;
}

.price small {
    display: block;
    margin-top: 12px;
}

.hero-section {
    position: relative;
    min-height: calc(100vh - 88px);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    inset: 0;

    background-image: url('../img/hero.webp');
    background-size: cover;
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.45) 0%,
            rgba(0,0,0,.28) 35%,
            rgba(0,0,0,.08) 100%
        );
}

.hero-grid {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    color: white;
}

.hero-content h1,
.hero-content p {
    color: white;
}

.hero-content p {
    opacity: .9;
}

.hero-content h1 {
    background: linear-gradient(
        135deg,
        #f6efe2 0%,
        #dcc8a8 18%,
        #bfa27a 42%,
        #a78861 58%,
        #d8c2a0 82%,
        #f3ebde 100%
    );

    background-size: 200% 200%;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

    text-shadow: 0 2px 20px rgba(180, 150, 100, .08);
}

@media (max-width: 768px) {
    .hero-section {
        min-height: calc(100svh - 76px);
        align-items: flex-start;
    }

    .hero-image {
        background-size: cover;
        background-position: 68% center;
    }

    .hero-overlay{
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.32) 0%,
                rgba(0,0,0,.16) 32%,
                rgba(0,0,0,.05) 55%,
                rgba(0,0,0,0) 100%
            );
    }
    .hero-grid {
        display: block;
        padding-top: 28px;
        padding-bottom: 48px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(48px, 14vw, 72px);
        line-height: .95;
    }

    .hero-content p {
        font-size: 20px;
        line-height: 1.55;
        max-width: 92%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 14px;
        margin-top: 34px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

.hero-content p{
    text-shadow:
        0 2px 10px rgba(0,0,0,.65);
}

.hero-content h1 {
    color: #d8c2a0;
    -webkit-text-fill-color: initial;
    background: none;
}

.word-slot {
    display: inline-block;
    height: .95em;
    overflow: hidden;
    vertical-align: -0.08em;
}

.word-slot span {
    display: flex;
    flex-direction: column;
    animation: heroSlot 9s infinite;
}

.word-slot b {
    display: block;
    height: .95em;
    line-height: .95em;
    font-weight: inherit;
    color: #f3ebde;
}

@keyframes heroSlot {
    0%, 26% {
        transform: translateY(0);
    }

    33%, 59% {
        transform: translateY(-.95em);
    }

    66%, 92% {
        transform: translateY(-1.9em);
    }

    100% {
        transform: translateY(0);
    }
}

.hero-word{
    display:inline-block;
    min-width:6.2ch;
    line-height:1.15;
    padding-bottom:.08em;

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.hero-word.hide{
    opacity:0;
    transform:translateY(-18px);
}

.hero-word.show{
    opacity:1;
    transform:translateY(0);
}

@media (max-width: 768px) {

    .hero-image {
        background-size: cover;
        background-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(0,0,0,.78) 0%,
                rgba(0,0,0,.66) 28%,
                rgba(0,0,0,.42) 58%,
                rgba(0,0,0,.12) 100%
            );
    }

}