:root {
  --paper: #f5ede0;
  --sheet: #fdf8ed;
  --ink: #1f1a14;
  --mute: #6b5c4d;
  --rule: #d1bda3;
  --seal: #b85129;
  --moss: #476b51;
  --on-seal: #fff;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 18px/1.55 ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--seal); }
.wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.site-header, .site-footer {
  background: var(--sheet);
  border-bottom: 1px solid var(--rule);
}
.site-footer { border-bottom: 0; border-top: 1px solid var(--rule); margin-top: 64px; }
.header-inner, .footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}
.brand img { width: 36px; height: 36px; border-radius: 8px; }
nav a { margin-left: 16px; text-decoration: none; font-size: 15px; font-weight: 600; }
.hero { padding: 56px 0 28px; }
.hero h1 { font-size: clamp(32px, 5vw, 48px); line-height: 1.12; margin: 0 0 16px; }
.lede { font-size: 20px; color: var(--mute); max-width: 38rem; }
.row { display: flex; flex-wrap: wrap; gap: 12px; margin: 24px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
.btn-seal { background: var(--seal); color: var(--on-seal); }
.btn-ghost { background: var(--sheet); color: var(--ink); border: 1px solid var(--rule); }
.note { font-size: 14px; color: var(--mute); }
section { padding: 36px 0; }
h2 { font-size: 28px; margin: 0 0 16px; }
.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.shots figure {
  margin: 0;
  background: var(--sheet);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
.shots img { width: 100%; aspect-ratio: 9/16; object-fit: cover; object-position: top; }
.shots figcaption { padding: 10px 12px; font-size: 14px; color: var(--mute); }
.steps { display: grid; gap: 16px; }
.step {
  background: var(--sheet);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 18px 20px;
}
.kicker { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--seal); }
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: var(--sheet);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
.card img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.card h3 { margin: 12px 14px 6px; font-size: 18px; }
.card p { margin: 0 14px 16px; color: var(--mute); font-size: 15px; }
details {
  background: var(--sheet);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 12px 16px;
  margin: 0 0 10px;
}
summary { cursor: pointer; font-weight: 700; }
details p { margin: 8px 0 0; }
.cta-band {
  background: var(--seal);
  color: var(--on-seal);
  border-radius: 20px;
  padding: 28px;
}
.cta-band h2, .cta-band a { color: var(--on-seal); }
.article { max-width: 720px; }
.feature {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 18px;
  margin: 8px 0 24px;
  border: 1px solid var(--rule);
}
.article p { margin: 0 0 1em; }
.article h2 { margin-top: 1.4em; }
.shot-inline {
  margin: 20px 0;
  background: var(--sheet);
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
}
.shot-inline img { width: 100%; }
.shot-inline figcaption { padding: 10px 14px; font-size: 14px; color: var(--mute); }
.callout {
  background: var(--sheet);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 24px 0;
}
ol.howto, ul.plain { padding-left: 1.2em; }
ol.howto { list-style: decimal; }
ul.plain { list-style: disc; }
.crumbs { font-size: 14px; color: var(--mute); margin: 18px 0; }
.crumbs a { color: var(--mute); }
@media (max-width: 640px) {
  nav a { margin-left: 10px; }
  .hero { padding-top: 32px; }
}
