:root {
  --ink: #101828;
  --muted: #667085;
  --line: #d9e1ec;
  --line-strong: #d5deeb;
  --soft: #f5f7fb;
  --brand: #173b6c;
  --brand-2: #245a93;
  --gold: #b88931;
  --blue: #245a93;
  --navy: #0f2746;
  --danger: #b42318;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #fbfdff;
  --text-secondary: #344054;
  --text-body: #475467;
  --header-bg: rgba(255, 255, 255, 0.94);
  --hero-grad: linear-gradient(135deg, #f8fbff 0%, #f5efe5 100%);
  --shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  --mark-fg: #ffffff;
  --input-border: #cbd5e1;
  --btn-secondary-bg: #ffffff;
  --btn-secondary-fg: #233044;
  --pill-bg: #eef4ff;
  --pill-fg: #2743a4;
  --notice-bg: #fff8e6;
  --notice-fg: #7a3d0b;
  --notice-border: #f7d08a;
  --success-bg: #ecfdf5;
  --success-fg: #075f43;
  --success-border: #8de6bc;
  --error-bg: #fff1f0;
  --error-border: #f3b6b0;
  --focus-ring: rgba(36, 90, 147, 0.28);
  color-scheme: light;
  font-family: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

[data-theme="solar"] {
  --ink: #f4ebda;
  --muted: #b9a88a;
  --line: #4a3f2e;
  --line-strong: #6b5a3d;
  --soft: #1a1610;
  --brand: #e2b65a;
  --brand-2: #d4a24a;
  --gold: #f0c674;
  --blue: #c9a45c;
  --navy: #f6e7c8;
  --danger: #f07167;
  --bg: #12100c;
  --surface: #1c1914;
  --surface-2: #242018;
  --text-secondary: #d8c9ae;
  --text-body: #cbb99a;
  --header-bg: rgba(18, 16, 12, 0.94);
  --hero-grad: linear-gradient(145deg, #16130e 0%, #2a2114 55%, #1a1610 100%);
  --shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  --mark-fg: #12100c;
  --input-border: #6b5a3d;
  --btn-secondary-bg: #242018;
  --btn-secondary-fg: #f4ebda;
  --pill-bg: #2a2214;
  --pill-fg: #f0c674;
  --notice-bg: #2a2114;
  --notice-fg: #f0c674;
  --notice-border: #6a5428;
  --success-bg: #14241c;
  --success-fg: #8de6bc;
  --success-border: #2f6b4f;
  --error-bg: #2a1412;
  --error-border: #7a3530;
  --focus-ring: rgba(226, 182, 90, 0.35);
  color-scheme: dark;
}
[data-theme="solar"] .brand-mark {
  background: linear-gradient(135deg, #f0c674, #e2b65a);
  color: #12100c;
}
[data-theme="solar"] .nav-toggle,
[data-theme="solar"] .theme-toggle {
  border-color: #7a6644;
  color: #f6e7c8;
  background: #242018;
}
[data-theme="solar"] .nav-toggle span {
  background: #f6e7c8;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(1200px 480px at 10% -10%, color-mix(in srgb, var(--gold) 16%, transparent), transparent 60%),
    radial-gradient(900px 420px at 100% 0%, color-mix(in srgb, var(--brand-2) 14%, transparent), transparent 55%),
    var(--bg);
  font-size: 16px;
  line-height: 1.5;
  transition: background-color .25s ease, color .2s ease;
}
body > main { flex: 1 0 auto; }
a { color: inherit; text-decoration: none; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 230px; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--mark-fg);
  background: linear-gradient(135deg, var(--navy), var(--brand-2));
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-weight: 900;
}
.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}
.brand small { color: var(--muted); font-family: "Source Sans 3", "Segoe UI", sans-serif; }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.site-header > .nav { margin-left: auto; }
.theme-toggle,
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--surface);
  color: var(--navy);
  cursor: pointer;
  font: inherit;
}
.theme-toggle {
  display: inline-grid;
  place-items: center;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}
.theme-toggle[data-mode="light"]::before { content: "☾"; }
.theme-toggle[data-mode="solar"]::before { content: "☀"; }
.nav-toggle {
  display: none;
  padding: 12px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 0;
  background: var(--navy);
  border-radius: 99px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-weight: 700;
  color: var(--text-secondary);
}
.nav a:hover { color: var(--brand); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .75fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--hero-grad);
}
.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(145deg, #0b1c33 0%, #14345c 48%, #1a3f6d 72%, #6d5220 140%);
}
.home-hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(212, 175, 55, 0.18), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(120, 180, 255, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}
.home-hero__inner {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  margin: 0 auto;
}
.home-hero__inner--wide { width: min(1100px, 100%); }
.search-hero { padding-top: clamp(36px, 5vw, 64px); padding-bottom: clamp(36px, 5vw, 64px); }
.search-hero__eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.search-hero__tagline {
  max-width: 36ch;
  margin-top: 12px;
  font-size: clamp(18px, 2.2vw, 24px);
}
.listing-seo {
  display: grid;
  gap: 22px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.listing-seo__block h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 28px);
}
.listing-seo__block p {
  margin: 0 0 14px;
  max-width: 54ch;
  color: var(--text-body);
}
.scope-note {
  margin: 0 0 16px;
  max-width: 62ch;
  color: var(--text-secondary);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}
