:root {
  --navy: #031a3d;
  --navy-2: #063b78;
  --blue: #1599f2;
  --blue-soft: #e9f6ff;
  --gold: #087fe6;
  --gold-dark: #0459ae;
  --ink: #10233d;
  --muted: #5a6b7f;
  --line: #d5e5f4;
  --gray: #f3f7fb;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(3, 26, 61, 0.16);
  --radius: 8px;
  --header-height: 96px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  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;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 20px;
  top: -80px;
  z-index: 1000;
  padding: 12px 16px;
  background: var(--gold);
  color: var(--white);
  font-weight: 800;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 18px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  background: rgba(247, 251, 255, 0.95);
  border-bottom: 1px solid rgba(195, 216, 236, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--navy);
  font-weight: 900;
}

.brand-logo {
  width: 88px;
  height: 88px;
  object-fit: contain;
  border-radius: 12px;
  background: #202937;
  box-shadow: 0 12px 30px rgba(3, 26, 61, 0.18);
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.primary-nav a {
  color: #1b3552;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--navy);
  border-color: var(--gold);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(7, 28, 51, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #16a5ff 0%, #087fe6 48%, #0459ae 100%);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, #39b6ff 0%, #0b8cf4 48%, #0566c8 100%);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--line);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold);
}

.btn-email {
  background: var(--blue-soft);
  color: var(--navy);
  border-color: rgba(21, 153, 242, 0.28);
}

.btn-email:hover,
.btn-email:focus-visible {
  background: var(--white);
  border-color: var(--blue);
}

.icon-only {
  width: 48px;
  padding: 0;
}

.hero {
  --hero-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=82");
  position: relative;
  min-height: min(780px, calc(100vh - 8px));
  display: flex;
  align-items: center;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(3, 26, 61, 0.93) 0%, rgba(3, 42, 83, 0.78) 48%, rgba(21, 153, 242, 0.1) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(3, 26, 61, 0), rgba(3, 26, 61, 0.32));
  z-index: -1;
}

.hero-logo {
  width: 142px;
  max-width: 42vw;
  margin: 0 0 18px;
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(2, 10, 24, 0.38), 0 0 38px rgba(21, 153, 242, 0.26);
}

.hero-content {
  width: min(760px, 100%);
  padding: 124px 0 96px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

h1,
.h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 950;
}

h2,
.h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 950;
}

h3 {
  color: var(--navy);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 900;
}

.lead {
  color: inherit;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
}

.hero .lead {
  width: min(680px, 100%);
  color: rgba(255, 255, 255, 0.88);
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: -44px;
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 88px;
  padding: 20px;
  background: var(--white);
  color: var(--navy);
  font-weight: 900;
}

.trust-item svg {
  flex: 0 0 auto;
  color: var(--gold);
}

section {
  padding: 92px 0;
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 38px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

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

.image-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-panel img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.stat-ribbon {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  width: min(250px, calc(100% - 44px));
  padding: 18px;
  color: var(--white);
  background: rgba(7, 28, 51, 0.92);
  border-left: 4px solid var(--gold);
}

.stat-ribbon strong {
  font-size: 32px;
  line-height: 1;
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #25394d;
}

.check-list svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--blue);
}

.band {
  background: var(--gray);
}

.blue-band {
  background: linear-gradient(180deg, #edf8ff 0%, #ffffff 100%);
}

.dark-band {
  color: var(--white);
  background: linear-gradient(135deg, #02132d 0%, #052d63 58%, #064d98 100%);
}

.dark-band h2,
.dark-band h3,
.dark-band .section-kicker {
  color: var(--white);
}

.dark-band .muted {
  color: rgba(255, 255, 255, 0.72);
}

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

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

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

.feature-card,
.service-card,
.review-card,
.area-card,
.step-card,
.content-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(7, 28, 51, 0.06);
}

.feature-card,
.service-card,
.review-card,
.area-card,
.step-card {
  padding: 24px;
}

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

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--blue-soft);
}

.card-icon.gold {
  color: var(--navy);
  background: rgba(199, 154, 51, 0.18);
}

.service-card {
  display: grid;
  gap: 14px;
  min-height: 285px;
}

.service-card p,
.feature-card p,
.review-card p,
.area-card p,
.step-card p {
  color: var(--muted);
}

.service-card .btn {
  align-self: end;
  width: fit-content;
}

.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.photo-strip figure {
  position: relative;
  margin: 0;
}

.photo-strip img {
  aspect-ratio: 16 / 10;
  height: 100%;
  object-fit: cover;
}

.photo-label {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(7, 28, 51, 0.84);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.location-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.location-badges a,
.location-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font-weight: 850;
}

.location-badges a:hover,
.location-badges a:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(7, 28, 51, 0.08);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}

.step-card {
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.review-card blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.review-card .review-stars {
  margin: 0 0 12px;
  color: #ffcc00;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 8px rgba(3, 26, 61, 0.16);
}

.review-card footer {
  margin-top: 22px;
  color: var(--navy);
  font-weight: 900;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 68px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--navy);
  text-align: left;
  font-weight: 900;
}

