html, body { height: 100%; margin: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6vh 4vw;            /* breathing room on small screens */
  background: #fff;             /* adjust if your logo is light/dark */
}

.container {
  text-align: center;
}

.logo {
  width: min(70vw, 820px);
  height: auto;
  display: block;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.06));
}

.contacts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1rem;
  flex-wrap: wrap;              /* stacks nicely on mobile */
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.6;
  color: #4b5563;               /* neutral gray */
}

.contacts .label {
  font-weight: 600;
  opacity: 0.9;
}

.contacts .email {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contacts .email:hover,
.contacts .email:focus {
  border-bottom-color: currentColor;
}

.contacts .divider {
  opacity: 0.45;
  margin: 0 .25rem;
}
