:root {
  --ink: #142033;
  --muted: #627086;
  --line: #d8e1ee;
  --paper: #f3f7f5;
  --panel: #fff;
  --brand: #2563eb;
  --accent: #f97316;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
}
.topbar {
  min-height: 72px;
  padding: 14px clamp(16px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.topbar div { display: grid; gap: 2px; }
.topbar span, .muted { color: var(--muted); font-size: .92rem; }
.layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
}
section, .quote-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
}
h1, h2 { margin: 0 0 18px; }
h1 { font-size: clamp(2rem, 4vw, 3.6rem); line-height: 1.05; }
h2 { font-size: 1.2rem; }
.list { display: grid; gap: 12px; }
.request {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  display: grid;
  gap: 8px;
  background: #fbfdff;
}
.request button { justify-self: start; }
.meta { color: var(--muted); font-size: .9rem; }
form, label { display: grid; gap: 8px; }
form { gap: 14px; }
label { color: var(--muted); font-size: .9rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 116px; resize: vertical; }
button {
  border: 0;
  border-radius: 8px;
  min-height: 44px;
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
  color: white;
  background: var(--brand);
  cursor: pointer;
}
.tag {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  color: #8a3d00;
  background: #fff0df;
  font-weight: 700;
  font-size: .78rem;
}
@media (max-width: 880px) {
  .layout { grid-template-columns: 1fr; }
  .topbar { align-items: stretch; flex-direction: column; }
}
