@font-face {
  font-family: "Visual";
  src: url("assets/fonts/Visual-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

html, body {
  height: 100%;
}

body {
  background: #000000;
  color: #ffffff;
  font-family: "Visual", "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8vh 6vw 4vh;
}

.wrap {
  flex: 1;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 1.6em;
}

.logo-text {
  font-family: "Visual", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 60px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 0.4em;
}

.tagline {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  max-width: 34ch;
}

.location {
  font-size: 1rem;
  color: #ffffff;
  opacity: 0.85;
}

.contact {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

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

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

.updates {
  font-size: 1rem;
  opacity: 0.85;
}

.ig-link {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: #ffffff;
  text-underline-offset: 3px;
}

.ig-link:hover,
.ig-link:focus-visible {
  opacity: 0.7;
}

.site-footer {
  width: 100%;
  max-width: 480px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}

.temp-notice,
.copyright {
  font-size: 0.75rem;
  opacity: 0.55;
  letter-spacing: 0.02em;
}

/* Focus visibility for accessibility */
a:focus-visible {
  outline: 1px solid #ffffff;
  outline-offset: 3px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  body {
    padding: 7vh 7vw 4vh;
  }
  .logo-text {
    font-size: 46px;
  }
  .tagline,
  .location,
  .contact,
  .updates {
    font-size: 0.9rem;
  }
  .tagline {
    max-width: 28ch;
  }
  .wrap {
    gap: 1.3em;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
