@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-display: swap;
  font-weight: 400 700;
  src: url("/fonts/source-sans-3-latin-wght.woff2") format("woff2-variations"),
       url("/fonts/source-sans-3-latin-wght.woff2") format("woff2");
}

:root {
  --ink: #1a1213;
  --red: #9b1c2a;
  --red-dark: #4a1018;
  --muted: #5c4a4c;
  --rule: #c9b4b6;
  --paper: #f7f2f2;
  --white: #fff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  font: 16px/1.5 "Source Sans 3", "Segoe UI", sans-serif;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--red-dark);
}

a:hover {
  color: var(--red);
}

h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
}

h1 {
  font-size: 1.85rem;
}

h2 {
  font-size: 1.2rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0.3rem;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25em;
}

p,
ul,
ol {
  margin: 0 0 1em;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--red-dark);
  color: var(--white);
  padding: 0.5rem 0.8rem;
}

.skip:focus {
  left: 0;
}

.wrap {
  width: min(760px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  border-top: 6px solid var(--red);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
}

.header-inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0 0.75rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 1.05rem;
}

.site-header nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header nav a {
  color: var(--ink);
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a[aria-current="page"] {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero,
.page-hero {
  padding: 2.2rem 0 0.75rem;
}

.hero h1 {
  font-size: 2.35rem;
  margin-bottom: 0.25rem;
}

.hero .place {
  margin: 0 0 1rem;
  color: var(--red-dark);
  font-weight: 700;
}

.hero p,
.page-hero p {
  color: var(--muted);
  max-width: 40rem;
}

.hero-links {
  margin-top: 1.1rem;
}

.hero-links a {
  margin-right: 1.25rem;
}

.section {
  padding: 1.5rem 0 2rem;
}

.notice {
  list-style: none;
  margin: 0;
  padding: 0;
}

.notice li {
  padding: 0.7rem 0;
  border-top: 1px solid var(--rule);
}

.notice li:last-child {
  border-bottom: 1px solid var(--rule);
}

.notice time {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 0.15rem;
}

table.ops {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.98rem;
}

table.ops th,
table.ops td {
  text-align: left;
  vertical-align: top;
  padding: 0.7rem 0.8rem 0.7rem 0;
  border-top: 1px solid var(--rule);
}

table.ops th {
  width: 11rem;
  color: var(--red-dark);
  font-weight: 700;
}

table.ops tr:last-child th,
table.ops tr:last-child td {
  border-bottom: 1px solid var(--rule);
}

.job h2 {
  border: 0;
  padding: 0;
  font-size: 1.05rem;
}

.job {
  padding: 0.9rem 0;
  border-top: 1px solid var(--rule);
}

.job:last-of-type {
  border-bottom: 1px solid var(--rule);
}

.job .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.btn {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  background: var(--red-dark);
  color: var(--white);
  text-decoration: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover {
  background: var(--red);
  color: var(--white);
}

.people {
  margin: 0;
}

.people dt {
  font-weight: 700;
  margin-top: 0.8rem;
}

.people dd {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.facts {
  margin: 0;
}

.facts dt {
  font-weight: 700;
  margin-top: 0.8rem;
}

.facts dd {
  margin: 0.15rem 0 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

label {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.25rem;
}

input,
textarea {
  width: 100%;
  font: inherit;
  padding: 0.45rem 0.5rem;
  border: 1px solid var(--rule);
  background: var(--white);
  margin-bottom: 0.8rem;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--red-dark);
  outline-offset: 1px;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

.form-note {
  background: var(--paper);
  padding: 0.7rem 0.8rem;
  margin-top: 0.4rem;
}

.rules {
  padding-left: 1.2rem;
}

.rules li {
  margin-bottom: 0.65rem;
}

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 1rem 0 1.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 640px) {
  .contact-grid,
  table.ops,
  table.ops tbody,
  table.ops tr,
  table.ops th,
  table.ops td {
    display: block;
    width: 100%;
  }

  table.ops th {
    padding-bottom: 0;
    border-bottom: 0;
  }

  table.ops td {
    padding-top: 0.25rem;
    border-top: 0;
  }
}
