:root {
  --bg: #f5efe7;
  --panel: #fffaf4;
  --ink: #2a211b;
  --muted: #6a5a50;
  --line: #e1d5c8;
  --accent: #8b4f32;
  --accent-soft: #f7e7da;
  --warm: #fff3e3;
  --green: #5a6b52;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(139, 79, 50, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(90, 107, 82, 0.12), transparent 24%),
    linear-gradient(180deg, #fbf7f1 0%, #f0e6da 100%);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  max-width: 1700px;
  margin: 0 auto;
  padding: 32px 18px 56px;
}

.panel {
  background: rgba(255, 250, 244, 0.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(70, 50, 38, 0.08);
}

.hero {
  padding: 24px;
  margin-bottom: 18px;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(247, 236, 225, 0.98)),
    linear-gradient(135deg, rgba(139, 79, 50, 0.09), transparent 35%);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hero-copy {
  min-width: 0;
}

.hero-spot {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
}

.hero-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  max-width: 44vw;
}

.hero-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section-title,
.page-kicker {
  font: 700 12px/1.2 Arial, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-note {
  margin: 8px auto 10px;
  max-width: 600px;
  color: var(--muted);
  font: 500 0.82rem/1.42 Arial, sans-serif;
  text-align: center;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

.lede,
p,
li {
  line-height: 1.55;
}

.workspace {
  display: block;
}

.main {
  display: grid;
  gap: 16px;
  justify-items: center;
}

.main > .panel {
  width: min(1440px, 100%);
}

.site-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  width: 100%;
  margin: 0 auto;
  padding-top: 4px;
}

.site-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-items: start;
  padding: 18px 20px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(251, 244, 236, 0.98));
  box-shadow: 0 6px 18px rgba(70, 50, 38, 0.05);
  min-height: 100%;
}

.site-row h3 {
  font-size: 1.03rem;
  margin-bottom: 0;
}

.site-row p {
  margin: 0;
  color: var(--muted);
  font: 500 0.92rem/1.45 Georgia, "Times New Roman", serif;
}

.site-link {
  align-self: start;
  justify-self: start;
  font: 600 10px/1.22 Arial, sans-serif;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-note {
  margin-top: 28px;
  padding: 12px 16px;
}

.site-disclaimer {
  margin: 0;
  color: var(--muted);
  font: 500 0.78rem/1.42 Arial, sans-serif;
}

.empty {
  padding: 12px 0;
  color: var(--muted);
  font: 500 0.96rem/1.4 Georgia, "Times New Roman", serif;
}

@media (max-width: 740px) {
  .shell {
    padding: 20px 14px 40px;
  }

  .hero-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-spot {
    justify-content: flex-start;
  }

  .hero-logo {
    width: 220px;
    max-width: 65vw;
  }

  .site-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .site-row {
    gap: 8px;
  }
}
