body.theme-construction-bold {
  --build-navy: #152864;
  --build-navy-dark: #0b1738;
  --build-orange: #f36b45;
  --build-orange-dark: #d95534;
  --build-ink: #14204a;
  --build-text: #36415d;
  --build-muted: #6e7890;
  --build-paper: #ffffff;
  --build-soft: #f3f5f9;
  --build-line: rgba(20, 32, 74, 0.13);
  --build-shadow: 0 22px 48px rgba(11, 23, 56, 0.12);
  --max: 1140px;
  background: var(--build-paper);
  color: var(--build-ink);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

.theme-construction-bold * {
  box-sizing: border-box;
}

.theme-construction-bold h1,
.theme-construction-bold h2,
.theme-construction-bold h3 {
  color: var(--build-ink);
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.theme-construction-bold h1 {
  margin: 0;
  max-width: 11.5ch;
  color: #fff;
  font-size: clamp(3.1rem, 6vw, 5.35rem);
  line-height: 0.98;
}

.theme-construction-bold h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 4.15rem);
  line-height: 1.02;
}

.theme-construction-bold h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.theme-construction-bold p {
  color: var(--build-text);
  font-size: 1rem;
  line-height: 1.7;
}

.build-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: var(--build-navy);
  color: #fff;
}

.build-header .header-row {
  min-height: 98px;
  padding-block: 1rem;
}

.theme-construction-bold .brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #fff;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  font-weight: 900;
  text-decoration: none;
}

.theme-construction-bold .brand-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 2px solid rgba(243, 107, 69, 0.24);
  border-radius: 50%;
  background: transparent;
  color: var(--build-orange);
}

.brand-mark svg {
  width: 1.95rem;
  height: 1.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.build-header .site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.build-header .site-nav a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

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

.build-header .site-nav a:last-child {
  min-height: auto;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
}

.build-header .site-nav a:last-child:hover,
.build-header .site-nav a:last-child:focus-visible {
  color: var(--build-orange);
}

.theme-construction-bold .nav-toggle {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.theme-construction-bold .mobile-contact-bar {
  background: var(--build-navy-dark);
}

.theme-construction-bold .mobile-contact-bar a {
  color: #fff;
}

.build-hero {
  position: relative;
  overflow: hidden;
  min-height: min(660px, calc(100vh - 220px));
  background: var(--build-navy-dark);
}

.build-hero .hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 23, 56, 0.86) 0%, rgba(11, 23, 56, 0.56) 42%, rgba(11, 23, 56, 0.12) 100%),
    url("https://images.unsplash.com/photo-1487958449943-2429e8be8625?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: min(660px, calc(100vh - 220px));
  align-items: center;
  gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(17rem, 0.28fr);
}

.hero-copy {
  max-width: 43rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.15rem;
  color: var(--build-orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker::after {
  display: inline-block;
  width: 4.1rem;
  height: 3px;
  background: currentColor;
  content: "";
}

.hero-copy p:not(.section-kicker) {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  font-weight: 700;
}

.build-hero .section-kicker {
  color: rgba(255, 255, 255, 0.9);
}

.build-hero .section-kicker::after {
  background: var(--build-orange);
}

.theme-construction-bold .button {
  min-height: 3.3rem;
  padding: 0.95rem 1.45rem;
  border-radius: 0;
  font-weight: 900;
}

.theme-construction-bold .button-primary {
  background: var(--build-orange);
  color: #fff;
  box-shadow: none;
}

.theme-construction-bold .button-primary:hover,
.theme-construction-bold .button-primary:focus-visible {
  background: var(--build-orange-dark);
}

.theme-construction-bold .button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
}

.theme-construction-bold .button-light {
  background: #fff;
  color: var(--build-ink);
}

.hero-panel {
  align-self: end;
  margin-bottom: clamp(1.4rem, 4vw, 3rem);
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(21, 40, 100, 0.86);
  color: #fff;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  margin-bottom: 0.9rem;
  color: #fff;
  font-size: 1.1rem;
}

.hero-panel span {
  padding: 0.7rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.split-heading {
  display: grid;
  align-items: end;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 0.78fr) minmax(12rem, 0.22fr);
}

.text-link,
.project-copy a,
.service-card a,
.news-grid a {
  display: inline-flex;
  width: fit-content;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--build-orange);
  color: var(--build-ink);
  font-weight: 900;
  text-decoration: none;
}

.service-section {
  padding-top: clamp(4rem, 7vw, 7rem);
}

.service-grid {
  display: grid;
  gap: 1.6rem;
  margin-top: clamp(2.4rem, 5vw, 4rem);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  min-height: 24rem;
  padding: clamp(1.6rem, 3vw, 2.5rem);
  background: var(--build-navy);
  color: #fff;
}

.service-card svg {
  width: 4rem;
  height: 4rem;
  margin-bottom: 2.6rem;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.service-card h3,
.service-card p,
.service-card a {
  color: #fff;
}

.service-card p {
  margin: 1.3rem 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.project-section {
  padding-top: 0;
}

.project-grid {
  display: grid;
  align-items: start;
  gap: clamp(2rem, 6vw, 6.5rem);
  margin-top: 3rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-card {
  display: grid;
  gap: 1.6rem;
}

.project-card:nth-child(3) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: end;
}

.project-card img {
  height: clamp(23rem, 42vw, 38rem);
  object-fit: cover;
}

.project-card:not(.project-tall) img {
  height: clamp(19rem, 33vw, 30rem);
}

.project-copy span {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--build-orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-copy p {
  max-width: 35rem;
  margin: 1.2rem 0 1.7rem;
}

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

.about-grid,
.contact-grid,
.quote-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.4rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
}

.about-media img {
  height: min(620px, 65vw);
  min-height: 25rem;
  object-fit: cover;
  box-shadow: var(--build-shadow);
}

.about-copy > p:not(.section-kicker) {
  max-width: 42rem;
  margin: 1.4rem 0 0;
}

.check-list {
  display: grid;
  gap: 1.35rem;
  margin: 2.2rem 0 2.4rem;
}

.check-list > div {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: 2.2rem 1fr;
}

.check-list span {
  position: relative;
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  margin-top: 0.2rem;
  place-items: center;
  border: 2px solid var(--build-orange);
  border-radius: 50%;
}

.check-list span::after {
  width: 0.62rem;
  height: 0.34rem;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--build-orange);
  border-left: 2px solid var(--build-orange);
  content: "";
}

.check-list strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--build-ink);
  font-size: 1.18rem;
  font-weight: 900;
}

