:root {
  --ink: #10202c;
  --ink-strong: #07121a;
  --slate: #506170;
  --muted: #f4f6f8;
  --line: #dfe5ea;
  --white: #ffffff;
  --brand: #f7c948;
  --brand-dark: #d8a900;
  --accent: #168d8f;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(7, 18, 26, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 10px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--brand);
  color: var(--ink-strong);
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--ink-strong);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 24px;
}

.brand {
  flex: 0 0 auto;
  color: var(--white);
  text-decoration: none;
}

.brand img,
.footer-logo {
  width: 210px;
  height: auto;
  object-fit: contain;
}

.city-logo {
  display: inline-grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 230px;
  max-width: 100%;
  color: var(--white);
  line-height: 1;
}

.city-logo-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 3px solid var(--brand);
  border-radius: 50%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--ink);
  color: var(--brand);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.city-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.city-logo-text {
  display: grid;
  gap: 3px;
  min-width: 0;
  text-transform: uppercase;
}

.city-logo-text strong,
.city-logo-text em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.city-logo-text strong {
  font-size: 18px;
  font-weight: 900;
}

.city-logo-text em {
  color: var(--brand);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 4px;
}

.call-link {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-left: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.call-link span {
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: transparent;
  background:
    linear-gradient(var(--white), var(--white)) center 12px / 20px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) center 19px / 20px 2px no-repeat,
    linear-gradient(var(--white), var(--white)) center 26px / 20px 2px no-repeat;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: 6px;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.site-nav > a,
.nav-group-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.site-nav > a:hover,
.site-nav > a:focus-visible,
.nav-group-button:hover,
.nav-group-button:focus-visible,
.site-nav > a.is-active {
  color: var(--brand);
  outline: 0;
}

.nav-group {
  position: relative;
}

.nav-group-button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: grid;
  min-width: 240px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu,
.nav-group.is-open .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: var(--muted);
  outline: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--ink-strong);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #ffd85b;
  box-shadow: none;
  transform: translateY(-1px);
  outline: 0;
}

.button-small {
  min-height: 40px;
  padding: 10px 16px;
  font-size: 14px;
}

.button-dark {
  background: var(--ink-strong);
  color: var(--white);
  box-shadow: none;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #173142;
  box-shadow: none;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(7, 18, 26, 0.94);
  box-shadow: 0 18px 45px rgba(7, 18, 26, 0.24);
}

.floating-call,
.floating-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.floating-call {
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
}

.floating-contact-button {
  padding: 10px 16px;
  background: var(--brand);
  color: var(--ink-strong);
}

.floating-call:hover,
.floating-call:focus-visible,
.floating-contact-button:hover,
.floating-contact-button:focus-visible {
  outline: 3px solid rgba(247, 201, 72, 0.34);
  outline-offset: 2px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 26, 0.74);
}

.contact-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--ink-strong);
  box-shadow: var(--shadow);
}

.contact-dialog h2 {
  margin: 0 0 12px;
  color: var(--ink-strong);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
}

.contact-dialog p:not(.eyebrow) {
  margin: 0 0 22px;
  color: rgba(7, 18, 26, 0.82);
}

.contact-dialog a {
  color: var(--ink-strong);
  font-weight: 900;
  text-decoration: none;
}

.contact-dialog .quote-form {
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-dialog .quote-form .button {
  background: var(--ink-strong);
  color: var(--white);
}

.contact-dialog .quote-form .button:hover,
.contact-dialog .quote-form .button:focus-visible {
  background: #173142;
}

.contact-dialog .field input {
  height: 44px;
}

.contact-dialog .field textarea {
  min-height: 100px;
}

.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(7, 18, 26, 0.2);
  border-radius: 50%;
  background:
    linear-gradient(45deg, transparent 46%, var(--ink-strong) 47% 53%, transparent 54%),
    linear-gradient(-45deg, transparent 46%, var(--ink-strong) 47% 53%, transparent 54%),
    rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.modal-open {
  overflow: hidden;
}

.hero {
  min-height: clamp(520px, 74vh, 760px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(7, 18, 26, 0.86), rgba(7, 18, 26, 0.68) 48%, rgba(7, 18, 26, 0.2)),
    var(--hero-image) center 35% / cover no-repeat;
  color: var(--white);
}

.hero-content {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0 92px;
}

.kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.hero p:not(.kicker) {
  max-width: 650px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 22px);
}

.stats-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(var(--container), calc(100% - 48px));
  margin: -58px auto 72px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}

