/* ============================================================
   TRISTJÄRNA — vvs.css
   Styles spécifiques à vvs.html (page dédiée VVS, service phare)
   ============================================================ */

/* ── Hero ── */
#vvs-hero {
  position: relative;
  overflow: hidden;
  background: var(--marine);
  padding-top: calc(var(--nav-h) + clamp(72px, 10vw, 120px));
  padding-bottom: clamp(56px, 7vw, 90px);
  text-align: center;
}
#vvs-hero .vvs-badge {
  margin-bottom: 20px;
}
#vvs-hero h1 {
  font-family: var(--font-vvs-title);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--papier);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  max-width: 820px;
  margin-inline: auto;
}
#vvs-hero .hero-sub {
  font-family: var(--font-vvs-body);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(244,241,234,0.75);
  line-height: 1.7;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: 32px;
}

/* ── Why VVS / réassurance ── */
#vvs-why {
  background: var(--papier);
  padding-block: var(--section-py);
}
.vvs-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 40px);
}
.vvs-why-item {
  text-align: center;
}
.vvs-why-number {
  font-family: var(--font-vvs-title);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--vvs-blue);
  line-height: 1;
  margin-bottom: 8px;
}
.vvs-why-label {
  font-size: 0.9rem;
  color: var(--pierre);
  line-height: 1.5;
  max-width: 240px;
  margin-inline: auto;
}

/* ── Gallery preview ── */
#vvs-gallery-preview {
  background: #EDEBE3;
  padding-block: var(--section-py);
}
.vvs-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.vvs-gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  transition: transform 0.5s ease;
}
.vvs-gallery-grid a { display: block; overflow: hidden; border-radius: var(--radius); }
.vvs-gallery-grid a:hover img { transform: scale(1.05); }
.vvs-gallery-cta { text-align: center; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .vvs-why-grid { grid-template-columns: 1fr; gap: 32px; }
  .vvs-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .vvs-gallery-grid > *:last-child { display: none; }
}
