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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Cabin", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: #111;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem clamp(1.25rem, 4vw, 3.5rem);
}

.logo img {
  display: block;
  width: clamp(140px, 18vw, 214px);
  height: auto;
}

.contact-link {
  color: #111;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0.25rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: #478ac9;
  border-bottom-color: #478ac9;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem clamp(1rem, 4vw, 3rem) 3rem;
}

.hero {
  display: block;
  max-width: min(90vw, 900px);
  max-height: 75vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 480px) {
  .site-header {
    padding: 1.25rem 1rem;
  }
}
