.hero-essai {
  background-image: url("images/dif-galette-crepe.png");
}

.section-eyebrow {
  margin: 0 0 10px 0;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-primary);
}

.bloc {
  padding: 80px 0;
}

.bloc-a,
.bloc-c {
  background: #fff;
}

.bloc-b,
.bloc-d {
  background: #f6f1ea;
}

.bloc-col h2 {
  margin-bottom: 16px;
}

.bloc-col p {
  line-height: 1.9;
}

.bloc-col > img,
.bloc-col img.rounded,
.bloc-col > p > img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.carousel {
  width: 100%;
}

.carousel-inner {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.carousel-item img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next {
  width: 12%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(100%);
}

.bloc-e {
  background: linear-gradient(to bottom, #ffffff, #f9f4ec);
}

.offre-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.offre-intro h2 {
  margin-bottom: 12px;
}

.offre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.offre-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offre-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.offre-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.offre-card-content {
  padding: 22px 22px 24px;
  text-align: center;
}

.offre-card-content h3 {
  margin: 0 0 10px 0;
}

.offre-card-content p {
  margin: 0;
}

.footer-socials-minimal {
  display: flex;
  gap: 22px;
  margin-top: 18px;
}

.footer-socials-minimal a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-socials-minimal svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: all 0.3s ease;
}

.footer-socials-minimal a:hover {
  color: var(--c-accent);
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .carousel-item img {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .bloc {
    padding: 50px 0;
  }

  .bloc-grid,
  .bloc-grid.inverse,
  .offre-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .carousel-item img {
    height: 240px;
  }
}