:root {
  color-scheme: light;
  --page-background: #f4efe6;
  --page-ink: #1d221d;
  --page-muted: #5b6158;
  --page-accent: #8b5e3c;
  --panel-shadow: 0 24px 80px rgba(29, 34, 29, 0.14);
  --panel-border: rgba(29, 34, 29, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  color: var(--page-ink);
  background:
    radial-gradient(circle at top left, rgba(139, 94, 60, 0.22), transparent 38%),
    radial-gradient(circle at bottom right, rgba(67, 99, 82, 0.18), transparent 32%),
    linear-gradient(160deg, #f8f4ec 0%, var(--page-background) 55%, #ebe3d5 100%);
  font-family: Georgia, "Times New Roman", serif;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: var(--page-ink);
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(100%, 46rem);
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid var(--panel-border);
  border-radius: 1.75rem;
  background: rgba(255, 252, 247, 0.8);
  box-shadow: var(--panel-shadow);
  backdrop-filter: blur(12px);
}

.shell-compact {
  width: min(100%, 36rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--page-accent);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.lede {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: var(--page-muted);
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
  line-height: 1.6;
}

.cta {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  color: #ffffff;
  background: var(--page-ink);
  text-decoration: none;
}

a:focus-visible {
  outline: 3px solid var(--page-accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .shell {
    animation: rise 500ms ease-out both;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 40rem) {
  body {
    padding: 1rem;
  }

  .shell {
    border-radius: 1.25rem;
  }
}

@media (forced-colors: active) {
  .shell,
  .cta,
  .skip-link {
    border: 1px solid CanvasText;
    box-shadow: none;
  }
}