/* ========== LOCATIONS HERO ========== */

.locations-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0f172a;
}

.locations-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("../images/hero/notary-desk-blur.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.locations-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.78) 48%, rgba(15, 23, 42, 0.58) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.14) 0%, rgba(15, 23, 42, 0.52) 100%);
}

.locations-hero-content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 32px));
  padding: 52px 0 110px;
  color: #ffffff;
}

.locations-hero .home-hero-eyebrow {
  margin: 0 0 14px;
  color: #93c5fd;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.locations-hero h1 {
  max-width: 11ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.45rem, 5vw, 4.85rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.locations-hero .home-hero-lead {
  max-width: 690px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.72;
  color: rgba(249, 250, 251, 0.9);
}

.locations-hero .home-hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.locations-hero .home-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.locations-hero .home-hero-cta--primary {
  background: #b91c1c;
  color: #f9fafb;
  border: 1px solid #b91c1c;
}

.locations-hero .home-hero-cta--primary:hover {
  background: #991b1b;
  border-color: #991b1b;
  transform: translateY(-1px);
}

.locations-hero .home-hero-cta--secondary {
  color: #e5e7eb;
  border: 1px solid rgba(229, 231, 235, 0.7);
  background: rgba(15, 23, 42, 0.65);
}

.locations-hero .home-hero-cta--secondary:hover {
  background: rgba(15, 23, 42, 0.82);
  border-color: rgba(229, 231, 235, 0.9);
  color: #ffffff;
  transform: translateY(-1px);
}

.locations-hero .home-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.locations-hero .home-hero-highlights li {
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  font-size: 0.88rem;
  font-weight: 500;
}

@media (max-width: 720px) {
  .locations-hero {
    min-height: auto;
  }

  .locations-hero-content {
    width: min(100% - 24px, 1200px);
    padding: 76px 0 64px;
  }

  .locations-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.1rem, 9vw, 3.4rem);
  }

  .locations-hero .home-hero-cta-row {
    flex-direction: column;
  }

  .locations-hero .home-hero-cta {
    width: 100%;
  }

  .locations-hero .home-hero-highlights {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .locations-hero-content {
    width: min(100% - 20px, 1200px);
    padding: 68px 0 56px;
  }

  .locations-hero .home-hero-lead {
    font-size: 0.97rem;
  }

  .locations-hero .home-hero-highlights li {
    font-size: 0.84rem;
  }
}

/* ========== /LOCATIONS HERO ========== */



/* ========== LOCATIONS REGIONS STRIP ========== */
/* tweaks specific to the Locations page version of the coverage strip */

.home-coverage {
  padding-top: 72px;
  padding-bottom: 80px;
}

.home-coverage .section-heading {
  margin-bottom: 30px;
}

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

.home-coverage .coverage-card {
  position: relative;
  height: 100%;
  padding: 20px 20px 22px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
}

.home-coverage .coverage-card--wide {
  grid-column: span 3;
}

.coverage-card-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.coverage-card-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  overflow: hidden;
  background: #0f172a;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.coverage-card-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.coverage-card h3 {
  margin: 0;
  color: #0f172a;
  font-size: 1.16rem;
  line-height: 1.2;
}

.coverage-card-link {
  color: #0f172a;
  text-decoration: none;
}

.coverage-card-link:hover {
  text-decoration: underline;
}

.coverage-card p {
  margin: 12px 0 0;
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.7;
}

.coverage-card-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.coverage-card-list li {
  position: relative;
  padding-left: 16px;
  color: #334155;
  font-size: 0.93rem;
  line-height: 1.55;
}

.coverage-card-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b91c1c;
}

@media (max-width: 960px) {
  .home-coverage__grid {
    grid-template-columns: 1fr;
  }

  .home-coverage .coverage-card--wide {
    grid-column: span 1;
  }

  .coverage-card-list {
    grid-template-columns: 1fr;
  }
}
/* ========== /LOCATIONS REGIONS STRIP ========== */


/* ========== LOCATIONS HUB BY REGION ========== */

