:root {
  --navy: #061b49;
  --navy-2: #0b2459;
  --royal: #0647ff;
  --royal-2: #2563eb;
  --steel: #6b7280;
  --silver: #e5e7eb;
  --mist: #f5f7fb;
  --line: rgba(6, 27, 73, 0.16);
  --line-strong: rgba(6, 71, 255, 0.32);
  --text: #111827;
  --muted: #4b5563;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 27, 73, 0.18);
  --radius: 8px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--mist);
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button, input, textarea { font: inherit; letter-spacing: 0; }
h1, h2, h3, p { margin-top: 0; letter-spacing: 0; }
h1 {
  margin: 20px 0 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.85rem;
  font-weight: 700;
  line-height: 1.04;
  color: #ffffff;
  text-shadow:
    0 0 16px rgba(37, 99, 235, 0.86),
    0 0 42px rgba(6, 71, 255, 0.55),
    0 3px 18px rgba(0, 0, 0, 0.68);
}
h2 {
  margin: 14px 0 14px;
  font-size: 2.55rem;
  line-height: 1.1;
  color: var(--navy);
}
h3 {
  color: var(--navy);
  line-height: 1.2;
}
.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}
.narrow { max-width: 860px; }
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 99999;
  background: var(--royal);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(6, 27, 73, 0.96);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}
.nav-shell {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--white);
  font-weight: 800;
}
.brand img {
  width: 112px;
  height: 62px;
  object-fit: contain;
  background: rgba(255,255,255,.94);
  border-radius: 6px;
  padding: 4px;
}
.brand span {
  white-space: nowrap;
  font-size: 14px;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}
.desktop-nav > a,
.nav-dropdown > button {
  color: rgba(255, 255, 255, 0.92);
  padding: 12px 12px;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.desktop-nav a:hover,
.nav-dropdown button:hover { color: #bcd1ff; }
.nav-dropdown { position: relative; }
.nav-dropdown .icon { width: 15px; height: 15px; }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 315px;
  background: var(--white);
  color: var(--text);
  padding: 10px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: .18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  font-weight: 700;
}
.nav-dropdown-menu a:hover {
  background: #eef3ff;
  color: var(--royal);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 750;
  font-size: 14px;
}
.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  background: rgba(6, 27, 73, 0.98);
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 12px 16px 22px;
}
.mobile-menu a {
  display: block;
  padding: 12px 8px;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-weight: 700;
}
.mobile-call {
  margin-top: 12px;
  background: var(--royal);
  color: var(--white) !important;
  border-radius: var(--radius);
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-weight: 850;
  line-height: 1.1;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 40px; padding: 10px 14px; font-size: 14px; }
.btn-primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--royal-2), var(--royal));
  box-shadow: 0 14px 36px rgba(6, 71, 255, 0.24);
}
.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(0,0,0,.15);
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero { min-height: 62svh; }
.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,27,73,.9), rgba(6,27,73,.58), rgba(17,24,39,.72)),
    linear-gradient(0deg, rgba(6,27,73,.45), rgba(6,27,73,.16));
}
.home-hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 128px 0 58px;
  max-width: 920px;
}
.page-hero-content { padding-top: 142px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  background: #eaf0ff;
  color: var(--royal);
  border: 1px solid var(--line-strong);
  font-size: 12px;
  font-weight: 900;
}
.eyebrow.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255,255,255,.24);
  backdrop-filter: blur(8px);
}
.home-hero p,
.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.28rem;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.hero-stats {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
}
.hero-stats div {
  min-width: 150px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 18px;
}
.hero-stats strong {
  display: block;
  color: #cfe0ff;
  font-size: 2.6rem;
  line-height: 1;
}
.hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 900;
}

.info-bar {
  background: linear-gradient(90deg, var(--navy), var(--royal));
  color: var(--white);
  font-weight: 850;
}
.info-bar-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding: 11px 0;
  font-size: 14px;
}
.info-bar span,
.info-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.info-bar .icon { width: 18px; height: 18px; }

