.breadcrumbs-band {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 60px;
}
.breadcrumbs-band h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.breadcrumbs {
  font-size: 14px;
  color: var(--sky);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--sky); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.breadcrumbs span { color: rgba(255,255,255,.55); }

.all-projects { padding: 56px 0 80px; background: var(--white); }
.all-projects-lead {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.7;
}
.all-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ap-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .3s;
}
.ap-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ap-img { height: 200px; overflow: hidden; background: var(--bg-soft); }
.ap-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.ap-card:hover .ap-img img { transform: scale(1.05); }
.ap-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.ap-body h3 { font-size: 18px; font-weight: 600; color: var(--navy-deep); margin-bottom: 8px; line-height: 1.3; }
.ap-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 18px; }
.ap-btn { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--navy); transition: gap .3s; }
.ap-card:hover .ap-btn { gap: 12px; }
.projects-empty {
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 32px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  background: var(--bg-soft);
  text-align: center;
}

.project-main { padding: 64px 0; background: var(--white); }
.project-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.project-photo img { width: 100%; border-radius: var(--radius-md); display: block; }
.project-info p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; }
.project-meta { margin: 26px 0 32px; display: grid; gap: 8px; }
.project-meta div { color: var(--text-primary); }
.project-meta span { font-weight: 600; color: var(--navy); margin-right: 6px; }
.project-supplied-title { font-size: 20px; font-weight: 500; color: var(--navy); margin-bottom: 18px; }
.supplied-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 20px; }
.supplied-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
  transition: all .3s;
  background: var(--bg-card);
}
.supplied-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.supplied-img { height: 150px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.supplied-img img { max-height: 100%; max-width: 100%; object-fit: contain; }
.supplied-name { font-weight: 600; color: var(--text-primary); }
.supplied-qty { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.other-projects { padding: 72px 0; background: var(--bg-soft); }
.other-projects-title { text-align: center; font-size: clamp(26px,3vw,38px); font-weight: 300; color: var(--navy); margin-bottom: 48px; }
.other-projects-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.op-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all .3s;
}
.op-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.op-img { height: 200px; overflow: hidden; background: var(--bg-soft); }
.op-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.op-body { padding: 22px 24px 26px; }
.op-body h3 { font-size: 18px; font-weight: 600; color: var(--navy-deep); margin-bottom: 8px; }
.op-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

@media (max-width: 900px) {
  .project-layout { grid-template-columns: 1fr; gap: 32px; }
  .other-projects-grid { grid-template-columns: 1fr; }
  .all-projects-grid { grid-template-columns: 1fr; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .all-projects-grid { grid-template-columns: repeat(2,1fr); }
}