.home-service-lanes--locations {
  position: relative;
  padding-top: 72px;
  padding-bottom: 88px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(243, 246, 249, 0.76) 0%, rgba(236, 241, 246, 0.70) 100%),
    linear-gradient(90deg, rgba(237, 242, 246, 0.68) 0%, rgba(228, 234, 240, 0.60) 46%, rgba(220, 227, 235, 0.66) 100%),
    url("../images/locations/la-service-areas-bg.webp") center center / cover no-repeat;
  background-attachment: fixed;
}

.home-service-lanes--locations::before {
  content: none;
}

.home-service-lanes--locations > .section-shell {
  position: relative;
  z-index: 1;
}

.home-service-lanes--locations .section-heading {
  margin-bottom: 30px;
}

.home-service-lanes--locations .section-kicker {
  color: #991b1b;
}

.home-service-lanes--locations .section-heading h2 {
  color: #0f172a;
}

.home-service-lanes--locations .section-heading p {
  color: #475569;
}

/* regions */

.locations-region {
  margin-top: 40px;
}

.locations-region-header {
  margin-bottom: 18px;
}

.locations-region-header-card {
  border-radius: 18px;
  padding: 16px 20px;
  background: #dfe5eb;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  backdrop-filter: none;
}

.locations-region-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.locations-region-thumb {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #991b1b;
  opacity: 0.9;
}

.locations-region-title {
  margin: 0;
  font-size: 0.98rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #0f172a;
}

.locations-region-intro {
  margin: 0;
  max-width: 46rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
}

/* cards grid */

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

/* city cards */

