:root {
  --cream: #f7f3ea;
  --surface: #fffbf6;
  --deep-green: #1b4332;
  --deep-green-light: #2d6a4f;
  --warm: #e07a5f;
  --text-muted: #6f6a62;
  --text-secondary: #5c5c5c;
  --outline: #d4cec3;
  --radius: 22px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Source Sans 3", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.45;
  color: var(--text-secondary);
  background: var(--cream);
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 3rem;
  text-align: center;
}

.card {
  max-width: 420px;
  width: 100%;
  background: var(--surface);
  border: 1px solid rgba(212, 206, 195, 0.9);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: 0 12px 40px rgba(27, 67, 50, 0.08);
}

h1 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.25rem, 6vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--deep-green);
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.tagline {
  margin: 0 0 1.75rem;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

a.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--deep-green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.2);
}

.btn-primary:hover {
  background: var(--deep-green-light);
}

.btn-secondary {
  background: #fff;
  color: var(--deep-green);
  border: 1px solid rgba(27, 67, 50, 0.15);
}

.btn-secondary:hover {
  border-color: rgba(27, 67, 50, 0.28);
}

.btn-muted {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.95rem;
  padding: 0.65rem;
}

.btn-muted:hover {
  color: var(--deep-green);
}

.note {
  margin-top: 1.75rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

footer a {
  color: var(--deep-green-light);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
