:root {
  --blue: #0b46a4;
  --blue-dark: #071d4d;
  --blue-deep: #061638;
  --red: #df1119;
  --green: #087f2f;
  --ink: #111827;
  --muted: #5e6a7d;
  --surface: #f5f7fb;
  --surface-dark: #eaf0f7;
  --border: #dbe3ef;
  --white: #ffffff;
  --shadow: 0 16px 45px rgba(7, 29, 77, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; color: var(--ink); }
h1 { font-size: clamp(2.45rem, 6.5vw, 4.45rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: 1.15rem; }
ul { margin: 0; padding: 0; list-style: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(820px, calc(100% - 40px)); }
.text-center { text-align: center; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100000;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 220ms ease, box-shadow 220ms ease, padding 220ms ease;
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(7, 29, 77, 0.12);
  backdrop-filter: blur(14px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  width: 184px;
  min-width: 150px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 8px;
  padding: 8px 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.brand img { width: 100%; height: auto; }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
}
.site-header.is-scrolled .desktop-nav,
.site-header.is-scrolled .header-phone,
.site-header.menu-open .desktop-nav,
.site-header.menu-open .header-phone { color: var(--ink); }
.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  font-size: 0.93rem;
  padding: 10px 12px;
  cursor: pointer;
}
.desktop-nav a:hover,
.desktop-nav .is-active,
.nav-dropdown:hover > button { color: #ffffff; }
.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-scrolled .desktop-nav .is-active,
.site-header.is-scrolled .nav-dropdown:hover > button { color: var(--blue); }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 12px);
  width: 310px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}
.dropdown-panel a:hover {
  background: var(--surface);
  color: var(--blue);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-phone {
  color: var(--white);
  font-weight: 800;
  font-size: 0.94rem;
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}
.site-header.is-scrolled .menu-toggle span,
.site-header.menu-open .menu-toggle span { background: var(--ink); }
.site-header.is-scrolled .menu-toggle,
.site-header.menu-open .menu-toggle {
  border-color: var(--border);
  background: var(--white);
}
.mobile-panel {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 20px 24px;
}
.mobile-panel a {
  display: block;
  color: var(--ink);
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  font-weight: 850;
  border: 2px solid transparent;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(223, 17, 25, 0.28);
}
.btn-primary:hover { background: #c40f16; }
.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.88);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-dark);
}
.btn-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: 0.9rem;
}
.site-header.is-scrolled .btn-outline { color: var(--blue); border-color: var(--blue); }
.button-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
}
.hero-home { min-height: 84vh; padding: 126px 0 44px; }
.page-hero { min-height: 520px; padding: 150px 0 72px; }
.hero-video, .page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 22, 56, 0.78), rgba(6, 22, 56, 0.48)), rgba(0, 0, 0, 0.2);
}
.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
}
.hero-content h1,
.hero-content p,
.page-hero-content h1,
.page-hero-content p { color: var(--white); }
.hero-content h1,
.page-hero-content h1 {
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.34),
    0 0 34px rgba(11, 70, 164, 0.78),
    0 0 54px rgba(223, 17, 25, 0.34),
    0 4px 18px rgba(0, 0, 0, 0.36);
}
.page-home .section-heading h2,
.page-home .split h2,
.page-home .cta-band h2 {
  text-shadow:
    0 0 18px rgba(11, 70, 164, 0.16),
    0 0 28px rgba(223, 17, 25, 0.08);
}
.dark-section .section-heading h2,
.cta-band h2 {
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 0 34px rgba(255, 255, 255, 0.1);
}
.hero-content p {
  width: min(760px, 100%);
  margin: 18px auto 0;
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.88);
}
.page-hero-content { max-width: 760px; }
.page-hero-content h1 { font-size: clamp(2.35rem, 5vw, 4.2rem); }
.page-hero-content p {
  font-size: 1.15rem;
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.88);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 850;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  backdrop-filter: blur(10px);
}
.hero-stats {
  width: min(650px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 20px;
  gap: 18px;
}
.hero-stats strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.65rem, 3.4vw, 2.4rem);
  line-height: 1;
}
.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.info-strip {
  background: var(--blue);
  color: var(--white);
}
.info-strip-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 800;
  font-size: 0.94rem;
}
.info-strip a { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }

