.cmp-hero-fullbleed {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--color-cream);
  color: var(--color-text);
}

.cmp-hero-fullbleed--short {
  min-height: 66svh;
}

.cmp-hero-fullbleed__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cmp-hero-fullbleed__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 54, 60, 0.18) 0%, rgba(36, 54, 60, 0.52) 100%);
  pointer-events: none;
}

.cmp-hero-fullbleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cmp-hero-fullbleed__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  max-width: 1080px;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-height) + 24px) 44px 108px;
}

.cmp-hero-fullbleed--short .cmp-hero-fullbleed__copy {
  min-height: 66svh;
  padding-bottom: 72px;
}

.cmp-hero-fullbleed__copy h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--color-paper);
  text-shadow: 0 2px 24px rgba(36, 54, 60, 0.28);
}

.cmp-hero-fullbleed__copy p {
  max-width: 44ch;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(246, 246, 242, 0.92);
  text-shadow: 0 1px 12px rgba(36, 54, 60, 0.22);
}

.cmp-hero-fullbleed__markers {
  position: absolute;
  right: 44px;
  bottom: 42px;
  z-index: 3;
  display: grid;
  gap: 8px;
}

.cmp-hero-fullbleed__marker {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(246, 246, 242, 0.42);
  background: rgba(246, 246, 242, 0.22);
  color: var(--color-paper);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cmp-hero-fullbleed__marker strong {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
}

.cmp-hero-fullbleed--image-only .cmp-hero-fullbleed__copy {
  display: none;
}

.cmp-hero-fullbleed--image-only {
  min-height: 66svh;
}

@media (max-width: 920px) {
  .cmp-hero-fullbleed__copy {
    padding: calc(var(--nav-height) + 16px) 22px 96px;
  }

  .cmp-hero-fullbleed__markers {
    left: 22px;
    right: 22px;
    bottom: 24px;
  }

  .cmp-hero-fullbleed__marker {
    justify-content: space-between;
    width: 100%;
  }
}
