/* ===== "What We Build" page — extends about.css ===== */

/* ---------- Hero ---------- */
.hero--build {
  background-color: var(--alpine);
  background-image: none;
  min-height: 0;
  border-bottom: 1px solid var(--mist);
}
.hero--build .hero__inner {
  justify-content: center;
  text-align: center;
  padding-top: clamp(64px, 9vw, 104px);
  padding-bottom: clamp(64px, 9vw, 104px);
}
.hero--build .hero__content { max-width: 680px; }
.hero--build .hero__divider { margin-left: auto; margin-right: auto; }
.hero--build .hero__body {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--midnight);
}
.hero--build .hero__body { max-width: 560px; color: var(--midnight); }

/* ---------- Feature cards ---------- */
.fcards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 54px;
}
.fcard {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 18px;
  padding: 38px 34px 32px;
  box-shadow: 0 1px 2px rgba(18, 38, 58, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.7s ease;
  scroll-margin-top: 100px; /* so #anchored cards don't jam against the top */
}
.fcard:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(18, 38, 58, 0.12); }
.fcard__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(201, 169, 122, 0.14);
  margin-bottom: 24px;
}
.fcard__icon svg { width: 28px; height: 28px; }
.fcard__title { font-size: 22px; font-weight: 700; color: var(--midnight); margin: 0 0 12px; }
.fcard__desc { font-size: 15.5px; line-height: 1.7; color: var(--ridge); margin: 0 0 20px; }
.fcard__list {
  list-style: none;
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--mist);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
}
.fcard__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--midnight);
  font-weight: 500;
}
.fcard__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--summit);
}

/* ---------- Final CTA (override about.css image) ---------- */
.final-cta {
  background-image:
    linear-gradient(180deg, rgba(18,38,58,0.5) 0%, rgba(18,38,58,0.78) 100%),
    url("https://images.unsplash.com/photo-1472791108553-c9405341e398?auto=format&fit=crop&w=1920&q=80");
}

@media (max-width: 520px) {
  .fcard__list { grid-template-columns: 1fr; }
}