:root {
    --cream: #ffffff;
    --accent: #c0392b;
    --dim: rgba(255, 255, 255, 0.82);
    --faint: rgba(255, 255, 255, 0.55);
    --gap: clamp(0.5rem, 2vh, 1.4rem);
}

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

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Lato', sans-serif;
    color: var(--cream);
    opacity: 0;
    transition: opacity 1.4s ease;
    overflow-x: hidden;
    overflow-y: auto;
}

body.ready {
    opacity: 1;
}

/* Background map */
.bg {
    position: fixed;
    inset: 0;
    background-image: url('guanoro-map.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.22) saturate(0.6);
    z-index: -2;
}

/* Radial vignette overlay */
.vignette {
    position: fixed;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(10, 8, 5, 0.6) 100%);
    z-index: -1;
}

/* Main content */
main {
    text-align: center;
    padding: clamp(1.5rem, 5vw, 4rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--gap);
    flex: 1;
    width: 100%;
}

.eyebrow {
    font-weight: 300;
    font-size: clamp(0.55rem, 1.4vw, 0.8rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--faint);
}

h1 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: clamp(3.5rem, 13vw, 10rem);
    letter-spacing: 0.1em;
    line-height: 1;
    text-shadow: 0 2px 60px rgba(0, 0, 0, 0.8);
}

.coords {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: clamp(0.85rem, 2.2vw, 1.3rem);
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.75);
}

.rule {
    width: clamp(1.5rem, 4vw, 2.5rem);
    height: 1px;
    background-color: var(--accent);
}

.tagline {
    font-weight: 300;
    font-style: italic;
    font-size: clamp(0.8rem, 2vw, 1.05rem);
    letter-spacing: 0.12em;
    color: var(--dim);
    margin-bottom: calc(var(--gap) * -0.5);
}

.sub {
    font-weight: 300;
    font-size: clamp(0.65rem, 1.5vw, 0.82rem);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--faint);
}

.meta {
    font-weight: 300;
    font-size: clamp(0.55rem, 1.2vw, 0.68rem);
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.links {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
}

.link-btn {
    display: flex;
    align-items: center;
    gap: clamp(0.3rem, 0.8vw, 0.5rem);
    color: rgba(255, 255, 255, 0.38);
    text-decoration: none;
    font-weight: 300;
    font-size: clamp(0.55rem, 1.2vw, 0.68rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.link-btn svg {
    width: clamp(0.85rem, 1.6vw, 1.1rem);
    height: clamp(0.85rem, 1.6vw, 1.1rem);
    flex-shrink: 0;
}

.link-btn:hover {
    color: rgba(255, 255, 255, 0.85);
}

/* Footer */
footer {
    width: 100%;
    padding: clamp(0.8rem, 2vh, 1.4rem);
    text-align: center;
    font-weight: 300;
    font-size: clamp(0.5rem, 1vw, 0.62rem);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}
