@font-face {
  font-family: "Elza";
  src: url("/faithful/fonts/Elza-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Elza";
  src: url("/faithful/fonts/Elza-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Elza";
  src: url("/faithful/fonts/Elza-Semibold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Elza";
  src: url("/faithful/fonts/Elza-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --q-red: #d51f35;
  --q-blue: #0042b8;
  --q-ink: #303236;
  --q-text: #333333;
  --q-muted: #5f6268;
  --q-soft: #eef3fb;
  --q-line: #d9d9d9;
  --q-footer: #0040b8;
  --q-white: #ffffff;
  --q-radius: 20px;
  --q-container: 1368px;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: var(--q-white);
}

body {
  margin: 0;
  padding: 0;
  min-width: 320px;
  font-family: "Elza", Arial, Helvetica, sans-serif;
  color: var(--q-text);
  background: var(--q-white);
  letter-spacing: 0;
  overflow-x: hidden;
}

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;
  background: #ffffff;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--q-red);
  color: #ffffff;
  border-radius: 999px;
}

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

.site-header {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 34px;
  width: 100%;
  min-height: 100px;
  padding: 28px 35px 18px;
  background: #ffffff;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  width: 92px;
  flex: 0 0 92px;
}

.site-logo img {
  width: 92px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 6px;
  font-size: 16px;
  line-height: 1;
  color: #111111;
}

.nav-link,
.nav-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 14px 0;
  color: #111111;
  cursor: pointer;
}

.nav-item {
  position: relative;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: -22px;
  width: 292px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  display: grid;
  gap: 3px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-item:hover .nav-panel,
.nav-item:focus-within .nav-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-panel a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #111111;
  font-weight: 500;
}

.nav-panel a:hover {
  color: var(--q-red);
  background: #f6f7fb;
}

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

.search-button,
.mobile-menu-button,
.mobile-menu-close {
  appearance: none;
  border: 0;
  background: transparent;
  color: #111111;
  cursor: pointer;
  padding: 0;
}

.search-button {
  position: relative;
  width: 27px;
  height: 27px;
}

.search-button::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 1px;
  width: 15px;
  height: 15px;
  border: 2px solid #111111;
  border-radius: 50%;
}

.search-button::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 17px;
  width: 12px;
  height: 2px;
  background: #111111;
  transform: rotate(45deg);
  transform-origin: left center;
}

.pill-outline,
.pill-red,
.hero-cta,
.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 24px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.pill-outline {
  min-width: 120px;
  color: #111111;
  background: #ffffff;
  border: 1px solid #cfd2d8;
}

.pill-red,
.hero-cta,
.inline-cta {
  color: #ffffff;
  background: var(--q-red);
  border: 1px solid var(--q-red);
}

.pill-red {
  min-width: 129px;
}

.pill-outline:hover,
.pill-red:hover,
.hero-cta:hover,
.inline-cta:hover {
  transform: translateY(-1px);
}

.mobile-menu-button {
  position: relative;
  display: none;
  width: 22px;
  height: 22px;
}

.mobile-menu-button span,
.mobile-menu-button::before,
.mobile-menu-button::after {
  content: "";
  position: absolute;
  left: 3px;
  width: 14px;
  height: 1.5px;
  background: #111111;
}

.mobile-menu-button::before {
  top: 5px;
}

.mobile-menu-button span {
  top: 10px;
}

.mobile-menu-button::after {
  top: 15px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: #ffffff;
  padding: 27px 20px 40px;
  overflow-y: auto;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-close {
  position: absolute;
  top: 28px;
  right: 27px;
  width: 20px;
  height: 20px;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
  background: #111111;
}

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

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

.mobile-menu-list {
  margin-top: 42px;
  display: grid;
}

.mobile-menu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  border-bottom: 1px solid #d1d1d1;
  font-size: 25px;
  font-weight: 600;
  color: #111111;
}

.mobile-menu-list a::after {
  content: "→";
  color: var(--q-red);
  font-size: 28px;
  font-weight: 400;
}

.mobile-menu-actions {
  display: grid;
  gap: 20px;
  margin-top: 60px;
}

.hero,
.page-hero,
.media-section,
.metric-section,
.feature-section,
.values-section,
.difference-section,
.map-section,
.resource-section,
.detail-section,
.listing-section,
.contact-section,
.legal-section {
  width: min(var(--q-container), calc(100% - 72px));
  margin: 0 auto;
}

.hero {
  padding: 52px 0 0;
  text-align: center;
}

