:root {
  --bg-top: #f7efe4;
  --bg-bottom: #f2c38b;
  --panel: rgba(255, 252, 247, 0.82);
  --text: #1f1a17;
  --accent: #b4572c;
  --shadow: rgba(83, 46, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 35%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
}

.hero {
  width: min(100%, 720px);
  padding: 48px 32px;
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 24px 60px var(--shadow);
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 5.5rem);
  line-height: 0.95;
}

.subtitle {
  margin: 20px auto 0;
  max-width: 30ch;
  font-size: 1.15rem;
  line-height: 1.6;
}
