@font-face {
    font-family: "Cinzel";
    src: url("../assets/fonts/cinzel-latin.woff2") format("woff2");
    font-weight: 400 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Montserrat";
    src: url("../assets/fonts/montserrat-latin.woff2") format("woff2");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --primary-color: #1e3465;
    --secondary-color: #555d84;
    --text-color: #434655;
    --light-color: #f2f3f5;
    --accent-color: #3e92cc;
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Cinzel", serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--light-color);
    color: var(--text-color);
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--primary-color); text-decoration: none; transition: color .3s ease; }
a:hover, a:focus { color: var(--accent-color); }
a:focus-visible { outline: 2px solid var(--accent-color); outline-offset: 3px; }

.page {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2.5rem;
    padding: clamp(3rem, 10vw, 6rem) 1.5rem;
}

.logo {
    width: clamp(150px, 38vw, 240px);
    height: auto;
    display: block;
}

.title {
    margin: 0;
    font-family: var(--font-secondary);
    font-weight: 400;
    color: var(--primary-color);
    font-size: clamp(1.6rem, 6vw, 2.6rem);
    letter-spacing: 0.08em;
    line-height: 1.3;
}

.rule {
    width: 64px;
    height: 1px;
    background: var(--secondary-color);
    opacity: .5;
    border: 0;
    margin: 0;
}

.status {
    margin: 0;
    font-size: clamp(.8rem, 2.6vw, .9rem);
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--secondary-color);
}

.contacts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    font-size: 1rem;
}

.footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, .8);
    text-align: center;
    padding: 1.25rem 1.5rem;
    font-size: .8rem;
    letter-spacing: .06em;
}
