/* ===========================
   TABLET BLOCK OVERLAY
   Mostra messaggio "in arrivo" su tablet (touch + 768-1180px)
   Tipografia coerente con chi-siamo.html
   =========================== */

/* Default: nascosto */
.tablet-block {
  display: none;
}

/* Attivo solo su tablet (touch + range tipico tablet) */
@media (pointer: coarse) and (min-width: 768px) and (max-width: 1180px) {
  .tablet-block {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #faf8f4;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    box-sizing: border-box;
  }
  /* Nascondo tutto il resto della pagina */
  body > *:not(.tablet-block) {
    display: none !important;
  }
}

.tablet-block-inner {
  text-align: center;
  max-width: 720px;
  width: 100%;
}

.tablet-block-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #FF2F73;
  margin-bottom: 56px;
}

.tablet-block-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #1a1a1a;
  margin: 0 0 24px;
}

.tablet-block-title em {
  font-style: italic;
  color: #FF2F73;
  font-weight: 500;
}

.tablet-block-sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  max-width: 520px;
  margin: 0 auto;
}

.tablet-block-sub strong {
  color: #1a1a1a;
  font-weight: 600;
}