.hero h1 {
  max-width: 1120px;
  margin: 0 auto 28px;
  color: var(--q-ink);
  font-size: clamp(44px, 4.2vw, 58px);
  font-weight: 500;
  line-height: 1.04;
}

.hero .red-line,
.page-title .red-line,
.split-title .red-line,
.contact-hero .red-line {
  color: var(--q-red);
}

.hero-subcopy {
  max-width: 850px;
  margin: -6px auto 25px;
  font-size: 18px;
  line-height: 1.55;
  color: #4a4d52;
}

.media-frame {
  position: relative;
  min-height: 510px;
  margin: 60px auto 0;
  overflow: hidden;
  border-radius: var(--q-radius);
  background: #060606;
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 510px;
  object-fit: cover;
  opacity: 0.88;
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.1));
}

.media-caption {
  position: absolute;
  left: 42px;
  bottom: 38px;
  z-index: 2;
  max-width: 560px;
  color: #ffffff;
  text-align: left;
}

.media-caption strong {
  display: block;
  font-size: 28px;
  line-height: 1.08;
  margin-bottom: 10px;
}

.media-caption span {
  display: block;
  font-size: 17px;
  line-height: 1.5;
}

.metric-section {
  padding: 60px 0 46px;
}

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

.metric-card {
  display: block;
  min-height: 82px;
  padding: 17px 18px 15px;
  border-radius: 14px;
  background: var(--q-soft);
  text-align: center;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.metric-card:hover,
.metric-card:focus-visible {
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(2, 36, 50, 0.12);
  transform: translateY(-2px);
  outline: none;
}

.metric-card strong {
  display: block;
  color: var(--q-blue);
  font-size: clamp(28px, 3.2vw, 43px);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 7px;
}

.metric-card span {
  display: block;
  color: #202226;
  font-size: 12px;
  line-height: 1.25;
}

.section-rule {
  border-top: 1px solid #dcdcdc;
}

.feature-section {
  padding: 56px 0 72px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 74px;
  align-items: start;
  margin-bottom: 44px;
}

.section-heading-row h2 {
  margin: 0;
  color: var(--q-ink);
  font-size: clamp(31px, 3.1vw, 44px);
  line-height: 1.02;
  font-weight: 500;
}

.section-heading-row h2 .red-line {
  color: var(--q-red);
}

.section-heading-row p {
  margin: 0;
  color: #3d4045;
  font-size: 16px;
  line-height: 1.55;
}

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

.image-card {
  position: relative;
  min-height: 270px;
  overflow: hidden;
  border-radius: 11px;
  color: #ffffff;
  background: #151515;
}

.image-card img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.image-card:hover img {
  transform: scale(1.035);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.78));
}

.image-card-content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
}

.image-card h3 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.02;
}

.image-card p {
  margin: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.35;
}

.plus-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--q-red);
  font-size: 21px;
  line-height: 1;
}

.values-section {
  padding: 58px 0 74px;
}

.values-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.values-top h2 {
  max-width: 610px;
  margin: 0;
  color: var(--q-ink);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.08;
}

.values-strip {
  display: grid;
  grid-template-columns: 0.8fr 1.05fr 1.15fr 1.05fr 0.95fr;
  gap: 15px;
  align-items: end;
}

.value-tile {
  display: grid;
  gap: 10px;
}

.value-tile img {
  width: 100%;
  height: 185px;
  border-radius: 7px;
  object-fit: cover;
}

.value-tile:nth-child(1) img,
.value-tile:nth-child(5) img {
  height: 132px;
}

.value-tile span {
  color: #26282c;
  font-size: 13px;
  line-height: 1.18;
  font-weight: 500;
}

.difference-section {
  padding: 58px 0 72px;
}

.eyebrow {
  display: block;
  margin-bottom: 29px;
  color: var(--q-red);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.48em;
  text-transform: uppercase;
}

.difference-grid {
  display: grid;
  grid-template-columns: minmax(290px, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
}

.difference-grid h2 {
  margin: 0;
  color: var(--q-ink);
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 500;
}

.difference-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px 56px;
}

.difference-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 17px;
}

.icon-circle {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--q-blue);
  background: #ecf1fb;
}

.icon-circle svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.difference-item h3 {
  margin: 0 0 7px;
  color: #303236;
  font-size: 18px;
  line-height: 1.15;
}

.difference-item p {
  margin: 0 0 9px;
  color: #555b63;
  font-size: 13px;
  line-height: 1.45;
}

