:root {
  --navy: #1f2a6b;
  --orange: #e8870e;
  --ink: #1a1a1a;
  --paper: #fbf8f2;
  --card: #ffffff;
  --muted: #4a4a4a;
  --maxw: 60rem;
}

* { box-sizing: border-box; }

html { font-size: 112.5%; }       /* ~18px base — large, senior-friendly */

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 1.5rem; }

header.hero {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1.5rem;
}
header.hero h1 { margin: 0 0 .25rem; font-size: 2.4rem; line-height: 1.15; }
header.hero .sub { font-style: italic; font-size: 1.4rem; opacity: .95; }

.packshot {
  display: block;
  max-width: 22rem;
  width: 100%;
  height: auto;
  margin: 1.5rem auto 0;
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.lead { font-size: 1.5rem; text-align: center; margin: 2rem 0; }

.facts {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 28rem;
  font-size: 1.25rem;
}
.facts li {
  padding: .6rem 0;
  border-bottom: 1px solid #e6e0d4;
  display: flex; justify-content: space-between; gap: 1rem;
}
.facts li span:last-child { font-weight: bold; color: var(--navy); text-align: right; }

.cta {
  background: var(--card);
  border: 3px solid var(--orange);
  border-radius: 10px;
  padding: 1.75rem;
  margin: 2.5rem auto;
  max-width: 32rem;
  text-align: center;
}
.cta h2 { margin: 0 0 1rem; color: var(--navy); font-size: 1.6rem; }
.cta a { color: var(--navy); font-weight: bold; text-decoration: none; }
.cta a:hover, .cta a:focus { text-decoration: underline; }
.cta .contact { font-size: 1.5rem; margin: .4rem 0; }
.cta .name { font-size: 1.25rem; margin-bottom: .75rem; }

.stories p { font-size: 1.2rem; margin: 1.25rem 0; }

footer {
  text-align: center;
  font-style: italic;
  color: var(--muted);
  padding: 2.5rem 1.5rem 3rem;
}
footer .signature { font-size: 1.2rem; }

@media (max-width: 30rem) {
  header.hero h1 { font-size: 1.9rem; }
  html { font-size: 106%; }
}
