.local-hero {
  background: linear-gradient(135deg, #181818 0%, #241f1b 58%, #3a2415 100%);
  color: var(--white);
  overflow: hidden;
  padding: 1.35rem 0 3rem;
  position: relative;
}

.local-hero::before {
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  opacity: .42;
  pointer-events: none;
  position: absolute;
}

.local-hero-inner {
  align-items: start;
  display: grid;
  gap: 1.8rem;
  grid-template-columns: minmax(320px, 430px) minmax(0, 1fr);
  position: relative;
  z-index: 1;
}

.local-hero-content {
  padding-top: .45rem;
}

.local-kicker {
  color: #ffc49c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: .8rem;
  text-transform: uppercase;
}

.local-hero h1 {
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  margin: 0 0 1rem;
  max-width: 700px;
}

.local-hero h1 em {
  color: var(--o);
  font-style: normal;
}

.local-hero-copy {
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 1.35rem;
  max-width: 650px;
}

.local-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  list-style: none;
  margin: 0 0 1.4rem;
}

.local-hero-points li {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 800;
  padding: .5rem .75rem;
}

.local-nearby-links {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.local-nearby-links a {
  border-bottom: 1px solid rgba(255,255,255,.5);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.local-form-card {
  background: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  color: var(--black);
  padding: 1.55rem;
  position: relative;
}

.local-form-card.priority-checker {
  order: -1;
}

.local-form-card::before {
  background: var(--o);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.local-form-card h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  margin: .3rem 0 .35rem;
  text-align: center;
}

.local-form-card .form-subtext {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 auto .9rem;
  text-align: center;
}

.local-lead-form {
  display: grid;
  gap: .65rem;
}

.local-lead-form .field label {
  color: var(--black);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: .25rem;
}

.local-lead-form .field input {
  appearance: none;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--black);
  font: inherit;
  font-size: 16px;
  min-height: 44px;
  outline: none;
  padding: 0 .85rem;
  width: 100%;
}

.local-lead-form .field input:focus {
  border-color: var(--o);
  box-shadow: 0 0 0 4px rgba(244,124,32,.16);
}

.local-submit {
  align-items: center;
  background: var(--o);
  border: 0;
  border-radius: 10px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1rem;
  transition: background .15s, box-shadow .15s, transform .15s;
  width: 100%;
}

.local-submit:hover {
  background: var(--od);
  box-shadow: 0 10px 24px rgba(192,94,13,.24);
  transform: translateY(-1px);
}

.local-submit:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.local-form-note,
.local-reassure {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.local-form-note {
  background: #f6fbf7;
  border: 1px solid #cfe9d6;
  border-radius: 9px;
  color: #17613a;
  font-weight: 900;
  padding: .65rem .7rem;
}

.local-reassure a {
  color: var(--od);
  font-weight: 900;
}

.local-success,
.local-error {
  border-radius: 10px;
  display: none;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
  padding: 1rem;
  text-align: center;
}

.local-success {
  background: #effaf3;
  border: 1px solid #9bd8b0;
  color: #17613a;
}

.local-error {
  background: #fff4f2;
  border: 1px solid #fecdca;
  color: #b42318;
}

.hidden {
  display: none;
}

.trust-row {
  background: var(--black);
  color: var(--white);
}

.trust-row-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-item {
  border-right: 1px solid rgba(255,255,255,.12);
  padding: 1rem .8rem;
  text-align: center;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  color: var(--o);
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.trust-item span,
.trust-item a {
  color: rgba(255,255,255,.72);
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-top: .25rem;
}

.trust-item a {
  color: #ffc49c;
  text-decoration: underline;
}

.local-section {
  padding: 3.5rem 0;
}

.local-section.muted {
  background: var(--gray);
}

.local-grid {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
}

.local-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.local-info-card,
.local-review,
.next-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.local-info-card h3,
.local-review h3,
.next-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: .5rem;
}

.local-info-card p,
.next-card p,
.local-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.local-body h2,
.local-section h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: .75rem;
}

.local-body p + p {
  margin-top: .9rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  list-style: none;
  margin-top: 1rem;
}

.area-list li {
  background: var(--ol);
  border: 1px solid #ffd7c1;
  border-radius: 999px;
  color: var(--od);
  font-size: 12px;
  font-weight: 800;
  padding: .42rem .68rem;
}

.availability-note {
  background: var(--black);
  border-radius: var(--radius);
  color: rgba(255,255,255,.8);
  padding: 1.35rem;
}

.availability-note h3 {
  color: var(--white);
  font-family: 'Nunito', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: .55rem;
}

.availability-note p {
  font-size: 14px;
  line-height: 1.75;
}

.availability-note strong {
  color: #ffc49c;
}

.local-review .stars {
  color: #ffb800;
  font-size: 14px;
  margin-bottom: .6rem;
}

.local-review blockquote {
  color: #3b3936;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: .9rem;
}

.local-review .reviewer {
  color: var(--black);
  font-weight: 900;
}

.local-review .review-meta {
  color: var(--muted);
  font-size: 12px;
  margin-top: .15rem;
}

.next-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: .9rem;
}

.link-list a {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--od);
  font-size: 12px;
  font-weight: 800;
  padding: .45rem .7rem;
}

.bottom-local-cta {
  background: var(--ol);
  border-top: 1px solid #ffd7c1;
  padding: 3rem 0;
  text-align: center;
}

.bottom-local-cta h2 {
  color: var(--od);
  font-family: 'Nunito', sans-serif;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: .5rem;
}

.bottom-local-cta p {
  color: var(--od);
  font-size: 15px;
  margin: 0 auto 1.2rem;
  max-width: 620px;
  opacity: .86;
}

@media (max-width: 900px) {
  .local-hero-inner,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .local-hero-content {
    padding-top: 0;
  }

  .local-hero h1 {
    font-size: 38px;
  }

  .local-card-grid,
  .next-grid {
    grid-template-columns: 1fr;
  }

  .trust-row-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .local-hero {
    padding: 1rem 0 2.2rem;
  }

  .local-hero h1 {
    font-size: 32px;
  }

  .local-hero-copy {
    font-size: 15px;
  }

  .local-form-card {
    padding: 1.25rem;
  }

  .trust-row-inner {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }
}
