:root {
  --pl-navy-950: #061c2d;
  --pl-navy-900: #08283d;
  --pl-navy-800: #0b3550;
  --pl-blue: #0878f9;
  --pl-blue-dark: #0061d2;
  --pl-aqua: #08c6d3;
  --pl-aqua-dark: #009eae;
  --pl-orange: #ff8a1f;
  --pl-orange-dark: #e66e00;
  --pl-ice: #eff9fc;
  --pl-mist: #d9e8ef;
  --pl-slate: #506878;
  --pl-ink: #102d3d;
  --pl-white: #ffffff;
  --pl-line: rgba(8, 40, 61, 0.14);
  --pl-shadow-sm: 0 12px 32px rgba(6, 28, 45, 0.08);
  --pl-shadow-lg: 0 30px 90px rgba(6, 28, 45, 0.15);
  --pl-radius-sm: 10px;
  --pl-radius: 18px;
  --pl-radius-lg: 30px;
  --pl-container: 1320px;
  --pl-reading: 800px;
  --pl-font: Inter, Manrope, "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--pl-ink);
  background: var(--pl-white);
  font-family: var(--pl-font);
  font-size: 17px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

a {
  color: var(--pl-blue-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--pl-navy-950);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--pl-orange);
  outline-offset: 4px;
}

::selection {
  color: var(--pl-white);
  background: var(--pl-blue);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.6em;
  color: var(--pl-navy-950);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.75rem);
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

p,
ul,
ol,
blockquote,
figure,
table {
  margin-top: 0;
  margin-bottom: 1.4rem;
}

.site-container {
  width: min(calc(100% - 64px), var(--pl-container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 99999;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--pl-white);
  background: var(--pl-navy-950);
  border-radius: 8px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--pl-blue);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: var(--pl-aqua);
}

.eyebrow--dark {
  color: var(--pl-navy-950);
}

.eyebrow--dark::before {
  background: var(--pl-navy-950);
}

.button,
.wp-block-button__link,
.wpforms-submit,
button[type="submit"],
input[type="submit"] {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  color: var(--pl-white);
  background: var(--pl-blue);
  border: 1px solid var(--pl-blue);
  border-radius: var(--pl-radius-sm);
  box-shadow: none;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.wp-block-button__link:hover,
.wpforms-submit:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
  color: var(--pl-white);
  background: var(--pl-blue-dark);
  border-color: var(--pl-blue-dark);
  transform: translateY(-2px);
}

.button--primary {
  color: var(--pl-navy-950);
  background: var(--pl-orange);
  border-color: var(--pl-orange);
}

.button--primary:hover {
  color: var(--pl-white);
  background: var(--pl-orange-dark);
  border-color: var(--pl-orange-dark);
}

.button--dark {
  color: var(--pl-white);
  background: var(--pl-navy-950);
  border-color: var(--pl-navy-950);
}

.button--dark:hover {
  color: var(--pl-white);
  background: var(--pl-navy-800);
  border-color: var(--pl-navy-800);
}

.button--ghost-dark {
  color: var(--pl-navy-950);
  background: transparent;
  border-color: rgba(6, 28, 45, 0.42);
}

.button--ghost-dark:hover {
  color: var(--pl-white);
  background: var(--pl-navy-950);
  border-color: var(--pl-navy-950);
}

.text-link,
.footer-all-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.text-link span,
.footer-all-link span {
  color: var(--pl-aqua);
  transition: transform 180ms ease;
}

.text-link:hover span,
.footer-all-link:hover span {
  transform: translate(2px, -2px);
}

/* Header */
.utility-bar {
  position: relative;
  z-index: 90;
  color: var(--pl-white);
  background: linear-gradient(90deg, var(--pl-orange-dark), var(--pl-orange));
}

.utility-bar__inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.utility-bar p {
  margin: 0;
}

.utility-bar__note,
.utility-bar__credentials,
.utility-bar__call {
  display: flex;
  align-items: center;
  gap: 9px;
}

.utility-bar__note strong {
  font-weight: 900;
  letter-spacing: 0.09em;
}

.utility-bar__credentials {
  color: rgba(255, 255, 255, 0.82);
}

.utility-bar__call {
  color: var(--pl-white);
  text-decoration: none;
}

.utility-bar__call span {
  opacity: 0.86;
}

.utility-bar__call strong {
  font-size: 0.79rem;
  font-weight: 900;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--pl-white);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot {
    animation: emergency-pulse 1.8s ease-out infinite;
  }
}

@keyframes emergency-pulse {
  0%, 45% { box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2); }
  75%, 100% { box-shadow: 0 0 0 11px rgba(255, 255, 255, 0); }
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--pl-line);
  box-shadow: 0 10px 30px rgba(6, 28, 45, 0.06);
}

.site-header__inner {
  position: relative;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-branding {
  flex: 0 0 auto;
}

.brand-link,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-link img,
.custom-logo {
  display: block;
  width: auto;
  height: 54px;
}

.site-navigation-panel {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 30px);
}

.site-navigation {
  min-width: 0;
}

.primary-menu,
.primary-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu {
  display: flex;
  align-items: stretch;
  gap: clamp(14px, 1.8vw, 28px);
}

.primary-menu > .menu-item {
  position: relative;
  display: flex;
  align-items: center;
}

.primary-menu > .has-mega {
  position: static;
}

.primary-menu > .menu-item > a,
.menu-item__trigger > a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  color: var(--pl-navy-950);
  font-size: 0.81rem;
  font-weight: 820;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.primary-menu > .menu-item > a::after,
