/* Hero section */
.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider .slick-list,
.hero-slider .slick-track {
  height: 100%;
}

.hero-slide {
  height: 100%;
  width: 100%;
  background-image: var(--hero-slide);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* filter: saturate(1.15) brightness(0.75) contrast(1.05); */
  transition: transform 7s ease;
}

.hero-slider .slick-active .hero-slide {
  transform: scale(1.05);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 28, 23, 0.14) 0%, rgba(16, 28, 23, 0.24) 38%, rgba(16, 28, 23, 0.56) 100%);
  z-index: 1;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.hero-notice {
  position: absolute;
  top: clamp(1.4rem, 5vw, 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 0.25rem;
  width: min(92vw, 32rem);
  padding: 0.9rem 1rem 1rem;
  animation: heroNoticeReveal 0.85s ease both;
}

.hero-notice::after {
  content: "";
  width: min(12rem, 40vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 224, 138, 0), rgba(255, 224, 138, 0.95), rgba(255, 224, 138, 0));
  box-shadow: 0 0 18px rgba(255, 224, 138, 0.35);
  animation: heroNoticeGlow 3.6s ease-in-out infinite;
}

.hero-notice__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  background: rgba(24, 41, 34, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(8px);
  color: #fff3bf;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(12, 18, 16, 0.18);
}

.hero-notice__year {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 10px 22px rgba(8, 12, 11, 0.28);
  letter-spacing: 0.04em;
}

.hero-content {
  position: absolute;
  left: 50%;
  bottom: clamp(4.5rem, 11vw, 7rem);
  transform: translateX(-50%);
  z-index: 2;
  width: min(92vw, 54rem);
  padding: 0 1rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-title {
  display: grid;
  gap: 0.18rem;
  margin: 0;
  justify-items: center;
  color: #ffffff;
  text-shadow: 0 18px 38px rgba(12, 18, 16, 0.42);
}

.hero-line {
  display: block;
  white-space: nowrap;
  line-height: 1.02;
}

.hero-line--first {
  font-size: clamp(2.05rem, 5vw, 3.9rem);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-line--second {
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-word {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.03em;
  margin-right: 0.24em;
}

.hero-word:last-child {
  margin-right: 0;
}

.hero-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px) scale(0.88);
  animation: heroLetterPop 0.55s ease forwards, heroLetterGlow 6s ease-in-out infinite;
}

.hero-letter--static {
  opacity: 1 !important;
  transform: none !important;
  animation: heroLetterGlow 6s ease-in-out infinite !important;
}

.hero-letter:nth-child(4n + 1) {
  color: #ffffff;
}

.hero-letter:nth-child(4n + 2) {
  color: #ffe08a;
}

.hero-letter:nth-child(4n + 3) {
  color: #b5f2d8;
}

.hero-letter:nth-child(4n + 4) {
  color: #f8f2d8;
}

@keyframes heroNoticeReveal {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-12px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes heroNoticeGlow {
  0%, 100% {
    opacity: 0.72;
    transform: scaleX(0.96);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.04);
  }
}

@keyframes heroLetterPop {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.8) rotate(-4deg);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.08) rotate(2deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

@keyframes heroLetterGlow {
  0%, 100% {
    text-shadow: 0 8px 18px rgba(12, 18, 16, 0.18);
    filter: saturate(1);
  }
  50% {
    text-shadow: 0 10px 28px rgba(255, 236, 176, 0.26);
    filter: saturate(1.16);
  }
}

.hero-slider .slick-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  z-index: 2;
}

.hero-slider .slick-dots li button:before {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-slider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #ffe08a;
}

.home-conversion {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  padding: 0 1rem 2.5rem;
}

.conversion-card,
.final-cta-card {
  display: grid;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 248, 239, 0.98), rgba(255, 251, 245, 0.96));
  border: 1px solid rgba(139, 191, 146, 0.2);
  border-radius: 28px;
  box-shadow: 0 24px 50px rgba(58, 58, 58, 0.08);
  padding: 2rem;
}

.conversion-card {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
  position: relative;
  overflow: hidden;
}

.conversion-card::before {
  content: "";
  position: absolute;
  inset: auto -90px -110px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 191, 146, 0.18), rgba(139, 191, 146, 0));
  pointer-events: none;
}

.conversion-copy {
  position: relative;
  z-index: 1;
}

.conversion-kicker,
.section-eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--primary-color);
  font-weight: 700;
}

.conversion-title,
.final-cta-copy h2 {
  margin: 0;
  color: #24423a;
  line-height: 1.2;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.conversion-text,
.home-path__text {
  margin: 1rem 0 0;
  font-size: 1.03rem;
  color: rgba(58, 58, 58, 0.84);
  max-width: 60ch;
}

.conversion-actions,
.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
}

.cta-button--primary {
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(76, 121, 84, 0.22);
}

.cta-button--secondary {
  background: #ffffff;
  color: var(--text-color);
  border: 1px solid rgba(58, 58, 58, 0.12);
}

