/* ============================================
   WOMINGNON COOP CA — Charte graphique
   Primaire  : #701d1b (bordeaux)
   Secondaire: #bb6c29 (brun/orange)
   Accent    : #fee6a7 (jaune clair)
   Fond      : #fdfae2 (crème)
   ============================================ */

:root {
  --color-primary: #701d1b;
  --color-primary-light: #8a2b28;
  --color-secondary: #bb6c29;
  --color-secondary-light: #d4894a;
  --color-accent: #fee6a7;
  --color-background: #fdfae2;
  --color-surface: #ffffff;
  --color-text: #2c1810;
  --color-text-soft: #5a4436;
  --color-border: rgba(112, 29, 27, 0.12);

  --font-display: 'Baloo 2', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  --radius-seed: 60% 40% 55% 45% / 55% 45% 60% 40%;
  --shadow-soft: 0 10px 30px rgba(112, 29, 27, 0.08);
  --shadow-card: 0 4px 18px rgba(44, 24, 16, 0.08);

  --max-width: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading, var(--font-body));
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 18px;
  background: var(--color-secondary);
  border-radius: var(--radius-seed);
}

.section {
  padding: 90px 0;
}

.section--alt {
  background: var(--color-accent);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head p {
  color: var(--color-text-soft);
  margin-top: 14px;
  font-size: 1.05rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-family: var(--font-heading, var(--font-body));
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ===== Seed motif (from the logo's karité nut) ===== */
.seed {
  border-radius: var(--radius-seed);
}

.seed-divider {
  width: 34px;
  height: 44px;
  background: var(--color-secondary);
  border-radius: var(--radius-seed);
  margin: 0 auto 20px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 250, 226, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  font-family: var(--font-heading, var(--font-body));
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--color-secondary); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 90px 0 70px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -140px;
  width: 480px;
  height: 560px;
  background: var(--color-accent);
  border-radius: var(--radius-seed);
  z-index: 0;
  opacity: 0.7;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-tagline {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero h1 { margin-bottom: 20px; }

.hero p.lead {
  font-size: 1.08rem;
  color: var(--color-text-soft);
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats .stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-primary);
  font-weight: 700;
  display: block;
}

.hero-stats .stat-label {
  font-size: 0.82rem;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}

.hero-media img { width: 100%; height: 100%; object-fit: cover; }

.hero-media::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 78px;
  background: var(--color-secondary);
  border-radius: var(--radius-seed);
  box-shadow: var(--shadow-soft);
  z-index: 2;
}

/* ===== Hero slideshow (photos de la galerie) ===== */
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  z-index: 0;
}

.hero-slide.active { opacity: 1; z-index: 1; }

.hero-dots {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 3;
}

.hero-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-dots span.active { background: #fff; transform: scale(1.3); }

/* ===== Product order button ===== */
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.btn--order {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-secondary);
  color: #fff;
  font-family: var(--font-heading, var(--font-body));
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn--order:hover { background: var(--color-primary); transform: translateY(-2px); }

/* ===== News carousel ===== */
.news-carousel {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16/8;
  max-height: 480px;
}

.news-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.news-slide.active { opacity: 1; z-index: 1; }

.news-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44,24,16,0.88) 0%, rgba(44,24,16,0.35) 45%, rgba(44,24,16,0.05) 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 44px;
  color: #fff;
}

.news-slide-date {
  font-family: var(--font-heading, var(--font-body));
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.news-slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  color: #fff;
  margin-bottom: 10px;
}

.news-slide-summary {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
}

.news-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  color: var(--color-primary);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.news-arrow:hover { background: #fff; }
.news-arrow--prev { left: 18px; }
.news-arrow--next { right: 18px; }

.news-dots {
  position: absolute;
  bottom: 20px;
  left: 44px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.news-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.news-dots button.active { background: var(--color-secondary); transform: scale(1.25); }

@media (max-width: 720px) {
  .news-carousel { aspect-ratio: 4/5; max-height: none; }
  .news-slide-overlay { padding: 26px 22px; }
  .news-dots { left: 22px; }
}

/* ===== Activities strip ===== */
.activities-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.pill {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-primary);
}

/* ===== Process ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 26px;
}

.process-card {
  background: var(--color-surface);
  border-radius: 20px;
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.process-step {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: 0.1em;
}

.process-icon { font-size: 2.1rem; margin: 12px 0; }

.process-card h3 { margin-bottom: 8px; font-size: 1.15rem; }
.process-card p { color: var(--color-text-soft); font-size: 0.95rem; }

/* ===== Engagements ===== */
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.engagement-card {
  text-align: center;
  padding: 20px;
}

.engagement-icon {
  width: 78px;
  height: 78px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-seed);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.engagement-card h3 { margin-bottom: 10px; }
.engagement-card p { color: var(--color-text-soft); font-size: 0.95rem; }

/* ===== Products ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--color-surface);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.product-card:hover { transform: translateY(-6px); }

.product-card .img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover img { transform: scale(1.06); }

.product-body { padding: 22px 24px 26px; }

.product-badges { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0 14px; }

.badge {
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.product-price {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 0.95rem;
}

/* ===== Partners ===== */
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}

.partner-chip {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 16px 28px;
  border-radius: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.05rem;
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--color-surface);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.team-photo { aspect-ratio: 1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-info { padding: 22px 20px 28px; }
.team-role { color: var(--color-secondary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin: 6px 0 12px; }
.team-bio { font-size: 0.92rem; color: var(--color-text-soft); }

/* ===== Gallery ===== */
.gallery-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.filter-btn {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-card);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.08); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  background: linear-gradient(to top, rgba(44,24,16,0.85), transparent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-card {
  background: var(--color-surface);
  border-radius: 22px;
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.contact-row { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }

.contact-icon {
  width: 42px; height: 42px;
  background: var(--color-accent);
  border-radius: var(--radius-seed);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.contact-row h4 { font-size: 0.95rem; margin-bottom: 4px; color: var(--color-primary); }
.contact-row p, .contact-row a { color: var(--color-text-soft); font-size: 0.92rem; }

.map-frame {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 340px;
}

.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--color-background);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 1px;
}

.form-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn--whatsapp:hover { background: #1ebd58; transform: translateY(-2px); }

.order-notice {
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 22px;
  display: none;
}

.order-notice.visible { display: block; }

.form-status {
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 20px;
}

.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }

/* ===== Footer ===== */
.site-footer {
  background: var(--color-primary);
  color: #fdfae2;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: #fff;
  font-family: var(--font-heading, var(--font-body));
  font-size: 0.95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-grid p, .footer-grid a { color: rgba(253, 250, 226, 0.78); font-size: 0.9rem; }

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 40px; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.2rem; }

.footer-links li { margin-bottom: 10px; }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(253, 250, 226, 0.15);
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(253, 250, 226, 0.6);
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Page hero (inner pages) ===== */
.page-hero {
  padding: 70px 0 50px;
  text-align: center;
}

.page-hero .eyebrow { justify-content: center; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links { position: fixed; top: 84px; left: 0; right: 0; background: var(--color-background); flex-direction: column; padding: 20px 24px; gap: 18px; box-shadow: var(--shadow-soft); transform: translateY(-140%); transition: transform 0.3s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
}

.partner-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  width: 168px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.7;
  transition: filter 0.25s ease, opacity 0.25s ease;
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}