.section { padding: 94px 0; }
.section-muted { background: var(--surface); }
.section-heading {
  margin-bottom: 36px;
  max-width: 760px;
}
.section-heading.text-center { margin-left: auto; margin-right: auto; }
.section-heading span,
.light-eyebrow {
  display: inline-block;
  color: var(--blue);
  background: rgba(11, 70, 164, 0.09);
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}
.section-heading p {
  margin: 18px auto 0;
  font-size: 1.08rem;
}
.section-heading-light h2,
.section-heading-light p { color: var(--white); }
.section-heading-light span,
.light-eyebrow {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 60px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr); }
.rounded-image,
.image-stack img,
.service-card img {
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.rounded-image,
.image-stack img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.image-stack img {
  aspect-ratio: 3 / 2;
}
.image-stack { position: relative; }
.stack-note {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: min(310px, 80%);
  background: var(--white);
  border-left: 6px solid var(--red);
  border-radius: 8px;
  padding: 20px;
  font-weight: 900;
  color: var(--blue-dark);
  box-shadow: var(--shadow);
}
.check-list { display: grid; gap: 12px; margin: 26px 0; }
.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 750;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset 0 0 0 4px var(--white), 0 0 0 1px var(--green);
}
.text-link {
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.quote-mark {
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 29, 77, 0.08);
}
.service-card img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.service-card div { padding: 24px; }
.service-card p { margin-top: 12px; }
.service-card a {
  display: inline-block;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 900;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(7, 29, 77, 0.07);
}
.feature-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}
.feature-card p { margin: 12px 0 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.process-grid article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px;
}
.process-grid strong {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  margin-bottom: 18px;
}
.process-grid p { margin-top: 12px; }

.dark-section {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
}
.dark-section h2,
.dark-section h3,
.dark-section p { color: var(--white); }
.service-area-grid,
.included-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.area-list span,
.solution-grid li {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  font-weight: 850;
}
.area-list.light span {
  color: var(--blue-dark);
  background: var(--surface);
  border-color: var(--border);
}
.area-section .section-heading {
  max-width: 920px;
}
.area-map-widget {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: stretch;
}
.area-tabs {
  display: grid;
  gap: 12px;
}
.area-tab {
  width: 100%;
  display: grid;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-dark);
  padding: 15px 16px;
  text-align: left;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(7, 29, 77, 0.08);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.dark-section .area-tab {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
.area-tab:hover {
  transform: translateY(-2px);
}
.area-tab span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.78;
}
.area-tab strong {
  font-size: 1rem;
}
.area-tab.is-active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(223, 17, 25, 0.26);
}
.area-map-panel {
  min-height: 468px;
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.area-map-copy {
  padding: 30px;
  color: var(--ink);
}
.area-map-copy p {
  color: var(--muted);
}
.area-map-label {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(11, 70, 164, 0.1);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 13px;
}
.area-map-name {
  color: var(--blue-dark);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin-bottom: 14px;
}
.area-map-cities {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-weight: 750;
}
.map-frame-wrap {
  min-height: 468px;
  background: var(--surface-dark);
}
.area-map-frame {
  width: 100%;
  height: 100%;
  min-height: 468px;
  border: 0;
  display: block;
}
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.solution-grid li {
  background: var(--white);
  color: var(--blue-dark);
  border-color: var(--border);
  min-height: 58px;
}
.included-list {
  display: grid;
  gap: 12px;
}
.included-list li {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  font-weight: 850;
}

.faq-list {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(7, 29, 77, 0.08);
}
.faq-item + .faq-item { border-top: 1px solid var(--border); }
.faq-item button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.faq-item button span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 180ms ease;
}
.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px;
}
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-item.is-open .faq-answer > p { padding-bottom: 22px; }
.faq-item.is-open button span { background: var(--blue); color: var(--white); }

