:root {
  color-scheme: light;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #203127;
  background: #f5f8f3;
  --bg: #ffffff;
  --surface: #f7faf5;
  --text: #203127;
  --muted: #536349;
  --primary: #39b54a;
  --primary-dark: #30863a;
  --border: rgba(56, 95, 55, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
.button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 2rem;
  background: #ecf7e9;
  color: #2d6c27;
  border-bottom: 1px solid rgba(56, 95, 55, 0.14);
  font-size: 0.95rem;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.top-item--center {
  flex: 1;
  justify-content: center;
}

.top-item--right {
  justify-content: flex-end;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 2rem;
  background: white;
  border-bottom: 1px solid var(--border);
}

.brand-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.05;
}

.brand-text div {
  line-height: 1.05;
}

.brand-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  color: var(--muted);
  background: #f4faf3;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: #2b6b2b;
  text-transform: capitalize;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--primary-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.95rem 1.7rem;
  text-align: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--primary);
  color: white;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem 6rem;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(23, 53, 23, 0.24), rgba(23, 53, 23, 0.24)),
    url('assets/accueil.png');
  background-size: cover;
  background-position: center;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 48, 20, 0.45), rgba(8, 24, 10, 0.75));
}

.hero-content {
  position: relative;
  max-width: 960px;
  text-align: center;
  z-index: 1;
}

.hero-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 4vw, 5rem);
  margin: 0;
  line-height: 1.05;
}

.hero-copy {
  max-width: 760px;
  margin: 1.5rem auto 2rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.05rem;
}

.stats-section,
.why-section,
.content-block,
.catalog-section,
.categories-section,
.about-section,
.locations-section {
  padding: 4rem 2rem;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(54, 72, 52, 0.08);
  padding: 2rem;
  text-align: center;
}

.stat-card h3 {
  margin: 0;
  font-size: 2.75rem;
  color: var(--primary-dark);
}

.stat-card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.section-intro {
  max-width: 920px;
  margin: 0 auto 2rem;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card,
.category-card,
.team-card,
.location-card,
.image-card {
  background: white;
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(54, 72, 52, 0.06);
  padding: 2rem;
}

.why-card h3,
.category-card h5,
.team-card h4,
.location-card h4 {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.why-card p,
.category-card p,
.team-card p,
.location-card p {
  margin: 0;
  color: var(--muted);
}

.icon-box {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #e8f4e5;
  color: var(--primary-dark);
  font-weight: 700;
}

.content-block {
  max-width: 1100px;
  margin: 0 auto;
  background: white;
  border-radius: 32px;
  padding: 3rem;
}

.catalog-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.catalog-copy h2 {
  margin: 1rem 0 1rem;
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.catalog-images {
  display: grid;
  gap: 1rem;
}

.image-card {
  height: 240px;
  background: linear-gradient(180deg, #ffffff 0%, #e8f4e5 100%);
  border-radius: 28px;
  position: relative;
}

.image-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-size: cover;
  background-position: center;
}

.image-card:first-child::before {
  background-image: url('https://images.unsplash.com/photo-1501004318641-b39e6451bec6?auto=format&fit=crop&w=900&q=80');
}

.image-card:last-child::before {
  background-image: url('https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?auto=format&fit=crop&w=900&q=80');
}

.categories-section {
  padding-top: 2rem;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.category-card {
  padding: 2rem;
}

.guide-section {
  padding: 4rem 2rem;
  background: #f6faf4;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.guide-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(52, 78, 43, 0.08);
  display: flex;
  flex-direction: column;
}

.guide-image {
  min-height: 180px;
  background: linear-gradient(135deg, #dff4df 0%, #edf9ef 100%);
  background-size: cover;
  background-position: center;
}

.guide-card:first-child .guide-image {
  background-image: url('assets/fraise.jpg');
}

.guide-card:nth-child(2) .guide-image {
  background-image: url('assets/mais.jpg');
}

.guide-card:nth-child(3) .guide-image {
  background-image: url('assets/pomme de terre.jpg');
}

.guide-card:nth-child(4) .guide-image {
  background-image: url('assets/oignon.jpg');
}

.guide-card:nth-child(5) .guide-image {
  background-image: url('assets/arachide.jpg');
}

.guide-card:nth-child(6) .guide-image {
  background-image: url('assets/pasteque.jpg');
}

.guide-card:nth-child(7) .guide-image {
  background-image: url('assets/carotte.jpg');
}

.guide-card:nth-child(8) .guide-image {
  background-image: url('assets/papaye.jpg');
}

.guide-body {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
}

.guide-card h5 {
  margin: 0;
}

.guide-card p {
  margin: 0;
  color: var(--muted);
}

.button-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: #f4faf3;
  color: var(--primary-dark);
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.button-tertiary:hover {
  background: white;
  border-color: #d9eed7;
}

.about-section,
.locations-section {
  max-width: 1200px;
  margin: 0 auto;
}

.about-copy {
  text-align: center;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  padding: 2rem;
}

.avatar {
  height: 200px;
  border-radius: 24px;
  background: linear-gradient(135deg, #d6edda, #f5fbf7);
  margin-bottom: 1.5rem;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.location-card {
  padding: 2rem;
}

.location-image {
  height: 200px;
  border-radius: 24px;
  background: linear-gradient(180deg, #eff7ef, #d5ead4);
  margin-bottom: 1.5rem;
}

.site-footer {
  padding: 3rem 2rem 1.5rem;
  background: #203127;
  color: white;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}

.footer-section {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary);
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-section h3,
.footer-section h4 {
  margin: 0;
  color: white;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  font-size: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.contact-section {
  padding: 4rem 2rem;
  background: white;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.contact-form-wrapper {
  display: grid;
  gap: 1rem;
}

.contact-form {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 700;
  color: #1a3d29;
}

.form-group label span {
  color: #d42c2c;
}

.form-group input,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(57, 181, 74, 0.1);
}

.button-form {
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-wrapper {
  display: grid;
  gap: 2rem;
}

.contact-info-wrapper h2 {
  font-size: 2rem;
  margin: 0;
}

.contact-info-wrapper > p {
  font-size: 1.05rem;
  color: var(--muted);
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.8rem;
  display: block;
}

.contact-item h4 {
  margin: 0;
  color: var(--primary);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.contact-item p {
  margin: 0.3rem 0 0;
  color: var(--text);
}

.map-section {
  width: 100%;
  height: 400px;
  background: #f5f8f3;
}

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  background: #25d366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.22);
  text-decoration: none;
  z-index: 50;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(37, 211, 102, 0.32);
}

.whatsapp-icon {
  width: 2rem;
  height: 2rem;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 640px) {
  .stats-section,
  .why-grid,
  .categories-grid,
  .guide-grid,
  .team-grid,
  .location-grid,
  .catalog-section,
  .contact-container,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .hero {
    min-height: 520px;
    padding: 3rem 1.5rem 4rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .button {
    width: 100%;
  }

  .contact-container {
    gap: 2rem;
  }

  .footer-container {
    gap: 1.5rem;
  }
}
