:root {
  --navy: #17263f;
  --red: #e31013;
  --red-dark: #bd0d10;
  --ink: #111827;
  --muted: #5d6978;
  --soft: #f5f7fb;
  --line: #e4e8f0;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 38, 63, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
  overflow-wrap: break-word;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(23, 38, 63, 0.08);
  transition: min-height 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  box-shadow: 0 12px 36px rgba(23, 38, 63, 0.12);
}

.brand img {
  width: min(250px, 52vw);
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 32px);
  align-items: center;
}

.site-nav a {
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
}

.nav-drop-button {
  padding: 0;
  color: var(--navy);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-drop-button:hover,
.nav-drop-button:focus-visible {
  color: var(--red);
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 80;
  overflow: hidden;
  min-width: 190px;
  background: rgba(245, 246, 248, 0.96);
  border: 1px solid rgba(23, 38, 63, 0.22);
  box-shadow: 0 14px 36px rgba(23, 38, 63, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: block;
  padding: 13px 16px;
  color: var(--navy);
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: center;
  text-transform: none;
  border-bottom: 1px solid rgba(23, 38, 63, 0.12);
}

.nav-menu a:last-child {
  border-bottom: 0;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--navy);
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--navy);
  cursor: pointer;
  border-radius: 0;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 150px 0 90px;
  color: var(--white);
  background: url("Images/concrete-services-MS-International-300x169.jpeg")
    center / cover no-repeat;
}

.home-hero {
  position: relative;
  display: grid;
  min-height: clamp(560px, 72vw, 760px);
  margin-top: 88px;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.home-hero__slider,
.home-hero__slide {
  position: absolute;
  inset: 0;
}

.home-hero__slide {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 900ms ease,
    transform 6000ms ease;
}

.home-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.48);
}

.home-hero__content {
  position: relative;
  z-index: 2;
}

.home-hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(2.578rem, 4.688vw, 3.516rem);
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.home-hero h1 span {
  color: var(--red);
}

.home-intro {
  padding: clamp(70px, 8vw, 110px) 0;
  background: #f7f7f7;
}

.home-intro__inner {
  max-width: 1120px;
}

.home-intro h2 {
  margin-bottom: 30px;
  color: var(--navy);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 800;
  text-align: center;
}

.home-intro p {
  max-width: 1060px;
  margin-inline: auto;
  color: #000;
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.42;
  text-align: center;
}

.service-hero {
  margin-top: 0;
  background: var(--white);
}

.service-hero > img {
  display: block;
  width: 100%;
  height: clamp(285px, 42vw, 520px);
  aspect-ratio: 16 / 6;
  object-fit: cover;
  object-position: center top;
}

.service-hero .hero__overlay,
.service-hero .hero__content {
  display: none;
}

.hero__overlay,
.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 15, 28, 0.86), rgba(9, 15, 28, 0.38));
}

.hero__content,
.contact-grid {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section--navy .section-kicker,
.cta .section-kicker {
  color: var(--white);
}

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

h1,
h2,
h3 {
  font-family: "Poppins", "Open Sans", Arial, sans-serif;
}

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(2.55rem, 6vw, 5rem);
  line-height: 1.04;
  font-weight: 800;
}

h1 span,
h2 span {
  color: var(--red);
}

.hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 32px;
  font-size: clamp(1.02rem, 2vw, 1.2rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.4rem;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--red);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-2px);
}

.button--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.page-first-section,
.page-service-hero {
  margin-top: 88px;
}

.section--navy {
  color: var(--white);
  background: var(--navy);
}

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

.split,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.section h2,
.cta h2 {
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.12;
  font-weight: 800;
}

.section--navy h1,
.section--navy h2,
.cta h2 {
  color: var(--white);
}

.contact-page .cta h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.76rem);
  font-weight: 600;
}

.contact-page .cta h2 span {
  color: var(--red);
}

.copy-panel {
  padding: clamp(24px, 4vw, 36px);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--red);
}

