:root {
  color-scheme: light;
  --bg: #f4f0ea;
  --panel: #fffaf2;
  --ink: #1f1a17;
  --muted: #655b53;
  --accent: #b24a28;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top right, #ffe9c5 0%, var(--bg) 45%);
  color: var(--ink);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  padding: 1.5rem;
}

.site-shell {
  max-width: 42rem;
  background: var(--panel);
  border: 1px solid #e5d7c4;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 16px 40px rgba(67, 43, 20, 0.12);
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}

h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.body-copy {
  margin: 1.25rem 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: white;
  background: linear-gradient(135deg, #c96f2f, var(--accent));
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}
