:root {
  --ink: #13231e;
  --muted: #5f6f6a;
  --line: #d8e2dc;
  --paper: #ffffff;
  --wash: #f4f8f5;
  --mist: #eaf3ef;
  --cream: #fff8e6;
  --green: #1f6f55;
  --green-dark: #123f34;
  --sea: #0d5f73;
  --coral: #e76f51;
  --orange: #f47a21;
  --gold: #f2b84b;
  --charcoal: #253230;
  --shadow: 0 24px 70px rgba(18, 63, 52, .18);
}

.pac-container {
  border: 2px solid rgba(35, 120, 138, .18) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 40px rgba(15, 35, 55, .22) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  margin-top: 8px !important;
  overflow: hidden !important;
  z-index: 999999 !important;
}

.pac-item {
  color: #12213a !important;
  cursor: pointer !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  padding: 12px 14px !important;
}

.pac-item:hover,
.pac-item-selected {
  background: #fff4eb !important;
}

.pac-item-query {
  color: #0f6e79 !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #eef6f4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 34px)); margin: 0 auto; }

.top-ribbon {
  align-items: center;
  background: #f49a5b;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 950;
  justify-content: center;
  letter-spacing: .03em;
  min-height: 44px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.home-page .site-header { display: block; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 82px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  align-items: center;
  background: #fff7f1 url("../img/calihomecashoffer-icon.svg") center / contain no-repeat;
  border: 1px solid rgba(244, 119, 33, .22);
  border-radius: 12px;
  color: transparent;
  display: inline-flex;
  font-weight: 950;
  height: 50px;
  justify-content: center;
  letter-spacing: .02em;
  overflow: hidden;
  position: relative;
  width: 50px;
  box-shadow: 0 14px 30px rgba(18, 63, 52, .22);
}
.brand-mark::after {
  content: none;
}
.brand strong { display: block; font-size: 18px; line-height: 1; }
.brand small { color: var(--muted); display: block; font-size: 12px; font-weight: 850; margin-top: 5px; }
.site-nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.site-nav a,
.button,
.menu-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 11px 15px;
  text-decoration: none;
}
.site-nav a { color: var(--charcoal); transition: background .18s ease, color .18s ease, transform .18s ease; }
.site-nav a:hover { background: #eef5f1; color: var(--green-dark); transform: translateY(-1px); }
.site-nav .call-link {
  background: var(--gold);
  color: #1c281f;
  box-shadow: 0 10px 22px rgba(242,184,75,.26);
}
.menu-button { display: none; background: #fff; border-color: var(--line); color: var(--ink); }
.button { transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--coral); border-color: var(--coral); color: #fff; box-shadow: 0 16px 30px rgba(231,111,81,.28); }
.button-secondary { background: #fff; border-color: var(--line); color: var(--ink); }
.button-light { background: #fff; color: var(--green-dark); box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.button-outline { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.62); color: #fff; }
.button-outline:hover { background: rgba(255,255,255,.18); }
.full { width: 100%; }

.hero {
  min-height: calc(100vh - 126px);
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: #273e45;
}
.home-page .hero { min-height: calc(100vh - 44px); }
.hero-media,
.hero-overlay {
  inset: 0;
  position: absolute;
  z-index: -2;
}
.hero-media {
  background: url("../img/hero-california-photo.webp") center/cover no-repeat;
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(30,63,105,.2) 0%, rgba(30,63,105,.06) 38%, rgba(8,31,26,.18) 100%),
    linear-gradient(90deg, rgba(14,47,48,.16), rgba(255,255,255,.02), rgba(14,47,48,.12));
  z-index: -1;
}
.hero-grid {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  min-height: calc(100vh - 126px);
  padding: 44px 0 52px;
  position: relative;
}
.home-page .hero-grid { min-height: calc(100vh - 44px); }
.hero-copy {
  color: #fff;
  max-width: none;
  min-height: 500px;
  position: relative;
  text-align: center;
  width: 100%;
}
.hero-mini {
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .16em;
  margin: 0 0 14px;
  text-shadow: 0 3px 12px rgba(0,0,0,.35);
  text-transform: uppercase;
}
.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
  margin: 0 0 14px;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(46px, 7.2vw, 86px);
  line-height: .93;
  letter-spacing: 0;
  margin-bottom: 20px;
  max-width: 880px;
}
.hero-copy h1 {
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(70px, 8.9vw, 150px);
  font-weight: 950;
  letter-spacing: .05em;
  line-height: .82;
  margin: 0 auto 32px;
  max-width: 1280px;
  text-shadow:
    2px 2px 0 #1e2528,
    4px 4px 0 rgba(0,0,0,.72),
    7px 7px 0 rgba(0,0,0,.38),
    0 16px 40px rgba(0,0,0,.22);
  -webkit-text-stroke: 2px #1b2427;
  white-space: nowrap;
  text-transform: uppercase;
}
.hero-subcopy {
  color: rgba(255,255,255,.86);
  font-size: 21px;
  font-weight: 650;
  max-width: 720px;
}
.hero-benefit-card {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  color: #101516;
  display: inline-block;
  margin: 6px auto 0;
  padding: 25px 48px;
  text-align: left;
}
.hero-benefit-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hero-benefit-card li {
  align-items: center;
  display: grid;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 850;
  gap: 16px;
  grid-template-columns: 38px 1fr;
  letter-spacing: .01em;
  line-height: 1.05;
}
.hero-benefit-card li::before {
  color: var(--sea);
  content: "✓";
  display: inline-flex;
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  text-shadow: 2px 2px 0 rgba(0,0,0,.18);
  transform: rotate(-10deg);
}
.hand-note {
  color: #fff;
  display: grid;
  font-family: "Comic Sans MS", "Marker Felt", "Bradley Hand", cursive;
  font-size: clamp(23px, 2.8vw, 38px);
  font-weight: 950;
  left: clamp(-96px, -5vw, -42px);
  letter-spacing: .04em;
  line-height: .92;
  position: absolute;
  text-align: left;
  text-shadow:
    -2px -2px 0 #23788a,
    2px -2px 0 #23788a,
    -2px 2px 0 #23788a,
    2px 2px 0 #23788a,
    0 10px 20px rgba(0,0,0,.2);
  text-transform: uppercase;
  top: 340px;
  transform: rotate(-9deg);
}
.hand-note b {
  font-size: 66px;
  justify-self: end;
  line-height: .65;
  margin-right: -40px;
  transform: rotate(15deg);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.offer-form {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 26px;
  position: relative;
}
.offer-form[data-current-step="1"] {
  background: #fff;
  border: 8px solid var(--orange);
  border-radius: 999px;
  box-shadow: 0 26px 50px rgba(0,0,0,.28);
  margin-top: auto;
  max-width: 820px;
  overflow: visible;
  padding: 7px;
  width: min(820px, calc(100% - 24px));
}
.offer-form::before {
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--green));
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.offer-form[data-current-step="1"]::before { display: none; }
.offer-form[data-current-step="1"] .form-head,
.offer-form[data-current-step="1"] .progress,
.offer-form[data-current-step="1"] .progress-labels,
.offer-form[data-current-step="1"] .field-help,
.offer-form[data-current-step="1"] .form-status {
  display: none;
}
.offer-form[data-current-step="1"] .form-step.active {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 186px;
  position: relative;
}
.offer-form[data-current-step="1"] label {
  height: 1px;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}
.offer-form[data-current-step="1"] .form-step.active::before {
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0 4px rgba(244,122,33,.15);
  content: "";
  height: 25px;
  left: 27px;
  position: absolute;
  top: 50%;
  transform: translateY(-58%) rotate(-45deg);
  width: 25px;
  z-index: 1;
}
.offer-form[data-current-step="1"] .form-step.active::after {
  background: #fff;
  border-radius: 999px;
  content: "";
  height: 9px;
  left: 35px;
  position: absolute;
  top: calc(50% - 13px);
  width: 9px;
  z-index: 2;
}
.offer-form[data-current-step="1"] input {
  border: 0;
  color: var(--sea);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  grid-column: 1;
  grid-row: 1;
  min-height: 68px;
  padding: 12px 18px 12px 76px;
}
.offer-form[data-current-step="1"] input:focus {
  outline: none;
}
.offer-form[data-current-step="1"] .button-primary {
  background: var(--orange);
  border-color: var(--orange);
  border-radius: 999px;
  box-shadow: none;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 40px;
  grid-column: 2;
  grid-row: 1;
  letter-spacing: .08em;
  min-height: 68px;
  padding: 10px 26px;
  text-shadow: 0 2px 0 rgba(0,0,0,.12);
}
.offer-form:not([data-current-step="1"]) {
  max-width: 720px;
  width: min(720px, calc(100% - 24px));
}
.form-kicker {
  align-items: center;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  gap: 8px;
  letter-spacing: .12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.form-kicker span {
  background: #29b76e;
  border-radius: 99px;
  box-shadow: 0 0 0 5px rgba(41,183,110,.12);
  height: 9px;
  width: 9px;
}
.form-head h2 { font-size: 29px; margin: 8px 0 6px; }
.form-head p { color: var(--muted); font-weight: 750; margin-bottom: 16px; }
.step-pill {
  background: #eaf5ef;
  border: 1px solid #cbe3d6;
  border-radius: 999px;
  color: var(--green-dark);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  padding: 7px 10px;
}
.progress {
  background: #e8eee9;
  border-radius: 999px;
  height: 10px;
  margin: 14px 0 8px;
  overflow: hidden;
}
.progress span { background: var(--coral); display: block; height: 100%; transition: width .2s ease; width: 33%; }
.progress-labels {
  color: #7c8a84;
  display: grid;
  font-size: 11px;
  font-weight: 950;
  grid-template-columns: repeat(3, 1fr);
  letter-spacing: .08em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.progress-labels span:nth-child(2) { text-align: center; }
.progress-labels span:nth-child(3) { text-align: right; }
.form-step { display: none; }
.form-step.active { display: grid; gap: 14px; }
label, legend {
  color: var(--ink);
  display: block;
  font-weight: 950;
  margin-bottom: 7px;
}
input,
textarea {
  background: #fff;
  border: 1px solid #cbd8d0;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  min-height: 54px;
  padding: 13px 14px;
  width: 100%;
}
textarea {
  line-height: 1.45;
  min-height: 138px;
  resize: vertical;
}
input:focus,
textarea:focus { border-color: var(--green); outline: 3px solid rgba(31,111,85,.14); }
.field-help { color: var(--muted); font-size: 13px; font-weight: 750; margin-bottom: 0; }
.address-verify-status {
  align-items: center;
  border: 1px solid rgba(13,95,115,.2);
  border-radius: 999px;
  color: var(--sea);
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
  margin: 0;
  max-width: 100%;
  min-height: 30px;
  padding: 7px 12px;
}
.address-verify-status:empty { display: none; }
.address-verify-status.is-checking {
  background: #eef8fa;
  border-color: rgba(13,95,115,.2);
}
.address-verify-status.is-valid {
  background: #eaf7f0;
  border-color: #9fd5bd;
  color: var(--green-dark);
}
.address-verify-status.is-warning {
  background: #fff8e6;
  border-color: #f6d98d;
  color: #765016;
}
.address-verify-status.is-error {
  background: #fff1ed;
  border-color: rgba(231,111,81,.42);
  color: #9d3d2a;
}
.offer-form[data-current-step="1"] .address-verify-status {
  grid-column: 1 / -1;
  justify-self: start;
  margin: 2px 20px 0;
  max-width: calc(100% - 40px);
}
fieldset {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 13px;
  background: #fbfdfb;
}
.choice-row { display: grid; gap: 8px; grid-template-columns: repeat(3, 1fr); }
.choice-row label {
  align-items: center;
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 10px;
}
.choice-row label:has(input:checked) {
  background: #eaf7f0;
  border-color: #9fd5bd;
  color: var(--green-dark);
}
.choice-row input, .consent-box input { min-height: auto; width: auto; }
.field-grid { display: grid; gap: 12px; grid-template-columns: repeat(2, 1fr); }
.consent-box {
  align-items: flex-start;
  background: #fff8e6;
  border: 1px solid #f6d98d;
  border-radius: 8px;
  display: flex;
  gap: 10px;
  padding: 12px;
}
.consent-box span { color: #3e3421; font-size: 13px; font-weight: 750; }
.form-actions { display: flex; gap: 10px; justify-content: space-between; }
.form-status { color: var(--green-dark); font-size: 13px; font-weight: 850; margin: 12px 0 0; min-height: 18px; }
.hp-field { left: -9999px; position: absolute; top: auto; }

.trust-line { background: #fff; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.trust-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, 1fr);
  padding: 18px 0;
}
.trust-grid article {
  align-items: flex-start;
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  min-height: 118px;
  padding: 18px;
}
.trust-grid article > span {
  align-items: center;
  background: var(--green-dark);
  border-radius: 8px;
  color: var(--gold);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  height: 34px;
  justify-content: center;
  width: 42px;
}
.trust-grid strong { display: block; font-size: 17px; margin-bottom: 5px; }
.trust-grid p { color: var(--muted); font-size: 14px; font-weight: 750; margin-bottom: 0; }

.section { padding: 84px 0; }
.section-head { max-width: 760px; margin-bottom: 30px; }
.section-head h2,
.closing-inner h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 14px;
}
.steps-grid { display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.feature-card,
.reason-card,
.compare-panel,
.ease-card,
.guide-main,
.guide-side,
.reason-list article,
.faq-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(19,35,30,.08);
  overflow: hidden;
}
.feature-card,
.reason-card,
.compare-panel,
.ease-card,
.guide-main,
.guide-side,
.reason-list article,
.faq-grid article {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.feature-card:hover,
.reason-card:hover,
.compare-panel:hover,
.ease-card:hover,
.guide-main:hover,
.guide-side:hover,
.reason-list article:hover,
.faq-grid article:hover {
  border-color: #bdd6ca;
  box-shadow: 0 20px 42px rgba(19,35,30,.12);
  transform: translateY(-2px);
}
.feature-card img { aspect-ratio: 1.55 / 1; object-fit: cover; width: 100%; }
.feature-card div { padding: 18px; }
.feature-card span {
  color: var(--coral);
  display: block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.feature-card h3, .reason-card h3, .compare-panel h3 { font-size: 22px; margin-bottom: 8px; }
.feature-card p,
.compare-panel li,
.closing-inner p,
.reason-card p,
.ease-grid p,
.guide-grid p,
.guide-grid li,
.reason-list p,
.faq-grid p {
  color: var(--muted);
  font-weight: 700;
}

.ease-section {
  background: linear-gradient(180deg, #eef6f4, #fff);
  border-top: 1px solid var(--line);
}
.ease-grid {
  align-items: stretch;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .62fr);
}
.ease-grid h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 18px;
  max-width: 860px;
}
.ease-card {
  background: var(--green-dark);
  color: #fff;
  padding: 28px;
}
.ease-card h3 { font-size: 28px; margin-bottom: 18px; }
.ease-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.ease-card li {
  align-items: center;
  display: grid;
  font-weight: 900;
  gap: 10px;
  grid-template-columns: 24px 1fr;
}
.ease-card li::before {
  align-items: center;
  background: var(--gold);
  border-radius: 99px;
  color: #1d261f;
  content: "✓";
  display: inline-flex;
  font-size: 14px;
  font-weight: 950;
  height: 24px;
  justify-content: center;
  width: 24px;
}

.split-section { background: #fff; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); }
.compare-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.compare-panel { padding: 24px; }
.compare-panel.positive { border-color: #bcdccc; background: #f4fbf7; }
.compare-panel ul { display: grid; gap: 12px; list-style: none; margin: 0; padding-left: 0; }
.compare-panel li {
  display: grid;
  gap: 10px;
  grid-template-columns: 20px 1fr;
}
.compare-panel li::before {
  align-items: center;
  background: #e9f6ef;
  border-radius: 99px;
  color: var(--green);
  content: "✓";
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 20px;
  justify-content: center;
  margin-top: 2px;
  width: 20px;
}
.compare-panel:not(.positive) li::before {
  background: #fff3dc;
  color: #a36b00;
}

.reason-grid { display: grid; gap: 18px; grid-template-columns: repeat(4, 1fr); }
.reason-card div { padding: 17px; }
.reason-card h3 { margin-bottom: 8px; }
.reason-card p { font-size: 14px; margin-bottom: 0; }
.reason-card img { aspect-ratio: 1.36 / 1; object-fit: cover; width: 100%; }

.guide-section {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}
.guide-grid {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) 350px;
}
.guide-main { padding: 30px; }
.guide-main p { font-size: 18px; }
.guide-main ol {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
  padding-left: 22px;
}
.guide-main li { padding-left: 4px; }
.guide-side {
  background: var(--cream);
  border-color: #f1d489;
  padding: 26px;
}
.guide-side h3 { font-size: 27px; line-height: 1.05; }

.top-reasons {
  background: #eef6f4;
}
.reason-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.reason-list article { padding: 22px; }
.reason-list span {
  color: var(--coral);
  display: block;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .14em;
  margin-bottom: 14px;
}
.reason-list h3 { font-size: 24px; line-height: 1.08; margin-bottom: 10px; }
.reason-list p { font-size: 15px; margin-bottom: 0; }

.faq-section {
  background: #fff;
  border-top: 1px solid var(--line);
}
.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.faq-grid article { padding: 22px; }
.faq-grid h3 { font-size: 22px; line-height: 1.1; margin-bottom: 9px; }
.faq-grid p { margin-bottom: 0; }

.closing-section {
  background:
    linear-gradient(135deg, rgba(18,63,52,.98), rgba(13,95,115,.92)),
    linear-gradient(0deg, rgba(242,184,75,.14), rgba(242,184,75,0));
  color: #fff;
  padding: 92px 0;
}
.closing-inner { max-width: 860px; }
.closing-inner p { color: rgba(255,255,255,.82); font-size: 19px; margin-bottom: 24px; }
.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
}
.market-list span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  color: rgba(255,255,255,.92);
  font-size: 13px;
  font-weight: 900;
  padding: 9px 11px;
}

.site-footer {
  background: #101a17;
  color: #fff;
  padding: 38px 0 24px;
}
.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr;
}
.footer-grid p, .footer-bottom { color: rgba(255,255,255,.68); font-weight: 650; }
.footer-grid div:last-child { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: flex-end; }
.footer-grid a { color: #fff; font-weight: 850; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 26px; padding-top: 18px; font-size: 13px; }

.legal-main {
  background:
    linear-gradient(135deg, rgba(255,248,230,.92), rgba(255,255,255,.94) 44%, rgba(234,243,239,.95)),
    url("../img/hero-california-photo.webp") center/cover fixed;
  padding: 92px 0;
}
.legal-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,95,105,.16);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(18, 63, 52, .16);
  margin: 0 auto;
  max-width: 900px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 58px);
  position: relative;
  width: min(900px, calc(100% - 34px));
}
.legal-card::before {
  background: linear-gradient(90deg, var(--orange), #0f5f69);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}
.legal-card h1 {
  color: var(--ink);
  font-size: clamp(38px, 6vw, 64px);
  line-height: .96;
  margin-top: 0;
}
.legal-card h2 {
  color: #122823;
  margin-top: 32px;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 18px;
  font-weight: 750;
}

@media (max-width: 920px) {
  .menu-button { display: inline-flex; }
  .site-nav {
    background: #fff;
    border-bottom: 1px solid var(--line);
    display: none;
    left: 0;
    padding: 12px 17px;
    position: absolute;
    right: 0;
    top: 82px;
  }
  .site-nav.open { display: grid; }
  .hero-grid { min-height: 760px; padding: 34px 0 38px; }
  .hero-copy { min-height: auto; }
  .hero-copy h1 {
    font-size: clamp(58px, 15vw, 118px);
    line-height: .86;
    white-space: normal;
  }
  .hero-benefit-card {
    margin-top: 0;
    padding: 20px 28px;
  }
  .hero-benefit-card li {
    font-size: clamp(22px, 5vw, 34px);
  }
  .hand-note {
    display: inline-grid;
    left: auto;
    margin: 18px auto 0;
    position: static;
    transform: rotate(-7deg);
  }
  .hand-note b { margin-right: 0; }
  .offer-form { max-width: 620px; }
  .trust-grid,
  .steps-grid,
  .compare-grid,
  .reason-grid,
  .ease-grid,
  .guide-grid,
  .reason-list,
  .faq-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid div:last-child { justify-content: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1180px); }
  .top-ribbon { font-size: 12px; min-height: 36px; padding: 0 10px; }
  .brand strong { font-size: 16px; }
  .brand small { font-size: 11px; }
  .brand-mark { height: 44px; width: 44px; }
  .hero { min-height: auto; }
  .hero-grid { min-height: 710px; }
  h1 { font-size: 43px; }
  .hero-copy h1 {
    font-size: clamp(52px, 16vw, 78px);
    letter-spacing: .035em;
    -webkit-text-stroke: 1px #1b2427;
  }
  .hero-mini {
    font-size: 11px;
    letter-spacing: .12em;
  }
  .hero-subcopy { font-size: 18px; }
  .hero-benefit-card {
    padding: 16px 18px;
    width: min(100%, 360px);
  }
  .hero-benefit-card li {
    font-size: 20px;
    gap: 10px;
    grid-template-columns: 28px 1fr;
  }
  .hero-benefit-card li::before {
    font-size: 28px;
  }
  .hand-note {
    font-size: 24px;
  }
  .hand-note b {
    font-size: 52px;
  }
  .offer-form[data-current-step="1"] {
    border-width: 6px;
    padding: 5px;
    width: 100%;
  }
  .offer-form[data-current-step="1"] .form-step.active {
    grid-template-columns: minmax(0, 1fr) 112px;
  }
  .offer-form[data-current-step="1"] .form-step.active::before {
    height: 19px;
    left: 18px;
    width: 19px;
  }
  .offer-form[data-current-step="1"] .form-step.active::after {
    height: 7px;
    left: 24px;
    top: calc(50% - 10px);
    width: 7px;
  }
  .offer-form[data-current-step="1"] input {
    font-size: 16px;
    min-height: 56px;
    padding-left: 48px;
  }
  .offer-form[data-current-step="1"] .button-primary {
    font-size: 28px;
    min-height: 56px;
    padding: 8px 12px;
  }
  .offer-form[data-current-step="1"] .address-verify-status {
    border-radius: 14px;
    font-size: 11px;
    margin: 0 8px;
    padding: 7px 10px;
  }
  .choice-row, .field-grid { grid-template-columns: 1fr; }
  .form-actions { display: grid; }
  .hero-badges { display: grid; }
  .trust-grid article { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .guide-main, .guide-side, .ease-card { padding: 22px; }
  .legal-card { padding: 22px; }
}

/* Cohesive homepage rebuild overrides */
.home-page .site-header {
  display: block;
}

.home-page .top-ribbon {
  background: var(--green-dark);
  font-size: 13px;
  min-height: 38px;
}

.home-page .hero {
  min-height: auto;
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 37, 34, .9) 0%, rgba(12, 37, 34, .78) 44%, rgba(12, 37, 34, .42) 100%),
    linear-gradient(0deg, rgba(12, 37, 34, .55), rgba(12, 37, 34, .08) 42%);
}

.home-page .hero-grid {
  align-items: center;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  min-height: 720px;
  padding: 70px 0;
}

.home-page .hero-copy {
  max-width: 760px;
  min-height: 0;
  text-align: left;
}

.home-page .hero-copy h1 {
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(38px, 4.45vw, 58px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 20px;
  max-width: 800px;
  text-shadow: 0 12px 36px rgba(0,0,0,.35);
  -webkit-text-stroke: 0;
  text-transform: none;
  white-space: normal;
}

.home-page .hero-subcopy {
  color: rgba(255,255,255,.9);
  font-size: 20px;
  max-width: 700px;
}

.hero-proof-row {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
  max-width: 650px;
}

.hero-proof-row span {
  align-items: center;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 14px;
  font-weight: 900;
  gap: 9px;
  min-height: 42px;
  padding: 10px 12px;
}

.hero-proof-row span::before {
  background: var(--gold);
  border-radius: 99px;
  content: "";
  height: 9px;
  width: 9px;
}

.home-page .offer-form,
.home-page .offer-form[data-current-step="1"],
.home-page .offer-form:not([data-current-step="1"]) {
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin-top: 0;
  max-width: none;
  overflow: hidden;
  padding: 26px;
  width: 100%;
}

.home-page .offer-form::before,
.home-page .offer-form[data-current-step="1"]::before {
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--green));
  content: "";
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.home-page .offer-form[data-current-step="1"] .form-head,
.home-page .offer-form[data-current-step="1"] .progress,
.home-page .offer-form[data-current-step="1"] .field-help,
.home-page .offer-form[data-current-step="1"] .form-status {
  display: block;
}

.home-page .offer-form[data-current-step="1"] .progress-labels {
  display: grid;
}

.home-page .offer-form[data-current-step="1"] .form-step.active {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}

.home-page .offer-form[data-current-step="1"] label {
  color: var(--ink);
  display: block;
  font-weight: 950;
  height: auto;
  left: auto;
  margin-bottom: 7px;
  overflow: visible;
  position: static;
  width: auto;
}

.home-page .offer-form[data-current-step="1"] .form-step.active::before,
.home-page .offer-form[data-current-step="1"] .form-step.active::after {
  display: none;
}

.home-page .offer-form[data-current-step="1"] input {
  background: #fff;
  border: 1px solid #cbd8d0;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  min-height: 54px;
  padding: 13px 14px;
}

.home-page .offer-form[data-current-step="1"] input:focus {
  border-color: var(--green);
  outline: 3px solid rgba(31,111,85,.14);
}

.home-page .offer-form[data-current-step="1"] .button-primary {
  background: var(--coral);
  border-color: var(--coral);
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(231,111,81,.28);
  color: #fff;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0;
  min-height: 48px;
  padding: 11px 15px;
  text-shadow: none;
}

.county-section {
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.county-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.county-grid article {
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(19,35,30,.08);
  padding: 22px;
}

.county-grid article > span {
  color: var(--coral);
  display: block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.county-grid h3 {
  font-size: 24px;
  line-height: 1.08;
  margin-bottom: 10px;
}

.county-grid p {
  color: var(--muted);
  font-weight: 700;
}

.county-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.county-grid li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 9px;
}

@media (max-width: 1050px) {
  .county-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .home-page .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 52px 0;
  }

  .home-page .hero-copy {
    text-align: left;
  }

  .home-page .offer-form {
    max-width: 620px;
  }

  .county-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .home-page .top-ribbon {
    font-size: 11px;
    line-height: 1.25;
    min-height: 42px;
    padding: 7px 10px;
  }

  .home-page .hero-grid {
    padding: 42px 0;
  }

  .home-page .hero-copy h1 {
    font-size: 39px;
  }

  .home-page .hero-subcopy {
    font-size: 17px;
  }

  .hero-proof-row {
    grid-template-columns: 1fr;
  }
}

/* Final direction: make the whole homepage match the bold orange hero. */
.home-page {
  background: #111a18;
}

.home-page .site-header {
  display: block;
}

.home-page .top-ribbon {
  background: #f49a5b;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .04em;
  min-height: 44px;
  text-transform: uppercase;
}

.home-page .hero {
  min-height: calc(100vh - 44px);
}

.home-page .hero-overlay {
  background:
    linear-gradient(180deg, rgba(36,72,116,.18) 0%, rgba(36,72,116,.04) 38%, rgba(8,31,26,.18) 100%),
    linear-gradient(90deg, rgba(14,47,48,.18), rgba(255,255,255,.02), rgba(14,47,48,.12));
}

.home-page .hero-grid {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
  min-height: calc(100vh - 44px);
  padding: 44px 0 52px;
  position: relative;
}

.home-page .hero-copy {
  color: #fff;
  max-width: none;
  min-height: 500px;
  position: relative;
  text-align: center;
  width: 100%;
}

.home-page .hero-copy h1 {
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(70px, 8.9vw, 150px);
  font-weight: 950;
  letter-spacing: .05em;
  line-height: .82;
  margin: 0 auto 32px;
  max-width: 1280px;
  text-shadow:
    2px 2px 0 #1e2528,
    4px 4px 0 rgba(0,0,0,.72),
    7px 7px 0 rgba(0,0,0,.38),
    0 16px 40px rgba(0,0,0,.22);
  -webkit-text-stroke: 2px #1b2427;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-page .hero-mini {
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .16em;
  margin: 0 0 14px;
  text-shadow: 0 3px 12px rgba(0,0,0,.35);
  text-transform: uppercase;
}

.home-page .hero-benefit-card {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  color: #101516;
  display: inline-block;
  margin: 6px auto 0;
  padding: 25px 48px;
  text-align: left;
}

.home-page .hero-benefit-card li {
  font-size: clamp(26px, 3vw, 40px);
}

.home-page .hand-note {
  display: grid;
  left: clamp(-130px, -6vw, -70px);
  position: absolute;
  top: 382px;
}

.home-page .hand-note b {
  margin-right: -102px;
  margin-top: 110px;
  transform: rotate(24deg);
}

.home-page .hand-note::after {
  align-items: center;
  background: linear-gradient(180deg, #7fc9f6 0%, #4d89d9 100%);
  border: 4px solid #2b6881;
  border-radius: 24px;
  box-shadow: 0 12px 24px rgba(0,0,0,.25);
  color: #fff;
  content: "↘";
  display: inline-flex;
  font-size: 50px;
  font-weight: 900;
  height: 92px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -360px;
  top: 188px;
  transform: rotate(16deg);
  width: 92px;
}

.home-page .offer-form,
.home-page .offer-form[data-current-step="1"] {
  background: #fff;
  border: 8px solid var(--orange);
  border-radius: 999px;
  box-shadow: 0 26px 50px rgba(0,0,0,.28);
  margin-top: auto;
  max-width: 820px;
  overflow: visible;
  padding: 7px;
  width: min(820px, calc(100% - 24px));
}

.home-page .offer-form[data-current-step="1"]::before,
.home-page .offer-form::before {
  display: none;
}

.home-page .offer-form[data-current-step="1"] .form-head,
.home-page .offer-form[data-current-step="1"] .progress,
.home-page .offer-form[data-current-step="1"] .progress-labels,
.home-page .offer-form[data-current-step="1"] .field-help,
.home-page .offer-form[data-current-step="1"] .form-status,
.home-page .offer-form[data-current-step="1"] label {
  display: none;
}

.home-page .offer-form[data-current-step="1"] .form-step.active {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 186px;
  position: relative;
}

.home-page .offer-form[data-current-step="1"] .form-step.active::before {
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0 4px rgba(244,122,33,.15);
  content: "";
  display: block;
  height: 25px;
  left: 27px;
  position: absolute;
  top: 50%;
  transform: translateY(-58%) rotate(-45deg);
  width: 25px;
  z-index: 1;
}

.home-page .offer-form[data-current-step="1"] .form-step.active::after {
  background: #fff;
  border-radius: 999px;
  content: "";
  display: block;
  height: 9px;
  left: 35px;
  position: absolute;
  top: calc(50% - 13px);
  width: 9px;
  z-index: 2;
}

.home-page .offer-form[data-current-step="1"] input {
  border: 0;
  border-radius: 999px;
  color: var(--sea);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 900;
  min-height: 68px;
  padding: 12px 18px 12px 76px;
}

.home-page .offer-form[data-current-step="1"] input:focus {
  outline: none;
}

.home-page .offer-form[data-current-step="1"] .button-primary {
  background: var(--orange);
  border-color: var(--orange);
  border-radius: 999px;
  box-shadow: none;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 40px;
  letter-spacing: .08em;
  min-height: 68px;
  padding: 10px 26px;
  text-shadow: 0 2px 0 rgba(0,0,0,.12);
}

.home-page .offer-form:not([data-current-step="1"]) {
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 720px;
  overflow: hidden;
  padding: 26px;
  width: min(720px, calc(100% - 24px));
}

.home-page .offer-form:not([data-current-step="1"])::before {
  background: linear-gradient(90deg, var(--gold), var(--coral), var(--green));
  content: "";
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.home-page .trust-line,
.home-page .split-section,
.home-page .faq-section,
.home-page .county-section,
.home-page .top-reasons,
.home-page .ease-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)),
    #111a18;
  border-bottom: 1px solid rgba(255,255,255,.14);
  border-top: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.home-page .section {
  background: #f6f1e9;
}

.home-page .section-head h2,
.home-page .closing-inner h2 {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 950;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.home-page .trust-grid article,
.home-page .feature-card,
.home-page .reason-card,
.home-page .compare-panel,
.home-page .ease-card,
.home-page .county-grid article,
.home-page .reason-list article,
.home-page .faq-grid article {
  background: rgba(255,255,255,.93);
  border: 3px solid rgba(244,122,33,.55);
  box-shadow: 9px 9px 0 rgba(244,122,33,.2), 0 18px 40px rgba(0,0,0,.16);
}

.home-page .trust-line .trust-grid article,
.home-page .split-section .compare-panel,
.home-page .county-grid article,
.home-page .top-reasons .reason-list article,
.home-page .faq-grid article {
  background: rgba(255,255,255,.08);
  border-color: rgba(244,122,33,.72);
  color: #fff;
}

.home-page .trust-grid strong,
.home-page .compare-panel h3,
.home-page .county-grid h3,
.home-page .reason-list h3,
.home-page .faq-grid h3 {
  color: #fff;
}

.home-page .trust-grid p,
.home-page .compare-panel li,
.home-page .county-grid p,
.home-page .reason-list p,
.home-page .faq-grid p,
.home-page .ease-grid p {
  color: rgba(255,255,255,.82);
}

.home-page .county-grid article > span,
.home-page .reason-list span,
.home-page .feature-card span {
  color: var(--gold);
}

.home-page .county-grid li,
.home-page .market-list span {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.24);
  color: #fff;
}

.home-page .feature-card h3,
.home-page .reason-card h3 {
  color: var(--ink);
}

.home-page .closing-section {
  background:
    linear-gradient(135deg, rgba(17,26,24,.94), rgba(28,81,76,.9)),
    url("../img/hero-california-photo.webp") center/cover no-repeat;
  border-top: 8px solid var(--orange);
}

@media (max-width: 920px) {
  .home-page .hero-media {
    background-image: url("../img/hero-california-photo-mobile.webp");
    background-position: center top;
    background-size: cover;
  }

  .home-page .hero-grid {
    display: flex;
    min-height: 760px;
    padding: 34px 0 38px;
  }

  .home-page .hero-copy {
    min-height: auto;
    text-align: center;
  }

.home-page .hero-copy h1 {
    font-size: clamp(48px, 12vw, 104px);
    white-space: normal;
  }

  .home-page .hand-note {
    display: inline-grid;
    left: auto;
    margin: 18px auto 0;
    position: static;
    transform: rotate(-7deg);
  }
}

@media (max-width: 560px) {
  .home-page .top-ribbon {
    font-size: 11px;
    min-height: 40px;
  }

  .home-page .hero-grid {
    min-height: 710px;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(42px, 13vw, 70px);
    -webkit-text-stroke: 1px #1b2427;
  }

  .home-page .hero-benefit-card {
    padding: 16px 18px;
    width: min(100%, 360px);
  }

  .home-page .hero-benefit-card li {
    font-size: 20px;
    gap: 10px;
    grid-template-columns: 28px 1fr;
  }

  .home-page .offer-form[data-current-step="1"] {
    border-width: 6px;
    padding: 5px;
    width: 100%;
  }

  .home-page .offer-form[data-current-step="1"] .form-step.active {
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .home-page .offer-form[data-current-step="1"] input {
    font-size: 14px;
    min-height: 56px;
    padding-left: 54px;
  }

  .home-page .offer-form[data-current-step="1"] .button-primary {
    font-size: 24px;
    min-height: 56px;
    padding: 8px 10px;
  }
}

@media (max-width: 760px) {
  .home-page .section,
  .home-page #how-it-works.section {
    padding: 34px 0;
  }

  .home-page .section-head {
    margin-bottom: 16px;
  }

  .home-page .section-head h2 {
    font-size: clamp(34px, 12vw, 54px);
    line-height: .96;
  }

  .home-page .trust-line {
    padding: 18px 0;
  }

  .home-page .trust-grid {
    gap: 10px;
  }

  .home-page .trust-grid article,
  .home-page .feature-card,
  .home-page .county-grid article,
  .home-page .faq-grid article {
    box-shadow: 5px 5px 0 rgba(244,122,33,.18), 0 12px 24px rgba(0,0,0,.12);
    padding: 16px;
  }

  .home-page .feature-card img {
    display: none;
  }

  .home-page .county-grid,
  .home-page .faq-grid {
    gap: 12px;
  }

  .home-page .county-grid ul {
    gap: 6px;
  }

  .home-page .county-grid li {
    font-size: 12px;
    padding: 6px 8px;
  }

  .home-page .closing-section {
    padding: 42px 0;
  }
}

/* Final homepage surface: keep the old bold hero language across the whole page. */
.home-page .section.ease-section,
.home-page .section.split-section,
.home-page .section.county-section,
.home-page .section.top-reasons,
.home-page .section.faq-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    radial-gradient(circle at 20% 0%, rgba(244,122,33,.22), transparent 34%),
    #111a18;
  border-bottom: 1px solid rgba(255,255,255,.14);
  border-top: 1px solid rgba(255,255,255,.12);
  color: #fff;
}

.home-page .section.ease-section h2,
.home-page .section.split-section h2,
.home-page .section.county-section h2,
.home-page .section.top-reasons h2,
.home-page .section.faq-section h2,
.home-page .section.ease-section .section-head h2,
.home-page .section.split-section .section-head h2,
.home-page .section.county-section .section-head h2,
.home-page .section.top-reasons .section-head h2,
.home-page .section.faq-section .section-head h2 {
  color: #fff;
  text-shadow: 3px 3px 0 rgba(0,0,0,.32);
}

.home-page .section.ease-section .eyebrow,
.home-page .section.split-section .eyebrow,
.home-page .section.county-section .eyebrow,
.home-page .section.top-reasons .eyebrow,
.home-page .section.faq-section .eyebrow {
  color: var(--gold);
}

.home-page .section.ease-section p,
.home-page .section.split-section .section-head p,
.home-page .section.county-section .section-head p,
.home-page .section.top-reasons .section-head p,
.home-page .section.faq-section .section-head p {
  color: rgba(255,255,255,.82);
}

.home-page .county-depth {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.home-page .county-depth article {
  background: rgba(255,255,255,.08);
  border: 3px solid rgba(244,122,33,.72);
  border-radius: 8px;
  box-shadow: 9px 9px 0 rgba(244,122,33,.18), 0 18px 40px rgba(0,0,0,.18);
  padding: 24px;
}

.home-page .county-depth h3 {
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  letter-spacing: .02em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.home-page .county-depth p {
  color: rgba(255,255,255,.82);
  font-weight: 750;
  line-height: 1.68;
  margin: 0;
}

.home-page .ease-section .ease-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(244,122,33,.72);
  color: #fff;
}

.home-page .ease-section .ease-card h3 {
  color: #fff;
}

.home-page .ease-section .ease-card li {
  color: rgba(255,255,255,.86);
  font-weight: 850;
}

.home-page #how-it-works.section,
.home-page #situations.section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(246,241,233,.98)),
    #f6f1e9;
  border-bottom: 8px solid var(--orange);
  border-top: 8px solid var(--orange);
}

.home-page #how-it-works .section-head h2,
.home-page #situations .section-head h2 {
  color: var(--ink);
  text-shadow: 3px 3px 0 rgba(244,122,33,.14);
}

