:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: #05253a;
  color: #fff;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body { min-height: 100svh; overflow: hidden; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
  background: #05253a;
}

.hero__media,
.hero__media img,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
}

.hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 20, 35, .66) 0%, rgba(0, 25, 42, .27) 39%, transparent 66%),
    linear-gradient(0deg, rgba(0, 16, 28, .28), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 1680px);
  margin-inline: auto;
  padding: max(40px, env(safe-area-inset-top)) clamp(34px, 4.4vw, 84px) max(34px, env(safe-area-inset-bottom));
  transform: translateY(2vh);
}

.brand {
  width: min(62vw, 1050px);
}

.brand__artwork {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.15));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact {
  margin-top: clamp(54px, 10vh, 118px);
  margin-left: 2px;
  width: fit-content;
}

.contact__lead {
  margin: 0 0 16px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255,255,255,.84);
  font-size: clamp(22px, 2vw, 35px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.contact__email {
  display: inline-block;
  color: #fff;
  font-size: clamp(17px, 1.45vw, 25px);
  line-height: 1.3;
  text-decoration: none;
  text-underline-offset: .23em;
  transition: opacity .2s ease;
}

.contact__email:hover,
.contact__email:focus-visible { opacity: .78; text-decoration: underline; }

@media (max-width: 900px) {
  .hero__media img { object-position: 48% 50%; }
  .hero__shade {
    background:
      linear-gradient(90deg, rgba(0, 19, 34, .72) 0%, rgba(0, 25, 42, .25) 72%, transparent),
      linear-gradient(0deg, rgba(0, 15, 27, .25), transparent 60%);
  }
}

@media (max-width: 600px) {
  .hero__media img { object-position: 42% 50%; }
  .hero__content {
    justify-content: flex-end;
    padding: max(28px, env(safe-area-inset-top)) 24px max(54px, calc(env(safe-area-inset-bottom) + 30px));
    transform: none;
  }
  .hero__shade {
    background:
      linear-gradient(0deg, rgba(0, 18, 32, .88) 0%, rgba(0, 22, 38, .45) 42%, rgba(0, 24, 40, .05) 75%),
      linear-gradient(90deg, rgba(0, 30, 50, .18), transparent 82%);
  }
  .brand { width: 100%; }
  .contact { margin-top: 42px; }
  .contact__lead { font-size: 21px; margin-bottom: 13px; padding-bottom: 12px; }
  .contact__email { font-size: 17px; }
}

@media (max-height: 520px) and (orientation: landscape) {
  .hero__content { justify-content: center; padding-block: 24px; }
  .brand { width: min(68vw, 520px); }
  .contact { margin-top: 30px; }
  .contact__lead { font-size: 19px; margin-bottom: 10px; padding-bottom: 9px; }
  .contact__email { font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } }
