:root {
  --paper: #f8f6f0;
  --ink: #19221d;
  --muted: #58645d;
  --line: #d6dbd6;
  --green: #294d38;
  --green-2: #e8eee8;
  --white: #fff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

.story {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  padding: 72px 0 56px;
}

.story-header { border-bottom: 1px solid var(--line); margin-bottom: 40px; padding-bottom: 30px; }
.kicker { margin: 0 0 20px; color: #4f705d; font-size: .75rem; font-weight: 800; letter-spacing: .16em; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.022em; }
h1 { margin: 0 0 24px; font-size: clamp(2.45rem, 7vw, 4.15rem); line-height: 1.04; }
h2 { margin: 58px 0 18px; font-size: clamp(1.85rem, 4.5vw, 2.25rem); line-height: 1.18; }
.deck { margin: 0 0 22px; color: #46534b; font-family: Georgia, "Times New Roman", serif; font-size: 1.32rem; line-height: 1.5; }
.byline { margin: 0; color: #637067; font-size: .9rem; }
p, li { font-size: 1.1rem; }
p { margin: 0 0 23px; }
ul { margin: 8px 0 28px; padding-left: 25px; }
li { margin: 8px 0; padding-left: 4px; }

figure { margin: 38px 0; }
figure img { display: block; width: 100%; height: auto; border-radius: 3px; background: #e4e7e3; }
figcaption { margin-top: 8px; color: #68746c; font-size: .81rem; }
.honest-note { margin: 34px 0; border-left: 4px solid #5b7965; background: var(--green-2); padding: 22px 24px; font-family: Georgia, "Times New Roman", serif; font-size: 1.22rem; line-height: 1.55; }

.request { margin: 68px 0 48px; border-top: 1px solid var(--line); padding-top: 46px; }
.request-copy { margin-bottom: 26px; }
.request h2 { margin: 0 0 14px; }
.request .kicker { margin-bottom: 12px; }
.inspection-includes { margin: 18px 0 0; padding-left: 22px; }
.inspection-includes li { margin: 6px 0; font-size: 1rem; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 19px 16px; border: 1px solid var(--line); border-radius: 4px; background: #fdfcf8; padding: 28px; }
.field { display: flex; flex-direction: column; }
.full { grid-column: 1 / -1; }
label { margin-bottom: 6px; font-size: .91rem; font-weight: 700; }
label span { color: var(--muted); font-weight: 400; }
input, select, textarea {
  width: 100%;
  border: 1px solid #aab3ad;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 12px 13px;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(41,77,56,.18); border-color: var(--green); }
button {
  width: 100%;
  border: 0;
  border-radius: 3px;
  background: var(--green);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  padding: 15px 20px;
}
button:hover { background: #1f402e; }
button:disabled { cursor: wait; opacity: .72; }
.consent { margin: 10px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.45; }
.form-status { min-height: 1.5em; margin: 11px 0 0; font-size: .9rem; font-weight: 700; }
.form-status.error { color: #982d26; }
.form-status.success { color: #245d3b; }
.trap { position: absolute; left: -9999px; opacity: 0; }
footer { display: flex; flex-direction: column; gap: 4px; border-top: 1px solid var(--line); padding-top: 25px; color: var(--muted); font-size: .88rem; }
.footer-links { margin-top: .35rem; }
.footer-links a, .privacy-page a { color: inherit; text-underline-offset: .18em; }
.privacy-page .story-header { margin-bottom: 2.25rem; }
.privacy-page h2 { margin-top: 2rem; }
.privacy-page .back-link { display: inline-block; margin-top: 2.25rem; font-weight: 700; }

@media (max-width: 620px) {
  .story { width: min(100% - 30px, 760px); padding-top: 42px; }
  h1 { font-size: 2.55rem; }
  .deck { font-size: 1.16rem; }
  p, li { font-size: 1.03rem; }
  form { grid-template-columns: 1fr; padding: 21px 17px; }
  .field, .full { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
