* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Georgia, "Times New Roman", serif;
    color: #f3ead2;
    background-color: #0b1528;
    background-image:
        linear-gradient(90deg, rgba(8, 12, 20, 0.55) 0%, rgba(8, 12, 20, 0.28) 45%, rgba(8, 12, 20, 0.62) 100%),
        url("bg.jpg");
    background-size: cover;
    background-position: center 40%;
    background-repeat: no-repeat;
}

.wrap {
    width: min(640px, 92vw);
    text-align: center;
    padding: 3rem 1.5rem;
    background: rgba(8, 12, 20, 0.42);
    border: 1px solid rgba(243, 234, 210, 0.18);
}

.logo {
    width: min(220px, 55vw);
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.eyebrow {
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: #d9c89a;
    margin-bottom: 0.75rem;
}

h1 {
    font-size: clamp(2.6rem, 8vw, 4.2rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.tag {
    margin-top: 0.7rem;
    font-size: 1.15rem;
    font-style: italic;
    color: #efe6c9;
}

.menu-hint {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    color: #e2d3a8;
}

.soon {
    margin: 2rem auto 0;
    padding: 0.85rem 0;
    max-width: 22rem;
    border-top: 1px solid rgba(243, 234, 210, 0.45);
    border-bottom: 1px solid rgba(243, 234, 210, 0.45);
    font-size: 1.05rem;
}

.contact {
    list-style: none;
    margin-top: 2.25rem;
}

.contact li {
    margin: 0.65rem 0;
}

.contact a {
    color: #f3ead2;
    text-decoration: none;
    border-bottom: 1px solid rgba(243, 234, 210, 0.55);
    font-size: 1.05rem;
}

.contact a:hover {
    border-bottom-color: #fff;
}

@media (max-width: 600px) {
    .wrap {
        padding: 2rem 1rem;
    }
}
