@font-face {
  font-family: "Inter Regular";
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter SemiBold";
  src: url("/fonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --blue: #1450f5;
  --blue-dark: #003eb8;
  --ink: #141414;
  --muted: #555f6d;
  --line: #d7dde8;
  --pale: #f4f6fb;
  --pale-blue: #e9efff;
  --white: #fff;
  --header: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter Regular", Inter, Arial, sans-serif;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.08));
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.standard-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 24px;
}

.logo-mark {
  display: grid;
  grid-template-columns: repeat(3, 34px);
  width: 102px;
  height: 40px;
  flex: 0 0 auto;
  overflow: hidden;
}

.logo-mark span {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-right: 2px solid var(--white);
  font-family: "Inter SemiBold", Inter, Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.logo-mark span:last-child {
  border-right: 0;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
}

.primary-nav a,
.header-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 16px;
  color: currentColor;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  color: currentColor;
  font-family: "Inter SemiBold", Inter, Arial, sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-phone:hover {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}

.standard-page .header-phone:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.primary-nav a::after,
.header-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 180ms ease;
}

.primary-nav a:hover::after,
.header-link:hover::after {
  width: 100%;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.icon-button {
  width: 44px;
  height: 44px;
  border: 0;
  color: currentColor;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.icon-button svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.capture-hero {
  position: relative;
  min-height: 810px;
  color: var(--white);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}

.capture-hero.compact {
  min-height: 560px;
  place-items: end start;
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

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

.hero-media::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.54)),
    radial-gradient(circle at 50% 42%, rgba(20, 80, 245, 0.12), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  text-align: center;
  padding-top: var(--header);
}

.compact .hero-copy {
  justify-self: center;
  margin: 0 auto;
  text-align: left;
  padding: 0 0 84px;
}

.hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: "Inter Regular", Inter, Arial, sans-serif;
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 400;
  line-height: 1.07;
}

.hero-copy p {
  width: min(880px, 100%);
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
}

.compact .hero-copy p {
  margin-left: 0;
}

.hero-anchor {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
}

.hero-anchor svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.section {
  padding: 72px 0;
}

.section.pale {
  background: var(--pale);
}

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

.wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 92px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 1.15fr 0.85fr;
}

.split-media {
  overflow: hidden;
  background: var(--pale-blue);
  aspect-ratio: 5 / 4;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.split-media:hover img {
  transform: scale(1.04);
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-family: "Inter SemiBold", Inter, Arial, sans-serif;
  font-size: 15px;
}

.section.blue .eyebrow {
  color: rgba(255, 255, 255, 0.84);
}

h2,
.display-title {
  margin: 0;
  font-family: "Inter Regular", Inter, Arial, sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-family: "Inter SemiBold", Inter, Arial, sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.lead {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.section.blue .lead {
  color: rgba(255, 255, 255, 0.86);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 0;
  border: 1px solid var(--blue);
  color: var(--white);
  background: var(--blue);
  font-family: "Inter SemiBold", Inter, Arial, sans-serif;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button .ui-arrow,
.text-link .ui-arrow {
  flex: 0 0 auto;
}

.ui-arrow {
  display: inline-grid;
  place-items: center;
  width: 1.45em;
  height: 1.45em;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.78em;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

a:hover .ui-arrow,
button:hover .ui-arrow {
  transform: translate(2px, -1px);
}

.roof-paths-button {
  min-height: 54px;
  padding-inline: 26px;
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 14px 34px rgba(20, 80, 245, 0.16);
}

.roof-paths-button:hover {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
}

.button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.button.secondary {
  color: var(--blue);
  background: transparent;
}

.button.secondary:hover {
  color: var(--white);
  background: var(--blue);
}

.section.blue .button {
  color: var(--blue);
  border-color: var(--white);
  background: var(--white);
}

.section.blue .button.secondary {
  color: var(--white);
  background: transparent;
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 44px;
}

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

.card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.card:hover {
  transform: translateY(-4px);
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--pale-blue);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}

.card:hover .card-media img {
  transform: scale(1.05);
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  min-height: 260px;
}

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

.card:hover p,
.card:hover .text-link {
  color: rgba(255, 255, 255, 0.9);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  color: var(--blue);
  font-family: "Inter SemiBold", Inter, Arial, sans-serif;
  font-size: 15px;
}

.wide-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.wide-card {
  min-height: 230px;
  padding: 32px;
  background: var(--white);
  transition: background 160ms ease, color 160ms ease;
}

.wide-card:hover {
  color: var(--white);
  background: var(--blue);
}

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

.wide-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

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

.listing-card {
  display: grid;
  grid-template-columns: 138px 1fr;
  min-height: 190px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.listing-card:hover {
  border-color: var(--blue);
  box-shadow: 0 18px 42px rgba(20, 80, 245, 0.13);
  transform: translateY(-2px);
}

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

.listing-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.listing-copy h3 {
  font-size: 21px;
}

.listing-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.location-carousel-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(20, 80, 245, 0.34), transparent 28%),
    linear-gradient(135deg, #090d16, #172033 54%, #0d111c);
}

.location-carousel-section .lead,
.location-carousel-section .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.location-carousel-section h2 {
  color: var(--white);
}

.location-carousel-section .button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
}

.location-carousel-section .button.secondary:hover {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}

.carousel-actions {
  display: grid;
  gap: 22px;
}

.carousel-control-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.carousel-button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-family: "Inter SemiBold", Inter, Arial, sans-serif;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.carousel-button:hover {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}

.location-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(290px, 31%);
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.location-carousel::-webkit-scrollbar {
  display: none;
}

.location-slide {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  overflow: hidden;
  padding: 26px;
  color: var(--white);
  scroll-snap-align: start;
  isolation: isolate;
}

.location-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.76));
}