.menu-item__trigger > a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--pl-aqua);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-menu > .menu-item > a:hover::after,
.primary-menu > .current-menu-item > a::after,
.menu-item__trigger > a:hover::after,
.menu-item-has-children.is-open > .menu-item__trigger > a::after {
  transform: scaleX(1);
}

.menu-item__trigger {
  display: flex;
  align-items: center;
}

.submenu-toggle {
  display: inline-grid;
  width: 28px;
  height: 44px;
  padding: 0;
  place-items: center;
  color: var(--pl-navy-950);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.submenu-toggle svg {
  transition: transform 180ms ease;
}

.menu-item-has-children.is-open > .menu-item__trigger .submenu-toggle svg {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 14px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 3px;
  border: 1px solid var(--pl-line);
  border-radius: 999px;
}

.language-switcher a {
  display: grid;
  min-width: 34px;
  min-height: 30px;
  padding: 5px 8px;
  place-items: center;
  color: var(--pl-slate);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-decoration: none;
}

.language-switcher a[aria-current="page"] {
  color: var(--pl-white);
  background: var(--pl-navy-950);
}

.button--header {
  min-width: 154px;
  min-height: 54px;
  align-items: flex-start;
  flex-direction: column;
  gap: 1px;
  padding: 9px 17px;
  color: var(--pl-navy-950);
  background: var(--pl-orange);
  border-color: var(--pl-orange);
  box-shadow: 0 10px 24px rgba(230, 110, 0, 0.24);
  text-align: left;
}

.button--header:hover {
  color: var(--pl-white);
  background: var(--pl-orange-dark);
  border-color: var(--pl-orange-dark);
}

.button--header .button__eyebrow {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  opacity: 0.76;
  text-transform: uppercase;
}

.button--header strong {
  font-size: 0.89rem;
  line-height: 1.2;
}

.nav-toggle {
  display: none;
}

.mobile-nav__top,
.mobile-nav__status,
.button--mobile-request,
.mobile-emergency-call,
.nav-backdrop {
  display: none;
}

/* Mega menu */
.mega-panel {
  position: absolute;
  z-index: 90;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 2.2fr);
  overflow: hidden;
  color: var(--pl-ink);
  background: var(--pl-white);
  border: 1px solid var(--pl-line);
  border-radius: 0 0 var(--pl-radius-lg) var(--pl-radius-lg);
  box-shadow: var(--pl-shadow-lg);
}

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

.primary-menu .sub-menu {
  position: absolute;
  z-index: 91;
  top: calc(100% - 2px);
  left: 0;
  display: none;
  width: max-content;
  min-width: 250px;
  max-width: 340px;
  padding: 12px;
  background: var(--pl-white);
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius-sm);
  box-shadow: var(--pl-shadow-lg);
}

.primary-menu .menu-item.is-open > .sub-menu {
  display: block;
}

.primary-menu .sub-menu .menu-item {
  position: relative;
}

.primary-menu .sub-menu .menu-item + .menu-item {
  border-top: 1px solid var(--pl-line);
}

.primary-menu .sub-menu a {
  display: flex;
  min-height: 42px;
  align-items: center;
  padding: 9px 11px;
  color: var(--pl-ink);
  font-size: 0.8rem;
  font-weight: 670;
  line-height: 1.35;
  text-decoration: none;
}

.primary-menu .sub-menu a:hover {
  color: var(--pl-blue-dark);
  background: var(--pl-ice);
}

.primary-menu .sub-menu .sub-menu {
  top: -13px;
  left: calc(100% + 10px);
}

.mega-emergency {
  display: grid;
  min-width: 0;
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  color: var(--pl-white);
  background: linear-gradient(92deg, var(--pl-orange-dark), var(--pl-orange));
  border-bottom: 1px solid rgba(6, 28, 45, 0.14);
  text-decoration: none;
}

.mega-emergency:hover {
  color: var(--pl-white);
  background: linear-gradient(92deg, #c95e00, var(--pl-orange-dark));
}

.mega-emergency__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--pl-orange);
  background: var(--pl-white);
  border-radius: 50%;
}

.mega-emergency__message {
  display: flex;
  min-width: 0;
  flex-direction: column;
  line-height: 1.25;
}