.cta-button--visit {
  background: linear-gradient(135deg, #f4d68b, #e7ba58);
  color: #4e3915;
  border: 1px solid rgba(143, 103, 30, 0.18);
  box-shadow: 0 16px 28px rgba(182, 135, 49, 0.24);
}

.cta-button--visit:hover {
  background: linear-gradient(135deg, #f7dea0, #edc46b);
  box-shadow: 0 18px 30px rgba(182, 135, 49, 0.28);
}

.conversion-promises {
  display: grid;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.promise-chip {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(139, 191, 146, 0.16);
  color: #2d433c;
  font-weight: 600;
  box-shadow: 0 14px 24px rgba(58, 58, 58, 0.05);
}

.promise-chip i {
  color: var(--primary-color);
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 191, 146, 0.14);
}

.home-path {
  padding: 1.5rem 1rem 3.5rem;
}

.home-path__intro {
  max-width: 760px;
  margin: 0 auto 2rem;
  text-align: center;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.path-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 18px 36px rgba(58, 58, 58, 0.08);
  border: 1px solid rgba(139, 191, 146, 0.14);
  position: relative;
  overflow: hidden;
}

.path-card::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.path-number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 191, 146, 0.16);
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.path-card h3 {
  margin: 0 0 0.7rem;
  color: #24423a;
  font-size: 1.2rem;
}

.path-card p {
  margin: 0;
  color: rgba(58, 58, 58, 0.82);
}

.home-final-cta {
  padding: 0 1rem 4.5rem;
}

.final-cta-card {
  grid-template-columns: minmax(0, 1.2fr) auto;
  align-items: center;
  background: linear-gradient(135deg, rgba(139, 191, 146, 0.2), rgba(255, 251, 245, 0.98));
}

.final-cta-copy h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}


/* Features grid */

.features {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

  max-width: 1200px;

  margin: 0 auto;

}



.feature {

  background-color: #ffffff;

  border-radius: 8px;

  padding: 2rem;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  text-align: center;

  transition: transform 0.3s ease;

}



.feature:hover {

  transform: translateY(-5px);

}



/* Values section */

.values {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

  gap: 2rem;

  max-width: 1200px;

  margin: 0 auto;

}



.value {

  background-color: #ffffff;

  border-radius: 8px;

  padding: 2rem;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

  text-align: center;

  transition: transform 0.3s ease;

}



.value:hover {

  transform: translateY(-5px);

}



.value h3 {

  margin-top: 0;

  color: var(--primary-color);

  font-size: 1.3rem;

}



.value p {

  font-size: 0.95rem;

  margin: 0.5rem 0 0;

}



.value i {

  font-size: 2rem;

  color: var(--primary-color);

  margin-bottom: 0.5rem;

}



.feature i {

  font-size: 2rem;

  color: var(--primary-color);

  margin-bottom: 0.5rem;

}



.feature h3 {

  margin-top: 0.5rem;

  font-size: 1.2rem;

  color: var(--primary-color);

}



.feature p {

  font-size: 0.95rem;

}



/* Word from Director */

.director {

  max-width: 900px;

  margin: 0 auto;

  background-color: #ffffff;

  padding: 2rem;

  border-radius: 8px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}



.director p {

  font-style: italic;

  margin-bottom: 1rem;

}



.director .signature {
  font-weight: bold;
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .hero {
    min-height: 65vh;
  }
  .hero-content {
    bottom: 5.5rem;
  }
  .conversion-card,
  .final-cta-card {
    grid-template-columns: 1fr;
  }
  .path-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 62vh;
  }
  .hero-content {
    bottom: 4.5rem;
    width: min(94vw, 32rem);
    padding: 0 0.75rem;
  }
  .hero-notice {
    top: 1.1rem;
    width: min(92vw, 26rem);
    gap: 0.35rem;
    padding: 0.75rem 0.7rem 0.9rem;
  }
  .hero-notice__label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    padding: 0.45rem 0.78rem;
  }
  .hero-notice__year {
    font-size: 0.86rem;
  }
  .hero-line {
    gap: 0.22em;
  }
  .hero-line--first {
    font-size: clamp(1.65rem, 7.4vw, 2.5rem);
  }
  .hero-line--second {
    font-size: clamp(1.9rem, 8.8vw, 3rem);
  }
  .home-conversion {
    margin-top: -44px;
    padding-bottom: 2rem;
  }
  .conversion-card,
  .final-cta-card {
    padding: 1.4rem;
    border-radius: 22px;
  }
  .conversion-promises {
    grid-template-columns: 1fr;
  }
  .features,
  .values {
    grid-template-columns: 1fr;
  }
  .director {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 59vh;
  }
  .hero-notice {
    top: 0.95rem;
    width: min(92vw, 21rem);
  }
  .hero-notice__label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  .hero-notice__year {
    font-size: 0.75rem;
  }
  .hero-content {
    bottom: 3.8rem;
  }
  .hero-line--first {
    font-size: clamp(1.32rem, 7vw, 1.92rem);
    letter-spacing: 0.01em;
  }
  .hero-line--second {
    font-size: clamp(1.5rem, 8.2vw, 2.35rem);
  }
  .cta-button {
    width: 100%;
  }
  .feature,
  .value {
    padding: 1.5rem;
  }
}

@media (max-width: 360px) {
  .hero-content {
    bottom: 3.4rem;
  }
  .hero-notice {
    width: min(94vw, 18rem);
  }
  .hero-line--first {
    font-size: 1.16rem;
  }
  .hero-line--second {
    font-size: 1.38rem;
  }
}


.director-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 10px 40px rgba(0,0,0,.06);
}

#director{
  background:#fbf3e3; /* ton beige doux, si tu l’utilises déjà */
}

.director-photo{
  border-radius:16px;
  object-fit:cover;
}
