:root {
  --vert-principal: #2D4A1E;
  --orange-secondaire: #E8891A;
  --vert-accent: #A8D44A;
  --fond-clair: #F9F6F0;
  --texte-fonce: #1f2b17;
  --texte-clair: #f7f7f2;
  --bordure-douce: #e7dfd1;
  --ombre: 0 8px 24px rgba(25, 43, 16, 0.12);
  --rayon: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--texte-fonce);
  background: var(--fond-clair);
  line-height: 1.6;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.section {
  padding: 4.5rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--fond-clair);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.25rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
}

.brand-logo {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid var(--bordure-douce);
}

.brand-name {
  color: var(--vert-principal);
}

.menu-toggle {
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--bordure-douce);
  border-radius: 10px;
  background: #fff;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  padding: 0.45rem;
  cursor: pointer;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--vert-principal);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--fond-clair);
  display: grid;
  gap: 0.2rem;
  padding: 0 1rem 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}

.site-nav a {
  text-decoration: none;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid var(--bordure-douce);
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange-secondaire);
}

.site-nav.open {
  max-height: 300px;
  padding: 0.35rem 1rem 0.8rem;
  opacity: 1;
  transform: translateY(0);
}

.hero {
  background: var(--vert-principal);
  color: var(--texte-clair);
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: grid;
  place-items: center;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(168, 212, 74, 0.16) 0 40px, transparent 42px),
    radial-gradient(circle at 85% 25%, rgba(232, 137, 26, 0.16) 0 35px, transparent 38px),
    radial-gradient(circle at 20% 85%, rgba(168, 212, 74, 0.15) 0 28px, transparent 30px),
    radial-gradient(circle at 78% 80%, rgba(232, 137, 26, 0.14) 0 24px, transparent 26px);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 130px;
  height: 130px;
  margin: 0 auto 1.2rem;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid rgba(168, 212, 74, 0.6);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  font-size: clamp(2rem, 7vw, 3.4rem);
  margin-bottom: 0.9rem;
}

.hero p {
  max-width: 40ch;
  margin-inline: auto;
  color: #ecf6de;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  text-decoration: none;
  background: var(--orange-secondaire);
  color: #fff;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  background: #d8770e;
  transform: translateY(-2px);
}

.about-grid {
  display: grid;
  gap: 1.4rem;
}

.about-media {
  aspect-ratio: 16 / 9;
  border-radius: var(--rayon);
  background: #ece4d5;
  border: 1px solid var(--bordure-douce);
  overflow: hidden;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products {
  background: #fff;
}

.products-grid {
  display: grid;
  gap: 1rem;
}

.product-card {
  border: 1px solid var(--bordure-douce);
  background: var(--fond-clair);
  border-radius: var(--rayon);
  padding: 1.1rem;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  border-color: var(--orange-secondaire);
  transform: translateY(-4px);
  box-shadow: var(--ombre);
}

.icon-wrap {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 0.7rem;
}

.product-card h3 {
  font-size: 1.2rem;
}

.product-card p {
  margin-bottom: 0;
}

.reasons {
  background: var(--vert-principal);
  color: var(--texte-clair);
}

.reasons h2 {
  text-align: center;
}

.reasons-row {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.reason-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--rayon);
  padding: 0.95rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
  font-weight: 600;
}

.reason-item p {
  margin: 0;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

.hours-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--bordure-douce);
  border-radius: var(--rayon);
  padding: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.38rem 0.2rem;
  border-bottom: 1px solid #eee5d6;
  font-size: 0.96rem;
}

th {
  font-weight: 600;
  white-space: nowrap;
  width: 34%;
}

.contact-card a {
  color: var(--vert-principal);
  font-weight: 600;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--orange-secondaire);
}

.map-wrap {
  margin-top: 1rem;
  border-radius: var(--rayon);
  overflow: hidden;
  border: 1px solid var(--bordure-douce);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

.site-footer {
  background: #202a1a;
  color: #f3f5eb;
  padding: 2rem 0;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-brand {
  font-weight: 700;
  margin-bottom: 0.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-nav a {
  text-decoration: none;
  color: #dce8c9;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--orange-secondaire);
}

.footer-copy {
  margin-bottom: 0;
  color: #cddcb7;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 700px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1.3fr 1fr;
  }

  .reasons-row {
    flex-direction: row;
    justify-content: center;
  }

  .reason-item {
    flex: 1;
    max-width: 270px;
  }
}

@media (min-width: 950px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-height: none;
    opacity: 1;
    transform: none;
    overflow: visible;
    padding: 0;
    background: transparent;
  }

  .site-nav a {
    border: 0;
    padding: 0.5rem 0.6rem;
    border-radius: 8px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: #efe9dd;
  }

  .about-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr auto auto;
    align-items: end;
  }
}
