﻿:root {
  --ink: #000000;
  --muted: #000000;
  --line: #d8d8d8;
  --paper: #ffffff;
  --soft: #ffffff;
  --charcoal: #00529b;
  --accent: #f78f1e;
  --accent-dark: #f68b1e;
  --container: 1180px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

p {
  margin: 0 0 18px;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.18;
  font-weight: 700;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 30;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.header-inner {
  width: min(100% - 40px, 1280px);
  min-height: 96px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 418px) 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand img {
  width: min(100%, 418px);
  height: auto;
}

.main-nav {
  justify-self: end;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 31px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.main-nav a {
  color: #111;
  font-size: 15px;
  font-weight: 600;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--accent-dark);
}

.call-pill {
  display: grid;
  grid-template-columns: 44px auto;
  gap: 10px;
  align-items: center;
  min-width: 196px;
  color: #fff;
  background: var(--charcoal);
  padding: 13px 18px;
  border-radius: 0;
}

.call-pill svg {
  width: 36px;
  height: 36px;
  fill: var(--accent);
}

.call-pill span {
  display: block;
  color: #d7d7d7;
  font-size: 12px;
  line-height: 1.2;
}

.call-pill strong {
  display: block;
  margin-top: 3px;
  color: #fff;
  font-size: 17px;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
  position: absolute;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle::before {
  transform: translateY(-7px);
}

.nav-toggle::after {
  transform: translateY(7px);
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(360px, 47%) 1fr;
  min-height: 680px;
  background: var(--soft);
}

.hero-copy {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 72px 7vw 72px 40px;
}

.hero-copy > div {
  max-width: 540px;
}

.eyebrow {
  color: var(--accent-dark);
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 10px;
}

.hero h1 {
  max-width: 510px;
  font-size: 56px;
}

.hero p {
  max-width: 520px;
  margin-top: 26px;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 28px;
  margin-top: 15px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--accent);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button.dark {
  background: var(--charcoal);
}

.button.dark:hover {
  background: #000;
}

.hero-media {
  min-height: 680px;
  background-color: #ddd;
  background-position: center;
  background-size: cover;
  transition: background-image 500ms ease;
}

.section {
  padding: 92px 0;
}

.section.soft {
  background: var(--soft);
}

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

.section-title {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1fr;
  gap: 60px;
  align-items: start;
}

.section-title.center-stack {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.section-title.center-stack p {
  max-width: 820px;
  margin: 24px auto 0;
}

.section-title h2 {
  font-size: 42px;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 62px;
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media img {
  width: 100%;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.split-copy h2 {
  margin-bottom: 24px;
  font-size: 40px;
}

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

.text-panel {
  max-width: 980px;
}

.text-panel h2 {
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 40px;
}

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

.vision-band {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 96px 0;
  background: url("../assets/archive/wp-content/uploads/2024/03/bg5656.jpg") center / cover no-repeat;
}

.vision-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.12);
}

.vision-band .container {
  position: relative;
  z-index: 1;
}

.vision-card {
  width: min(100%, 600px);
  padding: 70px 58px;
  color: #fff;
  background: rgba(0, 82, 155, 0.92);
}

.vision-card h2 {
  margin-bottom: 24px;
  color: #fff;
  font-size: 40px;
}

.vision-card p {
  color: #fff;
}

.vision-card .button {
  color: #fff;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.service-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: #fff;
  background: #222;
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 260ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.66));
}

.service-card span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
}

.service-card:hover img {
  transform: scale(1.04);
}

.gallery-grid {
  columns: 4 230px;
  column-gap: 10px;
}

.gallery-heading {
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 42px;
  text-align: center;
}

.gallery-item {
  break-inside: avoid;
  display: block;
  margin: 0 0 10px;
  overflow: hidden;
  background: #ddd;
}

.gallery-item img {
  width: 100%;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.78);
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0 0 34px;
}

.gallery-tab {
  min-height: 40px;
  padding: 8px 17px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.gallery-tab.is-active,
.gallery-tab:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.hidden {
  display: none !important;
}

.cta {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 47%);
  gap: 70px;
  align-items: center;
}

.cta h2 {
  font-size: 40px;
  margin-bottom: 24px;
}

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

