﻿:root {
    --background: #101210;
    --background-soft: #181a17;
    --text: #f1ede4;
    --muted: #b3ada2;
    --gold: #b69460;
    --gold-soft: rgba(182, 148, 96, 0.28);
    --line: rgba(241, 237, 228, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--background);
}

body {
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);

    background:
        radial-gradient(
            circle at 50% 17%,
            rgba(182, 148, 96, 0.12),
            transparent 31%
        ),
        radial-gradient(
            circle at 50% 52%,
            rgba(255, 255, 255, 0.025),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            var(--background-soft),
            var(--background) 68%
        );

    font-family:
        Georgia,
        "Times New Roman",
        serif;
}

/* Soft vignette around the page */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 10;
    pointer-events: none;

    background:
        radial-gradient(
            ellipse at center,
            transparent 48%,
            rgba(0, 0, 0, 0.20) 76%,
            rgba(0, 0, 0, 0.46) 100%
        );
}

/* Very faint warm atmospheric glow */
body::after {
    content: "";
    position: fixed;
    top: -30%;
    left: 50%;
    width: 70vw;
    height: 70vw;
    max-width: 900px;
    max-height: 900px;
    z-index: 0;
    pointer-events: none;
    transform: translateX(-50%);

    background:
        radial-gradient(
            circle,
            rgba(182, 148, 96, 0.07),
            transparent 66%
        );

    filter: blur(12px);
}

.landing-page {
    position: relative;
    z-index: 1;

    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 48px 24px 28px;
}

.content {
    width: min(760px, 100%);
    margin: auto;
    text-align: center;
}

/* Logo frame */
.logo {
    display: block;
    width: min(500px, 91vw);
    max-height: 330px;
    margin: 0 auto 28px;
    object-fit: contain;

    border-radius: 2px;

    box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.46),
        0 0 32px rgba(182, 148, 96, 0.12);

    filter:
        drop-shadow(0 0 14px rgba(182, 148, 96, 0.18));

    animation:
        reveal-logo 1.15s ease-out both,
        breathing-glow 7s ease-in-out 1.4s infinite;
}

.location {
    margin: 0 0 22px;
    color: #c0a875;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.30em;
    text-transform: uppercase;

    animation: reveal-up 0.9s ease-out 0.22s both;
}

h1 {
    margin: 0;

    font-size: clamp(2.35rem, 6vw, 4.9rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.038em;

    text-shadow:
        0 2px 20px rgba(0, 0, 0, 0.46);

    animation: reveal-up 0.95s ease-out 0.40s both;
}

.divider {
    width: 78px;
    height: 1px;
    margin: 35px auto;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(214, 180, 120, 0.95),
            transparent
        );

    box-shadow:
        0 0 12px rgba(182, 148, 96, 0.28);

    animation: reveal-line 1s ease-out 0.62s both;
}

.statement {
    max-width: 610px;
    margin: 0 auto;

    font-size: clamp(1.04rem, 2vw, 1.25rem);
    line-height: 1.72;

    text-shadow:
        0 1px 12px rgba(0, 0, 0, 0.38);

    animation: reveal-up 0.9s ease-out 0.72s both;
}

.status {
    max-width: 590px;
    margin: 18px auto 0;

    color: var(--muted);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.92rem;
    line-height: 1.78;

    animation: reveal-up 0.9s ease-out 0.88s both;
}

footer {
    padding-top: 42px;
    text-align: center;

    animation: reveal-up 0.9s ease-out 1.05s both;
}

footer p {
    margin: 0;

    color: rgba(241, 237, 228, 0.43);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 0.71rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

@keyframes reveal-logo {
    from {
        opacity: 0;
        transform: translateY(14px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes reveal-up {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes reveal-line {
    from {
        width: 0;
        opacity: 0;
    }

    to {
        width: 78px;
        opacity: 1;
    }
}

@keyframes breathing-glow {
    0%,
    100% {
        filter:
            drop-shadow(0 0 12px rgba(182, 148, 96, 0.14));
    }

    50% {
        filter:
            drop-shadow(0 0 22px rgba(182, 148, 96, 0.24));
    }
}

@media (max-width: 600px) {
    .landing-page {
        padding: 30px 18px 22px;
    }

    .logo {
        width: min(460px, 94vw);
        margin-bottom: 24px;
    }

    h1 {
        font-size: clamp(2.1rem, 11vw, 3.5rem);
    }

    .statement {
        font-size: 1rem;
    }

    .status {
        font-size: 0.87rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .logo,
    .location,
    h1,
    .divider,
    .statement,
    .status,
    footer {
        animation: none;
    }
}
