:root {
  --green: #004225;
  --green-deep: #00311c;
  --cream: #f4efe4;
  --cream-muted: #cfc7b4;
  --accent: #9fbf9a;
  --rule: rgba(244, 239, 228, 0.25);
  --serif: "EB Garamond", Garamond, "Cormorant Garamond", "Times New Roman", serif;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--serif);
  background: var(--green);
  background-image: radial-gradient(ellipse at top, var(--green) 0%, var(--green-deep) 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 40rem;
  margin: 0 auto;
}

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

h1 {
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin: 0 0 1.25rem;
}


.rule {
  width: 3rem;
  height: 1px;
  background: var(--rule);
  margin: 2rem 0;
}

.note {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-muted);
  margin: 0;
}
