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

html, body {
  height: 100%;
}

body {
  background-color: #1A1915;
  color: #ffffff;
  font-family: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 2rem 3rem;
  /* Prevent text size inflation on iOS */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  max-width: 640px;
  width: 100%;
}

.logo {
  width: min(360px, 55vw);
  height: auto;
}

.footer {
  position: fixed;
  bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}


.headline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
}

.contact {
  font-size: 0.85rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
  /* Minimum tap target size on touch devices */
  display: inline-block;
  padding: 0.5rem 0;
}

.contact a:hover,
.contact a:focus-visible {
  color: #ffffff;
}

.contact a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.6);
  outline-offset: 4px;
  border-radius: 2px;
}
