:root {
  color-scheme: light;
  --ink: #141414;
  --muted: #5b5b5b;
  --line: #d7d7d2;
  --paper: #f7f5ef;
  --white: #ffffff;
  --accent: #a92723;
  --accent-dark: #7e1d1a;
  --focus: #2357a6;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(20, 20, 20, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 20, 20, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family:
    Georgia,
    "Times New Roman",
    serif;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.page-shell {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 48px 20px 32px;
}

.page-shell-narrow {
  place-items: start center;
}

.hero {
  width: min(100%, 920px);
  padding: clamp(32px, 7vw, 84px) 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 34px);
}

.logo-mark {
  width: clamp(88px, 16vw, 148px);
  aspect-ratio: 1;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--ink);
  background: var(--white);
}

.logo-mark img {
  display: block;
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.logo-mark.logo-missing::before {
  content: attr(data-fallback);
  font-family:
    Arial Black,
    Impact,
    sans-serif;
  font-size: clamp(30px, 6vw, 56px);
  letter-spacing: 0;
  line-height: 1;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 7.6rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
}

.lede {
  max-width: 690px;
  margin: clamp(28px, 5vw, 42px) 0 0;
  color: #272727;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.28;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.button-primary {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
}

.button-secondary:hover {
  background: var(--white);
}

.status-note {
  margin: 46px 0 0;
  color: var(--muted);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: 0.98rem;
}

.site-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: 0.9rem;
}

.site-footer a,
.content-page a,
.back-link {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.content-page {
  width: min(100%, 720px);
  padding: clamp(32px, 7vw, 72px) 0;
}

.content-page h1 {
  margin-top: 34px;
  font-size: clamp(2.6rem, 8vw, 5rem);
}

.content-page p {
  color: #272727;
  font-size: 1.1rem;
  line-height: 1.7;
}

.back-link,
.updated {
  color: var(--muted);
  font-family:
    Arial,
    Helvetica,
    sans-serif;
  font-size: 0.94rem;
}

@media (max-width: 640px) {
  .brand-lockup {
    align-items: flex-start;
    flex-direction: column;
  }

  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
