:root {
  --ink: #181722;
  --plum-950: #1d0f28;
  --plum-900: #2a1438;
  --plum-800: #39144b;
  --plum-600: #682e82;
  --gold-500: #dbaa49;
  --gold-300: #f1d484;
  --coast-700: #36697a;
  --coast-100: #dce7e7;
  --paper: #f8f5ee;
  --paper-2: #efe7d8;
  --white: #ffffff;
  --muted: #6f6b78;
  --muted-light: rgba(248, 245, 238, 0.72);
  --line: rgba(29, 15, 40, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 80px rgba(29, 15, 40, 0.22);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.03;
}

h1 {
  max-width: 820px;
  font-size: 68px;
  color: var(--paper);
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.topbar {
  background: var(--plum-950);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(248, 245, 238, 0.78);
}

.topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 245, 238, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.nav__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto auto;
  align-items: center;
  gap: 22px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
  color: var(--plum-900);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: #373142;
  font-size: 13px;
  font-weight: 800;
  border-radius: 6px;
}

.nav-links a:hover {
  background: rgba(219, 170, 73, 0.16);
  color: var(--plum-900);
}

.nav-phone {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--plum-900);
  color: var(--paper);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(57, 20, 75, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--plum-900);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.btn {
  min-height: 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(115deg, var(--gold-500), var(--gold-300), #f0ddff, #fff0a8, var(--gold-500));
  background-size: 280% 100%;
  color: var(--plum-950);
  box-shadow: 0 18px 42px rgba(219, 170, 73, 0.2);
  animation: button-gradient 7s ease-in-out infinite;
}

@keyframes button-gradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(248, 245, 238, 0.22);
  color: var(--paper);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--plum-950);
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(29, 15, 40, 0.98), rgba(57, 20, 75, 0.9) 48%, rgba(54, 105, 122, 0.58)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 96px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 88px);
  background-position: 0 0, 0 0, 0 0;
  animation: hero-grid-drift 28s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(219, 170, 73, 0.18) 44% 45%, transparent 45%),
    linear-gradient(18deg, transparent 0 62%, rgba(248, 245, 238, 0.09) 62% 63%, transparent 63%),
    linear-gradient(180deg, rgba(29, 15, 40, 0.05), rgba(29, 15, 40, 0.55));
  opacity: 0.9;
  animation: hero-sheen 16s ease-in-out infinite alternate;
}

.hero__map {
  position: absolute;
  right: -110px;
  top: 60px;
  width: 46%;
  height: 72%;
  border: 1px solid rgba(241, 212, 132, 0.28);
  transform: skew(-10deg);
  opacity: 0.55;
  background:
    linear-gradient(90deg, transparent 0 49%, rgba(241, 212, 132, 0.22) 49% 50%, transparent 50%),
    linear-gradient(0deg, transparent 0 49%, rgba(241, 212, 132, 0.16) 49% 50%, transparent 50%);
  background-size: 72px 72px;
  background-position: 0 0, 0 0;
  animation: hero-map-drift 22s ease-in-out infinite alternate;
}

@keyframes hero-grid-drift {
  from {
    background-position: 0 0, 0 0, 0 0;
  }

  to {
    background-position: 0 0, 42px 0, 0 36px;
  }
}

@keyframes hero-sheen {
  from {
    opacity: 0.82;
  }

  to {
    opacity: 0.96;
  }
}

@keyframes hero-map-drift {
  from {
    transform: translate3d(0, 0, 0) skew(-10deg);
    background-position: 0 0, 0 0;
  }

  to {
    transform: translate3d(-18px, 10px, 0) skew(-10deg);
    background-position: 36px 0, 0 36px;
  }
}

@keyframes form-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes form-glow {
  from {
    border-color: rgba(248, 245, 238, 0.18);
    background-color: rgba(255, 255, 255, 0.06);
  }

  to {
    border-color: rgba(240, 221, 255, 0.34);
    background-color: rgba(255, 255, 255, 0.08);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 610px;
  padding: 74px 0 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 420px);
  gap: 56px;
  align-items: center;
}

