:root {
  --psmqy-black: #272623;
  --psmqy-red: #e9453a;
  --psmqy-orange: #ff7144;
  --psmqy-gray: #e8e8e8;
  --psmqy-white: #ffffff;
}

/* Re-point the headline font off the captured "INTLHeadline" (a unicase display face that draws
   E/I/S/A as lowercase-style glyphs) onto the clean INTLText family, which renders proper caps.
   site.css loads after the captured CSS, so these @font-face rules override the originals. */
@font-face { font-family: "INTLHeadline"; src: url(/fonts-x/INTLText-Light-woff2.woff2) format("woff2"), url(/fonts-x/INTLText-Light-woff.woff) format("woff"); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: "INTLHeadline"; src: url(/fonts-x/INTLText-Regular-woff2.woff2) format("woff2"), url(/fonts-x/INTLText-Regular-woff.woff) format("woff"); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: "INTLHeadline"; src: url(/fonts-x/INTLText-Medium-woff2.woff2) format("woff2"), url(/fonts-x/INTLText-Medium-woff.woff) format("woff"); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: "INTLHeadline"; src: url(/fonts-x/INTLText-Bold-woff2.woff2) format("woff2"), url(/fonts-x/INTLText-Bold-woff.woff) format("woff"); font-weight: 700; font-style: normal; font-display: swap; }

body {
  background: #fff;
  color: #000;
  font-family: INTLText, Arial, sans-serif;
  overflow-x: clip;
}

html {
  overflow-x: clip;
}

body * {
  letter-spacing: 0;
}

.psmqy-faithful-body {
  min-height: 100vh;
}

.psmqy-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 24px 32px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.psmqy-logo,
.psmqy-nav,
.psmqy-header-right,
.psmqy-callbtn,
.psmqy-mobile-call,
.psmqy-menu-button,
.psmqy-mobile-panel {
  pointer-events: auto;
}

.psmqy-logo {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 14px;
  min-height: 44px;
  text-decoration: none;
}

.psmqy-logo:hover {
  color: #fff;
}

.psmqy-brand-logo {
  display: block;
  height: auto;
  max-width: 290px;
  object-fit: contain;
  width: min(290px, 32vw);
  filter: drop-shadow(0 2px 7px rgba(0, 0, 0, 0.4));
}

.psmqy-header .psmqy-brand-logo {
  max-height: 46px;
}

.psmqy-header .psmqy-logo-text {
  display: none;
}

.psmqy-logo-text {
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: INTLHeadline, sans-serif;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
}

.psmqy-logo-text strong {
  color: #fff;
  display: block;
  font-size: 0.68em;
  font-weight: 300;
}

.psmqy-nav {
  align-items: center;
  background: var(--psmqy-black);
  border-radius: 4px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  display: flex;
  gap: 0;
  min-height: 40px;
  padding: 0 18px;
}

.psmqy-nav a {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: INTLText, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  line-height: 1;
  min-height: 40px;
  padding: 0 16px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.psmqy-nav a:hover {
  color: var(--psmqy-orange);
}

/* --- Services / Locations nav dropdowns (per Tristan Jul 6 mtg) --- */
.psmqy-nav-item {
  align-items: center;
  display: flex;
  min-height: 40px;
  position: relative;
}
.psmqy-nav-item > a::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 3.5px solid transparent;
  border-right: 3.5px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.7;
  transition: transform 0.16s ease;
}
.psmqy-nav-item:hover > a::after,
.psmqy-nav-item:focus-within > a::after {
  transform: rotate(180deg);
}
/* transparent bridge so moving from the label to the menu doesn't drop the hover */
.psmqy-nav-item::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 9px;
}
.psmqy-dd {
  background: #1b1d22;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 6px;
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 4px;
  left: 50%;
  min-width: 292px;
  opacity: 0;
  padding: 10px;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 7px);
  transform: translateX(-50%) translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  visibility: hidden;
  z-index: 70;
}
.psmqy-nav-item:hover .psmqy-dd,
.psmqy-nav-item:focus-within .psmqy-dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.psmqy-nav .psmqy-dd a {
  border-radius: 4px;
  color: #d8d7d4;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.28;
  min-height: 0;
  padding: 12px 15px;
  text-transform: none;
}
.psmqy-nav .psmqy-dd a:hover {
  background: rgba(43, 139, 197, 0.16);
  color: #fff;
}
.psmqy-dd-all {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 6px;
  color: var(--psmqy-orange) !important;
  font-weight: 700 !important;
}
.psmqy-dd-all::before {
  display: none;
}

.psmqy-search {
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round'><circle cx='10.5' cy='10.5' r='6.6'/><line x1='15.6' y1='15.6' x2='20.5' y2='20.5'/></svg>") center / 19px no-repeat;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  height: 26px;
  margin-left: 10px;
  opacity: 0.88;
  padding: 0;
  transition: opacity 0.15s ease, transform 0.15s ease;
  width: 40px;
}

.psmqy-search:hover,
.psmqy-search:focus-visible {
  opacity: 1;
  transform: scale(1.12);
  outline: none;
}

.psmqy-menu-button {
  align-items: center;
  background: var(--psmqy-black);
  border: 0;
  border-radius: 9px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  display: none;
  flex-direction: column;
  gap: 6px;
  height: 52px;
  justify-content: center;
  padding: 0;
  width: 52px;
}

.psmqy-menu-button span {
  background: #fff;
  border-radius: 2px;
  display: block;
  height: 2.5px;
  width: 24px;
}

.psmqy-menu-button::before {
  background: #fff;
  border-radius: 2px;
  content: "";
  display: block;
  height: 2.5px;
  order: -1;
  width: 24px;
}

.psmqy-search-mobile {
  align-items: center;
  background: var(--psmqy-black);
  border: 0;
  border-radius: 9px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  display: none;
  height: 52px;
  justify-content: center;
  margin-right: 10px;
  width: 52px;
}

.psmqy-search-mobile svg {
  height: 22px;
  width: 22px;
}

.psmqy-mobile-panel[hidden] {
  display: none;
}

.psmqy-mobile-panel {
  background: var(--psmqy-black);
  border-radius: 6px;
  display: grid;
  gap: 0;
  padding: 12px;
  position: absolute;
  right: 36px;
  top: 94px;
  width: min(310px, calc(100vw - 72px));
}

.psmqy-mobile-panel a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 1.4rem;
  padding: 15px 10px;
  text-transform: uppercase;
}

/* --- Sticky phone CTA (per Tristan Jul 13): desktop pill in the header, mobile floating button --- */
.psmqy-header-right {
  align-items: center;
  display: flex;
  gap: 0;
}

/* the call button is butted directly against the nav so they read as one connected bar */
.psmqy-callbtn {
  align-items: center;
  align-self: stretch;
  background: rgba(33, 32, 29, 0.96);
  border-radius: 4px 0 0 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.28);
  color: #fff;
  display: inline-flex;
  font-family: INTLText, sans-serif;
  font-size: 15px;
  font-weight: 500;
  gap: 9px;
  min-height: 40px;
  padding: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.15s ease;
  white-space: nowrap;
}

/* square off the nav's left corners so the seam with the call button is flush */
.psmqy-header-right .psmqy-nav {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.psmqy-callbtn:hover {
  color: var(--psmqy-orange);
}

.psmqy-callbtn-ic {
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff7144' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center / contain no-repeat;
  flex: 0 0 15px;
  height: 15px;
  width: 15px;
}

/* mobile floating call button — hidden on desktop */
.psmqy-mobile-call {
  display: none;
}

.component.main-hero {
  margin: 0;
}

.psmqy-hero {
  background: #000;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  justify-content: flex-end;
  min-height: min(720px, 70vw);
  overflow: hidden;
  padding: clamp(150px, 15vw, 220px) clamp(28px, 5vw, 64px) clamp(46px, 6vw, 78px);
  position: relative;
}

.psmqy-hero.aspect16x9 {
  min-height: min(640px, 58vw);
}

.psmqy-hero > picture,
.psmqy-hero .video-wrapper {
  display: block;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.psmqy-hero > picture::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.22) 43%, rgba(0, 0, 0, 0.08));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

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

.psmqy-hero .hero-headline {
  inset: auto !important;
  max-width: 900px;
  position: relative !important;
  transform: none !important;
  width: auto !important;
  z-index: 3;
}

.psmqy-hero .hero-headline h1,
.psmqy-hero .hero-headline h2 {
  color: #fff;
  font-family: INTLHeadline, sans-serif;
  font-size: clamp(4.2rem, 5.6vw, 8rem);
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
  max-width: 900px;
  text-transform: uppercase;
}

.psmqy-hero .hero-headline .h2-light {
  display: block;
  font-weight: 300;
}

.psmqy-eyebrow {
  color: #fff;
  margin-bottom: 20px;
  opacity: 0.86;
}

.psmqy-hero .hero-caption {
  inset: auto !important;
  margin-top: clamp(20px, 2.6vw, 32px);
  max-width: 560px;
  position: relative !important;
  transform: none !important;
  width: auto !important;
  z-index: 3;
}

.psmqy-hero .hero-caption p {
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.35;
  margin-bottom: 28px;
}

