:root {
  --local-ink: #18212a;
  --local-night: #101417;
  --local-paper: #f5f3ed;
  --local-white: #ffffff;
  --local-muted: #66717b;
  --local-line: #d8dde0;
  --local-gold: #d8ad31;
  --local-teal: #087f72;
  --local-teal-soft: #e7f3f1;
  --local-coral: #cc594c;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  background: var(--local-paper);
  scroll-behavior: smooth;
}

body.local-page {
  margin: 0;
  color: var(--local-ink);
  background: var(--local-paper);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

.local-page a {
  color: inherit;
}

.local-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding-right: 22px;
  padding-left: 22px;
}

.local-nav {
  height: 64px;
  color: #fff;
  background: var(--local-night);
  border-bottom: 1px solid #343a40;
}

.local-nav .local-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.local-brand {
  flex: 0 0 auto;
  font-size: 1.05rem;
  font-weight: 900;
  text-decoration: none;
}

.local-brand span {
  color: var(--local-gold);
}

.local-nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.local-nav-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 7px 10px;
  color: #e8ecef;
  font-size: .9rem;
  font-weight: 750;
  text-decoration: none;
}

.local-hero {
  min-height: 560px;
  overflow: hidden;
  color: #fff;
  background: var(--local-night);
}

.local-hero-grid {
  display: grid;
  min-height: 560px;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 54px;
}

.local-hero-copy {
  align-self: center;
  padding: 58px 0 62px;
}

.local-kicker {
  display: block;
  margin: 0 0 14px;
  color: #8de3d8;
  font-size: .84rem;
  font-weight: 850;
}

.local-hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 50px;
  font-weight: 900;
  line-height: 1.05;
}

.local-hero-lead {
  max-width: 690px;
  margin: 20px 0 0;
  color: #d4dadd;
  font-size: 1.1rem;
}

.local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.local-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.local-button-primary {
  color: #171a1d;
  background: var(--local-gold);
}

.local-button-secondary {
  color: #fff;
  background: transparent;
  border-color: #727b82;
}

.local-entity-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 27px;
  color: #cbd1d5;
  font-size: .86rem;
}

.local-entity-proof strong {
  color: #fff;
}

.local-portrait {
  position: relative;
  align-self: end;
  margin: 0;
}

.local-portrait img {
  display: block;
  width: 330px;
  height: 410px;
  object-fit: cover;
  object-position: center 28%;
}

.local-portrait figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 14px;
  color: #fff;
  background: var(--local-teal);
  font-size: .81rem;
  font-weight: 800;
}

.local-tool-band {
  background: var(--local-white);
  border-bottom: 1px solid var(--local-line);
}

.local-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.local-tool {
  min-width: 0;
  padding: 24px 26px;
  border-left: 1px solid var(--local-line);
}

.local-tool:first-child {
  border-left: 0;
}

.local-tool b {
  display: block;
  color: var(--local-teal);
  font-size: .8rem;
  text-transform: uppercase;
}

.local-tool strong {
  display: block;
  margin-top: 5px;
  font-size: 1.03rem;
}

.local-tool a {
  display: inline-block;
  margin-top: 7px;
  color: #765300;
  font-weight: 850;
}

.local-band {
  padding: 62px 0;
}

.local-band-white {
  background: var(--local-white);
}

.local-band-dark {
  color: #fff;
  background: #252c31;
}

.local-section-head {
  max-width: 790px;
  margin-bottom: 32px;
}

.local-section-head h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.18;
}

.local-section-head p {
  margin: 11px 0 0;
  color: var(--local-muted);
  font-size: 1.01rem;
}

.local-band-dark .local-section-head p {
  color: #cbd1d5;
}

.local-source-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 24px;
}

.local-source {
  min-width: 0;
  padding-top: 15px;
  border-top: 4px solid var(--local-gold);
}

.local-source:nth-child(3n + 2) {
  border-color: var(--local-teal);
}

.local-source:nth-child(3n) {
  border-color: var(--local-coral);
}

