:root {
  --paper: #f4efe6;
  --ink: #1c1712;
  --ink-soft: #5e564c;
  --rule: #d2c6b2;
  --serif: "EB Garamond", "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: "IBM Plex Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 8;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.masthead,
main,
.colophon {
  position: relative;
  z-index: 1;
}

.masthead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.35rem 6vw 0;
}

.masthead p {
  margin: 0;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.masthead__brand img {
  width: 1.55rem;
  height: auto;
}

.masthead__meta {
  color: var(--ink-soft);
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.title-page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 8vh 6vw 4.5rem;
  text-align: center;
}

.emblem {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}

.emblem img {
  display: block;
  width: min(15rem, 48vw);
  height: auto;
}

h1 {
  margin: 0;
  font-weight: 500;
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.lede {
  margin: 1.7rem 0 0;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
}

.status {
  margin: 1.5rem 0 0;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.manifesto {
  margin: 2.2rem auto 0;
  max-width: 28rem;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.colophon {
  padding: 0 6vw 2.4rem;
  text-align: center;
}

.colophon address,
.colophon a {
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: var(--ink-soft);
  text-decoration: none;
}

.colophon a {
  display: inline-block;
  margin-top: 0.55rem;
  border-bottom: 1px solid var(--rule);
}

.colophon a:hover,
.status a:hover {
  color: var(--ink);
}

.status a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
