/* =====================================================
   SHARED PAGE STYLES
   Used by work.html and about.html
   Extends style.css — do not import standalone
   ===================================================== */

/* Active nav link */
.nav-active {
  color: var(--white) !important;
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 2px;
}

/* ─── PAGE HERO (interior pages) ─────────────────── */
.page-hero {
  min-height: 55vh;
  background: var(--midnight);
  display: flex;
  align-items: center;
  padding: 140px 48px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  animation: fadeUp .8s var(--ease) both;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--white);
  margin: 16px 0 24px;
}
.page-title em {
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--champagne-lt);
}
.page-sub {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: rgba(208,213,221,.7);
  max-width: 640px;
}

/* ─── CTA CENTER BLOCK (bottom of pages) ─────────── */
.cta-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 0;
}
.cta-body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(208,213,221,.65);
  margin: 0 auto 40px;
  max-width: 520px;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Band attribution */
.band-attr {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--silver);
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .page-hero { padding: 110px 24px 64px; }
}