.section { padding: 88px 0; }
.section-contrast {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-dark h2,
.section-dark h3,
.section-dark .eyebrow { color: var(--white); }
.section-dark .eyebrow {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.18);
}
.section-dark p,
.section-dark .section-copy { color: rgba(255,255,255,.78); }
.section-quote {
  background: linear-gradient(180deg, #eef3ff, var(--mist));
}
.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}
.section-heading-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading p,
.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 820px;
}
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
  gap: 58px;
  align-items: center;
}
.feature-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 320px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #d8dee8;
  box-shadow: var(--shadow);
}
.feature-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.5);
  pointer-events: none;
}
.feature-photo-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.proof-list {
  display: grid;
  gap: 16px;
  margin: 26px 0 32px;
}
.proof-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  font-weight: 750;
}
.proof-list .icon {
  color: var(--royal);
  margin-top: 3px;
}
.section-dark .proof-list div { color: var(--white); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  box-shadow: 0 16px 36px rgba(6, 27, 73, 0.08);
}
.section-dark .service-card {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: #fbfcff;
}
.section-dark .service-card:hover { background: rgba(255,255,255,.12); }
.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card-body {
  padding: 22px;
}
.service-card h3,
.feature-panel h3,
.contact-card h3,
.process-step h3,
.map-panel h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
}
.service-card p,
.feature-panel p,
.process-step p,
.contact-card p {
  color: var(--muted);
}
.section-dark .service-card p,
.section-dark .feature-panel p,
.section-dark .process-step p { color: rgba(255,255,255,.76); }
.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--royal);
  font-weight: 900;
  margin-top: 10px;
}
.section-dark .service-card span { color: #cfe0ff; }
.feature-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-panel,
.process-step,
.contact-card,
.map-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 16px 36px rgba(6, 27, 73, 0.07);
}
.section-dark .feature-panel,
.section-dark .process-step {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.14);
}
.reviews-section {
  background: #eef3f8;
}
.review-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(6, 27, 73, 0.12);
}
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #f7b500;
}
.review-stars .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: currentColor;
}
.review-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--royal), var(--navy));
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(6, 71, 255, 0.24);
  flex: 0 0 auto;
}
.review-author p {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}
.review-author span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.service-detail-section {
  background:
    linear-gradient(180deg, #f8fbff, #eef3ff);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.service-detail-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 44px;
  align-items: start;
}
.service-detail-copy {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 36px rgba(6, 27, 73, 0.07);
}
.service-detail-copy h3 {
  margin-top: 24px;
}
.compact-heading {
  margin-bottom: 18px;
}
.compact-heading h3 {
  margin-top: 0;
}
.context-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.context-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(6, 27, 73, 0.08);
}
.context-photo-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.context-photo figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.process-grid {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 52px;
  align-items: start;
}
.process-list {
  display: grid;
  gap: 16px;
}
.process-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--royal);
  margin-bottom: 16px;
}
.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 13px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}
.check-list .icon {
  color: var(--royal);
  margin-top: 3px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.gallery-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
}
.service-area-map-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: start;
}
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}
.area-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 9px 12px;
  font-weight: 800;
  cursor: pointer;
}
.area-button.is-active,
.area-button:hover {
  background: var(--royal);
  color: var(--white);
  border-color: var(--royal);
}
.map-panel {
  padding: 18px;
  position: sticky;
  top: 108px;
}
.map-panel iframe {
  display: block;
  width: 100%;
  height: 455px;
  border: 0;
  border-radius: var(--radius);
  background: var(--silver);
}
.faq-list {
  border-top: 1px solid rgba(255,255,255,.16);
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border: 0;
  color: var(--white);
  background: transparent;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}
.faq-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  flex: 0 0 auto;
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}
.faq-answer > p {
  overflow: hidden;
  color: rgba(255,255,255,.78);
  margin: 0;
}
.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 20px;
}
.faq-item.is-open .faq-mark { background: var(--royal); }
.cta-band {
  background: linear-gradient(90deg, var(--royal), var(--navy));
  color: var(--white);
  padding: 58px 0;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 10px;
}
.cta-band p {
  color: rgba(255,255,255,.86);
  max-width: 680px;
  margin-bottom: 0;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 36px;
  align-items: start;
}
.quote-frame {
  min-height: 681px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.contact-card {
  position: sticky;
  top: 108px;
}
.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.contact-methods a,
.contact-methods div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.contact-methods span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #eaf0ff;
  color: var(--royal);
}
.contact-methods strong {
  overflow-wrap: anywhere;
}
.mini-area {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 22px;
}
.site-footer {
  background: #040f2a;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 32px;
  padding: 58px 0;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.footer-brand img {
  width: 132px;
  height: 74px;
  object-fit: contain;
  background: rgba(255,255,255,.95);
  padding: 5px;
  border-radius: 6px;
}
.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255,255,255,.74);
}
.site-footer a:hover { color: var(--white); }
.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}
.footer-contact li,
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
}
.footer-areas {
  margin-top: 18px;
  font-size: .9rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 16px;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: .9rem;
}

@media (max-width: 1100px) {
  .desktop-nav,
  .nav-actions { display: none; }
  .mobile-toggle { display: inline-flex; }
  .site-header.menu-open .mobile-menu { display: block; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 821px) and (min-height: 850px) {
  .hero-stats { display: flex; }
}
@media (max-width: 820px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  .home-hero,
  .page-hero { min-height: 78svh; }
  .home-hero-content,
  .page-hero-content { padding: 108px 0 42px; }
  .split-grid,
  .process-grid,
  .service-detail-grid,
  .service-area-map-grid,
  .quote-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
  .feature-photo { min-height: 0; }
  .feature-grid,
  .review-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .contact-card,
  .map-panel { position: static; }
  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .cta-actions { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 24px, var(--max)); }
  .brand img { width: 92px; height: 52px; }
  .brand span { display: none; }
  h1 { font-size: 2.45rem; }
  h2 { font-size: 1.72rem; }
  .home-hero,
  .page-hero { min-height: 74svh; }
  .home-hero-content,
  .page-hero-content { padding: 98px 0 34px; }
  .home-hero p,
  .page-hero p { font-size: 1rem; }
  .section { padding: 64px 0; }
  .service-grid,
  .gallery-grid,
  .context-photo-grid { grid-template-columns: 1fr; }
  .hero-actions .btn,
  .cta-actions .btn { width: 100%; }
  .info-bar-inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .map-panel iframe { height: 340px; }
}
