/* ==========================================================
   Hero — common structure (each page sets its own background)
   ========================================================== */
.hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  overflow: hidden;
  color: #fff;
  background: var(--c-primary); /* fallback; pages override with image */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 80px max(40px, calc(50vw - 620px)) 56px;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(245, 215, 110, .12), transparent 55%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 5; width: 100%; }
.hero-tag {
  width: auto;
  max-width: max-content;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: .02em;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .55), 0 1px 4px rgba(0, 0, 0, .5);
}
.hero p.lead {
  font-size: 16px;
  line-height: 2;
  opacity: .95;
  max-width: 600px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, .55), 0 1px 4px rgba(0, 0, 0, .5);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  align-items: center;
}

/* Tag pill */
.hero-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4em;
  color: var(--c-accent);
  margin-bottom: 18px;
  padding: 7px 16px;
  border: 1px solid rgba(245, 215, 110, .5);
  border-radius: 4px;
  align-self: flex-start;
}

/* Breadcrumb */
.breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255, 255, 255, .7); }
.breadcrumb a:hover { color: var(--c-accent); }
.breadcrumb .sep { margin: 0 12px; opacity: .5; }

@media (max-width: 960px) {
  .hero h1 { font-size: 36px; }
  .hero { min-height: 420px; height: 56vh; }
}