.copy-panel strong {
  color: var(--white);
}

.why-choose-section {
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(32px, 7vw, 92px);
  align-items: start;
}

.why-choose-title h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(2.15rem, 4.5vw, 4rem);
  line-height: 1.05;
  font-weight: 800;
}

.why-choose-copy {
  padding-top: 8px;
}

.why-choose-copy p {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.82;
}

.about-redesign {
  padding-bottom: clamp(46px, 7vw, 84px);
  background: var(--white);
}

.about-redesign__header {
  padding: clamp(28px, 5vw, 54px) 0;
  background: var(--navy);
}

.about-redesign__header h1 {
  margin: 0;
  max-width: none;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.about-redesign__copy {
  max-width: 970px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) 0 clamp(28px, 5vw, 48px);
  text-align: center;
}

.about-redesign__copy p {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.64;
}

.about-image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.about-image-strip img {
  width: 100%;
  height: clamp(170px, 20vw, 255px);
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(9, 15, 28, 0.12);
}

.image-band img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
}

.statement-grid,
.value-grid,
.service-grid {
  display: grid;
  gap: 26px;
}

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

.statement-card,
.value-card,
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(23, 38, 63, 0.08);
}

.statement-card {
  padding: clamp(24px, 4vw, 36px);
}

.statement-card h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.statement-card p:last-child,
.value-card p:last-child,
.service-card p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.section-kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
}

.how-we-show-heading {
  font-weight: 600;
}

.how-we-show-heading span {
  color: var(--red);
}

.work-with-subheading {
  max-width: 640px;
  margin-top: -4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  font-weight: 400;
}

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

.value-card {
  padding: 30px;
}

.value-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--white);
  background: var(--red);
  border-radius: 999px;
  font-weight: 800;
}

.value-card h3,
.service-card h3 {
  margin-bottom: 10px;
  color: var(--red);
}

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

.services-intro {
  padding-bottom: clamp(28px, 3.6vw, 48px);
  background: var(--white);
}

.services-intro .section-heading {
  max-width: 960px;
  margin-inline: auto;
  text-align: center;
}

.services-intro .section-heading h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-family: "Open Sans", Arial, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.services-intro .section-heading p {
  margin-inline: auto;
  color: var(--navy);
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  line-height: 1.45;
}

.home-services-intro {
  padding-bottom: clamp(10px, 1.5vw, 20px);
}

.home-services-intro + .trusted-section {
  padding-top: clamp(22px, 3vw, 34px);
}

.services-overview {
  padding: clamp(12px, 2vw, 26px) 0 clamp(18px, 2.5vw, 34px);
  background: var(--white);
}

.services-overview__stack {
  display: grid;
  max-width: 1080px;
  gap: clamp(38px, 5.8vw, 66px);
  margin-inline: auto;
}

.services-overview__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 72px);
  align-items: start;
}

.services-overview__item--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.services-overview__item--reverse .services-overview__copy {
  order: 2;
}

.services-overview__copy h2 {
  margin-bottom: 12px;
  color: var(--red);
  font-size: clamp(1rem, 1.65vw, 1.5rem);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.services-overview__copy p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  line-height: 1.32;
  font-weight: 400;
}

.services-overview__copy p + p {
  margin-top: 8px;
}

.services-overview__item img {
  width: 100%;
  height: clamp(220px, 22vw, 290px);
  object-fit: cover;
  box-shadow: none;
}

.service-detail-hero {
  margin-top: 88px;
  background: var(--white);
}

.service-detail-hero img {
  display: block;
  width: 100%;
  height: clamp(300px, 42vw, 560px);
  object-fit: cover;
  object-position: center;
}

.service-detail-intro {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.service-detail-intro h1 {
  margin-inline: auto;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.4vw, 1.98rem);
  font-weight: 400;
  text-transform: uppercase;
}

.service-detail-intro p {
  color: var(--navy);
  font-weight: 400 !important;
  line-height: 1.5;
}

.service-detail-intro--long {
  max-width: 860px;
}

