:root {
  color-scheme: light;
  --ink: #1f1d1a;
  --paper: #f3efe6;
  --card: #fffdf7;
  --red: #d14a37;
  --muted: #6e6961;
  --line: #cfc7b8;
  font-family: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); }
button, textarea { font: inherit; }
.masthead { display: flex; justify-content: space-between; align-items: baseline; padding: 1.4rem clamp(1.2rem, 4vw, 4rem); border-bottom: 1px solid var(--line); }
.wordmark { color: var(--ink); font: 700 1.15rem/1 Arial, sans-serif; text-decoration: none; letter-spacing: -.04em; }
.wordmark span { color: var(--red); }
.masthead p { margin: 0; color: var(--muted); font: .75rem/1.2 Arial, sans-serif; text-transform: uppercase; letter-spacing: .09em; }
main { width: min(980px, calc(100% - 2rem)); margin: 0 auto; }
.intro { padding: clamp(4rem, 10vw, 8.5rem) 0 3rem; }
.eyebrow { margin: 0 0 1rem; color: var(--red); font: 700 .72rem/1.2 Arial, sans-serif; letter-spacing: .15em; text-transform: uppercase; }
h1 { margin: 0; max-width: 900px; font-size: clamp(3rem, 8.4vw, 7.4rem); line-height: .91; font-weight: 400; letter-spacing: -.065em; }
h1 em { color: var(--red); font-weight: 400; }
.lede { max-width: 650px; margin: 2rem 0 0 auto; color: var(--muted); font-size: clamp(1.05rem, 2.2vw, 1.35rem); line-height: 1.5; }
.checker { background: var(--card); border: 1px solid var(--line); box-shadow: 8px 8px 0 #ded7c9; }
.checker label { display: block; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); font: 700 .72rem/1 Arial, sans-serif; text-transform: uppercase; letter-spacing: .13em; }
textarea { display: block; width: 100%; min-height: 260px; resize: vertical; padding: 1.5rem; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: clamp(1.15rem, 2.3vw, 1.55rem); line-height: 1.5; }
textarea:focus { box-shadow: inset 0 0 0 3px rgba(209,74,55,.25); }
.checker-footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .8rem; border-top: 1px solid var(--line); }
#count { padding-left: .4rem; color: var(--muted); font: .75rem/1 Arial, sans-serif; }
button { cursor: pointer; padding: .9rem 1.25rem; border: 1px solid var(--ink); background: var(--ink); color: white; font: 700 .78rem/1 Arial, sans-serif; letter-spacing: .05em; }
button:hover { background: var(--red); border-color: var(--red); }
.report { display: grid; grid-template-columns: minmax(220px, .8fr) 1.2fr; gap: 2rem; margin: 3rem 0; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.verdict h2 { margin: 0 0 1rem; font-size: clamp(2rem, 5vw, 4rem); line-height: .95; font-weight: 400; letter-spacing: -.045em; }
.verdict > p:last-child { color: var(--muted); line-height: 1.5; }
#findings { display: grid; gap: .8rem; margin: 0; padding: 0; list-style: none; }
#findings li { padding: 1rem 1.1rem; background: var(--card); border-left: 4px solid var(--red); line-height: 1.45; }
#findings strong { display: block; margin-bottom: .25rem; font: 700 .78rem/1.2 Arial, sans-serif; text-transform: uppercase; letter-spacing: .07em; }
.promise { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; padding: 4rem 0 7rem; }
.promise p { margin: 0; line-height: 1.5; }
.promise p:first-child { font-size: 1.5rem; }
.promise p:last-child { color: var(--muted); }
footer { padding: 1.5rem; text-align: center; border-top: 1px solid var(--line); color: var(--muted); font: .75rem/1.4 Arial, sans-serif; }
@media (max-width: 680px) {
  .masthead p { display: none; }
  .report, .promise { grid-template-columns: 1fr; }
  h1 br { display: none; }
}
