:root {
  color-scheme: light;
  --bg: #f4efe6;
  --panel: rgba(255, 255, 255, 0.82);
  --text: #1f1a17;
  --muted: #5e5148;
  --accent: #c65d2e;
  --accent-dark: #8f3e19;
  --border: rgba(31, 26, 23, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(198, 93, 46, 0.28), transparent 34%),
    linear-gradient(160deg, #efe0c8 0%, var(--bg) 55%, #eadfce 100%);
}

.hero {
  width: min(720px, calc(100% - 32px));
  margin: 8vh auto;
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(45, 24, 12, 0.12);
}

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

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

.copy {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
}

.button {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 20px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.button:hover {
  filter: brightness(1.05);
}