.cta-band {
  background: var(--blue);
  color: var(--white);
}
.cta-band h2,
.cta-band p { color: var(--white); }
.cta-band p {
  max-width: 760px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.88);
}
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.7fr);
  gap: 32px;
  align-items: start;
}
.quote-form,
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(7, 29, 77, 0.08);
}
.quote-embed-card {
  min-height: 1150px;
  height: auto;
  padding: 0;
  overflow: visible;
}
.quote-embed-card iframe {
  display: block;
  width: 100%;
  min-height: 1150px;
  height: 1150px;
}
.quote-embed-card iframe[src*="leadconnectorhq.com/widget/form"] {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  position: relative !important;
  left: auto !important;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
  font-size: 0.92rem;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}
textarea { resize: vertical; }
.quote-form > label { margin-top: 18px; }
.quote-form button { margin-top: 20px; width: 100%; }
.hidden-field { display: none; }
.contact-card h3 { font-size: 1.45rem; }
.contact-list {
  display: grid;
  gap: 14px;
  margin: 22px 0;
}
.contact-list a,
.contact-list div {
  display: grid;
  gap: 4px;
  padding-left: 16px;
  border-left: 4px solid var(--blue);
}
.contact-list strong {
  color: var(--blue);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-list span {
  color: var(--ink);
  font-weight: 800;
}
.notice {
  background: rgba(223, 17, 25, 0.08);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  font-size: 0.94rem;
}
.small { font-size: 0.91rem; margin: 18px 0 0; }

.site-footer {
  background: var(--blue-deep);
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.8fr 1fr;
  gap: 34px;
  padding: 62px 0;
}
.footer-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 8px;
  padding: 10px;
  margin-bottom: 14px;
}
.site-footer p,
.site-footer li { color: rgba(255, 255, 255, 0.75); }
.footer-heading {
  color: var(--white) !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}
.site-footer ul {
  display: grid;
  gap: 10px;
}
.site-footer a:hover { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }
.tagline {
  color: var(--white) !important;
  font-weight: 900;
}
.service-area-line { margin-top: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 20px;
}
.footer-bottom p { margin: 0; font-size: 0.9rem; }

@media (max-width: 1060px) {
  .desktop-nav,
  .header-actions { display: none; }
  .menu-toggle { display: block; }
  .site-header.menu-open .mobile-panel { display: block; }
  .brand { width: 160px; }
  .split,
  .split.reverse,
  .service-area-grid,
  .included-grid,
  .quote-grid,
  .area-map-widget,
  .area-map-panel { grid-template-columns: 1fr; }
  .service-grid,
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 76px; }
  .brand { width: 148px; padding: 7px 9px; }
  .hero-home { min-height: 82vh; padding: 118px 0 34px; }
  .page-hero { min-height: 500px; padding-top: 128px; }
  .hero-content p,
  .page-hero-content p { font-size: 1.03rem; }
  .button-row { align-items: stretch; }
  .button-row .btn { width: 100%; }
  .hero-stats { display: none; }
  .info-strip-inner {
    justify-content: center;
    text-align: center;
    padding: 12px 0;
  }
  .section { padding: 70px 0; }
  .service-grid,
  .feature-grid,
  .process-grid,
  .solution-grid,
  .form-grid { grid-template-columns: 1fr; }
  .area-map-panel,
  .map-frame-wrap,
  .area-map-frame {
    min-height: 360px;
  }
  .area-map-copy {
    padding: 22px;
  }
  .quote-embed-card,
  .quote-embed-card iframe {
    min-height: 1300px;
    height: 1300px;
  }
  .stack-note {
    position: static;
    width: 100%;
    margin-top: 14px;
  }
  .quote-form,
  .contact-card { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; padding: 48px 0; }
}