.local-source span {
  display: block;
  color: var(--local-muted);
  font-size: .78rem;
  font-weight: 800;
}

.local-source h3 {
  margin: 5px 0 7px;
  font-size: 1.04rem;
}

.local-source p {
  margin: 0;
  color: var(--local-muted);
}

.local-source a {
  display: inline-block;
  margin-top: 9px;
  color: #765300;
  font-weight: 850;
}

.local-human-band {
  color: #fff;
  background: var(--local-teal);
}

.local-human-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding-top: 38px;
  padding-bottom: 38px;
}

.local-human-grid h2 {
  margin: 0;
  font-size: 1.65rem;
}

.local-human-grid p {
  max-width: 760px;
  margin: 7px 0 0;
  color: #e5f4f2;
}

.local-human-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px;
}

.local-human-actions .local-button-primary {
  background: var(--local-gold);
}

.local-human-actions .local-button-secondary {
  border-color: #b4dbd6;
}

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

.local-question,
.local-process {
  min-width: 0;
  padding-top: 17px;
  border-top: 1px solid var(--local-line);
}

.local-question strong,
.local-process h3 {
  display: block;
  margin: 0 0 7px;
  font-size: 1.04rem;
}

.local-question p,
.local-process p {
  margin: 0;
  color: var(--local-muted);
}

.local-process {
  position: relative;
  padding-left: 48px;
  border-color: #5a6369;
}

.local-process b {
  position: absolute;
  top: 13px;
  left: 0;
  display: flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: #171a1d;
  background: var(--local-gold);
  border-radius: 50%;
}

.local-process p {
  color: #cbd1d5;
}

.local-faq details {
  padding: 16px 0;
  border-top: 1px solid var(--local-line);
}

.local-faq details:last-child {
  border-bottom: 1px solid var(--local-line);
}

.local-faq summary {
  cursor: pointer;
  font-weight: 850;
}

.local-faq details p {
  max-width: 860px;
  margin: 9px 0 0;
  color: var(--local-muted);
}

.local-footer {
  padding: 25px 0;
  color: #aeb6bb;
  background: #0b0e10;
  font-size: .82rem;
}

.local-footer .local-shell {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.local-footer a {
  color: #e0c066;
}

.local-mobile-cta {
  display: none;
}

@media (max-width: 900px) {
  .local-hero h1 {
    font-size: 42px;
  }

  .local-hero-grid {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 25px;
  }

  .local-portrait img {
    width: 210px;
    height: 285px;
  }

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

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

  .local-human-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body.local-page {
    padding-bottom: 66px;
  }

  .local-shell {
    padding-right: 15px;
    padding-left: 15px;
  }

  .local-nav {
    height: 58px;
  }

  .local-nav-links a:not(:last-child) {
    display: none;
  }

  .local-hero,
  .local-hero-grid {
    min-height: 610px;
  }

  .local-hero-grid {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 0;
  }

  .local-hero-copy {
    padding: 34px 0 22px;
  }

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

  .local-hero-lead {
    font-size: 1rem;
  }

  .local-actions .local-button {
    width: 100%;
  }

  .local-portrait {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 20px;
  }

  .local-portrait img {
    width: 104px;
    height: 104px;
    flex: 0 0 auto;
  }

  .local-portrait figcaption {
    position: static;
    padding: 0;
    background: transparent;
  }

  .local-tool-grid,
  .local-source-grid,
  .local-question-grid,
  .local-process-grid {
    grid-template-columns: 1fr;
  }

  .local-tool {
    padding: 18px 15px;
    border-top: 1px solid var(--local-line);
    border-left: 0;
  }

  .local-tool:first-child {
    border-top: 0;
  }

  .local-band {
    padding: 44px 0;
  }

  .local-section-head h2 {
    font-size: 1.65rem;
  }

  .local-human-actions .local-button {
    width: 100%;
  }

  .local-mobile-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: var(--local-night);
    border-top: 1px solid #394047;
  }

  .local-mobile-cta .local-button {
    min-height: 48px;
    padding: 9px;
    font-size: .86rem;
  }
}