.mega-emergency__message small {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mega-emergency__message strong {
  color: var(--pl-white);
  font-size: 0.92rem;
}

.mega-emergency__number {
  padding: 8px 13px;
  color: var(--pl-navy-950);
  background: var(--pl-white);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.mega-emergency__arrow {
  transition: transform 180ms ease;
}

.mega-emergency:hover .mega-emergency__arrow {
  transform: translateX(3px);
}

.mega-panel__intro {
  position: relative;
  min-width: 0;
  padding: 42px 38px 38px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--pl-navy-950);
  isolation: isolate;
}

.mega-panel__intro::after {
  position: absolute;
  z-index: -1;
  right: -40px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  content: "";
  border: 36px solid rgba(8, 198, 211, 0.12);
  border-radius: 50%;
}

.mega-panel__index {
  position: absolute;
  top: 22px;
  right: 26px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 2.7rem;
  font-weight: 850;
  letter-spacing: -0.08em;
}

.mega-panel__intro .eyebrow {
  margin-bottom: 18px;
  color: var(--pl-aqua);
}

.mega-panel__intro h2 {
  max-width: 420px;
  margin-bottom: 18px;
  color: var(--pl-white);
  font-size: clamp(1.75rem, 2.5vw, 2.55rem);
}

.mega-panel__intro p:not(.eyebrow) {
  max-width: 380px;
  margin-bottom: 26px;
  font-size: 0.92rem;
}

.mega-panel__intro .text-link {
  color: var(--pl-white);
  font-size: 0.86rem;
}

.mega-panel__groups {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 32px 20px;
}

.mega-panel__groups--zones {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mega-group {
  min-width: 0;
  padding: 10px 24px;
  border-left: 1px solid var(--pl-line);
}

.mega-group:first-child {
  border-left: 0;
}

.mega-group h3 {
  padding-bottom: 13px;
  margin-bottom: 7px;
  color: var(--pl-blue-dark);
  border-bottom: 1px solid var(--pl-line);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mega-link-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-link-list a {
  position: relative;
  display: block;
  padding: 8px 0 8px 16px;
  color: var(--pl-ink);
  font-size: 0.83rem;
  font-weight: 680;
  line-height: 1.35;
  text-decoration: none;
}

.mega-link-list a::before {
  position: absolute;
  top: 15px;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--pl-aqua);
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.mega-link-list a:hover {
  color: var(--pl-blue-dark);
}

.mega-link-list a:hover::before {
  background: var(--pl-orange);
  transform: scale(1.7);
}

.location-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  margin: 2px 0 18px;
  color: var(--pl-white);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
}

.location-feature:hover {
  color: var(--pl-white);
}

.location-feature__pin {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  background: rgba(8, 198, 211, 0.15);
  border: 1px solid rgba(8, 198, 211, 0.45);
  border-radius: 50%;
}

.location-feature__pin i {
  width: 8px;
  height: 8px;
  background: var(--pl-aqua);
  border-radius: 50%;
}

.location-feature span:last-child {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.location-feature strong {
  font-size: 0.88rem;
}

.location-feature small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
}

/* Reusable page sections */
.site-main {
  min-height: 50vh;
}

.front-page-canvas,
.page-shell--builder,
.entry-content--full {
  width: 100%;
}

.pl-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(78px, 10vw, 150px) 0 clamp(72px, 9vw, 130px);
  background:
    linear-gradient(90deg, rgba(239, 249, 252, 0.96), rgba(255, 255, 255, 0.78)),
    radial-gradient(circle at 82% 15%, rgba(8, 198, 211, 0.18), transparent 30%);
}

.pl-hero::before {
  position: absolute;
  top: 0;
  right: 8vw;
  width: 1px;
  height: 100%;
  content: "";
  background: rgba(8, 40, 61, 0.1);
}

.pl-hero::after {
  position: absolute;
  top: 50%;
  right: -90px;
  width: 430px;
  height: 430px;
  content: "";
  border: 68px solid rgba(8, 120, 249, 0.07);
  border-radius: 50%;
  transform: translateY(-50%);
}

.pl-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.pl-hero__copy {
  min-width: 0;
}

.pl-hero h1 {
  max-width: 950px;
  margin-bottom: 28px;
}

.pl-hero__lead {
  max-width: 680px;
  color: var(--pl-slate);
  font-size: clamp(1.08rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.pl-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.pl-hero__signal {
  position: relative;
  min-width: 0;
  padding: clamp(34px, 5vw, 58px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--pl-navy-950);
  border-left: 6px solid var(--pl-orange);
  border-radius: 4px 36px 4px 36px;
  box-shadow: var(--pl-shadow-lg);
}

.pl-hero__signal::before {
  display: block;
  width: 52px;
  height: 6px;
  margin-bottom: 48px;
  content: "";
  background: linear-gradient(90deg, var(--pl-orange), #ffc061);
  border-radius: 999px;
}

.pl-hero__signal strong {
  display: block;
  margin-bottom: 12px;
  color: var(--pl-white);
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.pl-trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -36px;
}

.pl-trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--pl-white);
  border: 1px solid var(--pl-line);
  box-shadow: var(--pl-shadow-sm);
}

.pl-trust-item {
  position: relative;
  min-width: 0;
  padding: 24px 30px 24px 56px;
  border-left: 1px solid var(--pl-line);
}

.pl-trust-item:first-child {
  border-left: 0;
}

.pl-trust-item::before {
  position: absolute;
  top: 32px;
  left: 30px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--pl-aqua);
  border-radius: 50%;
}

.pl-trust-item strong,
.pl-trust-item span {
  display: block;
}

.pl-trust-item strong {
  color: var(--pl-navy-950);
  font-size: 0.95rem;
}

.pl-trust-item span {
  color: var(--pl-slate);
  font-size: 0.8rem;
}

.pl-section {
  padding: clamp(80px, 10vw, 150px) 0;
}

.pl-section--ice {
  background: var(--pl-ice);
}

.pl-section--navy {
  color: rgba(255, 255, 255, 0.72);
  background: var(--pl-navy-950);
}

.pl-section--navy h2,
.pl-section--navy h3 {
  color: var(--pl-white);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(40px, 6vw, 74px);
}

.section-heading--split {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(280px, 0.8fr) minmax(120px, 1.2fr);
  align-items: end;
  gap: 40px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading__line {
  height: 1px;
  margin-bottom: 12px;
  background: var(--pl-line);
}

.pl-bento {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.pl-service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 300px;
  grid-column: span 4;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  color: var(--pl-ink);
  background: var(--pl-white);
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius);
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pl-service-card:nth-child(1),
.pl-service-card:nth-child(5) {
  grid-column: span 8;
}

.pl-service-card:hover {
  color: var(--pl-ink);
  border-color: rgba(8, 120, 249, 0.35);
  box-shadow: var(--pl-shadow-sm);
  transform: translateY(-5px);
}

.pl-service-card__index {
  color: var(--pl-blue);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.pl-service-card h3 {
  max-width: 580px;
  margin: auto 0 16px;
  font-size: clamp(1.55rem, 2.7vw, 2.7rem);
}

.pl-service-card p {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--pl-slate);
  font-size: 0.94rem;
}

.pl-service-card__arrow {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--pl-blue);
  border: 1px solid var(--pl-line);
  border-radius: 50%;
}

.pl-location-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(50px, 8vw, 110px);
}