.location-slide img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.location-slide:hover img {
  transform: scale(1.06);
}

.location-slide span {
  font-family: "Inter SemiBold", Inter, Arial, sans-serif;
  font-size: 25px;
}

.location-slide p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.detail-copy {
  display: grid;
  gap: 28px;
}

.detail-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.rich-taxonomy-body {
  display: grid;
  gap: 20px;
  margin-top: 6px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.rich-taxonomy-body h2,
.rich-taxonomy-body h3,
.rich-taxonomy-body h4 {
  margin: 8px 0 0;
}

.rich-taxonomy-body p,
.rich-taxonomy-body li {
  color: var(--muted);
  font-size: 17px;
}

.rich-taxonomy-body ul,
.rich-taxonomy-body ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.info-panel {
  display: grid;
  gap: 22px;
  padding: 34px;
  color: var(--white);
  background: var(--blue);
  position: sticky;
  top: 104px;
}

.info-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.link-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.link-list a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 48px;
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 20px;
  padding: 34px;
  background: var(--pale);
}

.contact-panel p {
  margin: 0;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.field label {
  font-family: "Inter SemiBold", Inter, Arial, sans-serif;
  font-size: 14px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  padding: 14px 16px;
  background: var(--white);
}

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

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

.accordion:last-child {
  border-bottom: 1px solid var(--line);
}

.accordion button {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: "Inter SemiBold", Inter, Arial, sans-serif;
  font-size: 20px;
}

.accordion button::after {
  content: "+";
  color: var(--blue);
  font-size: 28px;
  line-height: 1;
}

.accordion.is-open button::after {
  content: "-";
}

.accordion-panel {
  display: none;
  padding: 0 0 24px;
  color: var(--muted);
}

.accordion.is-open .accordion-panel {
  display: block;
}

.mega-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  color: var(--ink);
  background: var(--white);
}

.menu-open .mega-menu {
  display: block;
}

.mega-top {
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
}

.mega-body {
  height: calc(100vh - var(--header));
  height: calc(100dvh - var(--header));
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 52px 24px 72px;
}

.mega-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 44px;
}

.mega-column h3 {
  margin-bottom: 18px;
}

.mega-column a {
  display: block;
  padding: 10px 0;
  color: var(--muted);
}

.mega-column a:hover {
  color: var(--blue);
}

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

.footer-cta {
  padding: 74px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-cta .wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: end;
}

.footer-main {
  padding: 52px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr repeat(4, minmax(0, 0.8fr));
  gap: 34px;
}

.footer-brand p,
.footer-column a,
.footer-small {
  color: rgba(255, 255, 255, 0.78);
}

.footer-brand p {
  margin: 22px 0 0;
}

.footer-column h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 18px;
}