.faq-question svg {
  flex: 0 0 auto;
  color: var(--gold-dark);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  display: block;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 54px 0;
}

.quote-section {
  background: var(--white);
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: 34px;
  align-items: start;
}

.quote-copy {
  padding: 8px 0;
}

.quote-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--gray);
  color: var(--ink);
}

.quote-callout svg {
  color: var(--gold-dark);
  flex: 0 0 auto;
}

.quote-callout a {
  color: var(--navy);
  font-weight: 900;
}

.quote-contact-callout {
  display: block;
  margin-top: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.quote-contact-callout strong {
  display: block;
  margin-bottom: 12px;
  color: var(--navy);
}

.quote-contact-buttons {
  display: grid;
  gap: 10px;
  margin-top: 0;
  justify-items: start;
}

.quote-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid rgba(21, 153, 242, 0.35);
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--navy);
  overflow-wrap: anywhere;
  box-shadow: none;
}

.quote-contact-button svg {
  color: var(--navy);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form .full {
  grid-column: 1 / -1;
}

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

.field label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid #cbd8e4;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(42, 168, 223, 0.25);
  border-color: var(--blue);
}

.hidden {
  display: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--navy);
  font-weight: 850;
}

.estimate-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 22px;
  background: rgba(3, 26, 61, 0.72);
}

.estimate-modal.is-open {
  display: grid;
}

.estimate-modal__panel {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.estimate-modal__panel h2 {
  margin-bottom: 12px;
}

.estimate-modal__panel p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.estimate-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-size: 26px;
  line-height: 1;
}

.estimate-modal__button {
  margin-top: 18px;
}

.estimate-modal__fallback {
  margin-top: 18px;
}

.page-hero {
  --page-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2200&q=82");
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(3, 26, 61, 0.92), rgba(5, 59, 120, 0.56)), var(--page-image);
  background-size: cover;
  background-position: center;
}

.page-hero .container {
  min-height: 440px;
  display: grid;
  align-content: center;
  padding: 88px 0;
}

.page-hero h1 {
  max-width: 840px;
}

.page-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: 38px;
  align-items: center;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.service-detail:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-detail img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(3, 26, 61, 0.12);
}

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

.area-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-card svg {
  color: var(--gold-dark);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.contact-hero-section {
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(3, 26, 61, 0.95), rgba(5, 59, 120, 0.74)), url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=2200&q=82");
  background-size: cover;
  background-position: center;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: 38px;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 76px 0;
}

.contact-hero-section h1,
.contact-hero-section h2,
.contact-hero-section h3 {
  color: var(--white);
}

.contact-hero-section .lead,
.contact-hero-section .muted {
  color: rgba(255, 255, 255, 0.78);
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #02132d 0%, #052d63 100%);
  color: var(--white);
}

.contact-card h2,
.contact-card h3 {
  color: var(--white);
}

.contact-card .muted {
  color: rgba(255, 255, 255, 0.72);
}

.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-method svg {
  color: var(--gold);
  flex: 0 0 auto;
  margin-top: 4px;
}

.contact-method strong {
  display: block;
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #02132d;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 0.9fr 1fr;
  gap: 34px;
  padding: 56px 0 38px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-logo {
  width: 108px;
  height: 108px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28), 0 0 28px rgba(21, 153, 242, 0.18);
}

.footer-main h3 {
  color: var(--white);
  font-size: 16px;
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 12px 8px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .nav-actions .btn-email {
    display: none;
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header,
  .nav-shell {
    min-height: 72px;
  }

  :root {
    --header-height: 72px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
    border-radius: 10px;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .btn-primary {
    padding-inline: 12px;
  }

  .hero {
    min-height: auto;
    background-position: 60% center;
  }

  .hero-content {
    padding: 94px 0 72px;
  }

  h1,
  .h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  h2,
  .h2 {
    font-size: clamp(29px, 9vw, 42px);
  }

  section {
    padding: 68px 0;
  }

  .trust-grid,
  .split,
  .quote-shell,
  .service-detail,
  .contact-layout,
  .contact-hero-grid,
  .footer-main,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .contact-hero-grid {
    min-height: auto;
    padding: 64px 0;
  }

  .trust-grid {
    margin-top: 0;
    box-shadow: none;
    border-top: 1px solid var(--line);
  }

  .trust-item {
    min-height: 74px;
    border-bottom: 1px solid var(--line);
  }

  .photo-strip {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .card-grid,
  .card-grid.three,
  .service-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .page-hero .container {
    min-height: 360px;
    padding: 64px 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .nav-actions .btn-primary span {
    display: none;
  }

  .hero-actions .btn,
  .section-actions .btn,
  .cta-panel .btn,
  .quote-form .btn {
    width: 100%;
  }

  .location-badges a,
  .location-badges span {
    width: 100%;
    justify-content: center;
  }
}

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