:root {
  --page: #ffffff;
  --paper: #f6f7f9;
  --ink: #0f1720;
  --muted: #5b6570;
  --line: #e6e8ec;
  --navy: #0b2746;
  --teal: #1b6f86;
  --gold: #e8c15a;
  --gold-ink: #1a1408;
  --green: #1f8a57;
  --focus: #ffdd00;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Atkinson Hyperlegible", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--focus);
}
.skip {
  position: absolute; left: 12px; top: -48px; z-index: 80;
  background: var(--focus); color: var(--ink); font-weight: 700;
  padding: 8px 12px; border-radius: 6px;
}
.skip:focus { top: 8px; }
.court-disclaimer {
  background: #fff;
  text-align: center;
  padding: 10px 16px 8px;
  border-bottom: 1px solid var(--line);
}
.court-disclaimer img {
  margin: 0 auto;
  max-width: min(520px, calc(100% - 24px));
  max-height: 28px;
  width: auto; height: auto;
}
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 28px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.brand img { height: 42px; width: auto; }
.nav {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
  flex: 1;
}
.nav a {
  display: block; font-weight: 600; font-size: 14px;
  color: var(--ink); text-decoration: none;
  padding: 8px 10px; border-radius: 8px;
}
.nav a:hover { color: var(--teal); }
.header-tools { margin-left: auto; display: flex; gap: 8px; align-items: center; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 36px; padding: 6px 12px; border-radius: 999px;
  font-weight: 700; font-size: 13px; text-decoration: none;
}
.chip-gold { background: var(--gold); color: var(--gold-ink); }
.chip-quiet { background: var(--paper); color: var(--ink); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 10px 20px; border-radius: 999px;
  font: inherit; font-weight: 700; font-size: 15px;
  text-decoration: none; border: 0; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--gold-ink); }
.btn-ghost {
  background: #fff; color: var(--ink);
  border: 1.5px solid #d5d8de;
}
.btn-link {
  background: none; border: 0; color: var(--teal);
  font-weight: 700; padding: 0; min-height: auto; border-radius: 0;
  cursor: pointer; font: inherit;
}
.crumb {
  font-size: 13px; color: var(--muted);
  padding: 12px 0 0;
}
.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: end;
  padding: 28px 0 12px;
}
.kicker {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin: 0 0 8px;
}
h1 { font-size: clamp(32px, 5vw, 48px); letter-spacing: -.03em; line-height: 1.1; margin: 0 0 12px; }
.lede { font-size: 18px; color: var(--muted); margin: 0 0 20px; max-width: 46rem; }
.search-row {
  display: grid;
  grid-template-columns: 1fr 180px auto;
  gap: 10px;
  background: #fff;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.search-row input, .search-row select {
  min-height: 48px; border: 0; background: var(--paper);
  border-radius: 12px; padding: 0 14px; font: inherit;
}
.micro { font-size: 13px; color: var(--muted); margin: 8px 0 0; }
.hero-photo {
  position: relative; border-radius: 20px; overflow: hidden; min-height: 220px;
}
.hero-photo img { width: 100%; height: 260px; object-fit: cover; }
.hero-script {
  position: absolute; right: 16px; bottom: 14px;
  color: #fff; font-style: italic; font-size: 15px;
  text-shadow: 0 1px 8px rgba(0,0,0,.45);
}
.sam-quiet {
  margin-top: 14px;
  font-size: 15px;
}
.sam-quiet a { font-weight: 700; text-decoration: none; }
.section { padding: 28px 0; }
h2 { font-size: 24px; margin: 0 0 6px; letter-spacing: -.02em; }
.sub { color: var(--muted); margin: 0 0 16px; }
.cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 16px; text-decoration: none; color: inherit;
  min-height: 148px; display: flex; flex-direction: column;
}
.card h3 { margin: 0 0 6px; font-size: 16px; }
.card p { margin: 0 0 auto; color: var(--muted); font-size: 14px; }
.card span { margin-top: 12px; color: var(--teal); font-weight: 700; font-size: 14px; }
.more { margin-top: 16px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  min-height: 40px; padding: 0 14px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font: inherit; font-weight: 600; cursor: pointer;
}
.next {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
}
.next-head { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: baseline; }
.cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 16px; }
.col {
  background: #fff; border-radius: 16px; padding: 16px;
  border: 1px solid var(--line);
}
.col h3 { display: flex; align-items: center; gap: 8px; margin: 0 0 8px; font-size: 16px; }
.num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--navy); color: #fff; display: inline-flex;
  align-items: center; justify-content: center; font-size: 12px;
}
.tag {
  display: inline-block; font-size: 11px; font-weight: 800;
  letter-spacing: .04em; padding: 3px 8px; border-radius: 999px;
  background: #e7f6ee; color: var(--green);
}
.tag-paid { background: #f8efd2; color: #6a4b00; }
.col ul { margin: 0 0 14px; padding-left: 18px; color: var(--ink); }
.paid-note { font-size: 14px; color: var(--muted); margin: 0 0 10px; }
.paid-item {
  display: block; border: 1px solid var(--line); border-radius: 12px;
  padding: 12px; margin: 0 0 8px; text-decoration: none; color: inherit;
}
.paid-item strong { display: block; }
.zip-lead { display: grid; gap: 10px; }
.zip-lead label { display: grid; gap: 6px; font-size: 14px; font-weight: 700; }
.zip-lead input {
  min-height: 48px; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 0 12px; font: inherit; font-size: 16px; background: #fff;
}
.zip-lead .btn { width: 100%; margin-top: 4px; }
.flow input[type="text"],
.flow input[type="email"],
.flow input[type="tel"],
.flow input:not([type]),
.flow #zip, .flow #email, .flow #phone {
  display: block;
  width: 100%;
  min-height: 56px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  font: inherit;
  font-size: 18px;
  background: var(--paper);
  margin: 0 0 16px;
  box-sizing: border-box;
}
.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 8px 16px; border-radius: 999px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink);
  font: inherit; font-weight: 700; text-decoration: none;
}
.ins-results-page .ins-board { padding-bottom: 24px; }
.ins-board-head {
  display: flex; gap: 16px; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; padding-top: 16px; margin-bottom: 8px;
}
.ins-board-head h1 { margin: 0 0 6px; font-size: clamp(24px, 4vw, 34px); }
.ins-frame-wrap {
  width: min(1200px, calc(100% - 16px));
  margin: 12px auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  min-height: 70vh;
}
.ins-frame-wrap iframe {
  width: 100%;
  height: min(85vh, 1100px);
  border: 0;
  display: block;
  background: #f6f7f9;
}
.fine { font-size: 12px; color: var(--muted); margin: 8px 0 0; }
.site-footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 40px;
  margin-top: 24px;
}
.foot-grid { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; }
.hidden { display: none !important; }
.verify {
  background: #fff8e8; border: 1px solid #f0dca8; border-radius: 12px;
  padding: 12px 14px; font-size: 14px;
}
@media (max-width: 900px) {
  .hero, .cards, .cols, .search-row, .foot-grid { grid-template-columns: 1fr; }
  .site-header { padding: 12px 16px; }
  .nav { display: none; }
  .hero-photo img { height: 180px; }
}

/* SEO/AEO FAQ + footer */
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 0 0 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
}
.faq details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.site-footer.wrap { padding: 28px 0 48px; }
.site-footer a { font-weight: 600; }
