/* ============================================================
   FLITZEN - Work-by-industry template
   Extends styles.css + works.css + works-type.css
   ============================================================ */

/* ---------- HERO ---------- */
.ind-hero {
  padding-top: clamp(122px, 15vw, 188px);
  padding-bottom: clamp(30px, 4vw, 56px);
}
.ind-hero .crumbs { margin-bottom: clamp(24px, 3vw, 40px); }
.ind-hero .eyebrow { display: block; margin-bottom: clamp(14px, 1.6vw, 22px); }
.ind-h1 {
  font-size: clamp(52px, 10vw, 168px);
  letter-spacing: -0.03em;
  line-height: 0.9;
}
.ind-hero-foot {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: end;
  margin-top: clamp(30px, 3.6vw, 56px);
  padding-top: clamp(24px, 2.6vw, 36px);
  border-top: 1px solid var(--line);
}
.ind-hero-foot .lead { max-width: 44ch; margin: 0; color: var(--gray-1); }
.ind-hero-foot .hero-meta { margin-top: 0; border-top: none; padding-top: 0; }

/* ---------- OTHER INDUSTRIES ---------- */
.ind-more { border-top: 1px solid var(--line); }
.ind-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 3vw, 44px);
}
.ind-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 16px);
  color: var(--ink);
  background: var(--paper);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.ind-pill .ip-go { color: var(--gray-2); transition: color .25s var(--ease), transform .25s var(--ease); }
.ind-pill:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.ind-pill:hover .ip-go { color: var(--paper); transform: translate(2px, -2px); }

.ind-types {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: clamp(26px, 3vw, 40px);
  padding-top: clamp(20px, 2.2vw, 30px);
  border-top: 1px solid var(--line);
}
.ind-types .it-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gray-2);
}
.ind-types a {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(16px, 1.3vw, 20px);
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--line-strong);
  transition: text-decoration-color .25s var(--ease);
}
.ind-types a:hover { text-decoration-color: var(--ink); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 820px) {
  .ind-hero-foot { grid-template-columns: 1fr; gap: 22px; }
}
