/* ===========================
   SAVOIR-FAIRE PAGE
   Scoped with .savoir-faire-page / .sf-*
   =========================== */

.savoir-faire-page {
  font-family: 'Montserrat', sans-serif;
  color: #111;
  margin: 0;
  background: #fff;
}

.savoir-faire-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* --- Hero --- */
.sf-hero {
  position: relative;
  min-height: 650px;
  background:
    url('Photos/neptune Photos/SavoireF.gif') center/cover no-repeat,
    #2b2b2b;
}

.sf-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sf-breadcrumb {
  position: absolute;
  top: 40px;
  left: 60px;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: #fff;
}

.sf-community {
  position: absolute;
  top: 40px;
  right: 60px;
  font-size: 14px;
  font-weight: 300;
  color: #ccc;
}

.sf-hero-content {
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 800px;
}

.sf-hero-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0 0 20px;
}

.sf-hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 40px;
  line-height: 1.6;
}

.sf-hero-btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  background: transparent;
  transition: background 0.25s, color 0.25s;
}

.sf-hero-btn:hover {
  background: #fff;
  color: #111;
}

/* --- Split text: L'art de concevoir --- */
.sf-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 10%;
  background: #fff;
  align-items: start;
}

.sf-split-title h2,
.sf-innovation-text h2,
.sf-cross-text h2,
.sf-final h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: #888;
  line-height: 1.15;
  margin: 0 0 0;
}

.sf-split-text p,
.sf-innovation-text p,
.sf-cross-text p,
.sf-final p {
  font-size: 16px;
  line-height: 1.85;
  color: #333;
  max-width: 520px;
}

/* --- Full-width banners --- */
.sf-full-banner,
.sf-product-banner {
  width: 100%;
  line-height: 0;
}

.sf-full-banner img,
.sf-product-banner img {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
}

/* --- Innovation section --- */
.sf-innovation {
  background: #fff;
  padding: 100px 10% 80px;
}

.sf-innovation-top {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: end;
  margin-bottom: 0;
}

.sf-innovation-text {
  padding-bottom: 60px;
}

.sf-innovation-text h2 {
  margin-bottom: 32px;
}

.sf-innovation-feature img {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

/* --- Cross grid (alternating image / text) --- */
.sf-cross-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  background: #fff;
}

.sf-kitchen-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  align-items: center;
}

.sf-cross-image {
  display: flex;
  padding: 60px 40px;
  min-height: 420px;
}

.sf-cross-image--right {
  justify-content: flex-end;
  align-items: flex-end;
}

.sf-cross-image--left {
  justify-content: flex-start;
  align-items: flex-start;
}

.sf-cross-image img {
  width: 75%;
  max-width: 420px;
  object-fit: cover;
}

.sf-cross-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  min-height: 420px;
}

.sf-cross-text h2 {
  margin-bottom: 32px;
}

/* --- Final CTA --- */
.sf-final {
  text-align: center;
  padding: 100px 10% 120px;
  background: #fff;
}

.sf-final h2 {
  margin-bottom: 24px;
}

.sf-final p {
  max-width: 700px;
  margin: 0 auto;
  color: #444;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .sf-split,
  .sf-innovation-top,
  .sf-cross-grid,
  .sf-kitchen-block {
    grid-template-columns: 1fr;
  }

  .sf-innovation {
    padding: 72px 6% 40px;
  }

  .sf-innovation-top {
    gap: 28px;
    align-items: start;
  }

  .sf-innovation-text {
    padding-bottom: 0;
    max-width: none;
  }

  .sf-innovation-text h2 {
    margin-bottom: 16px;
  }

  .sf-innovation-feature {
    order: 2;
    width: 100%;
  }

  .sf-innovation-feature img {
    margin: 0 auto;
    max-width: min(320px, 70vw);
    display: block;
  }

  .sf-product-banner {
    margin-top: 0;
    padding: 0;
  }

  .sf-product-banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }

  .sf-cross-image,
  .sf-cross-text {
    min-height: auto;
    padding: 40px 24px;
  }

  .sf-cross-image img {
    width: 100%;
    max-width: 100%;
  }

  .sf-breadcrumb,
  .sf-community {
    position: static;
    align-self: flex-start;
    padding: 24px;
  }

  .sf-hero-overlay {
    justify-content: flex-start;
    padding-top: 20px;
  }

  .sf-hero-content {
    margin: auto;
  }
}

@media (max-width: 600px) {
  .sf-hero {
    min-height: 480px;
  }

  .sf-split {
    padding: 60px 24px;
  }

  .sf-innovation {
    padding: 48px 20px 28px;
  }

  .sf-innovation-top {
    gap: 20px;
  }

  .sf-innovation-text h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 12px;
  }

  .sf-innovation-text p {
    font-size: 14px;
    line-height: 1.7;
  }

  .sf-innovation-feature img {
    max-width: min(260px, 68vw);
  }

  .sf-product-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .sf-product-banner img {
    min-height: 140px;
    object-fit: cover;
  }

  .sf-cross-text {
    padding: 40px 24px;
  }
}
