:root {
  --navy-950: #061326;
  --navy-900: #071a33;
  --navy-800: #0b294c;
  --navy-700: #123b67;
  --yellow-500: #ffbf00;
  --yellow-400: #ffd34d;
  --cream: #f7f5ef;
  --paper: #ffffff;
  --ink: #102033;
  --muted: #58677a;
  --line: #dfe5eb;
  --green: #128c4b;
  --shadow: 0 18px 50px rgb(4 21 41 / 10%);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--yellow-500);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: 1.25rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--yellow-500);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.utility-bar {
  color: #e6edf5;
  background: var(--navy-950);
  font-size: 0.82rem;
}

.utility-bar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar p {
  margin: 0;
}

.utility-bar a {
  color: var(--yellow-400);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgb(255 255 255 / 95%);
  border-bottom: 1px solid rgb(7 26 51 / 8%);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  width: min(250px, 30vw);
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

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

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li a {
  position: relative;
  color: var(--navy-900);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav li a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--yellow-500);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav li a:hover::after,
.site-nav li a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--navy-900);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.menu-toggle__icon {
  width: 20px;
  display: grid;
  gap: 4px;
}

.menu-toggle__icon span {
  width: 100%;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  border: 2px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  font-size: 0.92rem;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgb(3 19 37 / 16%);
}

.button--small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.86rem;
}

.button--dark {
  color: white;
  background: var(--navy-900);
}

.button--yellow {
  color: var(--navy-950);
  background: var(--yellow-500);
}

.button--outline-light {
  color: white;
  background: transparent;
  border-color: rgb(255 255 255 / 48%);
}

.button--outline-light:hover {
  background: rgb(255 255 255 / 10%);
}

.button--full {
  width: 100%;
}

.eyebrow {
  margin-bottom: 16px;
  color: #a36e00;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--yellow-400);
}

.section {
  padding-block: clamp(62px, 6vw, 88px);
}

.section--soft {
  background: var(--cream);
}

.section--navy {
  color: #dfe9f4;
  background: var(--navy-900);
}

.section--navy h2,
.section--navy h3 {
  color: white;
}

