:root {
  --ink: #141414;
  --paper: #efe8d6;
  --hat: #f5c400;
  --steel: #2a3036;
  --mesh: #1c1f22;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--mesh);
  color: var(--ink);
}
main, header.top, footer {
  max-width: 430px;
  margin: 0 auto;
}
header.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0d0d0d;
  padding: 12px 14px;
  border-bottom: 4px solid var(--hat);
}
.mark { height: 26px; width: auto; max-width: 68%; }
.call-top {
  color: #141414;
  background: var(--hat);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 12px;
}
.hero {
  background:
    linear-gradient(180deg, rgba(20,20,20,0.12), rgba(20,20,20,0.04)),
    repeating-linear-gradient(45deg, #efe8d6 0 10px, #e6ddc6 10px 12px);
  padding: 32px 18px 24px;
}
.kicker {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #5a5344;
  font-weight: 700;
}
h1 {
  margin: 0 0 12px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 800;
}
.lead { margin: 0 0 20px; font-size: 16px; line-height: 1.4; }
.cta { display: flex; flex-direction: column; gap: 10px; }
.btn {
  display: block;
  text-align: center;
  text-decoration: none;
  background: var(--hat);
  color: var(--ink);
  font-weight: 800;
  padding: 15px 16px;
  font-size: 16px;
  border: 2px solid #141414;
}
.btn.ghost {
  background: transparent;
  color: var(--ink);
}
.not-that {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #4a4538;
}
.beats { display: grid; gap: 10px; padding: 14px 18px 8px; background: var(--paper); }
.beats article {
  background: #fffaf0;
  border-left: 5px solid var(--hat);
  padding: 12px 14px 14px;
}
.beats img { height: 40px; width: auto; }
.beats h2, .how h2, .quote h2 { margin: 8px 0 6px; font-size: 18px; }
.beats p, .how p, .quote p { margin: 0; font-size: 15px; line-height: 1.4; }
.how { background: var(--paper); padding: 8px 18px 28px; }
.how ol { margin: 0; padding-left: 18px; font-size: 15px; line-height: 1.5; }
.how li { margin-bottom: 8px; }
.quote {
  background: var(--steel);
  color: #f4f1ea;
  padding: 28px 18px 32px;
  border-top: 4px solid var(--hat);
}
.quote a { color: var(--hat); }
.who { margin: 14px 0 0 !important; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; font-size: 12px !important; color: #c8c2b4; }
.phone { font-size: 24px !important; font-weight: 800; margin: 6px 0 8px !important; }
.phone a { text-decoration: none; color: var(--hat); }
footer {
  background: #0d0d0d;
  color: #d8d2c6;
  padding: 22px 18px 36px;
  font-size: 13px;
  line-height: 1.45;
}
footer p { margin: 0 0 12px; }
footer a { color: #d8d2c6; }
footer .url { color: var(--hat); letter-spacing: 0.04em; font-weight: 700; }
footer .fine { color: #8a8578; font-size: 12px; }
@media (min-width: 720px) {
  main, header.top, footer { max-width: 560px; }
  .cta { flex-direction: row; }
  .beats { grid-template-columns: 1fr 1fr 1fr; }
}