.service-detail-intro--long p {
  color: var(--muted);
  font-weight: 400 !important;
}

.drainage-intro p {
  color: #000;
}

.service-detail-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 34px);
  margin-top: clamp(42px, 6vw, 72px);
}

.service-detail-features--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 860px;
  margin-inline: auto;
}

.service-detail-feature {
  text-align: center;
}

.service-detail-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-detail-feature h2 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-detail-feature p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.section h2.service-work-heading {
  margin: clamp(46px, 7vw, 82px) 0 30px;
  color: var(--navy);
  font-size: clamp(1.05rem, 2.1vw, 1.815rem);
  line-height: 1.12;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.service-page-cta {
  background:
    linear-gradient(rgba(6, 13, 24, 0.72), rgba(6, 13, 24, 0.72)),
    url("images/concrete-services-MS-International-300x169.jpeg") center / cover no-repeat;
}

.service-page-cta .contact-copy {
  max-width: 560px;
}

.seo-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}

.seo-summary-grid article {
  padding: 24px;
  color: var(--white);
  background: var(--navy);
}

.seo-summary-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: "Poppins", "Open Sans", Arial, sans-serif;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
}

.seo-table-wrap {
  overflow-x: auto;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(20, 38, 61, 0.12);
}

.seo-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  color: var(--navy);
}

.seo-table th,
.seo-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(20, 38, 61, 0.12);
  text-align: left;
  vertical-align: top;
}

.seo-table th {
  color: var(--white);
  background: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.seo-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  color: var(--white);
  background: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.seo-pill--good {
  background: #20834a;
}

.seo-pill--warn {
  background: #b7791f;
}

.seo-notes {
  margin-top: 34px;
  padding: 28px;
  background: var(--soft);
}

.seo-notes h2 {
  color: var(--navy);
  font-size: 1.35rem;
}

.seo-notes li + li {
  margin-top: 10px;
}

.service-card {
  overflow: hidden;
  border-radius: 10px;
  scroll-margin-top: 105px;
}

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

.service-card h3,
.service-card p {
  padding-inline: 24px;
}

.service-card h3 {
  padding-top: 24px;
}

.service-card p {
  padding-bottom: 26px;
  color: var(--muted);
}

.service-card__link {
  display: inline-block;
  margin: 0 24px 26px;
}

.work-section {
  padding: clamp(56px, 7vw, 86px) 0;
  background: var(--white);
}

.services-overview + .work-section {
  padding-top: clamp(18px, 2.5vw, 34px);
}

.work-heading {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.work-heading h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(1.05rem, 2.1vw, 1.815rem);
  line-height: 1.12;
  font-weight: 400;
  text-transform: uppercase;
}

.work-heading p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(0.86rem, 1.2vw, 1rem);
  line-height: 1.45;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.work-card {
  overflow: hidden;
  display: block;
  background: transparent;
  color: var(--navy);
  text-align: center;
  text-decoration: none;
}

.work-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.045);
}

.work-caption {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.work-caption strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-weight: 800;
}

.trusted-section {
  padding: clamp(56px, 7vw, 86px) 0;
  background: var(--white);
}

.trusted-heading {
  max-width: 850px;
  margin: 0 auto 42px;
  text-align: center;
}

.trusted-heading h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.1;
  font-weight: 700;
  text-transform: uppercase;
}

.trusted-heading p {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 400;
  line-height: 1.45;
}

.trusted-shell {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
}