.pl-location-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--pl-line);
}

.pl-location-list a {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px;
  color: var(--pl-ink);
  border-bottom: 1px solid var(--pl-line);
  font-weight: 720;
  text-decoration: none;
}

.pl-location-list li:nth-child(odd) a {
  margin-right: 24px;
}

.pl-location-list a::after {
  color: var(--pl-aqua-dark);
  content: "↗";
}

.pl-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pl-proof > div {
  min-width: 0;
  padding: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.pl-proof > div:first-child {
  border-left: 0;
}

.pl-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pl-aqua);
  font-size: 2rem;
  line-height: 1;
}

.pl-proof span {
  font-size: 0.92rem;
}

/* Page and article templates */
.page-hero,
.article-hero {
  position: relative;
  overflow: hidden;
  background: var(--pl-ice);
  border-bottom: 1px solid var(--pl-line);
}

.page-hero::after,
.article-hero::after {
  position: absolute;
  top: -180px;
  right: 4vw;
  width: 420px;
  height: 420px;
  content: "";
  border: 58px solid rgba(8, 198, 211, 0.08);
  border-radius: 50%;
}

.page-hero__inner,
.article-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(76px, 9vw, 130px);
  padding-bottom: clamp(70px, 8vw, 110px);
}

.page-hero__inner {
  max-width: 1040px;
  margin-left: max(0px, calc((100% - min(calc(100% - 64px), var(--pl-container))) / 2));
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(2.7rem, 6.2vw, 6rem);
}

.page-hero__marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 7px;
  background: linear-gradient(90deg, var(--pl-blue), var(--pl-aqua));
}

.page-hero--compact .page-hero__inner {
  padding-top: 76px;
  padding-bottom: 70px;
}

.page-hero--compact h1 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.archive-description {
  max-width: 720px;
  color: var(--pl-slate);
}

.content-shell,
.journal-intro {
  width: min(100%, var(--pl-reading));
  margin-inline: auto;
}

.page-shell > .content-shell,
.journal-intro {
  padding-top: clamp(64px, 8vw, 110px);
  padding-bottom: clamp(80px, 10vw, 140px);
}

.entry-content {
  min-width: 0;
}

.entry-content > * {
  min-width: 0;
  max-width: 100%;
}

.entry-content > *:first-child {
  margin-top: 0;
}

.entry-content h2 {
  margin-top: 2.25em;
  margin-bottom: 0.65em;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.entry-content h3 {
  margin-top: 1.9em;
  margin-bottom: 0.6em;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
}

.entry-content h4 {
  margin-top: 1.8em;
  font-size: 1.15rem;
}

.entry-content p:first-child:not(:only-child) {
  color: var(--pl-slate);
  font-size: 1.12rem;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.35em;
}

.entry-content li {
  padding-left: 0.25em;
  margin-bottom: 0.55em;
}

.entry-content li::marker {
  color: var(--pl-blue);
  font-weight: 800;
}

.entry-content a:not(.button):not(.wp-block-button__link) {
  font-weight: 680;
}

.entry-content blockquote {
  position: relative;
  padding: 4px 0 4px 34px;
  margin: 44px 0;
  color: var(--pl-navy-800);
  border-left: 5px solid var(--pl-aqua);
  font-size: 1.24rem;
  font-weight: 650;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content table {
  display: table;
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  overflow: hidden;
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius-sm);
  font-size: 0.91rem;
}

.entry-content th,
.entry-content td {
  padding: 14px 16px;
  text-align: left;
  border-right: 1px solid var(--pl-line);
  border-bottom: 1px solid var(--pl-line);
}

.entry-content th {
  color: var(--pl-white);
  background: var(--pl-navy-900);
}

.entry-content tr:last-child td {
  border-bottom: 0;
}

.entry-content th:last-child,
.entry-content td:last-child {
  border-right: 0;
}

.entry-content figure,
.entry-content .wp-caption {
  max-width: 100%;
}

.entry-content figcaption,
.entry-content .wp-caption-text {
  padding-top: 8px;
  color: var(--pl-slate);
  font-size: 0.78rem;
}

.entry-content .wp-block-group.has-background,
.entry-content .important-note,
.entry-content .key-points,
.entry-content .table-of-contents {
  padding: clamp(24px, 4vw, 38px);
  margin: 42px 0;
  background: var(--pl-ice);
  border: 1px solid var(--pl-mist);
  border-left: 5px solid var(--pl-blue);
  border-radius: var(--pl-radius-sm);
}

.entry-content .wp-block-group.has-background > *:last-child,
.entry-content .important-note > *:last-child,
.entry-content .key-points > *:last-child,
.entry-content .table-of-contents > *:last-child {
  margin-bottom: 0;
}

.article-hero {
  color: rgba(255, 255, 255, 0.7);
  background: var(--pl-navy-950);
}

.article-hero::after {
  border-color: rgba(8, 198, 211, 0.1);
}

.article-hero__inner {
  max-width: 1060px;
  margin-inline: auto;
}

.article-hero h1 {
  max-width: 1060px;
  margin-bottom: 30px;
  color: var(--pl-white);
  font-size: clamp(2.6rem, 6vw, 5.75rem);
}

.article-kicker,
.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.79rem;
  font-weight: 720;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.article-kicker a {
  color: var(--pl-aqua);
  text-decoration: none;
}

.article-kicker > * + *::before,
.article-byline > * + *::before {
  margin-right: 22px;
  color: rgba(255, 255, 255, 0.25);
  content: "/";
}

.article-byline {
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}

.article-image {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.article-image img {
  display: block;
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  border-radius: var(--pl-radius);
  box-shadow: var(--pl-shadow-sm);
}

.article-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, var(--pl-reading));
  justify-content: center;
  gap: clamp(44px, 7vw, 100px);
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(80px, 10vw, 150px);
}