.stats-feature {
  grid-column: span 2;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.stats-feature h2 {
  margin: 0 0 12px;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
  overflow-wrap: break-word;
}

.stats-feature h2 span {
  color: var(--brand);
}

.stats-feature p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.stat strong {
  color: var(--ink-strong);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.stat span {
  margin-top: 10px;
  color: var(--slate);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(90px, 1fr));
  align-items: center;
  gap: 28px;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto 80px;
  padding: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-strip h2 {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.logo-strip img {
  max-height: 48px;
  margin: 0 auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

.network-badge-section {
  width: min(var(--container), calc(100% - 48px));
  margin: -42px auto 82px;
}

.network-badge {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(7, 18, 26, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    linear-gradient(135deg, var(--brand), var(--accent));
  color: var(--ink-strong);
  text-decoration: none;
  box-shadow: 0 18px 45px rgba(7, 18, 26, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.network-badge:hover,
.network-badge:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 22px 52px rgba(7, 18, 26, 0.16);
}

.network-badge-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: 3px solid var(--brand);
  border-radius: 50%;
  background: var(--ink-strong);
  color: var(--brand);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.network-badge-icon::after {
  content: "";
  position: absolute;
  right: -2px;
  bottom: 5px;
  width: 18px;
  height: 10px;
  border-bottom: 4px solid var(--white);
  border-left: 4px solid var(--white);
  transform: rotate(-45deg);
}

.network-badge-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.network-badge-copy .eyebrow {
  margin: 0;
}

.network-badge-copy strong {
  display: block;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.network-badge-copy span:last-child {
  color: var(--slate);
  font-weight: 700;
}

.network-badge-action {
  justify-self: end;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: var(--ink-strong);
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.section {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-tight {
  padding-top: 48px;
  padding-bottom: 52px;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - var(--container)) / 2));
  padding-left: max(24px, calc((100% - var(--container)) / 2));
  background: var(--muted);
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.cta-band h2,
.contact-strip h2,
.contact-grid h2 {
  margin: 0 0 16px;
  color: var(--ink-strong);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.section-heading p:last-child,
.split-copy p,
.cta-band p {
  color: var(--slate);
}

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

.service-card {
  display: grid;
  grid-template-rows: 230px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 18, 26, 0.08);
}

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

.service-card div {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--ink-strong);
  font-size: 24px;
  line-height: 1.18;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--slate);
}

.text-link {
  margin-top: auto;
  color: var(--accent);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: " ->";
}

.feature-section {
  padding-top: 36px;
}

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

.feature-card,
.credential-card {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 18, 26, 0.06);
}

.feature-card h3,
.credential-card h3,
.practice-panel h3 {
  margin: 0 0 12px;
  color: var(--ink-strong);
  font-size: 23px;
  line-height: 1.18;
}

.feature-card p,
.credential-card p {
  margin: 0;
  color: var(--slate);
}

.credentials-section .section-heading {
  margin-bottom: 32px;
}

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

.credential-card {
  min-height: 220px;
}

.quote-spotlight {
  width: 100%;
  margin: 0;
  padding: 76px max(24px, calc((100% - var(--container)) / 2));
  background:
    linear-gradient(135deg, rgba(7, 18, 26, 0.96), rgba(16, 32, 44, 0.94)),
    var(--hero-image, none);
  color: var(--white);
}

.quote-spotlight-light {
  background: var(--white);
  color: var(--ink);
}

.quote-spotlight-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 54px;
}

.quote-copy h1,
.quote-copy h2 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.quote-spotlight-light .quote-copy h1,
.quote-spotlight-light .quote-copy h2 {
  color: var(--ink-strong);
}

.quote-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.quote-spotlight-light .quote-copy p {
  color: var(--slate);
}

.quote-points {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.quote-points li {
  position: relative;
  padding-left: 30px;
  color: var(--white);
  font-weight: 800;
}

.quote-spotlight-light .quote-points li {
  color: var(--ink);
}

.quote-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--brand);
}

.quote-direct {
  margin-bottom: 0;
  font-weight: 900;
}

.quote-direct a {
  color: var(--brand);
  text-decoration: none;
}

.quote-spotlight-light .quote-direct a {
  color: var(--ink-strong);
}

.quote-form-wrap {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--ink-strong);
  box-shadow: var(--shadow);
}

.quote-form-wrap h3 {
  margin: 0 0 16px;
  color: var(--ink-strong);
  font-size: 26px;
  line-height: 1.1;
}

.quote-form-wrap .quote-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quote-form-wrap .button {
  width: 100%;
  background: var(--ink-strong);
  color: var(--white);
}

.practice-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 34px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.practice-panel h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.practice-panel h3 {
  color: var(--white);
}

.practice-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.practice-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.practice-list div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.practice-list dt {
  color: var(--brand);
  font-weight: 900;
}

.practice-list dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 54px;
}

