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

html, body {
  height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* schermo intero. Per "quasi intero" vedi nota sotto */
  overflow: hidden;
  background-color: #1A1A1A; /* FERRO — colore di fallback finché non c'è la foto */
}

.hero-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* riempie senza deformare, ritaglia l'eccesso */
  object-position: center;
}

/* --- Logo, centrato sopra la foto --- */

.hero-overlay {
  position: absolute;
  z-index: 2;
  /* posizionato sulla zona più scura della foto: centrata, un filo sotto metà altezza */
  top: 64%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo {
  width: clamp(160px, 22vw, 320px);
  height: auto;
  display: block;
}

/* --- Barra contatti in basso --- */

.contact-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75em;
  padding: 1.25em 1em;
  background: rgba(26, 26, 26, 0.55); /* FERRO trasparente, leggibile su qualsiasi foto */
}

.contact-bar a {
  color: #E4DDD1;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.contact-bar a:hover {
  text-decoration: underline;
}

.contact-bar .divider {
  color: #9A8F7C; /* SOTTO */
}