/* ─────────────────────────────────────────────────────────────────────────────
   SIP GLOBAL — Hero Sections
───────────────────────────────────────────────────────────────────────────── */

/* Full-bleed background image hero */
.hero {
  position  : relative;
  min-height: 100vh;
  display   : flex;
  align-items: center;
  overflow  : hidden;
}

.hero__bg {
  position  : absolute;
  inset     : 0;
  background: url('/assets/images/hero-bg.jpg') center center / cover no-repeat;
  z-index   : 0;
}

.hero__overlay {
  position  : absolute;
  inset     : 0;
  background: rgba(8, 12, 16, 0.86);
  z-index: 1;
}

.hero__content {
  position   : relative;
  z-index    : 2;
  width      : 100%;
  max-width  : var(--max-width);
  margin     : 0 auto;
  padding    : calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
}

.hero__eyebrow {
  font-size     : var(--text-sm);
  font-weight   : var(--weight-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color         : var(--color-blue-bright);
  margin-bottom : var(--space-sm);
}

.hero__heading {
  font-size    : var(--text-3xl);
  color        : var(--color-white);
  max-width    : 760px;
  margin-bottom: var(--space-md);
  line-height  : 1.15;
}

.hero__body {
  font-size    : var(--text-md);
  color        : rgba(245, 245, 245, 0.88);
  max-width    : 640px;
  margin-bottom: var(--space-sm);
  line-height  : 1.75;
}

.hero__motto {
  font-size     : var(--text-sm);
  font-style    : italic;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color         : rgba(255,255,255,0.45);
  margin-top    : var(--space-lg);
}

/* Section hero — dark navy, no background image */
.section-hero {
  background: var(--color-navy);
  color     : var(--color-white);
  padding   : calc(var(--nav-height) + var(--space-2xl)) 0 var(--space-2xl);
}

.section-hero__eyebrow {
  font-size     : var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color         : var(--color-blue-bright);
  margin-bottom : var(--space-sm);
}

.section-hero__heading {
  font-size    : var(--text-3xl);
  margin-bottom: var(--space-md);
  max-width    : 720px;
}

.section-hero__body {
  font-size  : var(--text-md);
  line-height: 1.75;
  max-width  : 620px;
  opacity    : 0.85;
}
