:root {
  --ink: #142737;
  --navy: #214760;
  --blue: #2f637e;
  --teal: #4d9a9a;
  --mint: #dff0ea;
  --cream: #f7f3eb;
  --paper: #ffffff;
  --line: #d9e2e5;
  --muted: #60717b;
  --gold: #c79b52;
  --shadow: 0 12px 32px rgba(20, 39, 55, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body::selection {
  background: var(--mint);
}

a {
  color: inherit;
}

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

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity .5s ease,
    transform .5s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero .reveal {
  transform: translateY(8px);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 10;
  padding: .7rem 1rem;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 8;
  background: #ffffff;
  border-bottom: 1px solid rgba(217, 226, 229, 0.85);
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.site-header[data-scrolled] {
  background: #ffffff;
  border-bottom-color: rgba(217, 226, 229, 1);
  box-shadow: 0 12px 34px rgba(20, 39, 55, .1);
}

.header-inner,
.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: auto;
  height: 56px;
  max-width: 230px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  color: #243947;
  font-weight: 700;
  font-size: .95rem;
}

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

.site-nav .button {
  color: white;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  text-decoration: none;
  font-weight: 800;
}

.button .fa-solid,
.button .fa-regular,
.text-link .fa-solid,
.text-link .fa-regular {
  font-size: .92em;
}

.button {
  padding: .8rem 1.05rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--navy);
  color: white;
  box-shadow: none;
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
  box-shadow: none;
}

.text-link {
  color: var(--blue);
}

.hero {
  background:
    linear-gradient(120deg, rgba(20, 39, 55, .94), rgba(47, 99, 126, .86)),
    url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1800&q=80") center/cover;
  color: white;
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 56px;
  padding: 76px 0 88px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold) !important;
  font-size: .78rem !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.8vw, 5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.05rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, .88);
  font-size: 1.15rem;
}

