

:root {
  --ink: #1d1f42;
  --navy: #2c2e65;
  --deep: #17192f;
  --teal: #44c6b6;
  --teal-dark: #21a99a;
  --pale: #eef2f3;
  --line: #9ad9d3;
  --muted: #5f627d;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: "Poppins", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.site-header {
  position: absolute;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  height: 112px;
  display: flex;
  align-items: center;
  padding: 0 105px;
  color: var(--white);
}

.site-logo {
  width: 250px;
  color: var(--white);
  display: block;
  flex: 0 0 auto;
}

.site-logo svg,
.site-logo img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin-left: auto;
  font-size: 17px;
  font-weight: 500;
}

.desktop-nav a {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--teal);
}

.utility-login {
  margin-left: 52px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.utility-login::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 2px solid var(--teal);
  border-radius: 999px;
}

.find-rail {
  position: fixed;
  z-index: 45;
  top: 0;
  right: 20px;
  width: 50px;
  height: 220px;
  background: var(--teal);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  font-size: 16px;
}

.find-rail span {
  transform: rotate(180deg);
}

.search-bubble {
  position: fixed;
  z-index: 46;
  top: 177px;
  right: 12px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  border: 8px solid var(--teal);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.search-bubble::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.search-bubble::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 3px;
  background: currentColor;
  transform: translate(10px, 10px) rotate(45deg);
  border-radius: 2px;
}

.mobile-menu-button {
  display: none;
}

.mobile-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(29, 31, 66, 0.98);
  color: var(--white);
  transform: translateX(105%);
  transition: transform 260ms ease;
  padding: 34px 34px 60px;
}

.mobile-panel.is-open {
  transform: translateX(0);
}

.mobile-panel button {
  position: absolute;
  top: 28px;
  right: 30px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.mobile-panel button::before,
.mobile-panel button::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 5px;
  width: 32px;
  height: 3px;
  background: currentColor;
}

.mobile-panel button::before {
  transform: rotate(45deg);
}

.mobile-panel button::after {
  transform: rotate(-45deg);
}

.mobile-panel nav {
  display: grid;
  gap: 24px;
  padding-top: 70px;
}

.mobile-panel a {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--deep);
}

.page-hero {
  min-height: 350px;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 31, 66, 0.62), rgba(29, 31, 66, 0.25)),
    linear-gradient(0deg, rgba(29, 31, 66, 0.2), rgba(29, 31, 66, 0.2));
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1140px, calc(100vw - 210px));
  margin: 0 auto;
  padding-top: 80px;
}

.home-hero-title {
  max-width: 880px;
  margin: 0;
  font-size: clamp(48px, 6.2vw, 88px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: 0;
}

.page-hero h1 {
  margin: 38px 0 0;
  font-size: clamp(42px, 4.3vw, 58px);
  line-height: 1.15;
  font-weight: 800;
}

.page-hero p,
.hero-lede {
  margin: 22px 0 0;
  max-width: 680px;
  font-size: 20px;
  line-height: 1.55;
  font-weight: 500;
}

.page-hero p {
  margin-inline: auto;
}

.pill-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  min-height: 50px;
  padding: 15px 32px;
  margin-top: 34px;
  border-radius: 999px;
  background: var(--white);
  color: var(--teal-dark);
  border: 0;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pill-button:hover,
.form-submit:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.slider-dots {
  position: absolute;
  z-index: 3;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.slider-dots button {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots button.is-active {
  width: 34px;
  background: var(--teal);
}

.pattern-section {
  position: relative;
  background:
    linear-gradient(90deg, transparent 0 76%, rgba(68, 198, 182, 0.12) 76% 76.15%, transparent 76.15%),
    linear-gradient(135deg, transparent 0 92%, rgba(68, 198, 182, 0.16) 92% 92.2%, transparent 92.2%),
    var(--white);
}

.intro {
  padding: 88px 105px 96px;
}

.intro-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.62fr;
  gap: 80px;
  align-items: start;
}

.intro h2,
.section-title,
.index-copy h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(42px, 4.1vw, 58px);
  line-height: 1.06;
  font-weight: 800;
}

.intro p,
.index-copy p,
.article-copy p,
.footer p {
  font-size: 18px;
  line-height: 1.58;
  margin: 0 0 18px;
}

.quote-card {
  border-top: 4px solid #438fe7;
  background: #f0f1f4;
  padding: 34px 32px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 800;
}

.quote-card::before {
  content: "\201C";
  display: block;
  color: #438fe7;
  font-size: 62px;
  line-height: 0.8;
}

.teal-band {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 450px;
  background: #83a8b9;
  color: var(--white);
  overflow: hidden;
}

.teal-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.teal-panel {
  padding: 80px 105px 80px 78px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px) 0 0 / 82px 100%,
    #83a8b9;
}