.article-rail {
  align-self: start;
  color: var(--pl-slate);
  font-size: 0.8rem;
}

.article-rail__line {
  display: block;
  width: 100%;
  height: 1px;
  margin-bottom: 18px;
  background: var(--pl-line);
}

.article-rail strong {
  display: block;
  margin-bottom: 8px;
  color: var(--pl-navy-950);
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.article-rail p {
  margin: 0;
}

.related-articles,
.journal-listing {
  padding: clamp(78px, 9vw, 130px) 0;
  background: var(--pl-ice);
}

.post-navigation {
  width: min(calc(100% - 64px), var(--pl-container));
  margin: 70px auto;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.post-navigation a {
  display: flex;
  min-height: 110px;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  color: var(--pl-navy-950);
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius-sm);
  font-weight: 750;
  text-decoration: none;
}

.post-navigation a span {
  display: block;
  margin-bottom: 6px;
  color: var(--pl-slate);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Journal */
.journal-hero {
  padding: clamp(80px, 10vw, 140px) 0 0;
  color: rgba(255, 255, 255, 0.7);
  background: var(--pl-navy-950);
}

.journal-hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
  padding-bottom: clamp(62px, 8vw, 100px);
}

.journal-hero .eyebrow {
  color: var(--pl-aqua);
}

.journal-hero h1 {
  margin-bottom: 0;
  color: var(--pl-white);
  font-size: clamp(3.1rem, 6.7vw, 6.5rem);
}

.journal-hero__utility {
  max-width: 520px;
  justify-self: end;
}

.journal-hero__utility p {
  font-size: 1.05rem;
}

.search-form {
  display: flex;
  width: 100%;
  align-items: stretch;
}

.search-form label {
  min-width: 0;
  flex: 1 1 auto;
}

.search-field {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  color: var(--pl-ink);
  background: var(--pl-white);
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius-sm) 0 0 var(--pl-radius-sm);
}

.search-submit {
  min-height: 52px;
  border-radius: 0 var(--pl-radius-sm) var(--pl-radius-sm) 0;
}

.category-strip {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.56);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.76rem;
  font-weight: 780;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-strip ul {
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.category-strip a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 12px;
  color: var(--pl-white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  text-decoration: none;
}

.category-strip a:hover {
  color: var(--pl-navy-950);
  background: var(--pl-aqua);
  border-color: var(--pl-aqua);
}

.journal-intro {
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: 0;
}

.listing-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: clamp(60px, 7vw, 90px);
  padding-bottom: clamp(80px, 9vw, 130px);
}

.journal-listing .listing-grid,
.related-articles .listing-grid {
  padding-top: 0;
  padding-bottom: 0;
}

.content-card {
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--pl-white);
  border: 1px solid var(--pl-line);
  border-radius: var(--pl-radius);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.content-card:hover {
  border-color: rgba(8, 120, 249, 0.32);
  box-shadow: var(--pl-shadow-sm);
  transform: translateY(-5px);
}

.content-card__image {
  display: block;
  overflow: hidden;
  aspect-ratio: 19 / 12;
  background: var(--pl-mist);
}

.content-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.content-card__body {
  display: flex;
  min-width: 0;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.entry-meta {
  margin-bottom: 14px;
  color: var(--pl-blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.content-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.content-card h2 a {
  color: var(--pl-navy-950);
  text-decoration: none;
}

.content-card p {
  color: var(--pl-slate);
  font-size: 0.9rem;
}

.content-card .text-link {
  margin-top: auto;
  color: var(--pl-navy-950);
  font-size: 0.82rem;
}

.pagination-wrap,
.empty-state {
  grid-column: 1 / -1;
}

.pagination-wrap .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination-wrap .page-numbers {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  place-items: center;
  color: var(--pl-navy-950);
  background: var(--pl-white);
  border: 1px solid var(--pl-line);
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.pagination-wrap .current {
  color: var(--pl-white);
  background: var(--pl-blue);
  border-color: var(--pl-blue);
}

.empty-state {
  padding: clamp(36px, 5vw, 60px);
  background: var(--pl-ice);
  border: 1px solid var(--pl-mist);
  border-radius: var(--pl-radius);
}

/* Forms and comments */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="search"],
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  color: var(--pl-ink);
  background: var(--pl-white);
  border: 1px solid #b8cbd5;
  border-radius: var(--pl-radius-sm);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pl-blue);
  outline: 3px solid rgba(8, 120, 249, 0.16);
}

.wpforms-container .wpforms-field {
  padding: 0 0 18px;
}

.wpforms-container .wpforms-field-label {
  margin-bottom: 7px;
  color: var(--pl-navy-950);
  font-size: 0.83rem;
  font-weight: 780;
}

.comments-area {
  padding-top: 30px;
  padding-bottom: 80px;
}

.comment-list {
  padding: 0;
  list-style: none;
}

.comment-body {
  padding: 24px 0;
  border-bottom: 1px solid var(--pl-line);
}

/* Error */
.error-page {
  min-height: 66vh;
  padding: clamp(80px, 12vw, 170px) 0;
  background: var(--pl-ice);
}

.error-page__inner {
  position: relative;
  max-width: 840px;
}

.error-code {
  position: absolute;
  top: -90px;
  right: 0;
  color: rgba(8, 120, 249, 0.07);
  font-size: clamp(8rem, 20vw, 17rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.1em;
}

.error-page h1,
.error-page p,
.error-page .eyebrow,
.error-page__actions {
  position: relative;
}

.error-page p {
  max-width: 610px;
  color: var(--pl-slate);
  font-size: 1.08rem;
}

.error-page__actions {
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin-top: 30px;
}

/* Footer */
.footer-cta {
  color: var(--pl-navy-950);
  background: linear-gradient(105deg, var(--pl-orange) 0%, #ffab3d 58%, #ffc261 100%);
}

.footer-cta__inner {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.footer-cta__copy {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: clamp(30px, 5vw, 66px);
}

.footer-cta__number {
  flex: 0 0 auto;
  color: var(--pl-navy-950);
  font-size: clamp(4rem, 8vw, 7.8rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.09em;
}

.footer-cta__number span {
  color: rgba(6, 28, 45, 0.28);
}

.footer-cta h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.75rem);
}

.footer-cta__actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.9);
  background: #0d4966;
}

.footer-topline {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 48px;
  padding-top: 58px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 30px;
}

.footer-brand .brand-link {
  flex: 0 0 auto;
}

.footer-brand img {
  width: auto;
  height: 54px;
}

.footer-brand p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-contact span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--pl-white);
  font-size: 1.28rem;
  font-weight: 820;
  text-decoration: none;
}

