* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  font-family: 'Oswald', sans-serif;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/bg.jpg') center / cover no-repeat;
  filter: grayscale(100%) brightness(0.65);
  z-index: 0;
  opacity: 0;
  animation: fade-in 1.2s ease-out forwards;
}

.overlay {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  width: min(90vw, 1100px);
  padding: 3rem 4rem;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  animation: rise-in 0.8s ease-out 0.3s forwards;
}

.panel {
  flex: 1;
  opacity: 0;
  animation: rise-in 0.8s ease-out forwards;
}

.services {
  animation-delay: 0.6s;
}

.logo {
  animation-delay: 0.8s;
}

.contact {
  animation-delay: 1s;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services {
  text-align: right;
}

.services ul {
  list-style: none;
}

.services li {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.logo {
  flex: 1.5;
  text-align: center;
}

.logo h1 {
  font-size: 7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  text-stroke: 2px #fff;
}

.contact {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-transform: uppercase;
}

.contact h2 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}

.contact a {
  color: #fff;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }

  .overlay {
    flex-direction: column;
    width: 90vw;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
  }

  .services {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .logo {
    order: -1;
  }

  .logo h1 {
    font-size: 4.5rem;
    -webkit-text-stroke: 1.5px #fff;
    text-stroke: 1.5px #fff;
  }

  .services li {
    margin-bottom: 0.4rem;
  }

  .contact {
    line-height: 1.6;
  }
}