@media (max-width: 760px) {
  .home-page .county-depth {
    grid-template-columns: 1fr;
  }
}

/* Short homepage pass: fewer sections, tighter spacing, same bold top style. */
.home-page .section {
  padding: 52px 0;
}

.home-page .section-head {
  margin-bottom: 22px;
}

.home-page .trust-line {
  padding: 26px 0;
}

.home-page #how-it-works.section,
.home-page #situations.section {
  padding: 54px 0;
}

.home-page .feature-card img {
  aspect-ratio: 2.1 / 1;
}

.home-page .feature-card,
.home-page .reason-card,
.home-page .county-grid article,
.home-page .faq-grid article {
  padding: 20px;
}

.home-page .county-grid,
.home-page .reason-grid,
.home-page .faq-grid {
  gap: 16px;
}

.home-page .county-grid h3,
.home-page .faq-grid h3 {
  font-size: clamp(22px, 2.2vw, 34px);
}

.home-page .closing-section {
  padding: 62px 0;
}

@media (max-width: 760px) {
  .home-page .section,
  .home-page #how-it-works.section {
    padding: 30px 0;
  }

  .home-page .section-head {
    margin-bottom: 14px;
  }

  .home-page .section-head h2 {
    font-size: clamp(32px, 11vw, 48px);
    line-height: .96;
  }

  .home-page .trust-line {
    padding: 14px 0;
  }

  .home-page .trust-grid {
    gap: 8px;
  }

  .home-page .trust-grid article,
  .home-page .feature-card,
  .home-page .county-grid article,
  .home-page .faq-grid article {
    box-shadow: 4px 4px 0 rgba(244,122,33,.16), 0 10px 20px rgba(0,0,0,.1);
    padding: 14px;
  }

  .home-page .trust-grid article {
    gap: 12px;
    grid-template-columns: auto 1fr;
    min-height: 0;
    padding: 18px 16px;
  }

  .home-page .trust-grid article > span {
    height: 46px;
    width: 56px;
  }

  .home-page .trust-grid strong {
    font-size: 22px;
    line-height: 1.08;
    margin-bottom: 8px;
  }

  .home-page .trust-grid p {
    color: rgba(255,255,255,.82);
    display: block;
    font-size: 14px;
    line-height: 1.35;
    margin: 0;
  }

  .home-page .feature-card img {
    display: none;
  }

  .home-page .feature-card h3,
  .home-page .county-grid h3,
  .home-page .faq-grid h3 {
    font-size: 22px;
    line-height: 1.05;
  }

  .home-page .feature-card p,
  .home-page .county-grid p,
  .home-page .faq-grid p {
    font-size: 14px;
    line-height: 1.45;
  }

  .home-page .county-grid,
  .home-page .faq-grid {
    gap: 10px;
  }

  .home-page .county-grid ul {
    display: none;
  }

  .home-page .closing-section {
    padding: 36px 0;
  }
}