.service-lane--location-text,
.home-service-lanes--locations .service-lane,
.home-service-lanes--locations .service-lane--compact {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.service-lane--location-text:hover,
.home-service-lanes--locations .service-lane:hover,
.home-service-lanes--locations .service-lane--compact:hover {
  transform: translateY(-3px);
  border-color: rgba(153, 27, 27, 0.18);
  box-shadow:
    0 16px 34px rgba(15, 23, 42, 0.1),
    0 20px 40px rgba(15, 23, 42, 0.08);
}

.service-lane--location-text .service-lane-content,
.home-service-lanes--locations .service-lane-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.service-lane--location-text .service-lane-body,
.home-service-lanes--locations .service-lane-body {
  padding: 18px 18px 0;
}

.service-lane-heading-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.service-lane-thumb {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #cbd5e1;
  opacity: 0.55;
}

.home-service-lanes--locations .service-lane-label {
  color: #7f1d1d;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-lane-heading-text h3,
.home-service-lanes--locations .service-lane h3,
.home-service-lanes--locations .service-lane--compact h3 {
  margin: 0;
  font-size: 1.02rem;
  color: #0f172a;
}

.home-service-lanes--locations .service-lane-title-link {
  color: #0f172a;
  text-decoration: none;
}

.home-service-lanes--locations .service-lane-title-link:hover {
  color: #991b1b;
}

.service-lane--location-text p:last-of-type,
.home-service-lanes--locations .service-lane-body p:last-of-type,
.home-service-lanes--locations .service-lane--compact .service-lane-body p:last-of-type {
  margin: 8px 0 0;
  padding-bottom: 16px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.6;
}

/* actions */

.service-lane--location-text .service-lane-actions,
.home-service-lanes--locations .service-lane-actions {
  margin-top: auto;
}

.service-lane--location-text .service-lane-actions--split,
.home-service-lanes--locations .service-lane-actions--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  background: #111827;
}

.service-lane--location-text .service-lane-split-button,
.home-service-lanes--locations .service-lane-split-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 14px;
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.service-lane--location-text .service-lane-split-button--left,
.home-service-lanes--locations .service-lane-split-button--left {
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.service-lane--location-text .service-lane-split-button--left:hover,
.home-service-lanes--locations .service-lane-split-button--left:hover {
  background: rgba(255, 255, 255, 0.06);
}

.service-lane--location-text .service-lane-split-button--right,
.home-service-lanes--locations .service-lane-split-button--right {
  background: #0f172a;
}

.service-lane--location-text .service-lane-split-button--right:hover,
.home-service-lanes--locations .service-lane-split-button--right:hover {
  background: #1e293b;
}

/* micro copy */

.locations-micro-copy {
  margin: 26px auto 0;
  max-width: 42rem;
  text-align: center;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
}

.locations-micro-copy a {
  color: #991b1b;
  font-weight: 700;
  text-decoration: none;
}

.locations-micro-copy a:hover {
  text-decoration: underline;
}

/* responsive */

@media (max-width: 960px) {
  .home-service-lanes-grid--locations,
  .home-service-lanes--locations .home-service-lanes-grid {
    grid-template-columns: 1fr;
  }

  .home-service-lanes--locations {
    background-attachment: scroll;
    background-position: center center;
  }
}

@media (max-width: 720px) {
  .home-service-lanes--locations {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .service-lane--location-text .service-lane-body,
  .home-service-lanes--locations .service-lane-body {
    padding: 16px 16px 0;
  }

  .service-lane-heading-text h3,
  .home-service-lanes--locations .service-lane h3,
  .home-service-lanes--locations .service-lane--compact h3 {
    font-size: 0.98rem;
  }

  .service-lane--location-text p:last-of-type,
  .home-service-lanes--locations .service-lane-body p:last-of-type,
  .home-service-lanes--locations .service-lane--compact .service-lane-body p:last-of-type {
    font-size: 0.9rem;
    padding-bottom: 14px;
  }

  .service-lane--location-text .service-lane-actions--split,
  .home-service-lanes--locations .service-lane-actions--split {
    grid-template-columns: 1fr;
  }

  .service-lane--location-text .service-lane-split-button--left,
  .home-service-lanes--locations .service-lane-split-button--left {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 480px) {
  .locations-region-header-card {
    padding: 14px 14px;
  }

  .locations-region-header-row {
    align-items: flex-start;
  }

  .service-lane-thumb {
    display: none;
  }

  .service-lane--location-text .service-lane-split-button,
  .home-service-lanes--locations .service-lane-split-button {
    min-height: 48px;
    font-size: 0.82rem;
    padding: 0 10px;
  }
}
/* ========== /LOCATIONS HUB BY REGION ========== */


/* ========== LOCATIONS FAQ ========== */

.locations-faq {
  padding: 24px 0 76px;
  background: #ffffff;
}

.locations-faq-intro {
  width: min(720px, 100%);
  margin: 16px auto 0;
  color: #475569;
  font-size: 0.98rem;
  line-height: 1.72;
}

.locations-faq-list {
  width: min(860px, 100%);
  margin: 34px auto 0;
  display: grid;
  gap: 14px;
}

.locations-faq-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.locations-faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 56px 18px 20px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
}

.locations-faq-item summary::-webkit-details-marker {
  display: none;
}

.locations-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #b91c1c;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
}

.locations-faq-item[open] summary::after {
  content: "–";
}

.locations-faq-answer {
  padding: 0 20px 18px;
}

.locations-faq-answer p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.72;
}

/* ========== /LOCATIONS FAQ ========== */


/* ========== LOCATIONS FINAL CTA ========== */

.home-final-cta--locations {
  padding-top: 0;
}

.home-final-cta--locations .home-final-cta-inner {
  align-items: center;
  gap: 32px;
}

.home-final-cta-copy {
  max-width: 720px;
}

.home-final-cta-lead {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.75;
}

.home-final-cta-points {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.home-final-cta-points li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.home-final-cta-points li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #f97316;
}

.home-final-cta-actions--stacked {
  display: grid;
  gap: 12px;
  min-width: min(100%, 280px);
}

.home-final-cta--locations .home-coverage-button {
  width: 100%;
  justify-content: center;
}

/* ========== /LOCATIONS FINAL CTA ========== */


@media (max-width: 720px) {
  .locations-faq {
    padding: 12px 0 56px;
  }

  .locations-faq-list {
    margin-top: 24px;
    gap: 12px;
  }

  .locations-faq-item summary {
    padding: 16px 48px 16px 16px;
    font-size: 0.96rem;
  }

  .locations-faq-answer {
    padding: 0 16px 16px;
  }

  .locations-faq-answer p,
  .locations-faq-intro {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .home-final-cta--locations .home-final-cta-inner {
    gap: 24px;
  }

  .home-final-cta-points {
    gap: 8px;
  }

  .home-final-cta-points li {
    font-size: 0.92rem;
  }
}
