.location-hub {
  --lh-ink: #153047;
  --lh-muted: #5a6d7c;
  --lh-paper: #f5f8f7;
  --lh-card: #ffffff;
  --lh-line: #dce7e5;
  --lh-navy: #082f49;
  --lh-navy-deep: #052338;
  --lh-mint: #2dd4bf;
  --lh-mint-deep: #0f766e;
  --lh-lime: #d9f99d;
  margin: 0;
  background: var(--lh-paper);
  color: var(--lh-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.location-hub *,
.location-hub *::before,
.location-hub *::after { box-sizing: border-box; }

.location-hub a { color: inherit; }

.lh-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.lh-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(8, 47, 73, .09);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
}

.lh-nav__inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.lh-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lh-navy);
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  text-decoration: none;
}

.lh-brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--lh-navy);
  color: #fff;
  font-size: 12px;
}

.lh-nav__links { display: flex; align-items: center; gap: 24px; }
.lh-nav__links a { color: #37556b; font-size: 14px; font-weight: 700; text-decoration: none; }

.lh-nav__contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 10px 15px;
  border-radius: 12px;
  background: #16a34a;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.lh-breadcrumb {
  padding: 16px 0;
  background: #fff;
  color: #617786;
  font-size: 13px;
}

.lh-breadcrumb a { color: var(--lh-mint-deep); text-decoration: none; }
.lh-breadcrumb span { margin-inline: 7px; color: #9aabb6; }

.lh-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 68px 0 46px;
  background:
    radial-gradient(circle at 80% 10%, rgba(45,212,191,.25), transparent 30%),
    radial-gradient(circle at 6% 100%, rgba(125,211,252,.16), transparent 27%),
    linear-gradient(138deg, var(--lh-navy-deep), var(--lh-navy) 62%, #115e59);
  color: #fff;
}

.lh-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .17;
  background-image: radial-gradient(circle, #fff 1px, transparent 1.5px);
  background-size: 32px 32px;
  mask-image: linear-gradient(90deg, transparent, black 50%, transparent);
}

.lh-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: center;
}

.lh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--lh-lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.lh-eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--lh-mint); }

.lh-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.02;
  text-wrap: balance;
}

.lh-hero h1 span { color: var(--lh-mint); }

.lh-hero__lead {
  max-width: 690px;
  margin: 21px 0 0;
  color: #d6e7ef;
  font-size: 18px;
  line-height: 1.7;
}

.lh-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 25px; }

.lh-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}