.split-reverse .split-media {
  order: 2;
}

.split-media {
  min-width: 0;
}

.split-media img {
  width: 100%;
  min-height: 520px;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.split-media-contain {
  align-self: center;
}

.split-media-contain img {
  aspect-ratio: auto;
  min-height: 0;
  padding: 0;
  background: transparent;
  object-fit: contain;
  box-shadow: none;
  border-radius: 0;
}

.split-copy {
  min-width: 0;
}

.split-copy h2 {
  max-width: 650px;
}

.split-copy p {
  margin: 0 0 22px;
  font-size: 17px;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 43%, var(--ink-strong) 44% 57%, transparent 58%) 5px 6px / 8px 8px no-repeat,
    var(--brand);
}

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

.testimonial {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.testimonial blockquote {
  margin: 0 0 24px;
  color: var(--slate);
}

.testimonial figcaption {
  margin-top: auto;
}

.testimonial strong,
.testimonial span {
  display: block;
}

.testimonial strong {
  color: var(--ink-strong);
}

.testimonial span {
  color: var(--slate);
  font-size: 14px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: min(var(--container), calc(100% - 48px));
  margin: 40px auto 92px;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--brand);
  color: var(--ink-strong);
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band .eyebrow {
  color: rgba(7, 18, 26, 0.78);
}

.cta-band p {
  max-width: 720px;
  margin: 0;
}

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

.pill-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink-strong);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  box-shadow: 0 8px 22px rgba(7, 18, 26, 0.06);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 18, 26, 0.05);
}

.faq-list summary {
  padding: 20px 22px;
  color: var(--ink-strong);
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--slate);
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  align-items: start;
  gap: 46px;
}

.contact-strip p,
.contact-grid p {
  color: var(--slate);
}

.contact-strip a,
.contact-grid a,
.site-footer a {
  color: inherit;
  text-decoration: none;
}

.contact-strip a:hover,
.contact-grid a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.quote-form {
  display: grid;
  gap: 16px;
  width: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form-compact {
  padding: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink-strong);
  font-size: 14px;
  font-weight: 900;
}

.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cfd8df;
  border-radius: 6px;
  background: #fbfcfd;
  color: var(--ink);
  line-height: 1.4;
}

.field input {
  height: 48px;
  padding: 0 14px;
}

.field textarea {
  resize: vertical;
  min-height: 132px;
  padding: 13px 14px;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(22, 141, 143, 0.18);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.45;
}

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

.contact-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(7, 18, 26, 0.06);
}

.contact-grid h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.contact-details {
  padding-top: 34px;
}

.contact-details-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--ink-strong);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-details-copy {
  align-self: center;
}

.contact-details-copy h2 {
  max-width: 430px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.contact-details-copy p:not(.eyebrow) {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-detail-list {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.contact-detail-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  text-decoration: none;
}

.contact-detail-item + .contact-detail-item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-item:hover,
.contact-detail-item:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
}

.contact-detail-item span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-detail-item strong {
  min-width: 0;
  color: var(--white);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.directory-hero {
  min-height: 100vh;
  padding-top: 86px;
  padding-bottom: 86px;
}

.directory-hero h1 {
  max-width: 800px;
  margin: 0 0 18px;
  color: var(--ink-strong);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
}

.directory-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 34px;
  color: var(--slate);
  font-size: 19px;
}

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

.location-card,
.blog-card {
  display: grid;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(7, 18, 26, 0.06);
}

.location-card {
  align-content: space-between;
  border-top: 6px solid var(--brand);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--brand) 12%, white), white 54%);
}

.location-card:hover,
.location-card:focus-visible,
.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-2px);
  outline: 3px solid color-mix(in srgb, var(--brand) 36%, transparent);
  outline-offset: 2px;
}

.location-card span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.location-card strong {
  color: var(--ink-strong);
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.04;
}

.location-card em {
  color: var(--slate);
  font-style: normal;
  font-weight: 800;
}

.blog-card {
  align-content: start;
}

.blog-card h3 {
  margin: 0 0 12px;
  color: var(--ink-strong);
  font-size: 25px;
  line-height: 1.14;
}

.blog-card p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--slate);
}

.blog-article {
  max-width: 920px;
}

.blog-article h1 {
  margin: 0 0 18px;
  color: var(--ink-strong);
  font-size: clamp(40px, 6vw, 66px);
  line-height: 1.02;
}

.blog-article h2 {
  margin: 42px 0 12px;
  color: var(--ink-strong);
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
}

.blog-article p {
  color: var(--slate);
  font-size: 18px;
}

