/* Premium remodel photography and qualified lead form */
img.bath-visual {
  width: 100%;
  height: 340px;
  display: block;
  object-fit: cover;
  border-radius: 18px;
  background: none;
}
.project-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
}
.project-shot {
  position: relative;
  min-height: 285px;
  border-radius: 20px;
  overflow: hidden;
  background: #dfe7ef;
}
.project-shot:first-child {
  grid-row: span 2;
  min-height: 588px;
}
.project-shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}
.project-shot:hover img {
  transform: scale(1.025);
}
.project-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: rgba(10, 30, 48, 0.9);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}
.check-field {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 14px 0;
}
.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}
.check-field label {
  font-size: 0.82rem;
  color: #405064;
  font-weight: 650;
}
.qualifier-note {
  background: #eef5ff;
  border: 1px solid #cfe0ff;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.78rem;
  color: #405064;
  margin-bottom: 14px;
}
.service-photo {
  width: 100%;
  max-height: 470px;
  object-fit: cover;
  border-radius: 20px;
  margin: 0 0 32px;
  box-shadow: 0 18px 50px rgba(16, 42, 67, 0.12);
}
.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin: 4px 0 18px;
}
.form-progress span {
  height: 5px;
  border-radius: 999px;
  background: #dce4ed;
}
.form-progress span.active {
  background: var(--blue);
}
.lead-step {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
}
.lead-step.active {
  display: block;
}
.lead-step legend {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue2);
  padding: 0;
  margin-bottom: 2px;
}
.lead-step h3 {
  font-size: 1.12rem;
  color: var(--navy);
  margin: 0;
}
.lead-step > p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 15px;
}
.step-actions {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}
.step-actions .btn {
  flex: 1;
  padding: 12px;
}
.lead-card form > .fine {
  display: none;
}
.trust-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue2);
  font-weight: 800;
  text-decoration: none;
}
.trust-link:before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e5f6ee;
  color: var(--green);
}
@media (max-width: 820px) {
  .visual-card {
    display: block;
    padding: 14px;
  }
  .visual-card .bath-visual {
    height: 280px;
  }
  .logo {
    font-size: 1rem;
  }
  .topbar {
    font-size: 0.78rem;
  }
  .project-gallery {
    grid-template-columns: 1fr;
  }
  .project-shot,
  .project-shot:first-child {
    min-height: 330px;
    grid-row: auto;
  }
}
