:root {
  --ink: #1a1a1a;
  --paper: #f6f2ec;
  --accent: #8a6a3a;
  --rule: rgba(26,26,26,0.15);
  --muted: rgba(26,26,26,0.6);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.switcher {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.switcher a { text-decoration: none; }
.switcher a:hover { color: var(--accent); }
.switcher .sep { margin: 0 0.4rem; opacity: 0.5; }
.switcher .current { color: var(--ink); }

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem 3rem;
  position: relative;
}
header {
  text-align: center;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}
.wordmark {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: 1.4rem;
  letter-spacing: 0.55em;
  text-indent: 0.55em;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
}
.jurisdiction {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}
.jurisdiction .slash { color: var(--accent); margin: 0 0.5em; }
.status {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
}
h1 {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.15;
  text-align: center;
  margin: 0 0 0.5rem;
  font-style: italic;
}
.tagline {
  text-align: center;
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 3rem;
  font-style: italic;
}
.lede {
  font-size: 1.15rem;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  color: rgba(26,26,26,0.85);
}
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 3rem;
}
.gallery img {
  width: 100%;
  height: auto;
  display: block;
  background: #ddd;
}
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 0 0 3rem;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.pillars h2 {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
  color: var(--accent);
}
.pillars p {
  margin: 0;
  color: rgba(26,26,26,0.8);
}
.closing {
  text-align: center;
  font-style: italic;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}
footer {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.45);
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
@media (max-width: 560px) {
  .wrap { padding: 3rem 1.25rem 2rem; }
  .pillars { grid-template-columns: 1fr; gap: 1.5rem; }
  .wordmark { letter-spacing: 0.4em; text-indent: 0.4em; font-size: 1.1rem; }
  .switcher { top: 0.9rem; right: 1rem; }
}
