/* ===== Page header ===== */
.page-header { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 88px 32px 40px; }
.breadcrumb { font-family: var(--fm); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: rgba(255, 255, 255, 0.25); }
.page-title { font-family: var(--fd); font-weight: 700; font-size: clamp(40px, 5.5vw, 68px); line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 24px; }
.page-lede { font-size: 18px; line-height: 1.62; color: var(--muted); max-width: 520px; }

/* ===== Filters + grid ===== */
.projects-archive { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 24px 32px 90px; }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-pill {
  font-family: var(--fm);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s;
  text-decoration: none;
  background: transparent;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 500;
}
.filter-pill:hover { border-color: var(--accent); color: var(--ink); }
.filter-pill.active { background: var(--accent); color: var(--navy); border-color: var(--accent); font-weight: 700; }
.filter-pill.active:hover { color: var(--navy); }
.filter-count { font-family: var(--fm); font-size: 13px; color: var(--muted); }

.project-rows { display: flex; flex-direction: column; gap: 84px; }
.project-row { display: flex; align-items: center; gap: 56px; text-decoration: none; color: inherit; }
.project-row:nth-child(even) { flex-direction: row-reverse; }
.project-row-shot { flex: 1 1 0; min-width: 0; width: 100%; }
.project-row-shot-inner { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.06); background: #0E2143; }
.project-row-shot-inner img { width: 100%; height: 340px; object-fit: cover; display: block; transition: transform .45s ease; }
.project-row-shot-inner:hover img { transform: scale(1.2); }
.project-row-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--fm);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--accent);
  padding: 5px 11px;
  border-radius: 6px;
}
.project-row-body { flex: 1 1 0; min-width: 0; width: 100%; }
.project-row-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.project-row-head h2 { font-family: var(--fd); font-weight: 600; font-size: clamp(24px, 2.4vw, 31px); color: var(--accent); letter-spacing: -0.01em; }
.project-row-year { font-family: var(--fm); font-size: 13px; color: var(--muted); flex: none; }
.project-row-body p { font-size: 16px; line-height: 1.65; color: var(--muted); margin-bottom: 22px; max-width: 460px; }
.project-row-stack { display: flex; flex-wrap: wrap; gap: 9px; }
.project-row-stack span { font-family: var(--fm); font-size: 12px; color: var(--muted); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 999px; padding: 6px 14px; }

@media (max-width: 860px) {
  .project-row, .project-row:nth-child(even) { flex-direction: column; }
  .project-rows { gap: 56px; }
  .project-row-shot-inner img { height: 240px; }
}

.empty-state {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  text-align: center;
  /* max-width: 50%; */
  margin: 0 auto;
  padding: 90px 32px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

/* ===== CTA band ===== */
.cta-band { position: relative; z-index: 1; background: var(--surface2); border-top: 1px solid rgba(255, 255, 255, 0.05); }
.cta-band-inner { max-width: 1240px; margin: 0 auto; padding: 72px 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px; }
.cta-band-title { font-family: var(--fd); font-weight: 700; font-size: clamp(28px, 3.4vw, 40px); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-band-lede { font-size: 16px; color: var(--muted); max-width: 440px; }