.hero__copy {
  min-width: 0;
}

.lead {
  max-width: 770px;
  margin-top: 24px;
  color: var(--muted-light);
  font-size: 18px;
}

.hero__actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-intake-form {
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: form-float 8s ease-in-out infinite, form-glow 7s ease-in-out infinite alternate;
}

.form-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.form-steps span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(219, 170, 73, 0.15);
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.form-title {
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.16;
}

.signal-panel {
  border-radius: 8px;
  border: 1px solid rgba(248, 245, 238, 0.16);
  background: rgba(29, 15, 40, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.signal-panel__head {
  min-height: 118px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid rgba(248, 245, 238, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.signal-panel__head img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.signal-panel__head span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-300);
  font-size: 13px;
  font-weight: 900;
}

.signal-panel__head strong {
  font-size: 22px;
  line-height: 1.15;
}

.signal-panel dl {
  margin: 0;
}

.signal-panel div:not(.signal-panel__head) {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(248, 245, 238, 0.1);
}

.signal-panel div:last-child {
  border-bottom: 0;
}

.signal-panel dt {
  margin-bottom: 6px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 900;
}

.signal-panel dd {
  margin: 0;
  color: rgba(248, 245, 238, 0.82);
  font-size: 15px;
  line-height: 1.55;
}

.quick-strip {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.quick-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.quick-strip article {
  min-height: 170px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.quick-strip article:last-child {
  border-right: 0;
}

.quick-strip span,
.service-card span,
.process-grid span,
.area-grid span {
  color: var(--plum-600);
  font-size: 13px;
  font-weight: 900;
}

.quick-strip h2 {
  margin-top: 14px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 21px;
  font-weight: 900;
}

.quick-strip p {
  margin-top: 10px;
  font-size: 15px;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head h2 {
  color: var(--plum-950);
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 18px;
  font-size: 17px;
}

.services .section-head h2 {
  color: var(--paper);
}

.services .section-head p:not(.eyebrow) {
  color: var(--muted-light);
}

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

.service-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  min-height: 260px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(29, 15, 40, 0.07);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.service-card div {
  padding: 28px;
}

.service-card h3 {
  margin-top: 10px;
  color: var(--plum-950);
}

.service-card p {
  margin-top: 14px;
  font-size: 15.5px;
}

.local-band {
  background: var(--plum-950);
  color: var(--paper);
}

.local-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: 52px;
}

.local-layout > *,
.contact-layout > *,
.content-layout > *,
.faq-layout > * {
  min-width: 0;
}

.local-layout h2 {
  color: var(--paper);
}

.local-layout p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted-light);
}

.local-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.local-photos img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.local-photos img:first-child {
  grid-column: 1 / -1;
  height: 260px;
}

.process {
  background: var(--paper-2);
}

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

.process-grid article {
  min-height: 235px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.process-grid h3 {
  margin-top: 12px;
}

.process-grid p {
  margin-top: 12px;
}

.content-section {
  background: var(--white);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(0, 0.82fr);
  gap: 56px;
}

.content-copy p + p {
  margin-top: 18px;
}

.decision-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 245, 238, 0.98)),
    linear-gradient(135deg, rgba(219, 170, 73, 0.12), transparent 42%, rgba(54, 105, 122, 0.1));
}

.decision-layout {
  display: grid;
  gap: 28px;
}

.decision-section .section-head {
  max-width: 920px;
  margin-bottom: 0;
}

.decision-section .section-head p:not(.eyebrow) {
  max-width: 820px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-card {
  min-height: 248px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(29, 15, 40, 0.12);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(29, 15, 40, 0.06);
}

.decision-card--wide {
  grid-column: span 2;
}

.decision-card--full {
  grid-column: 1 / -1;
  min-height: 0;
  background: var(--plum-950);
  color: var(--paper);
}

.decision-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.decision-card h3 {
  color: var(--plum-950);
}

.decision-card--full h3 {
  color: var(--paper);
}

.decision-card p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 1.68;
}

