:root {
    --ink: #121212;
    --muted: #66645f;
    --paper: #f6f5f0;
    --line: #dcdad2;
    --accent: #315f52;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
}

a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 6vw;
}

.logo { font-size: 1.35rem; font-weight: 750; letter-spacing: -0.04em; }

nav { display: flex; gap: 24px; font-size: .92rem; color: var(--muted); }
nav a:hover { color: var(--ink); }

.hero {
    width: min(100%, 980px);
    padding: clamp(80px, 13vh, 150px) 6vw 90px;
    align-self: center;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 850px;
    font-size: clamp(3.5rem, 9vw, 7.8rem);
    line-height: .92;
    letter-spacing: -.075em;
}

.role {
    margin: 22px 0 0;
    font-size: clamp(1.2rem, 2.6vw, 1.9rem);
    color: var(--muted);
    letter-spacing: -.025em;
}

.intro {
    max-width: 680px;
    margin: 50px 0 0;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    line-height: 1.55;
}

.status {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 34px;
    color: var(--muted);
    font-size: .95rem;
}

.globe {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.5);
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 6vw;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: .82rem;
}

footer p { margin: 0; }
.legal { display: flex; gap: 18px; }
.legal a:hover { color: var(--ink); }

.policy {
    width: min(100%, 760px);
    margin: 0 auto;
    padding: 80px 6vw 110px;
    line-height: 1.7;
}

.policy h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -.055em; line-height: 1; }
.policy h2 { margin-top: 42px; font-size: 1.15rem; }
.policy p { color: #45443f; }
.policy a { text-decoration: underline; text-underline-offset: 3px; }

#cookie-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: min(440px, calc(100% - 44px));
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 50px rgba(0,0,0,.12);
    font-size: .82rem;
}

#cookie-banner[hidden] { display: none; }

#cookie-banner p { margin: 0; line-height: 1.45; }
#cookie-banner a { text-decoration: underline; }
#cookie-banner button {
    flex: 0 0 auto;
    border: 0;
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    background: var(--ink);
    cursor: pointer;
}

@media (max-width: 650px) {
    header { align-items: flex-start; gap: 22px; }
    nav { flex-direction: column; gap: 7px; align-items: flex-end; }
    .hero { padding-top: 70px; }
    footer { flex-direction: column; }
    #cookie-banner { align-items: flex-start; }
}
