:root {
  --bg: #f6f5f3;
  --card: #fff;
  --ink: #1c1b1a;
  --ink-soft: #55524d;
  --line: #e3e0da;
  --accent: #2f5d50;
  --accent-hover: #254b40;
  --accent-soft: #e7efec;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(20,20,20,.06);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16151a;
    --card: #1f1e24;
    --ink: #ece9e4;
    --ink-soft: #a8a4a0;
    --line: #34323a;
    --accent: #7fb5a3;
    --accent-hover: #93c4b4;
    --accent-soft: #223330;
    --shadow: 0 1px 2px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.35);
  }
}

* { box-sizing: border-box; }
html { min-height: 100%; background: var(--bg); }
body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Quicksand, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.shell {
  width: min(100% - 40px, 720px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 0 32px;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}
.brand { font-size: 18px; }
.brand, .brand a { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; }
.mark { color: var(--accent); font-size: 20px; }
.logo-mark { width: 68px; height: auto; color: var(--ink); }
.staff-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid var(--accent);
  border-radius: 9px;
  color: var(--accent);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.staff-link:hover { background: var(--accent); color: var(--bg); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 52px);
}
.hero { margin: auto 0; }
.compact-card { margin: auto 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
h1 { margin: 0 0 14px; font-size: clamp(34px, 7vw, 52px); line-height: 1.05; letter-spacing: -.035em; }
.compact-card h1 { font-size: clamp(30px, 6vw, 42px); }
.lede { max-width: 48ch; margin: 0 0 30px; color: var(--ink-soft); font-size: 17px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  transition: background .15s ease, border-color .15s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { border-color: var(--accent); background: var(--accent); color: var(--bg); }
.btn-primary:hover { border-color: var(--accent-hover); background: var(--accent-hover); }
.btn-secondary { background: transparent; }
.btn-secondary:hover { border-color: var(--accent); background: var(--accent-soft); }
.note { margin: 18px 0 0; color: var(--ink-soft); font-size: 13px; }
.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 650;
}
.status span { font-size: 9px; }
.foot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12.5px;
}

@media (max-width: 520px) {
  .shell { width: min(100% - 28px, 720px); padding-top: 24px; }
  .site-header { margin-bottom: 26px; }
  .card { padding: 28px 22px; }
  .actions, .btn { width: 100%; }
  .foot { margin-top: 28px; }
}
