.logo-stage {
  display: grid;
  place-items: center;
  isolation: isolate;
}

.logo-halo {
  position: absolute;
  width: min(43vw, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  opacity: .92;
  transform: translate(11%, -8%);
  box-shadow: 0 0 0 80px rgba(216,139,52,.045), 0 0 0 160px rgba(216,139,52,.025);
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: min(82%, 680px);
  height: auto;
  filter: brightness(0) invert(1);
  opacity: .96;
}

.logo-stage .art-note { z-index: 3; }

.hero-photo {
  min-height: 100vh;
  background: #253d33;
}

.hero-refuge {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 52%;
}

.hero-photo-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,31,26,.28) 0%, transparent 27%, transparent 63%, rgba(13,31,26,.58) 100%);
}

.hero-photo-brand {
  position: absolute;
  z-index: 2;
  left: 38px;
  right: 44px;
  bottom: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  color: var(--paper);
}

.hero-photo-brand img {
  width: min(238px, 44%);
  aspect-ratio: 1;
  object-fit: contain;
  background: #e2d3b8;
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 14px 42px rgba(0,0,0,.18);
}

.hero-photo-brand p {
  margin: 0;
  max-width: 230px;
  text-align: right;
  font-size: 10px;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .12em;
}

@media (max-width: 800px) {
  .logo-halo { width: 78vw; }
  .hero-logo { width: 88%; }
  .hero-photo { min-height: 78vh; }
  .hero-refuge { object-position: 50% 50%; }
  .hero-photo-brand { left: 20px; right: 20px; bottom: 20px; }
  .hero-photo-brand img { width: min(96px, 25vw); }
  .hero-photo-brand p { display: none; }
}