.section--intro {
  background: linear-gradient(180deg, #fff 0%, #f9fafb 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: var(--navy-900);
  background-image: linear-gradient(90deg, rgb(5 18 35 / 98%) 0%, rgb(5 18 35 / 92%) 32%, rgb(5 18 35 / 62%) 54%, rgb(5 18 35 / 18%) 76%, rgb(5 18 35 / 6%) 100%), var(--hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero::before {
  display: none;
}

.hero__glow {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.14;
}

.hero__glow--one {
  top: -250px;
  right: -80px;
  background: var(--yellow-500);
}

.hero__glow--two {
  bottom: -330px;
  left: 25%;
  background: #3d8ed8;
}

.hero__grid {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: center;
  gap: 40px;
  padding-block: 68px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: white;
  font-size: clamp(3rem, 4vw, 4rem);
}

.hero__lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: #edf3f8;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__actions .button {
  min-height: 48px;
  padding-inline: 18px;
}

.hero__note {
  margin: 18px 0 0;
  color: #aab9c9;
  font-size: 0.85rem;
}

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

.testimonial-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 44px rgb(7 26 51 / 7%);
}

.testimonial-card__route {
  margin-bottom: 18px;
  color: #986700;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-card h3 {
  margin-bottom: 14px;
  font-size: 1.18rem;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.testimonial-card footer {
  display: grid;
  gap: 3px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-card footer strong {
  color: var(--navy-900);
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 0.78rem;
}

.hero__panel {
  padding: 34px;
  background: rgb(255 255 255 / 8%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 90px rgb(0 0 0 / 24%);
  backdrop-filter: blur(18px);
}

.hero__panel-label {
  color: var(--yellow-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__panel ol {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.hero__panel li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.hero__panel li > span {
  color: var(--yellow-400);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero__panel li div {
  display: grid;
  gap: 3px;
}

.hero__panel small {
  color: #aebccc;
}

.hero__panel > a {
  display: flex;
  justify-content: space-between;
  color: white;
  font-weight: 850;
  text-decoration: none;
}

.hero__visual {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #122943;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgb(0 0 0 / 28%);
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgb(5 18 35 / 20%) 0%, transparent 34%);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.hero__visual-overlay {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 28px;
}

.hero__visual-overlay div {
  display: grid;
}

.hero__visual-overlay span {
  color: var(--yellow-400);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__visual-overlay strong {
  color: white;
  font-size: 1.25rem;
}

.hero__visual-overlay p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: #d7e1eb;
  font-size: 0.78rem;
  font-weight: 750;
  white-space: nowrap;
}

.hero__visual-overlay i {
  width: 4px;
  height: 4px;
  display: block;
  background: var(--yellow-500);
  border-radius: 50%;
}

.trust-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: -46px;
  transform: translateY(50%);
  color: var(--ink);
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.trust-strip > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.trust-strip > div:last-child {
  border: 0;
}

.trust-strip span {
  grid-row: 1 / 3;
  color: #8a5b00;
  font-size: 1.25rem;
  font-weight: 900;
}

.trust-strip small {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.split-heading h2,
.split-heading p {
  margin-bottom: 0;
}

.split-heading > p {
  max-width: 720px;
  margin-inline: auto;
  color: var(--muted);
}

.split-heading > .text-link {
  justify-self: center;
}

.split-heading--light > p {
  color: #bdc9d6;
}

.quick-answer {
  padding-block: 30px;
  background: white;
  border-bottom: 1px solid var(--line);
}

.quick-answer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 28px 32px;
  background: var(--cream);
  border: 1px solid #e5dfd1;
  border-radius: 18px;
}

.quick-answer .eyebrow {
  margin-bottom: 8px;
}

.quick-answer h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.quick-answer p {
  margin: 0;
  color: var(--muted);
}

.home-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.home-service-card {
  position: relative;
  min-height: 160px;
  display: grid;
  grid-template-columns: 34px 1fr 18px;
  align-items: start;
  gap: 14px;
  padding: 22px;
  color: var(--navy-900);
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.home-service-card:hover {
  transform: translateY(-3px);
  border-color: #d9a600;
  box-shadow: 0 14px 34px rgb(7 26 51 / 9%);
}

.home-service-card > span,
.home-service-card > b {
  color: #9a6800;
  font-size: 0.8rem;
  font-weight: 900;
}

.home-service-card > b {
  justify-self: end;
}

.home-service-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.home-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.neighborhood-directory {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 12px 42px;
}

.neighborhood-directory ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #d7dee6;
}

.neighborhood-directory li {
  margin: 0;
  border-bottom: 1px solid #d7dee6;
}

.neighborhood-directory a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 6px;
  color: var(--navy-900);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 160ms ease, padding 160ms ease, background 160ms ease;
}

.neighborhood-directory a:hover {
  padding-inline: 12px;
  color: #815700;
  background: #fff9df;
}

.neighborhood-directory b {
  flex: 0 0 auto;
  color: #9a6800;
}

.area-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.area-shortcuts a {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  color: white;
  background: var(--navy-900);
  border-radius: 14px;
  text-decoration: none;
}

.area-shortcuts span {
  color: var(--yellow-400);
  font-size: 0.82rem;
}

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.card-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.card-grid--five {
  grid-template-columns: repeat(5, 1fr);
}

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 32px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #e3b127;
  box-shadow: var(--shadow);
}

.feature-card__number {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 42px;
  padding: 8px;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

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

.text-link {
  color: var(--navy-900);
  font-weight: 850;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link--light {
  color: var(--yellow-400);
}

.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.local-grid__copy p:not(.eyebrow) {
  color: #bdc9d6;
}

.location-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.location-list article {
  min-height: 220px;
  padding: 26px;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 16px;
}

.location-list article > span {
  display: inline-flex;
  min-width: 48px;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  padding: 5px 10px;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
}

.location-list h3 {
  margin-bottom: 8px;
}

.location-list p {
  margin: 0;
  color: #aebdcb;
  font-size: 0.95rem;
}

.expertise-list {
  grid-template-columns: repeat(2, 1fr);
}

.expertise-list article {
  min-height: 190px;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.region-card {
  position: relative;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  color: var(--navy-900);
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.region-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  content: "";
  background: var(--yellow-500);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 160ms ease;
}

.region-card:hover {
  transform: translateY(-3px);
  border-color: #ddad27;
  box-shadow: 0 14px 34px rgb(7 26 51 / 10%);
}

.region-card:hover::before {
  transform: scaleY(1);
}

.region-card span {
  padding-right: 28px;
  font-weight: 850;
}

.region-card small {
  margin-top: 3px;
  color: var(--muted);
}

.region-card b {
  position: absolute;
  top: 18px;
  right: 18px;
  color: #a06b00;
}

.region-card--featured {
  color: white;
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.region-card--featured small,
.region-card--featured b {
  color: var(--yellow-400);
}

.region-grid--special {
  grid-template-columns: repeat(2, 1fr);
}

.region-grid--special .region-card {
  min-height: 96px;
  justify-content: center;
  padding: 18px 22px;
}

.region-grid--compact {
  grid-template-columns: repeat(5, 1fr);
}

.section-action {
  margin-top: 36px;
  text-align: center;
}

.home-service-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.home-service-links a {
  display: grid;
  gap: 5px;
  padding: 22px;
  color: white;
  background: var(--navy-900);
  border-radius: 14px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.home-service-links a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.home-service-links span {
  color: var(--yellow-400);
  font-size: 0.88rem;
}

.price-preview__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(50px, 9vw, 120px);
}

.price-preview__card {
  position: relative;
  padding: 38px;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.price-preview__badge {
  display: inline-block;
  padding: 7px 11px;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 7px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-preview__card ol {
  margin: 30px 0;
  padding-left: 25px;
  color: white;
}

.price-preview__card li {
  padding: 8px 0 8px 6px;
}

.faq-list {
  max-width: 920px;
}

.faq-list details {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-list details + details {
  margin-top: 12px;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  color: var(--navy-900);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  font-size: 1.5rem;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 760px;
  margin: -4px 24px 24px;
  color: var(--muted);
}

.contact-band {
  padding-block: 70px;
  color: white;
  background: linear-gradient(105deg, var(--navy-950), var(--navy-800));
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.contact-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
}

.contact-band h2 {
  margin-bottom: 12px;
  color: white;
}

.contact-band p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #c3d0dc;
}

.contact-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.breadcrumb {
  padding-block: 16px;
  font-size: 0.82rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  margin-left: 9px;
  color: #8e9aaa;
  content: "/";
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb span {
  color: var(--navy-900);
  font-weight: 700;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  color: #d5e0eb;
  background: var(--navy-900);
}

.inner-hero::after {
  position: absolute;
  right: -130px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  content: "";
  background: radial-gradient(circle, rgb(255 191 0 / 24%), transparent 68%);
}

.inner-hero__grid {
  position: relative;
  z-index: 1;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.45fr);
  align-items: center;
  gap: 70px;
  padding-block: 76px;
}

.inner-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  color: white;
  font-size: clamp(2.55rem, 5vw, 4.9rem);
}

.inner-hero .lead {
  max-width: 820px;
  margin: 0;
  color: #c5d1dc;
  font-size: 1.15rem;
}

.inner-hero__aside {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 18px;
}

.inner-hero__aside > span {
  color: var(--yellow-400);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inner-hero__aside strong {
  color: white;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}

.inner-hero__aside small {
  margin-top: 8px;
  color: #aebccc;
}

.alphabet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.alphabet-grid a {
  position: relative;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 48px 18px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  text-decoration: none;
}

.alphabet-grid a:hover {
  border-color: #d5a51c;
}

.alphabet-grid span {
  color: var(--navy-900);
  font-weight: 850;
}

.alphabet-grid small {
  color: var(--muted);
}

.alphabet-grid b {
  position: absolute;
  right: 20px;
  color: #9d6c00;
}

.prose-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(50px, 9vw, 120px);
}

.prose-grid p:not(.eyebrow) {
  color: var(--muted);
}

.section--navy .prose-grid p:not(.eyebrow) {
  color: #bdc9d6;
}

.service-catalog {
  display: grid;
  gap: 20px;
}

.service-catalog article {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.service-catalog article > span {
  color: #a67500;
  font-size: 2.2rem;
  font-weight: 900;
}

.service-catalog h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.service-catalog article p:not(.eyebrow) {
  max-width: 800px;
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 48px;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.check-list li::before {
  position: absolute;
  left: 18px;
  color: #a16c00;
  content: "✓";
  font-weight: 900;
}

.check-list--light li {
  border-color: rgb(255 255 255 / 15%);
}

.check-list--light li::before {
  color: var(--yellow-400);
}

.price-steps {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(350px, 1.15fr);
  align-items: center;
  gap: 80px;
}

.message-example {
  padding: 36px;
  color: #dbe6ef;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.message-example > span {
  color: var(--yellow-400);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.message-example p {
  margin-block: 22px;
}

.message-example a {
  color: white;
  font-weight: 850;
  text-decoration: none;
}

.price-summary-strip {
  padding-block: 24px;
  background: white;
  border-bottom: 1px solid var(--line);
}

.price-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--cream);
  border: 1px solid #e2dac8;
  border-radius: 16px;
}

.price-summary article {
  display: grid;
  gap: 3px;
  padding: 20px 24px;
  border-right: 1px solid #e2dac8;
}

.price-summary article:last-child {
  border-right: 0;
}

.price-summary span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.price-summary strong {
  color: var(--navy-900);
  font-size: 1.18rem;
}

.price-calculator {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: stretch;
  gap: 18px;
  max-width: 920px;
}

.price-calculator__formula,
.calculator-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 22px;
}

.price-calculator__formula {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #dce7f2;
  background: var(--navy-900);
}

.price-calculator__formula span {
  margin-bottom: 10px;
  color: var(--yellow-400);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-calculator__formula strong {
  color: white;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  line-height: 1.1;
}

.price-calculator__formula p {
  max-width: 520px;
  margin: 20px 0 0;
  color: #b8c7d6;
}

.calculator-card {
  background: var(--cream);
  border: 1px solid #e2dac8;
}

.calculator-card label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy-900);
  font-weight: 850;
}

.calculator-card__field {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 24px;
  overflow: hidden;
  background: white;
  border: 2px solid #ccd5df;
  border-radius: 12px;
}

.calculator-card__field:focus-within {
  border-color: #bd8500;
  box-shadow: 0 0 0 3px rgb(255 191 0 / 22%);
}

.calculator-card input {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  color: var(--navy-900);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 850;
}

.calculator-card__field span {
  padding-right: 14px;
  color: var(--muted);
  font-weight: 800;
}

.calculator-card > small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.calculator-card output {
  display: block;
  margin-block: 2px 4px;
  color: var(--navy-900);
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.calculator-card > p {
  margin: 0;
  color: #8b6200;
  font-size: 0.86rem;
  font-weight: 800;
}

.route-table-wrap {
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 36px rgb(7 26 51 / 6%);
}

.route-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.route-table caption {
  padding: 15px 20px;
  color: var(--navy-900);
  background: #fff9df;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: left;
}

.route-table th,
.route-table td {
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.route-table th {
  color: white;
  background: var(--navy-900);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.route-table td:first-child {
  color: var(--navy-900);
  font-weight: 800;
}

.route-table td:last-child {
  color: #825900;
  font-weight: 900;
  white-space: nowrap;
}

.route-table td:nth-child(2),
.route-table td:nth-child(3) {
  white-space: nowrap;
}

.price-table-section .route-table-wrap {
  max-width: 1040px;
  margin-inline: auto;
}

.route-table tr:last-child td {
  border-bottom: 0;
}

.rate-note {
  margin: 0;
  padding: 18px 20px;
  color: var(--muted);
  background: #fff9df;
  border-top: 1px solid #ead89c;
  font-size: 0.86rem;
}

.airport-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.airport-grid article {
  min-height: 350px;
  padding: 42px;
  background: var(--navy-900);
  border-radius: var(--radius-lg);
}

.airport-grid article > span {
  display: inline-flex;
  padding: 8px 12px;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 8px;
  font-weight: 900;
}

.airport-grid h2 {
  margin-top: 70px;
  color: white;
}

.airport-grid p {
  color: #bdc9d6;
}

.mini-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  color: var(--navy-900);
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.mini-card b {
  color: #9d6a00;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.principles-grid article {
  min-height: 230px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.principles-grid b {
  color: #9d6a00;
}

.principles-grid h3 {
  margin-top: 45px;
}

.principles-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: start;
  gap: 70px;
}

.contact-options {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-option {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 138px;
  padding: 22px 24px;
  color: white;
  background: var(--navy-900);
  border-radius: 18px;
  text-decoration: none;
}

.contact-option > span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 900;
}

.contact-option--green {
  background: #0d6c3a;
}

.contact-option--green > span {
  color: white;
  background: #18a85d;
}

.contact-option div {
  display: grid;
}

.contact-option small,
.contact-option p {
  color: #bdc9d6;
}

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

.contact-option p {
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.contact-checklist ol {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-checklist li {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-checklist li span {
  color: #9a6800;
  font-size: 0.82rem;
  font-weight: 900;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin-top: 50px;
  font-size: 2rem;
}

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

.legal-copy a {
  color: var(--navy-700);
  font-weight: 800;
}

.legal-updated {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}

.local-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 1.15fr);
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.local-detail__grid p:not(.eyebrow) {
  color: var(--muted);
}

.point-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.point-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.point-list span {
  color: #986500;
  font-size: 0.8rem;
  font-weight: 900;
}

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

.scenario-grid article {
  min-height: 260px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.scenario-grid b {
  color: #9a6800;
}

.scenario-grid h3 {
  margin-top: 46px;
}

.scenario-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.route-note__grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: center;
  gap: clamp(45px, 8vw, 100px);
}

.route-note__marker {
  position: relative;
  width: 190px;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-950);
  background: var(--yellow-500);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
}

.route-note__marker::after {
  position: absolute;
  inset: 25px;
  content: "";
  background: white;
  border-radius: 50%;
}

.route-note__marker b {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  transform: rotate(45deg);
}

.route-note__grid > div:last-child p:not(.eyebrow) {
  color: var(--muted);
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  align-items: center;
  gap: 80px;
}

.request-grid > div p:last-child {
  color: #bdc9d6;
}

.request-grid ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-grid li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.request-grid li > span {
  color: var(--yellow-400);
  font-size: 0.8rem;
  font-weight: 900;
}

.request-grid li div {
  display: grid;
}

.request-grid small {
  color: #9fb0c0;
}

.not-found {
  min-height: 640px;
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--cream);
}

.not-found__inner {
  max-width: 760px;
}

.not-found__inner > span {
  display: block;
  color: var(--yellow-500);
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 950;
  line-height: 0.85;
}

.not-found h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.not-found__inner > p:not(.eyebrow) {
  color: var(--muted);
}

.not-found__inner > div {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.site-footer {
  padding-top: 62px;
  color: #b7c5d2;
  background: var(--navy-950);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 1fr;
  gap: 42px;
  padding-bottom: 48px;
}

.footer-brand {
  width: min(260px, 100%);
  display: block;
  margin-bottom: 22px;
  padding: 10px 14px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
}

.footer-brand img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer__about p {
  max-width: 400px;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: white;
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li + li {
  margin-top: 10px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yellow-400);
}

.site-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__contact p {
  margin-bottom: 6px;
}

.footer-phone {
  margin-bottom: 8px;
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.site-footer__contact small {
  margin-top: 18px;
  color: #8194a7;
}

.site-footer__bottom {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 18px;
  border-top: 1px solid rgb(255 255 255 / 10%);
  color: #8092a4;
  font-size: 0.78rem;
}

.site-footer__bottom p {
  margin: 0;
}

.footer-signature {
  color: inherit;
  font-weight: 850;
}

.footer-domain a {
  color: #aebdcc;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  z-index: 400;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: white;
  background: #16a75b;
  border: 2px solid white;
  border-radius: 50%;
  box-shadow: 0 14px 34px rgb(0 0 0 / 28%);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float::after {
  position: absolute;
  right: 3px;
  bottom: 1px;
  width: 13px;
  height: 13px;
  content: "";
  background: #16a75b;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(22deg);
}

.whatsapp-float span {
  position: relative;
  z-index: 1;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
  transform: rotate(-12deg);
}

.whatsapp-float:hover {
  color: white;
  background: #12894b;
  box-shadow: 0 18px 42px rgb(0 0 0 / 34%);
  transform: translateY(-3px);
}

.whatsapp-float:hover::after {
  background: #12894b;
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--yellow-400);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 82px);
    display: none;
    align-items: stretch;
    padding: 20px;
    overflow-y: auto;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 20px 40px rgb(7 26 51 / 18%);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: grid;
    gap: 0;
  }

  .site-nav li a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav li a::after {
    display: none;
  }

  .nav-call {
    width: 100%;
    margin-top: 16px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__panel {
    max-width: 640px;
  }

  .hero__visual {
    max-width: 760px;
  }

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

  .quick-answer__inner .text-link {
    grid-column: 1 / -1;
  }

  .home-services {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-grid--four,
  .region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-service-links {
    grid-template-columns: 1fr;
  }

  .region-grid--compact {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 1.4fr repeat(2, 0.8fr);
  }

  .site-footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .utility-bar p {
    display: none;
  }

  .utility-bar__inner {
    justify-content: center;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand {
    width: 210px;
  }

  .site-nav {
    max-height: calc(100vh - 72px);
  }

  .hero__grid {
    min-height: 520px;
    align-items: start;
    padding-block: 38px 130px;
  }

  .hero {
    background-image: linear-gradient(180deg, rgb(5 18 35 / 94%) 0%, rgb(5 18 35 / 86%) 42%, rgb(5 18 35 / 62%) 60%, rgb(5 18 35 / 12%) 82%, rgb(5 18 35 / 4%) 100%), var(--hero-image);
    background-position: 68% center;
  }

  .hero__visual img {
    min-height: 0;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.45rem, 10.5vw, 3.5rem);
  }

  .hero__lead {
    margin-bottom: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__actions,
  .contact-band__actions {
    display: grid;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 0;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: -105px;
    transform: translateY(50%);
  }

  .trust-strip > div {
    padding: 17px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section--intro {
    padding-top: 76px;
  }

  .quick-answer__inner,
  .price-calculator,
  .area-shortcuts {
    grid-template-columns: 1fr;
  }

  .price-summary {
    grid-template-columns: 1fr;
  }

  .price-summary article {
    border-right: 0;
    border-bottom: 1px solid #e2dac8;
  }

  .price-summary article:last-child {
    border-bottom: 0;
  }

  .quick-answer__inner {
    gap: 20px;
    padding: 24px;
  }

  .quick-answer__inner .text-link {
    grid-column: auto;
    justify-self: start;
  }

  .route-table-wrap {
    overflow-x: auto;
  }

  .route-table {
    min-width: 700px;
  }

  .split-heading,
  .local-grid,
  .price-preview__grid,
  .prose-grid,
  .price-steps,
  .contact-layout,
  .local-detail__grid,
  .request-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .card-grid--three,
  .card-grid--five,
  .scenario-grid,
  .alphabet-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-list {
    grid-template-columns: 1fr;
  }

  .card-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner-hero__grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 62px;
  }

  .inner-hero__aside {
    min-height: 150px;
  }

  .service-catalog article {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 28px;
  }

  .airport-grid {
    grid-template-columns: 1fr;
  }

  .route-note__grid {
    grid-template-columns: 1fr;
  }

  .route-note__marker {
    width: 140px;
    height: 140px;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__about,
  .site-footer__contact {
    grid-column: 1 / -1;
  }

}

@media (max-width: 560px) {
  .section {
    padding-block: 54px;
  }

  .brand {
    width: 175px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .hero__grid {
    min-height: 500px;
    padding-block: 32px 125px;
  }

  .hero__panel,
  .price-preview__card,
  .message-example {
    padding: 24px;
  }

  .hero__visual {
    border-radius: 20px;
  }

  .hero__visual img {
    min-height: 0;
  }

  .hero__visual-overlay {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 20px;
  }

  .card-grid--three,
  .card-grid--four,
  .card-grid--five,
  .region-grid,
  .region-grid--special,
  .region-grid--compact,
  .location-list,
  .scenario-grid,
  .alphabet-grid,
  .principles-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .home-services {
    grid-template-columns: 1fr;
  }

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

  .neighborhood-directory {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .neighborhood-directory ul + ul {
    border-top: 0;
  }

  .neighborhood-directory a {
    min-height: 44px;
    font-size: 0.84rem;
  }

  .price-calculator__formula,
  .calculator-card {
    padding: 24px;
  }

  .feature-card {
    min-height: 255px;
  }

  .split-heading {
    margin-bottom: 34px;
  }

  .service-catalog article {
    grid-template-columns: 1fr;
  }

  .service-catalog article > span {
    font-size: 1.25rem;
  }

  .contact-option {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 22px;
  }

  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-option > b {
    display: none;
  }

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

  .not-found__inner > div {
    display: grid;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__about,
  .site-footer__contact {
    grid-column: auto;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