.read-more {
  color: var(--q-red);
  font-weight: 700;
  font-size: 12px;
}

.map-band {
  background: #e9eef7;
}

.map-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(420px, 1.22fr);
  gap: 72px;
  align-items: center;
  padding: 78px 0;
}

.map-section h2 {
  margin: 0 0 15px;
  color: var(--q-ink);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 500;
}

.map-section p {
  margin: 0 0 20px;
  color: #4b5058;
  font-size: 15px;
  line-height: 1.55;
}

.coverage-orb {
  position: relative;
  width: min(560px, 100%);
  aspect-ratio: 1;
  margin-left: auto;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ffffff 0, #ffffff 30%, #dce5f5 72%, rgba(255, 255, 255, 0.1) 73%);
  overflow: hidden;
}

.coverage-orb::before,
.coverage-orb::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(185, 194, 213, 0.56);
  border-radius: 48% 52% 46% 54%;
}

.coverage-orb::after {
  inset: 25%;
  border-radius: 55% 45% 50% 50%;
}

.coverage-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--q-red);
  box-shadow: 0 0 0 4px rgba(213, 31, 53, 0.08);
}

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

.location-card {
  position: relative;
  min-height: 155px;
  overflow: hidden;
  border-radius: 14px;
  background: #111111;
  color: #ffffff;
}

.location-card img {
  width: 100%;
  height: 100%;
  min-height: 155px;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
  opacity: 0.82;
}

.location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.72));
}

.location-card span {
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 13px;
  z-index: 2;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
}

.location-card:hover img {
  transform: scale(1.04);
  opacity: 0.96;
}

.resource-section {
  padding: 62px 0 84px;
}

.resource-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 35px;
}

.resource-header h2 {
  margin: 0 0 15px;
  color: var(--q-ink);
  font-size: 34px;
  font-weight: 500;
}

.resource-header p {
  max-width: 490px;
  margin: 0;
  color: #4d5157;
  font-size: 14px;
  line-height: 1.55;
}

.resource-arrows {
  display: flex;
  gap: 9px;
}

.round-arrow {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #d4d4d4;
  color: var(--q-red);
  background: #ffffff;
  font-weight: 700;
}

.round-arrow.red {
  color: #ffffff;
  border-color: var(--q-red);
  background: var(--q-red);
}

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

.resource-card,
.listing-card,
.contact-card {
  overflow: hidden;
  border: 1px solid #dfe2e8;
  border-radius: 10px;
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover,
.listing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.1);
}

.resource-card img {
  width: 100%;
  height: 195px;
  object-fit: cover;
}

.resource-body,
.listing-card {
  padding: 18px;
}

.resource-body h3,
.listing-card h3 {
  margin: 0 0 9px;
  color: #303236;
  font-size: 19px;
  line-height: 1.18;
  font-weight: 600;
}

.resource-body p,
.listing-card p {
  margin: 0 0 14px;
  color: #555b63;
  font-size: 13.5px;
  line-height: 1.45;
}

.tag-pill {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--q-red);
  background: #fbe9ec;
  font-size: 12px;
  font-weight: 700;
}

.site-footer {
  color: #ffffff;
  background: var(--q-footer);
}

.footer-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.2fr 0.85fr;
  gap: 64px;
  width: min(var(--q-container), calc(100% - 72px));
  margin: 0 auto;
  padding: 58px 0 48px;
}

.footer-logo img {
  width: 92px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand h2 {
  margin: 36px 0 8px;
  color: #ffffff;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 500;
}

.footer-brand h2 span {
  color: #ff9eac;
}

.footer-brand p,
.footer-contact p,
.footer-links a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.45;
}

.footer-contact {
  display: grid;
  gap: 22px;
}

.footer-direct {
  margin-top: 24px;
}

.footer-direct a,
.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-contact strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 13px;
  align-content: start;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
}

.footer-map,
.contact-map {
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.14);
}

.footer-map iframe,
.contact-map iframe {
  display: block;
  width: 100%;
  border: 0;
}

.footer-map iframe {
  height: 220px;
  filter: saturate(0.86) contrast(1.04);
}

.contact-map {
  margin: 26px 0 0;
  border: 1px solid #dfe2e8;
}

.contact-map iframe {
  height: 310px;
}

.footer-bottom {
  width: min(var(--q-container), calc(100% - 72px));
  margin: 0 auto;
  padding: 0 0 26px;
  text-align: right;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: 80px;
  align-items: center;
  padding: 80px 0 56px;
}

