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

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 200;
  background-color: #0a0a0a;
  color: #ffffff;
  animation: bgShift 20s ease-in-out infinite;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@keyframes bgShift {
  0%   { background-color: #0a0a0a; }
  30%  { background-color: #0c1b2e; }
  60%  { background-color: #161616; }
  85%  { background-color: #0c1b2e; }
  100% { background-color: #0a0a0a; }
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- HERO --- */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 2rem;
}

.hero h1 {
  font-size: clamp(3.5rem, 14vw, 11rem);
  font-weight: 200;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: #ffffff;
  line-height: 1;
  user-select: none;
}

/* --- CONTACT --- */

.contact {
  padding: 2.5rem 2rem 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 640px;
  margin: 0 auto;
}

.contact-person {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-name {
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 0.15rem;
}

.contact-person a {
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-person a:hover {
  color: rgba(255, 255, 255, 0.88);
}

.contact-divider {
  width: 1px;
  height: 56px;
  background: rgba(255, 255, 255, 0.09);
  flex-shrink: 0;
}

/* --- MOBILE --- */

@media (max-width: 560px) {
  .contact-inner {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .contact-divider {
    width: 36px;
    height: 1px;
  }
}
