/* =============================================
   SECTION ORIGINES — no-card components
   Palette Natéa Matcha
   ============================================= */

/* ── Container ── */
.no-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ── Section header ── */
.natea-origines {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--natea-beige, #f9f7f2);
}

.no-header {
  text-align: center;
  margin-bottom: 3rem;
}

.no-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--natea-deep-green, #2d5a3d);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.no-header h2 em {
  font-style: italic;
  color: var(--natea-matcha, #7cb392);
}

.no-subtitle {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.1rem;
  color: var(--natea-text-light, #5a5a5a);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Grid ── */
.no-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 480px), 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* ── Card ── */
.no-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
}

.no-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* ── Card image ── */
.no-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.no-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.no-card:hover .no-card__img-wrap img {
  transform: scale(1.06);
}

/* ── Badge ── */
.no-card__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(45, 90, 61, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 2rem;
}

.no-card__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--natea-matcha, #7cb392);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}

/* ── Card body ── */
.no-card__body {
  padding: 1.75rem 2rem 2rem;
}

.no-card__region {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--natea-matcha, #7cb392);
  margin-bottom: 0.75rem;
}

.no-card__region-flag {
  font-size: 0.9rem;
}

.no-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--natea-deep-green, #2d5a3d);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.no-card__text {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--natea-text-light, #5a5a5a);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.no-card__text strong {
  color: var(--natea-deep-green, #2d5a3d);
  font-weight: 700;
}

/* ── Specs list ── */
.no-card__specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.no-card__spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--natea-deep-green, #2d5a3d);
  padding: 0.5rem 0.75rem;
  background: var(--natea-beige, #f9f7f2);
  border-radius: 0.5rem;
  transition: background 0.2s ease;
}

.no-card__spec:hover {
  background: #eef6f0;
}

.no-card__spec-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

/* =============================================
   PROCESSUS — bannière 4 étapes
   ============================================= */

.no-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, var(--natea-deep-green, #2d5a3d) 0%, #3a7550 100%);
  border-radius: 1.25rem;
  position: relative;
  overflow: hidden;
}

.no-process::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 179, 146, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.no-process__step {
  text-align: center;
  position: relative;
}

.no-process__step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: -0.75rem;
  width: 1.5rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.no-process__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.75rem;
}

.no-process__num {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--natea-matcha, #7cb392);
  margin-bottom: 0.25rem;
}

.no-process__label {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.no-process__desc {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

/* =============================================
   SCROLL REVEAL — animations
   ============================================= */

.no-sr {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.no-sr--left {
  transform: translateX(-40px);
}

.no-sr--right {
  transform: translateX(40px);
}

.no-sr--d1 {
  transition-delay: 0.15s;
}

.no-sr--d2 {
  transition-delay: 0.3s;
}

.no-sr.is-visible {
  opacity: 1;
  transform: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .no-sr {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .no-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .no-process {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .no-process__step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 480px) {
  .no-card__body {
    padding: 1.25rem 1.5rem 1.5rem;
  }

  .no-card__specs {
    grid-template-columns: 1fr;
  }

  .no-process {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .no-card__title {
    font-size: 1.15rem;
  }
}