.page-title {
  margin: 0;
  color: var(--q-ink);
  font-size: clamp(46px, 4.4vw, 64px);
  line-height: 1.08;
  font-weight: 500;
}

.page-intro {
  margin: 62px 0 0;
  color: #3d4045;
  font-size: 17px;
  line-height: 1.45;
}

.page-media {
  width: min(var(--q-container), calc(100% - 72px));
  margin: 0 auto 66px;
}

.page-media img {
  width: 100%;
  height: 456px;
  object-fit: cover;
  border-radius: var(--q-radius);
}

.detail-section,
.listing-section,
.contact-section,
.legal-section {
  padding: 0 0 78px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 380px);
  gap: 70px;
  align-items: start;
}

.article-copy {
  max-width: 850px;
}

.article-copy h2 {
  margin: 46px 0 16px;
  color: #303236;
  font-size: clamp(28px, 2.5vw, 39px);
  line-height: 1.1;
  font-weight: 500;
}

.article-copy h2:first-child {
  margin-top: 0;
}

.article-copy h3 {
  margin: 28px 0 9px;
  color: #303236;
  font-size: 21px;
  line-height: 1.16;
}

.article-copy p,
.article-copy li,
.legal-section p,
.contact-section p {
  color: #3f434a;
  font-size: 17px;
  line-height: 1.68;
}

.article-copy p {
  margin: 0 0 19px;
}

.article-copy ul {
  margin: 0 0 26px;
  padding-left: 22px;
}

.article-link-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  margin: 28px 0 34px;
}

.article-link-chip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  padding: 13px 14px 13px 16px;
  border: 1px solid #e0e4ec;
  border-radius: 13px;
  background: #f7f9fd;
  color: #303236;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.article-link-chip span {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.article-link-chip b {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--q-red);
  font-size: 15px;
  font-weight: 700;
}

.article-link-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 31, 53, 0.42);
  background: #ffffff;
}

.article-link-chip-static {
  color: #3f434a;
}

.side-panel {
  position: sticky;
  top: 22px;
  padding: 28px;
  border-radius: 16px;
  background: #eef3fb;
}

.side-panel h2 {
  margin: 0 0 14px;
  color: #303236;
  font-size: 27px;
  line-height: 1.12;
  font-weight: 500;
}

.side-panel p {
  margin: 0 0 18px;
  color: #4c525b;
  font-size: 15px;
  line-height: 1.55;
}

.side-panel a {
  display: inline-flex;
}

.related-link-grid {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.related-link-card {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 26px;
  gap: 12px;
  align-items: center;
  min-height: 56px;
  padding: 12px 13px;
  border: 1px solid rgba(0, 66, 184, 0.16);
  border-radius: 13px;
  background: #ffffff;
  color: #2e3339;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.related-link-card span {
  min-width: 0;
  font-size: 13px;
  line-height: 1.22;
  font-weight: 700;
}

.related-link-card b {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--q-red);
  font-size: 15px;
  font-weight: 700;
}

.related-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(213, 31, 53, 0.45);
  color: var(--q-red);
}

.listing-intro {
  max-width: 760px;
  margin: 0 0 34px;
  color: #3f434a;
  font-size: 18px;
  line-height: 1.58;
}

.listing-card {
  min-height: 234px;
}

.listing-card h3 a:hover {
  color: var(--q-red);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(310px, 0.92fr);
  gap: 80px;
  align-items: center;
  padding: 54px 0 76px;
}

.contact-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--q-radius);
}

.contact-hero h1 {
  margin: 0;
  color: #303236;
  font-size: clamp(37px, 3.2vw, 48px);
  line-height: 1.08;
  font-weight: 500;
}

.contact-main {
  border-top: 1px solid #d2d2d2;
  padding-top: 70px;
}

.contact-main h2 {
  margin: 0 0 24px;
  text-align: center;
  color: #303236;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.contact-card {
  padding: 28px;
}

.contact-card h3 {
  margin: 0 0 10px;
  color: #303236;
  font-size: 22px;
}

.contact-card a {
  color: var(--q-red);
  font-weight: 700;
}

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.request-form label {
  display: grid;
  gap: 7px;
  color: #303236;
  font-weight: 600;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid #d6d9df;
  border-radius: 10px;
  padding: 13px 14px;
  background: #ffffff;
  color: #111111;
}

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

.request-form button {
  justify-self: start;
  cursor: pointer;
}

.site-search {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: start center;
  padding: 118px 24px 24px;
  background: rgba(13, 17, 23, 0.62);
}

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