/* Hand-drawn process board inspired by the bold homepage art direction. */
.home-page .process-section {
  background: #fff;
  border-bottom: 8px solid var(--orange);
  border-top: 8px solid var(--orange);
  padding: 58px 0 64px;
}

.process-title {
  margin-bottom: 34px;
  text-align: center;
}

.process-title h2 {
  color: #050505;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(46px, 8vw, 112px);
  font-weight: 950;
  letter-spacing: .08em;
  line-height: .95;
  margin: 0;
  text-transform: uppercase;
}

.process-title h2 span {
  color: #91c776;
  display: block;
  letter-spacing: .04em;
  margin-bottom: 10px;
  text-shadow:
    1px 1px 0 #10251e,
    3px 3px 0 rgba(16,37,30,.78),
    5px 5px 0 rgba(16,37,30,.36);
  -webkit-text-stroke: 1px #10251e;
}

.process-board {
  align-items: center;
  border: 5px solid #078dbd;
  border-radius: 28px 42px 22px 34px;
  display: grid;
  gap: 12px;
  grid-template-columns: 56px minmax(120px, .85fr) 74px minmax(120px, .85fr) 94px 70px minmax(150px, 1fr) 70px 128px;
  min-height: 315px;
  overflow: hidden;
  padding: 46px 34px;
  position: relative;
}

.process-board::before {
  border: 3px solid rgba(7,141,189,.35);
  border-left: 0;
  border-radius: 55% 45% 50% 40%;
  content: "";
  inset: 16px 18px 18px 14px;
  pointer-events: none;
  position: absolute;
  transform: rotate(.5deg);
}

.phone-card {
  align-self: end;
  border: 3px solid #101516;
  border-radius: 8px;
  box-shadow: 4px 5px 0 rgba(16,21,22,.25);
  height: 104px;
  padding: 12px 7px 9px;
  position: relative;
  transform: rotate(-12deg);
  width: 58px;
  z-index: 1;
}

.phone-card span {
  background: #fff7ea;
  border: 2px solid #cbd6d4;
  border-radius: 5px;
  display: block;
  height: 64px;
  margin-bottom: 7px;
}

.phone-card b {
  background: var(--orange);
  border-radius: 4px;
  color: #fff;
  display: block;
  font-size: 9px;
  line-height: 1;
  padding: 5px 0;
  text-align: center;
  text-transform: uppercase;
}

.sketch-card,
.choice-card {
  background: #fff;
  border: 4px solid #101516;
  box-shadow: 5px 6px 0 rgba(0,0,0,.12);
  color: #0f1e44;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(22px, 2vw, 34px);
  letter-spacing: .04em;
  line-height: .92;
  min-height: 112px;
  padding: 20px 14px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  z-index: 1;
}

.tell-card {
  transform: rotate(-2deg);
}

.review-card {
  transform: rotate(2deg);
}

.choice-tag {
  align-self: center;
  background: #058ebd;
  border: 4px solid #101516;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 22px;
  letter-spacing: .04em;
  line-height: .92;
  padding: 14px 12px;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-1deg);
  z-index: 1;
}

.choice-stack {
  align-items: center;
  display: grid;
  gap: 10px;
  justify-items: center;
  z-index: 1;
}

.choice-card {
  background: #6fbe5d;
  color: #fff;
  min-height: 82px;
  padding: 16px;
  text-shadow: 2px 2px 0 #26364b;
  width: min(100%, 178px);
}

.choice-card span {
  background: #10224d;
  display: inline-block;
  font-size: 14px;
  margin-top: 7px;
  padding: 6px 10px;
  transform: rotate(3deg);
}

.list-card {
  transform: rotate(2deg);
}

.cash-card {
  transform: rotate(-2deg);
}

.choice-stack em {
  color: #0d2c3a;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 34px;
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: #078dbd;
  text-decoration-thickness: 4px;
  text-transform: uppercase;
}

.draw-arrow {
  border-right: 7px solid var(--orange);
  border-top: 7px solid var(--orange);
  border-radius: 0 68px 0 0;
  display: block;
  height: 48px;
  position: relative;
  width: 72px;
  z-index: 1;
}

.draw-arrow::after {
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--orange);
  border-top: 13px solid transparent;
  content: "";
  position: absolute;
  right: -13px;
  top: 44px;
  transform: rotate(48deg);
}

.arrow-one {
  transform: rotate(24deg);
}

.arrow-two {
  transform: rotate(-18deg);
}

.arrow-three {
  transform: rotate(14deg);
}

.sold-post {
  border-right: 12px solid var(--orange);
  border-top: 12px solid var(--orange);
  height: 150px;
  position: relative;
  width: 122px;
  z-index: 1;
}

.sold-post::after {
  background: #1a6a42;
  border-radius: 50% 50% 0 0;
  bottom: -8px;
  content: "";
  height: 24px;
  position: absolute;
  right: -31px;
  width: 58px;
}

.sold-post span {
  background: #058698;
  border: 4px solid #101516;
  color: #fff;
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 24px;
  letter-spacing: .04em;
  line-height: .9;
  padding: 20px 12px;
  position: absolute;
  right: 8px;
  text-align: center;
  text-shadow: 2px 2px 0 #26364b;
  text-transform: uppercase;
  top: 48px;
  transform: rotate(1deg);
  width: 118px;
}

.start-strip {
  background: #fff;
  padding: 48px 0 58px;
}

.start-strip-inner {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: 190px minmax(0, 1fr) 126px;
}

.sold-sign {
  border-right: 12px solid var(--orange);
  border-top: 12px solid var(--orange);
  height: 184px;
  position: relative;
  justify-self: end;
  width: 176px;
}

.sold-sign::before {
  background: #101516;
  box-shadow: -44px 0 0 #101516;
  content: "";
  height: 30px;
  position: absolute;
  right: 34px;
  top: 12px;
  width: 4px;
  z-index: 2;
}

.sold-sign::after {
  background: #1a6a42;
  border-radius: 50% 50% 0 0;
  bottom: 0;
  content: "";
  height: 26px;
  position: absolute;
  right: -28px;
  width: 72px;
}

.sold-sign span {
  background: #fff;
  border: 4px solid #101516;
  color: #14757a;
  display: block;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 34px;
  letter-spacing: .04em;
  padding: 22px 16px;
  position: absolute;
  right: -8px;
  text-align: center;
  text-transform: uppercase;
  top: 42px;
  transform: rotate(-1.5deg);
  width: 140px;
}

.start-copy h2 {
  color: #050505;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(42px, 6vw, 94px);
  letter-spacing: .08em;
  line-height: 1.05;
  margin: 0 0 24px;
  text-align: center;
  text-transform: uppercase;
}

.mini-address-bar {
  align-items: center;
  background: #fff;
  border: 8px solid var(--orange);
  border-radius: 999px;
  color: var(--sea);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  margin: 0 auto;
  max-width: 770px;
  padding: 7px;
  text-decoration: none;
}

.mini-address-bar span {
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 950;
  padding-left: 72px;
  position: relative;
}

.mini-address-bar span::before {
  background: var(--orange);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 0 0 4px rgba(244,122,33,.15);
  content: "";
  height: 25px;
  left: 28px;
  position: absolute;
  top: 50%;
  transform: translateY(-58%) rotate(-45deg);
  width: 25px;
}

.mini-address-bar span::after {
  background: #fff;
  border-radius: 999px;
  content: "";
  height: 9px;
  left: 36px;
  position: absolute;
  top: calc(50% - 13px);
  width: 9px;
}

.mini-address-bar strong {
  background: var(--orange);
  border-radius: 999px;
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 38px;
  letter-spacing: .08em;
  min-height: 64px;
  padding: 10px 20px;
  text-align: center;
  text-shadow: 0 2px 0 rgba(0,0,0,.12);
}

.loop-arrow {
  border-bottom: 7px solid #050505;
  border-left: 7px solid #050505;
  border-radius: 0 0 0 80px;
  align-self: end;
  height: 72px;
  justify-self: start;
  margin: 0 0 56px -64px;
  position: relative;
  transform: rotate(8deg);
  width: 108px;
}

.loop-arrow::after {
  border-bottom: 14px solid transparent;
  border-right: 20px solid #050505;
  border-top: 14px solid transparent;
  bottom: -12px;
  content: "";
  left: -16px;
  position: absolute;
  transform: rotate(-22deg);
}

@media (max-width: 980px) {
  .process-board {
    grid-template-columns: 1fr;
    padding: 28px 20px;
  }

  .phone-card,
  .draw-arrow,
  .choice-tag,
  .sold-post {
    justify-self: center;
  }

  .draw-arrow {
    height: 38px;
    transform: rotate(44deg);
    width: 70px;
  }

  .choice-stack {
    grid-template-columns: 1fr;
  }

  .start-strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sold-sign,
  .loop-arrow {
    display: none;
  }
}

@media (max-width: 1280px) and (min-width: 561px) {
  .home-page .hand-note {
    display: inline-grid;
  }

  .home-page .offer-form[data-current-step="1"] {
    position: relative;
  }

  .home-page .offer-form[data-current-step="1"]::before {
    display: none;
  }

  .home-page .offer-form[data-current-step="1"]::after {
    display: none;
  }

  .home-page .hand-note::after {
    font-size: 46px;
    height: 86px;
    right: -250px;
    top: 164px;
    width: 86px;
  }
}

@media (max-width: 560px) {
  .home-page .process-section {
    padding: 30px 0;
  }

  .process-title h2 {
    font-size: clamp(38px, 12vw, 58px);
    letter-spacing: .04em;
  }

  .process-board {
    border-width: 4px;
    gap: 10px;
    min-height: auto;
    padding: 18px 14px;
  }

  .sketch-card,
  .choice-card {
    font-size: 22px;
    min-height: auto;
    padding: 14px 12px;
  }

  .process-board .phone-card,
  .process-board .draw-arrow,
  .process-board .choice-tag,
  .process-board .sold-post {
    display: none;
  }

  .choice-stack {
    gap: 8px;
  }

  .choice-card {
    width: 100%;
  }

  .choice-card span {
    font-size: 12px;
    margin-top: 5px;
  }

  .choice-stack em {
    font-size: 24px;
  }

  .start-copy h2 {
    font-size: clamp(35px, 11vw, 52px);
  }

  .mini-address-bar {
    border-width: 6px;
    grid-template-columns: minmax(0, 1fr) 96px;
    max-width: 100%;
  }

  .mini-address-bar span {
    font-size: 14px;
    padding-left: 52px;
    text-align: left;
  }

  .mini-address-bar strong {
    font-size: 24px;
    min-height: 54px;
    padding: 10px 8px;
  }
}

/* Bottom FAQ and confidence section with county links. */
.seller-accordion {
  background: #fff;
  padding: 58px 0 88px;
}

.accordion-list {
  border: 1px solid #d5d9dc;
  margin: 0 auto;
  max-width: 1120px;
}

.accordion-list details {
  background: #fff;
  border-bottom: 1px solid #d5d9dc;
}

.accordion-list details:last-child {
  border-bottom: 0;
}

.accordion-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  gap: 26px;
  grid-template-columns: 42px minmax(0, 1fr);
  list-style: none;
  min-height: 66px;
  padding: 0 24px 0 12px;
}

.accordion-list summary::-webkit-details-marker {
  display: none;
}

.accordion-list summary::before {
  color: var(--orange);
  content: "+";
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
}

.accordion-list details[open] summary::before {
  content: "-";
}

.accordion-list summary span {
  color: #171717;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 950;
}

.accordion-list p {
  border-top: 1px solid #eef0f1;
  color: #4f5b5b;
  font-size: 17px;
  font-weight: 700;
  margin: 0;
  padding: 0 34px 22px 80px;
}

.accordion-list a {
  color: var(--sea);
  font-weight: 950;
}

