/* SYMMETRON 25 — work archive hero. Cards themselves live in theme.css,
   since the home page uses the same component. */

.work-hero {
  padding: clamp(120px, 20vh, 180px) var(--gutter) clamp(40px, 7vh, 72px);
  position: relative;
  overflow: hidden;
}
.work-hero .wm {
  position: absolute;
  right: -70px;
  top: 20px;
  width: min(38vw, 360px);
  opacity: .05;
  pointer-events: none;
  animation: wmIn 1.4s var(--ease) .2s both;
}
.wh-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: heroRise .9s var(--ease) .1s forwards;
}
.wh-eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--brass); }
.wh-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 7vw, 92px);
  line-height: .98;
  letter-spacing: -.02em;
  opacity: 0;
  animation: heroRise 1s var(--ease) .24s forwards;
}
.wh-title em { font-style: italic; }
.wh-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-top: 34px;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroRise 1s var(--ease) .4s forwards;
}
.wh-sub {
  max-width: 46ch;
  color: var(--mid);
  font-size: 15.5px;
  line-height: 1.65;
}
.wh-count {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
  white-space: nowrap;
}
.wh-count b {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--ink);
  letter-spacing: 0;
}

@media (prefers-reduced-motion: reduce) {
  .wh-eyebrow, .wh-title, .wh-row { opacity: 1 !important; transform: none !important; }
  .work-hero .wm { opacity: .05 !important; }
}
