:root {
  --bg: #120f0d;
  --text: #fff3dc;
  --text-muted: rgba(255, 243, 220, 0.72);
  --line: rgba(255, 214, 124, 0.18);
  --gold: #ffd55f;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 0, 0.22), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(255, 213, 95, 0.18), transparent 18%),
    linear-gradient(180deg, #2a170a 0%, #18110d 35%, #100d0c 100%);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  padding: 88px 0 56px;
}

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

.hero h1 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.1rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.lead {
  margin: 0;
  max-width: 38rem;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.single-panel {
  padding: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 248, 234, 0.08), rgba(255, 248, 234, 0.04));
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.support-line {
  margin: 24px 0 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
}

@media (max-width: 840px) {
  .hero {
    padding-top: 44px;
  }
}
