:root {
  --paper: #eee2c7;
  --paper-deep: #e2d2b1;
  --paper-shadow: rgba(96, 79, 45, 0.18);
  --ink-olive: #7a8453;
  --ink-plum: #7a4c63;
  --ink-soft: #5e6049;
  --background: #cfd0a1;
  --line: rgba(122, 132, 83, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink-soft);
  background:
    linear-gradient(rgba(233, 221, 194, 0.64), rgba(233, 221, 194, 0.64)),
    url("paper-texture.jpg") repeat,
    var(--paper);
  background-size: auto, 170px 170px, auto;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.14em;
}

.paper-background {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: none;
  opacity: 0;
}

.site-shell {
  width: min(100% - 2rem, 42rem);
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}

.card {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 3.5rem 2.75rem;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: none;
}

.hero,
.details-card,
.gallery {
  text-align: center;
}

.eyebrow,
.section-kicker,
h1,
h2,
h3,
.hero-copy,
.date {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--ink-olive);
  font-size: 0.82rem;
}

.wreath {
  color: var(--ink-olive);
  font-size: 2rem;
  margin: 0.9rem 0 0.4rem;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.4rem, 7vw, 4.3rem);
  color: var(--ink-olive);
  margin: 0;
}

h2 {
  color: var(--ink-plum);
  font-size: clamp(1.5rem, 4.6vw, 2.1rem);
  margin: 0.5rem 0 1rem;
}

h3 {
  color: var(--ink-olive);
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
}

.hero-copy,
.date {
  font-size: 1.05rem;
}

.hero-copy {
  color: var(--ink-soft);
  margin: 0.95rem 0 0.45rem;
}

.date {
  color: var(--ink-plum);
  margin: 0;
}

.lede,
.detail-block p {
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 28rem;
  margin-inline: auto;
}

.lede {
  max-width: 32rem;
}

.divider {
  width: 7rem;
  height: 1px;
  background: var(--line);
  margin: 1.8rem auto;
}

.divider-large {
  width: 10rem;
  margin: 2.5rem auto 2.25rem;
}

.detail-block + .detail-block {
  margin-top: 2.25rem;
}

.image-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

figure {
  margin: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.2rem;
  border: 1px solid rgba(118, 114, 71, 0.22);
  filter: saturate(0.88) contrast(0.96);
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 1rem, 42rem);
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .card {
    padding: 2.5rem 1.35rem;
  }
}
