:root {
  --red: #e11d48;
  --red-dark: #be123c;
  /* COULEURS DARK MODE ADOUCIES */
  --border-light: #3f3f46;   /* Ligne de séparation gris foncé */
  --text-primary: #f3f4f6;   /* Texte principal très clair */
  --text-secondary: #a1a1aa; /* Texte secondaire gris clair */
  --bg-primary: #18181b;     /* Fond principal gris très foncé (presque noir, mais plus doux) */
  --bg-secondary: #27272a;   /* Fond des blocs / cartes plus claires que le fond principal */
  --bg-light: #3f3f46;       /* Fond des éléments clairs (chips, inputs) */
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  color: var(--text-primary);
  font-family: 'Poppins', system-ui, sans-serif;
  line-height: 1.5;
  scroll-behavior: smooth;
  animation: fadeIn 0.8s ease-out;
}

body {
  background-color: var(--bg-primary);
  transition: filter 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: var(--red);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background-color: rgba(24, 24, 27, 0.9); 
  backdrop-filter: saturate(1.2) blur(6px);
  border-bottom: 1px solid var(--border-light);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.logo {
  height: 60px;
  width: auto;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s ease-in-out;
  cursor: pointer;
}

.nav a:hover {
  color: var(--red);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--red);
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav a.active {
  color: var(--red);
  font-weight: 600;
}

.btn {
  padding: 12px 20px;
  border-radius: 12px;
  background-color: var(--red);
  color: white !important;
  font-weight: 600;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--red-dark);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
  color: var(--text-primary);
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
    padding: 20px;
  }
  .nav.show {
    display: flex;
  }
  .nav a {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }
  .nav a.btn {
    border: 1px solid var(--border-light);
  }
  .nav-toggle {
    display: block;
  }
  .btn {
    width: 100%;
    margin-top: 10px;
  }
}

/* Hero Section */
.hero-parallax {
  position: relative;
  z-index: 1;
  height: 100vh;
  padding-top: 100px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  transition: filter 0.5s ease-out;
}

.hero-parallax::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2));
  z-index: 0;
}

.hero-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: grayscale(10%) brightness(100%) saturate(120%);
}

.hero-parallax::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to top, var(--bg-primary), transparent); 
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.heading-xl {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
}

.accent-underline {
  color: var(--red);
}

.lead-xl {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 20px auto 40px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  padding: 0 10px;
}

.button {
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .button {
    width: 100%;
    max-width: 300px;
  }
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); 
}

.button.primary {
  background-color: var(--red);
  color: white;
}

.button.secondary {
  background-color: rgba(255, 255, 255, 0.05); 
  color: white;
  border: 2px solid var(--text-secondary);
  backdrop-filter: blur(5px);
}

.button.secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: var(--bg-light); 
  color: var(--red);
  border-radius: 999px;
  border: 1px solid var(--border-light);
  font-weight: 500;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out, color 0.2s ease-in-out;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.chip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-color: var(--red);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1);
  z-index: -1;
}

.chip:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15); 
}

.chip:hover::before {
  transform: translate(-50%, -50%) scale(1.5);
}

.chip:active {
  transform: translateY(0);
  box-shadow: none;
}

.chip svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Service Cards - 4 colonnes pour prestations.html */
.cards-grid,
.grid.cards-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px;
  padding-top: 20px;
}

/* Cartes normales - 3 colonnes pour location.html (cards sans service-card) */
.card:not(.service-card) {
  background-color: var(--bg-secondary); 
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
}

/* Grille pour les packs (location.html) - reste en 3 colonnes */
.cards-grid:has(.card:not(.service-card)) {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 1200px) {
  .cards-grid,
  .grid.cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .cards-grid,
  .grid.cards-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
}

.card.reveal, 
.service-card.reveal, 
.feature-split-container.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.reveal.visible, 
.service-card.reveal.visible, 
.feature-split-container.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  background-color: var(--bg-secondary); 
  border: 1px solid var(--border-light);
  border-radius: 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  cursor: pointer;
  min-height: 450px;
  width: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15); 
}

.service-card-image {
  width: 100%;
  height: 200px; 
  overflow: hidden; 
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out; 
}

.service-card:hover .service-card-image img {
  transform: scale(1.1); 
}

.service-card-text {
  padding: 20px;
  flex-grow: 1; 
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card-heading {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin: 0 0 10px;
  word-wrap: break-word;
}

.card-text {
  font-size: clamp(0.9rem, 2vw, 0.95rem);
  color: var(--text-secondary);
  line-height: 1.6;
}

.heading-2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  padding: 0 10px;
}

.container h1.heading-xl {
  margin-bottom: 10px;
  margin-top: 0;
}

.container .lead-xl {
  margin-top: 10px;
  margin-bottom: 20px;
}

.container .heading-2 {
  margin-top: 30px;
}

.container h2.heading-2:first-of-type {
  margin-top: 20px;
}

/* Feature Split */
.feature-split-container {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 60px; 
  margin-bottom: 60px;
}

.split-image-left, 
.split-image-right {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
  cursor: pointer;
}

.split-image-left {
  transform: translateY(20px);
}

.split-image-right {
  transform: translateY(-20px);
}

.split-text-left, 
.split-text-right {
  flex: 1;
}

.split-text-left h2, 
.split-text-right h2 {
  text-align: left;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.6;
  padding: 0 10px;
}

.bullets {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.bullets li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.5;
  word-wrap: break-word;
}

.bullets li:before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: var(--red);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .feature-split-container {
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
  }
  .split-image-left, 
  .split-image-right {
    transform: none;
  }
  .split-text-left h2, 
  .split-text-right h2 {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .feature-split-container {
    margin-top: 30px;
    gap: 20px;
  }
}

