* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #ffffff;
    background: #111111;
}

.coming-page {
    min-height: 100vh;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    min-height: 760px;
    padding: 48px 64px 40px;
    background-image: url("../images/bg.webp");
    background-size: cover;
    background-position: center right;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 13, 13, 0.96) 0%, rgba(9, 13, 13, 0.90) 34%, rgba(9, 13, 13, 0.28) 70%, rgba(9, 13, 13, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1040px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 70px;
}

.brand-logo {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    font-weight: 800;
    font-size: 22px;
}

.brand h1 {
    margin: 0;
    font-size: 50px;
    line-height: 1;
    font-weight: 800;
}

.brand p {
    margin: 16px 0 0;
    color: #d5a05d;
    font-size: 30px;
    letter-spacing: 4px;
}

.intro span,
.contact-title span {
    display: block;
    color: #d5a05d;
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 18px;
}

.intro h2 {
    margin: 0 0 24px;
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
}

.intro h2::after {
    content: "";
    display: block;
    width: 125px;
    height: 4px;
    margin-top: 22px;
    background: #d5a05d;
    border-radius: 999px;
}

.intro p {
    max-width: 650px;
    margin: 0 0 12px;
    font-size: 21px;
    line-height: 1.5;
}

.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1030px;
    margin-top: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(8px);
}

.service-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 22px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.service-item:last-child {
    border-right: 0;
}

.service-icon {
    color: #d5a05d;
    font-size: 46px;
    line-height: 1;
}

.service-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.service-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
}

.contact-title {
    margin-top: 34px;
}

.contact-title h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 32px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 980px;
    margin-top: 14px;
}

.contact-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 22px;
    padding: 24px 30px;
    color: #101010;
    background: #ffffff;
    border-radius: 10px;
}

.contact-icon {
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #c89b5e;
    color: #ffffff;
    border-radius: 999px;
    font-size: 34px;
}

.contact-card p {
    margin: 0 0 8px;
    font-size: 16px;
}

.contact-card strong {
    display: block;
    margin-bottom: 16px;
    font-size: 24px;
}

.contact-card a {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 13px 18px;
    color: #111111;
    background: linear-gradient(135deg, #c6995b, #ddb77c);
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
}

.message-box {
    position: absolute;
    z-index: 3;
    right: 64px;
    bottom: 32px;
    width: 680px;
    padding: 30px 34px;
    color: #111111;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 10px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.35);
}

.message-box h3 {
    margin: 0 0 8px;
    font-size: 24px;
    letter-spacing: 1px;
}

.message-box p {
    margin: 0 0 20px;
    color: #555555;
    font-size: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

input,
textarea {
    width: 100%;
    margin-bottom: 14px;
    padding: 15px 16px;
    border: 1px solid #d7d7d7;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

textarea {
    height: 130px;
    resize: vertical;
}

button {
    width: 100%;
    padding: 16px 20px;
    border: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, #c6995b, #ddb77c);
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
}

.bottom-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 280px;
    gap: 26px;
    align-items: center;
    padding: 34px 64px;
    color: #111111;
    background: #f4f0e9;
}

.bottom-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: center;
    min-height: 70px;
    border-right: 1px solid rgba(0, 0, 0, 0.14);
}

.bottom-item span {
    color: #c6995b;
    font-size: 44px;
}

.bottom-item strong {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.bottom-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
}

.signature {
    font-family: Georgia, serif;
    font-size: 28px;
    font-style: italic;
    line-height: 1.35;
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 36px 28px;
    }

    .message-box {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        max-width: 720px;
        margin-top: 30px;
    }

    .services {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item:nth-child(2) {
        border-right: 0;
    }

    .contact-cards {
        max-width: 100%;
    }

    .bottom-bar {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 28px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 28px 18px;
        background-position: center;
    }

    .hero-overlay {
        background: rgba(9, 13, 13, 0.88);
    }

    .brand {
        gap: 14px;
        margin-bottom: 42px;
    }

    .brand-logo {
        width: 92px;
        height: 72px;
        font-size: 14px;
    }

    .brand h1 {
        font-size: 30px;
    }

    .brand p {
        margin-top: 8px;
        font-size: 17px;
        letter-spacing: 2px;
    }

    .intro h2 {
        font-size: 46px;
    }

    .intro p {
        font-size: 17px;
    }

    .services,
    .contact-cards,
    .form-row,
    .bottom-bar {
        grid-template-columns: 1fr;
    }

    .service-item {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    }

    .service-item:last-child {
        border-bottom: 0;
    }

    .contact-card {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .message-box {
        padding: 24px 20px;
    }

    .bottom-item {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.14);
        padding-bottom: 18px;
    }

    .signature {
        font-size: 24px;
    }
}