.footer-column a {
  display: block;
  padding: 8px 0;
  font-size: 15px;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding-top: 30px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.utility-page {
  padding-top: var(--header);
}

.utility-panel {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 90px 0;
}

.utility-panel p {
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 980px) {
  :root {
    --header: 72px;
  }

  .header-inner {
    padding: 0 18px;
    gap: 16px;
  }

  .logo-mark {
    grid-template-columns: repeat(3, 30px);
    width: 90px;
    height: 36px;
  }

  .primary-nav,
  .header-link,
  .header-phone {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .capture-hero {
    min-height: 720px;
  }

  .capture-hero.compact {
    min-height: 500px;
  }

  .hero-copy {
    width: min(100% - 32px, 820px);
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-copy p {
    font-size: 17px;
  }

  .section {
    padding: 54px 0;
  }

  .wrap {
    width: min(100% - 32px, 760px);
  }

  .split,
  .split.reverse,
  .section-head,
  .detail-grid,
  .contact-grid,
  .footer-cta .wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .card-grid,
  .listing-grid,
  .wide-card-grid,
  .mega-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .location-carousel {
    grid-auto-columns: minmax(280px, 78vw);
  }

  .listing-card {
    grid-template-columns: 112px 1fr;
  }

  .info-panel {
    position: static;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-copy p {
    margin-top: 22px;
  }

  .capture-hero {
    min-height: 680px;
  }

  .hero-anchor {
    bottom: 24px;
  }

  h2,
  .display-title {
    font-size: 34px;
  }

  .card-body {
    min-height: 220px;
    padding: 22px;
  }

  .listing-card {
    grid-template-columns: 1fr;
  }

  .listing-card img {
    height: 190px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── Phone/tablet optimization + hamburger (Pass B) ───────────────── */
@media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    font-size: 16px;
  }

  img,
  iframe,
  video {
    max-width: 100%;
    height: auto;
  }

  /* Desktop nav collapses; hamburger is the primary nav on mobile */
  .primary-nav,
  .header-link,
  .header-phone {
    display: none;
  }

  .header-actions [data-menu-open] {
    display: grid;
  }

  /* Stack every multi-column grid to a single column */
  .split,
  .split.reverse,
  .section-head,
  .detail-grid,
  .contact-grid,
  .footer-cta .wrap,
  .card-grid,
  .listing-grid,
  .wide-card-grid,
  .mega-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section {
    padding: 48px 0;
  }

  .wrap {
    width: min(100% - 32px, 760px);
  }

  .info-panel {
    position: static;
  }

  .hero-copy h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  h2,
  .display-title {
    font-size: clamp(30px, 7vw, 44px);
  }

  /* Readable body copy on small screens */
  .lead,
  .detail-copy p,
  .rich-taxonomy-body p,
  .rich-taxonomy-body li,
  .card p {
    font-size: 16px;
  }

  /* Comfortable tap targets in the open menu + footer */
  .mega-column a {
    padding: 13px 0;
    font-size: 17px;
  }

  .footer-column a {
    padding: 11px 0;
  }

  .field input,
  .field textarea,
  .field select {
    min-height: 48px;
  }

  .field textarea {
    min-height: 132px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 0 14px;
    gap: 12px;
  }

  .section {
    padding: 40px 0;
  }

  .wrap {
    width: calc(100% - 28px);
  }

  .capture-hero {
    min-height: 560px;
  }

  .capture-hero.compact {
    min-height: 440px;
  }

  .compact .hero-copy {
    padding-bottom: 56px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  /* Full-width, easy-to-tap CTAs */
  .button {
    width: 100%;
    justify-content: center;
  }

  .button-row {
    width: 100%;
  }

  .footer-cta .button {
    width: auto;
  }

  .contact-panel,
  .contact-form,
  .info-panel {
    padding: 22px;
  }

  .mega-body {
    padding: 32px 18px 56px;
  }

  .mega-grid {
    gap: 30px;
  }
}

/* brand-logo-img */
.logo-mark{display:flex!important;align-items:center;width:auto!important;height:auto!important;grid-template-columns:none!important;overflow:visible!important}
.brand-logo{display:block;height:34px;width:auto;max-width:300px}
@media (max-width:720px){.brand-logo{height:30px}}
.brand-logo--white{display:none}
.home-page .site-header .brand-logo--navy{display:none}
.home-page .site-header .brand-logo--white{display:block}
.site-footer .brand-logo--navy{display:none}
.site-footer .brand-logo--white{display:block}
.mega-top .brand-logo--navy{display:block}
.mega-top .brand-logo--white{display:none}