/* General Layout */
main {
  background-color: var(--bg-primary);
  z-index: 2;
  position: relative;
  margin-top: -100px;
  padding-top: 100px;
}

/* Espacements sections */
.section {
  padding: 40px 0;
}

.site-main > .section:first-child {
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-main > .section:not(:first-child) {
  padding-top: 30px;
  padding-bottom: 30px;
}

.cta-bar {
  text-align: center;
  margin-top: 60px;
}

.pill-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  background-color: var(--bg-light); 
  color: var(--red);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
  white-space: nowrap;
}

.card {
  background-color: var(--bg-secondary); 
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 769px) {
  .card:not(.service-card) {
    padding: 40px 30px;
  }
}

.card:not(.service-card):hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
}

.card .bullets {
  margin-top: 10px;
}

.card .bullets li {
  color: var(--text-primary);
  font-size: 1rem;
}

.card-price {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 800;
  color: var(--red);
  margin: 10px 0 20px;
  line-height: 1.2;
}

.card-price-unit {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.location-spacer {
  height: 80vh;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15); 
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Grille des réalisations */

.realisation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.realisation-card {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.realisation-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.35); 
}

.realisation-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0));
  transition: background 0.3s ease-in-out;
}

.realisation-card:hover::before {
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.realisation-content {
  position: relative;
  z-index: 1;
  padding: 24px 24px 26px;
  color: white;
  transition: opacity 0.3s ease-in-out;
}

.realisation-content h3 {
  margin: 0;
  font-size: 1.4rem;
}

.realisation-content p {
  margin: 6px 0 0;
  font-size: 0.98rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
}

/* ===== Lightbox images améliorée ===== */

.lightbox {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top, rgba(225, 29, 72, 0.25), transparent 55%),
    rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox-inner {
  position: relative;
  max-width: min(1100px, 90vw);
  max-height: min(80vh, 700px);
  background-color: rgba(24, 24, 27, 0.95);
  border-radius: 20px;
  border: 1px solid var(--border-light);
  padding: 14px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: default;
}

#lightbox-img,
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 14px;
  transform: scale(0.97);
  transition: transform 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.lightbox.show #lightbox-img,
.lightbox.show .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border-light);
  background: rgba(24, 24, 27, 0.9);
  color: var(--text-primary);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition:
    background-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.lightbox-close:hover {
  background-color: var(--red);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 18px rgba(225, 29, 72, 0.35);
}

.lightbox-close:active {
  transform: scale(0.96);
  box-shadow: none;
}

@media (max-width: 640px) {
  .lightbox-inner {
    max-width: 94vw;
    max-height: 80vh;
    padding: 10px;
    border-radius: 16px;
  }

  .lightbox-close {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border-light);
  padding: 25px 0;
  color: var(--text-secondary);
  margin-top: 60px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-left: 15px;
  cursor: pointer;
}

.footer-nav a:hover {
  color: var(--red);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-grid .card {
  padding: 40px;
  border-radius: 12px;
  background-color: var(--bg-secondary); 
  border: 1px solid var(--border-light);
}

.contact-grid .card h2 {
  margin-top: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--bg-light); 
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  background-color: var(--bg-primary); 
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--bg-light); 
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  background-color: var(--bg-primary); 
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a1a1aa'%3E%3Cpath d='M12 15.75L6 9.75H18L12 15.75Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.contact-info-card {
  padding: 40px;
}

.contact-info-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

.contact-info-card p {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--text-secondary);
}

.social-links {
  margin-top: 30px;
}

.social-links h4 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: var(--text-primary);
}

.social-icon {
  display: inline-block;
  margin-right: 15px;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-2px);
}

.social-icon img {
  width: 100%;
  height: 100%;
}

/* Prose / mentions légales */

.prose {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

.prose h1, 
.prose h2, 
.prose h3 {
  text-align: left;
}

.prose h2 {
  margin-top: 50px;
}

.prose p, 
.prose ul, 
.prose li {
  color: var(--text-secondary);
}

/* Ajustements divers */

.site-main {
  background-color: var(--bg-primary);
  z-index: 2;
  position: relative;
  margin-top: -100px;
  padding-top: 100px;
}

.red-accent {
  color: var(--red);
}

.button.secondary.contrast {
  background-color: var(--bg-primary);
  color: var(--red);
  border: 2px solid var(--red);
}

.button.secondary.contrast:hover {
  background-color: var(--bg-light);
  border-color: var(--red-dark);
}

.catalog-toolbar .select:focus,
.catalog-toolbar .input:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.red-accent { 
  color: var(--red); 
}

.lead-xl { 
  font-size: 1.05rem; 
  line-height: 1.55;
}

.aside-card a.active { 
  border-color: var(--red); 
  color: #fff; 
  background: rgba(225,29,72,.12); 
}

.chip:focus-visible,
.btn:focus-visible,
.button:focus-visible,
.nav a:focus-visible,
.form-group input:focus-visible,
.form-group textarea:focus-visible,
.form-group select:focus-visible {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225,29,72,.18);
}

.container .heading-xl { 
  font-size: clamp(2rem, 4.2vw, 2.8rem); 
}

@media (max-width: 480px){
  .container { 
    padding: 0 16px; 
  }
  
  .section {
    padding: 30px 0;
  }
  
  .site-main > .section:first-child {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  
  .heading-xl {
    font-size: 1.75rem;
  }
  
  .lead-xl {
    font-size: 1rem;
  }
  
  .service-chips {
    gap: 8px;
  }
  
  .chip {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}