* {
  box-sizing: border-box;
}

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

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #fff;
  background: #111;
}

.hero {
  position: relative;
  min-height: 100svh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background-image: url("assets/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.28);
}

.content {
  position: relative;
  z-index: 1;
  width: min(92vw, 1200px);
  min-height: 100svh;
  padding: 48px 24px 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  line-height: 1;
}

.brand-main {
  font-size: clamp(3rem, 8vw, 8.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.brand-studio {
  margin-top: 0.65em;
  font-size: clamp(0.8rem, 1.5vw, 1.7rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  white-space: nowrap;
}

.status {
  margin: 70px 0 0;
  font-size: clamp(1.2rem, 2.4vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.11em;
}

.contact {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 42px;
  padding-top: 50px;
}

.contact a {
  color: inherit;
  font-size: clamp(0.95rem, 1.6vw, 1.3rem);
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.contact a:hover,
.contact a:focus-visible {
  opacity: 0.65;
}

@media (max-width: 700px) {
  .hero {
    background-position: center;
  }

  .content {
    padding: 28px 16px 24px;
  }

  .brand {
    gap: 5px;
    max-width: 92vw;
  }

  .brand-main {
    font-size: clamp(1.95rem, 10vw, 3.1rem);
    letter-spacing: -0.045em;
  }

  .brand-studio {
    margin-top: 0.52em;
    font-size: clamp(0.52rem, 2.2vw, 0.72rem);
    letter-spacing: 0.12em;
  }

  .status {
    margin-top: 38px;
    font-size: clamp(0.95rem, 4.4vw, 1.2rem);
    letter-spacing: 0.06em;
  }

  .contact {
    flex-direction: column;
    gap: 10px;
    padding-top: 34px;
  }

  .contact a {
    font-size: clamp(0.84rem, 3.8vw, 0.98rem);
    overflow-wrap: anywhere;
  }
}

@media (max-width: 380px) {
  .brand-main {
    font-size: clamp(1.7rem, 9.2vw, 2.45rem);
  }

  .brand-studio {
    font-size: 0.48rem;
    letter-spacing: 0.1em;
  }
}
