@charset "UTF-8";
:root {
  --ink: #102a38;
  --ink-2: #173b4b;
  --blue: #4274c9;
  --cream: #f4f0e8;
  --paper: #fff;
  --muted: #60717a;
  --line: #d8dfdf;
  --max: 1240px;
  --radius: 4px;
  --shadow: 0 20px 60px rgba(16, 42, 56, 0.12);
}

body:not(.home) .inner-hero,
body:not(.home) .internal-banner,
body:not(.home) .faq-hero,
body:not(.home) .archive-head {
  display: flex;
  height: 60vh;
  min-height: 320px;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
}

body:not(.home) .inner-hero {
  align-items: stretch;
}

body:not(.home) .internal-banner {
  position: relative;
  overflow: hidden;
}

body:not(.home) .internal-banner > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:not(.home) .internal-banner__media,
body:not(.home) .internal-banner__overlay {
  position: absolute;
  inset: 0;
}

body:not(.home) .internal-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body:not(.home) .internal-banner__overlay {
  background: var(--banner-overlay);
  opacity: var(--banner-opacity);
}

body:not(.home) .internal-banner__content {
  position: relative;
  z-index: 1;
  color: var(--banner-text);
}

@media (max-height: 650px) {
  body:not(.home) .inner-hero,
  body:not(.home) .internal-banner,
  body:not(.home) .faq-hero,
  body:not(.home) .archive-head {
    min-height: 60vh;
  }
}
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

:where(a:not(.button)):hover {
  color: var(--blue);
}

:where(a:not(.button)):focus-visible {
  border-radius: 2px;
  outline: 3px solid #f3b63f;
  outline-offset: 4px;
}

a img {
  transition: opacity 0.2s ease, transform 0.25s ease;
}

a:hover img {
  opacity: 0.86;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(24px, 7vw, 32px);
  font-weight: 600;
}

h2 {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 600;
}

h3 {
  font-size: 20px;
  line-height: 24px;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  background: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: none;
}

.utility-bar {
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.utility-bar .container {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.utility-bar a {
  color: #b9d0f5;
}

.utility-bar a:hover {
  color: #fff;
}

.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: 0.25s;
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header__inner {
  height: 84px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.site-brand:hover {
  color: var(--blue);
}

.site-brand:hover .site-brand__image {
  opacity: 0.82;
}

.site-brand b {
  color: var(--blue);
  font-weight: 700;
}

.site-brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 8px;
  background: var(--blue);
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 0;
  transform: rotate(-12deg);
}

.site-brand__mark::first-letter {
  transform: rotate(12deg);
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul,
.mobile-menu ul,
.site-footer ul {
  display: flex;
  align-items: center;
  gap: 27px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-nav a {
  font-size: 0.88rem;
  font-weight: 600;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--blue);
}

.header-phone {
  display: flex;
  flex-direction: column;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

.header-phone span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(16, 42, 56, 0);
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 42, 56, 0.2);
  transform: translateY(-2px);
}

.button:focus-visible {
  outline: 3px solid #f3b63f;
  outline-offset: 3px;
}

.button:active {
  box-shadow: none;
  transform: translateY(0);
}

.button--small {
  min-height: 44px;
  padding: 10px 17px;
}

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

.button--light {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.button--outline:hover,
.button--ghost:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.button--light:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

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

.button--ghost-light {
  border-color: #fff;
  background: transparent;
  color: #fff;
}

.button--ghost-light:hover {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.text-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 700;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--blue);
}

.text-link:focus-visible {
  border-radius: 2px;
  outline: 3px solid #f3b63f;
  outline-offset: 4px;
}

.text-link--light {
  color: #fff;
}

.text-link--light:hover {
  color: var(--cream);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  line-height: 1.6;
  color: #435963;
}

.plumb-hero {
  overflow: hidden;
  background: var(--cream);
}

.plumb-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 690px;
  align-items: center;
}

.plumb-hero__content {
  padding: 80px 8% 80px 0;
}

.plumb-hero h1 {
  max-width: 800px;
  margin-bottom: 26px;
}

.plumb-hero .lead {
  margin-bottom: 34px;
}

.plumb-hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  background: var(--ink);
  overflow: hidden;
}

.plumb-hero__visual:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 78px, rgba(255, 255, 255, 0.035) 79px, rgba(255, 255, 255, 0.035) 80px);
}

.pipe {
  position: absolute;
  width: 130px;
  height: 390px;
  border: 30px solid #d6e0df;
  border-top: 0;
  border-radius: 0 0 70px 70px;
}

.pipe:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 30px;
  background: #aebdbd;
  top: -12px;
  left: -5px;
  border-radius: 3px;
}

