:root {
    --text-dark: #2b4451;
    --text-mid: #6f8892;
    --maxw: 780px;
}

/* Reset / base */
* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--text-mid);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Layout */
.page {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 6vh 24px;
    gap: 6vh;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.logo {
    width: min(800px, 80vw);
    height: auto;
}

.coming-soon {
    font-family: "Lato", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--text-mid);
    margin: 0;
}

/* Contact section */
.contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: var(--maxw);
    text-align: center;
}

.contact-block {
    max-width: var(--maxw);
    /* Allow long emails/words to wrap on narrow screens */
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contacts p {
    margin: 6px 0;
    font-family: Helvetica, Arial, sans-serif; /* Helvetica regular for contact info */
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    color: var(--text-mid);
}

.contacts a {
    color: var(--text-mid);
    text-decoration: none;
}

.contacts a:hover {
    text-decoration: underline;
}

.or {
    color: var(--text-mid);
}

/* Accessibility helpers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Responsive tweaks for mobile */
@media (max-width: 600px) {
    .page {
        padding: 5vh 16px;
        gap: 5vh;
    }
    .hero {
        gap: 24px;
    }
    .logo {
        width: min(560px, 90vw);
    }
    .coming-soon {
        font-size: clamp(18px, 5.5vw, 24px);
        letter-spacing: 0.1em;
    }
    .contacts {
        gap: 24px;
    }
    .contacts p {
        font-size: 18px;
        line-height: 1.35;
    }
}