.confidence-panel {
  background:
    linear-gradient(135deg, #fff8f1 0%, #fff 42%, #eef8f4 100%);
  border-top: 1px solid #e3e7e6;
  padding: 42px 0 48px;
}

.confidence-inner {
  align-items: center;
  display: grid;
  gap: 18px 24px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  max-width: 1180px;
}

.confidence-panel h2 {
  color: #172421;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0 0 10px;
}

.confidence-kicker {
  color: var(--orange);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.confidence-panel p {
  color: #596464;
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 800;
  line-height: 1.38;
  margin: 0;
  max-width: 520px;
}

.confidence-stats {
  display: grid;
  gap: 10px;
  grid-column: 1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.confidence-stats span {
  background: #fff;
  border: 1px solid #dfe7e4;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(20, 40, 35, .07);
  padding: 11px 12px;
}

.confidence-stats strong,
.confidence-stats small {
  display: block;
}

.confidence-stats strong {
  color: #0f5f69;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.05;
}

.confidence-stats small {
  color: #66736f;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.2;
  margin-top: 3px;
}

.confidence-next-steps {
  display: grid;
  gap: 10px;
  grid-column: 2;
  grid-row: 1 / span 3;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.confidence-next-steps article {
  background: rgba(255,255,255,.94);
  border: 1px solid #d8e1de;
  border-top: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(20, 40, 35, .08);
  display: grid;
  gap: 7px;
  min-height: 150px;
  padding: 15px;
}

.confidence-next-steps article:nth-child(2) {
  border-top-color: var(--gold);
}

.confidence-next-steps article:nth-child(3) {
  border-top-color: var(--sea);
}

.confidence-next-steps span {
  align-items: center;
  background: #0f5f69;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 950;
  height: 26px;
  justify-content: center;
  letter-spacing: .08em;
  width: 38px;
}

.confidence-next-steps strong {
  color: #172421;
  display: block;
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 950;
  line-height: 1.05;
}

.confidence-next-steps p {
  color: #5c6865;
  font-size: 13px;
  font-weight: 780;
  line-height: 1.35;
  max-width: none;
}

.county-link-row {
  display: grid;
  gap: 14px;
  grid-column: 2;
  grid-row: 1 / span 3;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.county-link-row a {
  background: rgba(255,255,255,.92);
  border: 2px solid #d8e1de;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 40, 35, .08);
  color: #171717;
  display: grid;
  gap: 10px;
  min-height: 184px;
  padding: 24px;
  position: relative;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.county-link-row a::before {
  align-items: center;
  background: #0f5f69;
  border-radius: 999px;
  color: #fff;
  content: "View";
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  height: 28px;
  justify-content: center;
  justify-self: start;
  padding: 0 12px;
  text-transform: uppercase;
}

.county-link-row span {
  color: #142521;
  display: block;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 950;
  line-height: 1;
}

.county-link-row small {
  color: #5c6865;
  display: block;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.county-link-row a:hover {
  border-color: var(--orange);
  box-shadow: 0 22px 48px rgba(244,122,33,.18);
  transform: translateY(-3px);
}

.county-link-row a:hover span {
  color: var(--orange);
}

.confidence-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  grid-column: 1;
  margin-top: 0;
}

.confidence-actions .button {
  min-height: 48px;
  padding: 12px 20px;
}

.county-page .site-header {
  position: sticky;
}

.county-hero {
  background:
    linear-gradient(135deg, rgba(17,26,24,.94), rgba(13,95,115,.8) 58%, rgba(244,122,33,.32)),
    url("../img/hero-california-photo.webp") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: clamp(76px, 8vw, 118px) 0;
  position: relative;
}

.county-hero::after {
  background: rgba(255,255,255,.11);
  content: "";
  height: 220px;
  position: absolute;
  right: -80px;
  top: -70px;
  transform: rotate(18deg);
  width: 320px;
}

.county-hero .container {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 360px;
  position: relative;
  z-index: 1;
}

.county-hero .eyebrow,
.county-hero h1,
.county-hero p,
.county-hero > .container > .button {
  grid-column: 1;
}

.county-hero h1 {
  font-size: clamp(46px, 7vw, 92px);
  letter-spacing: 0;
  line-height: .92;
  margin: 0 0 18px;
  max-width: 900px;
}

.county-hero p {
  color: rgba(255,255,255,.88);
  font-size: 21px;
  font-weight: 750;
  max-width: 760px;
}

.county-hero .button {
  justify-self: start;
}

.county-hero-card {
  align-self: end;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 8px;
  box-shadow: 0 28px 60px rgba(0,0,0,.24);
  color: #142521;
  display: grid;
  gap: 12px;
  grid-column: 2;
  grid-row: 1 / span 4;
  padding: 22px;
}

.county-hero-card span {
  align-items: center;
  background: #f8fbf8;
  border: 1px solid #dfe8e4;
  border-radius: 8px;
  display: grid;
  gap: 3px;
  min-height: 78px;
  padding: 14px 16px;
}

.county-hero-card strong,
.county-hero-card small {
  display: block;
}

.county-hero-card strong {
  color: #0f5f69;
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.county-hero-card small {
  color: #5c6865;
  font-size: 13px;
  font-weight: 850;
}

.county-content {
  background:
    linear-gradient(180deg, #f8fbf8 0%, #fff 44%);
  padding: 72px 0 82px;
}

.county-layout {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(0, 1fr) 350px;
}

.county-copy {
  counter-reset: county-section;
  display: grid;
  gap: 20px;
}

.county-copy article,
.county-sidebar {
  background: #fff;
  border: 1px solid rgba(15,95,105,.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(19,35,30,.08);
  padding: clamp(22px, 3vw, 34px);
}

.county-copy article {
  counter-increment: county-section;
  display: grid;
  gap: 14px 20px;
  grid-template-columns: auto 1fr;
}

.county-copy article::before {
  align-items: center;
  background: #0f5f69;
  border-radius: 8px;
  color: #fff;
  content: counter(county-section, decimal-leading-zero);
  display: inline-flex;
  font-size: 14px;
  font-weight: 950;
  height: 44px;
  justify-content: center;
  width: 54px;
}

.county-copy h2,
.county-sidebar h2 {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.05;
  margin: 0 0 12px;
}

.county-copy h2 {
  margin-top: 2px;
}

.county-copy article > *:not(:first-child) {
  grid-column: 2;
}

.county-copy p,
.county-copy li,
.county-sidebar p,
.county-sidebar li {
  color: var(--muted);
  font-weight: 750;
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.city-list li {
  background: #f2faf6;
  border: 1px solid #d8e7df;
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
  padding: 9px 12px;
}

.county-sidebar {
  align-self: start;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,248,230,.96));
  border-top: 6px solid var(--orange);
  position: sticky;
  top: 104px;
}

.county-sidebar .button {
  margin-top: 14px;
  width: 100%;
}

@media (max-width: 820px) {
  .simple-page,
  .legal-main {
    background-attachment: scroll;
  }

  .simple-main,
  .legal-main {
    padding: 42px 0 56px;
  }

  .simple-card,
  .legal-card {
    padding: 28px 20px 30px;
    width: min(100% - 22px, 900px);
  }

  .simple-card::after {
    height: 58px;
    opacity: .09;
    width: 58px;
  }

  .simple-card h1,
  .legal-card h1 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .simple-card p,
  .simple-card li,
  .legal-card p,
  .legal-card li {
    font-size: 17px;
  }

  .simple-actions {
    display: grid;
  }

  .simple-actions .button {
    justify-content: center;
    width: 100%;
  }

  .accordion-list summary {
    gap: 14px;
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 58px;
    padding-right: 12px;
  }

  .accordion-list summary::before {
    font-size: 30px;
  }

  .accordion-list p {
    font-size: 15px;
    padding: 0 18px 18px 58px;
  }

  .confidence-panel {
    padding: 30px 0 38px;
  }

  .confidence-inner {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .confidence-panel h2 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.02;
  }

  .confidence-panel p {
    font-size: 15px;
  }

  .confidence-stats,
  .confidence-next-steps,
  .county-link-row,
  .confidence-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .confidence-stats {
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .confidence-stats span {
    padding: 10px 8px;
  }

  .confidence-stats strong {
    font-size: 14px;
  }

  .confidence-stats small {
    font-size: 10px;
  }

  .confidence-next-steps {
    gap: 8px;
    grid-template-columns: 1fr;
  }

  .confidence-next-steps article {
    align-items: start;
    gap: 6px 10px;
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 0;
    padding: 12px;
  }

  .confidence-next-steps article span {
    grid-row: 1 / span 2;
  }

  .confidence-next-steps strong {
    font-size: 17px;
  }

  .confidence-next-steps p {
    font-size: 13px;
  }

  .county-link-row {
    gap: 12px;
    grid-template-columns: 1fr;
  }

  .county-link-row a {
    min-height: 0;
    padding: 18px;
  }

  .county-link-row span {
    font-size: 26px;
  }

  .county-link-row small {
    font-size: 14px;
  }

  .confidence-actions {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .confidence-actions .button {
    justify-content: center;
    min-height: 46px;
    padding: 10px 12px;
    width: 100%;
  }

  .county-layout {
    grid-template-columns: 1fr;
  }

  .county-sidebar {
    position: static;
  }

  .county-hero {
    background-image:
      linear-gradient(135deg, rgba(17,26,24,.94), rgba(13,95,115,.8) 58%, rgba(244,122,33,.28)),
      url("../img/hero-california-photo-mobile.webp");
    padding: 54px 0 58px;
  }

  .county-hero .container {
    grid-template-columns: 1fr;
  }

  .county-hero .eyebrow,
  .county-hero h1,
  .county-hero p,
  .county-hero > .container > .button,
  .county-hero-card {
    grid-column: auto;
    grid-row: auto;
  }

  .county-hero h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .county-hero p {
    font-size: 18px;
  }

  .county-hero-card {
    gap: 10px;
    padding: 16px;
  }

  .county-hero-card span {
    min-height: 0;
  }

  .county-content {
    padding: 42px 0 52px;
  }

  .county-copy article {
    grid-template-columns: 1fr;
  }

  .county-copy article > *:not(:first-child) {
    grid-column: auto;
  }

  .county-copy article::before {
    height: 38px;
    width: 48px;
  }
}

/* Multi-column dark footer direction for Cali Home Cash Offer. */
.site-footer {
  background: #283746;
  color: #c7d0dc;
  padding: 62px 0 44px;
}

.footer-map {
  display: grid;
  gap: 46px 64px;
  grid-template-columns: 1fr 1fr 1fr 1.28fr 1fr;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 950;
  letter-spacing: .02em;
  margin: 0 0 10px;
  padding-bottom: 16px;
  position: relative;
  text-transform: uppercase;
}

.footer-col h3::after {
  background: #dce3ec;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 64px;
}

.footer-col a {
  color: #c7d0dc;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.footer-col a:hover,
.footer-location-bar a:hover {
  color: #fff;
}

.footer-contact-row {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 88px;
}

.footer-phone {
  color: #dce3ec;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 950;
  letter-spacing: .03em;
  text-decoration: none;
}

.footer-social {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}

.footer-instagram {
  align-items: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(5,13,26,.18);
  color: #f5f8fc;
  display: inline-flex;
  gap: 12px;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.footer-instagram:hover,
.footer-instagram:focus-visible {
  background: rgba(244,122,33,.14);
  border-color: rgba(244,122,33,.42);
  outline: none;
  transform: translateY(-1px);
}

.footer-instagram svg {
  display: block;
  flex: none;
  height: 22px;
  width: 22px;
}

.footer-instagram span {
  color: inherit;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .03em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-location-bar {
  align-items: center;
  background: #4b657f;
  border-radius: 6px;
  color: #dce3ec;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 10px;
  min-height: 66px;
  padding: 18px 24px;
}

.footer-location-bar span {
  color: #dce3ec;
  font-size: 18px;
  font-weight: 950;
  margin-right: 8px;
}

.footer-location-bar a {
  color: #c7d0dc;
  font-size: 16px;
  font-weight: 850;
  text-decoration: none;
}

.footer-legal {
  color: #f4f7fa;
  font-size: 17px;
  line-height: 1.55;
  margin-top: 44px;
}

.footer-legal p {
  margin: 0 0 22px;
}

.footer-legal p:last-child {
  color: #c7d0dc;
  margin-bottom: 0;
}

@media (max-width: 1060px) {
  .footer-map {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .site-footer {
    padding: 46px 0 36px;
  }

  .footer-map {
    gap: 34px 22px;
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-col a {
    font-size: 16px;
  }

  .footer-contact-row {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 52px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-instagram {
    padding: 11px 16px;
  }

  .footer-instagram span {
    font-size: 14px;
  }

  .footer-location-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    font-size: 15px;
  }
}

@media (max-width: 460px) {
  .footer-map {
    grid-template-columns: 1fr;
  }
}

/* Final Offer-style header and side menu. */
.site-header.offer-style-header {
  background: #fff;
  border-bottom: 1px solid #a9bac9;
  box-shadow: 0 3px 8px rgba(16, 26, 35, .22);
  display: block;
  position: sticky;
  top: 0;
  z-index: 120;
}

.offer-header-inner {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  column-gap: 22px;
  margin: 0 auto;
  min-height: 96px;
  position: relative;
  width: min(1420px, calc(100% - 48px));
}

.offer-header-left,
.offer-header-right,
.offer-main-nav {
  align-items: center;
  display: flex;
}

.offer-header-left {
  gap: 28px;
  justify-self: start;
  min-width: 0;
}

.offer-main-nav {
  gap: 28px;
  min-width: 0;
}

.offer-main-nav a,
.header-login,
.header-phone {
  color: #1b6e78;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone {
  color: #132c4f;
  letter-spacing: .01em;
  white-space: nowrap;
}

.header-phone-full {
  display: inline;
}

.header-phone-mobile {
  display: none;
}

.offer-header-logo {
  align-items: center;
  display: inline-flex;
  line-height: 0;
  position: static;
  text-decoration: none;
}

.offer-header-logo img {
  display: block;
  height: auto;
  max-width: min(290px, 23vw);
  width: 290px;
}

.hamburger-button {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: grid;
  gap: 7px;
  padding: 12px;
}

.hamburger-button span {
  background: #1b6e78;
  border-radius: 3px;
  display: block;
  height: 6px;
  width: 42px;
}

.hamburger-button b {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.offer-header-right {
  flex-wrap: nowrap;
  gap: 20px;
  justify-self: end;
  min-width: 0;
}

.header-phone:hover,
.header-login:hover {
  color: #f47721;
}

.header-offer-button {
  background: #f47721;
  border: 6px solid #1b6e78;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 22px;
  font-weight: 950;
  justify-content: center;
  letter-spacing: .02em;
  min-width: 220px;
  padding: 12px 24px;
  text-decoration: none;
  text-transform: uppercase;
}

.home-page .top-ribbon {
  background: #f49a5b;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: .04em;
  min-height: 44px;
  text-transform: uppercase;
}

.home-page .hero,
.home-page .hero-grid {
  min-height: calc(100vh - 148px);
}

.side-menu-backdrop {
  background: rgba(16, 26, 35, .58);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity .22s ease;
  z-index: 130;
}

.side-menu-panel {
  background: #fff;
  box-shadow: 18px 0 36px rgba(12, 22, 30, .2);
  color: #273443;
  height: 100vh;
  left: 0;
  max-width: min(690px, calc(100vw - 54px));
  overflow-y: auto;
  position: fixed;
  top: 0;
  transform: translateX(-104%);
  transition: transform .25s ease;
  width: 690px;
  z-index: 140;
}

.side-menu-panel.open {
  transform: translateX(0);
}

body.side-menu-is-open {
  overflow: hidden;
}

body.side-menu-is-open .side-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.side-menu-head {
  align-items: center;
  border-bottom: 1px solid #b8c8da;
  display: flex;
  justify-content: space-between;
  min-height: 104px;
  padding: 0 34px 0 42px;
}

.side-logo {
  align-items: center;
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.side-logo img {
  display: block;
  height: auto;
  max-width: min(300px, 68vw);
  width: 300px;
}

.side-menu-close {
  background: transparent;
  border: 0;
  color: #f47721;
  cursor: pointer;
  font-size: 70px;
  font-weight: 500;
  line-height: 1;
}

.side-menu-nav details,
.side-menu-nav .side-row {
  border-bottom: 1px solid #b8c8da;
}

.side-menu-nav summary,
.side-menu-nav .side-row {
  color: #273443;
  cursor: pointer;
  display: flex;
  font-size: 42px;
  font-weight: 350;
  justify-content: space-between;
  line-height: 1;
  list-style: none;
  padding: 34px 38px;
  text-decoration: none;
}

.side-menu-nav summary::-webkit-details-marker {
  display: none;
}

.side-menu-nav summary::after {
  border-color: #f47721;
  border-style: solid;
  border-width: 0 3px 3px 0;
  content: "";
  height: 24px;
  margin-top: 6px;
  transform: rotate(-135deg);
  width: 24px;
}

.side-menu-nav details:not([open]) summary::after {
  margin-top: -6px;
  transform: rotate(45deg);
}

.side-menu-nav details a {
  color: #1b6e78;
  display: block;
  font-size: 34px;
  font-weight: 950;
  padding: 0 38px 30px 62px;
  text-decoration: none;
}

.side-menu-nav details a:last-child {
  padding-bottom: 40px;
}

.side-menu-nav a:hover,
.offer-main-nav a:hover,
.header-login:hover {
  color: #f47721;
}

.simple-page {
  background:
    linear-gradient(135deg, rgba(255,248,230,.95), rgba(255,255,255,.97) 44%, rgba(234,243,239,.96)),
    url("../img/hero-california-photo.webp") center/cover fixed;
}

.simple-main {
  padding: clamp(56px, 8vw, 104px) 0;
  position: relative;
}

.simple-main::before {
  background:
    linear-gradient(135deg, rgba(15,95,105,.08), transparent 44%),
    linear-gradient(90deg, rgba(244,122,33,.12), transparent 34%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.simple-card {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(15,95,105,.14);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(18, 63, 52, .16);
  margin: 0 auto;
  max-width: 1060px;
  overflow: hidden;
  padding: clamp(30px, 5vw, 64px);
  position: relative;
}

.simple-card::before {
  background: linear-gradient(90deg, var(--orange), #0f5f69);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.simple-card::after {
  background: url("../img/calihomecashoffer-icon.svg") center / contain no-repeat;
  content: "";
  height: 86px;
  opacity: .12;
  position: absolute;
  right: clamp(22px, 4vw, 44px);
  top: clamp(22px, 4vw, 42px);
  width: 86px;
}

.simple-card .eyebrow {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .08em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.simple-card h1 {
  color: #132238;
  font-size: clamp(42px, 7vw, 74px);
  letter-spacing: 0;
  line-height: .96;
  margin: 0 0 20px;
  max-width: 940px;
  position: relative;
  z-index: 1;
}

.simple-card h2 {
  color: #132238;
  margin-top: 34px;
}

.simple-card p,
.simple-card li {
  color: #5f6f82;
  font-size: clamp(18px, 2.1vw, 22px);
  font-weight: 780;
  line-height: 1.55;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.simple-card a:not(.button) {
  color: #1b6e78;
  font-weight: 950;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.contact-card {
  background:
    radial-gradient(circle at 12% 10%, rgba(244,122,33,.14), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(255,250,244,.98) 48%, rgba(238,249,244,.97) 100%);
  border-color: rgba(15,95,105,.18);
  max-width: 1240px;
  padding: clamp(28px, 4.5vw, 56px);
}

.contact-card::after {
  opacity: .08;
}

.contact-card-grid {
  align-items: center;
  display: grid;
  gap: clamp(26px, 4vw, 56px);
  grid-template-columns: minmax(0, .95fr) minmax(390px, .68fr);
  position: relative;
  z-index: 1;
}

.contact-copy {
  align-content: center;
  display: grid;
  padding-top: 0;
}

.contact-copy h1 {
  font-size: clamp(40px, 4.8vw, 64px);
  max-width: 720px;
}

.contact-copy > p {
  font-size: clamp(17px, 1.8vw, 20px);
  margin: 0 0 22px;
  max-width: 700px;
}

.contact-trust-points {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 10px 0 18px;
}

.contact-trust-points span {
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,95,105,.14);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 63, 52, .08);
  display: grid;
  min-height: 94px;
  padding: 14px;
}

.contact-trust-points strong {
  color: var(--sea);
  display: block;
  font-size: 20px;
  line-height: 1.05;
}

.contact-trust-points small {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
  margin-top: 8px;
}

.contact-phone-panel {
  align-items: center;
  background: #123f34;
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(18, 63, 52, .18);
  color: #fff;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin: 8px 0 14px;
  padding: 16px 18px;
}

.contact-phone-panel span {
  color: #d7efe8;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-phone-panel a {
  color: #fff !important;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1;
  text-decoration: none;
}

.contact-service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.contact-service-strip a {
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(15,95,105,.16);
  border-radius: 999px;
  color: var(--green-dark) !important;
  font-size: 13px;
  font-weight: 950;
  padding: 9px 12px;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.contact-service-strip a:hover {
  background: #123f34;
  border-color: #123f34;
  color: #fff !important;
}

.contact-lead-form {
  background: linear-gradient(180deg, #ffffff, #fff9f2);
  border: 1px solid rgba(15,95,105,.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(18, 63, 52, .18);
  display: grid;
  gap: 15px;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  position: relative;
}

.contact-lead-form::before {
  background: linear-gradient(90deg, var(--orange), var(--sea));
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.contact-lead-form .form-head {
  background: rgba(234,247,240,.72);
  border: 1px solid rgba(15,95,105,.12);
  border-radius: 8px;
  margin-top: 8px;
  padding: 18px;
}

.contact-lead-form .form-head h2 {
  color: #132238;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.05;
  margin: 0;
}

.contact-lead-form .form-head p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  margin: 8px 0 0;
}

.contact-lead-form input,
.contact-lead-form textarea {
  background: rgba(255,255,255,.9);
  border-color: rgba(15,95,105,.22);
}

.contact-lead-form label {
  margin: 0;
}

.contact-lead-form .button-primary {
  margin-top: 2px;
}

.contact-lead-form .form-status {
  margin: 0;
}

@media (max-width: 900px) {
  .contact-card-grid {
    grid-template-columns: 1fr;
  }

  .contact-copy h1 {
    font-size: clamp(34px, 8.8vw, 48px);
  }

  .contact-card {
    padding: 28px 20px 30px;
  }
}

@media (max-width: 640px) {
  .contact-trust-points {
    grid-template-columns: 1fr;
  }

  .contact-trust-points span {
    min-height: 0;
  }

  .contact-phone-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-service-strip a {
    flex: 1 1 calc(50% - 8px);
    text-align: center;
  }

  .contact-lead-form {
    padding: 20px 16px 18px;
  }
}

@media (max-width: 1280px) {
  .offer-main-nav a:nth-child(2),
  .offer-main-nav a:nth-child(3) {
    display: none;
  }

  .offer-header-inner {
    column-gap: 18px;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    min-height: 88px;
    width: min(1320px, calc(100% - 36px));
  }

  .offer-header-left {
    gap: 18px;
  }

  .offer-main-nav a,
  .header-login,
  .header-phone {
    font-size: 20px;
  }

  .offer-header-right {
    gap: 14px;
  }

  .header-offer-button {
    border-width: 5px;
    font-size: 18px;
    min-width: 180px;
    padding: 11px 18px;
  }

  .offer-header-logo img {
    max-width: 238px;
    width: 238px;
  }
}

@media (max-width: 900px) {
  .offer-header-inner {
    column-gap: 18px;
    min-height: 78px;
  }

  .offer-header-left {
    gap: 18px;
  }

  .offer-main-nav {
    gap: 20px;
  }

  .offer-main-nav a,
  .header-login,
  .header-phone {
    font-size: 20px;
  }

  .offer-header-right {
    gap: 16px;
  }

  .header-offer-button {
    border-width: 4px;
    font-size: 18px;
    min-width: 160px;
    padding: 11px 17px;
  }

  .offer-header-logo img {
    max-width: 250px;
    width: 250px;
  }

  .hamburger-button span {
    height: 5px;
    width: 34px;
  }

  .side-menu-head {
    min-height: 84px;
    padding: 0 26px;
  }

  .side-menu-close {
    font-size: 60px;
  }

  .side-menu-nav summary,
  .side-menu-nav .side-row {
    font-size: 34px;
    padding: 30px 32px;
  }

  .side-menu-nav details a {
    font-size: 28px;
    padding-left: 48px;
  }
}

@media (max-width: 560px) {
  .offer-header-inner {
    column-gap: 10px;
    grid-template-columns: auto auto auto;
    justify-content: space-between;
    min-height: 66px;
    width: min(100% - 22px, 520px);
  }

  .offer-main-nav a:nth-child(2),
  .offer-main-nav a:nth-child(3) {
    display: none;
  }

  .offer-header-left {
    gap: 14px;
    grid-column: 1;
    grid-row: 1;
  }

  .offer-main-nav {
    display: none;
  }

  .header-login {
    display: none;
  }

  .header-phone {
    align-items: center;
    background: #fff;
    border: 3px solid #1b6e78;
    border-radius: 999px;
    color: #1b6e78;
    display: inline-flex;
    font-size: 0;
    font-weight: 950;
    justify-content: center;
    min-width: 64px;
    padding: 9px 12px;
  }

  .header-phone::after {
    content: "Call";
    font-size: 14px;
    letter-spacing: .01em;
    line-height: 1;
    text-transform: uppercase;
  }

  .header-offer-button {
    border-width: 4px;
    font-size: 15px;
    min-width: 152px;
    padding: 10px 13px;
    white-space: nowrap;
  }

  .offer-header-logo img {
    content: url("../img/calihomecashoffer-icon.svg");
    max-width: 50px;
    width: 50px;
  }

  .offer-header-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    margin-left: 0;
  }

  .offer-header-right {
    align-items: center;
    gap: 8px;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .home-page .top-ribbon {
    font-size: 11px;
    min-height: 36px;
    padding: 0 12px;
  }

  .side-menu-panel {
    max-width: calc(100vw - 24px);
    width: calc(100vw - 24px);
  }

  .side-menu-head {
    min-height: 78px;
    padding: 0 20px;
  }

  .side-logo img {
    max-width: 240px;
    width: 240px;
  }

  .side-menu-close {
    font-size: 52px;
  }

  .side-menu-nav summary,
  .side-menu-nav .side-row {
    font-size: 30px;
    padding: 26px 24px;
  }

  .side-menu-nav summary::after {
    height: 18px;
    width: 18px;
  }

  .side-menu-nav details a {
    font-size: 24px;
    padding: 0 24px 24px 40px;
  }
}

/* Southern California county and city page layout. */
.home-page .hero-copy h1 {
  font-size: clamp(50px, 7.4vw, 118px);
  line-height: .88;
  max-width: 1120px;
  white-space: normal;
}

.hero-county-priority {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 18px auto 0;
  max-width: 960px;
}

.hero-county-priority a {
  background: rgba(255,255,255,.88);
  border: 2px solid rgba(244,122,33,.64);
  border-radius: 999px;
  color: #153b40;
  font-size: 13px;
  font-weight: 950;
  padding: 9px 13px;
  text-decoration: none;
  text-transform: uppercase;
}

.breadcrumb {
  align-items: center;
  color: rgba(255,255,255,.82);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 850;
  gap: 9px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.simple-card .breadcrumb {
  color: var(--muted);
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.local-hub-card {
  max-width: 1180px;
}

.market-hierarchy-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 30px;
}

.market-hierarchy-strip span {
  background: #fff8e6;
  border: 1px solid #f3d489;
  border-radius: 999px;
  color: #765016;
  font-size: 13px;
  font-weight: 950;
  padding: 9px 12px;
}

.location-pathway-panel {
  background: linear-gradient(135deg, #fff 0%, #f8fbf8 62%, #fff8e6 100%);
  border: 1px solid rgba(244,122,33,.22);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  margin: 0 0 18px;
  padding: clamp(18px, 3vw, 30px);
}

.location-pathway-copy h2 {
  margin: 8px 0 10px;
}

.location-pathway-copy p {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.location-pathway-grid,
.location-guide-grid {
  display: grid;
  gap: 12px;
}

.location-pathway-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-guide-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.location-pathway-grid a,
.location-guide-grid a {
  background: #fff;
  border: 1px solid rgba(31,111,85,.16);
  border-radius: 8px;
  color: var(--green-dark);
  display: grid;
  gap: 7px;
  min-height: 116px;
  padding: 18px;
  text-decoration: none;
}

.local-county-block {
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  margin-top: 18px;
  padding: clamp(18px, 3vw, 28px);
  position: relative;
  z-index: 1;
}

.local-county-block > div > span {
  color: var(--orange);
  display: inline-block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.local-county-block h2 {
  margin: 0 0 10px;
}

.local-county-block p {
  font-size: 16px;
}

.linked-city-list {
  align-content: start;
}

.linked-city-list li {
  padding: 0;
}

.linked-city-list a {
  align-items: center;
  background: #f3f8f6;
  border: 1px solid rgba(31,111,85,.14);
  border-radius: 8px;
  color: var(--green-dark);
  display: flex;
  font-size: 14px;
  font-weight: 950;
  min-height: 42px;
  padding: 10px 12px;
  text-decoration: none;
}

.linked-city-list a:hover {
  background: #fff8e6;
  border-color: #f3d489;
  color: #765016;
}

.county-city-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.city-hero {
  background:
    linear-gradient(135deg, rgba(15,45,41,.92), rgba(15,95,105,.82)),
    url("../img/hero-california-photo.webp") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: clamp(58px, 8vw, 104px) 0;
  position: relative;
}

.city-hero::after {
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--green));
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
}

.city-hero h1 {
  color: #fff;
  font-size: clamp(46px, 7vw, 86px);
  line-height: .94;
  margin-bottom: 16px;
  max-width: 940px;
}

.city-hero p {
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 800;
  max-width: 850px;
}

.city-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.city-content {
  background: #f4f8f5;
  padding: clamp(44px, 6vw, 82px) 0;
}

.city-layout {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 330px;
}

.city-main-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(18,63,52,.1);
  padding: clamp(24px, 4vw, 46px);
}

.city-main-copy h2 {
  color: var(--green-dark);
  font-size: clamp(25px, 3.4vw, 38px);
  line-height: 1.05;
  margin: 32px 0 12px;
}

.city-main-copy h2:first-child {
  margin-top: 0;
}

.city-main-copy p,
.city-main-copy li {
  color: var(--muted);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.68;
}

.city-process-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.local-topic-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 18px 0 28px;
}

.local-topic-grid span {
  background: #f3f8f6;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 950;
  padding: 11px;
}

.city-main-copy details {
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 10px;
  padding: 14px 16px;
}

.city-main-copy summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.city-sidebar {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 96px;
}

.city-sidebar-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(18,63,52,.1);
  padding: 20px;
}

.city-sidebar-card h2 {
  color: var(--green-dark);
  font-size: 21px;
  margin-bottom: 8px;
}

.city-sidebar-card p,
.city-sidebar-card a:not(.button) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.nearby-links {
  display: grid;
  gap: 8px;
}

.nearby-links a {
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green-dark);
  padding: 9px 10px;
  text-decoration: none;
}

.local-city-links {
  background: #fff;
}

@media (max-width: 920px) {
  .home-page .hero-copy h1 {
    font-size: clamp(42px, 11vw, 86px);
  }

  .city-layout,
  .local-county-block {
    grid-template-columns: 1fr;
  }

  .city-sidebar {
    position: static;
  }

  .local-topic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-page .hero-copy h1 {
    font-size: clamp(36px, 11vw, 58px);
    line-height: .94;
  }

  .hero-county-priority {
    gap: 7px;
    margin-top: 14px;
  }

  .hero-county-priority a {
    font-size: 11px;
    padding: 7px 9px;
  }

  .city-hero {
    padding: 42px 0 54px;
  }

  .city-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .city-hero-actions {
    display: grid;
  }

  .local-topic-grid {
    grid-template-columns: 1fr;
  }
}

/* Final mobile header + first-screen hero fit overrides. */
@media (max-width: 560px) {
  .header-phone-full {
    display: none;
  }

  .header-phone-mobile {
    display: inline;
    font-size: 14px;
    font-weight: 950;
    letter-spacing: .01em;
    line-height: 1;
    text-transform: uppercase;
  }

  .header-phone {
    align-items: center;
    background: #fff;
    border: 3px solid #1b6e78;
    border-radius: 999px;
    color: #1b6e78;
    display: inline-flex;
    font-size: 14px;
    font-weight: 950;
    justify-content: center;
    min-width: 68px;
    padding: 9px 12px;
    white-space: nowrap;
  }

  .header-phone::after {
    content: none;
  }

  .offer-header-right {
    align-items: center;
    gap: 8px;
  }

  .header-offer-button {
    font-size: 14px;
    min-width: 146px;
    padding: 10px 12px;
  }

  .home-page .hero-grid {
    align-content: start;
    justify-content: flex-start;
    min-height: 560px;
    padding: 12px 0 8px;
  }

  .home-page .hero-copy {
    gap: 10px;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(34px, 10.2vw, 52px);
    line-height: .92;
    margin-bottom: 10px;
  }

  .home-page .hero-benefit-card {
    margin-top: 0;
    padding: 12px 14px;
    width: min(100%, 340px);
  }

  .home-page .hero-benefit-card li {
    font-size: 16px;
    gap: 8px;
    grid-template-columns: 22px 1fr;
  }

  .home-page .hero-benefit-card li::before {
    font-size: 22px;
  }

  .hero-county-priority {
    gap: 6px;
    margin: 8px 0 4px;
  }

  .hero-county-priority a {
    font-size: 10px;
    padding: 6px 8px;
  }

  .home-page .hand-note {
    display: inline-grid;
    margin: 14px auto 0;
    position: relative;
    transform: rotate(-7deg);
  }

  .home-page .offer-form[data-current-step="1"] {
    margin-top: 0;
    position: relative;
  }

  .home-page .offer-form[data-current-step="1"]::before {
    display: none;
  }

  .home-page .offer-form[data-current-step="1"]::after {
    display: none;
  }

  .home-page .offer-form[data-current-step="1"] .form-step.active {
    grid-template-columns: minmax(0, 1fr) 92px;
  }

  .home-page .offer-form[data-current-step="1"] input {
    min-height: 54px;
  }

  .home-page .offer-form[data-current-step="1"] .button-primary {
    font-size: 22px;
    min-height: 54px;
  }

  .loop-arrow {
    margin: -6px 18px 0 0;
  }

  .home-page .hand-note::after {
    font-size: 40px;
    height: 76px;
    right: -188px;
    top: 138px;
    width: 76px;
  }
}

@media (min-width: 561px) {
  .home-page .hand-note {
    display: grid;
  }

  .home-page .offer-form[data-current-step="1"] {
    position: relative;
  }

  .home-page .offer-form[data-current-step="1"]::before {
    display: none;
  }

  .home-page .offer-form[data-current-step="1"]::after {
    display: none;
  }
}

/* County page layout. */
.authority-hero .container {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
}

.authority-hero .breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.county-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1;
  margin-top: 2px;
}

.authority-content {
  background:
    linear-gradient(180deg, #f4f8f5 0%, #fff 48%, #eef6f4 100%);
}

.authority-layout {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.authority-copy article {
  scroll-margin-top: 118px;
}

.authority-copy .authority-intro {
  background:
    linear-gradient(135deg, #fff 0%, #f8fbf8 58%, #fff8e6 100%);
  border-color: rgba(244,122,33,.24);
}

.authority-copy p,
.authority-copy li {
  font-size: 16.5px;
  line-height: 1.72;
}

.authority-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 6px;
}

.authority-quick-links a {
  background: #fff;
  border: 1px solid rgba(15,95,105,.18);
  border-radius: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
  padding: 9px 11px;
  text-decoration: none;
}

.authority-quick-links a:hover {
  background: #fff8e6;
  border-color: #f3d489;
  color: #765016;
}

.authority-city-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.authority-topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 0;
}

.authority-situation-grid,
.authority-compare-grid,
.authority-process-grid {
  display: grid;
  gap: 14px;
}

.authority-situation-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.authority-situation-grid section,
.authority-compare-grid section,
.authority-process-grid section {
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.authority-situation-grid h3,
.authority-compare-grid h3,
.authority-process-grid h3,
.authority-side-section h3 {
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.15;
  margin: 0 0 8px;
}

.authority-situation-grid p,
.authority-process-grid p {
  margin-bottom: 0;
}

.authority-check-list {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.authority-check-list li {
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px 13px 46px;
  position: relative;
}

.authority-check-list li::before {
  align-items: center;
  background: var(--green-dark);
  border-radius: 999px;
  color: var(--gold);
  content: "✓";
  display: inline-flex;
  font-size: 16px;
  font-weight: 950;
  height: 26px;
  justify-content: center;
  left: 12px;
  position: absolute;
  top: 13px;
  width: 26px;
}

.authority-compare-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.authority-compare-grid ul {
  margin: 0;
  padding-left: 20px;
}

.authority-process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.authority-process-grid span {
  align-items: center;
  background: var(--orange);
  border-radius: 8px;
  color: #fff;
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  margin-bottom: 12px;
  width: 46px;
}

.authority-cta-band {
  background:
    linear-gradient(135deg, rgba(19,63,52,.96), rgba(13,95,115,.92)),
    url("../img/hero-california-photo.webp") center / cover no-repeat;
  border-color: rgba(255,255,255,.2);
  color: #fff;
}

.authority-cta-band::before {
  background: var(--orange);
  color: #fff;
}

.authority-cta-band h2,
.authority-cta-band p {
  color: #fff;
}

.authority-cta-band p {
  color: rgba(255,255,255,.86);
}

.authority-faq details {
  background: #f8fbf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 10px;
  padding: 15px 16px;
}

.authority-faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 950;
}

.authority-faq details p {
  margin: 10px 0 0;
}

.authority-sidebar {
  display: grid;
  gap: 18px;
}

.authority-side-section {
  border-top: 1px solid rgba(15,95,105,.16);
  padding-top: 16px;
}

.authority-side-links {
  display: grid;
  gap: 8px;
}

.authority-side-links a {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(31,111,85,.14);
  border-radius: 8px;
  color: var(--green-dark);
  display: flex;
  font-size: 14px;
  font-weight: 950;
  justify-content: space-between;
  min-height: 42px;
  padding: 10px 12px;
  text-decoration: none;
}

.authority-side-links a[aria-current="page"] {
  background: #0f5f69;
  border-color: #0f5f69;
  color: #fff;
}

.authority-side-links a:hover {
  background: #fff8e6;
  border-color: #f3d489;
  color: #765016;
}

@media (max-width: 1020px) {
  .authority-layout,
  .authority-hero .container {
    grid-template-columns: 1fr;
  }

  .authority-hero .breadcrumb,
  .county-hero-actions,
  .authority-hero .county-hero-card {
    grid-column: auto;
    grid-row: auto;
  }

  .authority-sidebar {
    position: static;
  }

  .authority-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .county-hero-actions,
  .authority-cta-band .simple-actions {
    display: grid;
  }

  .county-hero-actions .button,
  .authority-cta-band .button {
    width: 100%;
  }

  .authority-city-list,
  .authority-topic-grid,
  .authority-situation-grid,
  .authority-compare-grid,
  .authority-process-grid {
    grid-template-columns: 1fr;
  }

  .authority-copy p,
  .authority-copy li {
    font-size: 16px;
  }

  .authority-situation-grid section,
  .authority-compare-grid section,
  .authority-process-grid section {
    padding: 15px;
  }
}

/* Orange County seller guide layout. */
.oc-topic-hero {
  background:
    linear-gradient(135deg, rgba(17,26,24,.95), rgba(13,95,115,.82) 54%, rgba(244,122,33,.36)),
    url("../img/hero-california-photo.webp") center / cover no-repeat;
}

.oc-topic-copy .authority-intro {
  border-top: 6px solid var(--orange);
}

.oc-hub-guides {
  background:
    linear-gradient(135deg, #fff 0%, #fff8e6 58%, #f8fbf8 100%);
  border-color: rgba(244,122,33,.26);
}

.oc-guide-card-grid,
.oc-related-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oc-guide-card-grid a,
.oc-related-grid a {
  background: #fff;
  border: 1px solid rgba(31,111,85,.16);
  border-radius: 8px;
  color: var(--green-dark);
  display: grid;
  gap: 6px;
  min-height: 92px;
  padding: 16px;
  text-decoration: none;
}

.oc-guide-card-grid a:hover,
.oc-related-grid a:hover {
  background: #fff8e6;
  border-color: #f3d489;
  color: #765016;
}

.oc-guide-card-grid strong,
.oc-related-grid a {
  font-size: 16px;
  font-weight: 950;
  line-height: 1.15;
}

.oc-guide-card-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.45;
}

.oc-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.oc-related-grid a {
  align-items: center;
  min-height: 64px;
}

.oc-all-topic-links {
  max-height: 470px;
  overflow: auto;
  padding-right: 2px;
}

.oc-topic-sidebar {
  top: 96px;
}

.oc-topic-page .authority-process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.oc-topic-page .authority-city-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .oc-guide-card-grid,
  .oc-related-grid,
  .oc-topic-page .authority-process-grid,
  .oc-topic-page .authority-city-list {
    grid-template-columns: 1fr;
  }

  .oc-all-topic-links {
    max-height: none;
  }
}

/* Expanded city page layout. */
.enhanced-city-hero h1 {
  max-width: 1040px;
}

.enhanced-city-content .city-main-copy {
  border-top: 6px solid var(--orange);
}

.enhanced-topic-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.enhanced-process-list li {
  margin-bottom: 8px;
}

.enhanced-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 12px 0 26px;
}

.enhanced-related-grid a {
  min-height: 58px;
}

.county-market-city-list,
.enhanced-location-city-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.enhanced-location-block {
  align-items: start;
}

.enhanced-location-block .enhanced-location-city-list {
  margin-top: 0;
}

.enhanced-location-hub .market-hierarchy-strip span {
  white-space: normal;
}

@media (max-width: 980px) {
  .enhanced-topic-grid,
  .enhanced-related-grid,
  .county-market-city-list,
  .enhanced-location-city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .enhanced-topic-grid,
  .enhanced-related-grid,
  .county-market-city-list,
  .enhanced-location-city-list {
    grid-template-columns: 1fr;
  }
}

/* Homepage improvement layout. */
.homepage-section {
  padding: clamp(54px, 7vw, 92px) 0;
}

.homepage-section-head {
  margin: 0 auto 30px;
  max-width: 860px;
  text-align: center;
}

.homepage-section-head h2 {
  color: var(--ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  margin: 0 0 14px;
}

.homepage-section-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 780;
  line-height: 1.5;
  margin: 0;
}

.homepage-featured-counties,
.homepage-why,
.homepage-testimonial-themes,
.homepage-cities {
  background: #fff;
}

.homepage-how,
.homepage-recent {
  background: #f4f8f5;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.homepage-county-grid,
.homepage-step-grid,
.homepage-proof-grid,
.homepage-example-grid,
.homepage-theme-grid,
.homepage-city-columns {
  display: grid;
  gap: 16px;
}

.homepage-county-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homepage-county-grid a,
.homepage-step-grid article,
.homepage-example-grid article,
.homepage-theme-grid article,
.homepage-city-columns section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(19,35,30,.08);
  color: var(--ink);
  min-width: 0;
  padding: 22px;
  text-decoration: none;
}

.homepage-county-grid a {
  display: grid;
  gap: 10px;
  min-height: 230px;
}

.homepage-county-grid a:first-child {
  background:
    linear-gradient(135deg, rgba(255,248,230,.96), rgba(255,255,255,.98));
  border-color: rgba(244,122,33,.32);
}

.homepage-county-grid span,
.homepage-step-grid span,
.homepage-example-grid span {
  align-items: center;
  background: var(--green-dark);
  border-radius: 8px;
  color: var(--gold);
  display: inline-flex;
  font-size: 13px;
  font-weight: 950;
  height: 38px;
  justify-content: center;
  width: max-content;
  min-width: 46px;
  padding: 0 10px;
}

.homepage-county-grid strong {
  color: var(--green-dark);
  display: block;
  font-size: 26px;
  line-height: 1.05;
}

.homepage-county-grid small,
.homepage-step-grid p,
.homepage-example-grid p,
.homepage-theme-grid p,
.homepage-proof-grid p,
.homepage-city-columns a {
  color: var(--muted);
  font-weight: 760;
  line-height: 1.55;
}

.homepage-county-grid a:hover,
.homepage-example-grid article:hover,
.homepage-city-columns section:hover {
  border-color: #f3d489;
  box-shadow: 0 22px 46px rgba(19,35,30,.12);
}

.homepage-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homepage-step-grid h3,
.homepage-example-grid h3,
.homepage-theme-grid strong,
.homepage-city-columns h3,
.homepage-proof-grid h3 {
  color: var(--green-dark);
  font-size: 21px;
  line-height: 1.1;
  margin: 0 0 8px;
}

.homepage-step-grid p,
.homepage-example-grid p,
.homepage-theme-grid p,
.homepage-proof-grid p {
  margin: 0;
}

.homepage-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.homepage-proof-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(19,35,30,.08);
  overflow: hidden;
}

.homepage-proof-grid img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.homepage-proof-grid div {
  padding: 20px;
}

.homepage-example-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homepage-example-grid article {
  display: grid;
  gap: 10px;
}

.homepage-example-grid a {
  color: var(--green-dark);
  font-weight: 950;
  text-decoration: none;
}

.homepage-theme-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.homepage-theme-grid article {
  background: #f8fbf8;
}

.homepage-faq-head {
  margin-bottom: 18px;
}

.homepage-cities {
  background:
    linear-gradient(180deg, #fff 0%, #f5faf7 100%);
  border-top: 1px solid var(--line);
}

.homepage-city-columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.homepage-city-columns section {
  align-content: start;
  background:
    linear-gradient(180deg, #fff 0%, #f8fbf8 100%);
  border: 1px solid rgba(31,111,85,.18);
  border-top: 6px solid var(--green);
  box-shadow: 0 18px 42px rgba(19,35,30,.09);
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
}

.homepage-city-columns section:nth-child(1) {
  border-top-color: var(--orange);
}

.homepage-city-columns section:nth-child(2) {
  border-top-color: var(--gold);
}

.homepage-city-columns section:nth-child(3) {
  border-top-color: var(--green);
}

.homepage-city-columns section:nth-child(4) {
  border-top-color: var(--sea);
}

.homepage-city-columns section > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.homepage-city-columns section > p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.45;
  margin: 0 0 6px;
}

.homepage-city-columns a {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(31,111,85,.12);
  border-radius: 8px;
  color: var(--green-dark);
  display: flex;
  justify-content: space-between;
  min-height: 48px;
  padding: 10px 12px;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.homepage-city-columns a::after {
  color: var(--orange);
  content: ">";
  font-weight: 950;
  opacity: .7;
}

.homepage-city-columns a:hover {
  background: #fff8e6;
  border-color: #f3d489;
  color: #765016;
  transform: translateX(3px);
}

.homepage-center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.homepage-cities .button-secondary {
  background: #fff;
}

.homepage-cluster-map {
  background: linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
}

.county-cluster-grid,
.guide-path-grid {
  display: grid;
  gap: 16px;
}

.county-cluster-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.cluster-card,
.guide-path-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(18,63,52,.08);
}

.cluster-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.cluster-card > span,
.location-pathway-copy > span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cluster-card h3 {
  font-size: 28px;
  line-height: 1.02;
  margin: 0;
}

.cluster-card h3 a {
  text-decoration: none;
}

.cluster-card p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 760;
  margin: 0;
}

.cluster-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cluster-links a {
  background: #f3f8f6;
  border: 1px solid rgba(31,111,85,.14);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
  padding: 9px 11px;
  text-decoration: none;
}

.guide-path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 16px;
}

.guide-path-card {
  color: var(--green-dark);
  display: grid;
  gap: 8px;
  min-height: 120px;
  padding: 18px;
  text-decoration: none;
}

.guide-path-card strong,
.location-pathway-grid strong,
.location-guide-grid strong {
  font-size: 17px;
  line-height: 1.1;
}

.guide-path-card span,
.location-pathway-grid span,
.location-guide-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.5;
}

.cluster-links a:hover,
.guide-path-card:hover,
.location-pathway-grid a:hover,
.location-guide-grid a:hover {
  background: #fff8e6;
  border-color: #f3d489;
  color: #765016;
}

@media (max-width: 1040px) {
  .homepage-county-grid,
  .homepage-step-grid,
  .homepage-example-grid,
  .homepage-theme-grid,
  .homepage-city-columns,
  .guide-path-grid,
  .location-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .homepage-county-grid,
  .homepage-step-grid,
  .homepage-example-grid,
  .homepage-theme-grid,
  .homepage-city-columns,
  .county-cluster-grid,
  .guide-path-grid,
  .location-pathway-grid,
  .location-guide-grid {
    grid-template-columns: 1fr;
  }

  .homepage-section {
    padding: 44px 0;
  }

  .homepage-section-head {
    text-align: left;
  }

  .homepage-center-actions {
    display: grid;
  }
}

/* Final arrow controls: keep one visible hero arrow and one lower CTA arrow. */
.home-page .hand-note b,
.home-page .hand-note::after,
.home-page .offer-form[data-current-step="1"]::before,
.home-page .offer-form[data-current-step="1"]::after {
  content: none !important;
  display: none !important;
}

.home-page .hero-grid::after {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 96'%3E%3Cpath d='M28 30 L62 64 M62 64 H36 M62 64 V38' fill='none' stroke='%23ffffff' stroke-width='12' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 64% 64% no-repeat,
    linear-gradient(180deg, #86d7ff 0%, #4f8ee6 100%);
  border: 4px solid #2a6f86;
  border-radius: 22px;
  bottom: 190px;
  box-shadow: 0 14px 28px rgba(0,0,0,.28);
  content: "";
  display: block;
  height: 86px;
  left: min(calc(100% - 112px), calc(50% + 250px));
  pointer-events: none;
  position: absolute;
  transform: rotate(12deg);
  width: 86px;
  z-index: 8;
}

.start-copy {
  position: relative;
}

.loop-arrow {
  display: none;
}

.start-copy::before,
.start-copy::after {
  content: none;
  display: none;
}

.mini-address-bar {
  position: relative;
}

.mini-address-bar::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='112' viewBox='0 0 190 112'%3E%3Cpath d='M180 17C162 60 112 78 57 55' fill='none' stroke='%23050505' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M57 55L88 42L78 77Z' fill='%23050505'/%3E%3C/svg%3E") center / contain no-repeat;
  bottom: -4px;
  content: "";
  height: 112px;
  pointer-events: none;
  position: absolute;
  right: -128px;
  transform: rotate(0deg);
  width: 190px;
  z-index: 1;
}

.mini-address-bar::before {
  content: none;
  display: none;
}

@media (max-width: 1280px) and (min-width: 921px) {
  .home-page .hero-grid::after {
    bottom: 184px;
    height: 78px;
    left: min(calc(100% - 104px), calc(50% + 226px));
    width: 78px;
  }
}

@media (max-width: 920px) {
  .home-page .hero-grid::after {
    bottom: 124px;
    height: 76px;
    left: auto;
    right: 34px;
    width: 76px;
  }

  .start-copy::before,
  .start-copy::after,
  .mini-address-bar::before,
  .mini-address-bar::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .home-page .hand-note {
    bottom: auto;
    left: auto;
    margin: 14px auto 16px;
    max-width: 220px;
    position: relative;
    right: auto;
    top: auto;
    z-index: 9;
  }

  .home-page .hero-grid::after {
    bottom: 108px;
    height: 70px;
    right: 18px;
    width: 70px;
  }
}

@media (max-height: 820px) and (min-width: 921px) {
  .home-page .hero-grid {
    gap: 16px;
    padding: 28px 0 32px;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(70px, 7.4vw, 104px);
    margin-bottom: 20px;
  }

  .home-page .hero-benefit-card {
    padding: 16px 40px;
  }

  .home-page .hero-benefit-card li {
    font-size: clamp(24px, 2.35vw, 32px);
    gap: 12px;
    grid-template-columns: 30px 1fr;
  }

  .home-page .hero-benefit-card li::before {
    font-size: 34px;
  }

  .hero-county-priority {
    margin-top: 12px;
  }

  .home-page .hand-note {
    font-size: 30px;
    left: -126px;
    top: 314px;
  }

  .home-page .hero-grid::after {
    bottom: 146px;
  }
}

/* 2026-08-02 final audit fixes: stable header, hero note, and CTA arrows. */
.header-offer-button {
  align-items: center;
  flex: 0 0 auto;
  line-height: 1;
  white-space: nowrap;
}

.header-phone {
  flex: 0 0 auto;
}

@media (max-width: 1450px) and (min-width: 901px) {
  .offer-header-inner {
    column-gap: 16px;
    grid-template-columns: auto minmax(210px, 250px) auto;
    width: min(1320px, calc(100% - 34px));
  }

  .offer-main-nav {
    gap: 22px;
  }

  .offer-main-nav a,
  .header-login,
  .header-phone {
    font-size: 20px;
  }

  .offer-header-logo img {
    max-width: 250px;
    width: 250px;
  }

  .offer-header-right {
    gap: 14px;
  }

  .header-offer-button {
    border-width: 5px;
    font-size: 18px;
    min-width: 194px;
    padding: 11px 18px;
  }
}

.home-page .hero-grid::after {
  content: none !important;
  display: none !important;
}

.home-page .hand-note b {
  color: #fff;
  display: block !important;
  font-size: 64px;
  justify-self: end;
  line-height: .65;
  margin-right: -44px;
  margin-top: 62px;
  text-shadow:
    -2px -2px 0 #23788a,
    2px -2px 0 #23788a,
    -2px 2px 0 #23788a,
    2px 2px 0 #23788a,
    0 10px 20px rgba(0,0,0,.22);
  transform: rotate(18deg);
}

.home-page .hand-note::after {
  content: none !important;
  display: none !important;
}

.mini-address-bar::after {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='124' viewBox='0 0 220 124'%3E%3Cpath d='M208 20C186 72 124 92 58 64' fill='none' stroke='%23050505' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M58 64L91 48L82 87Z' fill='%23050505'/%3E%3C/svg%3E") center / contain no-repeat;
  bottom: auto;
  content: "";
  display: block;
  height: 104px;
  pointer-events: none;
  position: absolute;
  right: -168px;
  top: 8px;
  transform: rotate(-5deg);
  width: 176px;
  z-index: 0;
}

@media (max-width: 560px) {
  .home-page .hero {
    overflow: hidden;
  }

  .home-page .hero-grid {
    gap: 8px;
    min-height: 560px;
    padding: 10px 0 16px;
  }

  .home-page .hero-copy {
    position: static;
  }

  .home-page .hero-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
    margin-bottom: 8px;
  }

  .home-page .hero-benefit-card {
    padding: 10px 14px;
    width: min(100%, 340px);
  }

  .home-page .hero-benefit-card li {
    font-size: 16px;
    grid-template-columns: 22px 1fr;
  }

  .hero-county-priority {
    margin: 8px auto 0;
  }

  .home-page .hand-note {
    display: grid;
    font-size: 26px;
    left: 50%;
    margin: 0;
    max-width: 240px;
    position: absolute;
    top: auto;
    bottom: 92px;
    transform: translateX(-52%) rotate(-8deg);
    z-index: 9;
  }

  .home-page .hand-note b {
    display: block !important;
    font-size: 50px;
    margin-right: -10px;
    margin-top: 0;
  }

  .home-page .offer-form,
  .home-page .offer-form[data-current-step="1"] {
    margin-top: 74px;
  }

  .mini-address-bar::after {
    content: none;
    display: none;
  }
}

@media (max-height: 820px) and (min-width: 921px) {
  .home-page .hand-note {
    left: -80px;
  }
}

/* Mobile lock: keep one handwritten callout attached to the address form after header jumps. */
@media (max-width: 560px) {
  .home-page .hero-grid::after,
  .home-page .hand-note::before,
  .home-page .hand-note::after {
    content: none !important;
    display: none !important;
  }

  .home-page .hand-note {
    bottom: 108px;
    color: #fff;
    display: grid !important;
    font-size: clamp(24px, 7vw, 32px);
    left: 50%;
    line-height: .85;
    margin: 0;
    max-width: 250px;
    opacity: 1 !important;
    pointer-events: none;
    position: absolute;
    text-align: left;
    text-shadow:
      -2px -2px 0 #23788a,
      2px -2px 0 #23788a,
      -2px 2px 0 #23788a,
      2px 2px 0 #23788a,
      0 10px 18px rgba(0,0,0,.28);
    text-transform: uppercase;
    transform: translateX(-54%) rotate(-8deg);
    visibility: visible !important;
    width: max-content;
    z-index: 15;
  }

  .home-page .hand-note span,
  .home-page .hand-note b {
    display: block !important;
  }

  .home-page .hand-note b {
    color: #fff;
    font-size: 48px;
    line-height: .7;
    margin: -2px 0 0 auto;
    text-shadow:
      -2px -2px 0 #23788a,
      2px -2px 0 #23788a,
      -2px 2px 0 #23788a,
      2px 2px 0 #23788a,
      0 10px 18px rgba(0,0,0,.28);
    transform: rotate(10deg);
  }

  .home-page.offer-anchor-active .hand-note,
  .home-page.offer-anchor-active .hand-note *,
  .home-page.offer-anchor-active .hand-note::before,
  .home-page.offer-anchor-active .hand-note::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .home-page .offer-form,
  .home-page .offer-form[data-current-step="1"] {
    isolation: isolate;
    margin-top: 42px;
    overflow: visible;
    position: relative;
    scroll-margin-top: clamp(330px, 46vh, 405px);
  }

  .home-page .offer-form[data-current-step="1"]::after {
    content: none !important;
    display: none !important;
  }

  .home-page .offer-form[data-current-step="1"]::before {
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='130' height='100' viewBox='0 0 130 100'%3E%3Cpath d='M10 18C48 62 86 75 111 57' fill='none' stroke='%23fff' stroke-width='10' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M106 57L88 46L88 76Z' fill='%23fff'/%3E%3C/svg%3E")
      center / contain no-repeat;
    content: "" !important;
    display: block !important;
    filter:
      drop-shadow(-2px -2px 0 #23788a)
      drop-shadow(2px 2px 0 #23788a)
      drop-shadow(0 10px 16px rgba(0,0,0,.28));
    height: 76px;
    left: auto;
    pointer-events: none;
    position: absolute;
    right: 28px;
    top: -72px;
    transform: rotate(-3deg);
    width: 102px;
    z-index: 15;
  }
}

/* 2026-08-04 locations page UI upgrade. */
.enhanced-locations-page .simple-main {
  padding: clamp(28px, 4vw, 56px) 0;
}

.enhanced-location-hub.simple-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,252,249,.98)),
    radial-gradient(circle at 8% 0%, rgba(244,122,33,.12), transparent 34%);
  border-color: rgba(31,111,85,.18);
  border-radius: 18px;
  max-width: 1420px;
  padding: clamp(18px, 2.6vw, 34px);
}

.enhanced-location-hub.simple-card.container {
  width: min(1500px, calc(100% - 42px));
}

.enhanced-location-hub.simple-card::after {
  height: 132px;
  opacity: .055;
  right: 24px;
  top: 18px;
  width: 132px;
}

.locations-hero-panel {
  background:
    linear-gradient(135deg, rgba(18,63,52,.96), rgba(13,95,115,.9)),
    url("../img/hero-california-photo.webp") center / cover no-repeat;
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(18,63,52,.18);
  color: #fff;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, .92fr) minmax(560px, 1.08fr);
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  position: relative;
}

.locations-hero-panel::before {
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--green));
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.locations-hero-panel::after {
  background:
    radial-gradient(circle at center, rgba(255,255,255,.18), transparent 62%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  content: "";
  height: 280px;
  position: absolute;
  right: -84px;
  top: -104px;
  width: 280px;
}

.locations-hero-copy {
  max-width: 960px;
  position: relative;
  z-index: 1;
}

.locations-hero-panel .breadcrumb {
  color: rgba(255,255,255,.78);
  margin-bottom: 14px;
}

.locations-hero-panel .eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

.locations-hero-panel h1 {
  color: #fff;
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: .95;
  margin-bottom: 14px;
  max-width: 930px;
  text-shadow: 0 12px 34px rgba(0,0,0,.24);
}

.locations-hero-panel p:not(.eyebrow) {
  color: rgba(255,255,255,.86);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.45;
  max-width: 890px;
}

.locations-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.locations-hero-actions .button-secondary {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.42);
  color: #fff;
}

.enhanced-location-hub .market-hierarchy-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, auto);
  margin: 0;
  position: relative;
  z-index: 1;
}

.enhanced-location-hub .market-hierarchy-strip a {
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(0,0,0,.14);
  color: var(--green-dark);
  display: grid;
  gap: 5px;
  min-height: 88px;
  padding: 13px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.enhanced-location-hub .market-hierarchy-strip a:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 44px rgba(0,0,0,.2);
  transform: translateY(-2px);
}

.enhanced-location-hub .market-hierarchy-strip a:first-child {
  background:
    linear-gradient(135deg, rgba(255,248,230,.98), rgba(255,255,255,.98));
  border-color: rgba(242,184,75,.72);
  grid-row: auto;
}

.enhanced-location-hub .market-hierarchy-strip small {
  align-items: center;
  background: #fff8e6;
  border: 1px solid #f3d489;
  border-radius: 999px;
  color: #765016;
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  height: 28px;
  justify-content: center;
  width: 42px;
}

.enhanced-location-hub .market-hierarchy-strip strong {
  color: var(--green-dark);
  font-size: clamp(17px, 1.25vw, 22px);
  line-height: 1.02;
}

.enhanced-location-hub .market-hierarchy-strip span {
  background: transparent;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  padding: 0;
  white-space: normal;
}

.enhanced-location-hub .location-pathway-panel {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbf8 100%);
  border: 1px solid rgba(31,111,85,.16);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(18,63,52,.1);
  gap: 14px;
  margin: 18px 0 18px;
  padding: clamp(16px, 2vw, 24px);
}

.enhanced-location-hub .location-pathway-copy {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(240px, .6fr) minmax(0, 1fr);
}

.enhanced-location-hub .location-pathway-copy > span {
  align-self: start;
  background: var(--green-dark);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  justify-self: start;
  letter-spacing: .12em;
  padding: 9px 12px;
  text-transform: uppercase;
}

.enhanced-location-hub .location-pathway-copy h2 {
  color: #132238;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1;
  margin: 0;
}

.enhanced-location-hub .location-pathway-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.38;
  margin: 0;
  max-width: none;
}

.enhanced-location-hub .location-pathway-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.enhanced-location-hub .location-pathway-grid a,
.enhanced-location-hub .location-guide-grid a {
  border-radius: 12px;
  box-shadow: 0 10px 26px rgba(19,35,30,.06);
  min-height: 0;
  padding: 13px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.enhanced-location-hub .location-pathway-grid a {
  border-top: 5px solid var(--orange);
}

.enhanced-location-hub .location-pathway-grid a:nth-child(2) { border-top-color: var(--gold); }
.enhanced-location-hub .location-pathway-grid a:nth-child(3) { border-top-color: var(--green); }
.enhanced-location-hub .location-pathway-grid a:nth-child(4) { border-top-color: var(--sea); }
.enhanced-location-hub .location-pathway-grid a:nth-child(5) { border-top-color: #7a5cff; }

.enhanced-location-hub .location-pathway-grid a:hover,
.enhanced-location-hub .location-guide-grid a:hover {
  background: #fff8e6;
  border-color: #f3d489;
  transform: translateY(-2px);
}

.enhanced-location-hub .location-pathway-grid strong,
.enhanced-location-hub .location-guide-grid strong {
  color: var(--green-dark);
  font-size: 16px;
  line-height: 1.08;
}

.enhanced-location-hub .location-pathway-grid span,
.enhanced-location-hub .location-guide-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.36;
}

@media (max-width: 1180px) {
  .locations-hero-panel {
    grid-template-columns: 1fr;
  }

  .enhanced-location-hub .market-hierarchy-strip,
  .enhanced-location-hub .location-pathway-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .enhanced-location-hub .market-hierarchy-strip a:first-child {
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .enhanced-location-hub.simple-card {
    padding: 14px;
  }

  .locations-hero-panel {
    padding: 24px 18px;
  }

  .locations-hero-panel h1 {
    font-size: clamp(36px, 10vw, 54px);
  }

  .enhanced-location-hub .market-hierarchy-strip,
  .enhanced-location-hub .location-pathway-grid,
  .enhanced-location-hub .location-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enhanced-location-hub .location-pathway-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .enhanced-locations-page .simple-main {
    padding: 14px 0 32px;
  }

  .enhanced-location-hub.simple-card {
    border-radius: 0;
    width: 100%;
  }

  .locations-hero-actions {
    display: grid;
  }

  .enhanced-location-hub .market-hierarchy-strip,
  .enhanced-location-hub .location-pathway-grid,
  .enhanced-location-hub .location-guide-grid {
    grid-template-columns: 1fr;
  }
}

/* 2026-08-04 homepage compact pass: fit the two local proof sections into cleaner desktop screens. */
.home-page .homepage-recent,
.home-page .homepage-cities {
  padding: clamp(34px, 4vw, 56px) 0;
}

.home-page .homepage-recent .container,
.home-page .homepage-cities .container {
  width: min(1500px, calc(100% - 42px));
}

.home-page .homepage-recent .homepage-section-head,
.home-page .homepage-cities .homepage-section-head {
  margin-bottom: 18px;
  max-width: 980px;
}

.home-page .homepage-recent .homepage-section-head h2,
.home-page .homepage-cities .homepage-section-head h2 {
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1;
  margin-bottom: 10px;
}

.home-page .homepage-recent .homepage-section-head p:not(.eyebrow),
.home-page .homepage-cities .homepage-section-head p:not(.eyebrow) {
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.4;
}

.home-page .homepage-example-grid {
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-page .homepage-example-grid article {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,251,248,.98));
  border: 1px solid rgba(31,111,85,.16);
  border-top: 5px solid var(--green);
  box-shadow: 0 14px 34px rgba(19,35,30,.08);
  display: grid;
  gap: 8px;
  grid-template-rows: auto auto 1fr auto;
  min-height: 214px;
  padding: 15px;
}

.home-page .homepage-example-grid article:nth-child(1) { border-top-color: var(--orange); }
.home-page .homepage-example-grid article:nth-child(2) { border-top-color: var(--gold); }
.home-page .homepage-example-grid article:nth-child(3) { border-top-color: var(--green); }
.home-page .homepage-example-grid article:nth-child(4) { border-top-color: var(--sea); }
.home-page .homepage-example-grid article:nth-child(5) { border-top-color: #7a5cff; }

.home-page .homepage-example-grid span {
  border-radius: 999px;
  font-size: 11px;
  height: auto;
  justify-self: start;
  line-height: 1.1;
  min-height: 28px;
  min-width: 0;
  max-width: 100%;
  padding: 7px 10px;
  text-align: center;
  width: auto;
}

.home-page .homepage-example-grid h3 {
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.05;
  margin: 0;
}

.home-page .homepage-example-grid p {
  font-size: 14px;
  line-height: 1.38;
}

.home-page .homepage-example-grid a {
  align-items: center;
  background: #fff8e6;
  border: 1px solid rgba(242,184,75,.55);
  border-radius: 999px;
  color: #765016;
  display: inline-flex;
  font-size: 13px;
  justify-self: start;
  line-height: 1.1;
  min-height: 32px;
  padding: 8px 10px;
}

.home-page .homepage-cities {
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(243,249,246,.98));
}

.home-page .homepage-city-columns {
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-page .homepage-city-columns section {
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(19,35,30,.08);
  gap: 7px;
  padding: 15px;
}

.home-page .homepage-city-columns h3 {
  font-size: clamp(20px, 1.6vw, 25px);
  line-height: 1.02;
  margin-bottom: 2px;
}

.home-page .homepage-city-columns section > span {
  font-size: 10px;
  letter-spacing: .16em;
}

.home-page .homepage-city-columns section > p {
  font-size: 13px;
  line-height: 1.32;
  margin-bottom: 4px;
}

.home-page .homepage-city-columns a {
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.12;
  min-height: 34px;
  padding: 7px 9px;
}

.home-page .homepage-center-actions {
  margin-top: 18px;
}

@media (max-width: 1220px) {
  .home-page .homepage-example-grid,
  .home-page .homepage-city-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .home-page .homepage-example-grid,
  .home-page .homepage-city-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-page .homepage-recent,
  .home-page .homepage-cities {
    padding: 34px 0;
  }

  .home-page .homepage-recent .container,
  .home-page .homepage-cities .container {
    width: min(100% - 24px, 420px);
  }

  .home-page .homepage-recent .homepage-section-head,
  .home-page .homepage-cities .homepage-section-head {
    margin-bottom: 14px;
    text-align: left;
  }

  .home-page .homepage-recent .homepage-section-head h2,
  .home-page .homepage-cities .homepage-section-head h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .home-page .homepage-example-grid,
  .home-page .homepage-city-columns {
    grid-template-columns: 1fr;
  }

  .home-page .homepage-example-grid article,
  .home-page .homepage-city-columns section {
    padding: 15px;
  }
}

/* 2026-08-04 locations county directory UI upgrade. */
.enhanced-location-hub .location-county-card {
  --county-accent: var(--orange);
  --county-soft: rgba(244, 122, 33, .08);
  --county-line: rgba(244, 122, 33, .28);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255,255,255,.99), rgba(248,251,248,.96));
  border: 1px solid rgba(31,111,85,.14);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(19,35,30,.09);
  display: grid;
  gap: 0;
  grid-template-columns: 390px minmax(0, 1fr);
  margin-top: 22px;
  overflow: hidden;
  padding: 0;
  position: relative;
  scroll-margin-top: 110px;
}

.enhanced-location-hub .location-county-card::before {
  background: linear-gradient(180deg, var(--county-accent), var(--green-dark));
  content: "";
  inset: 0 auto 0 0;
  position: absolute;
  width: 7px;
}

.enhanced-location-hub .county-orange {
  --county-accent: var(--orange);
  --county-soft: rgba(244, 122, 33, .09);
  --county-line: rgba(244, 122, 33, .32);
}

.enhanced-location-hub .county-riverside {
  --county-accent: var(--gold);
  --county-soft: rgba(242, 184, 75, .12);
  --county-line: rgba(242, 184, 75, .42);
}

.enhanced-location-hub .county-san-bernardino {
  --county-accent: var(--green);
  --county-soft: rgba(31, 111, 85, .10);
  --county-line: rgba(31, 111, 85, .28);
}

.enhanced-location-hub .county-los-angeles {
  --county-accent: var(--sea);
  --county-soft: rgba(13, 95, 115, .10);
  --county-line: rgba(13, 95, 115, .30);
}

.enhanced-location-hub .county-san-diego {
  --county-accent: #6e5be8;
  --county-soft: rgba(110, 91, 232, .10);
  --county-line: rgba(110, 91, 232, .30);
}

.enhanced-location-hub .location-county-card > div {
  align-content: start;
  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,.92), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.96), var(--county-soft));
  border-right: 1px solid rgba(31,111,85,.10);
  display: grid;
  gap: 12px;
  padding: 30px 26px 30px 32px;
  position: relative;
  z-index: 1;
}

.enhanced-location-hub .location-county-card > div > span {
  align-items: center;
  background: var(--county-accent);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  justify-self: start;
  line-height: 1;
  padding: 8px 11px;
}

.enhanced-location-hub .location-county-card h2 {
  font-size: 31px;
  line-height: 1.03;
  margin: 0;
}

.enhanced-location-hub .location-county-card h2 a {
  color: var(--green-dark);
  text-decoration-color: var(--county-accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.enhanced-location-hub .location-county-card h2 a:hover {
  color: var(--sea);
}

.enhanced-location-hub .location-county-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.46;
  margin: 0;
}

.enhanced-location-hub .location-county-card .button {
  background: #fff;
  border: 1px solid rgba(31,111,85,.18);
  border-radius: 8px;
  color: var(--ink);
  justify-self: start;
  margin-top: 8px;
  min-height: 44px;
  padding: 11px 16px;
}

.enhanced-location-hub .location-county-card .button:hover {
  border-color: var(--county-accent);
  box-shadow: 0 10px 24px rgba(19,35,30,.10);
  color: var(--green-dark);
}

.enhanced-location-hub .location-county-card .enhanced-location-city-list {
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(248,251,248,.80));
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 24px;
}

.enhanced-location-hub .county-los-angeles .enhanced-location-city-list {
  gap: 7px;
}

.enhanced-location-hub .location-county-card .enhanced-location-city-list li {
  margin: 0;
  min-width: 0;
  padding: 0;
}

.enhanced-location-hub .location-county-card .enhanced-location-city-list a {
  align-items: center;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(31,111,85,.13);
  border-radius: 8px;
  box-shadow: inset 0 -2px 0 rgba(31,111,85,.05);
  color: var(--green-dark);
  display: flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: space-between;
  line-height: 1.16;
  min-height: 42px;
  padding: 9px 10px;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.enhanced-location-hub .county-los-angeles .enhanced-location-city-list a {
  font-size: 13px;
  min-height: 36px;
  padding: 8px 9px;
}

.enhanced-location-hub .location-county-card .enhanced-location-city-list a::after {
  color: var(--county-accent);
  content: ">";
  font-weight: 900;
  margin-left: 8px;
}

.enhanced-location-hub .location-county-card .enhanced-location-city-list a:hover {
  background: var(--county-soft);
  border-color: var(--county-line);
  box-shadow: 0 10px 22px rgba(19,35,30,.09);
  color: var(--ink);
  transform: translateY(-1px);
}

@media (min-width: 1380px) {
  .enhanced-location-hub .location-county-card {
    grid-template-columns: 430px minmax(0, 1fr);
  }

  .enhanced-location-hub .location-county-card .enhanced-location-city-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .enhanced-location-hub .county-los-angeles .enhanced-location-city-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .enhanced-location-hub .location-county-card {
    grid-template-columns: 1fr;
  }

  .enhanced-location-hub .location-county-card > div {
    border-bottom: 1px solid rgba(31,111,85,.10);
    border-right: 0;
  }

  .enhanced-location-hub .location-county-card .enhanced-location-city-list,
  .enhanced-location-hub .county-los-angeles .enhanced-location-city-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .enhanced-location-hub .location-county-card {
    border-radius: 8px;
    margin-top: 16px;
  }

  .enhanced-location-hub .location-county-card > div {
    padding: 22px 18px 20px 24px;
  }

  .enhanced-location-hub .location-county-card h2 {
    font-size: 26px;
  }

  .enhanced-location-hub .location-county-card p {
    font-size: 15px;
  }

  .enhanced-location-hub .location-county-card .enhanced-location-city-list,
  .enhanced-location-hub .county-los-angeles .enhanced-location-city-list {
    gap: 7px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
  }

  .enhanced-location-hub .location-county-card .enhanced-location-city-list a,
  .enhanced-location-hub .county-los-angeles .enhanced-location-city-list a {
    font-size: 13px;
    min-height: 38px;
    padding: 8px 9px;
  }
}

@media (max-width: 340px) {
  .enhanced-location-hub .location-county-card .enhanced-location-city-list,
  .enhanced-location-hub .county-los-angeles .enhanced-location-city-list {
    grid-template-columns: 1fr;
  }
}

/* 2026-08-04 homepage priority review section upgrade. */
.home-page .priority-review-section {
  background:
    linear-gradient(180deg, #fff 0%, #f3f8f6 100%);
  padding: clamp(36px, 4.5vw, 64px) 0;
  scroll-margin-top: 112px;
}

.home-page .priority-review-section .container {
  width: min(1460px, calc(100% - 42px));
}

.home-page .priority-review-panel {
  background:
    linear-gradient(135deg, rgba(18,63,52,.98), rgba(13,95,115,.92) 54%, rgba(244,122,33,.22)),
    url("../img/hero-california-photo.webp") center / cover no-repeat;
  border: 1px solid rgba(31,111,85,.16);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(19,35,30,.16);
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
}

.home-page .priority-review-intro {
  align-content: center;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 30px);
}

.home-page .priority-review-intro .eyebrow {
  color: var(--gold);
  margin: 0;
}

.home-page .priority-review-intro h2 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: .96;
  margin: 0;
  max-width: 760px;
}

.home-page .priority-review-intro p:not(.eyebrow) {
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.45vw, 20px);
  font-weight: 800;
  line-height: 1.42;
  margin: 0;
  max-width: 720px;
}

.home-page .priority-review-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-page .priority-review-proof span {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .02em;
  padding: 8px 10px;
}

.home-page .priority-review-intro .button {
  justify-self: start;
  margin-top: 4px;
}

.home-page .priority-review-grid.homepage-theme-grid {
  align-content: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .priority-theme-card {
  --theme-accent: var(--orange);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.66);
  border-left: 6px solid var(--theme-accent);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(7,21,18,.16);
  display: grid;
  gap: 8px;
  min-height: 174px;
  padding: 18px 18px 17px;
  position: relative;
}

.home-page .priority-theme-card::after {
  color: rgba(19,35,30,.08);
  content: attr(data-step);
  font-size: 52px;
  font-weight: 950;
  line-height: 1;
  position: absolute;
  right: 14px;
  top: 12px;
}

.home-page .priority-theme-card > span {
  background: rgba(31,111,85,.08);
  border: 1px solid rgba(31,111,85,.12);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 950;
  justify-self: start;
  letter-spacing: .12em;
  line-height: 1;
  padding: 7px 9px;
  text-transform: uppercase;
  z-index: 1;
}

.home-page .priority-theme-card strong {
  color: var(--green-dark);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.02;
  margin: 0;
  z-index: 1;
}

.home-page .priority-theme-card p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 820;
  line-height: 1.38;
  margin: 0;
  z-index: 1;
}

.home-page .priority-repairs {
  --theme-accent: var(--gold);
}

.home-page .priority-timeline {
  --theme-accent: var(--sea);
}

.home-page .priority-choice {
  --theme-accent: var(--green);
}

@media (max-width: 980px) {
  .home-page .priority-review-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-page .priority-review-section {
    padding: 28px 0;
  }

  .home-page .priority-review-section .container {
    width: min(100% - 24px, 430px);
  }

  .home-page .priority-review-panel {
    gap: 14px;
    padding: 14px;
  }

  .home-page .priority-review-intro {
    padding: 18px;
  }

  .home-page .priority-review-intro h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .home-page .priority-review-grid.homepage-theme-grid {
    grid-template-columns: 1fr;
  }

  .home-page .priority-theme-card {
    min-height: 0;
    padding: 16px;
  }
}

/* 2026-08-04 county authority page UI upgrade. */
.county-page .county-hero.authority-hero {
  background:
    linear-gradient(90deg, rgba(7,28,25,.92) 0%, rgba(13,95,115,.78) 52%, rgba(244,122,33,.22) 100%),
    url("../img/hero-california-photo.webp") center 47% / cover no-repeat;
  isolation: isolate;
  min-height: clamp(560px, calc(100svh - 104px), 720px);
  overflow: hidden;
  padding: clamp(44px, 6vw, 86px) 0;
}

.county-page .county-hero.authority-hero::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(7,28,25,.16) 48%, rgba(7,28,25,.68) 100%);
  bottom: 0;
  content: "";
  height: 46%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 0;
}

.county-page .county-hero.authority-hero::after {
  background:
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.14);
  height: 320px;
  right: -96px;
  top: -104px;
  transform: rotate(18deg);
  width: 520px;
  z-index: 0;
}

.county-page .authority-hero .container {
  align-items: center;
  display: grid;
  gap: clamp(26px, 4vw, 70px);
  grid-template-columns: minmax(0, .98fr) minmax(340px, 430px);
  width: min(1500px, calc(100% - 56px));
}

.county-page .authority-hero .breadcrumb {
  align-items: center;
  align-self: end;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  display: inline-flex;
  gap: 9px;
  justify-self: start;
  margin: 0 0 8px;
  padding: 9px 13px;
}

.county-page .authority-hero .breadcrumb a {
  color: #fff;
  text-decoration-thickness: 2px;
}

.county-page .authority-hero .eyebrow {
  background: rgba(244,184,56,.14);
  border: 1px solid rgba(244,184,56,.34);
  border-radius: 999px;
  color: var(--gold);
  justify-self: start;
  margin: 0;
  padding: 8px 11px;
}

.county-page .authority-hero h1 {
  font-size: clamp(46px, 5.8vw, 86px);
  line-height: .93;
  margin: 0;
  max-width: 850px;
  text-shadow: 0 4px 18px rgba(0,0,0,.2);
}

.county-page .authority-hero p:not(.eyebrow) {
  background: rgba(7,28,25,.26);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  color: rgba(255,255,255,.9);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.42;
  margin: 0;
  max-width: 790px;
  padding: 16px 18px;
}

.county-page .county-hero-actions {
  margin-top: 0;
}

.county-page .county-hero-actions .button {
  box-shadow: 0 16px 32px rgba(0,0,0,.22);
}

.county-page .county-hero-actions .button-outline {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.94);
  color: var(--green-dark);
}

.county-page .authority-hero .county-hero-card {
  align-self: center;
  backdrop-filter: blur(12px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(247,252,250,.94));
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 8px;
  box-shadow: 0 28px 74px rgba(0,0,0,.28);
  color: var(--ink);
  gap: 12px;
  max-width: 430px;
  padding: 22px;
  position: relative;
}

.county-page .authority-hero .county-hero-card::before {
  color: var(--orange);
  content: "Local review snapshot";
  display: block;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  line-height: 1;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.county-page .authority-hero .county-hero-card::after {
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--green));
  border-radius: 999px;
  content: "";
  display: block;
  height: 5px;
  order: 10;
}

.county-page .authority-hero .county-hero-card span {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(31,111,85,.14);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(13,40,35,.08);
  display: grid;
  gap: 3px 14px;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 82px;
  padding: 15px 16px;
}

.county-page .authority-hero .county-hero-card span::before {
  align-items: center;
  background: linear-gradient(135deg, var(--green-dark), var(--sea));
  border-radius: 8px;
  color: #fff;
  content: "01";
  display: inline-flex;
  font-size: 14px;
  font-weight: 950;
  grid-row: 1 / span 2;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.county-page .authority-hero .county-hero-card span:nth-of-type(2)::before {
  background: linear-gradient(135deg, var(--orange), #f59b39);
  content: "02";
}

.county-page .authority-hero .county-hero-card span:nth-of-type(3)::before {
  background: linear-gradient(135deg, #6b7c90, var(--green-dark));
  content: "03";
}

.county-page .authority-hero .county-hero-card strong,
.county-page .authority-hero .county-hero-card small {
  grid-column: 2;
}

.county-page .authority-hero .county-hero-card strong {
  color: var(--green-dark);
  font-size: clamp(26px, 2.5vw, 38px);
  letter-spacing: 0;
}

.county-page .authority-hero .county-hero-card small {
  color: #5f6f68;
  font-size: 14px;
  line-height: 1.18;
}

.county-page .authority-content {
  background:
    radial-gradient(circle at 8% 0%, rgba(244,184,56,.16), transparent 26%),
    linear-gradient(180deg, #f4f9f6 0%, #fff 44%, #eef6f4 100%);
  padding: clamp(46px, 5vw, 76px) 0 clamp(64px, 7vw, 96px);
}

.county-page .authority-copy > article {
  grid-template-columns: 1fr;
}

.county-page .authority-layout {
  gap: clamp(22px, 3vw, 36px);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
}

.county-page .authority-copy > article:not(.authority-cta-band) {
  background:
    linear-gradient(180deg, #fff, #fbfdfc);
  border: 1px solid rgba(31,111,85,.14);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(27,55,48,.08);
  margin-bottom: 22px;
  overflow: hidden;
  padding: clamp(22px, 2.8vw, 34px);
  position: relative;
}

.county-page .authority-copy > article:not(.authority-cta-band)::before {
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--green));
  content: "";
  height: 5px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.county-page .authority-copy h2 {
  color: var(--ink);
  font-size: clamp(28px, 3.1vw, 46px);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 14px;
}

.county-page .authority-copy p,
.county-page .authority-copy li {
  color: #596b64;
  font-size: clamp(16px, 1.15vw, 18px);
  font-weight: 780;
  line-height: 1.62;
}

.county-page .authority-quick-links {
  gap: 10px;
  margin-top: 18px;
}

.county-page .authority-quick-links a {
  background: #f3fbf7;
  border-color: rgba(31,111,85,.16);
  box-shadow: 0 8px 18px rgba(19,35,30,.06);
  min-height: 40px;
}

.county-page .authority-city-list {
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  list-style: none;
  margin-top: 18px;
  padding: 0;
}

.county-page .authority-city-list li {
  margin: 0;
}

.county-page .authority-city-list a {
  align-items: center;
  background:
    linear-gradient(180deg, #fff, #f6fbf9);
  border: 1px solid rgba(31,111,85,.16);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(19,35,30,.06);
  color: var(--green-dark);
  display: flex;
  font-size: 15px;
  font-weight: 950;
  justify-content: space-between;
  min-height: 50px;
  padding: 12px 14px;
  text-decoration: none;
}

.county-page .authority-city-list a::after {
  color: var(--orange);
  content: ">";
  font-weight: 950;
  margin-left: 10px;
}

.county-page .authority-city-list a:hover,
.county-page .authority-quick-links a:hover,
.county-page .authority-side-links a:hover {
  background: #fff8e6;
  border-color: rgba(244,122,33,.34);
  color: #765016;
}

.county-page .authority-situation-grid,
.county-page .authority-compare-grid,
.county-page .authority-process-grid,
.county-page .authority-topic-grid {
  gap: 14px;
}

.county-page .authority-situation-grid section,
.county-page .authority-compare-grid section,
.county-page .authority-process-grid section {
  background:
    linear-gradient(180deg, #fff, #f7fbf9);
  border: 1px solid rgba(31,111,85,.14);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(19,35,30,.06);
  padding: 20px;
}

.county-page .authority-situation-grid h3,
.county-page .authority-compare-grid h3,
.county-page .authority-process-grid h3,
.county-page .authority-side-section h3 {
  color: var(--green-dark);
  font-size: 20px;
  letter-spacing: 0;
}

.county-page .authority-process-grid section {
  border-top: 5px solid var(--orange);
}

.county-page .authority-process-grid section:nth-child(2) {
  border-top-color: var(--gold);
}

.county-page .authority-process-grid section:nth-child(3) {
  border-top-color: var(--sea);
}

.county-page .authority-process-grid section:nth-child(4) {
  border-top-color: var(--green);
}

.county-page .authority-check-list li {
  background: #fff;
  border-color: rgba(31,111,85,.14);
  box-shadow: 0 10px 22px rgba(19,35,30,.05);
}

.county-page .authority-cta-band {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(7,28,25,.96), rgba(13,95,115,.92) 58%, rgba(244,122,33,.62)),
    url("../img/hero-california-photo.webp") center / cover no-repeat;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(7,28,25,.18);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr);
  margin: 24px 0;
  overflow: hidden;
  padding: clamp(22px, 2.6vw, 34px);
}

.county-page .authority-cta-band::before {
  content: none;
  display: none;
}

.county-page .authority-cta-band h2,
.county-page .authority-cta-band p {
  color: #fff;
  grid-column: 1;
  margin: 0;
  max-width: 860px;
}

.county-page .authority-cta-band h2 {
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.02;
}

.county-page .authority-cta-band p {
  color: rgba(255,255,255,.88);
}

.county-page .authority-cta-band .simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1;
  margin-top: 4px;
}

.county-page .authority-cta-band .button-secondary {
  background: rgba(255,255,255,.96);
  border-color: rgba(255,255,255,.96);
  color: var(--green-dark);
}

.county-page .authority-sidebar {
  background:
    linear-gradient(180deg, #fff, #f7fbf9);
  border: 1px solid rgba(31,111,85,.14);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(19,35,30,.1);
  padding: 22px;
  position: sticky;
  top: 118px;
}

.county-page .authority-sidebar h2 {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
  margin-bottom: 8px;
}

.county-page .authority-sidebar > p {
  color: #5f6f68;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.42;
}

.county-page .authority-side-section {
  border-top: 1px solid rgba(31,111,85,.14);
  padding-top: 18px;
}

.county-page .authority-side-links a {
  background: #fff;
  box-shadow: 0 8px 18px rgba(19,35,30,.05);
}

.county-page .authority-side-links a::after {
  color: var(--orange);
  content: ">";
  font-weight: 950;
}

.county-page .authority-side-links a[aria-current="page"]::after {
  color: #fff;
}

@media (max-width: 1080px) {
  .county-page .authority-hero .container,
  .county-page .authority-layout {
    grid-template-columns: 1fr;
  }

  .county-page .authority-hero .county-hero-card {
    max-width: none;
    width: min(100%, 620px);
  }

  .county-page .authority-sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .county-page .county-hero.authority-hero {
    min-height: 0;
    padding: 34px 0 42px;
  }

  .county-page .authority-hero .container {
    width: min(100% - 24px, 520px);
  }

  .county-page .authority-hero .breadcrumb {
    border-radius: 8px;
    flex-wrap: wrap;
    font-size: 13px;
  }

  .county-page .authority-hero h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .county-page .authority-hero p:not(.eyebrow) {
    font-size: 16px;
    padding: 14px;
  }

  .county-page .authority-hero .county-hero-card {
    padding: 16px;
  }

  .county-page .authority-hero .county-hero-card span {
    min-height: 70px;
    padding: 12px;
  }

  .county-page .authority-hero .county-hero-card strong {
    font-size: 26px;
  }

  .county-page .authority-copy > article:not(.authority-cta-band),
  .county-page .authority-sidebar {
    padding: 18px;
  }

  .county-page .authority-city-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .county-page .authority-city-list {
    grid-template-columns: 1fr;
  }
}

/* 2026-08-04 county hero fit-screen pass. */
.county-page .county-hero.authority-hero {
  min-height: clamp(420px, calc(100svh - 178px), 560px);
  padding: clamp(26px, 3.4vw, 54px) 0;
}

.county-page .authority-hero .container {
  align-content: center;
  gap: clamp(12px, 2.2vw, 30px) clamp(22px, 3vw, 46px);
  grid-auto-flow: row;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  grid-template-rows: repeat(5, auto);
}

.county-page .authority-hero .breadcrumb,
.county-page .authority-hero .eyebrow,
.county-page .authority-hero h1,
.county-page .authority-hero p:not(.eyebrow),
.county-page .county-hero-actions {
  grid-column: 1;
}

.county-page .authority-hero .breadcrumb {
  grid-row: 1;
  margin-bottom: 0;
}

.county-page .authority-hero .eyebrow {
  grid-row: 2;
}

.county-page .authority-hero h1 {
  font-size: clamp(40px, 5vw, 72px);
  grid-row: 3;
  line-height: .94;
  max-width: 780px;
}

.county-page .authority-hero p:not(.eyebrow) {
  font-size: clamp(16px, 1.2vw, 19px);
  grid-row: 4;
  line-height: 1.35;
  max-width: 700px;
  padding: 13px 15px;
}

.county-page .county-hero-actions {
  grid-row: 5;
}

.county-page .authority-hero .county-hero-card {
  align-self: center;
  grid-column: 2;
  grid-row: 1 / span 5;
  justify-self: end;
  max-width: 390px;
  padding: 18px;
}

.county-page .authority-hero .county-hero-card span {
  gap: 2px 12px;
  grid-template-columns: 44px minmax(0, 1fr);
  min-height: 68px;
  padding: 12px 13px;
}

.county-page .authority-hero .county-hero-card span::before {
  font-size: 13px;
  height: 40px;
  width: 40px;
}

.county-page .authority-hero .county-hero-card strong {
  font-size: clamp(24px, 2.05vw, 32px);
}

.county-page .authority-hero .county-hero-card small {
  font-size: 13px;
}

@media (max-width: 1080px) {
  .county-page .county-hero.authority-hero {
    min-height: 0;
    padding: 36px 0 46px;
  }

  .county-page .authority-hero .container {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    width: min(100% - 32px, 760px);
  }

  .county-page .authority-hero .breadcrumb,
  .county-page .authority-hero .eyebrow,
  .county-page .authority-hero h1,
  .county-page .authority-hero p:not(.eyebrow),
  .county-page .county-hero-actions,
  .county-page .authority-hero .county-hero-card {
    grid-column: 1;
    grid-row: auto;
  }

  .county-page .authority-hero .county-hero-card {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 720px) {
  .county-page .county-hero.authority-hero {
    padding: 22px 0 28px;
  }

  .county-page .authority-hero .container {
    gap: 13px;
    width: min(100% - 24px, 520px);
  }

  .county-page .authority-hero h1 {
    font-size: clamp(32px, 9.8vw, 44px);
  }

  .county-page .authority-hero .county-hero-card {
    gap: 9px;
    padding: 12px;
  }

  .county-page .authority-hero .county-hero-card span {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 54px;
    padding: 9px;
  }

  .county-page .authority-hero .county-hero-card span::before {
    height: 34px;
    width: 34px;
  }

  .county-page .authority-hero .county-hero-card strong {
    font-size: 22px;
  }

  .county-page .authority-hero .county-hero-card small {
    font-size: 12px;
  }
}

/* 2026-08-04 Retell live-agent status notice. */
.live-agent-notice {
  background: rgba(255,255,255,.98);
  border: 2px solid rgba(15, 63, 70, .18);
  border-radius: 8px;
  bottom: max(88px, calc(env(safe-area-inset-bottom) + 78px));
  box-shadow: 0 18px 42px rgba(8, 33, 38, .22);
  color: #13231e;
  display: grid;
  gap: 6px;
  max-width: 330px;
  padding: 16px 44px 16px 16px;
  position: fixed;
  right: 18px;
  width: min(330px, calc(100vw - 32px));
  z-index: 119;
}

.live-agent-notice strong {
  color: #0f3f46;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.2;
}

.live-agent-notice span {
  color: #5f6f6a;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.35;
}

.live-agent-notice code {
  color: #f97316;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-weight: 900;
}

.live-agent-notice-close {
  align-items: center;
  background: #f1f5f2;
  border: 0;
  border-radius: 8px;
  color: #0f3f46;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 24px;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 30px;
}

.live-agent-notice-close:hover,
.live-agent-notice-close:focus-visible {
  background: #fff3e8;
  color: #f97316;
  outline: none;
}

@media (max-width: 720px) {
  .live-agent-notice {
    bottom: max(144px, calc(env(safe-area-inset-bottom) + 82px));
    right: 12px;
    width: min(336px, calc(100vw - 24px));
  }
}

@media (max-width: 420px) {
  .live-agent-notice {
    bottom: max(132px, calc(env(safe-area-inset-bottom) + 74px));
  }
}

/* 2026-08-05 public community blog. */
.blog-page {
  background: #eef6f4;
}

.blog-shell {
  background:
    radial-gradient(circle at 16% 12%, rgba(244, 122, 33, .12), transparent 30%),
    linear-gradient(180deg, #f8fbf8 0%, #eef6f4 100%);
  min-height: 70vh;
}

.blog-hero {
  background:
    linear-gradient(120deg, rgba(19, 35, 30, .92), rgba(15, 95, 115, .75)),
    url("../img/hero-california-photo.webp") center / cover no-repeat;
  color: #fff;
  padding: clamp(46px, 7vw, 88px) 0;
}

.blog-hero-grid {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
}

.blog-hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: .94;
  margin-bottom: 20px;
  max-width: 850px;
}

.blog-hero p:not(.eyebrow) {
  color: rgba(255,255,255,.84);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 750;
  max-width: 790px;
}

.blog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.blog-admin-card,
.blog-write-panel,
.blog-post-card,
.blog-single {
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(31, 111, 85, .18);
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(18, 63, 52, .13);
}

.blog-admin-card {
  align-self: center;
  color: var(--ink);
  padding: 24px;
}

.blog-admin-card h2,
.blog-write-panel h2,
.blog-section-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1;
  margin-bottom: 12px;
}

.blog-admin-card p {
  color: var(--muted);
  font-weight: 750;
}

.blog-layout {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  padding: clamp(32px, 5vw, 68px) 0;
}

.blog-section-head {
  align-items: end;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.blog-section-head span {
  background: #fff3e8;
  border: 1px solid rgba(244, 122, 33, .28);
  border-radius: 999px;
  color: #8a4b0e;
  font-weight: 950;
  padding: 9px 13px;
  white-space: nowrap;
}

.blog-post-list {
  display: grid;
  gap: 18px;
}

.blog-post-card {
  padding: clamp(22px, 3vw, 34px);
  position: relative;
}

.blog-post-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 13px;
}

.blog-post-meta span {
  background: #0f3f46;
  border-radius: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.blog-post-meta time,
.blog-card-footer span,
.blog-byline {
  color: var(--muted);
  font-weight: 820;
}

.blog-post-card h3 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  margin-bottom: 12px;
}

.blog-post-card h3 a,
.blog-back-link,
.blog-card-footer a {
  color: var(--green-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.blog-post-card p,
.blog-body p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.blog-card-footer {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  margin-top: 20px;
}

.blog-card-footer a {
  font-weight: 950;
}

.blog-write-panel {
  padding: 24px;
  position: sticky;
  top: 104px;
}

.blog-login-form,
.blog-post-form {
  display: grid;
  gap: 13px;
}

.blog-login-form label,
.blog-post-form label {
  color: var(--ink);
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.blog-login-form input,
.blog-post-form input,
.blog-post-form select,
.blog-post-form textarea {
  background: #fff;
  border: 1px solid #cddbd5;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 760;
  min-height: 48px;
  padding: 13px 14px;
  width: 100%;
}

.blog-post-form textarea {
  min-height: 170px;
  resize: vertical;
}

.blog-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr 1fr;
}

.blog-hp {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.blog-alert {
  border-radius: 8px;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 14px 16px;
}

.blog-alert-success {
  background: #eafaf0;
  border: 1px solid #a8ecc3;
  color: #17673a;
}

.blog-alert-danger {
  background: #fff0ee;
  border: 1px solid #ffc0b7;
  color: #9b2719;
}

.blog-delete-form {
  margin-top: 14px;
}

.blog-delete-form button {
  background: #fff1ef;
  border: 1px solid #ffc5bd;
  border-radius: 8px;
  color: #9b2719;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  min-height: 40px;
  padding: 9px 13px;
}

.blog-single {
  margin: clamp(30px, 5vw, 68px) auto;
  max-width: 920px;
  padding: clamp(26px, 5vw, 58px);
}

.blog-single h1 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 74px);
  line-height: .96;
  margin-bottom: 14px;
}

.blog-back-link {
  display: inline-block;
  font-weight: 950;
  margin-bottom: 20px;
}

.blog-body {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 24px;
}

.blog-body p {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.55;
}

.blog-single-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.blog-not-found {
  margin: 48px auto;
}

@media (max-width: 980px) {
  .blog-hero-grid,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-write-panel {
    position: static;
  }
}

@media (max-width: 620px) {
  .blog-form-grid,
  .blog-section-head {
    grid-template-columns: 1fr;
  }

  .blog-section-head {
    align-items: start;
    display: grid;
  }

  .blog-hero {
    padding: 34px 0;
  }

  .blog-admin-card,
  .blog-write-panel,
  .blog-post-card,
  .blog-single {
    padding: 20px;
  }
}

/* Sitewide exit-intent cash-offer prompt. */
.exit-offer-is-open {
  overflow: hidden;
}

.exit-offer-overlay {
  align-items: center;
  background: rgba(7, 31, 35, .72);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 22px;
  position: fixed;
  transition: opacity .18s ease;
  z-index: 2147483000;
}

.exit-offer-overlay[hidden] {
  display: none;
}

.exit-offer-overlay.is-visible {
  opacity: 1;
}

.exit-offer-card {
  background: #fffdf9;
  border: 1px solid rgba(15, 63, 70, .18);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(3, 27, 31, .36);
  color: #122f34;
  max-width: 530px;
  padding: 38px;
  position: relative;
  transform: translateY(12px);
  transition: transform .18s ease;
  width: 100%;
}

.exit-offer-card::before {
  background: #f97316;
  content: "";
  height: 6px;
  left: -1px;
  position: absolute;
  right: -1px;
  top: -1px;
}

.exit-offer-overlay.is-visible .exit-offer-card {
  transform: translateY(0);
}

.exit-offer-close {
  align-items: center;
  background: transparent;
  border: 0;
  color: #315c62;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 31px;
  height: 44px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 8px;
  top: 9px;
  width: 44px;
}

.exit-offer-close:hover,
.exit-offer-close:focus-visible {
  color: #d84f08;
}

.exit-offer-eyebrow {
  color: #d84f08;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 48px 10px 0;
  text-transform: uppercase;
}

.exit-offer-card h2 {
  color: #0f3f46;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1.06;
  margin: 0 26px 14px 0;
}

.exit-offer-copy {
  color: #425f64;
  font-size: 18px;
  line-height: 1.48;
  margin: 0 0 19px;
}

.exit-offer-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.exit-offer-points li {
  color: #173e44;
  font-size: 14px;
  font-weight: 900;
  padding-left: 20px;
  position: relative;
}

.exit-offer-points li::before {
  color: #e45d10;
  content: "\2713";
  font-weight: 950;
  left: 0;
  position: absolute;
}

.exit-offer-form {
  display: grid;
  gap: 11px;
}

.exit-offer-form > label:first-child {
  color: #173e44;
  font-size: 15px;
  font-weight: 950;
}

.exit-offer-form input[type="tel"] {
  background: #fff;
  border: 2px solid #bbd0d3;
  border-radius: 6px;
  color: #122f34;
  font: inherit;
  font-size: 19px;
  min-height: 56px;
  padding: 12px 15px;
  width: 100%;
}

.exit-offer-form input[type="tel"]:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, .17);
  outline: 0;
}

.exit-offer-consent {
  align-items: flex-start;
  color: #536d72;
  cursor: pointer;
  display: grid;
  font-size: 11px;
  gap: 9px;
  grid-template-columns: 18px 1fr;
  line-height: 1.38;
}

.exit-offer-consent input {
  accent-color: #e45d10;
  height: 17px;
  margin: 1px 0 0;
  width: 17px;
}

.exit-offer-primary {
  background: #f97316;
  border: 1px solid #d9580c;
  border-radius: 6px;
  color: #102f34;
  cursor: pointer;
  display: block;
  font: inherit;
  font-size: 17px;
  font-weight: 950;
  min-height: 54px;
  padding: 13px 20px;
  width: 100%;
}

.exit-offer-primary:hover,
.exit-offer-primary:focus-visible {
  background: #ff8b32;
}

.exit-offer-primary:disabled {
  cursor: wait;
  opacity: .72;
}

.exit-offer-status {
  color: #a52d0b;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
  min-height: 0;
  text-align: center;
}

.exit-offer-status:empty {
  display: none;
}

.exit-offer-success {
  background: #edf8f0;
  border: 1px solid #9fcaaa;
  border-radius: 6px;
  color: #17482c;
  display: grid;
  gap: 5px;
  padding: 18px;
  text-align: center;
}

.exit-offer-success[hidden] {
  display: none;
}

.exit-offer-success strong {
  font-size: 19px;
}

.exit-offer-success span {
  font-size: 14px;
  line-height: 1.4;
}

.exit-offer-phone {
  color: #0f3f46;
  display: block;
  font-size: 16px;
  font-weight: 950;
  margin: 17px auto 0;
  text-align: center;
  text-decoration-color: #f97316;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.exit-offer-card small {
  color: #64797d;
  display: block;
  font-size: 13px;
  line-height: 1.4;
  margin-top: 13px;
  text-align: center;
}

@media (max-width: 620px) {
  .exit-offer-overlay {
    align-items: flex-end;
    padding: 12px;
  }

  .exit-offer-card {
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    padding: 30px 24px 25px;
  }

  .exit-offer-card h2 {
    font-size: 27px;
    margin-right: 18px;
  }

  .exit-offer-copy {
    font-size: 16px;
  }

  .exit-offer-points {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
  }

  .exit-offer-form input[type="tel"] {
    min-height: 54px;
  }

  .exit-offer-consent {
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exit-offer-overlay,
  .exit-offer-card {
    transition: none;
  }
}
