:root {
  --ink: #0f172a;
  --muted: #475569;
  --paper: #f8fafc;
  --card: #ffffff;
  --line: #e2e8f0;
  --navy: #0b1f3a;
  --amber: #f59e0b;
  --teal: #0f766e;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
h1, h2, h3, .brand, .btn, nav a, .eyebrow {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
a { color: var(--teal); }
.site-header, .site-footer, main { max-width: 960px; margin: 0 auto; padding: 0 20px; }
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: none;
  padding-left: 24px;
  padding-right: 24px;
  background: var(--navy);
  color: #fff;
}
.site-header a { color: #fff; text-decoration: none; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.brand img { border-radius: 8px; }
nav { display: flex; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.hero { padding: 48px 0 24px; }
.eyebrow { letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; color: var(--teal); font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin: 8px 0 16px; }
.lede { font-size: 1.15rem; color: var(--muted); max-width: 40rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 24px 0 8px; }
.btn {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.btn.primary { background: var(--amber); color: var(--ink); }
.btn.ghost { border: 1px solid var(--line); color: var(--ink); }
.fine { color: var(--muted); font-size: 0.9rem; }
.shots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0 48px;
}
.shots img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
}
.steps { padding-left: 1.2rem; }
.steps li { margin-bottom: 10px; }
.callout {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 16px;
  padding: 16px 20px;
  margin: 24px 0;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.grid-3 article {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.legal { padding: 32px 0 64px; max-width: 720px; }
.legal h2 { margin-top: 28px; }
.site-footer {
  max-width: none;
  padding: 32px 24px;
  background: var(--navy);
  color: #cbd5e1;
  font-size: 0.9rem;
}
.site-footer a { color: #fff; }
@media (max-width: 800px) {
  .shots, .grid-3 { grid-template-columns: 1fr 1fr; }
  nav { display: none; }
}
@media (max-width: 520px) {
  .shots, .grid-3 { grid-template-columns: 1fr; }
}
