html {
    min-height: 100%;
    background-color: #0C1525;
}



body {
    min-height: calc(100vh - 120px);
    background:
            radial-gradient(circle at 20% 20%, rgba(162, 150, 118, 0.16), transparent 32%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 30%),
            #0C1525;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: stretch;
    padding: 60px;
    margin: 0;
}



.language-switcher {
    display: inline-block;
    position: absolute;
    top: 40px;
    right: 40px;
    z-index: 1;
}

.language-button {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    padding: 9px 16px;
    font-size: 14px;
    letter-spacing: 0.7px;
    cursor: pointer;
    border-radius: 999px;
    transition: all 0.3s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.22),
            0 10px 30px rgba(0, 0, 0, 0.22);
}

.language-button:hover {
    background: rgba(255, 255, 255, 0.92);
    color: #0C1525;
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    border-radius: 36px;
    padding: 40px;
    width: 100%;
    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.28),
            inset 0 -1px 0 rgba(255, 255, 255, 0.04),
            0 30px 90px rgba(0, 0, 0, 0.35);
    position: relative;
}
.wrapper::before {
    content: "";
    position: fixed;
    top: -40%;
    left: -20%;
    width: 70%;
    height: 180%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.13),
            transparent
    );
    transform: rotate(18deg);
    pointer-events: none;
}
.wrapper::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 35px;
    background: linear-gradient(
            145deg,
            transparent,
            rgba(255, 255, 255, 0.10),
            transparent 45%
    );
    pointer-events: none;
}

.text-block {
    display: flex;
    flex-direction: column;
    padding: 20px 0 0 0;
}

.logo-block {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-block img {
    width: 250px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.26));
}


.text-block h1 {
    font-size: 42px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding-bottom: 16px;
    color: #A29676;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.subtitle {
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
    padding: 0 0 32px 0;
    color: #A29676;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.contacts {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    line-height: 1.8;
    color: #ffffff;
    padding: 22px 26px;
    border-radius: 24px;
    width: 600px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.18),
            0 18px 45px rgba(0, 0, 0, 0.20);
}

.contacts a {
    color: #A29676;
    text-decoration: none;
}

.contacts a.email-link {
    color: #ffffff;
}

.contacts a:hover {
    text-decoration: underline;
}

@media (max-width: 1200px) {
    .language-switcher {
        top: 20px;
        right: 20px;
    }
    .wrapper {
        justify-content: space-between;
        padding: 20px;
        gap: 40px;
    }
    .contacts {
        width: 590px;
    }
}

@media (max-width: 1151px) {
    .contacts {
        width: auto;
    }
    .text-block h1 {
        font-size: 40px;
    }

}

@media (max-width: 900px) {
    body {
        padding: 24px;
        min-height: calc(100vh - 48px);
    }

    body::before {
        inset: 24px;
        border-radius: 28px;
    }

    .language-switcher {
        top: 24px;
        right: 24px;
    }

    .wrapper {
        gap: 20px;
    }

    .logo-block {
        flex: none;
        max-width: 230px;
    }

    .logo-block img {
        width: 230px;
    }

    .text-block h1 {
        font-size: 32px;
        margin: 0;
        padding: 0;
    }

    .subtitle {
        font-size: 18px;
    }

    .contacts {
        font-size: 16px;
        padding: 20px;
    }
}

@media (max-width: 600px) {
    body {
        padding: 16px;
        min-height: calc(100vh - 32px);
    }
    .wrapper {
        flex-direction: column;
        justify-content: center;
        padding: 16px;
    }
    .language-switcher {
        top: 16px;
        right: 16px;
    }
    .text-block {
        padding: 0;
    }
    .text-block h1, .subtitle  {
        text-align: center;
    }
    .text-block h1 {
        font-size: 22px;
        padding-bottom: 10px;
    }
    .subtitle {
        font-size: 14px;
        padding: 0 0 20px 0;
    }
    .contacts {
        font-size: 14px;
    }
}