@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Inter:wght@400;500;600&display=swap");

:root { color-scheme: dark; --clay: #d08352; --gold: #e0b46b; --ink: #180f0b; --paper: #f7e8cf; }
* { box-sizing: border-box; }
html, body { min-height: 100%; margin: 0; }
body { background: var(--ink); color: var(--paper); font-family: Inter, system-ui, sans-serif; }
.hero { position: relative; isolation: isolate; display: grid; min-height: 100svh; align-items: center; overflow: hidden; padding: clamp(1.5rem, 5vw, 5rem); background: #271913 url("/assets/overseer-under-construction.webp") center / cover no-repeat; }
.veil { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(18, 10, 7, .96) 0%, rgba(25, 14, 9, .86) 35%, rgba(25, 14, 9, .2) 69%, rgba(25, 14, 9, .12)), linear-gradient(0deg, rgba(15, 8, 5, .75), transparent 35%); }
.content { width: min(42rem, 100%); padding-block: 3rem; }
.eyebrow { display: flex; gap: .7rem; align-items: center; margin: 0 0 1.2rem; color: var(--gold); font: 600 .78rem/1 Cinzel, serif; letter-spacing: .22em; text-transform: uppercase; }
h1 { margin: 0; font: 600 clamp(3.1rem, 8vw, 6.8rem)/.93 Cinzel, Georgia, serif; letter-spacing: -.045em; text-wrap: balance; text-shadow: 0 3px 28px #000; }
.lede { max-width: 36rem; margin: 1.6rem 0 2rem; color: #efdcc2; font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.65; }
.status { display: flex; gap: .9rem; align-items: center; width: fit-content; padding: .9rem 1.1rem; border: 1px solid rgba(224, 180, 107, .45); border-radius: .3rem; background: rgba(30, 17, 11, .72); backdrop-filter: blur(8px); }
.status-mark { width: .7rem; height: .7rem; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 .35rem rgba(208, 131, 82, .18); }
.status span:last-child { display: grid; gap: .2rem; }
.status strong { color: #fff0d2; font: 600 .86rem Cinzel, serif; letter-spacing: .08em; text-transform: uppercase; }
.status small { color: #cebda7; }
.actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.actions a { display: inline-flex; min-height: 3rem; align-items: center; justify-content: center; padding: .75rem 1.15rem; border: 1px solid var(--gold); border-radius: .2rem; color: #fff3dc; font-weight: 600; text-decoration: none; transition: transform .18s, background .18s; }
.actions a:hover { transform: translateY(-2px); }
.actions .primary { background: linear-gradient(135deg, #9d4c2b, #6d2f1b); }
.actions .secondary { background: rgba(20, 12, 8, .55); }
footer { position: absolute; bottom: 1.4rem; left: clamp(1.5rem, 5vw, 5rem); color: #bba58b; font-size: .78rem; letter-spacing: .06em; }
@media (max-width: 700px) { .hero { align-items: end; background-position: 64% center; } .veil { background: linear-gradient(0deg, rgba(17, 9, 6, .98) 0%, rgba(17, 9, 6, .82) 55%, rgba(17, 9, 6, .2)); } .content { padding-bottom: 5.5rem; } h1 { font-size: clamp(2.8rem, 14vw, 4.6rem); } footer { display: none; } }
@media (prefers-reduced-motion: reduce) { .actions a { transition: none; } }
