/* Big type and calm colour. The audience is 70+, so nothing here is subtle for
   its own sake: 19px body, high contrast, and targets a thumb can find. */
:root {
  --ink: #1c1c1a;
  --muted: #5c5c56;
  --green: #2f8f56;
  --green-dark: #226b41;
  --sand: #f6f4ee;
  --card: #ffffff;
  --line: #e3ded2;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font: 19px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-dark); }

.bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 22px; background: var(--card);
  border-bottom: 1px solid var(--line); flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 21px; color: var(--ink); text-decoration: none; }
.brand img { border-radius: 8px; }
.bar nav { display: flex; gap: 20px; flex-wrap: wrap; }
.bar nav a { text-decoration: none; font-weight: 600; }

main { max-width: 1060px; margin: 0 auto; padding: 0 22px; }

.hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 44px; align-items: center; padding: 56px 0 40px; }
h1 { font-size: 44px; line-height: 1.15; margin: 0 0 18px; letter-spacing: -0.5px; }
.lede { font-size: 21px; color: var(--muted); margin: 0 0 26px; }
.shot { border-radius: 22px; box-shadow: 0 18px 44px rgba(0,0,0,.13); justify-self: center; }

.cta { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 15px 26px; border-radius: 14px;
  background: var(--green); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 18px;
}
.btn:hover { background: var(--green-dark); }
.btn-quiet { background: var(--card); color: var(--green-dark); border: 2px solid var(--line); }
.btn-quiet:hover { background: #efece3; }
.small { font-size: 16px; color: var(--muted); margin-top: 14px; }

.band { padding: 48px 0; border-top: 1px solid var(--line); }
.band.alt { background: transparent; }
.band h2 { font-size: 31px; margin: 0 0 26px; letter-spacing: -0.3px; }
.wide { max-width: 720px; color: var(--muted); font-size: 20px; }

.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.two { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.three h3, .card h3 { font-size: 21px; margin: 0 0 8px; }
.three p { color: var(--muted); margin: 0; }

.card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 24px; }
.card ul { margin: 0; padding-left: 22px; }
.card li { margin-bottom: 8px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.gallery figure { margin: 0; }
.gallery img { border-radius: 16px; box-shadow: 0 10px 26px rgba(0,0,0,.1); }
figcaption { font-size: 17px; color: var(--muted); margin-top: 12px; }

blockquote { margin: 0; background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 22px; }
blockquote p { margin: 0 0 12px; }
cite { font-style: normal; font-size: 16px; color: var(--muted); }

.faq dt { font-weight: 700; font-size: 21px; margin-top: 24px; }
.faq dd { margin: 8px 0 0; color: var(--muted); }

.final { text-align: center; border-top: 1px solid var(--line); }
.final .wide { margin: 0 auto 24px; }
.final .cta { justify-content: center; }

footer { text-align: center; padding: 36px 22px 52px; color: var(--muted); font-size: 16px; }
footer p { margin: 6px 0; }

@media (max-width: 820px) {
  body { font-size: 18px; }
  .hero { grid-template-columns: 1fr; padding-top: 34px; gap: 30px; }
  h1 { font-size: 34px; }
  .three, .two, .gallery { grid-template-columns: 1fr; }
  .shot { max-width: 320px; }
}
