:root {
  --bg: #f6f1e8;
  --surface: #fffdf8;
  --ink: #1e2430;
  --muted: #5e6572;
  --line: #e4d9c8;
  --spruce: #1f4d45;
  --spruce-ink: #f3faf7;
  --butter: #e7b15a;
  --butter-ink: #2a2112;
  --soft: #eef4f1;
  --card: 1.25rem;
  color: var(--ink);
  background: var(--bg);
  font-family: Outfit, "Segoe UI", sans-serif;
  line-height: 1.5;
}
* { box-sizing: border-box; }
body { margin: 0; min-height: 100vh; }
button, select, input { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, .logo { font-family: Fraunces, Georgia, serif; font-weight: 560; letter-spacing: -0.02em; }
.bar, main, footer { width: min(64rem, calc(100% - 2rem)); margin-inline: auto; }
.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}
.brand { background: none; border: 0; text-align: left; color: inherit; padding: 0; }
.eyebrow { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--spruce); }
.logo { font-size: 1.6rem; line-height: 1; }
.tools { display: flex; align-items: center; gap: 0.4rem; margin-left: auto; }
nav { display: flex; gap: 0.4rem; }
#logout,
#refresh {
  min-height: 2.75rem;
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
  background: var(--spruce);
  color: var(--spruce-ink);
  font-weight: 700;
}
#logout[hidden],
#refresh[hidden] { display: none; }
nav button, .btn {
  min-height: 2.75rem;
  border: 0;
  border-radius: 999px;
  padding: 0 1rem;
  background: transparent;
  color: var(--ink);
  font-weight: 700;
}
a.btn { display: inline-flex; align-items: center; text-decoration: none; }
nav button.on { background: var(--spruce); color: var(--spruce-ink); }
main { padding-bottom: 2rem; }
footer { border-top: 1px solid var(--line); padding: 1.5rem 0 2rem; color: var(--muted); font-size: 0.95rem; }
h1 { font-size: clamp(2.4rem, 6vw, 3.4rem); line-height: 1.05; margin: 0.4rem 0; }
h2 { font-size: 1.8rem; margin: 0; }
.lede { max-width: 34rem; font-size: 1.15rem; color: var(--muted); }
.grid { display: grid; gap: 0.8rem; }
.two { grid-template-columns: 1fr; }
.three { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .two { grid-template-columns: 1fr 1fr; }
  .three { grid-template-columns: repeat(3, 1fr); }
  .end { align-items: end; }
}
.card { background: var(--surface); border-radius: var(--card); padding: 1.1rem 1.2rem; }
.spruce { background: var(--spruce); color: var(--spruce-ink); }
.btn.butter { background: var(--butter); color: var(--butter-ink); }
.btn.spruce { background: var(--spruce); color: var(--spruce-ink); }
.btn:disabled { opacity: 0.5; cursor: default; }
.stack { display: flex; flex-direction: column; gap: 0.9rem; }
label { display: flex; flex-direction: column; gap: 0.3rem; font-weight: 700; }
input, select {
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  padding: 0 0.8rem;
}
.choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  border-radius: 1rem;
  padding: 0.7rem 1rem;
  background: var(--surface);
  cursor: pointer;
}
.choice.on { background: var(--spruce); color: var(--spruce-ink); }
.muted { color: var(--muted); }
.row { display: flex; justify-content: space-between; gap: 0.8rem; align-items: flex-start; }
.pill { border-radius: 999px; background: var(--soft); color: var(--spruce); font-size: 0.85rem; font-weight: 700; padding: 0.25rem 0.7rem; }
.kicker { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.staff { background: none; border: 0; padding: 0; color: var(--muted); font-weight: 700; text-decoration: underline; }