.teal-panel h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.15;
  color: var(--white);
}

.quick-links {
  padding: 86px 105px 100px;
}

.quick-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

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

.link-card,
.listing-card {
  background: var(--white);
  min-height: 100%;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.link-card:hover,
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(29, 31, 66, 0.12);
}

.link-card img,
.listing-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.link-card div,
.listing-card div {
  padding: 24px 0 0;
}

.link-card h3,
.listing-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
}

.link-card p,
.listing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.locations-carousel-section {
  padding: 92px 105px 108px;
  background: var(--deep);
  color: var(--white);
  overflow: hidden;
}

.carousel-heading {
  width: min(1140px, 100%);
  margin: 0 auto 34px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.carousel-heading span,
.final-cta span,
.review-cta span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.carousel-heading h2,
.final-cta h2,
.review-cta h2 {
  margin: 0;
  max-width: 760px;
  color: var(--white);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.06;
}

.locations-carousel-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
}

.locations-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 360px);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.location-slide {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--navy);
}

.location-slide img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.06);
  transition: transform 240ms ease, opacity 240ms ease;
}

.location-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 25, 47, 0.04), rgba(23, 25, 47, 0.78));
}

.location-slide span {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 800;
}

.location-slide:hover img {
  transform: scale(1.045);
  opacity: 0.9;
}

.carousel-control {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.carousel-control:hover {
  background: var(--teal);
  color: var(--deep);
}

.final-cta,
.review-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
  padding: 86px 105px;
  background: var(--navy);
  color: var(--white);
}

.final-cta p,
.review-cta p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
}

.filter-band {
  background: var(--navy);
  color: var(--white);
  padding: 34px 105px;
}

.filter-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  align-items: center;
  text-align: center;
}

