:root {
  color-scheme: light;
  --paper: #f6f1e8;
  --ink: #171411;
  --muted: #6d6257;
  --line: rgba(23, 20, 17, 0.18);
  --accent: #b6422d;
  --accent-soft: rgba(182, 66, 45, 0.12);
  --shadow: rgba(57, 42, 30, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.9), transparent 30rem),
    radial-gradient(circle at 84% 80%, rgba(182, 66, 45, 0.12), transparent 24rem),
    var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(115deg, rgba(23, 20, 17, 0.04) 0 1px, transparent 1px 100%),
    transparent;
  background-size: 34px 34px;
}

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

.page-shell {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1fr);
  align-content: space-between;
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px);
}

.hero {
  width: min(100%, 820px);
  padding-top: clamp(44px, 9vh, 108px);
}

.eyebrow {
  width: max-content;
  margin: 0 0 28px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.38);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 10ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 14vw, 10.5rem);
  font-weight: 500;
  line-height: 0.82;
}

.lede {
  max-width: 680px;
  margin: clamp(28px, 4vw, 42px) 0 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  line-height: 1.28;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: 0 10px 30px var(--shadow);
  font-weight: 750;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.links a:hover,
.links a:focus-visible {
  border-color: rgba(182, 66, 45, 0.42);
  color: var(--accent);
  background: var(--accent-soft);
  transform: translateY(-2px);
}

.note {
  display: grid;
  gap: 8px;
  width: min(100%, 560px);
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.note h2,
.note p {
  margin: 0;
}

.note h2 {
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 560px) {
  .page-shell {
    padding: 24px;
  }

  h1 {
    font-size: clamp(3.8rem, 22vw, 6rem);
  }

  .links {
    gap: 10px;
  }

  .links a {
    flex: 1 1 120px;
  }
}
