/* Hero — full-bleed photo, wordmark + slogan as overlay claim */
.hero {
  position: relative; min-height: clamp(24rem, 62vw, 42rem); display: flex; flex-direction: column; overflow: hidden;
  background-size: cover; background-position: 65% 50%;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(16,20,24,.23) 0%, rgba(16,20,24,.1375) 45%, rgba(16,20,24,.0375) 100%);
}
.hero__content {
  position: relative; z-index: 2; padding-block: clamp(2rem, 5vw, 3rem) clamp(2.5rem, 8vw, 5rem); color: #fff;
  height: 100%; width: 100%; display: flex; flex-direction: column; justify-content: space-between; flex: auto;
}
@media (min-width: 500px) {
  .hero__content { justify-content: flex-end; }
}
.hero__title { margin: 0 0 1.5rem; }
.hero__logo {
  width: clamp(16.25rem, 50vw, 27.5rem); height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 16px rgba(0, 0, 0, .1)) drop-shadow(0 0 32px rgba(0, 0, 0, .125));
}
.hero__subtitle {
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.3rem, 3.8vw, 2.2rem);
  line-height: 1.2; letter-spacing: -.005em; max-width: 34ch; margin: 0 0 1.75rem; color: #fff;
  text-shadow: 0 0 4px rgba(0, 0, 0, .25), 0 0 16px rgba(0, 0, 0, .25);
}
