:root {
  color-scheme: light;
  --ink: #101820;
  --paper: #f8f0da;
  --gold: #c49b3d;
  --panel: rgba(16, 24, 32, 0.88);
  --text: #f8f0da;
  --muted: rgba(248, 240, 218, 0.78);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", system-ui, sans-serif;
  background:
    radial-gradient(circle at top, rgba(196, 155, 61, 0.28), transparent 42%),
    linear-gradient(180deg, #18222d 0%, #101820 100%);
  color: var(--text);
}

.site-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.hero {
  width: min(100%, 640px);
}

.single-panel {
  border: 1px solid rgba(196, 155, 61, 0.35);
  border-radius: 28px;
  padding: 32px 28px;
  background: var(--panel);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

h1 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  line-height: 0.95;
}

.lead,
.support-line {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.support-line {
  margin-top: 20px;
}

.text-link {
  color: var(--text);
}
