:root {
  --page-bg: #f5efd7;
  --paper: #f5efd7;
  --ink: #24211d;
  --muted: #615a4d;
  --rule: rgba(36, 33, 29, .72);
  --rule-soft: rgba(36, 33, 29, .22);
  --shell: min(100% - 56px, 1500px);
  --font-base: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--ink);
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.36;
}

a { color: inherit; }

.page {
  width: var(--shell);
  margin: 0 auto;
  padding: 26px 0 64px;
}

.masthead {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 21px;
}

.masthead img {
  display: block;
  width: min(100%, 66px);
  height: auto;
}

h1 {
  margin: 0;
  font-size: clamp(1.3rem, 3.5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: .82;
  text-transform: uppercase;
}

.dek {
  max-width: 980px;
  margin: 14px 0 0;
  font-size: clamp(.8rem, 1.1vw, 1.05rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.project-note {
  max-width: 980px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(.78rem, .95vw, .98rem);
  font-weight: 900;
  line-height: 1.2;
}

.faq-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}

.faq-nav a {
  min-width: 0;
  padding: 10px 12px;
  border-right: 1px solid var(--rule-soft);
  font-size: .74rem;
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
  text-transform: uppercase;
}

.faq-nav a:last-child { border-right: 0; }

.faq-nav a:hover,
.faq-nav a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.print-placeholder {
  border-top: 4px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 16px 0;
}

.print-placeholder p {
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.5rem);
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 24px, 1500px); }
  .page { padding-top: 18px; }
  .masthead { grid-template-columns: 43px minmax(0, 1fr); gap: 8px; padding: 6px; }
  .masthead img { width: 38px; }
  h1 { font-size: clamp(1.15rem, 6.5vw, 2.1rem); }
  .faq-nav { grid-template-columns: 1fr; }
  .faq-nav a { border-right: 0; border-top: 1px solid var(--rule-soft); }
}