.site-search-panel {
  width: min(860px, 100%);
  padding: 28px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.site-search-form label {
  display: block;
  margin-bottom: 13px;
  color: #303236;
  font-size: 14px;
  font-weight: 700;
}

.site-search-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.site-search-input-row input {
  min-width: 0;
  height: 52px;
  border: 1px solid #d6d9df;
  border-radius: 999px;
  padding: 0 18px;
  color: #111111;
}

.site-search-input-row button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #ffffff;
  background: var(--q-red);
  font-weight: 700;
  cursor: pointer;
}

.site-search-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  max-height: min(52vh, 500px);
  overflow: auto;
}

.site-search-result {
  display: grid;
  gap: 5px;
  padding: 14px 15px;
  border: 1px solid #e3e5ea;
  border-radius: 14px;
  background: #f8f9fc;
}

.site-search-result strong {
  color: #303236;
  font-size: 15px;
  line-height: 1.2;
}

.site-search-result span {
  color: var(--q-red);
  font-size: 12px;
  font-weight: 700;
}

.search-close {
  position: fixed;
  top: 30px;
  right: 32px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
}

.search-close::before,
.search-close::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 10px;
  width: 20px;
  height: 2px;
  background: #111111;
}

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

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

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 22px;
  }

  .header-actions {
    gap: 14px;
  }

  .pill-outline {
    min-width: auto;
  }

  .section-heading-row,
  .difference-grid,
  .map-section,
  .page-hero,
  .contact-hero,
  .content-grid {
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 74px;
    padding: 19px 17px 10px;
  }

  .site-logo,
  .site-logo img {
    width: 93px;
  }

  .desktop-nav,
  .pill-outline,
  .pill-red {
    display: none;
  }

  .mobile-menu-actions .pill-outline,
  .mobile-menu-actions .pill-red {
    display: inline-flex;
  }

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

  .header-actions {
    gap: 26px;
  }

  .search-button {
    width: 28px;
    height: 28px;
  }

  .hero,
  .page-hero,
  .media-section,
  .metric-section,
  .feature-section,
  .values-section,
  .difference-section,
  .map-section,
  .resource-section,
  .detail-section,
  .listing-section,
  .contact-section,
  .legal-section,
  .page-media,
  .footer-inner,
  .footer-bottom {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(38px, 9.6vw, 45px);
    line-height: 1.08;
  }

  .hero-subcopy {
    font-size: 16px;
  }

  .media-frame,
  .media-frame img {
    min-height: 360px;
  }

  .media-frame {
    margin-top: 58px;
  }

  .media-caption {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .metric-grid,
  .image-card-grid,
  .resource-grid,
  .listing-grid,
  .location-card-grid,
  .article-link-grid,
  .difference-items,
  .contact-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-heading-row,
  .values-top,
  .difference-grid,
  .map-section,
  .page-hero,
  .contact-hero,
  .content-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding-top: 74px;
  }

  .page-title {
    font-size: clamp(40px, 10vw, 52px);
  }

  .page-intro {
    margin-top: 0;
  }

  .page-media img {
    height: 305px;
  }

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

  .value-tile img,
  .value-tile:nth-child(1) img,
  .value-tile:nth-child(5) img {
    height: 170px;
  }

  .map-section {
    padding: 58px 0;
  }

  .coverage-orb {
    margin: 0 auto;
  }

  .home-location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-panel {
    position: static;
  }

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

  .site-search {
    padding: 88px 16px 16px;
  }

  .site-search-panel {
    padding: 20px;
    border-radius: 18px;
  }

  .site-search-input-row,
  .site-search-results {
    grid-template-columns: 1fr;
  }

  .search-close {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 67px;
  }

  .hero h1 {
    max-width: 350px;
    font-size: 39px;
  }

  .hero-cta {
    min-width: 176px;
  }

  .media-frame {
    border-radius: 20px 20px 0 0;
  }

  .resource-header {
    align-items: start;
    flex-direction: column;
  }

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

  .home-location-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    gap: 36px;
    padding-top: 44px;
  }

  .footer-bottom {
    text-align: left;
  }
}

/* brand-logo-injected */
.site-logo { width: auto !important; flex: 0 0 auto !important; }
.site-logo img.brand-logo { height: 40px !important; width: auto !important; max-width: 320px; display: block; }
.footer-logo img.brand-logo-footer {
  width: auto !important; height: 38px !important; max-width: 300px;
  filter: none !important; display: block;
}
@media (max-width: 760px) {
  .brand-logo { height: 34px; }
}
