/* The SVG artwork is transparent, so it can sit directly on each section. */
.brand {
  display: flex;
  align-items: center;
  height: 100%;
}

.brand img {
  display: block;
  width: 164px;
  height: auto;
}

.nav-links > a:not(.nav-cta) {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 22, 44, 0.28);
}

.nav-links > a:not(.nav-cta):hover {
  color: #ffad3d;
}

.nav-links .nav-cta {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 9px 24px rgba(0, 34, 65, 0.2);
}

.seal {
  top: 12%;
  right: 4%;
  width: auto;
  height: auto;
  min-width: 172px;
  padding: 12px 17px 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 3px;
  background: #fff;
  color: var(--navy);
  justify-content: flex-start;
  gap: 10px;
  transform: none;
  box-shadow: 0 14px 34px rgba(0, 25, 49, 0.25);
}

.seal svg {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seal div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.seal strong {
  padding: 0;
  border: 0;
  font: 800 13px/1.1 Manrope, sans-serif;
  letter-spacing: 0.12em;
}

.seal span {
  display: block;
  color: #6d7e8a;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: 0.16em;
}

.about-mark img {
  box-sizing: border-box;
  display: block;
  width: min(72%, 390px);
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  background: #fff;
  padding: clamp(28px, 4vw, 52px);
  transform: none;
  box-shadow: 0 18px 45px rgba(0, 24, 48, 0.2);
}

footer img {
  display: block;
  width: 156px;
  height: auto;
  flex: 0 0 auto;
}

.architectural-scene.commercial-photo,
.architectural-scene.residential-photo {
  background: #d8dee2;
}

.architectural-scene.commercial-photo {
  height: 260px;
}

.architectural-scene.residential-photo {
  height: 210px;
}

.architectural-scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-shape.kitchen {
  background: url("assets/project-kitchen-v2.png") center center / cover no-repeat;
}

.project-shape.retail {
  background: url("assets/project-retail-v2.png") center center / cover no-repeat;
}

.project-shape.detail {
  background: url("assets/project-coffered-ceiling-v3.png") center center / cover no-repeat;
}

.work-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 520px;
}

.work-collage .project-shape {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-width: 0;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.work-collage .kitchen {
  grid-column: 1;
  grid-row: 1 / 3;
}

.work-collage .retail {
  grid-column: 2;
  grid-row: 1;
}

.work-collage .detail {
  grid-column: 2;
  grid-row: 2;
}

.project-shape.kitchen::after,
.project-shape.retail::after,
.project-shape.detail::after {
  display: none;
}

.services-grid article {
  min-height: 390px;
  padding: 36px 34px 40px;
}

.services-grid article > span {
  color: #718696;
  font-size: 13px;
  font-weight: 700;
}

.services-grid .featured > span {
  color: #a9c6dc;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-bottom: 27px;
  color: var(--navy);
  background: #eef4f7;
  border: 1px solid #d8e4ea;
}

.service-icon svg {
  width: 50px;
  height: 50px;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-grid .featured .service-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.26);
}

.services-grid h3 {
  margin-bottom: 18px;
  color: var(--navy-deep);
  font-size: 23px;
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.services-grid .featured h3 {
  color: #fff;
}

.services-grid p {
  max-width: 36ch;
  color: #536979;
  font-size: 15.5px;
  line-height: 1.72;
}

.services-grid .featured p {
  color: #e4edf3;
}

.services-grid a {
  font-size: 14px;
  letter-spacing: 0.01em;
}

.contact-meta a {
  color: #fff;
  font-weight: 700;
}

.contact-meta a::before {
  display: inline-block;
  width: 19px;
  color: var(--orange);
  content: "→";
}

.contact-meta a:hover {
  color: #f4a63b;
}

.bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

footer div {
  flex-wrap: wrap;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .brand img {
    width: 132px;
  }

  .about-mark img {
    width: min(76%, 320px);
    padding: 30px;
  }

  footer img {
    width: 148px;
  }

  .architectural-scene.commercial-photo {
    height: 180px;
  }

  .architectural-scene.residential-photo {
    height: 145px;
  }

  .work-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 1.25fr 1fr 1fr;
    gap: 14px;
    min-height: 760px;
  }

  .work-collage .kitchen,
  .work-collage .retail,
  .work-collage .detail {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 980px) {
  .nav-links > a:not(.nav-cta) {
    color: var(--navy);
    text-shadow: none;
  }
}