.lh-button--primary { border-color: #22c55e; background: #22c55e; color: #062c18; box-shadow: 0 13px 34px rgba(34,197,94,.23); }
.lh-button:hover { transform: translateY(-2px); }

.lh-hero__panel {
  padding: 26px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 24px;
  background: rgba(5,35,56,.67);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
}

.lh-hero__panel-label { margin: 0 0 13px; color: var(--lh-mint); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.lh-hero__panel h2 { margin: 0 0 12px; color: #fff; font-size: 25px; line-height: 1.2; }
.lh-hero__panel p { margin: 0; color: #bed2dd; line-height: 1.65; }

.lh-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.lh-fact { padding: 13px; border-radius: 13px; background: rgba(255,255,255,.08); color: #cce0e9; font-size: 12px; }
.lh-fact strong { display: block; margin-bottom: 3px; color: #fff; font-size: 14px; }

.lh-section { padding: 76px 0; }
.lh-section--white { background: #fff; }
.lh-section--tint { background: #edf5f3; }

.lh-heading { max-width: 780px; margin-bottom: 34px; }
.lh-heading__kicker { margin: 0 0 8px; color: var(--lh-mint-deep); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.lh-heading h2 { margin: 0; color: var(--lh-ink); font-family: "Plus Jakarta Sans", "Inter", sans-serif; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.035em; line-height: 1.1; }
.lh-heading p { margin: 15px 0 0; color: var(--lh-muted); font-size: 17px; line-height: 1.75; }

.lh-editorial { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(34px, 7vw, 90px); align-items: start; }
.lh-editorial__aside { position: sticky; top: 98px; padding: 24px; border: 1px solid var(--lh-line); border-radius: 20px; background: #fff; box-shadow: 0 14px 40px rgba(23,65,75,.06); }
.lh-editorial__aside h3 { margin: 0 0 13px; color: var(--lh-ink); font-size: 19px; }
.lh-editorial__aside p { margin: 0; color: var(--lh-muted); line-height: 1.68; }
.lh-editorial__aside a { color: var(--lh-mint-deep); font-weight: 800; }

.lh-copy { display: grid; gap: 26px; }
.lh-copy article { padding-bottom: 25px; border-bottom: 1px solid var(--lh-line); }
.lh-copy article:last-child { padding-bottom: 0; border: 0; }
.lh-copy h3 { margin: 0 0 9px; color: var(--lh-ink); font-size: 22px; }
.lh-copy p { margin: 0; color: var(--lh-muted); font-size: 16px; line-height: 1.78; }

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

.lh-locality-card,
.lh-process-card,
.lh-state-card {
  padding: 23px;
  border: 1px solid var(--lh-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(22,64,76,.055);
}

.lh-locality-card h3,
.lh-process-card h3,
.lh-state-card h2 { margin: 0 0 8px; color: var(--lh-ink); font-size: 18px; }
.lh-locality-card p,
.lh-process-card p,
.lh-state-card p { margin: 0; color: var(--lh-muted); line-height: 1.65; }
.lh-process-card span { display: grid; width: 35px; height: 35px; place-items: center; margin-bottom: 17px; border-radius: 11px; background: #ccfbf1; color: var(--lh-mint-deep); font-weight: 900; }

.lh-city-list { display: flex; flex-wrap: wrap; gap: 10px; }
.lh-city-link { display: inline-flex; padding: 10px 13px; border: 1px solid #cfe1de; border-radius: 11px; background: #fff; color: var(--lh-mint-deep) !important; font-size: 13px; font-weight: 800; text-decoration: none; }
.lh-city-link:hover { border-color: var(--lh-mint); background: #f0fdfa; }

.lh-disclosure { margin-top: 26px; padding: 18px 20px; border-left: 4px solid var(--lh-mint); border-radius: 0 14px 14px 0; background: #e8f7f3; color: #315966; line-height: 1.7; }

.lh-state-card { display: flex; min-height: 238px; flex-direction: column; }
.lh-state-card__meta { margin-bottom: 14px; color: var(--lh-mint-deep); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.lh-state-card a { margin-top: auto; padding-top: 18px; color: var(--lh-mint-deep); font-weight: 800; text-decoration: none; }

.lh-cta { padding: 54px 0; background: var(--lh-navy); color: #fff; }
.lh-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.lh-cta h2 { margin: 0; color: #fff; font-size: clamp(28px, 4vw, 42px); }
.lh-cta p { margin: 9px 0 0; color: #c7dae4; }

.lh-footer { padding: 38px 0; background: #041d2d; color: #a9c0cd; font-size: 13px; }
.lh-footer__inner { display: flex; justify-content: space-between; gap: 24px; }
.lh-footer a { color: #d7e8ef; }

.lh-button:focus-visible,
.lh-nav a:focus-visible,
.lh-city-link:focus-visible,
.lh-state-card a:focus-visible {
  outline: 3px solid #facc15;
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .lh-shell { width: min(100% - 28px, 680px); }
  .lh-nav__links { display: none; }
  .lh-hero { padding: 42px 0 30px; }
  .lh-hero__grid, .lh-editorial { grid-template-columns: 1fr; gap: 28px; }
  .lh-hero h1 { font-size: clamp(38px, 11vw, 56px); }
  .lh-hero__lead { font-size: 16px; }
  .lh-hero__panel { padding: 21px; }
  .lh-editorial__aside { position: static; }
  .lh-locality-grid, .lh-process-grid, .lh-state-grid { grid-template-columns: 1fr; }
  .lh-section { padding: 56px 0; }
  .lh-state-card { min-height: auto; }
  .lh-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 520px) {
  .lh-brand__name { display: none; }
  .lh-nav__contact { font-size: 12px; }
  .lh-actions { flex-direction: column; }
  .lh-button { width: 100%; }
  .lh-facts { grid-template-columns: 1fr; }
  .lh-footer__inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  .location-hub *,
  .location-hub *::before,
  .location-hub *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
