/* ══════════════════════════════════════════════════════════════════
   HERO — Full-bleed photo, left-aligned, institutional feel
   ══════════════════════════════════════════════════════════════════ */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  overflow: hidden;
  color: var(--color-text);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-hero) 25% center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(10, 22, 40, 0.95) 0%,
      rgba(10, 22, 40, 0.85) 25%,
      rgba(10, 22, 40, 0.5) 55%,
      rgba(10, 22, 40, 0.15) 80%,
      transparent 100%
    ),
    linear-gradient(
      to top,
      rgba(10, 22, 40, 1) 0%,
      rgba(10, 22, 40, 0.4) 30%,
      transparent 60%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: 0 32px 0 clamp(20px, 4vw, 60px);
}

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.hero-tagline {
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-dim);
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: var(--color-deep);
  padding: 12px 24px;
  border-radius: 3px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.btn-primary:active { opacity: 0.8; }

.btn-secondary {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  color: var(--color-text);
  padding: 12px 24px;
  border-radius: 3px;
  border: 1px solid rgba(226, 221, 211, 0.2);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:active {
  background: rgba(255, 255, 255, 0.05);
}

.hero-credit {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: var(--color-text-faint);
  font-style: italic;
  margin-top: 40px;
  padding-left: 44px;
}

@media (max-width: 639px) {
  .hero {
    min-height: 0;
    padding: 80px 0 48px;
  }

  .hero-content {
    max-width: var(--max-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
  }

  .hero-eyebrow,
  .hero-subtitle,
  .hero-credit {
    display: none;
  }

  .hero-tagline {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: 0;
  }
}
