:root {
    color-scheme: dark;
    --navy: #07111c;
    --panel: #0d2033;
    --gold: #d4af37;
    --text: #f4efe4;
    --muted: #aeb7c1;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: linear-gradient(145deg, #06101a, #0b1d30 55%, #07111c);
    color: var(--text);
    font: 16px/1.72 Arial, Helvetica, sans-serif;
}

a { color: var(--gold); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 20;
    padding: 10px 14px;
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

header {
    border-bottom: 1px solid rgba(212, 175, 55, .3);
    background: rgba(7, 17, 28, .94);
}

.header-inner,
main,
footer {
    width: min(960px, calc(100% - 36px));
    margin: 0 auto;
}

.header-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    text-decoration: none;
}

.brand img { width: 54px; height: auto; }
.brand strong { letter-spacing: .12em; }

.languages { display: flex; gap: 12px; font-size: 13px; }
.languages a[aria-current="page"] { color: var(--text); text-decoration: none; }

main { padding: 58px 0 72px; }

.eyebrow {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { max-width: 760px; margin: 10px 0 14px; font-size: clamp(34px, 6vw, 58px); line-height: 1.08; }
h2 { margin-top: 0; color: var(--gold); font-size: 25px; line-height: 1.25; }
h3 { margin: 24px 0 6px; font-size: 17px; }

.lead { max-width: 760px; color: var(--muted); font-size: 18px; }
.updated { color: var(--muted); font-size: 13px; }

.notice {
    margin-top: 28px;
    padding: 22px;
    border: 1px solid rgba(212, 175, 55, .35);
    border-radius: 12px;
    background: rgba(13, 32, 51, .8);
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 30px;
}

section.card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 12px;
    background: rgba(13, 32, 51, .88);
}

.card-wide { grid-column: 1 / -1; }
.facts { margin: 0; display: grid; gap: 10px; }
.facts div { display: grid; grid-template-columns: 160px 1fr; gap: 18px; }
.facts dt { color: var(--muted); }
.facts dd { margin: 0; overflow-wrap: anywhere; }
ul { padding-left: 22px; }

footer {
    padding: 28px 0 44px;
    color: var(--muted);
    font-size: 13px;
    border-top: 1px solid rgba(212, 175, 55, .25);
}

@media (max-width: 680px) {
    .header-inner { align-items: flex-start; flex-direction: column; padding: 18px 0; }
    .grid { grid-template-columns: 1fr; }
    .card-wide { grid-column: auto; }
    .facts div { grid-template-columns: 1fr; gap: 2px; }
    section.card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
}
