:root {
  --paper: #f5f3ee;
  --ink: #181512;
  --muted: #68615a;
  --rule: rgba(24, 21, 18, 0.16);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover { text-decoration-color: var(--muted); }

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.site-header,
main,
footer {
  width: min(100% - 48px, 1440px);
  margin-inline: auto;
}

.site-header {
  min-height: 136px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
}

.wordmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.55rem, 2vw, 2.25rem);
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.035em;
}

.page-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

main { padding: clamp(64px, 9vw, 140px) 0 clamp(80px, 10vw, 160px); }

.intro {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: clamp(64px, 8vw, 112px);
}

h1 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.065em;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 10vw, 168px);
}

.details-column { margin: 0; }

.detail {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--rule);
}

.detail:last-child { margin-bottom: 0; }

dt {
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.35;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

footer {
  display: flex;
  min-height: 100px;
  align-items: center;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.78rem;
}

footer p { margin: 0; }

@media (max-width: 760px) {
  .site-header, main, footer { width: min(100% - 32px, 1440px); }
  .site-header { min-height: 112px; }
  main { padding-top: 56px; }
  .intro { margin-bottom: 64px; }
  h1 { font-size: clamp(3.7rem, 20vw, 6rem); }
  .details { grid-template-columns: 1fr; gap: 28px; }
  .detail { padding-bottom: 22px; margin-bottom: 22px; }
  .details-column + .details-column { margin-top: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
