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

html, body {
  width: 100%;
  height: 100%;
  background-color: #000000;
  color: #ffffff;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}

body {
  padding: 2rem 2.5rem;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 5rem);
  max-width: 900px;
  text-align: center;
}

.image-wrapper {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
  animation-delay: 0.3s;
  width: 100%;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7rem; /* ← bigger gap: logo → slogan */
}

.image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 30vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.slogan {
  opacity: 0;
  animation: fadeIn 1.4s ease forwards;
  animation-delay: 0.9s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 2rem; /* ← shorter: slogan → divider */
}

.divider {
  opacity: 0;
  animation: fadeIn 1.4s ease forwards;
  animation-delay: 1.2s;
  width: 60px;
  height: 1px;
  background-color: #333333;
  margin-bottom: 2rem; /* ← same: divider → email */
}

.contact {
  opacity: 0;
  animation: fadeIn 1.4s ease forwards;
  animation-delay: 1.5s;
  font-size: clamp(0.75rem, 1.3vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #888888;
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.contact:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
  html, body {
    overflow: auto;
  }

  body {
    padding: 1.5rem 1.25rem;
  }

  .container {
    width: calc(100% - 2.5rem);
  }

  .image-wrapper {
    max-width: 85vw;
    margin-bottom: 3rem; /* ← bigger gap on mobile */
  }

  .slogan {
    letter-spacing: 0.14em;
    gap: 0.4rem;
    margin-bottom: 1.5rem; /* ← shorter on mobile */
  }

  .divider {
    width: 48px;
    margin-bottom: 1.5rem; /* ← same on mobile */
  }
}