.pipe--one {
  right: 9%;
  top: -60px;
}

.pipe--two {
  left: 7%;
  bottom: -170px;
  transform: rotate(90deg);
}

.water-drop {
  position: absolute;
  right: 23%;
  top: 365px;
  width: 46px;
  height: 60px;
  background: #74cce6;
  border-radius: 55% 45% 55% 45%;
  transform: rotate(45deg);
}

.visual-card {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 58px;
  padding: 25px 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.visual-card span {
  display: block;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.visual-card strong {
  display: block;
  margin: 5px 0;
  font-size: 1.25rem;
}

.visual-card small {
  color: var(--muted);
}

.trust-strip {
  background: var(--blue);
  color: #fff;
}

.trust-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip span {
  padding: 19px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.trust-strip span:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.services-section {
  padding: 40px 0px 60px;
}

.section--tint {
  background: var(--cream);
}

.section--dark {
  background: var(--ink);
  color: #fff;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 9%;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2 {
  margin: 0;
}

.section-heading > p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.services-section .service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-section__heading {
  margin-bottom: 56px;
  text-align: center;
  font-size: 24px;
}

.services-section .service-card__image {
  aspect-ratio: 3/2;
  height: auto;
}

.service-card {
  position: relative;
  padding: 40px;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.service-card:focus-visible {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-card__number {
  position: absolute;
  right: 26px;
  top: 20px;
  color: #dfe5e5;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
}

.service-icon {
  position: relative;
  width: 74px;
  height: 74px;
  margin-bottom: 70px;
  border: 14px solid var(--blue);
  border-left: 0;
  border-radius: 0 40px 40px 0;
}

.service-icon:before {
  content: "";
  position: absolute;
  left: -23px;
  top: 16px;
  width: 26px;
  height: 14px;
  background: var(--blue);
}

.service-card:nth-child(2) .service-icon {
  width: 55px;
  height: 70px;
  border: 0;
  background: #74cce6;
  border-radius: 55% 45% 55% 45%;
  transform: rotate(45deg);
}

.service-card h3 {
  max-width: 420px;
  font-size: 1.75rem;
}

.service-card p {
  max-width: 530px;
  color: var(--muted);
}

.split-feature {
  background: var(--ink);
  color: #fff;
}

.split-feature__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.split-feature__panel {
  padding: 110px 9% 110px 0;
}

.steps {
  margin: 0;
  padding: 85px 0 85px 9%;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 26px;
  padding: 27px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.steps span,
.process-grid span {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
}

.steps h3 {
  margin-bottom: 8px;
}

.steps p {
  color: #b9c5ca;
}

.area-callout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 10%;
  align-items: center;
}

.area-callout__map {
  position: relative;
  display: flex;
  min-height: 350px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  overflow: hidden;
}

.area-callout__map:after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  border: 45px solid rgba(66, 116, 201, 0.13);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-22deg);
}

.area-callout__map span,
.area-callout__map strong,
.area-callout__map small {
  position: relative;
  z-index: 1;
}

.area-callout__map span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.area-callout__map strong {
  font-size: 3.5rem;
}

.area-callout__map small {
  color: var(--blue);
  font-weight: 700;
}

.section--faq > h2 {
  max-width: 750px;
  margin-bottom: 45px;
}

.section--faq .faq-accordion {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
  align-items: start;
}

.section--faq .faq-accordion__item {
  align-self: start;
}

.why-us-section {
  background: var(--cream);
}

.why-us-section__heading {
  margin-bottom: 48px;
  text-align: center;
}

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

.why-us-card {
  min-width: 0;
  padding: 36px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.why-us-card__content > *:last-child {
  margin-bottom: 0;
}

.why-us-card__content h2,
.why-us-card__content h3 {
  margin-bottom: 18px;
  font-size: 1.25rem;
}

.why-us-card__content p {
  color: var(--muted);
}

.content-image-section__heading {
  margin-bottom: 56px;
  text-align: center;
}

.content-image-list {
  display: grid;
  gap: 72px;
}

.content-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8%;
  align-items: center;
}

.content-image-row--reverse .content-image-row__content {
  order: 2;
}

.content-image-row--reverse .content-image-row__image {
  order: 1;
}

.content-image-row__content > *:last-child {
  margin-bottom: 0;
}

.content-image-row__content p {
  color: var(--muted);
}

.content-image-row__content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 10px;
  padding-left: 1.25em;
}

.content-image-row__content li {
  min-width: 0;
}

.content-image-row__image {
  aspect-ratio: 4/3;
  background: var(--cream);
  overflow: hidden;
}

.content-image-row__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.faq-accordion__item {
  border-bottom: 1px solid var(--line);
}

.faq-accordion h3 {
  margin: 0;
}

.faq-accordion button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 26px 0;
  border: 0;
  background: none;
  color: var(--ink);
  text-align: left;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.faq-accordion button:hover {
  padding-left: 8px;
  color: var(--blue);
}

.faq-accordion button:focus-visible {
  border-radius: 2px;
  outline: 3px solid #f3b63f;
  outline-offset: 3px;
}

.faq-accordion i {
  position: relative;
  width: 20px;
  height: 20px;
  flex: none;
}

.faq-accordion i:before,
.faq-accordion i:after {
  content: "";
  position: absolute;
  top: 9px;
  width: 20px;
  height: 2px;
  background: var(--blue);
}

.faq-accordion i:after {
  transform: rotate(90deg);
  transition: 0.2s;
}

.faq-accordion button[aria-expanded=true] i:after {
  transform: rotate(0);
}

.faq-accordion__panel {
  max-width: 800px;
  padding: 0 40px 25px 0;
  color: var(--muted);
}

.inner-hero {
  padding: 110px 0;
  background: var(--cream);
}

.inner-hero .container {
  max-width: 1240px;
}

.inner-hero h1 {
  max-width: 1050px;
}

.inner-hero--dark {
  background: var(--ink);
  color: #fff;
}

.inner-hero--dark .lead,
.inner-hero--service .lead {
  color: #bdc9ce;
}

.inner-hero--service {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.inner-hero--service:after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  border: 85px solid rgba(66, 116, 201, 0.22);
  border-radius: 50% 50% 50% 12px;
  transform: rotate(-22deg);
}

.inner-hero--service .container {
  position: relative;
  z-index: 1;
}

.content-split,
.address-block,
.detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10%;
}

.content-split h2,
.address-block h2 {
  max-width: 620px;
}

.content-split > div:last-child,
.address-block > div:last-child {
  font-size: 1.05rem;
  color: var(--muted);
}

.values {
  background: var(--cream);
}

.values .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.values article {
  padding: 70px 45px;
  border-left: 1px solid #d4d1ca;
}

.values article:last-child {
  border-right: 1px solid #d4d1ca;
}

.values span {
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
}

.values h2 {
  margin: 45px 0 20px;
  font-size: 2rem;
}

.values p {
  color: var(--muted);
}

.service-list article {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.service-list__index {
  font-size: 4rem;
  font-weight: 700;
  color: #dfe4e4;
}

.service-list h2 {
  margin-bottom: 12px;
  font-size: 2.3rem;
}

.service-list p {
  max-width: 700px;
  color: var(--muted);
}

.detail-grid h2 {
  font-size: 2.7rem;
}

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

.check-list li {
  position: relative;
  padding: 19px 20px 19px 50px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.check-list li:before {
  content: "✓";
  position: absolute;
  left: 12px;
  color: var(--blue);
  font-weight: 800;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 40px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.16);
  list-style: none;
}

.process-grid li {
  min-height: 230px;
  padding: 38px;
  background: var(--ink);
}

.process-grid p {
  margin-top: 60px;
  font-size: 1.08rem;
}

.location-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.location-card > div {
  position: relative;
  max-width: 730px;
}

.location-card__postcode {
  position: absolute;
  top: -50px;
  left: -15px;
  color: rgba(16, 42, 56, 0.07);
  font-size: 9rem;
  font-weight: 800;
  line-height: 1;
}

.location-card h2,
.location-card p,
.location-card .eyebrow {
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 8%;
}

.contact-details > div {
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details > div h3 {
  margin-bottom: 7px;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details a {
  font-weight: 700;
}

.contact-details a:hover {
  color: var(--blue);
}

.contact-details > p:last-child {
  margin-top: 30px;
  color: var(--muted);
}

.quote-panel {
  padding: 48px;
  background: var(--cream);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__row--full {
  grid-column: 1/-1;
}

.contact-form label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bdc8c8;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.contact-form__trap {
  position: absolute;
  left: -9999px;
}

.contact-form .button {
  justify-self: start;
}

.form-notice {
  margin-bottom: 28px;
  padding: 20px;
  border-left: 4px solid var(--blue);
  background: #fff;
}

.form-notice p {
  margin: 4px 0 0;
}

.pre-footer {
  padding: 70px 0;
  background: var(--blue);
  color: #fff;
}

.pre-footer .container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.pre-footer .eyebrow {
  color: #fff;
}

.pre-footer h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.site-footer {
  padding: 75px 0 20px;
  background: #0b202b;
  color: #fff;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.8fr;
  gap: 9%;
}

.site-brand--footer {
  margin-bottom: 22px;
}

.site-footer__grid > div:first-child p {
  max-width: 410px;
  color: #aebec5;
}

.site-footer h2 {
  margin-bottom: 20px;
  color: #7f939c;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-footer ul {
  display: block;
}

.site-footer li {
  margin: 8px 0;
}

.site-footer address {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-style: normal;
}

.site-footer a:not(.button):hover {
  color: #b9d0f5;
}

.section--dark a:not(.button):not(.text-link):hover,
.split-feature a:not(.button):not(.text-link):hover {
  color: #b9d0f5;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 65px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #7f939c;
  font-size: 0.78rem;
}

.intro-section {
  padding: 50px 0px;
}
.intro-section .container .extend-content {
  cursor: pointer;
  display: block;
  margin-top: 20px;
  text-decoration: underline;
}
.intro-section .container .extend-content:hover {
  color: var(--blue);
}

/* About page */
.about-intro {
  background: var(--paper);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 8%;
  align-items: center;
}

.about-split--reverse .about-split__content {
  order: 2;
}

.about-split--reverse .about-split__image {
  order: 1;
}

.about-split__content blockquote {
  margin: 32px 0 0;
  padding: 24px 0 24px 28px;
  border-left: 4px solid var(--blue);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
}

.about-split__image {
  min-height: 480px;
  margin: 0;
  background: var(--cream);
  overflow: hidden;
}

.about-split__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.about-section-heading {
  max-width: 780px;
  margin-bottom: 55px;
}

.about-section-heading > p:last-child {
  color: var(--muted);
}

.section--dark .about-section-heading > p:last-child {
  color: #b9c5ca;
}

.about-services .eyebrow,
.about-reasons .eyebrow {
  color: #8fb5f5;
}

.about-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 42px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.about-service-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 20px 22px 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: #e2e9ec;
}

.about-service-list i,
.about-reason i {
  color: var(--blue);
}

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

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

.about-feature-card,
.about-value-card {
  position: relative;
  padding: 42px 34px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.about-feature-card__number,
.about-value-card > span {
  display: block;
  margin-bottom: 50px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.about-value-card h3 {
  font-size: 1.35rem;
}

.about-value-card p,
.about-feature-card p {
  color: var(--muted);
}

.about-area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 30px;
  margin: 28px 0 36px;
  padding-left: 1.2em;
}

.about-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.about-reason {
  padding: 32px;
  background: var(--ink);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.about-reason i {
  display: block;
  margin-bottom: 35px;
  font-size: 1.3rem;
}

.about-reason p {
  color: #b9c5ca;
}

.about-final-cta {
  text-align: center;
}

.about-final-cta .container {
  max-width: 900px;
}

.about-final-cta h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.about-final-cta .button-row {
  justify-content: center;
}

.about-flex:not(.about-flex--image_right):not(.about-flex--image_left) > .container > .content {
  max-width: 780px;
  margin-bottom: 55px;
}

.about-flex--centered_cta {
  text-align: center;
}

.about-flex--centered_cta > .container > .content {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.about-flex--centered_cta .button-row {
  justify-content: center;
}

.about-flex--dark_list .eyebrow,
.about-flex--dark_cards .eyebrow {
  color: #8fb5f5;
}

@media (max-width: 1100px) {
  .about-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-service-list,
  .about-reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Thank You page */
.thank-you-page {
  padding-bottom: 100px;
}

.thank-you-hero {
  padding: clamp(80px, 11vw, 150px) 0 clamp(70px, 9vw, 120px);
  background: linear-gradient(135deg, rgba(66, 116, 201, 0.08), transparent 55%), var(--cream);
  text-align: center;
}

.thank-you-hero__inner {
  display: flex;
  max-width: 900px;
  flex-direction: column;
  align-items: center;
}

.thank-you-confirmation {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(66, 116, 201, 0.28);
}

.thank-you-confirmation span {
  width: 31px;
  height: 17px;
  border-bottom: 4px solid #fff;
  border-left: 4px solid #fff;
  transform: translateY(-3px) rotate(-45deg);
}

.thank-you-hero .eyebrow {
  margin-bottom: 14px;
}

.thank-you-hero h1 {
  max-width: 820px;
  margin-bottom: 25px;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
}

.thank-you-hero__intro {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.thank-you-hero__actions {
  justify-content: center;
  margin-top: 35px;
}

.thank-you-next h2 {
  margin-bottom: 38px;
  text-align: center;
}

.thank-you-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  counter-reset: none;
}

.thank-you-step {
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 35px rgba(16, 42, 56, 0.07);
}

.thank-you-step__number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 23px;
  place-items: center;
  border-radius: 50%;
  background: rgba(66, 116, 201, 0.12);
  color: var(--blue);
  font-weight: 800;
}

.thank-you-step h3 {
  margin-bottom: 14px;
}

.thank-you-step .content {
  color: var(--muted);
}

.thank-you-urgent {
  display: grid;
  padding: clamp(36px, 6vw, 70px);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  background: var(--ink);
  color: #fff;
}

.thank-you-urgent__content {
  max-width: 760px;
}

.thank-you-urgent h2 {
  margin-bottom: 16px;
  color: #fff;
}

.thank-you-urgent p {
  color: #dbe5e9;
}

@media (max-width: 760px) {
  .thank-you-page {
    padding-bottom: 60px;
  }
  .thank-you-hero {
    padding: 65px 0 70px;
  }
  .thank-you-confirmation {
    width: 64px;
    height: 64px;
  }
  .thank-you-steps {
    grid-template-columns: 1fr;
  }
  .thank-you-step {
    padding: 26px;
  }
  .thank-you-urgent {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
@media (max-width: 760px) {
  .about-split,
  .about-card-grid,
  .about-card-grid--two,
  .about-service-list,
  .about-reason-grid {
    grid-template-columns: 1fr;
  }
  .about-split {
    gap: 35px;
  }
  .about-split--reverse .about-split__content,
  .about-split--reverse .about-split__image {
    order: initial;
  }
  .about-split__image,
  .about-split__image img {
    min-height: 330px;
  }
  .about-feature-card,
  .about-value-card,
  .about-reason {
    padding: 30px 24px;
  }
}
@media (max-width: 1100px) {
  .primary-nav,
  .header-phone,
  .header-quote {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    padding: 10px 0;
    border: 0;
    background: none;
    color: var(--ink);
    font-weight: 700;
  }
  .mobile-menu {
    padding: 20px 24px 30px;
    background: #fff;
    border-top: 1px solid var(--line);
  }
  .mobile-menu.is-open {
    display: block;
  }
  .mobile-menu nav ul {
    display: block;
  }
  .mobile-menu li {
    border-bottom: 1px solid var(--line);
  }
  .mobile-menu nav a {
    display: block;
    padding: 14px 0;
    font-weight: 700;
    transition: color 0.2s ease, padding-left 0.2s ease;
  }
  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus-visible {
    padding-left: 6px;
    color: var(--blue);
  }
  .mobile-menu .button {
    margin-top: 20px;
  }
  .plumb-hero__grid {
    grid-template-columns: 1fr;
  }
  .plumb-hero__content {
    padding: 80px 0;
  }
  .plumb-hero__visual {
    min-height: 520px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .services-section .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .why-us-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-list article {
    grid-template-columns: 80px 1fr;
  }
  .service-list .button {
    grid-column: 2;
  }
  .site-footer__grid {
    gap: 5%;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(100% - 32px, var(--max));
  }
  .utility-bar span {
    display: none;
  }
  .utility-bar .container {
    justify-content: center;
  }
  .site-header__inner {
    height: 70px;
  }
  .site-brand__mark {
    width: 36px;
    height: 36px;
  }
  .section {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .section--faq .faq-accordion {
    grid-template-columns: 1fr;
  }
  .plumb-hero__grid {
    min-height: auto;
  }
  .plumb-hero__content {
    padding: 65px 0;
  }
  .plumb-hero h1 {
    font-size: 3.15rem;
  }
  .plumb-hero__visual {
    min-height: 430px;
  }
  .trust-strip .container {
    grid-template-columns: 1fr 1fr;
  }
  .trust-strip span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }
  .service-grid,
  .content-split,
  .address-block,
  .detail-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .services-section .service-grid {
    grid-template-columns: 1fr;
  }
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  .content-image-list {
    gap: 52px;
  }
  .content-image-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .content-image-row--reverse .content-image-row__content,
  .content-image-row--reverse .content-image-row__image {
    order: initial;
  }
  .content-image-row__content ul {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 360px;
    padding: 30px;
  }
  .split-feature__grid {
    grid-template-columns: 1fr;
  }
  .split-feature__panel {
    padding: 75px 0 20px;
  }
  .steps {
    padding: 20px 0 75px;
    border-left: 0;
  }
  .area-callout {
    grid-template-columns: 1fr;
  }
  .inner-hero {
    padding: 75px 0;
  }
  .inner-hero h1 {
    font-size: 3rem;
  }
  .values .container,
  .process-grid {
    grid-template-columns: 1fr;
  }
  .values article,
  .values article:last-child {
    padding: 48px 25px;
    border-right: 1px solid #d4d1ca;
    border-bottom: 1px solid #d4d1ca;
  }
  .service-list article {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .service-list__index {
    font-size: 2.8rem;
  }
  .service-list .button {
    grid-column: 1;
    justify-self: start;
  }
  .location-card,
  .pre-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form__row--full {
    grid-column: auto;
  }
  .quote-panel {
    padding: 28px 20px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .pre-footer .button-row {
    align-items: flex-start;
    flex-direction: column;
  }
  .pre-footer {
    padding: 60px 0;
  }
  .process-grid p {
    margin-top: 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.site-brand__image {
  display: block;
  width: auto;
  max-width: 190px;
  height: 52px;
  object-fit: contain;
}

.contact-map {
  padding-top: 90px;
  background: var(--cream);
}

.contact-map__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 42px;
}

.contact-map__heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  background: #d8dfdf;
}

@media (max-width: 760px) {
  .contact-map {
    padding-top: 65px;
  }
  .contact-map__heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .contact-map iframe {
    height: 380px;
  }
}
.area-card-grid {
  display: grid;
  gap: 24px;
}

.area-card-grid .location-card {
  padding: 45px;
  background: #fff;
  border: 1px solid var(--line);
}

.entry-content {
  max-width: 900px;
}

.entry-content > *:last-child {
  margin-bottom: 0;
}

.primary-page-content {
  max-width: 980px;
  padding-top: 80px;
  padding-bottom: 80px;
  font-size: 1.08rem;
}

.primary-page-content h2,
.primary-page-content h3 {
  margin-top: 1.6em;
}

.primary-page-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-thickness 0.2s ease;
}

.primary-page-content a:hover {
  color: var(--ink);
  text-decoration-thickness: 2px;
}

.primary-page-content ul,
.primary-page-content ol {
  padding-left: 1.3em;
}

.sitemap-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8%;
}

.sitemap-group h2 {
  margin-bottom: 32px;
}

.sitemap-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.sitemap-list li {
  border-bottom: 1px solid var(--line);
}

.sitemap-list a {
  display: inline-block;
  padding: 15px 0;
  font-weight: 650;
}

.sitemap-list a:hover {
  color: var(--blue);
}

.sitemap-list .children {
  margin: 0 0 12px 22px;
  padding-left: 18px;
  border-left: 2px solid var(--blue);
  list-style: none;
}

.sitemap-list--posts li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sitemap-list time {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer__sitemap {
  display: inline-block;
  margin-top: 13px;
  color: #aebec5;
}

.site-footer__sitemap:hover {
  color: #fff;
}

@media (max-width: 760px) {
  .sitemap-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }
  .sitemap-list--posts li {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
}
.mobile-action-dock {
  display: none;
}

@media (max-width: 1100px) {
  body {
    padding-bottom: 72px;
  }
  .mobile-action-dock {
    position: fixed;
    z-index: 100;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 72px;
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--ink);
    box-shadow: 0 -8px 30px rgba(8, 29, 39, 0.2);
  }
  .mobile-action-dock__item {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    border: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .mobile-action-dock__item:last-child {
    border-right: 0;
  }
  .mobile-action-dock__item:hover,
  .mobile-action-dock__item:focus,
  .mobile-action-dock__item[aria-expanded=true] {
    background: var(--blue);
    color: #fff;
    outline: 0;
  }
  .mobile-action-dock__item:focus-visible {
    outline: 3px solid #fff;
    outline-offset: -4px;
  }
  .mobile-action-dock svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  .site-header__actions .menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .mobile-menu {
    position: fixed;
    z-index: 95;
    top: 104px;
    right: 0;
    bottom: 72px;
    left: 0;
    max-height: none;
    overflow-y: auto;
  }
  .has-mobile-menu-open {
    overflow: hidden;
  }
}
@media (max-width: 760px) {
  .mobile-menu {
    top: 104px;
  }
}
.mobile-menu .sub-menu[hidden] {
  display: none !important;
}

.faq-accordion__panel {
  overflow: hidden;
  transform-origin: top;
  will-change: height, opacity, transform;
}

.service-card--has-image {
  padding: 0;
}

.service-card__image {
  display: block;
  height: 280px;
  overflow: hidden;
  background: var(--cream);
}

.service-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.service-card--has-image .service-card__number {
  z-index: 2;
  top: 300px;
  color: #dfe5e5;
}

.service-card__body {
  padding: 20px;
  box-sizing: border-box;
}

.service-card:not(.service-card--has-image) .service-card__body {
  padding: 0;
}

@media (max-width: 760px) {
  .service-card__image {
    height: 230px;
  }
  .service-card--has-image .service-card__number {
    top: 246px;
  }
}
@media (max-width: 1100px) {
  .site-header .menu-toggle {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
  .mobile-menu {
    top: 118px;
  }
}
@media (max-width: 760px) {
  .mobile-menu {
    top: 104px;
  }
}
@media (max-width: 1100px) {
  .site-header__inner {
    position: relative;
    justify-content: center;
  }
  .site-header__inner > .site-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    transform: translate(-50%, -50%);
  }
  .site-header__inner > .site-brand .site-brand__image {
    max-width: min(190px, 55vw);
  }
}
@media (max-width: 760px) {
  .utility-bar {
    display: none;
  }
  .mobile-menu {
    top: 70px;
  }
}
@media (max-width: 1100px) {
  .mobile-menu {
    position: fixed;
    z-index: 99;
    top: 0 !important;
    right: 0;
    bottom: 72px;
    left: 0;
    width: 100%;
    padding: clamp(32px, 8vh, 72px) 24px 36px;
    background: #fff;
    overscroll-behavior: contain;
  }
  .mobile-menu:before {
    content: "";
    position: fixed;
    z-index: -1;
    inset: 0 0 72px;
    background: #fff;
  }
  .mobile-menu nav {
    width: min(100%, 680px);
    margin-inline: auto;
  }
  .mobile-menu > .button {
    display: flex;
    width: min(100%, 680px);
    margin: 24px auto 0;
  }
  .has-mobile-menu-open body {
    overflow: hidden;
  }
}
.ninja-contact-form {
  display: block;
}

.ninja-contact-form .nf-form-title {
  display: none;
}

.ninja-contact-form nf-fields-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.ninja-contact-form nf-field {
  display: block;
  min-width: 0;
}

.ninja-contact-form nf-field:has(.geni-full),
.ninja-contact-form .geni-full {
  grid-column: 1/-1;
}

.ninja-contact-form .nf-field-container {
  margin: 0;
}

.ninja-contact-form .nf-field-label {
  margin-bottom: 8px;
}

.ninja-contact-form .nf-field-label label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ninja-contact-form .ninja-forms-req-symbol {
  color: var(--blue);
}

.ninja-contact-form .nf-field-element input:not([type=button]):not([type=submit]),
.ninja-contact-form .nf-field-element select,
.ninja-contact-form .nf-field-element textarea {
  width: 100%;
  height: auto;
  padding: 13px 14px;
  border: 1px solid #bdc8c8;
  border-radius: 2px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.ninja-contact-form .nf-field-element textarea {
  min-height: 155px;
  resize: vertical;
}

.ninja-contact-form .nf-field-element input:focus,
.ninja-contact-form .nf-field-element select:focus,
.ninja-contact-form .nf-field-element textarea:focus {
  border-color: var(--blue);
  outline: 2px solid var(--blue);
  outline-offset: 1px;
}

.ninja-contact-form .nf-field-element input[type=button],
.ninja-contact-form .nf-field-element input[type=submit] {
  min-height: 52px;
  padding: 13px 24px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ninja-contact-form .nf-field-element input[type=button]:hover,
.ninja-contact-form .nf-field-element input[type=submit]:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 42, 56, 0.2);
  transform: translateY(-2px);
}

.ninja-contact-form .nf-field-element input[type=button]:focus-visible,
.ninja-contact-form .nf-field-element input[type=submit]:focus-visible {
  outline: 3px solid #f3b63f;
  outline-offset: 3px;
}

.ninja-contact-form .nf-field-element input[type=button]:active,
.ninja-contact-form .nf-field-element input[type=submit]:active {
  box-shadow: none;
  transform: translateY(0);
}

.ninja-contact-form .nf-error-msg,
.ninja-contact-form .ninja-forms-field-error {
  color: #a32020;
  font-size: 0.78rem;
}

.ninja-contact-form .nf-error .ninja-forms-field {
  border-color: #a32020;
}

.ninja-contact-form .nf-response-msg {
  margin-bottom: 24px;
  padding: 20px;
  border-left: 4px solid var(--blue);
  background: #fff;
}

.ninja-contact-form .nf-form-fields-required {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  .ninja-contact-form nf-fields-wrap {
    grid-template-columns: 1fr;
  }
  .ninja-contact-form nf-field:has(.geni-half),
  .ninja-contact-form .geni-half {
    grid-column: 1;
  }
}
.home-banner {
  position: relative;
  width: 100%;
  height: clamp(620px, 100vh - 118px, 860px);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.home-banner__slide {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  background-color: var(--ink);
  background-position: center;
  background-size: cover;
}

.home-banner__slide:not(.has-image):after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -35vh;
  width: min(58vw, 760px);
  height: min(58vw, 760px);
  border: 110px solid rgba(66, 116, 201, 0.4);
  border-radius: 50% 50% 50% 12px;
  transform: rotate(-22deg);
}

.home-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 29, 39, 0.94) 0%, rgba(8, 29, 39, 0.78) 46%, rgba(8, 29, 39, 0.25) 100%);
}

.home-banner__content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 115px;
}

.home-banner__title {
  max-width: 900px;
  margin-bottom: 25px;
  color: #fff;
  font-size: clamp(3.2rem, 7.4vw, 6.8rem);
}

.home-banner__subtitle {
  max-width: 720px;
  margin-bottom: 34px;
  color: #d3dde1;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.home-banner__controls {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 35px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-banner__controls .swiper-pagination {
  position: static;
  display: flex;
  width: auto;
  align-items: center;
  gap: 8px;
}

.home-banner__controls .swiper-pagination-bullet {
  width: 32px;
  height: 3px;
  margin: 0 !important;
  border-radius: 0;
  background: #fff;
  opacity: 0.45;
}

.home-banner__controls .swiper-pagination-bullet-active {
  background: var(--blue);
  opacity: 1;
}

.home-banner__controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-banner__controls button:hover {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  transform: scale(1.06);
}

.home-banner__controls button:focus-visible {
  outline: 3px solid #f3b63f;
  outline-offset: 3px;
}

@media (max-width: 760px) {
  .home-banner {
    height: 660px;
  }
  .home-banner__overlay {
    background: rgba(8, 29, 39, 0.76);
  }
  .home-banner__content {
    padding-top: 65px;
  }
  .home-banner__title {
    font-size: 3.25rem;
  }
  .home-banner__controls {
    bottom: 24px;
  }
}
@media (min-width: 1101px) {
  .primary-nav .menu > li {
    position: relative;
  }
  .primary-nav .menu > li > a {
    position: relative;
    display: flex;
    min-height: 84px;
    align-items: center;
    gap: 7px;
  }
  .primary-nav .menu > li > a:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 22px;
    left: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.22s ease;
  }
  .primary-nav .menu > li:hover > a:after,
  .primary-nav .menu > li:focus-within > a:after,
  .primary-nav .current-menu-item > a:after,
  .primary-nav .current-menu-ancestor > a:after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .primary-nav .menu-item-has-children > a:before {
    content: "";
    order: 2;
    width: 6px;
    height: 6px;
    margin-top: -4px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.2s;
  }
  .primary-nav .menu-item-has-children:hover > a:before,
  .primary-nav .menu-item-has-children:focus-within > a:before {
    margin-top: 3px;
    transform: rotate(225deg);
  }
  .primary-nav .sub-menu {
    position: absolute;
    z-index: 80;
    top: calc(100% - 10px);
    left: -24px;
    display: block;
    min-width: 275px;
    padding: 14px 0;
    border-top: 3px solid var(--blue);
    background: #fff;
    box-shadow: 0 18px 45px rgba(16, 42, 56, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  }
  .primary-nav .sub-menu:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 12px;
  }
  .primary-nav li:hover > .sub-menu,
  .primary-nav li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .primary-nav .sub-menu li {
    position: relative;
  }
  .primary-nav .sub-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--ink);
    font-size: 0.84rem;
    line-height: 1.4;
    white-space: nowrap;
    transition: padding-left 0.2s, color 0.2s, background-color 0.2s;
  }
  .primary-nav .sub-menu a:hover,
  .primary-nav .sub-menu a:focus,
  .primary-nav .sub-menu .current-menu-item > a {
    padding-left: 30px;
    background: var(--cream);
    color: var(--blue);
    outline: none;
  }
  .primary-nav .sub-menu .menu-item-has-children > a:after {
    content: "→";
    float: right;
    margin-left: 18px;
  }
  .primary-nav .sub-menu .sub-menu {
    top: -3px;
    left: calc(100% - 4px);
  }
}
@media (max-width: 1100px) {
  .mobile-menu .menu-item-has-children {
    position: relative;
  }
  .mobile-menu .menu-item-has-children > a {
    padding-right: 55px;
  }
  .mobile-submenu-toggle {
    position: absolute;
    top: 5px;
    right: 0;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--ink);
  }
  .mobile-submenu-toggle span,
  .mobile-submenu-toggle span:after {
    display: block;
    width: 14px;
    height: 2px;
    background: currentColor;
    content: "";
  }
  .mobile-submenu-toggle span:after {
    transform: rotate(90deg);
    transition: transform 0.2s;
  }
  .mobile-submenu-toggle[aria-expanded=true] span:after {
    transform: rotate(0);
  }
  .mobile-menu .sub-menu {
    margin: 0 0 8px 16px;
    padding-left: 16px;
    border-left: 2px solid var(--blue);
  }
  .mobile-menu .sub-menu a {
    padding: 10px 0;
    color: var(--muted);
    font-size: 0.9rem;
  }
  .mobile-menu .sub-menu li {
    border-bottom: 0;
  }
}