.blog-article .article-intro {
  color: var(--ink);
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 800;
}

.blog-article img {
  width: 100%;
  max-height: 520px;
  margin: 34px 0 8px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.metrics-grid div {
  display: grid;
  align-content: center;
  min-height: 160px;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.metrics-grid strong {
  color: var(--brand);
  font-size: 48px;
  line-height: 1;
}

.metrics-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.site-footer {
  background: var(--ink-strong);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) 1fr 1fr;
  gap: 42px;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 40px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 18px;
}

.site-footer p {
  margin: 14px 0 0;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
}

@media (max-width: 1020px) {
  .stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-feature {
    grid-column: 1 / -1;
  }

  .card-grid,
  .testimonial-grid,
  .contact-grid,
  .location-grid,
  .blog-grid,
  .feature-grid,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .header-top {
    flex-wrap: wrap;
    padding: 14px 18px;
  }

  .call-link {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    order: 3;
    flex: 1 0 100%;
    display: none;
    align-items: stretch;
    justify-content: flex-start;
    gap: 4px;
    padding: 8px 0 4px;
  }

  .site-header.is-open .site-nav {
    display: grid;
  }

  .site-nav > a,
  .nav-group-button {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-group-button {
    justify-content: space-between;
  }

  .nav-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 6px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-group.is-open .nav-menu {
    display: grid;
  }

  .hero {
    min-height: 590px;
    background:
      linear-gradient(180deg, rgba(7, 18, 26, 0.9), rgba(7, 18, 26, 0.64)),
      var(--hero-image) center 35% / cover no-repeat;
  }

  .hero-content {
    width: min(100% - 36px, var(--container));
    padding: 72px 0 104px;
  }

  .stats-panel {
    width: min(100% - 36px, var(--container));
    margin-bottom: 48px;
  }

  .logo-strip,
  .section,
  .cta-band,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 36px, var(--container));
  }

  .logo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 48px;
  }

  .network-badge-section {
    width: min(100% - 36px, var(--container));
    margin-top: -18px;
    margin-bottom: 56px;
  }

  .network-badge {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 16px;
  }

  .network-badge-icon {
    width: 64px;
    height: 64px;
    font-size: 15px;
  }

  .network-badge-action {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .section-muted {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .split,
  .contact-strip,
  .footer-grid,
  .quote-spotlight-inner,
  .practice-panel,
  .contact-details-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .quote-spotlight {
    padding: 58px 18px;
  }

  .quote-spotlight-inner {
    align-items: stretch;
  }

  .split-reverse .split-media {
    order: 0;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 64px;
    padding: 28px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 15px;
  }

  .brand img {
    width: 170px;
    height: auto;
  }

  .city-logo {
    grid-template-columns: 46px minmax(0, 1fr);
    width: 190px;
    gap: 10px;
  }

  .city-logo-mark {
    width: 46px;
    height: 46px;
    font-size: 16px;
  }

  .city-logo-text strong {
    font-size: 15px;
  }

  .city-logo-text em {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero h1 {
    font-size: clamp(34px, 11vw, 46px);
    line-height: 1.03;
  }

  .hero p:not(.kicker) {
    max-width: 100%;
    font-size: 17px;
  }

  .stats-feature h2 {
    font-size: clamp(25px, 8vw, 32px);
  }

  .stats-panel,
  .card-grid,
  .testimonial-grid,
  .contact-grid,
  .location-grid,
  .blog-grid,
  .feature-grid,
  .credential-grid,
  .metrics-grid,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid .testimonial:last-child,
  .card-grid .service-card:last-child {
    grid-column: auto;
  }

  .stats-panel {
    padding: 14px;
  }

  .stat {
    min-height: 128px;
  }

  .card-grid {
    gap: 18px;
  }

  .service-card {
    grid-template-rows: 210px 1fr;
  }

  .service-card div {
    min-height: 0;
  }

  .split-media img {
    min-height: 340px;
    aspect-ratio: 4 / 3;
  }

  .split-media-contain img {
    min-height: 0;
  }

  .section-heading h2,
  .split-copy h2,
  .cta-band h2,
  .contact-strip h2 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .testimonial {
    min-height: 0;
  }

  .quote-form,
  .quote-form-compact {
    padding: 20px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .floating-call,
  .floating-contact-button {
    width: 100%;
    padding-right: 10px;
    padding-left: 10px;
  }

  .floating-call {
    font-size: 0;
  }

  .floating-call::after {
    content: "Call us";
    font-size: 14px;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-dialog {
    max-height: calc(100vh - 32px);
    padding: 26px 20px 22px;
  }

  .contact-details-panel {
    padding: 24px;
  }

  .contact-detail-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }
}