.decision-card--full p {
  max-width: 980px;
  margin-top: 14px;
  color: var(--muted-light);
}

.areas {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.compact {
  margin-bottom: 26px;
}

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

.area-grid span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--plum-900);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 0.9fr);
  gap: 50px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}

.faq-button {
  width: 100%;
  min-height: 62px;
  padding: 0 22px;
  border: 0;
  background: transparent;
  text-align: left;
  color: var(--plum-950);
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
}

.faq-item p {
  display: none;
  padding: 0 22px 22px;
}

.faq-item.open p {
  display: block;
}

.contact {
  background: var(--plum-900);
  color: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.55fr);
  gap: 48px;
  align-items: start;
}

.contact h2 {
  color: var(--paper);
}

.contact p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted-light);
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 26px;
  color: var(--gold-300);
  font-weight: 900;
}

.contact-links a {
  overflow-wrap: anywhere;
}

.intake-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(248, 245, 238, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.intake-form label {
  display: grid;
  gap: 7px;
  color: rgba(248, 245, 238, 0.85);
  font-size: 14px;
  font-weight: 800;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  width: 100%;
  border: 1px solid rgba(248, 245, 238, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  font: inherit;
  font-size: 15px;
  padding: 12px 13px;
}

.intake-form option {
  color: var(--ink);
}

.intake-form .btn {
  width: 100%;
}

.license-note,
.license-line {
  color: rgba(248, 245, 238, 0.7);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

.license-note {
  margin-top: -2px;
}

.footer {
  padding: 44px 0;
  background: #13091c;
  color: var(--paper);
}

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px 260px;
  gap: 36px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.footer-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer p {
  max-width: 560px;
  margin-top: 14px;
  color: rgba(248, 245, 238, 0.66);
}

.footer h2 {
  margin-bottom: 12px;
  color: var(--gold-300);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 900;
}

.footer a,
.footer span {
  display: block;
  margin-top: 9px;
  color: rgba(248, 245, 238, 0.74);
  font-size: 14px;
}

.mobile-callbar {
  display: none;
}

.subhero {
  position: relative;
  overflow: hidden;
  background: var(--plum-950);
  color: var(--paper);
}

.subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(29, 15, 40, 0.98), rgba(57, 20, 75, 0.9) 55%, rgba(54, 105, 122, 0.48)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 92px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 84px);
}

.subhero__inner {
  position: relative;
  z-index: 2;
  min-height: 430px;
  padding: 68px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 54px;
  align-items: center;
}

.subhero h1 {
  max-width: 850px;
}

.subhero__media {
  border: 1px solid rgba(248, 245, 238, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.subhero__media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.page-copy-section {
  background: var(--white);
}

.muted-section {
  background: var(--paper-2);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(300px, 0.48fr);
  gap: 44px;
  align-items: start;
}

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

.page-card-grid article {
  min-height: 210px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(29, 15, 40, 0.06);
}

.page-card-grid h3 {
  color: var(--plum-950);
}

.page-card-grid p {
  margin-top: 12px;
  font-size: 15.5px;
}

.process-grid-like article {
  background: var(--white);
}

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

.service-link-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(29, 15, 40, 0.07);
}

.service-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-link-card div {
  padding: 24px;
}

.service-link-card h3 {
  color: var(--plum-950);
}

.service-link-card p {
  margin-top: 12px;
  font-size: 15px;
}

.service-link-card a,
.related-list a,
.area-link-grid a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  margin-top: 16px;
  color: var(--plum-800);
  font-size: 14px;
  font-weight: 900;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 5px rgba(219, 170, 73, 0.16);
}

.related-list {
  padding: 26px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
}

.related-list h3 {
  color: var(--plum-950);
}

.related-list a {
  display: flex;
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.area-link-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.area-link-grid a {
  min-height: 52px;
  margin: 0;
  justify-content: center;
  padding: 0 14px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--plum-900);
  text-align: center;
}

.guide-layout {
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.guide-layout article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.guide-layout article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.guide-layout h2,
.privacy-copy h2 {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--plum-950);
  font-size: 24px;
  font-weight: 900;
}

.guide-layout p,
.privacy-copy p {
  margin-top: 12px;
}

.privacy-copy h2:not(:first-child) {
  margin-top: 34px;
}

.jurisdiction-list {
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.jurisdiction-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(248, 245, 238, 0.74);
  line-height: 1.65;
}

.jurisdiction-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}