.filter-inner a {
  display: grid;
  gap: 10px;
  justify-items: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.filter-inner a.active {
  color: var(--teal);
}

.filter-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.listing-section {
  padding: 80px 105px 105px;
}

.listing-inner,
.article-inner,
.contact-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

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

.listing-card h3,
.listing-card p {
  text-align: center;
}

.article-section {
  padding: 86px 105px 100px;
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 84px;
  align-items: start;
}

.article-copy h2 {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.08;
}

.article-copy ul {
  margin: 20px 0 0;
  padding-left: 22px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.5;
}

.detail-layout {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.detail-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.detail-proof-grid div,
.qa-grid div {
  border-top: 4px solid var(--teal);
  background: #f0f1f4;
  padding: 24px;
}

.detail-proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.detail-proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.article-image {
  width: 100%;
  aspect-ratio: 1 / 1.05;
  object-fit: cover;
}

.more-band {
  padding: 74px 105px 86px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.more-band h2 {
  margin: 0 0 24px;
  font-size: 38px;
  line-height: 1.15;
}

.more-band p {
  margin: 0 auto;
  max-width: 820px;
  line-height: 1.6;
}

.more-band a {
  color: var(--white);
  font-weight: 800;
}

.qa-section {
  padding: 84px 105px 92px;
  background: var(--pale);
}

.qa-inner {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.qa-inner h2 {
  margin: 0 0 30px;
  color: var(--navy);
  font-size: clamp(34px, 3.7vw, 50px);
  line-height: 1.1;
}

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

.qa-grid h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 20px;
}

.qa-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.review-cta {
  background: var(--deep);
}

.related-grid {
  width: min(1140px, 100%);
  margin: 34px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  text-align: left;
}

.related-card {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  min-height: 100%;
  transition: transform 180ms ease, background 180ms ease;
}

.related-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.related-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.related-card span {
  display: block;
  padding: 20px 20px 0;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 10px 0 0;
  padding: 0 20px 22px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.25;
}

.contact-section {
  padding: 86px 105px 105px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
  align-items: start;
}

.contact-title {
  margin: 0 0 38px;
  color: var(--navy);
  font-size: clamp(34px, 3.1vw, 44px);
  line-height: 1.22;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #8587a7;
  background: #f8f8fa;
  padding: 14px 16px;
  color: var(--ink);
}

.contact-form textarea {
  grid-column: 1 / -1;
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  background: var(--teal);
  color: var(--white);
  margin-top: 0;
  cursor: pointer;
}

.contact-list {
  display: grid;
  gap: 34px;
}

.contact-item strong {
  display: block;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.map-embed {
  min-height: 240px;
  overflow: hidden;
  background: #dfe5e7;
}

.map-embed iframe {
  display: block;
  width: 100%;
  min-height: 240px;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.08);
}

.footer {
  background: var(--deep);
  color: var(--white);
  padding: 66px 105px 42px;
}

.footer-top,
.footer-link-grid,
.footer-bottom {
  width: min(1140px, 100%);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 64px;
  align-items: stretch;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 14px;
}

.footer p,
.footer a,
.footer small {
  overflow-wrap: anywhere;
}

.footer-logo {
  color: var(--white);
  width: 230px;
  margin-bottom: 8px;
}

.footer-brand p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  padding: 44px 0 36px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-link-grid a {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.footer small {
  color: rgba(255,255,255,0.72);
  font-weight: 700;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-content: center;
  padding: 60px 105px;
  background: rgba(23, 25, 47, 0.96);
  color: var(--white);
}

.search-panel.is-open {
  display: grid;
}

.search-close {
  position: absolute;
  top: 32px;
  right: 40px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.search-close::before,
.search-close::after {
  content: "";
  position: absolute;
  top: 21px;
  left: 5px;
  width: 34px;
  height: 3px;
  background: currentColor;
}

.search-close::before {
  transform: rotate(45deg);
}

.search-close::after {
  transform: rotate(-45deg);
}

.search-form {
  width: min(960px, 100%);
  margin: 0 auto 28px;
}

.search-form label {
  display: block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.06;
  font-weight: 800;
}

.search-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.search-form input {
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 16px 18px;
}

.search-form button {
  min-height: 58px;
  border: 0;
  border-radius: 999px;
  background: var(--teal);
  color: var(--deep);
  padding: 0 28px;
  font-weight: 800;
  cursor: pointer;
}

.search-results {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.search-results a {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 700;
}

.search-results a[hidden] {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    height: 98px;
    padding: 0 20px;
  }

  .site-logo {
    width: 215px;
  }

  .desktop-nav,
  .utility-login,
  .find-rail,
  .search-bubble {
    display: none;
  }

  .mobile-menu-button {
    display: block;
    position: absolute;
    right: 24px;
    top: 36px;
    width: 34px;
    height: 28px;
    border: 0;
    background: transparent;
    color: var(--teal);
    padding: 0;
    cursor: pointer;
  }

  .mobile-menu-button span,
  .mobile-menu-button::before,
  .mobile-menu-button::after {
    content: "";
    display: block;
    width: 34px;
    height: 4px;
    margin: 5px 0;
    background: currentColor;
  }

  .hero {
    min-height: 620px;
    align-items: flex-end;
  }

  .page-hero {
    min-height: 270px;
    align-items: center;
  }

  .hero-content {
    width: 100%;
    padding: 130px 20px 48px;
  }

  .home-hero-title {
    font-size: 38px;
    max-width: 330px;
  }

  .page-hero h1 {
    margin-top: 18px;
    font-size: 28px;
  }

  .hero-lede,
  .page-hero p {
    font-size: 16px;
  }

  .pill-button {
    min-width: 250px;
    min-height: 56px;
    justify-content: center;
  }

  .intro,
  .quick-links,
  .locations-carousel-section,
  .listing-section,
  .article-section,
  .contact-section,
  .more-band,
  .qa-section,
  .final-cta,
  .review-cta,
  .footer,
  .filter-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  .intro-inner,
  .article-grid,
  .contact-grid,
  .teal-band,
  .footer-top,
  .final-cta,
  .review-cta {
    grid-template-columns: 1fr;
  }

  .intro {
    text-align: center;
  }

  .intro h2,
  .section-title,
  .index-copy h2 {
    font-size: 34px;
  }

  .quote-card {
    text-align: left;
  }

  .teal-band {
    min-height: 0;
  }

  .teal-panel {
    padding: 46px 20px 56px;
  }

  .link-grid,
  .listing-grid,
  .detail-proof-grid,
  .qa-grid,
  .related-grid,
  .footer-link-grid,
  .search-results {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .carousel-heading {
    display: block;
  }

  .locations-carousel-shell {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

  .location-slide {
    min-height: 310px;
  }

  .location-slide img {
    height: 310px;
  }

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

  .article-grid {
    gap: 36px;
  }

  .article-image {
    order: -1;
    aspect-ratio: 1.25 / 1;
  }

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

  .footer-top {
    gap: 28px;
  }

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

  .search-panel {
    padding: 84px 20px 40px;
  }

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

/* brand-logo-detroit */
.site-logo, .footer-brand .footer-logo { width: auto !important; }
.site-logo{margin-right:40px}
.desktop-nav{justify-content:flex-end !important}
.brand-logo{height:48px;width:auto !important;display:block;max-width:340px}
.footer-brand .brand-logo{height:54px}
@media (max-width: 980px){.brand-logo{height:38px;max-width:62vw};.footer-brand .brand-logo{height:46px};.site-logo{margin-right:0}}