.hero-subtitle {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: clamp(.75rem, 1.5vw, .95rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-panel {
  align-self: center;
  padding: 28px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border-radius: var(--radius);
  border: 1px solid rgba(217, 226, 229, .9);
  box-shadow: none;
}

.hero-panel dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.hero-panel div {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-panel dt {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hero-panel dd {
  margin: 5px 0 0;
  font-size: 1.05rem;
  font-weight: 800;
}

.trust-strip {
  background: #fbfaf7;
  border-bottom: 1px solid var(--line);
}

.trust-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
}

.trust-item {
  min-height: 112px;
  padding: 26px 24px;
  background: transparent;
  border-left: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.trust-item span {
  color: var(--muted);
  font-weight: 650;
}

.section {
  padding: 82px 0;
}

.section.alt {
  background: #f4f8f8;
}

.section.navy {
  color: white;
  background: var(--ink);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .55fr);
  gap: 42px;
  align-items: center;
  margin-bottom: 34px;
}

.quote-head {
  align-items: start;
  margin-bottom: 56px;
}

.office-head {
  align-items: center;
}

.office-head > p {
  justify-self: end;
  align-self: center;
  max-width: 520px;
  padding-top: 0;
  text-align: right;
}

.quote-head > p,
.quote-head > .google-rating {
  max-width: 520px;
  padding-top: 20px;
}

.google-rating {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
  width: fit-content;
  min-width: 0;
  padding: 16px 20px;
  text-decoration: none;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.google-mark {
  width: 32px;
  height: 32px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #4285f4;
  border-radius: 50%;
}

.google-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.google-score {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.google-rating strong {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1;
}

.google-stars {
  color: #ffcc00;
  letter-spacing: 0;
}

.stars {
  color: #ffcc00;
  letter-spacing: 0;
}

.google-rating .fa-star,
.stars .fa-star {
  margin-right: 2px;
}

.google-stars {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  line-height: 1;
}

.google-review-count {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 800;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.navy .section-head p,
.navy .muted {
  color: rgba(255,255,255,.74);
}

.navy .quote cite,
.navy .quote figcaption small {
  color: #ffffff;
}

.navy .card h3,
.navy .card p {
  color: var(--ink);
}

.section.navy.reviews-section {
  background: #003399;
}

.navy .eyebrow,
.reviews-section .eyebrow,
.cta-band .eyebrow {
  color: var(--gold);
}

.reviews-section .quote-head h2 {
  color: white;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  max-width: 760px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.blog-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card {
  min-height: 100%;
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.card-media {
  overflow: hidden;
  margin: -26px -26px 22px;
  aspect-ratio: 16 / 10;
  background: #e9f0f1;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card p,
.card p {
  color: var(--muted);
}

.service-card .text-link {
  margin-top: auto;
  justify-content: flex-start;
}

.location-card {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.location-card:hover {
  background: white;
  border-color: rgba(47, 99, 126, .42);
  transform: translateY(-2px);
}

.location-card > span {
  margin-bottom: 28px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.location-card h3 {
  max-width: 12ch;
  margin-bottom: 20px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.location-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.location-card strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--blue);
  font-size: .95rem;
}

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

.feature-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: 52px;
  align-items: center;
}

.portrait {
  overflow: hidden;
  min-height: 460px;
  border-radius: var(--radius);
  box-shadow: none;
}

.portrait img,
.office-feature img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait img {
  object-position: center 18%;
}

.office-feature {
  display: grid;
  grid-template-columns: minmax(0, .62fr) minmax(320px, .38fr);
  gap: 28px;
  align-items: center;
}

.office-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  box-shadow: none;
}

.office-image img {
  object-position: center 54%;
}

.office-copy {
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.office-copy h3 {
  margin-top: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.office-copy p {
  color: var(--muted);
}

.compact-list {
  margin: 22px 0;
}

.office-copy .text-link {
  justify-content: flex-start;
}

.contact-photo {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  margin: -28px -28px 24px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.contact-photo img {
  object-position: center 40%;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
}

.review-actions {
  justify-content: center;
  margin-top: 36px;
}

.review-actions .button.secondary {
  color: white;
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  border-radius: 999px;
}

.quote {
  display: grid;
  align-content: start;
  min-height: 360px;
  margin: 0;
  padding: 42px 38px;
  border-right: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.035);
}

.quote:nth-child(3n) {
  border-right: 0;
}

.quote:nth-child(n + 4) {
  border-top: 1px solid rgba(255,255,255,.16);
}

.quote figcaption {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.22);
}

.quote figcaption small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  font-size: .95rem;
  font-weight: 700;
}

.review-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: white;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  font-size: .9rem;
  font-weight: 900;
}

.stars {
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1;
}

.quote blockquote {
  min-height: 180px;
  margin: 0;
  color: white;
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-style: italic;
  line-height: 1.5;
}

.quote cite {
  display: block;
  color: white;
  font-style: normal;
  font-weight: 800;
}

.local-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 28px;
}

.local-links a {
  display: grid;
  gap: 4px;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.local-links a:hover {
  border-color: rgba(47, 99, 126, .4);
}

.local-links span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.local-links strong {
  color: var(--blue);
}

.map-embed {
  overflow: hidden;
  height: 480px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.page-hero {
  padding: 82px 0 64px;
  background: #f7faf9;
  border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .45fr);
  gap: 44px;
  align-items: center;
}

.page-hero h1 {
  color: var(--ink);
  font-size: clamp(2.25rem, 4.4vw, 4.1rem);
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.breadcrumb span {
  color: var(--ink);
}

.page-summary {
  color: var(--muted);
  font-size: 1.12rem;
}

.fact-box {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.fact-box h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.sidebar .fact-box h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.fact-box p {
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(290px, .28fr);
  gap: 38px;
  align-items: start;
}

.prose h2 {
  margin-top: 52px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: #475b66;
}

.info-grid {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.info-card {
  padding: 28px;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.info-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1.25rem;
  color: var(--ink);
}

.info-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.next-step-panel {
  display: grid;
  grid-template-columns: minmax(260px, .5fr) minmax(0, .85fr);
  gap: 34px;
  align-items: center;
  margin: 42px 0 8px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(47, 99, 126, .08), rgba(130, 176, 165, .08)),
    #f7faf9;
  border: 1px solid rgba(47, 99, 126, .18);
  border-radius: var(--radius);
}

.next-step-panel h2 {
  max-width: 12ch;
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1;
}

.next-step-panel p {
  max-width: 34ch;
  margin-bottom: 0;
}

.next-step-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
}

.next-step-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 16px;
  color: var(--blue);
  text-decoration: none;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(47, 99, 126, .14);
  border-radius: var(--radius-sm);
  font-weight: 800;
}

.next-step-links a:hover {
  background: white;
  border-color: rgba(47, 99, 126, .36);
  transform: translateY(-1px);
}

.blog-post {
  font-size: 1.06rem;
}

.blog-hero-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.source-note {
  margin-top: 44px;
}

.source-note .text-link {
  display: flex;
  justify-content: flex-start;
  min-height: auto;
  margin-top: 10px;
}

.sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.mini-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 0;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.mini-nav a .fa-solid {
  width: 18px;
  color: var(--teal);
  font-size: .9rem;
}

.cta-section {
  border-top: 1px solid rgba(255,255,255,.1);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(280px, .38fr);
  gap: 56px;
  align-items: center;
  color: white;
}

.cta-band h2 {
  max-width: 840px;
  margin-bottom: 20px;
}

.cta-band p {
  max-width: 620px;
  color: rgba(255,255,255,.82);
}

.cta-band .section-actions {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: stretch;
  gap: 12px;
  margin-top: 0;
}

.cta-band .button {
  justify-content: center;
  width: 100%;
}

.faq-wrap {
  display: grid;
  grid-template-columns: minmax(280px, .45fr) minmax(0, .8fr);
  gap: 56px;
  align-items: start;
}

.faq-wrap > div:first-child p:last-child {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 850;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-size: 1.3rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  max-width: 760px;
  margin: -6px 0 22px;
  color: var(--muted);
}

.service-faq {
  margin-top: 34px;
}

.service-faq h2 {
  margin-bottom: 18px;
}

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

.contact-option {
  display: grid;
  gap: 5px;
  padding: 22px;
  color: var(--ink);
  text-decoration: none;
  background: #f7faf9;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-option .fa-solid {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 1.3rem;
}

.contact-option strong {
  font-size: 1.08rem;
}

.contact-option span {
  color: var(--muted);
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .55fr) minmax(320px, .45fr);
  gap: 32px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--muted);
}

.contact-list li > .fa-solid,
.contact-list li > .fa-regular {
  margin-top: .25em;
  color: var(--teal);
}

.contact-list a {
  color: var(--blue);
  font-weight: 800;
}

.hours-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hours-strip div {
  display: grid;
  gap: 3px;
  padding: 16px;
  background: white;
}

.hours-strip .fa-regular {
  color: var(--teal);
  margin-bottom: 5px;
}

.hours-strip strong {
  font-size: .9rem;
}

.hours-strip span {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.form textarea {
  min-height: 136px;
  resize: vertical;
}

.site-footer {
  color: rgba(255,255,255,.78);
  background: #0e1c27;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(150px, .6fr) minmax(150px, .6fr) minmax(360px, 1fr);
  gap: 34px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.site-footer h2,
.site-footer h3 {
  color: var(--gold);
  font-size: 1rem;
}

.site-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  color: rgba(255,255,255,.8);
  text-decoration: none;
}

.site-footer .footer-grid > div:last-child a,
.site-footer .footer-grid > div:last-child p {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.site-footer p .fa-solid,
.site-footer p .fa-regular,
.site-footer a .fa-solid,
.site-footer a .fa-regular {
  width: 16px;
  color: rgba(255,255,255,.58);
}

.footer-bottom a {
  display: inline;
  margin: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  font-size: .9rem;
}

@media (max-width: 980px) {
  .hero-inner,
  .split,
  .page-hero .section-inner,
  .content-grid,
  .contact-grid,
  .section-head,
  .cta-band,
  .faq-wrap {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
  }

  .trust-strip .section-inner,
  .hours-strip,
  .cards-4,
  .cards-3,
  .contact-options,
  .local-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .quote,
  .quote:nth-child(3n) {
    border-right: 1px solid rgba(255,255,255,.16);
  }

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

  .quote:nth-child(n + 3) {
    border-top: 1px solid rgba(255,255,255,.16);
  }

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

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, auto);
  }

  .sidebar {
    position: static;
  }

  .google-rating {
    justify-self: center;
    margin: 0 auto;
    min-width: 0;
  }

  .quote-head {
    text-align: center;
  }

  .quote-head > .google-rating {
    padding-top: 0;
  }

  .cta-band .section-actions {
    justify-content: flex-start;
  }

  .office-head > p {
    justify-self: start;
    padding-top: 0;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .section-inner,
  .hero-inner,
  .footer-inner {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 72px;
  }

  .brand-logo {
    height: 48px;
    max-width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero-inner,
  .section {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.7rem);
  }

  .trust-strip .section-inner,
  .hours-strip,
  .cards-4,
  .cards-3,
  .location-grid,
  .contact-options,
  .local-links,
  .next-step-panel,
  .next-step-links,
  .footer-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote,
  .quote:nth-child(2n),
  .quote:nth-child(3n) {
    border-right: 0;
  }

  .quote:nth-child(n + 2) {
    border-top: 1px solid rgba(255,255,255,.16);
  }

  .google-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    height: 52px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 12px;
    border-radius: 40px;
  }

  .google-mark {
    width: 24px;
    height: 24px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .google-mark img {
    width: 20px;
    height: 20px;
    margin: 0;
    display: block;
  }

  .google-score,
  .google-stars,
  .google-review-count {
    height: auto;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }

  .google-score {
    font-size: 1.1rem;
  }

  .google-stars {
    font-size: 1rem;
  }

  .google-review-count {
    font-size: 0.85rem;
  }

  .quote blockquote {
    min-height: auto;
  }

  .location-card {
    min-height: auto;
  }

  .trust-item {
    min-height: auto;
  }

  .cta-band {
    padding: 30px;
  }

  .portrait {
    min-height: 320px;
  }

  .office-feature {
    grid-template-columns: 1fr;
  }

  .office-copy {
    padding: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
