:root {
  color-scheme: dark;
  --bg: #060606;
  --text: #f5f0ea;
  --accent: #e22026;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  min-height: 100svh;
  font-family: Arial, Helvetica, sans-serif;
}

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

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.005);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.08) 22%, rgba(0,0,0,.03) 48%, rgba(0,0,0,.15) 100%),
    linear-gradient(90deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.10) 30%, rgba(0,0,0,0) 56%, rgba(0,0,0,.08) 100%);
  z-index: 1;
}

.brand-block {
  position: absolute;
  top: max(env(safe-area-inset-top), 28px);
  left: clamp(22px, 4.2vw, 56px);
  z-index: 2;
  width: min(40vw, 560px);
}

.brand-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 26px rgba(0,0,0,.34));
}

.status-note {
  margin: clamp(14px, 2vw, 28px) 0 0;
  color: var(--accent);
  font-family: "Brush Script MT", "Segoe Script", "Snell Roundhand", "Apple Chancery", cursive;
  font-size: clamp(34px, 3.6vw, 58px);
  line-height: .98;
  letter-spacing: .2px;
  text-shadow: 0 4px 14px rgba(0,0,0,.45);
}

.band-login {
  position: absolute;
  top: max(env(safe-area-inset-top), 26px);
  right: clamp(22px, 3.6vw, 44px);
  z-index: 3;
  color: var(--text);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(19px, 1.6vw, 24px);
  line-height: 1.1;
  padding: 3px 0 10px;
  border-bottom: 3px solid var(--accent);
  text-shadow: 0 3px 8px rgba(0,0,0,.55);
}

.band-login:hover,
.band-login:focus-visible {
  color: #ffffff;
  border-bottom-color: #ff4d51;
  outline: none;
}

@media (max-width: 1024px) {
  .brand-block {
    width: min(46vw, 500px);
  }

  .status-note {
    font-size: clamp(32px, 4.8vw, 52px);
  }
}

@media (max-width: 768px) {
  .hero-image {
    object-position: 58% center;
    transform: scale(1.04);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.16) 30%, rgba(0,0,0,.05) 56%, rgba(0,0,0,.18) 100%),
      linear-gradient(90deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,.14) 34%, rgba(0,0,0,0) 70%);
  }

  .brand-block {
    top: max(env(safe-area-inset-top), 18px);
    left: 16px;
    width: min(72vw, 310px);
  }

  .band-login {
    top: max(env(safe-area-inset-top), 18px);
    right: 16px;
    font-size: 16px;
    border-bottom-width: 2px;
    padding-bottom: 7px;
  }

  .status-note {
    margin-top: 12px;
    font-size: clamp(24px, 7.5vw, 40px);
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .hero-image {
    object-position: 61% center;
    transform: scale(1.085);
  }

  .brand-block {
    width: min(78vw, 280px);
  }

  .status-note {
    font-size: clamp(22px, 8vw, 35px);
    line-height: 1.02;
  }

  .band-login {
    font-size: 15px;
    right: 14px;
  }
}

@media (max-width: 380px) {
  .hero-image {
    object-position: 63% center;
    transform: scale(1.13);
  }

  .brand-block {
    width: min(80vw, 248px);
  }

  .status-note {
    font-size: 20px;
  }

  .band-login {
    font-size: 14px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .brand-block {
    width: min(34vw, 360px);
    top: max(env(safe-area-inset-top), 14px);
  }

  .status-note {
    margin-top: 10px;
    font-size: 24px;
  }

  .band-login {
    top: max(env(safe-area-inset-top), 12px);
    font-size: 15px;
    padding-bottom: 6px;
  }
}
