    /* ---------- HERO (light su immagine, come nel PNG) ---------- */
    .hero.srv-hero {
  /* riuso .hero globale per overlay + layout */
  min-height: min(620px, calc(100svh - var(--header-h)));
}

.srv-hero .hero-media img {
  object-position: center 35%;
  /* inquadra bene il bimbo + tavolino */
}

.srv-hero .hero-inner {
  padding-block: clamp(80px, 12vw, 120px) clamp(28px, 6vw, 48px);
}

.srv-hero h1 {
  font-weight: 900;
  color: var(--accent);
  font-size: clamp(28px, 5.4vw, 42px);
  line-height: 1.12;
  margin: 0 0 10px;
}

.srv-hero p {
  color: #e9e9e9;
  max-width: 820px;
  margin: 0 auto 12px;
}

/* scroll dot centrata come nel PNG */
.srv-hero .scroll-dot {
  margin-top: 16px;
}

/* ---------- Titoli sezioni come PNG ---------- */
.srv-title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(22px, 4vw, 32px);
  color: var(--accent);
}

.srv-sub {
  margin: 0 0 26px;
  color: #6b6b6b;
}

.block-dark .srv-sub {
  color: #cfcfcf;
}

/* ---------- Cards immagine (aspect 3:4, no distorsioni) ---------- */
.srv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.srv-card {
  border-radius: 14px;
  overflow: hidden;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.srv-card img {
  aspect-ratio: 3/4;
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}

.srv-card h4 {
  margin: 0;
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

@media (hover: hover) {
  .srv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  }
}

/* ---------- Griglie responsive ---------- */
@media (max-width: 1024px) {
  .srv-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .srv-cards {
    grid-template-columns: 1fr;
  }
}

/* ---------- Sezione scura con cards (riduce contrasto bordo) ---------- */
.block-dark .srv-card {
  background: #111;
  border-color: rgba(255, 255, 255, 0.06);
}

/* ---------- Reveal on scroll ---------- */
.srv-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.srv-reveal.show {
  opacity: 1;
  transform: none;
}

.srv-stagger > * {
  opacity: 0;
  transform: translateY(10px);
}

.srv-stagger.show > * {
  animation: srvUp 0.5s ease both;
}

.srv-stagger.show > *:nth-child(2) {
  animation-delay: 0.06s;
}

.srv-stagger.show > *:nth-child(3) {
  animation-delay: 0.12s;
}

.srv-stagger.show > *:nth-child(4) {
  animation-delay: 0.18s;
}

.srv-stagger.show > *:nth-child(5) {
  animation-delay: 0.24s;
}

@keyframes srvUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .srv-reveal,
  .srv-stagger > * {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