.trusted-track {
  overflow: hidden;
  display: flex;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.trusted-loop {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
  min-width: max-content;
  padding-right: clamp(30px, 5vw, 64px);
  animation: trusted-scroll 36s linear infinite;
}

.trusted-track:hover .trusted-loop {
  animation-play-state: paused;
}

.trusted-logo {
  display: grid;
  flex: 0 0 clamp(130px, 14vw, 190px);
  height: 110px;
  place-items: center;
}

.trusted-logo img {
  max-width: 100%;
  max-height: 92px;
  object-fit: contain;
}

.trusted-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: rgba(23, 38, 63, 0.18);
  background: transparent;
  border: 0;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.trusted-arrow:hover,
.trusted-arrow:focus-visible {
  color: rgba(23, 38, 63, 0.42);
  transform: scale(1.05);
}

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

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

.audience-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-list li {
  padding: 15px 18px;
  color: var(--navy);
  background: var(--white);
  border-left: 5px solid var(--red);
  font-weight: 800;
}

.about-hero {
  position: relative;
  min-height: clamp(250px, 36vw, 420px);
  overflow: hidden;
  background: var(--navy);
}

.about-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transform: scale(1.06);
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 15, 28, 0.38);
}

.about-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  align-items: center;
}

.about-hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.08;
}

.about-redesign {
  padding: clamp(56px, 7vw, 86px) 0;
  color: var(--white);
  background: var(--navy);
}

.about-redesign__copy {
  max-width: 1030px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.about-redesign__copy h1,
.about-redesign__copy h2 {
  margin: 0 0 28px;
  max-width: none;
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.about-redesign__copy p {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.48;
}

.about-statements {
  padding: clamp(54px, 7vw, 82px) 0;
  background: var(--white);
}

.about-statements .statement-card {
  padding: clamp(34px, 4.8vw, 52px);
}

.about-statements .statement-card h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.06;
}

.about-image-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.about-image-strip img {
  width: 100%;
  height: clamp(170px, 20vw, 285px);
  object-fit: cover;
  box-shadow: none;
}

.about-image-strip--triple img {
  display: block;
  height: clamp(170px, 20vw, 285px);
}

.about-image-strip--single {
  display: block;
}

.about-image-strip--single img {
  display: block;
  height: auto;
}

.about-values .section-heading {
  max-width: 860px;
}

.about-values .section-heading .section-kicker {
  color: var(--red);
}

.about-values .how-we-show-heading {
  color: var(--navy);
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  line-height: 1.08;
  font-weight: 800;
}

.about-work-with {
  padding-bottom: clamp(60px, 8vw, 96px);
}

.about-work-with h2 {
  color: var(--white);
  font-size: clamp(2.15rem, 4.8vw, 4.45rem);
  line-height: 1.08;
}

.about-work-with .audience-list {
  align-self: center;
}

.about-work-with .audience-list li {
  padding: 18px 22px;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.contact-offices-heading {
  font-size: clamp(1.94rem, 4.56vw, 3.8rem);
}

.office-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(23, 38, 63, 0.08);
}

.map-frame {
  position: relative;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 330px;
  border: 0;
  filter: grayscale(0.6);
}

.map-frame-link {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  padding: 9px 12px;
  color: var(--white);
  background: var(--red);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.map-frame:hover .map-frame-link,
.map-frame-link:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.office-card__body {
  padding: 26px;
}

.office-card__body h3 {
  margin-bottom: 8px;
  color: var(--navy);
}

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

.text-link {
  display: inline-flex;
  margin-top: 8px;
  color: var(--red);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.cta {
  position: relative;
  padding: clamp(80px, 10vw, 128px) 0;
  color: var(--white);
  background: url("Images/MS-International-concrete-300x169.jpeg")
    center / cover no-repeat;
}

.contact-copy p {
  max-width: 620px;
  font-size: 1.06rem;
}

address {
  margin-top: 22px;
  font-style: normal;
}

address a {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-form {
  padding: clamp(24px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

label {
  display: block;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px 15px;
  color: var(--navy);
  font: inherit;
  background: var(--white);
  border: 1px solid #d7dce5;
  border-radius: 5px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(227, 16, 19, 0.2);
  border-color: var(--red);
}

.form-message {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  color: var(--navy);
  background: #eef4ff;
  border-left: 4px solid var(--navy);
}

.form-message.is-error,
.form-message.is-success {
  display: block;
}

.form-message.is-error {
  background: #fff1f1;
  border-left-color: var(--red);
}

.form-message.is-success {
  background: #effaf1;
  border-left-color: #238636;
}

.homepage-contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  min-height: clamp(430px, 52vw, 620px);
  color: var(--white);
  background: var(--navy);
}

.homepage-contact-cta__copy {
  display: flex;
  align-items: center;
  background: var(--navy);
}

.homepage-contact-cta__inner {
  width: min(100%, 520px);
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: clamp(44px, 7vw, 92px) clamp(24px, 5vw, 58px) clamp(44px, 7vw, 92px) 0;
}

.homepage-contact-cta h2 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(2.15rem, 4.2vw, 4rem);
  line-height: 1.08;
  font-weight: 800;
}

.homepage-contact-cta p {
  max-width: 390px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.35;
}

.homepage-contact-cta .button {
  margin-top: 8px;
}

.homepage-contact-cta__form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 6vw, 76px);
  background:
    linear-gradient(rgba(9, 15, 28, 0.08), rgba(9, 15, 28, 0.08)),
    url("Images/Concrete Works-Header.jpg") center / cover no-repeat;
}

.homepage-contact-form {
  width: min(100%, 640px);
}

.homepage-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.homepage-contact-form input,
.homepage-contact-form select,
.homepage-contact-form textarea {
  margin-bottom: 14px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(9, 15, 28, 0.08);
}

.homepage-contact-form textarea {
  min-height: 150px;
}

.homepage-contact-form .button {
  float: right;
  min-height: 48px;
  padding-inline: 24px;
  border-radius: 0;
}

.homepage-contact-form::after {
  display: block;
  clear: both;
  content: "";
}

.services-contact-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 118px) 0;
  color: var(--white);
  background: url("Images/Lets Build Better.jpg") center / cover no-repeat;
}

