/* ProgettoGiano — contatti.css */

.hero-compact {
  background: var(--cream);
  border-bottom: 1px solid var(--beige-deep);
  padding: var(--sp-section) 0 var(--sp-section-sm);
}
.hero-compact h1 { font-size: 40px; }
.hero-compact .lead { max-width: 720px; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-xxl);
  align-items: start;
}
.info-panel { position: sticky; top: 84px; display: grid; gap: var(--sp-lg); }

.info-block h3 {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-top: 0;
  font-size: 18px;
}
.info-block .icon { color: var(--primary); }
.info-block p, .info-block address { margin: 0 0 var(--sp-xs); font-style: normal; }
.info-block a { text-decoration: none; }
.info-block a:hover { text-decoration: underline; }

.hours-table { width: 100%; font-size: 14px; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid var(--hairline-soft); }
.hours-table td:last-child { text-align: right; color: var(--slate); }

.map-embed {
  border: 1px solid var(--hairline-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: var(--sp-xl);
}
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }

@media (max-width: 768px) {
  .hero-compact h1 { font-size: 30px; }
  .contact-layout { grid-template-columns: 1fr; }
  .info-panel { position: static; }
}