.check-list p {
  margin: 0;
}

.process-section {
  background: #fff;
}

.center-heading {
  max-width: 50rem;
  margin: 0 auto;
  text-align: center;
}

.center-heading .section-kicker {
  justify-content: center;
}

.process-grid {
  display: grid;
  gap: 1.4rem;
  margin-top: 3.5rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  padding: 2rem 1.25rem;
  border-top: 1px solid var(--build-line);
  text-align: center;
}

.process-grid span {
  display: block;
  margin-bottom: 1.3rem;
  color: var(--build-orange);
  font-size: 2rem;
  font-weight: 900;
}

.process-grid p {
  margin: 1rem 0 0;
}

.quote-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3.2rem, 6vw, 5.5rem) 0;
  background:
    linear-gradient(90deg, rgba(243, 107, 69, 0.94), rgba(243, 107, 69, 0.72)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=80") center / cover;
  color: #fff;
}

.quote-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.quote-band h2,
.quote-band p,
.quote-band a {
  color: #fff;
}

.quote-band p {
  margin: 1rem 0 0;
  font-size: clamp(1.45rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
}

.quote-band .section-kicker {
  color: #fff;
}

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

.news-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news-grid article {
  padding: 2rem 0 0;
  border-top: 1px solid rgba(20, 32, 74, 0.2);
}

.news-grid h3 {
  color: var(--build-orange);
}

.news-grid p {
  margin: 1.2rem 0 1.6rem;
}

.contact-section {
  background: #fff;
}

.contact-grid {
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 5px solid var(--build-orange);
  background: var(--build-soft);
}

.contact-card strong {
  color: var(--build-ink);
  font-size: 1.15rem;
}

.contact-card span {
  color: var(--build-text);
  line-height: 1.5;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  background: var(--build-soft);
}

.quote-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--build-ink);
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(20, 32, 74, 0.18);
  border-radius: 0;
  background: #fff;
  color: var(--build-ink);
  padding: 0.95rem 1rem;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form [aria-invalid="true"] {
  border-color: var(--build-orange);
  box-shadow: 0 0 0 3px rgba(243, 107, 69, 0.16);
}

.form-message {
  min-height: 1.5rem;
  margin: 0;
  color: var(--build-text);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.5;
}

.form-message.success {
  color: #1f6f3d;
}

.form-message.error {
  color: var(--build-orange-dark);
}

.build-footer {
  background: var(--build-navy-dark);
  color: #fff;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 5rem) 0;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(12rem, 0.6fr));
}

.footer-brand {
  margin-bottom: 1.2rem;
}

.build-footer h3,
.build-footer p,
.build-footer a {
  color: #fff;
}

.build-footer h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.build-footer p {
  max-width: 26rem;
  margin: 0.35rem 0;
  color: rgba(255, 255, 255, 0.72);
}

.build-footer a:not(.brand) {
  display: block;
  margin: 0.55rem 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
  text-decoration: none;
}

.copyright {
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

@media (max-width: 900px) {
  .build-header .header-row {
    min-height: 76px;
  }

  .build-header .site-nav {
    position: absolute;
    top: 100%;
    right: 0.75rem;
    left: 0.75rem;
    display: none;
    padding: 1rem;
    background: var(--build-navy-dark);
  }

  .build-header .site-nav.open {
    display: grid;
  }

  .build-header .site-nav a {
    min-height: 2.8rem;
  }

  .build-hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid,
  .split-heading,
  .about-grid,
  .contact-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .build-hero .hero-media {
    opacity: 0.42;
  }

  .hero-copy {
    padding: 3.4rem 0 2rem;
  }

  .hero-panel {
    align-self: auto;
    margin: 0 0 3rem;
  }

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

  .service-card {
    min-height: auto;
  }

  .project-grid,
  .project-card:nth-child(3) {
    grid-template-columns: 1fr;
  }

  .project-card img,
  .project-card:not(.project-tall) img,
  .about-media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.1;
  }

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

  .quote-grid .button {
    width: fit-content;
  }

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

@media (max-width: 560px) {
  .theme-construction-bold h1 {
    max-width: 9.5ch;
    font-size: clamp(2.55rem, 11vw, 3.05rem);
  }

  .build-header .header-row {
    gap: 0.75rem;
  }

  .theme-construction-bold .brand {
    gap: 0.65rem;
    font-size: 1.25rem;
  }

  .theme-construction-bold .brand-mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .brand-mark svg {
    width: 1.65rem;
    height: 1.65rem;
  }

  .hero-copy {
    padding: 2.8rem 0 2.4rem;
  }

  .hero-copy p:not(.section-kicker) {
    font-size: 1rem;
  }

  .theme-construction-bold .button-row .button {
    flex-basis: 100%;
  }

  .hero-panel {
    display: none;
  }

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

  .process-grid article {
    padding-inline: 0;
  }

  .quote-band p {
    font-size: 1.8rem;
  }
}
