/**
 * FullBleedHero — ported 1:1 from components/sections/FullBleedHero.module.css.
 * Module root .hero → .s-full-bleed-hero; other module classes scoped under it.
 *
 * Edge-to-edge documentary image with the page title + CTAs overlaid over a
 * dark scrim. Image-only (no video), so no JS. The .image class was on Next's
 * <Image fill>; here it's a plain <img> filling the section, so the absolute
 * fill positioning that next/image provided is written out explicitly.
 */
.s-full-bleed-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(30rem, 78vh, 46rem);
  overflow: hidden;
  background: var(--c-midnight);
  color: var(--c-text-on-dark);
}

/* next/image fill → explicit fill for a plain <img>. */
.s-full-bleed-hero .image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark, bottom-weighted scrim so the film-hero look carries and text is legible;
   the top stays dark enough for the frosted header too. */
.s-full-bleed-hero .scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
      180deg,
      rgba(14, 17, 22, 0.6) 0%,
      rgba(14, 17, 22, 0.15) 34%,
      rgba(14, 17, 22, 0.55) 74%,
      rgba(14, 17, 22, 0.86) 100%
    ),
    linear-gradient(90deg, rgba(14, 17, 22, 0.55) 0%, transparent 62%);
}

.s-full-bleed-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: clamp(7rem, 14vw, 10rem) clamp(2.5rem, 7vw, 5rem);
}

.s-full-bleed-hero .content {
  max-width: 44rem;
}

/* White label with a leading amber rule — the amber-on-amber sunset heroes made
   a fully-amber eyebrow illegible, so keep amber as an accent, not the text. */
.s-full-bleed-hero .eyebrow {
  margin: 0 0 var(--s-5);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}
.s-full-bleed-hero .eyebrow::before {
  content: "";
  width: 1.75rem;
  height: 3px;
  border-radius: 2px;
  background: var(--c-amber);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.s-full-bleed-hero .title {
  margin: 0;
  color: #fff;
  max-width: 16ch;
}

.s-full-bleed-hero .lede {
  margin: var(--s-6) 0 0;
  max-width: 46ch;
  font-size: var(--fs-lg);
  line-height: var(--lh-normal);
  color: rgba(244, 242, 236, 0.92);
  text-wrap: pretty;
}

.s-full-bleed-hero .ctas {
  margin-top: var(--s-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
}