.cta-phone {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 24px 0 8px;
}

.cta-phone svg {
  width: 28px;
  height: 28px;
  fill: var(--accent);
}

.cta-phone strong {
  font-size: 25px;
}

.cta img {
  width: 100%;
}

.page-hero {
  position: relative;
  min-height: 310px;
  display: flex;
  align-items: center;
  color: #fff;
  background: var(--primary);
}

.page-hero h1 {
  font-size: 54px;
}

.page-hero p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
}

.lead-panel {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.lead-panel h2 {
  margin-bottom: 24px;
  font-size: 42px;
}

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

.service-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 34px 0 0;
}

.service-nav a {
  padding: 10px 16px;
  color: #fff;
  background: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.content-block {
  display: grid;
  grid-template-columns: minmax(270px, 38%) 1fr;
  gap: 58px;
  align-items: start;
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.content-block:first-child {
  border-top: 0;
}

.content-block h2 {
  margin-bottom: 20px;
  font-size: 37px;
}

.content-block h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.content-block p,
.content-block li {
  color: var(--muted);
}

.content-block ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.block-image {
  position: sticky;
  top: 122px;
}

.block-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.supplier {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 24px;
  background: #fff;
}

.supplier h3 {
  margin-top: 0;
}

.service-page {
  padding-top: 70px;
}

.service-section {
  padding: 0 0 84px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 84px;
}

.service-section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.service-copy {
  max-width: 980px;
  margin: 34px auto 0;
}

.service-copy h2 {
  color: var(--primary);
  font-size: 40px;
  text-align: center;
}

.service-copy h3 {
  margin: 28px 0 10px;
  color: var(--primary);
  font-size: 24px;
}

.service-copy p,
.service-copy li {
  color: #000;
}

.service-wide-image {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.service-copy + .service-wide-image,
.service-copy + .service-image-row {
  margin-top: 36px;
}

.service-image-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 36px 0;
}

.service-image-row img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.supplier img {
  width: auto;
  max-width: 190px;
  max-height: 72px;
  margin: 0 0 18px;
  object-fit: contain;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  align-items: start;
}

.contact-title {
  color: var(--primary);
  font-size: 48px;
  text-align: center;
}

.contact-heading {
  margin: 34px 0 30px;
  color: var(--primary);
  font-size: 40px;
}

.contact-card {
  padding: 34px;
  color: #fff;
  background: var(--charcoal);
}

.contact-card h2 {
  margin-bottom: 24px;
  font-size: 30px;
}

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

.contact-line {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: center;
}

.contact-line svg {
  width: 24px;
  height: 24px;
  fill: var(--accent);
}

.contact-line span {
  color: #ececec;
  font-weight: 600;
}

.contact-image {
  width: min(100%, 860px);
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
}

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

.site-footer {
  color: #fff;
  background: #00529b;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 0.65fr 0.75fr 1fr;
  gap: 38px;
  padding: 74px 0 54px;
}

.footer-logo {
  width: min(100%, 360px);
  margin-bottom: 24px;
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: #ffffff;
}

.site-footer h2 {
  margin-bottom: 24px;
  font-size: 25px;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.socials a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.footer-bottom {
  border-top: 1px solid #b2b2b2;
  padding: 18px 0;
  color: #ffffff;
  font-size: 14px;
  text-align: center;
}

.image-fallback {
  background: linear-gradient(135deg, #343434, #d8d0c2);
}

@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: minmax(220px, 360px) auto auto;
    min-height: 84px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 84px;
    display: none;
    justify-self: stretch;
    padding: 18px 30px 26px;
    background: #fff;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.12);
  }

  .nav-open .main-nav {
    display: block;
  }

  .main-nav ul {
    display: grid;
    gap: 12px;
  }

  .call-pill {
    display: none;
  }

  .hero,
  .split,
  .section-title,
  .cta,
  .content-block,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    justify-content: flex-start;
    padding: 70px 40px;
  }

  .hero-media {
    min-height: 440px;
  }

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

  .service-image-row {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-media {
    order: initial;
  }

  .block-image {
    position: static;
  }
}

@media (max-width: 720px) {
  .container,
  .header-inner {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    grid-template-columns: minmax(180px, 1fr) 44px;
    gap: 12px;
  }

  .brand img {
    width: min(100%, 290px);
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding: 54px 22px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 40px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title h2,
  .split-copy h2,
  .cta h2,
  .lead-panel h2 {
    font-size: 32px;
  }

  .service-strip,
  .supplier-grid,
  .service-image-row,
  .form-row {
    grid-template-columns: 1fr;
  }

  .vision-card {
    padding: 44px 28px;
  }

  .service-copy h2,
  .vision-card h2 {
    font-size: 32px;
  }

  .service-image-row img {
    height: 280px;
  }

  .service-card,
  .service-card img {
    min-height: 320px;
  }

  .content-block {
    padding: 54px 0;
  }

  .footer-main {
    gap: 36px;
  }
}

/* Archived Probuilt palette: blue #00529B, orange #F78F1E, white, black. */
:root {
  --ink: #000000;
  --muted: #000000;
  --line: #d8d8d8;
  --soft: #ffffff;
  --charcoal: #00529b;
  --primary: #00529b;
  --primary-glass: rgba(0, 82, 155, 0.92);
  --accent: #f78f1e;
  --accent-dark: #f68b1e;
}

.site-header {
  background: #ffffff;
}

.main-nav a {
  color: #000000;
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a.is-active {
  color: #000000;
}

.call-pill {
  grid-template-columns: 58px auto;
  gap: 22px;
  min-width: 250px;
  color: #000000;
  background: #ffffff;
  padding: 8px 0 8px 18px;
}

.call-pill svg {
  width: 53px;
  height: 54px;
  fill: var(--accent);
}

.call-pill span {
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.call-pill strong {
  color: var(--primary);
  font-size: 24px;
  font-weight: 300;
  text-transform: none;
}

.nav-toggle {
  border-color: var(--accent);
  background: var(--accent);
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  background: #ffffff;
}

.hero {
  grid-template-columns: minmax(360px, 51%) 1fr;
  min-height: 670px;
  padding-right: 8.6vw;
  background: #ffffff;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding: 93px 0;
}

.hero-copy > div {
  max-width: 560px;
  margin-right: -190px;
  padding: 95px 55px;
  background: var(--primary-glass);
}

.eyebrow {
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.hero h1 {
  color: #ffffff;
  font-size: 40px;
  line-height: 56px;
}

.hero p {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.button,
.button.dark {
  color: #000000;
  background: transparent;
  border: 3px solid var(--accent);
  font-size: 18px;
  font-weight: 600;
}

.hero .button {
  color: #ffffff;
}

.button:hover,
.button.dark:hover {
  color: #ffffff;
  background: var(--accent);
}

.section-title h2,
.split-copy h2,
.cta h2,
.lead-panel h2,
.content-block h2,
.content-block h3,
.supplier h3,
.cta-phone strong {
  color: var(--primary);
}

.section-title p,
.split-copy p,
.cta p,
.lead-panel p,
.content-block p,
.content-block li,
label {
  color: #000000;
}

.page-hero {
  background: var(--primary);
}

.service-nav a,
.contact-card,
.site-footer {
  background: var(--primary);
}

.service-nav a:hover {
  background: var(--accent);
}

.gallery-tab {
  color: #000000;
  border-color: var(--line);
}

.gallery-tab.is-active,
.gallery-tab:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.contact-line span,
.site-footer p,
.site-footer li,
.site-footer a,
.footer-bottom {
  color: #ffffff;
}

.socials a {
  border-color: rgba(255, 255, 255, 0.45);
}

.socials svg {
  fill: var(--accent);
}

.footer-bottom {
  border-top-color: #b2b2b2;
}

@media (max-width: 1024px) {
  .hero {
    padding-right: 0;
  }

  .hero-copy {
    padding: 70px 40px;
  }

  .hero-copy > div {
    margin-right: 0;
  }
}

@media (max-width: 720px) {
  .main-nav a {
    font-size: 16px;
  }

  .hero-copy {
    padding: 54px 22px;
  }

  .hero-copy > div {
    padding: 54px 24px;
  }
}


