:root {
  color-scheme: light;
  --paper: #f5efe3;
  --ink: #25221d;
  --muted: #746c60;
  --line: #cfc3b2;
  --wash: rgba(255, 255, 255, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Source Sans 3", system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.7), transparent 32rem),
    radial-gradient(circle at 82% 88%, rgba(173, 145, 104, 0.08), transparent 28rem),
    var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    repeating-radial-gradient(circle at 0 0, rgba(82, 66, 43, 0.08) 0 0.6px, transparent 0.7px 4px);
  mix-blend-mode: multiply;
}

.page-shell {
  width: min(62rem, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 8rem) 0 5rem;
}

.masthead {
  max-width: 40rem;
  margin-bottom: clamp(4rem, 10vw, 7rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 12vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.86;
}

.intro {
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  line-height: 1.35;
}

.collection {
  border-top: 1px solid var(--line);
}

.entry {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.65rem 0;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: padding 160ms ease, background-color 160ms ease;
}

.entry:hover,
.entry:focus-visible {
  padding-inline: 1rem;
  background: var(--wash);
  outline: none;
}

.entry__number {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.entry__body {
  display: grid;
  gap: 0.2rem;
}

.entry__title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 600;
  line-height: 1;
}

.entry__description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.entry__arrow {
  font-size: 1.25rem;
  transition: transform 160ms ease;
}

.entry:hover .entry__arrow,
.entry:focus-visible .entry__arrow {
  transform: translate(0.2rem, -0.2rem);
}

@media (max-width: 36rem) {
  .page-shell {
    width: min(100% - 1.5rem, 62rem);
    padding-top: 3.5rem;
  }

  .masthead {
    margin-bottom: 3.5rem;
  }

  .entry {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.75rem;
  }

  .entry__description {
    max-width: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
