/* BASE */
body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: #f5f5f3;
  color: #222;
}

/* CONTENITORE PAGINA */
.page {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  text-align: center;
}

/* IMMAGINI – REGOLA FONDAMENTALE */
.page img {
  width: 100%;
  max-width: 760px;   /* << QUESTO È IL BLOCCO VERO */
  height: auto;
  display: block;
  margin: 60px auto;
}

/* SECONDA IMMAGINE PIÙ PICCOLA */
.page img.secondary{
  width: 100%;
  max-width: 560px;
  height: auto;
}


/* TESTI */
h1 {
  font-weight: normal;
  letter-spacing: 0.08em;
  margin: 80px 0 10px;
}

.meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 60px;
}

.text {
  max-width: 640px;
  margin: 0 auto 80px;
  font-size: 16px;
  line-height: 1.8;
}


.closing {
  font-size: 15px;
  color: #555;
  margin: 80px 0;
}

/* NAVIGAZIONE */
.nav {
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
  font-size: 40px;
  color: #777;
}

.nav a {
  text-decoration: none;
  color: inherit;
}

/* LOGO — SOLO SU HOVER, NIENTE SCROLL */
.logo-carrara {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ATTIVAZIONE: AREA ALTO-SINISTRA */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  z-index: 999;
}

/* quando il mouse entra nell’area */
body:hover .logo-carrara {
  opacity: 0.4;
  pointer-events: auto;
}

/* hover diretto */
.logo-carrara:hover {
  opacity: 1;
}

.logo-carrara img {
  width: 64px;
  height: auto;
  margin: 0;
  max-width: none;
}

