:root {
  --hf-bg: #fff4dc;
  --hf-accent: #b46a3c;
  --hf-ink: #25212a;
  --hf-card: rgba(255, 255, 255, 0.82);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--hf-ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.55), transparent 24rem),
    linear-gradient(135deg, var(--hf-bg), #ffffff 130%);
}

.page-shell {
  width: min(960px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 4rem 0;
}

.hero-card {
  background: var(--hf-card);
  border: 3px solid color-mix(in srgb, var(--hf-accent) 40%, white);
  border-radius: 2rem;
  padding: clamp(2rem, 6vw, 4rem);
  box-shadow: 0 24px 80px rgba(37, 33, 42, 0.16);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "🦉";
  position: absolute;
  right: 1.25rem;
  top: 1rem;
  font-size: clamp(3rem, 8vw, 6rem);
  opacity: 0.18;
}

.site-kicker {
  color: var(--hf-accent);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.2rem, 8vw, 5rem);
  line-height: 0.95;
  margin: 0 0 1.5rem;
}

.body-text {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.65;
  max-width: 65ch;
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 2px dashed color-mix(in srgb, var(--hf-accent) 35%, transparent);
  color: color-mix(in srgb, var(--hf-ink) 70%, white);
  font-weight: 700;
}
