:root{
  --ground:#12110E; --panel:#1A1811; --field:#22201A; --ink:#F4EFE2; --dim:#948C79;
  --rule:#2E2A21; --gold:#D9B662; --ok:#79A87F; --bad:#DE8560;
  --sans:ui-sans-serif,-apple-system,"Segoe UI",Inter,Helvetica,Arial,sans-serif;
  --mono:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
}
*{box-sizing:border-box}
body{margin:0;background:var(--ground);color:var(--ink);font-family:var(--sans);font-size:16px;line-height:1.6}
.wrap{max-width:660px;margin:0 auto;padding:44px 22px 90px}
.mark{font-size:12px;font-weight:800;letter-spacing:.2em;text-transform:uppercase;margin:0 0 30px}
.mark span{color:var(--gold)}
h1{font-size:clamp(28px,6vw,40px);font-weight:800;letter-spacing:-.025em;line-height:1.08;margin:0 0 14px;text-wrap:balance}
.lede{font-size:17.5px;color:#C6BFAC;margin:0 0 34px}
fieldset{border:0;padding:0;margin:0 0 30px}
legend{font-family:var(--mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--gold);padding:0 0 14px}
label{display:block;margin-bottom:18px}
label>b{display:block;font-size:14px;font-weight:700;margin-bottom:6px}
label>i{display:block;font-style:normal;font-family:var(--mono);font-size:11.5px;color:var(--dim);margin-bottom:7px;line-height:1.5}
input,select,textarea{width:100%;background:var(--field);color:var(--ink);border:1px solid var(--rule);
  border-radius:3px;padding:12px 13px;font:inherit;font-size:15.5px}
input:focus,select,textarea:focus{outline:2px solid var(--gold);outline-offset:1px;border-color:var(--gold)}
textarea{min-height:110px;resize:vertical}
/* The native file button renders as light grey chrome, which on this palette looks like a
   rendering fault rather than a control. It is also the first thing the team judges an event on,
   so it should not be the ugliest thing on the page. */
input[type=file]{padding:9px 10px;font-size:14px;cursor:pointer}
input[type=file]::file-selector-button{background:var(--field);color:var(--ink);border:1px solid var(--gold);
  border-radius:3px;padding:8px 14px;margin-right:12px;font:inherit;font-size:13.5px;font-weight:700;cursor:pointer}
input[type=file]::file-selector-button:hover{background:var(--gold);color:#17150F}
.two{display:grid;grid-template-columns:1fr 1fr;gap:0 14px}
.three{display:grid;grid-template-columns:2fr 1fr 1fr;gap:0 14px}
.check{display:flex;gap:11px;align-items:flex-start;background:var(--panel);border:1px solid var(--rule);
  border-radius:3px;padding:14px;margin-bottom:14px;cursor:pointer}
.check input{width:18px;height:18px;flex:none;margin:2px 0 0;accent-color:var(--gold)}
.check b{display:block;font-size:14.5px;margin-bottom:3px}
.check span{font-size:13px;color:var(--dim);line-height:1.5}
button{width:100%;background:var(--gold);color:#17150F;border:0;border-radius:3px;padding:16px;
  font:inherit;font-size:16px;font-weight:800;cursor:pointer}
button:disabled{opacity:.45;cursor:default}
button.ghost{background:transparent;color:var(--dim);border:1px solid var(--rule);font-weight:600}
button.bad{background:var(--bad);color:#17150F}
.msg{border-radius:3px;padding:14px 16px;margin-bottom:22px;font-size:14.5px;display:none}
.msg.show{display:block}
.msg.err{background:#2A1712;border:1px solid var(--bad);color:#FFD9CC}
.msg.ok{background:#14200F;border:1px solid var(--ok);color:#D8F0D5}
/* Advisory, not a rejection. Gold rather than red because a short lead time does not stop the
   submission: Kate still decides, and a rush job is sometimes worth taking. */
.msg.warn{background:#231C0E;border:1px solid var(--gold);color:#F2E3BC}
.msg.warn b{color:var(--gold)}
.hint{font-family:var(--mono);font-size:11.5px;color:var(--dim);line-height:1.7;margin:26px 0 0}
.hint a{color:var(--gold)}
.suggest{background:var(--panel);border:1px solid var(--gold);border-radius:3px;padding:12px 14px;
  margin:-8px 0 18px;font-size:14px;display:none}
.suggest.show{display:block}
.suggest button{width:auto;padding:7px 12px;font-size:13px;margin-top:9px}
.done{text-align:center;padding:50px 0}
.done h1{margin-bottom:16px}

/* .kv and .acts live HERE, not in review.html's own <style> block, and that placement is the
   whole point. They used to be declared in the page, which loads after this file: same
   specificity, later in the cascade, so the page rule beat the mobile override below and the
   media query silently did nothing. On a phone that left Kate's review page in a 150px label
   column with the values clipped at the card edge (a socials handle ran off the side) and the
   Decline button jammed next to Approve. Fixed 2026-08-05. Keep them in this file. */
.kv{display:grid;grid-template-columns:150px 1fr;gap:9px 16px;background:var(--panel);
  border:1px solid var(--rule);border-radius:3px;padding:18px;margin-bottom:22px;font-size:15px}
.kv b{font-family:var(--mono);font-size:10.5px;letter-spacing:.1em;text-transform:uppercase;color:var(--dim);padding-top:3px}
/* Long unbroken values (a URL, a handle) must wrap rather than push the column wider. */
.kv>div{min-width:0;overflow-wrap:anywhere}
.acts{display:grid;grid-template-columns:1fr 1fr;gap:12px}

/* On a phone the two- and three-up rows misalign whenever one field carries a hint and its
   neighbour does not — the inputs stop sharing a baseline. Single column below 560px. */
@media (max-width:560px){
  .two,.three{grid-template-columns:1fr}
  .wrap{padding:32px 18px 80px}
  .acts{grid-template-columns:1fr}
  .kv{grid-template-columns:1fr;gap:2px 0}
  .kv b{padding-top:12px}
}
