/* ==========================================================================
   17. Concept
   ========================================================================== */

.concept-section {
  position: relative;
  overflow: hidden;

  padding-block: clamp(84px, 10vw, 150px);

  color: #111111;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(231, 111, 29, 0.1),
      transparent 26%
    ),
    linear-gradient(180deg, #f7f3ed 0%, #fffdf9 52%, #f3eee7 100%);
}

.concept-section::before {
  content: "";

  position: absolute;
  top: -140px;
  left: -170px;

  width: 420px;
  height: 420px;

  border: 1px solid rgba(231, 111, 29, 0.12);
  border-radius: 50%;
}

.concept-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns:
    minmax(0, 0.92fr)
    minmax(0, 1.08fr);
  gap: clamp(54px, 7vw, 112px);

  align-items: center;
}

.concept-content {
  max-width: 680px;
}

.concept-section .section-label {
  color: #d35a18;
}

.concept-title {
  color: #151515;
}

.concept-intro {
  margin: 28px 0 0;

  color: #242424;

  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 700;
  line-height: 1.75;
}

.concept-text {
  margin: 18px 0 0;

  color: #5f5b56;

  font-size: 1rem;
  line-height: 1.85;
}

.concept-highlights {
  display: grid;
  gap: 18px;

  margin-top: 34px;
}

.concept-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;

  padding: 20px 22px;

  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.66);

  box-shadow: 0 16px 44px rgba(57, 43, 29, 0.07);

  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.concept-highlight:hover {
  border-color: rgba(231, 111, 29, 0.32);

  box-shadow: 0 22px 56px rgba(57, 43, 29, 0.12);

  transform: translateX(7px);
}

.concept-highlight-icon {
  display: grid;
  place-items: center;

  width: 48px;
  height: 48px;

  border-radius: 15px;

  color: #e76f1d;
  background: rgba(231, 111, 29, 0.1);
}

.concept-highlight-icon svg {
  width: 26px;
  height: 26px;
}

.concept-highlight h3 {
  margin: 0;

  color: #1b1a18;

  font-size: 1rem;
  font-weight: 800;
}

.concept-highlight p {
  margin: 6px 0 0;

  color: #6d6862;

  font-size: 0.9rem;
  line-height: 1.65;
}

.concept-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 34px;
}

.concept-section .btn-outline {
  color: #1b1a18;
  border-color: rgba(20, 20, 20, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.concept-section .btn-outline:hover {
  color: #ffffff;
  border-color: #e76f1d;
  background: #e76f1d;
}

.concept-visual {
  position: relative;
}

.concept-image-card {
  position: relative;

  min-height: 610px;
  overflow: hidden;

  border-radius: 32px;

  box-shadow: 0 36px 90px rgba(32, 23, 15, 0.2);
}

.concept-image-card img {
  width: 100%;
  height: 100%;
  min-height: 610px;

  object-fit: cover;
  object-position: center;
}

.concept-image-overlay {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 48%,
    rgba(5, 7, 9, 0.82) 100%
  );
}

.concept-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 17px 18px;

  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;

  color: #ffffff;
  background: rgba(8, 11, 14, 0.72);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.concept-badge-icon {
  display: grid;
  place-items: center;

  width: 45px;
  height: 45px;

  flex: 0 0 auto;

  border-radius: 14px;

  color: #ff8a38;
  background: rgba(231, 111, 29, 0.14);
}

.concept-badge-icon svg {
  width: 25px;
  height: 25px;
}

.concept-badge div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.concept-badge strong {
  font-size: 0.95rem;
}

.concept-badge span {
  color: rgba(255, 255, 255, 0.58);

  font-size: 0.77rem;
}

.concept-location-card {
  position: absolute;
  top: 44px;
  left: -42px;

  display: flex;
  align-items: center;
  gap: 13px;

  max-width: 300px;
  padding: 17px 19px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    rgba(16, 20, 25, 0.94),
    rgba(10, 13, 17, 0.88)
  );

  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.24);
}

.concept-location-icon {
  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  flex: 0 0 auto;

  border-radius: 13px;

  color: #ff8a38;
  background: rgba(231, 111, 29, 0.14);
}

.concept-location-icon svg {
  width: 23px;
  height: 23px;
}

.concept-location-card div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.concept-location-card strong {
  font-size: 0.87rem;
}

.concept-location-card span {
  color: rgba(255, 255, 255, 0.57);

  font-size: 0.72rem;
  line-height: 1.4;
}

/* ==========================================================================
   Concept responsive
   ========================================================================== */

@media (max-width: 1100px) {
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .concept-content {
    max-width: 820px;
  }

  .concept-visual {
    width: min(100%, 880px);
    margin-inline: auto;
  }

  .concept-location-card {
    left: 24px;
  }
}

@media (max-width: 767px) {
  .concept-section {
    padding-block: 72px;
  }

  .concept-grid {
    gap: 44px;
  }

  .concept-title {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .concept-intro {
    margin-top: 22px;

    font-size: 1rem;
  }

  .concept-text {
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .concept-highlight {
    padding: 17px;
  }

  .concept-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .concept-image-card,
  .concept-image-card img {
    min-height: 460px;
  }

  .concept-image-card {
    border-radius: 24px;
  }

  .concept-location-card {
    position: relative;
    top: auto;
    left: auto;

    width: 100%;
    max-width: none;

    margin-top: 16px;
  }
}

@media (max-width: 420px) {
  .concept-image-card,
  .concept-image-card img {
    min-height: 390px;
  }

  .concept-badge {
    right: 14px;
    bottom: 14px;
    left: 14px;

    padding: 14px;
  }
}

/* Correction du rognage du dernier caractère sur le titre Concept */
.concept-title .text-gradient-fire {
  padding-right: 0.08em;
  margin-right: -0.08em;
}
