:root {
  --paper: #f7f2e8;
  --ink: #1f2526;
  --muted: #68706b;
  --line: #d9cab2;
  --moss: #315b4b;
  --cinnabar: #b7432f;
  --white: #fffdf7;
  --radius: 8px;
  font-family: "Iowan Old Style", "Noto Serif CJK SC", "Songti SC", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); line-height: 1.7; }
body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: 0.26;
  background-image: linear-gradient(rgba(49, 91, 75, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(49, 91, 75, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
a { color: inherit; text-decoration: none; }
.site-header { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px clamp(18px, 4vw, 64px); border-bottom: 1px solid rgba(31, 37, 38, 0.14); background: rgba(247, 242, 232, 0.94); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; white-space: nowrap; }
.brand-mark { display: grid; width: 34px; height: 34px; place-items: center; color: var(--white); background: var(--ink); border-radius: var(--radius); }
.site-header nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 16px; color: var(--muted); font-size: 14px; }
.site-header nav a:hover { color: var(--moss); }
.service-hero { min-height: min(660px, 82svh); display: flex; align-items: end; padding: clamp(40px, 8vw, 96px) clamp(18px, 7vw, 110px); color: var(--white); background-color: #273431; background-image: var(--hero-image); background-size: cover; background-position: center; background-blend-mode: multiply; }
.hero-copy { max-width: 760px; }
.eyebrow { margin: 0 0 10px; color: #ecd18d; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 13px; font-weight: 800; }
h1 { max-width: 780px; margin: 0; font-size: 54px; line-height: 1.12; letter-spacing: 0; overflow-wrap: anywhere; }
.hero-copy > p:not(.eyebrow) { max-width: 680px; margin: 18px 0 0; font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; padding: 10px 18px; border: 1px solid currentColor; border-radius: var(--radius); font-weight: 800; }
.button.primary { color: var(--ink); background: var(--white); }
.button.secondary { color: var(--white); background: rgba(255, 253, 247, 0.1); }
.page-wrap { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.answer-band { padding: 46px 0; border-bottom: 1px solid var(--line); }
.answer-band h2, .content-band h2 { margin: 0; font-size: 29px; line-height: 1.28; }
.answer-band p { max-width: 850px; margin: 14px 0 0; font-size: 19px; }
.content-band { padding: 54px 0; border-bottom: 1px solid var(--line); }
.detail-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 52px; }
.detail-grid section { padding: 18px 0; border-top: 1px solid rgba(217, 202, 178, 0.8); }
.detail-grid h3 { margin: 0; font-size: 18px; }
.detail-grid p, .detail-grid ul { color: var(--muted); }
.detail-grid ul { margin: 9px 0 0; padding-left: 20px; }
.limits { border-left: 4px solid var(--cinnabar); padding-left: 20px; }
.limits p { max-width: 850px; color: var(--muted); }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.related-links a { padding-bottom: 2px; color: var(--moss); border-bottom: 1px solid currentColor; font-weight: 800; }
.final-cta { padding: 66px 0 78px; }
.final-cta p { max-width: 670px; color: var(--muted); font-size: 18px; }
.final-cta .button.primary { color: var(--white); background: var(--ink); }
footer { padding: 28px 18px; color: var(--muted); text-align: center; font-size: 14px; }
@media (max-width: 720px) {
  .site-header { align-items: flex-start; flex-direction: column; }
  .site-header nav { justify-content: flex-start; }
  .service-hero { min-height: 600px; padding: 42px 18px; background-position: 58% center; }
  h1 { font-size: 37px; }
  .hero-copy > p:not(.eyebrow) { font-size: 17px; }
  .detail-grid { grid-template-columns: 1fr; }
}