.cta-panel {
  background: var(--plum-900);
  color: var(--paper);
}

.cta-panel__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.cta-panel h2 {
  color: var(--paper);
}

.cta-panel p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 14px;
  color: var(--muted-light);
}

.contact-page-section {
  padding-top: 88px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .nav__inner {
    grid-template-columns: minmax(180px, 1fr) auto auto;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .nav-phone {
    order: 3;
  }

  .site-nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .site-nav.nav-open .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 78px;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 4px;
    padding: 18px 20px 24px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.nav-open .nav-links a {
    min-height: 50px;
    padding: 0 16px;
    border-radius: 6px;
    background: rgba(57, 20, 75, 0.06);
    justify-content: center;
    width: 100%;
  }

  .hero__inner,
  .subhero__inner,
  .local-layout,
  .contact-layout,
  .two-column {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    max-width: 560px;
  }

  .quick-strip__grid,
  .area-grid,
  .area-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .decision-card--wide,
  .decision-card--full {
    grid-column: 1 / -1;
  }

  .decision-card--full {
    grid-template-columns: 1fr;
  }

  .quick-strip article:nth-child(2) {
    border-right: 0;
  }

  .service-grid,
  .service-link-grid,
  .page-card-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .decision-card {
    min-height: 0;
    padding: 22px;
  }

  .content-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 72px;
  }

  .wrap {
    width: min(100% - 28px, var(--max));
  }

  .topbar__inner {
    min-height: auto;
    padding: 8px 0;
    display: grid;
    gap: 4px;
  }

  .nav__inner {
    min-height: 70px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand span {
    font-size: 0;
  }

  .brand span::after {
    content: "Carlsbad PI";
    font-size: 15px;
  }

  .nav-phone {
    grid-column: 1 / -1;
    min-height: 40px;
    margin-bottom: 10px;
  }

  .site-nav.nav-open .nav-links {
    top: 120px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 20px;
  }

  .hero__inner {
    min-height: auto;
    padding: 54px 0 46px;
    gap: 32px;
  }

  .hero__map {
    right: -180px;
    width: 100%;
  }

  .lead {
    font-size: 16px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-strip__grid,
  .process-grid,
  .area-grid,
  .area-link-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .quick-strip article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-card {
    grid-template-columns: 1fr;
  }

  .service-link-card {
    grid-template-columns: 1fr;
  }

  .service-card img {
    min-height: 220px;
    height: 220px;
  }

  .service-link-card img {
    height: 220px;
  }

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

  .local-photos img,
  .local-photos img:first-child {
    height: 220px;
  }

  .section {
    padding: 62px 0;
  }

  .subhero__inner {
    min-height: auto;
    padding: 54px 0 46px;
    gap: 32px;
  }

  .subhero__media img {
    height: 240px;
  }

  .cta-panel__inner {
    display: grid;
  }

  .intake-form {
    padding: 18px;
  }

  .form-title {
    font-size: 22px;
  }

  .mobile-callbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    padding: 8px;
    background: rgba(19, 9, 28, 0.96);
    box-shadow: 0 -14px 40px rgba(19, 9, 28, 0.28);
  }

  .mobile-callbar a {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--gold-500);
    color: var(--plum-950);
    font-size: 13px;
    font-weight: 900;
    text-align: center;
  }

  .mobile-callbar a:first-child {
    background: var(--paper);
  }
}
