:root {
    --navy: #001a33;
    --navy-deep: #000d1a;
    --gold: #b38f00;
    --gold-soft: #806600;
    --cream: #f4f1e8;
    --white: #ffffff;
    --muted: rgba(244, 241, 232, 0.78);
    --font-display: "Cinzel", "Times New Roman", serif;
    --font-body: "Source Serif 4", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--cream);
    background: var(--navy-deep);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1.25rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 50% 35%, rgba(179, 143, 0, 0.12), transparent 65%),
        linear-gradient(165deg, #001a33 0%, #000d1a 55%, #001022 100%);
}

.glow {
    position: absolute;
    inset: auto;
    width: min(520px, 80vw);
    height: min(520px, 80vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 143, 0, 0.16), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
    animation: pulse 7s ease-in-out infinite;
}

.content {
    position: relative;
    z-index: 1;
    width: min(36rem, 100%);
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.brand {
    display: inline-block;
}

.logo {
    width: clamp(9.5rem, 28vw, 13.75rem);
    height: auto;
    margin: 0 auto 1.75rem;
    display: block;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(179, 143, 0, 0.25), 0 18px 50px rgba(0, 0, 0, 0.45);
    animation: float 5.5s ease-in-out infinite;
}

.message {
    margin: 0;
    font-size: clamp(1.05rem, 2.4vw, 1.25rem);
    line-height: 1.7;
    color: var(--muted);
    font-weight: 500;
}

.contact {
    margin: 1.35rem 0 0;
    font-family: var(--font-body);
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    letter-spacing: 0.01em;
    line-height: 1.8;
    color: var(--white);
}

.contact a {
    color: var(--gold);
    border-bottom: 1px solid transparent;
    transition: color 0.25s ease, border-color 0.25s ease;
}

.contact a:hover,
.contact a:focus-visible {
    color: #d4b84a;
    border-bottom-color: rgba(212, 184, 74, 0.7);
    outline: none;
}

.sep {
    margin: 0 0.55rem;
    color: rgba(244, 241, 232, 0.35);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 0.55;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.06);
    }
}

@media (max-width: 480px) {
    .contact {
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        align-items: center;
    }

    .sep {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .content,
    .logo,
    .glow,
    .contact a {
        animation: none !important;
        transition: none !important;
    }

    .content {
        opacity: 1;
        transform: none;
    }
}
