/* goldenhorde.com — Darius's stylesheet (2026-09-21), lifted out of the page so privacy.html, terms.html and
   404.html share it. Colours and type are his; the additions are .legal, .doc (the policy pages) and footer
   link hover. */
:root{
  --bg:#ffffff;
  --ink:#1a1d24;
  --muted:#5b616e;
  --line:#e3e5ea;
  --navy:#1f2a44;
  --gold:#b98a2c;
  --gold-dark:#946d1f;
  --panel:#f6f7f9;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;background:var(--bg);color:var(--ink);font-family:"Source Sans 3",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;font-size:18px;line-height:1.6}
a{color:inherit}
img{max-width:100%}
.wrap{max-width:1040px;margin:0 auto;padding:0 24px}
h1,h2,h3{line-height:1.15;margin:0 0 16px;font-weight:700}
h1{font-size:clamp(34px,5vw,54px);color:#fff}
h2{font-size:32px;color:var(--navy)}
h3{font-size:20px;margin-bottom:8px}
p{margin:0 0 16px}

header{border-bottom:1px solid var(--line);background:#fff;position:sticky;top:0;z-index:5}
.nav{display:flex;align-items:center;justify-content:space-between;height:68px}
.brand{font-weight:700;font-size:20px;text-decoration:none;color:var(--navy);letter-spacing:.2px}
.brand span{color:var(--gold)}
.nav ul{list-style:none;margin:0;padding:0;display:flex;gap:28px}
.nav a{text-decoration:none;color:var(--ink);font-weight:600;font-size:16px}
.nav a:hover{color:var(--gold-dark)}

.hero{background:var(--navy);color:#fff;padding:96px 0}
.hero p{font-size:20px;color:#d5d9e2;max-width:560px;margin-bottom:28px}
.hero .kicker{color:var(--gold);font-weight:600;font-size:17px;margin-bottom:12px}
.btn{display:inline-block;background:var(--gold);color:#fff;text-decoration:none;font-weight:700;padding:14px 26px;border-radius:4px;font-size:17px}
.btn:hover{background:var(--gold-dark)}
.btn:focus-visible,a:focus-visible{outline:3px solid var(--gold);outline-offset:3px}

section{padding:72px 0}
section + section{border-top:1px solid var(--line)}
.lede{max-width:680px;color:var(--muted);font-size:19px}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:32px}
.grid p{color:var(--muted);margin:0;font-size:17px}

.panel{background:var(--panel)}
.two{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.roles{list-style:none;padding:0;margin:16px 0 0}
.roles li{padding:14px 0;border-bottom:1px solid var(--line);font-weight:600}
.roles li small{display:block;font-weight:400;color:var(--muted)}

.contact p{margin-bottom:8px}
.contact a{color:var(--gold-dark);font-weight:600;text-decoration:none}
.contact a:hover{text-decoration:underline}
.contact .legal{margin-top:20px;color:var(--muted)}

/* The policy pages and the 404: one column of prose under the same header and footer. */
.doc{max-width:760px;padding:56px 24px 72px}
.doc h1{color:var(--navy);font-size:clamp(28px,4vw,40px);margin-bottom:8px}
.doc h2{font-size:22px;margin-top:36px}
.doc p,.doc li{color:var(--ink)}
.doc .updated{color:var(--muted);font-size:16px;margin-bottom:32px}
.doc a{color:var(--gold-dark);font-weight:600;text-decoration:none}
.doc a:hover{text-decoration:underline}

footer{border-top:1px solid var(--line);padding:28px 0;font-size:15px;color:var(--muted)}
footer .wrap{display:flex;justify-content:space-between;flex-wrap:wrap;gap:12px}
footer a{text-decoration:none;color:var(--muted)}
footer a:hover{color:var(--gold-dark)}

@media (max-width:760px){
  /* Phones: the menu drops under the wordmark instead of squeezing "What we do" onto two lines. */
  .nav{flex-wrap:wrap;height:auto;padding:12px 0 10px;row-gap:6px}
  .nav ul{gap:16px;flex-wrap:wrap}
  .nav a{font-size:15px;white-space:nowrap}
  .hero{padding:64px 0}
  section{padding:52px 0}
  .grid,.two{grid-template-columns:1fr;gap:28px}
  h2{font-size:27px}
}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}