.radius-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-weight: 850;
  color: var(--text-secondary);
}
.listing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  margin: 0 0 18px;
}
.near-me-btn {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
}
.near-me-btn:hover { border-color: color-mix(in srgb, var(--brand) 45%, var(--line)); }
.near-me-btn.is-active,
.near-me-btn:disabled {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 12%, var(--surface));
  color: var(--brand);
}
.listing-pagination {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.listing-pagination__meta {
  margin: 0 0 12px;
  color: var(--text-secondary);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 650;
}
.listing-pagination__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.listing-pagination__links a,
.listing-pagination__links .is-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--ink);
  text-decoration: none;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 850;
}
.listing-pagination__links a:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
}
.listing-pagination__links .is-current {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 12%, var(--surface));
  color: var(--brand);
}
.listing-pagination__gap {
  color: var(--text-secondary);
  font-weight: 850;
}
.radius-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}
.radius-chip:hover { border-color: color-mix(in srgb, var(--brand) 45%, var(--line)); }
.radius-chip.is-active {
  border-color: var(--brand);
  background: color-mix(in srgb, var(--brand) 12%, var(--surface));
  color: var(--brand);
}
.city-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}
.city-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-weight: 850;
}
.city-chip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.city-chip:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  background: color-mix(in srgb, var(--brand) 7%, var(--surface));
}
.home-hero__intro {
  text-align: center;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.home-hero h1 {
  margin: 0;
  max-width: none;
  color: #fff;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
}
.home-hero__tagline {
  margin: 16px auto 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
}
.home-hero__actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  text-align: left;
}
.home-hero__action {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 84px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.home-hero__action:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.home-hero__action-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #fff;
  color: var(--brand);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-weight: 900;
}
.home-hero__action strong {
  display: block;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 900;
}
.home-hero__action em {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}
.home-hero__search {
  width: min(920px, 100%);
  margin: 0 auto;
}
.home-hero__search .notai-search {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}
.home-hero__hint {
  margin: 14px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
}
.home-hero__hint a {
  color: #fff;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading--center p {
  margin-left: auto;
  margin-right: auto;
}
[data-theme="solar"] .home-hero {
  background: linear-gradient(145deg, #16130e 0%, #2a2114 55%, #1a1610 100%);
}
[data-theme="solar"] .home-hero__action-mark {
  color: #6b4f16;
}
.breadcrumbs--on-dark {
  justify-content: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
}
.breadcrumbs--on-dark a { color: #fff; }
.qc-hero .home-hero__tagline { max-width: 42ch; }
.qc-hero--compact { padding-bottom: clamp(36px, 5vw, 56px); }
.qc-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 26px auto 0;
  max-width: 640px;
  padding: 0;
  list-style: none;
}
.qc-steps li {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 800;
}
.qc-search {
  margin-top: 8px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  color: var(--ink);
}
.qc-search__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}
.qc-search__field {
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-weight: 800;
}
.qc-search__field em {
  color: var(--muted);
  font-style: normal;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.4;
}
.qc-search__field input {
  min-height: 56px;
  font-size: 17px;
  font-weight: 700;
}
.qc-search__submit {
  width: 100%;
  margin-top: 16px;
  min-height: 54px;
}
.qc-search__meta {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.qc-popular-card .pill { width: fit-content; margin-bottom: 10px; }
.qc-group { margin-top: 34px; }
.qc-group__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.qc-group__head h3 { margin: 0; font-size: clamp(24px, 3vw, 32px); }
.qc-group__head a {
  color: var(--brand);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-weight: 850;
}
.qc-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: var(--surface);
}
.qc-table__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}
.qc-table__row:last-child { border-bottom: 0; }
.qc-table__row:hover { background: color-mix(in srgb, var(--brand) 6%, var(--surface)); }
.qc-table__row strong {
  display: block;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 17px;
  font-weight: 900;
}
.qc-table__row em {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-style: normal;
  font-size: 14px;
  line-height: 1.45;
}
.qc-table__price {
  color: var(--brand);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 900;
  white-space: nowrap;
}
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border: 1px solid var(--line-strong); border-radius: 999px; color: var(--brand); background: color-mix(in srgb, var(--brand) 10%, var(--surface)); font-family: "Source Sans 3", "Segoe UI", sans-serif; font-weight: 800; }
h1, h2, h3 { font-family: "Source Serif 4", Georgia, serif; }
h1 { margin: 22px 0 18px; max-width: 980px; font-size: clamp(42px, 6vw, 78px); line-height: .98; letter-spacing: 0; }
h2 { margin: 0 0 18px; font-size: clamp(28px, 4vw, 44px); line-height: 1.08; letter-spacing: 0; }
h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.2; }
.lead { max-width: 780px; color: var(--text-body); font-size: clamp(19px, 2vw, 25px); }
.helper-text { color: var(--muted); margin: 14px 0 0; }
.hero-points { display: grid; gap: 10px; max-width: 720px; margin-top: 26px; }
.hero-points span { position: relative; padding: 13px 16px 13px 42px; border: 1px solid var(--line); border-radius: 8px; background: color-mix(in srgb, var(--surface) 86%, transparent); color: var(--text-secondary); font-family: "Source Sans 3", "Segoe UI", sans-serif; font-weight: 850; }
.hero-points span::before { content: ""; position: absolute; left: 17px; top: 19px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.section-heading { max-width: 850px; margin-bottom: 28px; }
.section-heading h2 { margin-top: 14px; }
.section-heading p { margin: 0; color: var(--text-body); font-size: 19px; line-height: 1.7; }
.search-panel, .card, .quote-box, .profile-panel { border: 1px solid var(--line); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); }
.search-panel { padding: 22px; align-self: center; }
.search-panel h2 { font-size: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; }
label { display: grid; gap: 7px; color: var(--text-secondary); font-family: "Source Sans 3", "Segoe UI", sans-serif; font-weight: 800; }
input, select, textarea { width: 100%; min-height: 48px; border: 1px solid var(--input-border); border-radius: 7px; padding: 12px 14px; font: inherit; color: var(--ink); background: var(--surface); font-family: "Source Sans 3", "Segoe UI", sans-serif; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--focus-ring); outline-offset: 1px; border-color: var(--brand-2); }
textarea { min-height: 120px; resize: vertical; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 48px; padding: 12px 18px; border: 1px solid transparent; border-radius: 7px; background: var(--brand); color: var(--mark-fg); font-family: "Source Sans 3", "Segoe UI", sans-serif; font-weight: 900; cursor: pointer; }
.btn.secondary { background: var(--btn-secondary-bg); border-color: var(--input-border); color: var(--btn-secondary-fg); }
.btn.blue { background: var(--blue); }
.btn.navy { background: var(--navy); color: var(--mark-fg); }
[data-theme="solar"] .btn.navy { color: #12100c; }
.btn.disabled { background: color-mix(in srgb, var(--muted) 28%, var(--surface)); color: var(--muted); cursor: not-allowed; }
.section { padding: clamp(42px, 6vw, 78px) clamp(18px, 5vw, 72px); }
.section.soft { background: var(--soft); }
.service-hero { padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px); color: #fff; background: linear-gradient(145deg, #0b1c33 0%, #14345c 48%, #1a3f6d 72%, #6d5220 140%); border-bottom: 1px solid var(--line); }
.service-hero h1 { max-width: 1040px; color: #fff; font-size: clamp(38px, 5vw, 68px); }
.service-hero .lead { color: rgba(255,255,255,.88); }
.service-hero .eyebrow { color: #fff; background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); }
.service-hero .hero-summary span { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.9); }
.service-hero .hero-summary strong { color: #fff; }
[data-theme="solar"] .service-hero { background: linear-gradient(145deg, #16130e 0%, #2a2114 55%, #1a1610 100%); }
.service-article {
  padding: clamp(24px, 4vw, 48px) clamp(18px, 5vw, 72px) clamp(48px, 6vw, 80px);
  background: var(--soft);
}
.service-article__shell { width: min(920px, 100%); margin: 0 auto; }
.service-article__back { margin: 12px 0 22px; }
.service-article__card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.service-article__hero-media {
  height: clamp(220px, 36vw, 420px);
  background: linear-gradient(135deg, #d9e6f7, #f1e6c8);
}
.service-article__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-article__body { padding: clamp(22px, 4vw, 40px); }
.service-article__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.service-article__kicker {
  margin: 0 0 8px;
  color: var(--brand);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.service-article__body > h1 { margin: 0 0 22px; font-size: clamp(34px, 5vw, 52px); }
.service-search-panel {
  margin: 0 0 28px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
  border-radius: 10px;
  background: color-mix(in srgb, var(--brand) 6%, var(--surface));
}
.service-search-panel h2 { margin: 0 0 8px; font-size: 24px; }
.service-search-panel p { margin: 0 0 14px; color: var(--text-body); }
.service-search-form {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 10px;
  align-items: end;
}
.service-search-form label span {
  display: block;
  margin-bottom: 6px;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 850;
}
.service-content { color: var(--text-body); font-size: 18px; line-height: 1.75; }
.service-content :global(h2) {
  margin: 1.6em 0 .55em;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 30px);
}
.service-content :global(h3) {
  margin: 1.3em 0 .45em;
  color: var(--ink);
  font-size: 22px;
}
.service-content :global(p) { margin: 0 0 1em; }
.service-content :global(ul),
.service-content :global(ol) { margin: 0 0 1em; padding-left: 1.2em; }
.service-content :global(li) { margin: 0 0 .4em; }
.service-content :global(strong) { color: var(--ink); }
.service-article__cities,
.service-article__related,
.service-article__faq { margin-top: 34px; }
.service-article__cities h2,
.service-article__related h2,
.service-article__faq h2 { margin: 0 0 14px; }
.city-link-row { display: flex; flex-wrap: wrap; gap: 10px; }
.city-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.city-link-row a:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  background: color-mix(in srgb, var(--brand) 8%, var(--surface));
}
.search-results-hero { padding: clamp(38px, 6vw, 74px) clamp(18px, 5vw, 72px); background: var(--hero-grad); border-bottom: 1px solid var(--line); }
.search-results-hero h1 { font-size: clamp(38px, 5vw, 64px); }
.result-context { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.result-context span, .result-context a { min-height: 44px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: color-mix(in srgb, var(--surface) 88%, transparent); color: var(--text-secondary); font-family: "Source Sans 3", "Segoe UI", sans-serif; font-weight: 850; }
.result-context strong { color: var(--brand); }
.compact-search { margin-bottom: 24px; box-shadow: none; }
.hero-summary { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; max-width: 980px; margin-top: 24px; }
.hero-summary span { min-height: 78px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: color-mix(in srgb, var(--surface) 88%, transparent); color: var(--text-body); font-weight: 800; }
.hero-summary strong { display: block; color: var(--brand); font-size: 22px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 28px; align-items: start; }
.service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 28px; align-items: start; background: var(--bg); }
.content-stack, .side-stack { display: grid; gap: 18px; }
.side-stack { position: sticky; top: 96px; }
.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.editorial-card p, .service-layout .card p { color: var(--text-body); font-size: 18px; line-height: 1.75; }
.card { padding: 22px; }
.card p { margin: 0; color: var(--muted); }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: var(--text-secondary); font-weight: 700; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .48em; width: 12px; height: 12px; border-radius: 50%; background: var(--brand-2); box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--brand) 12%, var(--surface)); }
.faq-list { display: grid; gap: 10px; }
.faq-list details { border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); }
.faq-list summary { cursor: pointer; padding: 16px; color: var(--ink); font-weight: 900; }
.faq-list details p { padding: 0 16px 16px; }
.price-card { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); background: color-mix(in srgb, var(--brand) 8%, var(--surface)); }
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pill { display: inline-flex; align-items: center; gap: 6px; padding: 7px 10px; border-radius: 999px; background: var(--pill-bg); color: var(--pill-fg); font-weight: 800; }
.pill.green { background: color-mix(in srgb, var(--brand) 12%, var(--surface)); color: var(--brand); }
.pill.gold { background: color-mix(in srgb, var(--gold) 16%, var(--surface)); color: var(--gold); }
.price { margin: 14px 0 4px; font-size: 28px; font-weight: 950; color: var(--brand); }
.list { display: grid; gap: 16px; }
.notary-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; }
.notary-row address { color: var(--muted); font-style: normal; }
.result-list { margin-top: 24px; }
.notary-result-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: center; }
.notary-result-row h3 { margin: 0; font-size: clamp(22px, 2.3vw, 30px); }
.notary-result-row address { margin-top: 10px; color: var(--muted); font-style: normal; line-height: 1.6; }
.result-title-row { display: flex; align-items: center; gap: 12px; }
.result-rank { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 8px; background: var(--pill-bg); color: var(--brand); font-weight: 950; }
.result-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.result-badges span { display: inline-flex; align-items: center; min-height: 30px; padding: 6px 10px; border-radius: 999px; background: var(--soft); color: var(--text-secondary); font-size: 14px; font-weight: 850; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.quote-box { padding: 24px; border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
.quote-box p { margin: -8px 0 18px; color: var(--text-body); }
.notice { padding: 14px 16px; border: 1px solid var(--notice-border); border-radius: 8px; color: var(--notice-fg); background: var(--notice-bg); font-weight: 700; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.stat { padding: 18px; border-radius: 8px; background: var(--surface); border: 1px solid var(--line); }
.stat strong { display: block; font-size: 30px; color: var(--brand); }
.notary-hero { position: relative; padding: clamp(44px, 7vw, 92px) clamp(18px, 5vw, 72px); color: #fff; background: linear-gradient(135deg, #0f2746 0%, #173b6c 62%, #8a6728 100%); }
.notary-hero__inner { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: end; }
.notary-hero h1 { max-width: 1040px; margin-top: 10px; color: #fff; }
.notary-hero .lead { color: #dce8f7; }
.notary-kicker { color: #f6d58f; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
.notary-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.trust-badge { display: inline-flex; align-items: center; min-height: 36px; padding: 8px 12px; border: 1px solid rgba(255,255,255,.24); border-radius: 999px; background: rgba(255,255,255,.14); color: #fff; font-weight: 900; }
.trust-badge.muted { color: #dce8f7; }
.notary-hero-card { padding: 22px; border: 1px solid rgba(255,255,255,.24); border-radius: 8px; background: rgba(255,255,255,.12); box-shadow: 0 20px 36px rgba(0,0,0,.18); backdrop-filter: blur(10px); }
.notary-hero-card span { display: block; color: #f6d58f; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.notary-hero-card strong { display: block; margin-top: 4px; font-size: 30px; }
.notary-hero-card p { margin: 8px 0 0; color: #dce8f7; }
.sticky-actions { position: sticky; top: 79px; z-index: 9; display: flex; gap: 10px; padding: 12px clamp(18px, 5vw, 72px); border-bottom: 1px solid var(--line); background: var(--header-bg); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.notary-layout { display: grid; grid-template-columns: minmax(0, 1fr) 430px; gap: 28px; background: var(--soft); }
.notary-main, .notary-side { display: grid; gap: 18px; align-content: start; }
.notary-side { position: sticky; top: 156px; }
.section-title-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.section-title-row h2 { margin-bottom: 0; }
.official-link { color: var(--brand); font-weight: 900; }
.contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-grid div { min-height: 108px; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); }
.contact-grid span { display: block; margin-bottom: 8px; color: var(--muted); font-weight: 900; text-transform: uppercase; font-size: 13px; }
.contact-grid strong { display: block; color: var(--ink); overflow-wrap: anywhere; }
.inline-action { display: inline-flex; margin-top: 12px; color: var(--brand); font-weight: 900; }
.muted-text { color: var(--text-body); font-size: 17px; line-height: 1.7; }
.service-chip-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.service-chip { min-height: 92px; padding: 16px; border: 1px solid var(--line-strong); border-radius: 8px; background: var(--surface); }
.service-chip strong { display: block; color: var(--ink); }
.service-chip span { display: block; margin-top: 8px; color: var(--brand); font-weight: 900; }
.empty-panel { display: grid; gap: 4px; margin-top: 16px; padding: 18px; border-radius: 8px; background: color-mix(in srgb, var(--brand) 8%, var(--surface)); border: 1px dashed var(--line-strong); color: var(--text-body); }
.empty-panel strong { color: var(--brand); }
.claim-hero {
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background: var(--hero-grad);
  border-bottom: 1px solid var(--line);
}
.claim-hero__inner { max-width: 920px; }
.claim-hero h1 { margin: 14px 0 0; font-size: clamp(36px, 5vw, 60px); }
.claim-hero__lead { margin-top: 16px; max-width: 42ch; }
.claim-hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.claim-selected {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
  border-radius: 10px;
  background: color-mix(in srgb, var(--brand) 8%, var(--surface));
}
.claim-selected__label {
  margin: 0 0 8px;
  color: var(--brand);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.claim-selected h2 { margin: 0 0 6px; font-size: 28px; }
.claim-selected p { margin: 0; color: var(--text-body); }
.claim-reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.claim-reason {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}
.claim-reason h3 { margin: 0 0 8px; font-size: 22px; }
.claim-reason p { margin: 0; color: var(--text-body); line-height: 1.6; }
.claim-steps-section { background: var(--soft); border-block: 1px solid var(--line); }
.claim-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.claim-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}
.claim-steps__n {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand) 12%, var(--surface));
  color: var(--brand);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-weight: 900;
}
.claim-steps h3 { margin: 0 0 6px; font-size: 20px; }
.claim-steps p { margin: 0; color: var(--text-body); line-height: 1.55; }
.claim-form-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}
.claim-checklist { margin-top: 18px; }
.claim-form label { display: grid; gap: 8px; margin-bottom: 12px; font-weight: 800; }
.claim-form__studio {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--brand) 8%, var(--surface));
  color: var(--text-body);
}
.claim-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: color-mix(in srgb, var(--gold) 10%, var(--surface));
}
.claim-cta h2 { margin: 0 0 8px; }
.claim-cta p { margin: 0; max-width: 48ch; color: var(--text-body); }
.claim-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; }

@media (max-width: 900px) {
  .claim-reason-grid,
  .claim-steps,
  .claim-form-layout { grid-template-columns: 1fr; }
}
.map-card iframe { width: 100%; height: 360px; border: 0; border-radius: 8px; }
.map-embed-note { margin: 10px 0 0; }
.map-fallback { display: grid; gap: 12px; min-height: 270px; padding: 22px; border-radius: 8px; background: var(--hero-grad); }
.map-fallback strong { font-size: 24px; color: var(--brand); }
.map-fallback span { color: var(--text-body); }
.listing-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 420px); gap: 22px; align-items: start; }
.listing-map-panel { position: sticky; top: 96px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); box-shadow: var(--shadow); overflow: hidden; }
.listing-map-panel__head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; padding: 14px 16px; border-bottom: 1px solid var(--line); }
.listing-map-panel__head strong { color: var(--brand); font-size: 18px; }
.listing-map-panel__head span { color: var(--muted); font-size: 14px; font-weight: 750; }
.listing-map-shell, .listing-map-canvas, .listing-map-fallback { width: 100%; height: min(68vh, 640px); min-height: 420px; }
.listing-map-fallback { border: 0; display: block; }
.listing-map-empty { display: grid; gap: 8px; min-height: 320px; place-content: center; padding: 28px; text-align: center; background: var(--hero-grad); color: var(--text-body); }
.listing-map-empty strong { color: var(--brand); font-size: 22px; }
.result-badges .geo-signal { background: color-mix(in srgb, var(--brand) 12%, var(--surface)); color: var(--brand); }
.quote-box--notary { border-color: color-mix(in srgb, var(--brand) 35%, var(--line)); }
.seo-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 18px; }
.seo-link-card {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--soft) 70%, var(--surface));
}
.seo-link-card strong { color: var(--ink); font-size: 15px; line-height: 1.35; }
.seo-link-card__actions { display: flex; flex-wrap: wrap; gap: 10px 14px; }
.seo-link-card__actions a {
  color: var(--brand);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.seo-link-card__actions a:hover { text-decoration: underline; }
.see-also-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.see-also-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.see-also-links a:hover {
  border-color: color-mix(in srgb, var(--brand) 45%, var(--line));
  background: color-mix(in srgb, var(--brand) 7%, var(--surface));
}
.nearby-section { padding-top: 8px; }
.nearby-notary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.nearby-notary-card { display: grid; gap: 10px; padding: 18px; align-content: start; }
.nearby-notary-card h3 { margin: 0; font-size: 20px; }
.nearby-notary-card h3 a { color: inherit; text-decoration: none; }
.nearby-notary-card h3 a:hover { color: var(--brand); }
.nearby-notary-card address { margin: 0; color: var(--muted); font-style: normal; line-height: 1.5; }
.nearby-notary-card__actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.nearby-notary-card__actions .btn { flex: 1 1 auto; justify-content: center; min-width: 0; padding-left: 10px; padding-right: 10px; }
.nearby-more { margin: 18px 0 0; }
.nearby-more a { font-weight: 850; color: var(--brand); text-decoration: none; }
.nearby-more a:hover { text-decoration: underline; }
.site-footer {
  margin-top: auto;
  color: #d5deeb;
  background: #0b1628;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(18px, 5vw, 72px);
}
.site-footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .02em;
}
.site-footer p {
  margin: 0;
  color: #c5d0e0;
  font-size: 14px;
  line-height: 1.65;
}
.site-footer__strong {
  margin-top: 16px !important;
  color: #fff !important;
  font-weight: 850;
}
.site-footer__accent {
  display: inline-flex;
  margin-top: 10px;
  color: #e2bf6d;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.site-footer__accent:hover { color: #f3d58f; text-decoration: underline; }
.site-footer__accent--block { display: block; text-decoration: underline; }
.site-footer__note {
  margin-top: 12px !important;
  color: #93a4bb !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.site-footer li a {
  color: #c5d0e0;
  font-size: 14px;
  text-decoration: none;
}
.site-footer li a:hover { color: #fff; }
.site-footer__claim {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 16px;
  padding: 8px 14px;
  border: 1px solid #334155;
  border-radius: 8px;
  color: #e8eef7;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}
.site-footer__claim:hover {
  border-color: #e2bf6d;
  color: #fff;
}
.site-footer__bottom {
  border-top: 1px solid #1e2b40;
  padding: 18px clamp(18px, 5vw, 72px);
}
.site-footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1200px, 100%);
  margin: 0 auto;
  color: #93a4bb;
  font-size: 13px;
}
.site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}
.site-footer__bottom-links a {
  color: #93a4bb;
  text-decoration: none;
}
.site-footer__bottom-links a:hover { color: #fff; }
.legal-page { max-width: 920px; margin: 0 auto; }
.legal-card { padding: clamp(24px, 4vw, 40px); }
.legal-card h1 { margin-top: 0; }
.legal-updated { margin: -4px 0 0; color: var(--muted); font-size: 14px; }
.legal-prose { margin-top: 28px; display: grid; gap: 18px; color: var(--text-body); font-size: 17px; line-height: 1.7; }
.legal-prose h2 { margin: 8px 0 0; color: var(--ink); font-size: 22px; }
.legal-prose p, .legal-prose ul { margin: 0; }
.legal-prose ul { padding-left: 1.2em; }
.legal-prose a { color: var(--brand); font-weight: 850; text-decoration: underline; }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
.contact-cards .card { padding: 20px; box-shadow: none; }
.contact-cards h2 { margin: 0 0 8px; font-size: 20px; }
.contact-cards p { margin: 0 0 14px; color: var(--text-body); }
.credits-list { list-style: none; padding: 0; display: grid; gap: 10px; }
.credits-list li {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(18px, 5vw, 72px); color: var(--muted); border-top: 1px solid var(--line); background: var(--surface); font-family: "Source Sans 3", "Segoe UI", sans-serif; }
.success { margin: 24px 0; padding: 18px; border-radius: 8px; border: 1px solid var(--success-border); background: var(--success-bg); color: var(--success-fg); font-weight: 800; }
.error { margin: 24px 0; padding: 18px; border-radius: 8px; border: 1px solid var(--error-border); background: var(--error-bg); color: var(--danger); font-weight: 800; }
.funnel-hero { padding: clamp(38px, 6vw, 74px) clamp(18px, 5vw, 72px); background: var(--hero-grad); border-bottom: 1px solid var(--line); }
.funnel-hero h1 { font-size: clamp(36px, 5vw, 62px); }
.funnel-steps { display: flex; flex-wrap: wrap; gap: 10px; margin: 28px 0 0; padding: 0; list-style: none; }
.funnel-steps li { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: color-mix(in srgb, var(--surface) 88%, transparent); color: var(--muted); font-family: "Source Sans 3", "Segoe UI", sans-serif; font-weight: 850; }
.funnel-steps li span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--pill-bg); color: var(--brand); font-size: 13px; }
.funnel-steps li.is-active { border-color: color-mix(in srgb, var(--brand) 45%, var(--line)); color: var(--brand); background: color-mix(in srgb, var(--brand) 10%, var(--surface)); }
.funnel-steps li.is-done { border-color: color-mix(in srgb, var(--gold) 45%, var(--line)); color: var(--gold); background: color-mix(in srgb, var(--gold) 12%, var(--surface)); }
.funnel-section { background: var(--soft); }
.funnel-card { max-width: 920px; }
.funnel-card > p { margin: -8px 0 18px; color: var(--text-body); }
.funnel-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-bottom: 14px; }
.funnel-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.funnel-actions.inline { margin-top: 0; align-items: end; }
.funnel-context { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.funnel-context span { min-height: 40px; padding: 8px 12px; border-radius: 999px; background: var(--pill-bg); color: var(--text-secondary); font-weight: 850; }
.funnel-context__service {
  background: color-mix(in srgb, var(--brand) 12%, var(--surface)) !important;
  color: var(--brand) !important;
  border: 1px solid color-mix(in srgb, var(--brand) 28%, var(--line));
}
.service-brief__lead { margin: 0 0 8px; font-size: 17px; }
.funnel-stack { display: grid; gap: 18px; max-width: 920px; }
.notary-pick { display: grid; grid-template-columns: 24px 1fr; gap: 14px; align-items: start; padding: 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); cursor: pointer; }
.notary-pick.is-selected { border-color: color-mix(in srgb, var(--brand) 45%, var(--line)); background: color-mix(in srgb, var(--brand) 8%, var(--surface)); }
.notary-pick input { width: 18px; min-height: 18px; margin-top: 4px; }
.notary-pick strong { display: block; font-size: 20px; }
.notary-pick em { display: block; margin-top: 6px; color: var(--muted); font-style: normal; }
.antispam-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.summary-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 18px 0; }
.summary-grid div { padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); }
.summary-grid span { display: block; margin-bottom: 6px; color: var(--muted); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.summary-message { color: var(--text-secondary); line-height: 1.7; }
.summary-notaries { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.summary-notaries li { display: flex; justify-content: space-between; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); }
.admin-toolbar { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 18px; }
.admin-request__head { display: flex; justify-content: space-between; gap: 16px; align-items: start; margin-bottom: 8px; }
.admin-request__head h2 { margin: 0 0 8px; font-size: 26px; }
.admin-request__head p { margin: 0; color: var(--muted); }
.admin-json { overflow: auto; padding: 14px; border-radius: 8px; background: #0f2746; color: #e8eef7; font-size: 13px; }
[data-theme="solar"] .admin-json { background: #0c0a08; color: #f4ebda; }
.quote-box .btn + .helper-text { margin-top: 14px; }
.quote-box .btn.secondary { margin-top: 10px; width: 100%; }
.notice a { color: var(--brand); font-weight: 900; word-break: break-all; }
.client-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.client-nav a { min-height: 40px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); color: var(--text-secondary); font-weight: 850; }
.client-nav a.is-active { border-color: color-mix(in srgb, var(--brand) 45%, var(--line)); background: color-mix(in srgb, var(--brand) 10%, var(--surface)); color: var(--brand); }
.recovery-card p { margin: -4px 0 16px; color: var(--text-body); }
.recovery-link { display: grid; gap: 4px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); }
.recovery-link strong { color: var(--brand); }
.recovery-link span { color: var(--muted); font-size: 15px; }
.use-case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 8px 0 16px; }
.check-inline { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--text-secondary); }
.check-inline input { width: 18px; min-height: 18px; }
.share-toggle { margin: 8px 0 4px; }
.property-attach { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.property-attach h3 { margin: 0 0 8px; font-size: 22px; }
.service-brief { margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.service-brief > p { color: var(--text-body); line-height: 1.7; }
.doc-hints { margin: 16px 0; padding: 16px; border-radius: 8px; background: color-mix(in srgb, var(--brand) 8%, var(--surface)); border: 1px solid var(--line); }
.doc-hints strong { display: block; margin-bottom: 10px; color: var(--brand); }
.service-pick-groups { display: grid; gap: 22px; }
.service-pick-groups > div > strong { display: block; margin-bottom: 10px; color: var(--text-secondary); }
.service-pick-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.service-pick { display: grid; gap: 6px; padding: 14px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface-2); }
.service-pick span { font-weight: 900; color: var(--navy); }
.service-pick em { color: var(--muted); font-style: normal; font-size: 14px; line-height: 1.45; }
.service-pick small { color: var(--brand); font-weight: 850; }
.full-span { grid-column: 1 / -1; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.admin-stats-grid .stat span { display: block; margin-top: 6px; color: var(--muted); font-weight: 750; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--muted);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 750;
}
.breadcrumbs a { color: var(--brand); font-weight: 850; }
.breadcrumbs a:hover { text-decoration: underline; }
.service-hero .breadcrumbs { color: rgba(255,255,255,.72); }
.service-hero .breadcrumbs a { color: #fff; }
.macro-grid { margin-top: 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.macro-card h2 { margin: 0 0 10px; font-size: clamp(24px, 3vw, 32px); }
.macro-card .inline-action { margin-top: 16px; }
a.service-chip { display: grid; text-decoration: none; transition: border-color .15s ease, background .15s ease; }
a.service-chip:hover { border-color: color-mix(in srgb, var(--brand) 45%, var(--line)); background: color-mix(in srgb, var(--brand) 8%, var(--surface)); }
.notai-search {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.notai-search__fields {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(180px, .9fr) auto;
}
.notai-search__field {
  display: grid;
  gap: 0;
  padding: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
}
.notai-search__field span {
  padding: 10px 16px 0;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.notai-search__field input {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 0;
  padding: 4px 16px 12px;
  background: transparent;
  box-shadow: none;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.notai-search__field input:focus {
  outline: none;
  box-shadow: none;
}
.notai-search__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 132px;
  border: 0;
  background: var(--brand);
  color: var(--mark-fg);
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
}
.notai-search__submit svg { width: 18px; height: 18px; }
.notai-search__submit:hover { background: var(--brand-2); }
.compact-search .notai-search { margin-bottom: 8px; }
@media (max-width: 900px) {
  .macro-grid { grid-template-columns: 1fr; }
  .notai-search__fields { grid-template-columns: 1fr; }
  .notai-search__field { border-right: 0; border-bottom: 1px solid var(--line); }
  .notai-search__submit { min-height: 54px; width: 100%; }
}
@media (max-width: 900px) {
  .site-header { align-items: center; flex-wrap: wrap; gap: 12px; }
  .brand { min-width: 0; flex: 1; }
  .brand strong { font-size: 19px; }
  .nav-toggle { display: inline-flex; flex: 0 0 auto; }
  .site-header > .nav { margin-left: 0; }
  .nav {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 4px;
    border-top: 1px solid var(--line);
  }
  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }
  .nav a:last-child { border-bottom: 0; }
  body.nav-open .nav { display: flex; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero, .two-col, .form-grid, .grid, .service-layout, .info-grid, .hero-summary, .notary-hero__inner, .notary-layout, .contact-grid, .service-chip-grid, .seo-link-grid, .nearby-notary-grid, .notary-result-row, .funnel-grid, .summary-grid, .use-case-grid, .listing-layout, .service-pick-grid, .admin-stats-grid, .home-hero__actions, .service-search-form { grid-template-columns: 1fr; }
  .home-hero { padding-top: 36px; padding-bottom: 42px; }
  .home-hero__tagline { max-width: 22ch; }
  .qc-steps, .qc-search__grid, .qc-table__row { grid-template-columns: 1fr; }
  .qc-hero .home-hero__tagline { max-width: 28ch; }
  .qc-group__head { flex-direction: column; align-items: flex-start; }
  .summary-notaries li, .admin-request__head { flex-direction: column; }
  .side-stack, .notary-side, .listing-map-panel { position: static; }
  .listing-layout .result-list { order: 2; }
  .listing-layout .listing-map-panel { order: 1; }
  .listing-map-shell, .listing-map-canvas, .listing-map-fallback { height: 360px; min-height: 320px; }
  body:has(.sticky-actions) { padding-bottom: 86px; }
  .sticky-actions { position: fixed; top: auto; right: 0; bottom: 0; left: 0; z-index: 30; display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 8px; padding: 10px 12px max(10px, env(safe-area-inset-bottom)); border-top: 1px solid var(--line); border-bottom: 0; box-shadow: 0 -10px 24px rgba(16,24,40,.14); }
  .sticky-actions .btn { min-width: 0; min-height: 52px; padding: 10px 8px; font-size: 15px; white-space: nowrap; }
  .claim-callout, .section-title-row { align-items: flex-start; flex-direction: column; }
  .notary-row { grid-template-columns: 1fr; }
  .notary-result-row .actions { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .notary-result-row .actions .btn { padding-left: 8px; padding-right: 8px; }
  .stats { grid-template-columns: 1fr; }
  .footer { display: block; }
  .site-footer__grid,
  .contact-cards { grid-template-columns: 1fr; }
  .site-footer__bottom-inner { flex-direction: column; align-items: flex-start; }
  .site-footer__bottom-links { justify-content: flex-start; }
}