.language-switcher--footer {
  border-color: rgba(255, 255, 255, 0.18);
}

.language-switcher--footer a {
  color: rgba(255, 255, 255, 0.86);
}

.language-switcher--footer a[aria-current="page"] {
  color: var(--pl-navy-950);
  background: var(--pl-aqua);
}

.footer-grid {
  display: grid;
  min-width: 0;
  grid-template-columns: 1.55fr 0.8fr 0.75fr 1fr;
  gap: clamp(36px, 5vw, 74px);
  padding-top: 62px;
  padding-bottom: 66px;
}

.footer-column,
.footer-credentials {
  min-width: 0;
}

.footer-column h2 {
  padding-bottom: 14px;
  margin-bottom: 18px;
  color: var(--pl-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-links,
.legal-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links--two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.footer-links a {
  display: inline-block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-links a:hover,
.site-footer .footer-all-link:hover,
.footer-credentials a:hover,
.legal-menu a:hover {
  color: var(--pl-aqua);
}

.site-footer .footer-all-link {
  margin-top: 17px;
  color: var(--pl-white);
  font-size: 0.86rem;
}

.footer-credentials {
  padding: 24px;
  color: var(--pl-slate);
  background: var(--pl-white);
  border-top: 3px solid var(--pl-aqua);
  box-shadow: 0 18px 42px rgba(2, 22, 34, 0.2);
}

.footer-credentials .eyebrow {
  margin-bottom: 22px;
  color: var(--pl-blue-dark);
  font-size: 0.72rem;
}

.footer-credentials strong,
.footer-credentials > span,
.footer-credentials > a {
  display: block;
}

.footer-credentials strong {
  margin-bottom: 4px;
  color: var(--pl-navy-950);
  font-size: 1.06rem;
}

.footer-credentials > span,
.footer-credentials > a {
  font-size: 0.84rem;
}

.footer-credentials > a {
  margin-top: 16px;
  color: var(--pl-blue-dark);
  font-weight: 750;
  text-decoration: none;
}

.footer-credentials > a:hover {
  color: var(--pl-navy-950);
}

.cmmtq-logo {
  display: flex;
  min-height: 62px;
  align-items: center;
  padding: 10px;
  margin-bottom: 18px;
  background: #f7fbfd;
  border: 1px solid var(--pl-mist);
}

.cmmtq-logo img {
  width: auto;
  max-height: 46px;
}

.footer-bottom {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__links,
.legal-menu {
  display: flex;
  align-items: center;
  gap: 20px;
}

.legal-menu a,
.cookie-settings {
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}

.cookie-settings {
  padding: 0;
}

/* WPBakery */
.vc_row,
.wpb_content_element,
.wpb_wrapper {
  min-width: 0;
}

.vc_row[data-vc-full-width] {
  overflow: visible;
}

.page-shell--builder .vc_row,
.entry-content--full .vc_row {
  margin-right: 0;
  margin-left: 0;
}

@media (max-width: 1120px) {
  .site-container {
    width: min(calc(100% - 48px), var(--pl-container));
  }

  .site-header__inner {
    gap: 20px;
  }

  .primary-menu {
    gap: 14px;
  }

  .primary-menu > .menu-item > a,
  .menu-item__trigger > a {
    font-size: 0.75rem;
  }

  .button--header {
    min-width: 128px;
  }

  .utility-bar__credentials {
    display: none;
  }

  .utility-bar__note > span:last-child {
    display: none;
  }

  .mega-panel__intro {
    padding: 36px 28px;
  }

  .mega-group {
    padding-inline: 16px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 920px) {
  body {
    font-size: 16px;
  }

  .site-header {
    z-index: 110;
    background: var(--pl-white);
    backdrop-filter: none;
  }

  .site-container {
    width: min(calc(100% - 40px), var(--pl-container));
  }

  .utility-bar__credentials {
    display: none;
  }

  .utility-bar__inner {
    justify-content: space-between;
    text-align: center;
  }

  .site-header__inner {
    min-height: 74px;
    gap: 10px;
  }

  .brand-link img,
  .custom-logo {
    height: 47px;
  }

  .site-branding {
    margin-right: auto;
  }

  .mobile-emergency-call {
    display: inline-flex;
    min-width: 64px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    color: var(--pl-white);
    background: var(--pl-orange);
    border: 1px solid var(--pl-orange);
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(230, 110, 0, 0.24);
    font-size: 0.75rem;
    text-decoration: none;
  }

  .nav-toggle {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 10px;
    color: var(--pl-navy-950);
    background: transparent;
    border: 1px solid var(--pl-line);
    border-radius: 8px;
    cursor: pointer;
  }

  .nav-toggle__label {
    font-size: 0.75rem;
    font-weight: 820;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .nav-toggle__icon {
    position: relative;
    display: block;
    width: 19px;
    height: 14px;
  }

  .nav-toggle__icon i {
    position: absolute;
    left: 0;
    display: block;
    width: 19px;
    height: 2px;
    background: currentColor;
    transition: top 180ms ease, transform 180ms ease;
  }

  .nav-toggle__icon i:first-child {
    top: 2px;
  }

  .nav-toggle__icon i:last-child {
    top: 10px;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:first-child {
    top: 6px;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon i:last-child {
    top: 6px;
    transform: rotate(-45deg);
  }

  .site-navigation-panel {
    position: fixed;
    z-index: 102;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    display: flex;
    width: min(92vw, 520px);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--pl-white);
    border-left: 1px solid var(--pl-line);
    box-shadow: -28px 0 80px rgba(6, 28, 45, 0.22);
    pointer-events: none;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 240ms;
  }

  .site-navigation-panel.is-open {
    pointer-events: auto;
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .nav-backdrop {
    position: fixed;
    z-index: 101;
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    display: block;
    height: 100vh;
    height: 100dvh;
    background: rgba(6, 28, 45, 0.58);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 0s linear 220ms;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transition-delay: 0s;
  }

  .mobile-nav__top {
    position: sticky;
    z-index: 6;
    top: 0;
    display: flex;
    min-height: 82px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--pl-line);
    backdrop-filter: blur(14px);
  }

  .mobile-nav__top > div {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav__top span {
    color: var(--pl-blue-dark);
    font-size: 0.66rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-nav__top strong {
    color: var(--pl-navy-950);
    font-size: 1.08rem;
  }

  .mobile-nav__close {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    color: var(--pl-navy-950);
    background: var(--pl-ice);
    border: 1px solid var(--pl-mist);
    border-radius: 999px;
    cursor: pointer;
  }

  .mobile-nav__close span {
    color: currentColor;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .mobile-nav__status {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    margin: 16px 20px 8px;
    padding: 13px 14px;
    color: var(--pl-navy-950);
    background: #fff5e9;
    border: 1px solid #ffd5aa;
    border-radius: 14px;
    text-decoration: none;
  }

  .mobile-nav__status-icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--pl-white);
    background: var(--pl-orange);
    border-radius: 50%;
  }

  .mobile-nav__status small,
  .mobile-nav__status strong {
    display: block;
  }

  .mobile-nav__status small {
    margin-bottom: 1px;
    color: var(--pl-slate);
    font-size: 0.68rem;
    font-weight: 760;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-nav__status strong {
    font-size: 0.9rem;
  }

  .mobile-nav__status-arrow {
    color: var(--pl-orange-dark);
  }

  .site-navigation {
    flex: 1 0 auto;
    padding: 4px 20px 18px;
  }

  .primary-menu {
    display: block;
  }

  .primary-menu > .menu-item {
    position: static;
    display: block;
    border-bottom: 1px solid var(--pl-line);
  }

  .primary-menu > .menu-item > a,
  .menu-item__trigger > a {
    min-height: 58px;
    flex: 1 1 auto;
    font-size: 0.9rem;
  }

  .primary-menu > .menu-item > a::after,
  .menu-item__trigger > a::after {
    display: none;
  }

  .menu-item__trigger {
    width: 100%;
  }

  .submenu-toggle {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    background: var(--pl-ice);
    border-radius: 8px;
  }

  .mega-panel,
  .primary-menu .sub-menu {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    margin: 0 0 16px;
    overflow: visible;
    border-radius: var(--pl-radius-sm);
    box-shadow: none;
  }

  .mega-emergency {
    position: sticky;
    z-index: 2;
    top: 0;
  }

  .menu-item-has-children.is-open > .mega-panel,
  .menu-item-has-children.is-open > .sub-menu {
    display: grid;
  }

  .mega-panel__intro {
    display: none;
  }

  .mega-panel__groups,
  .mega-panel__groups--zones {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px;
  }

  .mega-group {
    border-left: 0;
  }

  .mega-link-list a {
    min-height: 42px;
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .mega-link-list a::before {
    top: 18px;
  }

  .primary-menu .sub-menu {
    padding: 12px 18px;
    background: var(--pl-ice);
    border: 1px solid var(--pl-mist);
    list-style: none;
  }

  .primary-menu .sub-menu a {
    display: block;
    min-height: 44px;
    padding: 11px 0;
    color: var(--pl-ink);
    font-size: 0.86rem;
    font-weight: 650;
    text-decoration: none;
  }

  .header-actions {
    position: sticky;
    z-index: 6;
    bottom: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--pl-line);
    box-shadow: 0 -16px 40px rgba(6, 28, 45, 0.08);
    backdrop-filter: blur(14px);
  }

  .language-switcher--header {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .button--header {
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .button--mobile-request {
    display: inline-flex;
    min-height: 54px;
    padding-inline: 14px;
    color: var(--pl-white);
    background: var(--pl-blue);
    border-color: var(--pl-blue);
    font-size: 0.76rem;
    text-align: center;
  }

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

  body.admin-bar .site-navigation-panel,
  body.admin-bar .nav-backdrop {
    top: 32px;
    height: calc(100vh - 32px);
    height: calc(100dvh - 32px);
  }

  .pl-hero__grid,
  .pl-location-grid,
  .journal-hero__grid {
    grid-template-columns: 1fr;
  }

  .pl-hero__signal,
  .journal-hero__utility {
    max-width: 620px;
    justify-self: auto;
  }

  .pl-service-card,
  .pl-service-card:nth-child(1),
  .pl-service-card:nth-child(5) {
    grid-column: span 6;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .article-rail {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr);
    column-gap: 18px;
  }

  .article-rail__line {
    grid-row: 1 / span 2;
    width: 1px;
    height: 100%;
    margin: 0 auto;
  }

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

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

  .footer-cta__actions {
    width: 100%;
    flex-direction: row;
  }

  .footer-topline {
    grid-template-columns: 1fr auto;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    align-items: flex-start;
  }

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

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

@media (max-width: 600px) {
  .site-container {
    width: min(calc(100% - 32px), var(--pl-container));
  }

  .utility-bar__inner {
    min-height: 32px;
    font-size: 0.64rem;
    letter-spacing: 0.035em;
  }

  .utility-bar__call > span {
    display: none;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand-link img,
  .custom-logo {
    height: 42px;
    max-width: 180px;
  }

  .nav-toggle {
    min-width: 46px;
  }

  .nav-toggle__label {
    display: none;
  }

  .site-navigation-panel {
    width: 100%;
    border-left: 0;
  }

  .mobile-nav__top {
    padding-inline: 16px;
  }

  .mobile-nav__status {
    margin-inline: 16px;
  }

  .site-navigation {
    padding-inline: 16px;
  }

  .header-actions {
    padding-inline: 16px;
  }

  .mega-panel__intro {
    padding: 24px;
  }

  .mega-panel__index {
    display: none;
  }

  .mega-panel__groups,
  .mega-panel__groups--zones {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .mega-emergency {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 10px;
    padding: 12px;
  }

  .mega-emergency__number {
    grid-column: 2;
    justify-self: start;
    padding: 0;
    color: var(--pl-white);
    background: transparent;
    font-size: 0.84rem;
  }

  .mega-emergency__arrow {
    grid-row: 1 / span 2;
    grid-column: 3;
  }

  .mega-emergency__message strong {
    font-size: 0.82rem;
  }

  .mega-group {
    padding: 14px 12px;
    border-top: 1px solid var(--pl-line);
  }

  .mega-group:first-child {
    border-top: 0;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.25rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .pl-hero {
    padding-top: 64px;
  }

  .pl-hero::after {
    right: -230px;
  }

  .pl-hero__grid {
    gap: 42px;
  }

  .pl-hero__actions,
  .footer-cta__actions,
  .error-page__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pl-hero__actions .button,
  .footer-cta__actions .button,
  .error-page__actions .button {
    width: 100%;
  }

  .pl-trust-strip {
    margin-top: -22px;
  }

  .pl-trust-strip__inner,
  .pl-proof {
    grid-template-columns: 1fr;
  }

  .pl-trust-item,
  .pl-trust-item:first-child,
  .pl-proof > div,
  .pl-proof > div:first-child {
    border-top: 1px solid var(--pl-line);
    border-left: 0;
  }

  .pl-trust-item:first-child,
  .pl-proof > div:first-child {
    border-top: 0;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pl-service-card,
  .pl-service-card:nth-child(1),
  .pl-service-card:nth-child(5) {
    min-height: 260px;
    grid-column: 1 / -1;
  }

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

  .pl-location-list li:nth-child(odd) a {
    margin-right: 0;
  }

  .page-hero__inner,
  .article-hero__inner {
    padding-top: 64px;
    padding-bottom: 62px;
  }

  .page-hero__inner {
    margin-left: 16px;
  }

  .page-hero h1,
  .article-hero h1,
  .journal-hero h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .article-kicker > * + *::before,
  .article-byline > * + *::before {
    margin-right: 10px;
  }

  .article-image {
    width: 100%;
    margin-top: 0;
  }

  .article-image img {
    border-radius: 0;
  }

  .entry-content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .article-layout {
    padding-top: 62px;
  }

  .article-rail {
    grid-template-columns: 32px minmax(0, 1fr);
  }

  .journal-hero {
    padding-top: 64px;
  }

  .journal-hero__grid {
    gap: 38px;
  }

  .category-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

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

  .content-card__body {
    padding: 24px;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .footer-cta__inner {
    min-height: 0;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .footer-cta__copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }

  .footer-cta__number {
    font-size: 4.4rem;
  }

  .footer-topline {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .footer-contact {
    align-items: flex-start;
  }

  .language-switcher--footer {
    justify-self: start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links--two-column {
    grid-template-columns: 1fr;
  }

  .footer-bottom__links,
  .legal-menu {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-navigation-panel,
  body.admin-bar .nav-backdrop {
    top: 46px;
    height: calc(100vh - 46px);
    height: calc(100dvh - 46px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .footer-cta,
  .site-footer,
  .post-navigation {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 12pt;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}
