:root {
  color-scheme: light;
  --ink: #18312e;
  --muted: #586663;
  --paper: #fbfaf6;
  --surface: #ffffff;
  --line: #dce3df;
  --accent: #8b6845;
  --link: #24594f;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(139, 104, 69, 0.08), transparent 34rem),
    linear-gradient(145deg, #fbfaf6 0%, #f1f5f2 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

.shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 3rem 1.25rem;
}

.holding-card {
  width: min(100%, 46rem);
  padding: clamp(2rem, 7vw, 4.5rem);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  box-shadow: 0 1.5rem 4rem rgba(24, 49, 46, 0.09);
}

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

h1 {
  max-width: 13ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.subtitle {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.5vw, 1.3rem);
  line-height: 1.6;
}

.rule {
  width: 4rem;
  height: 2px;
  margin: 2rem 0;
  background: var(--accent);
}

.body-copy {
  max-width: 39rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.75;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.links a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  color: var(--link);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease;
}

.links a:hover,
.links a:focus-visible {
  border-color: #9eb6af;
  background: #f3f7f5;
}

.links span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.note {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.note a {
  color: inherit;
  text-underline-offset: 0.18em;
}

@media (max-width: 34rem) {
  .shell {
    align-items: start;
    padding-top: 1.25rem;
  }

  .holding-card {
    border-radius: 1rem;
  }

  .links {
    display: grid;
  }

  .links a {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: reduce) {
  .links a {
    transition: none;
  }
}