.services-contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(9, 15, 28, 0.72);
}

.services-contact-cta__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.services-contact-cta h2 {
  margin-bottom: 34px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: 1.05;
  font-weight: 800;
}

.services-contact-cta p {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  line-height: 1.45;
}

.services-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.services-contact-form input,
.services-contact-form select,
.services-contact-form textarea {
  margin-bottom: 18px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
}

.services-contact-form textarea {
  min-height: 190px;
}

.services-contact-form__bottom {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.captcha-check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.captcha-check span {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.captcha-check input {
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 10px;
  text-align: center;
}

.services-contact-form .button {
  min-height: 56px;
  border-radius: 0;
}

.instagram-section {
  padding: clamp(56px, 7vw, 82px) 0;
  background: var(--white);
}

.instagram-section h2 {
  margin-bottom: 30px;
  color: var(--navy);
  font-size: clamp(1.05rem, 2.1vw, 1.815rem);
  line-height: 1.12;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

.instagram-shell {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 18px;
  align-items: center;
}

.instagram-feed {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(165px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.instagram-feed::-webkit-scrollbar {
  display: none;
}

.instagram-profile,
.instagram-card {
  min-width: 165px;
}

.instagram-profile {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  color: var(--navy);
}

.instagram-avatar {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.instagram-profile strong,
.instagram-profile small {
  display: block;
}

.instagram-profile small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.25;
}

.instagram-card {
  overflow: hidden;
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--soft);
}

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

.instagram-card:hover img,
.instagram-card:focus-visible img {
  transform: scale(1.045);
}

.instagram-arrow {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: rgba(23, 38, 63, 0.26);
  background: transparent;
  border: 0;
  font-size: 4rem;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.instagram-arrow:hover,
.instagram-arrow:focus-visible {
  color: var(--red);
  transform: scale(1.05);
}

.site-footer {
  padding: 66px 0 44px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--navy);
}

.site-footer img {
  width: min(230px, 62vw);
  margin-bottom: 18px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 1.05rem;
}

.site-footer a {
  color: var(--white);
}

.footer-contact {
  text-align: right;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 22px;
}

.footer-socials a {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--white);
  transition: color 160ms ease, transform 160ms ease;
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--red);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.footer-rule {
  height: 1px;
  margin-top: 34px;
  background: rgba(227, 16, 19, 0.55);
}

.floating-socials {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 90;
  display: flex;
  gap: 8px;
  padding: 9px;
  background: rgba(23, 38, 63, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.floating-socials a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.floating-socials a:hover,
.floating-socials a:focus-visible {
  color: var(--white);
  background: var(--red);
  transform: translateY(-2px);
}

.floating-socials svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.footer-note {
  align-self: end;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 941px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
  }
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 8px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-button {
    width: 100%;
    padding: 13px 8px;
    text-align: left;
  }

  .nav-menu {
    position: static;
    display: grid;
    min-width: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-menu a {
    padding-left: 18px;
    text-align: left;
  }

  .split,
  .contact-grid,
  .footer-grid,
  .statement-grid,
  .office-grid,
  .why-choose-grid,
  .services-overview__item,
  .services-overview__item--reverse {
    grid-template-columns: 1fr;
  }

  .services-overview__item--reverse .services-overview__copy {
    order: 0;
  }

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

  .about-image-strip:not(.about-image-strip--triple) {
    grid-template-columns: 1fr;
  }

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

  .homepage-contact-cta {
    grid-template-columns: 1fr;
  }

  .services-contact-cta__grid {
    grid-template-columns: 1fr;
  }

  .homepage-contact-cta__inner {
    width: min(100% - 40px, 620px);
    margin-inline: auto;
    padding: clamp(44px, 7vw, 70px) 0;
  }

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

  .footer-contact,
  .footer-socials {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    min-height: 76px;
    padding: 14px;
  }

  .hero {
    min-height: 640px;
    padding-top: 120px;
  }

  .home-hero {
    margin-top: 76px;
    min-height: 560px;
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(1.65rem, 8.4vw, 2.38rem);
    line-height: 1.12;
  }

  .home-intro {
    padding-block: 52px;
  }

  .home-intro p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .service-hero {
    margin-top: 0;
  }

  .page-first-section,
  .page-service-hero {
    margin-top: 76px;
  }

  .service-hero > img {
    height: clamp(230px, 55vw, 360px);
  }

  .service-detail-hero {
    margin-top: 76px;
  }

  .service-detail-hero img {
    height: clamp(230px, 55vw, 360px);
  }

  .service-detail-features {
    grid-template-columns: 1fr;
  }

  .service-detail-features--two {
    max-width: none;
  }

  .hero__actions,
  .hero__actions .button {
    width: 100%;
  }

  .value-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .homepage-contact-cta__form-wrap {
    padding: 34px 18px;
  }

  .homepage-contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .homepage-contact-form .button {
    width: 100%;
  }

  .services-contact-form__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .services-contact-form__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .captcha-check {
    justify-content: flex-end;
  }

  .services-contact-form .button {
    width: 100%;
  }

  .instagram-shell {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 8px;
  }

  .instagram-arrow {
    width: 32px;
    font-size: 3rem;
  }

  .instagram-feed {
    grid-auto-columns: minmax(150px, 72vw);
  }

  .trusted-shell {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
    gap: 8px;
  }

  .trusted-arrow {
    width: 32px;
    font-size: 3rem;
  }

  .trusted-logo {
    flex-basis: 140px;
    height: 92px;
  }

  .trusted-logo img {
    max-height: 74px;
  }

  .seo-summary-grid {
    grid-template-columns: 1fr;
  }

  .floating-socials {
    right: 12px;
    bottom: 12px;
    gap: 6px;
    padding: 7px;
  }

  .floating-socials a {
    width: 38px;
    height: 38px;
  }

  .floating-socials svg {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .site-header {
    padding-inline: 11px;
  }

  .brand img {
    width: min(210px, 62vw);
  }

  .form-bottom,
  .hero__actions {
    gap: 10px;
  }

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

  .floating-socials a {
    width: 34px;
    height: 34px;
  }

  .floating-socials svg {
    width: 20px;
    height: 20px;
  }
}