.link-container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.btn {
  align-items: center;
  border-radius: 4px;
  display: inline-flex;
  font-family: INTLText, sans-serif;
  font-size: clamp(1.15rem, 0.95vw, 1.35rem);
  font-weight: 800;
  justify-content: center;
  line-height: 1.15;
  min-height: 48px;
  min-width: min(260px, 100%);
  padding: 14px 28px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn.btn-primary {
  background: var(--psmqy-black);
  color: #fff;
}

.btn.btn-primary.on-dark {
  background: #fff;
  color: #000;
}

.btn.btn-secondary {
  background: #fff;
  border: 1px solid #5f5e5b;
  color: #000;
}

.btn.btn-secondary.on-dark {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.btn:hover {
  background: #143344 !important;
  border-color: #143344 !important;
  color: #fff !important;
}

.section-container {
  background: #fff;
}

.section-container .component-content.container {
  max-width: 1440px;
  padding-left: 32px;
  padding-right: 32px;
}

.title-block .light {
  padding: clamp(72px, 9vw, 118px) 0 clamp(58px, 8vw, 96px);
  text-align: center;
}

.title-block .dark-block {
  padding-left: 32px;
  padding-right: 32px;
}

.background-asphalt,
.background-asphalt .dark-block {
  background: var(--psmqy-black);
}

.title-block .highlight-large {
  color: #000;
  font-family: INTLHeadline, sans-serif;
  font-size: clamp(3.8rem, 5vw, 5.8rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 auto 26px;
  max-width: 960px;
  text-transform: uppercase;
}

.background-asphalt .highlight-large,
.background-asphalt p {
  color: #fff;
}

.title-block p {
  font-size: 1.9rem;
  line-height: 1.42;
  margin: 0 auto 30px;
  max-width: 840px;
}

.psmqy-card-grid {
  display: grid !important;
  gap: 30px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 24px 0 clamp(70px, 8vw, 110px);
  transform: none !important;
}

.psmqy-card-grid.vertical-card-row-two-across {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.psmqy-card-grid .promo-list-card {
  background: #fff;
  border: 1px solid #d8d7d4;
  color: #000;
  display: flex !important;
  flex-direction: column;
  height: auto !important;
  min-height: 100%;
  overflow: hidden;
  position: relative !important;
  text-decoration: none;
  transform: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease;
  width: auto !important;
}

.psmqy-card-grid .promo-list-card:hover {
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
  color: #000;
  transform: translateY(-4px) !important;
}

.promo-image {
  background: #ddd;
  display: block;
  overflow: hidden;
}

.promo-image img {
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.promo-category,
.promo-title,
.promo-description,
.promo-link {
  margin-left: 28px;
  margin-right: 28px;
}

.promo-category {
  color: #5f5e5b;
  margin-top: 26px;
}

.promo-title {
  font-family: INTLHeadline, sans-serif;
  font-size: clamp(2.4rem, 2.5vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
  margin-top: 12px;
  text-transform: uppercase;
}

.promo-description {
  color: #30312e;
  flex: 1;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-top: 18px;
}

.promo-link {
  border-bottom: 2px solid #000;
  align-items: center;
  display: inline-flex;
  gap: 10px;
  margin-bottom: 28px;
  margin-top: 28px;
  padding-bottom: 3px;
  width: fit-content;
}

.promo-link::after {
  background: #2b8bc5;
  content: "";
  display: inline-block;
  height: 18px;
  -webkit-mask: var(--psmqy-vector-arrow) center / contain no-repeat;
  mask: var(--psmqy-vector-arrow) center / contain no-repeat;
  width: 18px;
}

.promo-list-card:nth-child(even) .promo-link::after {
  background: #ef3d33;
}

.psmqy-split {
  padding: clamp(70px, 8vw, 112px) 0;
}

.psmqy-split .row {
  align-items: center;
}

.psmqy-reverse .row {
  flex-direction: row-reverse;
}

.psmqy-split-media img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
  width: 100%;
}

.psmqy-split-copy {
  padding: clamp(34px, 5vw, 72px);
}

.psmqy-split-copy h2,
.psmqy-detail h2 {
  font-family: INTLHeadline, sans-serif;
  font-size: clamp(3.6rem, 4.5vw, 5.8rem);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.psmqy-split-copy p,
.psmqy-detail p {
  color: #30312e;
  font-size: 1.8rem;
  line-height: 1.45;
  margin-bottom: 22px;
}

.list-column-check {
  margin: 28px 0;
  padding: 0;
}

.list-column-check li {
  background: none;
  border-top: 1px solid #e4dfd8;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.35;
  list-style: none;
  margin-bottom: 0;
  padding: 12px 0;
}

.list-column-check li:last-child {
  border-bottom: 1px solid #e4dfd8;
}

.psmqy-detail {
  padding: clamp(72px, 9vw, 124px) 0;
}

.psmqy-detail article {
  padding-right: clamp(24px, 4vw, 80px);
}

.psmqy-detail .detail-regular,
.psmqy-split .detail-regular {
  color: #5f5e5b;
  font-weight: 500;
  margin-bottom: 18px;
}

.psmqy-detail-side {
  align-self: start;
  background: var(--psmqy-black);
  color: #fff;
  margin-top: 8px;
  max-height: calc(100svh - 126px);
  overflow-y: auto;
  padding: 30px;
  position: sticky;
  top: 112px;
}

.psmqy-detail-side h3 {
  color: #fff;
  font-family: INTLHeadline, sans-serif;
  font-size: 2.8rem;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.psmqy-detail-side a:not(.btn) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  display: block;
  font-size: 1.5rem;
  padding: 14px 0;
  text-transform: uppercase;
}

.psmqy-detail-side .btn {
  margin-top: 24px;
  width: auto;
}

.psmqy-footer {
  background: var(--psmqy-black);
  color: #fff;
  padding: clamp(54px, 7vw, 90px) 32px 34px;
}

.psmqy-footer .component-content.row {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1360px;
}

/* homepage footer carries a 5th "Areas We Serve" column — fit all five on one desktop row
   (generated pages keep 4 columns; the max-width breakpoints below still collapse to 2/1). */
@media (min-width: 1056px) {
  .cra-redesign .psmqy-footer .component-content.row {
    gap: 30px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.psmqy-footer a {
  color: #fff;
  text-decoration: none;
}

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

.psmqy-footer .h3 {
  font-family: INTLHeadline, sans-serif;
  font-size: 2.4rem;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.psmqy-footer .list-item {
  margin-bottom: 9px;
}

.psmqy-footer .list-item a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.4rem;
  line-height: 1.25;
}

.psmqy-footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 42px auto 0;
  max-width: 1360px;
  padding-top: 28px;
}

.psmqy-footer-bottom .psmqy-logo {
  min-height: 38px;
}

.psmqy-footer-bottom .psmqy-brand-logo {
  max-width: 250px;
  width: min(250px, 40vw);
}

.psmqy-footer-bottom .psmqy-logo-text {
  font-size: 2rem;
}

.psmqy-footer-bottom p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.4rem;
  margin: 0;
  max-width: 520px;
  text-align: right;
}

.privacy-warning,
[class*="QSI"],
[id*="QSI"],
[class*="qualtrics" i],
[id*="qualtrics" i] {
  display: none !important;
}

@media (max-width: 1055.98px) {
  .psmqy-header {
    align-items: center;
    padding: 38px 36px;
  }

  .psmqy-header-right {
    display: none !important;
  }

  .psmqy-nav {
    display: none !important;
  }

  .psmqy-callbtn {
    display: none !important;
  }

  .psmqy-mobile-call {
    align-items: center;
    background: var(--psmqy-orange);
    border-radius: 999px;
    bottom: 20px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.36);
    color: #fff;
    display: inline-flex;
    font-family: INTLText, sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    gap: 10px;
    letter-spacing: 0.03em;
    padding: 15px 24px;
    position: fixed;
    right: 20px;
    text-decoration: none;
    text-transform: uppercase;
    z-index: 1100;
  }

  .psmqy-mobile-call .psmqy-callbtn-ic {
    background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center / contain no-repeat;
    flex: 0 0 18px;
    height: 18px;
    width: 18px;
  }

  .psmqy-menu-button {
    display: flex !important;
  }

  .psmqy-logo-text {
    display: none;
  }

  .psmqy-header .psmqy-brand-logo {
    max-height: 42px;
    width: min(245px, 58vw);
  }

  .psmqy-hero {
    min-height: min(640px, 132vw);
    padding: clamp(128px, 22vw, 168px) 36px clamp(40px, 9vw, 60px);
  }

  .psmqy-hero.aspect16x9 {
    min-height: min(600px, 124vw);
  }

  .psmqy-hero > picture::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.46));
  }

  .psmqy-hero .hero-headline {
    max-width: 100%;
  }

  .psmqy-hero .hero-headline h1,
  .psmqy-hero .hero-headline h2 {
    font-size: clamp(3.6rem, 8vw, 5.4rem);
    max-width: 100%;
    overflow-wrap: normal;
    white-space: normal;
  }

  .psmqy-hero .hero-caption {
    max-width: 100%;
  }

  .psmqy-card-grid,
  .psmqy-card-grid.vertical-card-row-two-across {
    grid-template-columns: 1fr;
  }

  .psmqy-detail-side {
    max-height: none;
    overflow: visible;
    position: static;
  }

  .psmqy-footer .component-content.row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Commercial roof systems and owner decision tools */
.psmqy-strategy-intro,
.cra-tool-shell {
  background: #f7f6f2;
  padding: clamp(64px, 8vw, 112px) 0;
}

.psmqy-strategy-intro .row {
  align-items: start;
  gap: clamp(32px, 6vw, 84px);
}

.psmqy-strategy-callout {
  background: #171917;
  color: #fff;
  padding: clamp(28px, 4vw, 44px);
}

.psmqy-strategy-callout strong {
  display: block;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(2.8rem, 3.2vw, 4.6rem);
  line-height: 1;
  text-transform: uppercase;
}

.psmqy-strategy-callout p {
  color: #cfcec9;
  font-size: 1.7rem;
  line-height: 1.5;
}

.psmqy-strategy-band {
  background: #161817;
  color: #fff;
  padding: clamp(70px, 9vw, 120px) 0;
}

.psmqy-strategy-band h2,
.psmqy-strategy-band p {
  color: #fff;
  max-width: 1040px;
}

.psmqy-system-next {
  background: #f1f4f5;
  margin-top: clamp(54px, 8vw, 100px);
  padding: clamp(32px, 5vw, 64px);
}

.cra-tool-heading {
  margin-bottom: clamp(38px, 6vw, 72px);
  max-width: 980px;
}

.cra-calculator,
.cra-decision-tool {
  background: #fff;
  box-shadow: 0 24px 64px rgba(20, 29, 32, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.cra-tool-form,
.cra-decision-list {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 56px);
}

.cra-tool-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cra-tool-form label {
  color: #282a28;
  display: grid;
  font-size: 1.55rem;
  font-weight: 800;
  gap: 8px;
}

.cra-tool-form label span {
  color: #737570;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
}

.cra-tool-form input {
  background: #f5f5f1;
  border: 1px solid #d8d8d1;
  border-radius: 0;
  color: #171917;
  font-family: INTLText, Arial, sans-serif;
  font-size: 1.75rem;
  min-height: 56px;
  padding: 12px 14px;
  width: 100%;
}

.cra-tool-form input:focus {
  background: #fff;
  border-color: #ff7144;
  box-shadow: 0 0 0 3px rgba(255, 113, 68, 0.18);
  outline: none;
}

.cra-tool-form button {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 12px;
}

.cra-tool-result,
.cra-decision-result {
  background: #171917;
  color: #fff;
  padding: clamp(32px, 5vw, 60px);
}

.cra-tool-result > strong,
.cra-decision-result > strong {
  color: #fff;
  display: block;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(4rem, 5vw, 7rem);
  line-height: 1;
  margin: 22px 0 34px;
  overflow-wrap: anywhere;
}

.cra-tool-result dl {
  display: grid;
  gap: 0;
  margin: 0;
}

.cra-tool-result dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 15px 0;
}

.cra-tool-result dt,
.cra-tool-result dd {
  font-size: 1.5rem;
  margin: 0;
}

.cra-tool-result dd {
  font-weight: 800;
}

.cra-tool-note {
  color: #777872;
  font-size: 1.35rem;
  line-height: 1.55;
}

.cra-tool-result .cra-tool-note {
  color: #aaa9a5;
  margin: 30px 0 0;
}

.cra-check-grid {
  display: grid;
  gap: 12px 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 34px 0;
  padding: 0;
}

.cra-check-grid li {
  border-top: 1px solid currentColor;
  font-size: 1.65rem;
  padding: 14px 0;
}

.cra-decision-list {
  align-content: start;
}

.cra-decision-list label {
  align-items: start;
  background: #f5f5f1;
  cursor: pointer;
  display: grid;
  gap: 14px;
  grid-template-columns: 22px 1fr;
  padding: 15px;
}

.cra-decision-list input {
  accent-color: #ff7144;
  height: 20px;
  margin: 1px 0 0;
  width: 20px;
}

.cra-decision-list span,
.cra-decision-result p,
.cra-decision-result li {
  font-size: 1.55rem;
  line-height: 1.45;
}

.cra-decision-result ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 36px;
  padding-left: 20px;
}

.cra-sample-banner {
  align-items: center;
  background: #fff0ea;
  border-left: 5px solid #ff7144;
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  padding: 18px 22px;
}

.cra-sample-banner strong {
  font-size: 1.45rem;
  text-transform: uppercase;
}

.cra-sample-banner span {
  color: #555650;
  font-size: 1.45rem;
}

.cra-dashboard {
  background: #151918;
  color: #fff;
  margin-bottom: 34px;
  padding: clamp(24px, 4vw, 48px);
}

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

.cra-dashboard-top div {
  background: #222725;
  padding: 22px;
}

.cra-dashboard-top span {
  color: #aaa;
  display: block;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.cra-dashboard-top strong {
  color: #fff;
  display: block;
  font-size: 3rem;
  margin-top: 10px;
}

.cra-dashboard-table-wrap {
  overflow-x: auto;
}

.cra-dashboard-table {
  border-collapse: collapse;
  margin: 24px 0;
  min-width: 850px;
  width: 100%;
}

.cra-dashboard-table th,
.cra-dashboard-table td {
  border-bottom: 1px solid #3a3e3c;
  font-size: 1.4rem;
  padding: 16px 12px;
  text-align: left;
}

.cra-dashboard-table th {
  color: #aaa;
  text-transform: uppercase;
}

.cra-score {
  align-items: center;
  border-radius: 50%;
  display: inline-flex;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.cra-score-red { background: #b73e35; }
.cra-score-amber { background: #a16c18; }
.cra-score-green { background: #287a5a; }

.cra-dashboard-lower {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cra-dashboard-lower article {
  background: #222725;
  padding: 26px;
}

.cra-dashboard-lower h3,
.cra-dashboard-lower p {
  color: #fff;
}

.cra-index-dimensions {
  counter-reset: dimension;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cra-index-dimensions article {
  background: #fff;
  border-top: 5px solid #ff7144;
  min-height: 245px;
  padding: 28px;
}

.cra-index-dimensions article > span {
  color: #ff7144;
  font-size: 1.3rem;
  font-weight: 900;
}

.cra-index-dimensions h3 {
  margin: 45px 0 14px;
}

.cra-index-dimensions p {
  font-size: 1.5rem;
  line-height: 1.5;
}

.cra-index-bands {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 48px 0 28px;
}

.cra-index-bands article {
  color: #fff;
  min-height: 245px;
  padding: 28px 24px;
}

.cra-index-bands .red { background: #8f362f; }
.cra-index-bands .amber { background: #86601c; }
.cra-index-bands .blue { background: #26688c; }
.cra-index-bands .green { background: #27674e; }

.cra-index-bands strong {
  font-size: 3rem;
}

.cra-index-bands h3,
.cra-index-bands p {
  color: #fff;
}

.cra-index-bands h3 {
  font-size: 2.2rem;
  margin: 45px 0 12px;
}

.cra-index-bands p {
  font-size: 1.4rem;
  line-height: 1.5;
}

.cra-report-preview {
  align-items: center;
  display: grid;
  gap: clamp(38px, 7vw, 92px);
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
}

.cra-report-cover {
  aspect-ratio: 0.77 / 1;
  background: linear-gradient(150deg, #102f3d, #1f6f95);
  box-shadow: 0 24px 60px rgba(17, 46, 59, 0.22);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 4vw, 48px);
}

.cra-report-cover h2 {
  color: #fff;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(3.6rem, 5vw, 6.4rem);
  line-height: 0.9;
  margin: 70px 0 20px;
  text-transform: uppercase;
}

.cra-report-cover p {
  color: #d7e7ee;
  font-size: 1.45rem;
  line-height: 1.5;
}

.cra-report-cover strong {
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 30px;
  padding-top: 16px;
  text-transform: uppercase;
}

@media (min-width: 1056px) and (max-width: 1440px) {
  .psmqy-nav a {
    font-size: 13px;
    padding: 0 10px;
  }

  .psmqy-callbtn {
    font-size: 13px;
    padding: 0 12px;
  }
}

@media (max-width: 900px) {
  .cra-calculator,
  .cra-decision-tool,
  .cra-report-preview {
    grid-template-columns: 1fr;
  }

  .cra-dashboard-top,
  .cra-index-dimensions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cra-index-bands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 671.98px) {
  .cra-tool-form,
  .cra-check-grid,
  .cra-dashboard-top,
  .cra-dashboard-lower,
  .cra-index-dimensions,
  .cra-index-bands {
    grid-template-columns: 1fr;
  }

  .cra-sample-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

.psmqy-header.is-scrolled {
  background: rgba(20, 22, 22, 0.96);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
}

@media (max-width: 671.98px) {
  .psmqy-header {
    align-items: center;
    padding: 18px 16px;
  }

  .psmqy-header-right,
  .psmqy-callbtn,
  .psmqy-nav {
    display: none !important;
  }

  .psmqy-header .psmqy-brand-logo {
    max-height: 36px;
    width: min(226px, 64vw);
  }

  .psmqy-menu-button {
    display: flex !important;
    height: 48px;
    width: 48px;
  }

  .psmqy-mobile-panel {
    right: 18px;
    top: 76px;
    width: calc(100vw - 36px);
  }

  .psmqy-hero {
    min-height: min(580px, 142vw);
    padding-left: 22px;
    padding-right: 22px;
  }

  .psmqy-hero.aspect16x9 {
    min-height: min(540px, 134vw);
  }

  .psmqy-hero .hero-headline h1,
  .psmqy-hero .hero-headline h2 {
    font-size: clamp(3.2rem, 8.4vw, 4.4rem);
  }

  .psmqy-location-page .psmqy-hero,
  .psmqy-premium-detail-hero .psmqy-hero {
    min-height: min(560px, 126vw);
    padding: 104px 18px 72px !important;
  }

  .psmqy-location-page .hero-headline,
  .psmqy-premium-detail-hero .hero-headline {
    max-width: calc(100vw - 36px) !important;
    width: 100%;
  }

  .psmqy-location-page .hero-headline h1,
  .psmqy-premium-detail-hero .hero-headline h1 {
    font-size: clamp(3.8rem, 15.4vw, 6.4rem) !important;
    line-height: 0.95 !important;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }

  .psmqy-location-page .hero-headline .h2-light,
  .psmqy-premium-detail-hero .hero-headline .h2-light {
    font-size: clamp(1.1rem, 3.4vw, 1.35rem) !important;
    letter-spacing: 0.12em;
  }

  .psmqy-breadcrumb .component-content {
    font-size: 1.18rem;
    gap: 8px;
    padding: 18px 16px;
  }

  .psmqy-hero .hero-caption p {
    font-size: 1.6rem;
  }

  .btn {
    min-width: 100%;
  }

  .section-container .component-content.container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .title-block .highlight-large {
    font-size: 3.4rem;
  }

  .psmqy-split-copy {
    padding: 34px 0 0;
  }

  .psmqy-detail article {
    padding-right: 0;
  }

  .psmqy-footer .component-content.row {
    grid-template-columns: 1fr;
  }

  .psmqy-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

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

/* ===== functional search overlay ===== */
.psmqy-search-overlay {
  align-items: flex-start;
  background: rgba(16, 17, 20, 0.86);
  backdrop-filter: blur(6px);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 12vh 20px 20px;
  position: fixed;
  transition: opacity 0.18s ease;
  visibility: hidden;
  z-index: 2000;
}

.psmqy-search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.psmqy-search-box {
  background: #1c1e22;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  max-height: 72vh;
  overflow: hidden;
  transform: translateY(-12px);
  transition: transform 0.18s ease;
  width: min(680px, 100%);
}

.psmqy-search-overlay.open .psmqy-search-box {
  transform: translateY(0);
}

.psmqy-search-field {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  gap: 12px;
  padding: 18px 22px;
}

.psmqy-search-field svg {
  flex: 0 0 22px;
  height: 22px;
  opacity: 0.6;
  width: 22px;
}

.psmqy-search-input {
  background: transparent;
  border: 0;
  color: #fff;
  flex: 1;
  font-family: INTLText, sans-serif;
  font-size: 1.9rem;
  outline: none;
}

.psmqy-search-input::placeholder {
  color: #82817d;
}

.psmqy-search-hint {
  color: #6f6e6b;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.psmqy-search-results {
  list-style: none;
  margin: 0;
  overflow-y: auto;
  padding: 8px;
}

.psmqy-search-results li a {
  border-radius: 9px;
  color: #fff;
  display: block;
  padding: 13px 16px;
  text-decoration: none;
}

.psmqy-search-results li a:hover,
.psmqy-search-results li a.active {
  background: rgba(255, 113, 68, 0.14);
}

.psmqy-search-results .r-tax {
  color: var(--psmqy-orange);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.psmqy-search-results .r-title {
  font-family: INTLHeadline, sans-serif;
  font-size: 1.7rem;
  margin: 3px 0 2px;
}

.psmqy-search-results .r-desc {
  color: #b3b2af;
  font-size: 1.3rem;
  line-height: 1.45;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.psmqy-search-empty {
  color: #82817d;
  font-size: 1.5rem;
  padding: 30px 22px;
  text-align: center;
}

/* ===== breadcrumbs ===== */
.psmqy-breadcrumb {
  background: #11110f;
  border-bottom: 0;
}
.psmqy-breadcrumb .component-content {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-family: INTLText, sans-serif;
  font-size: 1.3rem;
  gap: 9px;
  margin: 0 auto;
  max-width: 1440px;
  padding: 22px clamp(20px, 5vw, 32px);
  justify-content: center;
  text-align: center;
}
.psmqy-breadcrumb a {
  color: #ddd9d2;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}
.psmqy-breadcrumb a:hover {
  color: #fff;
}
.psmqy-bc-sep {
  color: #8f8c86;
}
.psmqy-bc-current {
  color: #ddd9d2;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.psmqy-breadcrumb::after {
  background: linear-gradient(90deg, #2b8bc5 0 50%, #ef3d33 50% 100%);
  content: "";
  display: block;
  height: 5px;
  margin: 0;
  max-width: none;
  width: 100%;
}

/* ===== SEO footer brand + NAP block ===== */
.psmqy-footer-brand {
  background: var(--psmqy-black);
  padding: 40px 0 4px;
}
.psmqy-footer-brandrow {
  align-items: center;
  display: flex;
  gap: 13px;
  margin-bottom: 14px;
}
.psmqy-footer-brandrow .psmqy-brand-logo {
  background: #143344;
  border-radius: 4px;
  max-width: 300px;
  padding: 10px 14px;
  width: min(300px, 70vw);
}
.psmqy-footer-brandname {
  color: #fff;
  font-family: INTLHeadline, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.psmqy-footer-tagline {
  color: #bab9b5;
  font-size: 1.45rem;
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 780px;
}
.psmqy-footer-contact {
  align-items: center;
  color: #bab9b5;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.35rem;
  gap: 10px;
  margin: 0;
}
.psmqy-footer-contact a {
  color: #fff;
  text-decoration: none;
}
.psmqy-footer-contact a:hover {
  color: var(--psmqy-orange);
}
.psmqy-fc-dot {
  color: #5f5e5b;
}

.psmqy-footer-location {
  align-items: stretch;
  display: grid;
  gap: clamp(20px, 3vw, 36px);
  grid-template-columns: minmax(230px, 0.7fr) minmax(320px, 1.3fr);
  margin-top: 30px;
}

.psmqy-footer-location-copy {
  align-content: center;
  background: rgba(20, 51, 68, 0.07);
  display: grid;
  padding: clamp(22px, 3vw, 34px);
}

.psmqy-location-label {
  color: #ef3d33 !important;
  font-size: 1.2rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 10px !important;
  text-transform: uppercase;
}

.psmqy-footer-location address,
.psmqy-office-location address {
  font-style: normal;
  line-height: 1.45;
  margin: 0;
}

.psmqy-footer-location address a {
  color: #143344;
  font-size: clamp(1.35rem, 1.6vw, 1.75rem);
  font-weight: 700;
  text-decoration: none;
}

.psmqy-footer-map,
.psmqy-office-map {
  min-height: 240px;
  overflow: hidden;
  position: relative;
}

.psmqy-footer-map iframe,
.psmqy-office-map iframe {
  border: 0;
  display: block;
  height: 100%;
  inset: 0;
  min-height: inherit;
  position: absolute;
  width: 100%;
}

/* ===== taste pass: route polish and form repair ===== */
.component.main-hero {
  background: #fff !important;
  overflow: hidden;
}

.psmqy-hero {
  background: #fff !important;
  min-height: clamp(560px, 55vw, 760px);
  padding-bottom: clamp(50px, 5.6vw, 80px) !important;
}

.psmqy-hero.aspect16x9 {
  min-height: clamp(500px, 48vw, 650px);
}

.psmqy-hero > picture {
  bottom: -1px !important;
  height: calc(100% + 2px) !important;
  top: -1px !important;
}

.psmqy-hero img {
  display: block;
  height: 100% !important;
  min-height: 100%;
  object-position: center 44%;
}

.title-block .light,
.psmqy-split,
.psmqy-detail {
  padding-bottom: clamp(48px, 6.5vw, 88px);
  padding-top: clamp(52px, 7vw, 94px);
}

.background-asphalt .title-block .light,
.background-asphalt .dark-block {
  background: #262521 !important;
  padding-bottom: clamp(56px, 7vw, 92px);
  padding-top: clamp(60px, 7.5vw, 96px);
}

.background-asphalt .title-block .component-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
}

.background-asphalt .title-block .highlight-large,
.background-asphalt .title-block .dark-block .highlight-large {
  color: #fff !important;
  font-size: clamp(3.2rem, 4.4vw, 5.4rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.background-asphalt .title-block p,
.background-asphalt .title-block .dark-block p {
  color: #dfded8 !important;
  margin-bottom: 26px;
}

.background-asphalt .title-block .link-container {
  justify-content: center;
}

.background-asphalt .btn.btn-primary {
  background: #fff;
  color: #11110f;
}

.psmqy-detail article ul:not(.list-column-check) {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 26px 0 36px;
  padding: 0;
}

.psmqy-detail article ul:not(.list-column-check) li {
  border-top: 1px solid #ddd9d2;
  color: #171715;
  font-size: 1.7rem;
  line-height: 1.38;
  list-style: none;
  padding: 14px 0 14px 42px;
  position: relative;
}

.psmqy-detail article ul:not(.list-column-check) li:last-child {
  border-bottom: 1px solid #ddd9d2;
}

.psmqy-detail article ul:not(.list-column-check) li::before {
  background: #272623;
  border: 4px solid #f2eee7;
  border-radius: 999px;
  box-shadow: 0 0 0 1px #272623;
  content: "";
  height: 11px;
  left: 4px;
  position: absolute;
  top: 18px;
  width: 11px;
}

ul.list-column-check {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

ul.list-column-check li {
  background: none !important;
  border-top: 1px solid #e4dfd8;
  color: #171715;
  display: block;
  font-size: 1.56rem;
  line-height: 1.36;
  margin-bottom: 0;
  min-height: 0;
  padding: 12px 0;
  position: relative;
}

ul.list-column-check li::before,
ul.list-column-check li::after {
  content: none !important;
  display: none !important;
}

.psmqy-detail-side {
  border-top: 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.psmqy-detail-side h3 {
  background: transparent !important;
  display: block;
  line-height: 1.05;
}

.psmqy-detail-side a:not(.btn) {
  line-height: 1.25;
}

.psmqy-about-page .component.main-hero {
  margin-bottom: 0;
}

.psmqy-about-page .psmqy-hero img {
  object-position: center 44%;
}

.psmqy-about-page .component-content.container {
  box-sizing: border-box;
}

.psmqy-about-intro,
.psmqy-about-record {
  background: #fff;
  padding: clamp(48px, 6vw, 78px) 0;
}

.psmqy-about-proof {
  background: #f3f0ea;
  padding: clamp(46px, 6vw, 76px) 0;
}

.psmqy-about-planning {
  background: var(--psmqy-black);
  color: #fff;
  padding: clamp(48px, 6.4vw, 84px) 0;
}

.psmqy-about-kicker {
  color: #6c6961;
  font-size: 1.32rem;
  letter-spacing: 0.06em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.psmqy-about-planning .psmqy-about-kicker,
.psmqy-about-planning p,
.psmqy-about-planning h2 {
  color: #fff;
}

.psmqy-about-intro-grid,
.psmqy-about-proof-grid,
.psmqy-about-record-head,
.psmqy-about-planning-grid {
  display: grid;
  gap: clamp(28px, 4.8vw, 66px);
}

.psmqy-about-intro-grid,
.psmqy-about-record-head {
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.66fr);
}

.psmqy-about-proof-grid,
.psmqy-about-planning-grid {
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
}

.psmqy-about-intro-grid > *,
.psmqy-about-proof-grid > *,
.psmqy-about-record-head > *,
.psmqy-about-planning-grid > * {
  min-width: 0;
}

.psmqy-about-intro h2,
.psmqy-about-proof h2,
.psmqy-about-record h2,
.psmqy-about-planning h2 {
  font-family: INTLHeadline, sans-serif;
  font-size: clamp(3.4rem, 4.6vw, 6.4rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  text-transform: uppercase;
}

.psmqy-about-intro-copy p,
.psmqy-about-proof-copy > p,
.psmqy-about-record-head p,
.psmqy-about-planning p {
  color: #4b4944;
  font-size: 1.72rem;
  line-height: 1.48;
  margin: 0;
}

.psmqy-about-planning p {
  color: #dedbd4;
}

.psmqy-about-intro-copy {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
}

.psmqy-about-signals {
  border-bottom: 1px solid #d7d1c6;
  border-top: 1px solid #d7d1c6;
  display: grid;
  gap: clamp(18px, 3vw, 36px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(30px, 4vw, 48px);
  padding: 20px 0;
}

.psmqy-about-signals div {
  display: grid;
  gap: 6px;
}

.psmqy-about-signals strong {
  color: #171715;
  font-size: 1.9rem;
  font-weight: 700;
}

.psmqy-about-signals span {
  color: #5f5b54;
  font-size: 1.45rem;
  line-height: 1.35;
}

.psmqy-about-photo {
  margin: 0;
  overflow: hidden;
}

.psmqy-about-photo img {
  aspect-ratio: 16 / 11;
  display: block;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.psmqy-about-proof-copy {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr);
}

.psmqy-about-rows,
.psmqy-about-deliverables {
  border-top: 1px solid #d3cec4;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  margin-top: clamp(10px, 2vw, 20px);
}

.psmqy-about-row,
.psmqy-about-deliverable {
  border-bottom: 1px solid #d3cec4;
  display: grid;
  gap: clamp(16px, 2.4vw, 32px);
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  padding: 18px 0;
}

.psmqy-about-row h3,
.psmqy-about-deliverable strong {
  color: #171715;
  font-size: 1.52rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin: 0;
  text-transform: uppercase;
}

.psmqy-about-row p,
.psmqy-about-deliverable p {
  color: #4b4944;
  font-size: 1.54rem;
  line-height: 1.42;
  margin: 0;
}

.psmqy-about-planning .psmqy-about-photo img {
  aspect-ratio: 4 / 3;
}

.psmqy-about-planning .link-container {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .psmqy-about-intro,
  .psmqy-about-proof,
  .psmqy-about-record,
  .psmqy-about-planning {
    padding: 36px 0;
  }

  .psmqy-about-intro-grid,
  .psmqy-about-proof-grid,
  .psmqy-about-record-head,
  .psmqy-about-planning-grid,
  .psmqy-about-signals,
  .psmqy-about-row,
  .psmqy-about-deliverable {
    grid-template-columns: 1fr;
  }

  .psmqy-about-intro h2,
  .psmqy-about-proof h2,
  .psmqy-about-record h2,
  .psmqy-about-planning h2 {
    font-size: clamp(3rem, 10vw, 4.4rem);
  }
}

.psmqy-h-contact-section {
  background: #f2eee7;
  margin: 0;
  padding: clamp(56px, 7vw, 96px) 0;
  width: 100%;
}

.psmqy-office-location {
  background: #fff;
  margin: 0;
  padding: clamp(58px, 7vw, 96px) 0;
  width: 100%;
}

.psmqy-office-location-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.psmqy-office-location-copy {
  align-content: center;
  display: grid;
}

.psmqy-office-location-copy h2 {
  margin: 0 0 18px;
}

.psmqy-office-location-copy address a {
  color: #143344;
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 700;
  text-decoration: none;
}

.psmqy-office-location-copy address a:hover {
  color: #ef3d33;
}

.psmqy-office-location-copy > p:last-child {
  color: #526a75;
  font-size: 1.45rem;
  margin: 18px 0 0;
}

.psmqy-office-map {
  min-height: clamp(320px, 38vw, 460px);
}

.psmqy-h-contact-shell {
  align-items: stretch;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
}

.psmqy-h-contact-intro {
  background: #272623;
  color: #fff;
  min-height: 100%;
  padding: clamp(30px, 4vw, 46px);
}

.psmqy-h-contact-intro .detail-regular,
.psmqy-h-contact-intro h2,
.psmqy-h-contact-intro p {
  color: #fff;
}

.psmqy-h-contact-intro h2 {
  font-size: clamp(3rem, 3.7vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 18px;
}

.psmqy-h-contact-notes {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.psmqy-h-contact-notes span {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #dedbd4;
  font-size: 1.35rem;
  padding-top: 10px;
  text-transform: uppercase;
}

.psmqy-h-contact-form {
  align-content: start;
  background: #fff;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(28px, 4vw, 44px);
}

.psmqy-h-contact-form label {
  color: #383631;
  display: grid;
  font-size: 1.25rem;
  font-weight: 700;
  gap: 8px;
  letter-spacing: 0.06em;
  margin: 0;
  text-transform: uppercase;
}

.psmqy-h-contact-form input,
.psmqy-h-contact-form select,
.psmqy-h-contact-form textarea {
  appearance: none;
  background: #f7f5f1;
  border: 1px solid #d7d2c8;
  border-radius: 0;
  color: #171715;
  display: block;
  font-family: INTLText, Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 1.35;
  max-width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  width: 100%;
}

.psmqy-h-contact-form textarea {
  min-height: 136px;
  resize: vertical;
}

.psmqy-h-contact-form input:focus,
.psmqy-h-contact-form select:focus,
.psmqy-h-contact-form textarea:focus {
  background: #fff;
  border-color: #272623;
  box-shadow: 0 0 0 3px rgba(255, 113, 68, 0.18);
  outline: none;
}

.psmqy-h-contact-wide,
.psmqy-h-contact-submit {
  grid-column: 1 / -1;
}

.psmqy-h-contact-submit {
  border: 0;
  cursor: pointer;
  justify-self: start;
  margin-top: 4px;
}

.psmqy-h-honey {
  height: 1px !important;
  left: -10000px !important;
  overflow: hidden !important;
  position: absolute !important;
  top: auto !important;
  width: 1px !important;
}

@media (max-width: 900px) {
  .psmqy-h-contact-shell,
  .psmqy-office-location-grid,
  .psmqy-footer-location {
    grid-template-columns: 1fr;
  }

  .psmqy-footer-map {
    min-height: 280px;
  }
}

@media (max-width: 671.98px) {
  .psmqy-hero,
  .psmqy-hero.aspect16x9 {
    min-height: min(580px, 138vw);
  }

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

  .psmqy-h-contact-submit {
    justify-self: stretch;
  }
}

/* Keep generated interior pages aligned with the redesigned landing-page typography. */
.psmqy-faithful-body,
.psmqy-faithful-body p,
.psmqy-faithful-body a,
.psmqy-faithful-body li,
.psmqy-faithful-body input,
.psmqy-faithful-body select,
.psmqy-faithful-body textarea,
.psmqy-faithful-body button {
  font-family: INTLText, Arial, sans-serif;
}

.psmqy-faithful-body h1,
.psmqy-faithful-body h2,
.psmqy-faithful-body h3,
.psmqy-faithful-body h4,
.psmqy-faithful-body .h1,
.psmqy-faithful-body .h2,
.psmqy-faithful-body .h3,
.psmqy-faithful-body .psmqy-nav a,
.psmqy-faithful-body .psmqy-footer .list-menu-title,
.psmqy-faithful-body .psmqy-footer-brandname {
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
}

/* Unified nav and footer treatment to match the redesigned homepage. */
.psmqy-search {
  align-items: center;
  background: transparent;
  display: inline-flex;
  justify-content: center;
}

.psmqy-search::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.7-3.7'/%3E%3C/svg%3E") center / contain no-repeat;
  content: "";
  display: block;
  height: 25px;
  width: 25px;
}

.psmqy-nav {
  background: rgba(33, 32, 29, 0.96);
  min-height: 55px;
  overflow: visible; /* let Services/Locations dropdowns escape the nav bar (border-radius still rounds the bar) */
  padding: 0;
}

.psmqy-nav a {
  font-size: 15px;
  min-height: 55px;
  padding: 0 15px;
}

.psmqy-search {
  min-height: 55px;
  min-width: 55px;
}

.psmqy-footer {
  background: linear-gradient(180deg, #f7fafb 0%, #eef4f7 42%, #dce9ef 100%) !important;
  color: #143344;
  overflow: hidden;
  position: relative;
}

.psmqy-footer::before {
  background: linear-gradient(90deg, #2b8bc5 0 54%, #ef3d33 54% 100%);
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.psmqy-footer-brand {
  background: transparent;
  border-bottom: 1px solid rgba(20, 51, 68, 0.18);
  margin: 0 auto 48px;
  max-width: 1360px;
  padding: 0 0 40px;
}

.psmqy-footer-brandrow .psmqy-brand-logo,
.psmqy-footer-bottom .psmqy-brand-logo {
  background-color: #143344;
  border-radius: 4px;
  filter: none;
  padding: 8px 12px;
}

.psmqy-footer-brandname,
.psmqy-footer .h3,
.psmqy-footer .h3 a {
  color: #143344;
}

.psmqy-footer-tagline,
.psmqy-footer-contact,
.psmqy-footer-bottom p {
  color: #526a75;
}

.psmqy-footer-contact a,
.psmqy-footer a {
  color: #143344;
}

.psmqy-footer .list-item a {
  color: #526a75;
}

.psmqy-footer a:hover,
.psmqy-footer-contact a:hover {
  color: #ef3d33;
}

.psmqy-fc-dot {
  color: #ef3d33;
}

.psmqy-footer-marketline {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding-bottom: 7px;
  position: relative;
  text-transform: uppercase;
}

.psmqy-footer-marketline::after {
  background: linear-gradient(90deg, #2b8bc5 0 56%, #ef3d33 56% 100%);
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.psmqy-footer-bottom {
  border-top-color: rgba(20, 51, 68, 0.18);
}

/* Final global header treatment: keep generated/index pages consistent with the redesigned homepage. */
.psmqy-header {
  align-items: center;
  background: linear-gradient(180deg, rgba(7, 8, 10, 0.78), rgba(7, 8, 10, 0.28) 72%, rgba(7, 8, 10, 0));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding: 28px clamp(20px, 4.5vw, 76px) 18px;
}

.psmqy-header .psmqy-logo {
  min-height: 78px;
}

.psmqy-header .psmqy-brand-logo {
  filter: drop-shadow(0 14px 30px rgba(0, 0, 0, 0.5));
  max-height: none;
  max-width: 360px;
  width: clamp(230px, 22vw, 360px);
}

.psmqy-header-right {
  align-self: stretch;
  background: rgba(16, 17, 17, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  box-shadow: none;
  min-height: 78px;
}

.psmqy-callbtn,
.psmqy-nav {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  min-height: 78px;
}

.psmqy-callbtn {
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.02em;
  padding: 0 clamp(16px, 1.8vw, 30px);
}

.psmqy-callbtn:hover,
.psmqy-nav a:hover {
  color: #d7ff44;
}

.psmqy-header .psmqy-callbtn-ic {
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.9.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/></svg>") center / contain no-repeat;
  opacity: 0.92;
}

.psmqy-nav {
  overflow: visible;
  padding: 0 clamp(8px, 1vw, 18px);
}

.psmqy-nav a {
  font-family: INTLText, Arial, sans-serif;
  font-size: clamp(13px, 0.8vw, 15px);
  font-weight: 900;
  letter-spacing: 0.025em;
  min-height: 78px;
  padding: 0 clamp(10px, 1.02vw, 17px);
}

.psmqy-header .psmqy-search {
  height: 78px;
  margin-left: 6px;
  width: 54px;
}

.psmqy-dd {
  background: rgba(15, 16, 17, 0.96);
  border-radius: 6px;
  top: calc(100% + 1px);
}

.psmqy-nav .psmqy-dd a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.28;
  min-height: 0;
  padding: 12px 15px;
}

.psmqy-mobile-call {
  background: #143344;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 32px rgba(4, 13, 19, 0.32);
}

.psmqy-mobile-call:hover {
  background: #0f2937;
  color: #fff;
}

/* Final footer/mobile overrides. Keep these last so they win across every page. */
.psmqy-footer .list-menu-title,
.psmqy-footer .list-menu-title a,
.psmqy-footer .h3.list-menu-title,
.psmqy-footer .h3.list-menu-title a,
.psmqy-faithful-body .psmqy-footer .list-menu-title,
.psmqy-faithful-body .psmqy-footer .list-menu-title a,
.psmqy-faithful-body .psmqy-footer .h3.list-menu-title,
.psmqy-faithful-body .psmqy-footer .h3.list-menu-title a {
  color: #ff7144 !important;
}

.psmqy-search-mobile,
.psmqy-nav .psmqy-search-mobile,
.psmqy-header .psmqy-search {
  display: none !important;
}

@media (max-width: 1055.98px) {
  .psmqy-search-mobile,
  .psmqy-header .psmqy-search-mobile,
  .psmqy-header .psmqy-search {
    display: none !important;
  }
}

/* Final footer system: one polished footer across homepage, generated indexes, and detail pages. */
.psmqy-footer {
  background: linear-gradient(180deg, #121817 0%, #111718 48%, #0f1416 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #e7eef2 !important;
  overflow: hidden !important;
  padding: 0 clamp(20px, 4vw, 64px) clamp(30px, 4vw, 48px) !important;
  position: relative !important;
}

.psmqy-footer::before {
  background: linear-gradient(90deg, #2b8bc5 0 50%, #ef3d33 50% 100%) !important;
  content: "" !important;
  display: block !important;
  height: 6px !important;
  left: 0 !important;
  position: absolute !important;
  right: 0 !important;
  top: 0 !important;
  width: 100% !important;
}

.psmqy-footer-brand {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  margin: 0 auto !important;
  max-width: 1480px !important;
  padding: clamp(48px, 6vw, 78px) 0 clamp(34px, 4vw, 52px) !important;
}

.psmqy-footer-brand .component-content,
.psmqy-footer > .component-content.row,
.psmqy-footer-bottom {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 1480px !important;
}

.psmqy-footer-brandrow {
  margin-bottom: clamp(18px, 2vw, 26px) !important;
}

.psmqy-footer-brandrow .psmqy-brand-logo,
.psmqy-footer-bottom .psmqy-brand-logo {
  background: transparent !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.34)) !important;
  max-width: min(520px, 100%) !important;
  padding: 0 !important;
  width: min(520px, 100%) !important;
}

.psmqy-footer-tagline {
  color: rgba(232, 240, 244, 0.78) !important;
  font-size: clamp(1.45rem, 1.12vw, 1.72rem) !important;
  line-height: 1.65 !important;
  margin: 0 0 22px !important;
  max-width: 1060px !important;
}

.psmqy-footer-contact,
.psmqy-footer-cities {
  align-items: center !important;
  color: rgba(232, 240, 244, 0.82) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  font-size: clamp(1.35rem, 1vw, 1.55rem) !important;
  gap: 10px 16px !important;
  line-height: 1.5 !important;
  margin: 0 0 18px !important;
}

.psmqy-footer-cities {
  margin-top: 6px !important;
}

.psmqy-footer-contact a,
.psmqy-footer-cities a,
.psmqy-footer a {
  color: #fff !important;
  text-decoration: none !important;
}

.psmqy-footer a:hover,
.psmqy-footer-contact a:hover,
.psmqy-footer-cities a:hover {
  color: #7fc8f2 !important;
}

.psmqy-fc-dot {
  color: #ef3d33 !important;
}

.psmqy-fc-label {
  color: rgba(232, 240, 244, 0.58) !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.psmqy-footer-marketline,
.psmqy-footer-contact > span:last-child:not(.psmqy-fc-dot) {
  color: #e7eef2 !important;
  display: inline-block !important;
  font-weight: 900 !important;
  letter-spacing: 0.06em !important;
  padding-bottom: 8px !important;
  position: relative !important;
  text-transform: uppercase !important;
}

.psmqy-footer-marketline::after,
.psmqy-footer-contact > span:last-child:not(.psmqy-fc-dot)::after {
  background: linear-gradient(90deg, #2b8bc5 0 50%, #ef3d33 50% 100%) !important;
  bottom: 0 !important;
  content: "" !important;
  height: 4px !important;
  left: 0 !important;
  position: absolute !important;
  width: 100% !important;
}

.psmqy-footer-location {
  align-items: stretch !important;
  display: grid !important;
  gap: clamp(20px, 3vw, 34px) !important;
  grid-template-columns: minmax(300px, 0.58fr) minmax(520px, 1.42fr) !important;
  margin-top: clamp(28px, 3vw, 42px) !important;
}

.psmqy-footer-location-copy {
  align-content: center !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  min-height: 260px !important;
  padding: clamp(28px, 3vw, 42px) !important;
}

.psmqy-location-label {
  color: #ef3d33 !important;
  font-size: 1.25rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.14em !important;
  margin: 0 0 14px !important;
  text-transform: uppercase !important;
}

.psmqy-footer-location address a {
  color: #fff !important;
  display: inline-block !important;
  font-size: clamp(1.65rem, 1.65vw, 2.25rem) !important;
  font-weight: 900 !important;
  line-height: 1.25 !important;
}

.psmqy-footer-map {
  background: rgba(255, 255, 255, 0.08) !important;
  min-height: 260px !important;
}

.psmqy-footer-map iframe {
  filter: grayscale(0.1) saturate(0.9) contrast(1.02) !important;
}

.psmqy-footer > .component-content.row {
  border-top: 0 !important;
  display: grid !important;
  gap: clamp(24px, 3vw, 46px) !important;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)) !important;
  padding: clamp(34px, 4vw, 52px) 0 0 !important;
}

.psmqy-footer .h3,
.psmqy-footer .h3 a,
.psmqy-footer .list-menu-title,
.psmqy-footer .list-menu-title a,
.psmqy-faithful-body .psmqy-footer .list-menu-title,
.psmqy-faithful-body .psmqy-footer .list-menu-title a {
  color: #f15b45 !important;
  font-size: clamp(1.25rem, 0.98vw, 1.5rem) !important;
  font-weight: 900 !important;
  letter-spacing: 0.09em !important;
  line-height: 1.2 !important;
  margin-bottom: 18px !important;
  text-transform: uppercase !important;
}

.psmqy-footer .list-menu-items {
  margin: 0 !important;
  padding: 0 !important;
}

.psmqy-footer .list-item {
  margin-bottom: 10px !important;
}

.psmqy-footer .list-item a {
  color: rgba(232, 240, 244, 0.72) !important;
  font-size: clamp(1.2rem, 0.92vw, 1.4rem) !important;
  line-height: 1.35 !important;
}

.psmqy-footer-bottom {
  align-items: center !important;
  border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
  display: flex !important;
  gap: 24px !important;
  justify-content: space-between !important;
  margin-top: clamp(34px, 4vw, 52px) !important;
  padding-top: clamp(24px, 3vw, 34px) !important;
}

.psmqy-footer-bottom .psmqy-brand-logo {
  max-width: 300px !important;
  width: min(300px, 42vw) !important;
}

.psmqy-footer-bottom p {
  color: rgba(232, 240, 244, 0.66) !important;
  font-size: 1.35rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
  max-width: 560px !important;
  text-align: right !important;
}

@media (max-width: 1100px) {
  .psmqy-footer > .component-content.row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .psmqy-footer-location {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 671.98px) {
  .psmqy-footer {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .psmqy-footer-brand {
    padding-top: 42px !important;
  }

  .psmqy-footer-brandrow .psmqy-brand-logo {
    width: min(320px, 88vw) !important;
  }

  .psmqy-footer-contact,
  .psmqy-footer-cities {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .psmqy-fc-dot {
    display: none !important;
  }

  .psmqy-footer-location-copy,
  .psmqy-footer-map {
    min-height: 220px !important;
  }

  .psmqy-footer > .component-content.row {
    grid-template-columns: 1fr !important;
  }

  .psmqy-footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  .psmqy-footer-bottom p {
    text-align: left !important;
  }
}

/* Source-backed, direct-answer resource sections. */
.cra-answer-section {
  background: #fff;
  padding: clamp(48px, 7vw, 96px) 0;
}

.cra-answer-section .component-content,
article .cra-answer-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
}

article .cra-answer-section {
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.cra-content-review {
  border-bottom: 1px solid #d8e1e5;
  color: #526a75;
  font-size: 1.3rem;
  margin: 0 0 40px;
  padding: 0 0 16px;
}

.cra-answer-callout {
  background: #edf4f7;
  border-left: 6px solid #ff7144;
  margin: 28px 0 42px;
  padding: clamp(24px, 4vw, 44px);
}

.cra-answer-callout strong {
  color: #143344;
  display: block;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(2.6rem, 3.8vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.cra-answer-callout p {
  color: #344f5c;
  font-size: 1.7rem;
  line-height: 1.55;
  margin: 20px 0 0;
  max-width: 980px;
}

.cra-answer-table-wrap {
  margin: 36px 0;
  overflow-x: auto;
}

.cra-answer-table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

.cra-answer-table th,
.cra-answer-table td {
  border: 1px solid #d8e1e5;
  font-size: 1.45rem;
  line-height: 1.45;
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.cra-answer-table th {
  background: #143344;
  color: #fff;
  font-family: INTLText, Arial, sans-serif;
  font-weight: 700;
}

.cra-answer-table tbody tr:nth-child(even) {
  background: #f5f8f9;
}

.cra-company-table td:first-child,
.cra-company-table td:last-child {
  white-space: nowrap;
}

.cra-source-note {
  background: #f7f5f0;
  border-top: 3px solid #d8d1c5;
  color: #465c66;
  font-size: 1.35rem;
  line-height: 1.55;
  margin: 36px 0 0;
  padding: 20px 24px;
}

.cra-source-note a {
  color: #143344;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cra-question-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 38px;
}

.cra-question-grid article {
  border-top: 4px solid #2b8bc5;
  box-shadow: 0 10px 30px rgba(20, 51, 68, 0.09);
  padding: 26px;
}

.cra-question-grid h3 {
  color: #143344;
  font-size: 2.4rem;
  margin: 0 0 12px;
}

.cra-question-grid p {
  color: #526a75;
  font-size: 1.5rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 671.98px) {
  .cra-question-grid {
    grid-template-columns: 1fr;
  }

  .cra-answer-callout strong {
    font-size: 3rem;
  }
}

/* ===== Commercial Roofing Advisors market and location aesthetic pass ===== */
.psmqy-usmap-section {
  background: #f5f5f3 !important;
  padding: clamp(82px, 9vw, 138px) clamp(20px, 5vw, 78px) clamp(78px, 8vw, 126px) !important;
}

.psmqy-usmap-section .component-content {
  max-width: none;
}

.psmqy-usmap-head {
  margin: 0 auto clamp(52px, 6vw, 86px) !important;
  max-width: 1260px !important;
  padding: 0 !important;
  text-align: center;
}

.psmqy-usmap-head .ey {
  color: #6c6a64 !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  margin: 0 0 18px !important;
  text-transform: uppercase;
}

.psmqy-usmap-head h2 {
  color: #11110f !important;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(3.9rem, 5vw, 8.2rem) !important;
  font-weight: 500 !important;
  line-height: 1.03 !important;
  margin: 0 auto !important;
  max-width: 1320px;
  text-transform: uppercase;
}

.psmqy-usmap-head .sub {
  color: #4f4d48 !important;
  font-size: clamp(1.55rem, 1.45vw, 2rem) !important;
  line-height: 1.58 !important;
  margin: 18px auto 0 !important;
  max-width: 760px;
}

.psmqy-usmap-head::after {
  background: #1c1b19;
  content: "";
  display: block;
  height: 2px;
  margin: clamp(34px, 4.4vw, 62px) auto 0;
  max-width: 860px;
  width: 42vw;
}

.psmqy-state-carousel {
  margin: 0 calc(clamp(20px, 5vw, 78px) * -1);
  overflow: hidden;
  padding: 0 clamp(20px, 5vw, 78px);
}

.psmqy-state-carousel-track {
  animation: psmqy-state-scroll 190s linear infinite;
  display: flex;
  gap: clamp(46px, 5vw, 88px);
  width: max-content;
}

.psmqy-state-carousel:hover .psmqy-state-carousel-track,
.psmqy-state-carousel:focus-within .psmqy-state-carousel-track {
  animation-play-state: paused;
}

.psmqy-state-index-grid,
.psmqy-locations-index .promo-list-items {
  display: grid !important;
  gap: clamp(34px, 4.2vw, 70px) clamp(20px, 3vw, 44px) !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  margin: 0 auto !important;
  max-width: 1480px !important;
}

.psmqy-state-tile {
  align-items: center;
  color: #141b3d;
  display: grid;
  gap: 26px;
  justify-items: center;
  min-width: clamp(144px, 12vw, 210px);
  text-decoration: none;
}

.psmqy-state-tile svg {
  aspect-ratio: 1.2 / 1;
  display: block;
  height: clamp(76px, 8vw, 128px);
  max-width: 100%;
  overflow: visible;
  width: clamp(92px, 10vw, 152px);
}

.psmqy-state-tile path {
  fill: #b6b6b4;
  transition: fill 180ms ease, filter 180ms ease, transform 180ms ease;
}

.psmqy-state-tile span {
  display: block;
  font-size: clamp(1.5rem, 1.3vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.8;
  text-align: center;
  text-transform: uppercase;
}

.psmqy-state-tile:hover path,
.psmqy-state-tile:focus-visible path {
  fill: #7f817e;
  filter: drop-shadow(0 12px 18px rgba(20, 20, 18, 0.16));
  transform: translateY(-3px);
}

@keyframes psmqy-state-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.psmqy-location-page .component.main-hero {
  background: #f2f2f0 !important;
  margin-bottom: 0 !important;
}

.psmqy-location-page .psmqy-hero {
  background: #f2f2f0 !important;
  align-items: center;
  justify-content: center;
  min-height: clamp(440px, 44vw, 640px);
  padding: clamp(130px, 12vw, 180px) clamp(28px, 6vw, 90px) clamp(90px, 8vw, 136px) !important;
}

.psmqy-location-page .psmqy-hero > picture::after {
  background:
    linear-gradient(180deg, rgba(18, 18, 16, 0.05) 0%, rgba(18, 18, 16, 0.18) 100%),
    linear-gradient(90deg, rgba(18, 18, 16, 0.52) 0%, rgba(18, 18, 16, 0.12) 44%, rgba(18, 18, 16, 0.02) 100%) !important;
}

.psmqy-location-page .psmqy-hero img {
  filter: saturate(0.78) contrast(0.96) brightness(1.08);
  object-position: center 46%;
}

.psmqy-location-page .hero-headline {
  margin: 0 auto;
  max-width: min(1120px, 82vw);
  text-align: center;
}

.psmqy-location-page .hero-headline h1 {
  color: #fff !important;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(6.6rem, 8.6vw, 14rem) !important;
  font-weight: 500 !important;
  line-height: 0.98 !important;
  text-transform: none !important;
}

.psmqy-location-page .hero-headline .h2-light {
  display: block;
  font-family: INTLText, Arial, sans-serif;
  font-size: clamp(1.25rem, 1vw, 1.7rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-top: 18px;
  text-transform: uppercase;
}

.psmqy-location-page .hero-caption {
  display: none !important;
  background: rgba(17, 17, 15, 0.82);
  bottom: 0;
  color: #fff;
  max-width: none;
  padding: clamp(28px, 4vw, 52px) clamp(24px, 5vw, 92px);
  right: 0;
  width: 100%;
}

.psmqy-location-page .hero-caption .align-self-end {
  align-items: center;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1360px;
}

.psmqy-location-page .hero-caption p {
  color: #eeeae4 !important;
  font-size: clamp(1.55rem, 1.35vw, 2rem) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  max-width: 900px;
}

.psmqy-location-page .hero-caption .link-container {
  margin: 0;
}

.psmqy-location-page .psmqy-breadcrumb {
  background: #11110f;
  border: 0;
}

.psmqy-location-page .psmqy-breadcrumb .component-content {
  justify-content: center;
  text-align: center;
}

.psmqy-location-proof {
  background: #1a1a18;
  color: #fff;
  padding: clamp(58px, 7vw, 104px) clamp(24px, 5vw, 88px) clamp(64px, 8vw, 118px);
}

.psmqy-location-proof .component-content {
  margin: 0 auto;
  max-width: 1360px;
}

.psmqy-location-proof h2 {
  color: #fff;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(5.6rem, 7.6vw, 12rem);
  font-weight: 500;
  line-height: 0.96;
  margin: 0 0 clamp(28px, 4vw, 56px);
  text-align: center;
}

.psmqy-location-proof-lede {
  color: #e8e4dd;
  font-size: clamp(1.7rem, 1.45vw, 2.2rem);
  line-height: 1.58;
  margin: 0 auto clamp(42px, 5vw, 72px);
  max-width: 980px;
  text-align: center;
}

.psmqy-location-proof-grid {
  display: grid;
  gap: clamp(28px, 4vw, 64px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.psmqy-location-proof-grid div {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  display: grid;
  gap: 14px;
  padding-top: 22px;
}

.psmqy-location-proof-grid strong {
  color: #fff;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(2.2rem, 2.3vw, 3.6rem);
  font-weight: 500;
  line-height: 1.08;
}

.psmqy-location-proof-grid span {
  color: #bcb8b1;
  font-size: clamp(1.45rem, 1.2vw, 1.75rem);
  line-height: 1.55;
}

.psmqy-location-page .psmqy-breadcrumb .component-content,
.psmqy-location-page .psmqy-breadcrumb a,
.psmqy-location-page .psmqy-breadcrumb span {
  color: #ddd9d2;
}

.psmqy-location-page .psmqy-detail {
  background: #fff;
  padding: clamp(58px, 7vw, 104px) 0 clamp(76px, 8vw, 126px);
}

.psmqy-location-page .psmqy-detail .row {
  justify-content: center;
}

.psmqy-location-page .psmqy-detail article {
  margin-inline: auto;
  max-width: 900px;
  text-align: center;
}

.psmqy-location-page .psmqy-detail article > .detail-regular:first-child {
  color: #75716a;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.psmqy-location-page .psmqy-detail article h2 {
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(3.2rem, 3.8vw, 5.8rem) !important;
  font-weight: 500;
  line-height: 1.04;
  margin: clamp(42px, 5vw, 68px) 0 18px;
  text-transform: none;
}

.psmqy-location-page .psmqy-detail article p {
  color: #24231f;
  font-size: clamp(1.7rem, 1.35vw, 2.05rem) !important;
  line-height: 1.72 !important;
}

.psmqy-state-cities {
  background: #f4f4f2;
  border-bottom: 1px solid #d8d6d0;
  border-top: 1px solid #d8d6d0;
  margin: clamp(36px, 5vw, 62px) 0 !important;
  padding: clamp(34px, 4.4vw, 56px);
  text-align: center;
}

.psmqy-state-cities .detail-regular {
  color: #78756e;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.psmqy-city-tile-grid {
  display: grid;
  gap: clamp(18px, 2vw, 28px);
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  margin: clamp(28px, 3.4vw, 44px) auto 0;
  max-width: 1120px;
}

.psmqy-city-tile {
  color: #141b3d;
  display: grid;
  gap: 14px;
  text-decoration: none;
}

.psmqy-city-thumb {
  aspect-ratio: 1 / 1;
  background: #d9d8d3;
  display: block;
  overflow: hidden;
  width: 100%;
}

.psmqy-city-thumb img {
  display: block;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: filter 180ms ease, transform 180ms ease;
  width: 100%;
}

.psmqy-city-name {
  border-bottom: 1px solid #cfccc4;
  color: #141b3d;
  display: block;
  font-size: clamp(1.38rem, 1.15vw, 1.72rem);
  font-weight: 800;
  line-height: 1.25;
  padding-bottom: 11px;
}

.psmqy-city-tile:hover .psmqy-city-thumb img,
.psmqy-city-tile:focus-visible .psmqy-city-thumb img {
  filter: brightness(0.86) contrast(1.06);
  transform: scale(1.06);
}

.psmqy-city-tile:hover .psmqy-city-name,
.psmqy-city-tile:focus-visible .psmqy-city-name {
  border-color: #171715;
  color: #171715;
}

.psmqy-location-page .psmqy-city-map {
  margin: clamp(46px, 6vw, 76px) auto 0 !important;
  max-width: 820px;
  text-align: center;
}

.psmqy-location-page .psmqy-city-map .psmqy-map-frame {
  margin-left: auto;
  margin-right: auto;
}

.psmqy-related-cities {
  margin: clamp(46px, 6vw, 76px) auto 0;
  max-width: 1120px;
  text-align: center;
}

.psmqy-related-cities .h2 {
  font-size: clamp(3.2rem, 4vw, 5.8rem) !important;
}

.psmqy-location-page .psmqy-location-detail article {
  padding-right: 0;
}

.psmqy-related-states {
  margin: clamp(70px, 8vw, 118px) auto 0;
  max-width: 1320px;
  text-align: center;
}

.psmqy-related-states h2 {
  color: #11110f;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(34px, 4.2vw, 66px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 clamp(44px, 5vw, 78px);
  text-transform: none;
}

.psmqy-related-state-grid {
  align-items: end;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.psmqy-related-state {
  align-items: center;
  color: #141b3d;
  display: grid;
  gap: 24px;
  justify-items: center;
  text-decoration: none;
}

.psmqy-related-state svg {
  aspect-ratio: 1.2 / 1;
  display: block;
  height: clamp(78px, 7.4vw, 124px);
  overflow: visible;
  width: min(150px, 100%);
}

.psmqy-related-state path {
  fill: #b7b7b5;
  transition: fill 180ms ease, filter 180ms ease, transform 180ms ease;
}

.psmqy-related-state span {
  display: block;
  font-size: clamp(15px, 1.25vw, 24px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 1.65;
  text-align: center;
  text-transform: uppercase;
}

.psmqy-related-state:hover path,
.psmqy-related-state:focus-visible path {
  fill: #858784;
  filter: drop-shadow(0 12px 18px rgba(20, 20, 18, 0.16));
  transform: translateY(-3px);
}

.psmqy-location-services {
  background: #111820;
  color: #fff;
  margin: clamp(56px, 7vw, 108px) 0 0;
  padding: clamp(56px, 6vw, 92px) 0 clamp(64px, 7vw, 108px);
  position: relative;
}

.psmqy-location-services::after {
  background: linear-gradient(90deg, #2b8bc5 0 50%, #ef3d33 50% 100%);
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  right: 0;
}

.psmqy-location-services .component-content {
  max-width: min(1320px, calc(100vw - 48px));
}

.psmqy-location-services-head {
  margin: 0 auto clamp(34px, 4vw, 54px);
  max-width: 900px;
  text-align: center;
}

.psmqy-location-services-head .detail-regular {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.16rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.psmqy-location-services-head .h2 {
  color: #fff;
  font-size: clamp(3.2rem, 4.1vw, 6.2rem) !important;
  line-height: 1.02;
  margin: 0;
}

.psmqy-location-services-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.psmqy-location-service-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    repeating-linear-gradient(135deg, transparent 0 70px, rgba(255, 255, 255, 0.035) 72px 74px, transparent 76px 136px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  display: flex;
  flex-direction: column;
  min-height: 214px;
  padding: clamp(24px, 2.4vw, 34px);
  position: relative;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.psmqy-location-service-card::after {
  background: linear-gradient(90deg, #2b8bc5 0 50%, #ef3d33 50% 100%);
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0.42);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.psmqy-location-service-card span {
  color: #fff;
  display: block;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(2.1rem, 2vw, 3.2rem);
  font-weight: 750;
  line-height: 1.04;
  text-transform: uppercase;
}

.psmqy-location-service-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.44rem;
  line-height: 1.48;
  margin: auto 0 0;
}

.psmqy-location-service-card:hover,
.psmqy-location-service-card:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.036)),
    repeating-linear-gradient(135deg, transparent 0 70px, rgba(255, 255, 255, 0.045) 72px 74px, transparent 76px 136px);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
}

.psmqy-location-service-card:hover::after,
.psmqy-location-service-card:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

/* Final list and post-breadcrumb rhythm pass. */
.psmqy-faithful-body {
  --psmqy-vector-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M13.3 5.3 20 12l-6.7 6.7-1.6-1.6 3.9-3.9H4v-2.4h11.6l-3.9-3.9z'/%3E%3C/svg%3E");
}

.psmqy-breadcrumb + .section-container .title-block .light {
  padding-bottom: clamp(34px, 4vw, 58px);
  padding-top: clamp(28px, 3.2vw, 46px);
}

.psmqy-breadcrumb + .section-container .title-block .highlight-large {
  margin-bottom: 16px;
}

.psmqy-breadcrumb + .section-container + .section-container .psmqy-card-grid,
.psmqy-breadcrumb + .section-container .psmqy-card-grid {
  padding-top: 0;
}

.psmqy-breadcrumb + .psmqy-usmap-section,
.psmqy-breadcrumb + .psmqy-strategy-intro,
.psmqy-breadcrumb + .cra-answer-section,
.psmqy-about-page .psmqy-breadcrumb + .psmqy-about-intro {
  padding-top: clamp(32px, 4vw, 56px) !important;
}

.psmqy-detail article ul:not(.list-column-check) {
  gap: 0;
  margin: 24px 0 34px;
}

.psmqy-detail article ul:not(.list-column-check) li {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 30px minmax(0, 1fr);
  padding: 18px 0;
}

.psmqy-detail article ul:not(.list-column-check) li::before {
  background: #2b8bc5;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  content: "";
  display: block;
  height: 22px;
  left: auto;
  margin-top: 2px;
  -webkit-mask: var(--psmqy-vector-arrow) center / contain no-repeat;
  mask: var(--psmqy-vector-arrow) center / contain no-repeat;
  position: static;
  top: auto;
  transform: none;
  width: 22px;
}

.psmqy-detail article ul:not(.list-column-check) li:nth-child(odd)::before {
  background: #2b8bc5;
}

.psmqy-detail article ul:not(.list-column-check) li:nth-child(even)::before {
  background: #ef3d33;
}

ul.list-column-check {
  gap: 0;
}

ul.list-column-check li {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 30px minmax(0, 1fr);
  padding: 15px 0;
}

ul.list-column-check li::before {
  background: #2b8bc5 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  content: "" !important;
  display: block !important;
  height: 22px;
  margin-top: 1px;
  -webkit-mask: var(--psmqy-vector-arrow) center / contain no-repeat;
  mask: var(--psmqy-vector-arrow) center / contain no-repeat;
  transform: none;
  width: 22px;
}

ul.list-column-check li:nth-child(even)::before {
  background: #ef3d33 !important;
}

.psmqy-state-cities {
  margin-top: clamp(26px, 3.2vw, 44px) !important;
}

.psmqy-city-name {
  display: block;
  padding: 18px 0 12px;
  position: relative;
}

.psmqy-city-name::before {
  background: linear-gradient(90deg, #2b8bc5 0 50%, #ef3d33 50% 100%);
  content: "";
  display: block;
  height: 4px;
  left: 0;
  position: absolute;
  top: 0;
  transform: none;
  width: 68px;
}

.psmqy-city-tile:nth-child(even) .psmqy-city-name::before {
  background: linear-gradient(90deg, #ef3d33 0 50%, #2b8bc5 50% 100%);
}

@media (max-width: 671.98px) {
  .psmqy-breadcrumb + .section-container .title-block .light {
    padding-bottom: 30px;
    padding-top: 28px;
  }

  .psmqy-breadcrumb + .psmqy-usmap-section,
  .psmqy-breadcrumb + .psmqy-strategy-intro,
  .psmqy-breadcrumb + .cra-answer-section,
  .psmqy-about-page .psmqy-breadcrumb + .psmqy-about-intro {
    padding-top: 30px !important;
  }

  .psmqy-detail article ul:not(.list-column-check) li,
  ul.list-column-check li {
    grid-template-columns: 28px minmax(0, 1fr);
  }
}

.psmqy-location-page .psmqy-detail-side {
  background: #181816;
  box-shadow: none;
  color: #fff;
  margin: clamp(36px, 5vw, 58px) auto 0;
  max-width: 760px;
  padding: clamp(26px, 3vw, 38px);
  text-align: center;
}

.psmqy-location-page .psmqy-detail-side h3 {
  color: #fff;
}

.psmqy-location-page .psmqy-detail-side a:not(.btn) {
  border-color: rgba(255, 255, 255, 0.16);
  color: #e6e2dc;
  text-align: center;
}

.psmqy-location-page .psmqy-detail-side .btn {
  background: #fff;
  color: #11110f;
}

.psmqy-location-page .promo-list-card {
  box-shadow: none;
}

/* Premium treatment for individual service, audience, and roof-system pages. */
.psmqy-premium-detail-page .component.main-hero {
  background: #f2f2f0 !important;
  margin-bottom: 0 !important;
}

.psmqy-premium-detail-page .psmqy-hero {
  align-items: center;
  background: #f2f2f0 !important;
  justify-content: center;
  min-height: clamp(500px, 49vw, 690px);
  padding: clamp(136px, 13vw, 196px) clamp(28px, 6vw, 90px) clamp(82px, 7vw, 126px) !important;
}

.psmqy-premium-detail-page .psmqy-hero > picture::after {
  background:
    linear-gradient(180deg, rgba(10, 10, 9, 0.08) 0%, rgba(10, 10, 9, 0.34) 100%),
    linear-gradient(90deg, rgba(10, 10, 9, 0.64) 0%, rgba(10, 10, 9, 0.18) 50%, rgba(10, 10, 9, 0.08) 100%) !important;
}

.psmqy-premium-detail-page .psmqy-hero img {
  filter: saturate(0.86) contrast(1.02) brightness(1.02);
  object-position: center 45%;
  transform: scale(1.02);
}

.psmqy-premium-detail-page .hero-headline {
  margin: 0 auto;
  max-width: min(1120px, 86vw);
  text-align: center;
}

.psmqy-premium-detail-page .hero-headline h1 {
  color: #fff !important;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(4.2rem, 5.9vw, 8.8rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 0.98 !important;
  text-transform: none !important;
}

.psmqy-premium-detail-page .hero-headline .h2-light {
  color: #f3f5f4;
  display: block;
  font-family: INTLText, Arial, sans-serif;
  font-size: clamp(1.2rem, 0.95vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-top: 18px;
  text-transform: uppercase;
}

.psmqy-premium-detail-page .hero-caption {
  background: rgba(17, 17, 15, 0.78);
  bottom: 0;
  color: #fff;
  max-width: none;
  padding: clamp(24px, 3.4vw, 42px) clamp(24px, 5vw, 92px);
  right: 0;
  width: 100%;
}

.psmqy-premium-detail-page .hero-caption .align-self-end {
  align-items: center;
  display: grid;
  gap: clamp(18px, 3vw, 38px);
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1320px;
}

.psmqy-premium-detail-page .hero-caption p {
  color: #f0ede8 !important;
  font-size: clamp(1.45rem, 1.18vw, 1.82rem) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  max-width: 880px;
}

.psmqy-premium-detail-page .hero-caption .link-container {
  margin: 0;
}

.psmqy-premium-detail-page .psmqy-breadcrumb,
.psmqy-location-page .psmqy-breadcrumb {
  background: #11110f;
  border: 0;
}

.psmqy-premium-detail-page .psmqy-breadcrumb .component-content,
.psmqy-location-page .psmqy-breadcrumb .component-content {
  justify-content: center;
  text-align: center;
}

.psmqy-premium-detail-page .psmqy-breadcrumb .component-content,
.psmqy-premium-detail-page .psmqy-breadcrumb a,
.psmqy-premium-detail-page .psmqy-breadcrumb span,
.psmqy-location-page .psmqy-breadcrumb .component-content,
.psmqy-location-page .psmqy-breadcrumb a,
.psmqy-location-page .psmqy-breadcrumb span {
  color: #ddd9d2;
}

.psmqy-premium-detail-page .psmqy-breadcrumb a:hover,
.psmqy-location-page .psmqy-breadcrumb a:hover {
  color: #fff;
}

.psmqy-premium-detail-page .psmqy-detail {
  background: #fff;
  padding: clamp(52px, 6.5vw, 92px) 0 clamp(76px, 8vw, 126px);
}

.psmqy-premium-detail-page .psmqy-detail .row {
  justify-content: center;
}

.psmqy-premium-detail-page .psmqy-detail article {
  margin-inline: auto;
  max-width: 940px;
  padding-right: 0;
}

.psmqy-premium-detail-page .psmqy-detail article > .detail-regular:first-child {
  color: #75716a;
  display: block;
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
  text-transform: uppercase;
}

.psmqy-premium-detail-page .psmqy-detail article h2 {
  color: #11110f;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(3.2rem, 4.1vw, 6.2rem) !important;
  font-weight: 500;
  line-height: 1.04;
  margin: clamp(42px, 5vw, 72px) 0 18px;
  text-align: center;
  text-transform: none;
}

.psmqy-premium-detail-page .psmqy-detail article p {
  color: #24231f;
  font-size: clamp(1.68rem, 1.23vw, 1.96rem) !important;
  line-height: 1.72 !important;
  margin-left: auto;
  margin-right: auto;
}

.psmqy-premium-detail-page .psmqy-detail article p:first-of-type {
  font-size: clamp(1.8rem, 1.42vw, 2.16rem) !important;
}

.psmqy-premium-detail-page .psmqy-detail-side {
  background: #181816;
  box-shadow: none;
  color: #fff;
  margin: clamp(46px, 6vw, 76px) auto 0;
  max-height: none;
  max-width: 820px;
  overflow: visible;
  padding: clamp(28px, 3.2vw, 42px);
  position: static;
  text-align: center;
}

.psmqy-premium-detail-page .psmqy-detail-side h3 {
  color: #fff;
  font-size: clamp(2.8rem, 3.4vw, 5rem);
  margin-bottom: 18px;
}

.psmqy-premium-detail-page .psmqy-detail-side a:not(.btn) {
  border-color: rgba(255, 255, 255, 0.16);
  color: #e6e2dc;
  display: block;
  font-size: clamp(1.35rem, 1vw, 1.55rem);
  letter-spacing: 0.05em;
  padding: 15px 0;
  text-align: center;
}

.psmqy-premium-detail-page .psmqy-detail-side a:not(.btn):hover {
  color: #fff;
}

.psmqy-premium-detail-page .psmqy-detail-side .btn {
  background: #fff;
  color: #11110f;
  margin-top: 26px;
}

.psmqy-system-page .psmqy-system-next {
  background: #f4f4f2;
  border-bottom: 1px solid #d8d6d0;
  border-top: 1px solid #d8d6d0;
  margin: clamp(46px, 6vw, 78px) auto 0;
  max-width: 940px;
  padding: clamp(32px, 4vw, 56px);
  text-align: center;
}

.psmqy-system-page .psmqy-system-next h2 {
  margin-top: 0 !important;
}

.psmqy-system-page .psmqy-detail .row,
.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail .row:has(.psmqy-system-next) {
  display: grid !important;
  gap: clamp(34px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
}

.psmqy-system-page .psmqy-detail article,
.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail article:has(.psmqy-system-next) {
  box-sizing: border-box;
  flex: none !important;
  max-width: min(980px, calc(100vw - 48px)) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

.psmqy-system-page .psmqy-detail article ul:not(.list-column-check),
.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail article:has(.psmqy-system-next) ul:not(.list-column-check) {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr);
  margin: 28px auto 38px;
  max-width: 900px;
}

.psmqy-system-page .psmqy-detail article ul:not(.list-column-check) li,
.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail article:has(.psmqy-system-next) ul:not(.list-column-check) li {
  display: block !important;
  font-size: clamp(1.48rem, 1.05vw, 1.7rem);
  line-height: 1.55;
  padding: 17px 0 !important;
}

.psmqy-system-page .psmqy-detail article ul:not(.list-column-check) li::before,
.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail article:has(.psmqy-system-next) ul:not(.list-column-check) li::before {
  content: none !important;
  display: none !important;
}

.psmqy-system-page .psmqy-detail-side,
.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail article:has(.psmqy-system-next) + .psmqy-detail-side {
  flex: none !important;
  margin-top: 0 !important;
  max-height: none !important;
  max-width: min(980px, calc(100vw - 48px)) !important;
  overflow: visible !important;
  position: static !important;
  top: auto !important;
  width: 100% !important;
}

/* Same premium treatment when the app runtime does not expose generated body classes. */
.psmqy-premium-detail-hero {
  background: #f2f2f0 !important;
  margin-bottom: 0 !important;
}

.psmqy-premium-detail-hero .psmqy-hero {
  align-items: center;
  background: #f2f2f0 !important;
  justify-content: center;
  min-height: clamp(500px, 49vw, 690px);
  padding: clamp(136px, 13vw, 196px) clamp(28px, 6vw, 90px) clamp(82px, 7vw, 126px) !important;
}

.psmqy-premium-detail-hero .psmqy-hero > picture::after {
  background:
    linear-gradient(180deg, rgba(10, 10, 9, 0.08) 0%, rgba(10, 10, 9, 0.34) 100%),
    linear-gradient(90deg, rgba(10, 10, 9, 0.64) 0%, rgba(10, 10, 9, 0.18) 50%, rgba(10, 10, 9, 0.08) 100%) !important;
}

.psmqy-premium-detail-hero .psmqy-hero img {
  filter: saturate(0.86) contrast(1.02) brightness(1.02);
  object-position: center 45%;
  transform: scale(1.02);
}

.psmqy-premium-detail-hero .hero-headline {
  margin: 0 auto;
  max-width: min(1120px, 86vw);
  text-align: center;
}

.psmqy-premium-detail-hero .hero-headline h1 {
  color: #fff !important;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(4.2rem, 5.9vw, 8.8rem) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 0.98 !important;
  text-transform: none !important;
}

.psmqy-premium-detail-hero .hero-headline .h2-light {
  color: #f3f5f4;
  display: block;
  font-family: INTLText, Arial, sans-serif;
  font-size: clamp(1.2rem, 0.95vw, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-top: 18px;
  text-transform: uppercase;
}

.psmqy-premium-detail-hero .hero-caption {
  background: rgba(17, 17, 15, 0.78);
  bottom: 0;
  color: #fff;
  max-width: none;
  padding: clamp(24px, 3.4vw, 42px) clamp(24px, 5vw, 92px);
  right: 0;
  width: 100%;
}

.psmqy-premium-detail-hero .hero-caption .align-self-end {
  align-items: center;
  display: grid;
  gap: clamp(18px, 3vw, 38px);
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: 1320px;
}

.psmqy-premium-detail-hero .hero-caption p {
  color: #f0ede8 !important;
  font-size: clamp(1.45rem, 1.18vw, 1.82rem) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  max-width: 880px;
}

.psmqy-premium-detail-hero .hero-caption .link-container {
  margin: 0;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb {
  background: #11110f;
  border: 0;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb .component-content {
  justify-content: center;
  text-align: center;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb .component-content,
.psmqy-premium-detail-hero + .psmqy-breadcrumb a,
.psmqy-premium-detail-hero + .psmqy-breadcrumb span {
  color: #ddd9d2;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb a:hover {
  color: #fff;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail {
  background: #fff;
  padding: clamp(52px, 6.5vw, 92px) 0 clamp(76px, 8vw, 126px);
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail .row {
  justify-content: center;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail article {
  margin-inline: auto;
  max-width: 940px;
  padding-right: 0;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail article > .detail-regular:first-child {
  color: #75716a;
  display: block;
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin: 0 auto clamp(28px, 4vw, 48px);
  text-align: center;
  text-transform: uppercase;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail article h2 {
  color: #11110f;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(3.2rem, 4.1vw, 6.2rem) !important;
  font-weight: 500;
  line-height: 1.04;
  margin: clamp(42px, 5vw, 72px) 0 18px;
  text-align: center;
  text-transform: none;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail article p {
  color: #24231f;
  font-size: clamp(1.68rem, 1.23vw, 1.96rem) !important;
  line-height: 1.72 !important;
  margin-left: auto;
  margin-right: auto;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail article p:first-of-type {
  font-size: clamp(1.8rem, 1.42vw, 2.16rem) !important;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail .psmqy-detail-side {
  background: #181816;
  box-shadow: none;
  color: #fff;
  margin: clamp(46px, 6vw, 76px) auto 0;
  max-height: none;
  max-width: 820px;
  overflow: visible;
  padding: clamp(28px, 3.2vw, 42px);
  position: static;
  text-align: center;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail .psmqy-detail-side h3 {
  color: #fff;
  font-size: clamp(2.8rem, 3.4vw, 5rem);
  margin-bottom: 18px;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail .psmqy-detail-side a:not(.btn) {
  border-color: rgba(255, 255, 255, 0.16);
  color: #e6e2dc;
  display: block;
  font-size: clamp(1.35rem, 1vw, 1.55rem);
  letter-spacing: 0.05em;
  padding: 15px 0;
  text-align: center;
}

.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail .psmqy-detail-side .btn {
  background: #fff;
  color: #11110f;
  margin-top: 26px;
}

.psmqy-location-page .psmqy-detail-side,
.psmqy-premium-detail-page .psmqy-detail-side,
.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail .psmqy-detail-side {
  max-height: calc(100svh - 126px);
  overflow-y: auto;
  position: sticky;
  top: 112px;
}

.psmqy-location-page .psmqy-detail-side .btn,
.psmqy-premium-detail-page .psmqy-detail-side .btn,
.psmqy-premium-detail-hero + .psmqy-breadcrumb + .psmqy-detail .psmqy-detail-side .btn {
  display: inline-flex;
  white-space: nowrap;
  width: auto;
}

.psmqy-system-page .psmqy-detail .row {
  display: grid !important;
  gap: clamp(34px, 5vw, 64px) !important;
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: center !important;
}

.psmqy-system-page .psmqy-detail article {
  flex: none !important;
  max-width: min(980px, calc(100vw - 48px)) !important;
  width: 100% !important;
}

.psmqy-system-page .psmqy-detail-side {
  max-height: none !important;
  max-width: min(980px, calc(100vw - 48px)) !important;
  overflow: visible !important;
  position: static !important;
  top: auto !important;
  width: 100% !important;
}

@media (max-width: 900px) {
  .psmqy-premium-detail-page .hero-caption .align-self-end {
    grid-template-columns: 1fr;
  }

  .psmqy-premium-detail-hero .hero-caption .align-self-end {
    grid-template-columns: 1fr;
  }

  .psmqy-premium-detail-page .hero-caption .link-container {
    justify-content: flex-start;
  }

  .psmqy-premium-detail-hero .hero-caption .link-container {
    justify-content: flex-start;
  }

  .psmqy-related-state-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .psmqy-related-state {
    gap: 16px;
  }

  .psmqy-related-state span {
    font-size: clamp(13px, 3vw, 17px);
    letter-spacing: 0.14em;
    line-height: 1.45;
  }

  .psmqy-state-carousel {
    margin-inline: -18px;
    padding-inline: 18px;
  }

  .psmqy-state-carousel-track {
    animation-duration: 70s;
    gap: 34px;
  }

  .psmqy-state-tile {
    min-width: 132px;
  }

  .psmqy-state-index-grid,
  .psmqy-locations-index .promo-list-items {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .psmqy-usmap-head::after {
    width: min(74vw, 420px);
  }

  .psmqy-location-page .hero-caption .align-self-end {
    grid-template-columns: 1fr;
  }

  .psmqy-location-page .hero-caption .link-container {
    justify-content: flex-start;
  }

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

@media (max-width: 520px) {
  .psmqy-related-state-grid {
    gap: 36px 26px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .psmqy-related-state svg {
    height: clamp(76px, 22vw, 104px);
    width: min(132px, 100%);
  }

  .psmqy-related-state span {
    font-size: 13px;
    letter-spacing: 0.12em;
  }
}

/* Polished About page pass. */
.psmqy-about-polished .psmqy-about-page .psmqy-breadcrumb + .psmqy-about-intro {
  padding-top: clamp(54px, 6vw, 86px) !important;
}

.psmqy-about-polished .psmqy-about-page .component-content.container {
  max-width: min(1480px, calc(100vw - 48px));
}

.psmqy-about-editorial {
  background: #f6f6f3;
  padding: clamp(48px, 5.4vw, 82px) 0 clamp(54px, 6vw, 92px);
}

.psmqy-about-editorial-grid,
.psmqy-about-close-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.74fr);
}

.psmqy-about-editorial-copy {
  max-width: 720px;
}

.psmqy-about-polished .psmqy-about-kicker {
  align-items: center;
  color: #5c5a54;
  display: inline-flex;
  gap: 18px;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.psmqy-about-polished .psmqy-about-kicker::before {
  background: linear-gradient(90deg, #2b8bc5, #ef3d33);
  content: "";
  display: block;
  height: 2px;
  width: 58px;
}

.psmqy-about-editorial h2,
.psmqy-about-brief h2,
.psmqy-about-values h2,
.psmqy-about-close h2 {
  color: #11110f;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(3.2rem, 3.7vw, 5.8rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  text-transform: none;
}

.psmqy-about-editorial p,
.psmqy-about-brief p,
.psmqy-about-values p,
.psmqy-about-close p {
  font-size: clamp(1.5rem, 1.02vw, 1.78rem);
  line-height: 1.6;
}

.psmqy-about-editorial-copy > p {
  color: #34322d;
  margin: 20px 0 0;
  max-width: 680px;
}

.psmqy-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(26px, 3vw, 42px);
}

.psmqy-about-feature-photo {
  box-shadow: 0 26px 70px rgba(15, 28, 38, 0.18);
  isolation: isolate;
  margin: 0;
  min-height: clamp(390px, 33vw, 560px);
  overflow: hidden;
  position: relative;
}

.psmqy-about-feature-photo::before {
  background: linear-gradient(135deg, rgba(43, 139, 197, 0.3), rgba(239, 61, 51, 0.12));
  bottom: 0;
  content: "";
  height: 46%;
  left: 0;
  position: absolute;
  width: 52%;
  z-index: 1;
}

.psmqy-about-feature-photo::after {
  background: #ef3d33;
  bottom: 0;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  width: 42%;
  z-index: 2;
}

.psmqy-about-feature-photo img {
  display: block;
  height: 100%;
  min-height: clamp(390px, 33vw, 560px);
  object-fit: cover;
  width: 100%;
}

.psmqy-about-brief {
  background: #fff;
  padding: clamp(54px, 6vw, 92px) 0;
}

.psmqy-about-brief-head {
  margin: 0 0 clamp(30px, 4vw, 52px);
  max-width: 860px;
}

.psmqy-about-brief-grid {
  border-bottom: 1px solid #d8d4ca;
  border-top: 1px solid #d8d4ca;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.psmqy-about-brief-grid article {
  min-height: clamp(250px, 24vw, 330px);
  padding: clamp(26px, 3vw, 44px);
  position: relative;
}

.psmqy-about-brief-grid article + article {
  border-left: 1px solid #d8d4ca;
}

.psmqy-about-brief-grid span {
  color: #2b8bc5;
  display: block;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: clamp(32px, 5vw, 64px);
}

.psmqy-about-brief-grid article:nth-child(even) span {
  color: #ef3d33;
}

.psmqy-about-brief-grid h3 {
  color: #11110f;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(2.25rem, 2.45vw, 3.6rem);
  font-weight: 650;
  line-height: 1.04;
  margin: 0 0 18px;
}

.psmqy-about-brief-grid p {
  color: #555149;
  margin: 0;
}

.psmqy-about-values {
  background:
    linear-gradient(135deg, rgba(43, 139, 197, 0.14), transparent 38%),
    linear-gradient(315deg, rgba(239, 61, 51, 0.14), transparent 42%),
    #102f43;
  color: #fff;
  overflow: hidden;
  padding: clamp(58px, 6vw, 96px) 0 clamp(62px, 6.8vw, 108px);
  position: relative;
}

.psmqy-about-values::before {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 84px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 110px);
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: absolute;
}

.psmqy-about-values .component-content {
  position: relative;
  z-index: 1;
}

.psmqy-about-values .psmqy-about-kicker,
.psmqy-about-values h2,
.psmqy-about-values p {
  color: #fff;
}

.psmqy-about-values-head {
  max-width: 1060px;
}

.psmqy-about-values-head > p {
  color: rgba(255, 255, 255, 0.78);
  margin: 18px 0 0;
  max-width: 760px;
}

.psmqy-about-values-grid {
  display: grid;
  gap: clamp(14px, 1.4vw, 22px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(34px, 4.6vw, 62px);
  max-width: 1120px;
}

.psmqy-about-values-grid article {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    repeating-linear-gradient(135deg, transparent 0 58px, rgba(255, 255, 255, 0.045) 60px 62px, transparent 64px 126px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  min-height: clamp(270px, 22vw, 340px);
  overflow: hidden;
  padding: clamp(24px, 2.7vw, 38px);
  position: relative;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.psmqy-about-values-grid article::before {
  background: linear-gradient(90deg, #2b8bc5 0 50%, #ef3d33 50% 100%);
  bottom: 0;
  content: "";
  height: 4px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  transform: scaleX(0.34);
  transform-origin: left center;
  transition: opacity 220ms ease, transform 260ms ease;
}

.psmqy-about-values-grid article::after {
  bottom: clamp(24px, 2.7vw, 38px);
  color: rgba(239, 61, 51, 0.92);
  content: "+";
  font-size: clamp(4.2rem, 4.6vw, 6rem);
  font-weight: 200;
  line-height: 1;
  position: absolute;
  transition: transform 200ms ease, color 200ms ease;
}

.psmqy-about-values-grid article:nth-child(even)::after {
  color: #2b8bc5;
}

.psmqy-about-values-grid strong {
  color: #fff;
  display: block;
  font-family: INTLHeadline, INTLText, Arial, sans-serif;
  font-size: clamp(2.05rem, 1.9vw, 3.1rem);
  font-weight: 650;
  line-height: 1.04;
  margin: 0;
  max-width: 82%;
  text-transform: uppercase;
  transition: transform 220ms ease;
}

.psmqy-about-values-grid p {
  color: #d6d2ca;
  font-size: clamp(1.34rem, 0.92vw, 1.58rem);
  line-height: 1.48;
  margin: clamp(18px, 1.8vw, 28px) 0 0;
  max-width: 92%;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.psmqy-about-values-grid article:hover,
.psmqy-about-values-grid article:focus-within {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.034)),
    repeating-linear-gradient(135deg, transparent 0 58px, rgba(255, 255, 255, 0.055) 60px 62px, transparent 64px 126px);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
}

.psmqy-about-values-grid article:hover::before,
.psmqy-about-values-grid article:focus-within::before {
  opacity: 1;
  transform: scaleX(1);
}

.psmqy-about-values-grid article:hover::after,
.psmqy-about-values-grid article:focus-within::after {
  transform: rotate(90deg);
}

.psmqy-about-values-grid article:hover strong,
.psmqy-about-values-grid article:focus-within strong {
  transform: none;
}

.psmqy-about-values-grid article:hover p,
.psmqy-about-values-grid article:focus-within p {
  opacity: 1;
  transform: translateY(0);
}

.psmqy-about-close {
  background: #171715;
  padding: clamp(56px, 6vw, 96px) 0;
}

.psmqy-about-close-grid {
  grid-template-columns: minmax(360px, 0.75fr) minmax(0, 0.9fr);
}

.psmqy-about-close h2,
.psmqy-about-close p,
.psmqy-about-close .psmqy-about-kicker {
  color: #fff;
}

.psmqy-about-close p {
  color: #dedbd4;
  margin: 24px 0 0;
  max-width: 720px;
}

.psmqy-about-close .psmqy-about-photo img {
  aspect-ratio: 5 / 4;
  display: block;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 980px) {
  .psmqy-about-editorial-grid,
  .psmqy-about-close-grid,
  .psmqy-about-brief-grid,
  .psmqy-about-values-grid {
    grid-template-columns: 1fr;
  }

  .psmqy-about-brief-grid article {
    min-height: 0;
  }

  .psmqy-about-brief-grid article + article {
    border-left: 0;
    border-top: 1px solid #d8d4ca;
  }

  .psmqy-about-brief-grid span {
    margin-bottom: 28px;
  }

  .psmqy-about-values-grid article {
    min-height: 260px;
  }

  .psmqy-about-values-grid article::before,
  .psmqy-about-values-grid p {
    opacity: 1;
    transform: none;
  }

  .psmqy-about-values-grid strong {
    margin-top: 0;
  }
}

@media (max-width: 1055.98px) {
  .psmqy-header {
    align-items: center !important;
  }

  .psmqy-header-right,
  .psmqy-nav,
  .psmqy-callbtn {
    display: none !important;
  }

  .psmqy-menu-button {
    display: flex !important;
  }
}

@media (max-width: 671.98px) {
  .psmqy-header {
    padding: 18px 16px !important;
  }

  .psmqy-header .psmqy-brand-logo {
    max-height: 36px !important;
    width: min(226px, 64vw) !important;
  }

  .psmqy-menu-button {
    height: 48px !important;
    width: 48px !important;
  }

  .psmqy-location-page .psmqy-hero,
  .psmqy-premium-detail-page .psmqy-hero,
  .psmqy-premium-detail-hero.psmqy-hero {
    min-height: min(560px, 126vw) !important;
    overflow: hidden;
    padding: 104px 18px 72px !important;
  }

  .psmqy-location-page .hero-headline,
  .psmqy-premium-detail-page .hero-headline,
  .psmqy-premium-detail-hero .hero-headline {
    max-width: calc(100vw - 36px) !important;
    width: 100% !important;
  }

  .psmqy-location-page .hero-headline h1,
  .psmqy-premium-detail-page .hero-headline h1,
  .psmqy-premium-detail-hero .hero-headline h1 {
    font-size: clamp(3.2rem, 13.6vw, 5.8rem) !important;
    line-height: 0.96 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    text-wrap: balance;
    white-space: normal !important;
  }

  .psmqy-location-page .hero-headline .h2-light,
  .psmqy-premium-detail-page .hero-headline .h2-light,
  .psmqy-premium-detail-hero .hero-headline .h2-light {
    font-size: clamp(1.05rem, 3.2vw, 1.35rem) !important;
    letter-spacing: 0.12em !important;
  }

  .psmqy-breadcrumb::after {
    max-width: none !important;
    width: 100% !important;
  }
}

/* Final guardrail: keep generated service/roof-system detail hero copy readable. */
.psmqy-premium-detail-page .hero-headline,
.psmqy-premium-detail-hero .hero-headline {
  margin-bottom: clamp(120px, 10vw, 176px) !important;
  max-width: min(1320px, 84vw) !important;
}

.psmqy-premium-detail-page .hero-headline h1,
.psmqy-premium-detail-hero .hero-headline h1 {
  font-size: clamp(4rem, 4.85vw, 7.35rem) !important;
  line-height: 1.01 !important;
}

.psmqy-premium-detail-page .hero-caption,
.psmqy-premium-detail-hero .hero-caption {
  background: transparent !important;
  bottom: clamp(20px, 2.7vw, 42px) !important;
  color: #fff !important;
  left: clamp(28px, 6vw, 116px) !important;
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  position: absolute !important;
  right: clamp(28px, 6vw, 116px) !important;
  transform: none !important;
  width: auto !important;
  z-index: 4 !important;
}

.psmqy-premium-detail-page .hero-caption .align-self-end,
.psmqy-premium-detail-hero .hero-caption .align-self-end {
  align-items: center !important;
  background: linear-gradient(90deg, rgba(17, 17, 15, 0.82), rgba(17, 17, 15, 0.68)) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28) !important;
  display: grid !important;
  gap: clamp(18px, 2.4vw, 34px) !important;
  grid-template-columns: minmax(360px, 1fr) auto !important;
  margin: 0 auto !important;
  max-width: 1260px !important;
  min-width: 0 !important;
  padding: clamp(18px, 2.2vw, 30px) clamp(22px, 3vw, 40px) !important;
  width: 100% !important;
}

.psmqy-premium-detail-page .hero-caption p,
.psmqy-premium-detail-hero .hero-caption p {
  color: #f4f1ec !important;
  font-size: clamp(1.45rem, 1.05vw, 1.82rem) !important;
  line-height: 1.55 !important;
  margin: 0 !important;
  max-width: 820px !important;
  min-width: 0 !important;
  overflow-wrap: normal !important;
  text-wrap: pretty;
  white-space: normal !important;
  width: auto !important;
  word-break: normal !important;
}

.psmqy-premium-detail-page .hero-caption .link-container,
.psmqy-premium-detail-hero .hero-caption .link-container {
  justify-content: flex-end !important;
  margin: 0 !important;
  min-width: max-content !important;
  width: auto !important;
}

.psmqy-premium-detail-page .hero-caption .btn,
.psmqy-premium-detail-hero .hero-caption .btn {
  white-space: nowrap !important;
  width: auto !important;
}

@media (max-width: 900px) {
  .psmqy-premium-detail-page .hero-headline,
  .psmqy-premium-detail-hero .hero-headline {
    margin-bottom: clamp(150px, 36vw, 230px) !important;
  }

  .psmqy-premium-detail-page .hero-caption,
  .psmqy-premium-detail-hero .hero-caption {
    bottom: 22px !important;
    left: 18px !important;
    right: 18px !important;
  }

  .psmqy-premium-detail-page .hero-caption .align-self-end,
  .psmqy-premium-detail-hero .hero-caption .align-self-end {
    border: 1px solid rgba(255, 255, 255, 0.13) !important;
    grid-template-columns: 1fr !important;
    padding: 20px !important;
  }

  .psmqy-premium-detail-page .hero-caption .link-container,
  .psmqy-premium-detail-hero .hero-caption .link-container {
    justify-content: stretch !important;
    min-width: 0 !important;
    width: 100% !important;
  }

  .psmqy-premium-detail-page .hero-caption .btn,
  .psmqy-premium-detail-hero .hero-caption .btn {
    justify-content: center !important;
    min-width: 0 !important;
    width: 100% !important;
  }
}
