.cmp-coming-soon {
    position: relative;
    width: 100%;
    height: 718px;
    background: #141210;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: 'Playfair Display', Georgia, serif;
}

/* Background image */
.cmp-coming-soon__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Content */
.cmp-coming-soon__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 60px 24px;
}

/* Heading group */
.cmp-coming-soon__heading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

/* Oval badge around pretitle */
.cmp-coming-soon__badge {
    display: inline-block;
    border: 1px solid rgba(210, 200, 182, 0.45);
    border-radius: 50%;
    padding: 6px 44px 27px;
    margin-bottom: 2px;
    position: relative;
    top: 35px;
}

.cmp-coming-soon__pretitle {
    font-style: italic;
    font-weight: 400;
    font-size: 100px;
    color: #7F7562;
    letter-spacing: 0.01em;
    line-height: 91%;
    font-family: Playfair Display;
}

/* Main title */
.cmp-coming-soon__title {
    font-style: italic;
    font-weight: 700;
    font-size: 100px;
    color: #C0C0C0;
    letter-spacing: -0.01em;
    line-height: 91%;
    font-family: Playfair Display;
    margin: 0;
}

/* Description */
.cmp-coming-soon__description {
    margin: 22px 0 0;
    font-family: Archivo;
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 132%;
}

/* Buttons */
.cmp-coming-soon__buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cmp-coming-soon__btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 100px;
    font-family: Archivo;
    line-height: 27px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    background: #fff;
    color: #1a1814;
    border: none;
    transition: background 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
    min-width: 190px;
}

.cmp-coming-soon__btn:hover {
    background: rgba(255, 255, 255, 0.88);
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 480px) {
    .cmp-coming-soon {
        height: 587px;
    }

    .cmp-coming-soon__pretitle {
        font-size: 55px;
    }

    .cmp-coming-soon__title {
        font-size: 55px;
    }

    .cmp-coming-soon__description {
        font-size: 12px;
        max-width: 216px;
    }

    .cmp-coming-soon__badge {
        padding: 6px 30px 16px;
        top: 22px;
    }

    .cmp-coming-soon__buttons {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
    }

    .cmp-coming-soon__btn {
        width: 100%;
        text-align: center;
        font-size: 14px;
        min-width: 150px;
        padding: 9px;
    }

    .cmp-coming-soon__content {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}