* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #f7f4ec;
  --ink: #1c1a16;
  --muted: #5c5648;
  --rule: #c9c2ab;
  --red: #8a1f11;
  --navy: #1f2d4d;
}

body {
  min-height: 100vh;
  background: #ded6bf;
  background-image:
    radial-gradient(circle at 50% 0%, rgba(0,0,0,0.06), transparent 60%);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.logo .hl { color: var(--red); }

nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 24px;
  font-size: 0.95rem;
}

nav a:hover { color: var(--ink); }

.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  color: var(--ink);
}

.hero .tagline {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero .cta {
  display: inline-block;
  background: var(--navy);
  color: #fdfaf2;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 16px 32px;
  border: none;
  transition: transform 0.15s ease, background 0.15s ease;
}

.hero .cta:hover {
  transform: translateY(-1px);
  background: #14203a;
}

.hero .cta-sub {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 14px;
}

.site-footer {
  text-align: center;
  padding: 20px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--rule);
}
