:root {
  --cream: #fbf6eb;
  --cream-2: #f3eadc;
  --green: #1f3f26;
  --green-2: #2f5a36;
  --green-3: #6f815f;
  --brown: #b67b45;
  --text: #18251b;
  --muted: #657060;
  --line: rgba(31, 63, 38, 0.18);
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(52, 42, 25, 0.10);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1220px;
  --font: Inter, Avenir, Helvetica, Arial, sans-serif;
}

/* RESET */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--cream);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

/* BOUTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 15px;
  border: 1px solid var(--green);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(31, 63, 38, 0.16);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--white);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.55);
  color: var(--green);
}

/* TITRES */

.section-title {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.05;
  color: var(--green);
  font-weight: 900;
  text-align: center;
  letter-spacing: -0.04em;
  margin-bottom: 34px;
}

.leaf-accent::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  background: var(--green-2);
  border-radius: 80% 0 80% 0;
  transform: rotate(-18deg) translateY(2px);
}

/* HEADER */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  padding: 28px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  width: 150px;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  font-weight: 750;
  font-size: 15px;
}

.nav-links a {
  position: relative;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  height: 2px;
  border-radius: 999px;
  background: var(--green);
}

.mobile-menu {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--green);
  font-size: 22px;
}

/* HERO */

.hero {
  position: relative;
  min-height: 710px;
  display: grid;
  align-items: center;
  padding: 130px 0 85px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(255, 255, 255, 0.95) 0,
      rgba(255, 255, 255, 0.82) 26%,
      rgba(255, 255, 255, 0.1) 56%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(
      90deg,
      var(--cream) 0%,
      var(--cream) 43%,
      rgba(251, 246, 235, 0.15) 70%,
      rgba(251, 246, 235, 0) 100%
    );
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(251, 246, 235, 0.98) 0%,
    rgba(251, 246, 235, 0.88) 31%,
    rgba(251, 246, 235, 0.24) 56%,
    rgba(251, 246, 235, 0) 100%
  );
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  left: -90px;
  bottom: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(111, 129, 95, 0.15);
  filter: blur(2px);
}

/* Ici on décale le bloc global légèrement à gauche, sans le faire sortir */
.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 2;
  margin-left: clamp(100px, 10vw, 210px);
}

/* Texte aligné à gauche */
.hero-text {
  text-align: left;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--green);
  margin-bottom: 24px;
  font-weight: 950;
}

.hero h1 em {
  color: var(--brown);
  font-style: italic;
}

.hero p {
  font-size: 20px;
  color: #1f2a21;
  max-width: 570px;
  margin-bottom: 34px;
}

.hero-actions {
  position: absolute;
  left: 40vw;
  transform: translateX(-50%);
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

/* BARRE D'AVANTAGES */

.trust-bar {
  position: relative;
  z-index: 5;
  margin-top: -48px;
}

.trust-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(224, 213, 195, 0.85);
  box-shadow: var(--shadow);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 96px;
  padding: 20px;
  border-right: 1px solid #e8dac7;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  color: var(--green);
  font-size: 36px;
  line-height: 1;
}

.trust-item strong {
  display: block;
  color: var(--green);
  font-size: 16px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* POURQUOI ANIMYA */

.why {
  padding: 72px 0 44px;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid #eadfce;
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  min-height: 210px;
  box-shadow: 0 12px 36px rgba(92, 71, 43, 0.05);
}

.icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #dfe3c9;
  font-size: 28px;
  margin: 0 auto 18px;
}

.feature-card h3 {
  color: var(--green);
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-card p {
  color: #28362b;
  font-size: 15px;
  font-weight: 600;
}

/* PRODUITS */

.products {
  padding: 8px 0 56px;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.product-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #eadfce;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(86, 69, 45, 0.07);
  text-align: left;
}

.product-card img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  background: #eee4d5;
}

.product-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  font-weight: 850;
}

.arrow {
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
}

/* EMPLACEMENTS */

.locations {
  padding: 36px 0 70px;
}

.location-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 46px;
  align-items: center;
}

.location-text h2 {
  text-align: left;
  margin-bottom: 18px;
}

.location-text p {
  margin-bottom: 28px;
  font-size: 16px;
  font-weight: 650;
  color: #29342b;
}

.france-map {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
}

.map-shape {
  width: min(330px, 100%);
  aspect-ratio: 1;
  background: #dfe3cf;
  clip-path: polygon(
    43% 2%,
    60% 12%,
    80% 13%,
    93% 34%,
    86% 57%,
    96% 75%,
    70% 88%,
    52% 98%,
    32% 86%,
    11% 90%,
    3% 66%,
    13% 44%,
    5% 24%,
    24% 13%
  );
  opacity: 0.86;
  position: relative;
}

.pin {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: var(--green-2);
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(31, 63, 38, 0.2);
}

.pin::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cream);
}

.pin-1 {
  top: 18%;
  left: 56%;
}

.pin-2 {
  top: 36%;
  left: 30%;
}

.pin-3 {
  top: 42%;
  right: 18%;
}

.pin-4 {
  bottom: 18%;
  left: 45%;
}

.pin-5 {
  bottom: 8%;
  right: 16%;
}

.location-list {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid #eadfce;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 35px rgba(86, 69, 45, 0.06);
}

.location-list h3 {
  color: var(--green);
  margin-bottom: 22px;
}

.place {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.place-icon {
  color: var(--green);
  font-size: 22px;
  width: 26px;
  flex: 0 0 26px;
  text-align: center;
}

.place strong {
  display: block;
  color: #17251a;
}

.place span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

/* STORY */

.story {
  padding-bottom: 54px;
}

.story-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: stretch;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.56),
    rgba(244, 235, 218, 0.72)
  );
  border: 1px solid #eadfce;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(70, 54, 34, 0.08);
}

.story-img {
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  width: 100%;
}

.story-content {
  padding: 48px 54px 48px 0;
  position: relative;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--brown);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.22em;
  margin-bottom: 16px;
}

.story-content h2 {
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: var(--green);
  margin-bottom: 22px;
}

.story-content h2 span {
  color: var(--brown);
}

.story-content p {
  max-width: 690px;
  margin-bottom: 14px;
  color: #28362b;
  font-weight: 620;
}

.signature {
  margin-top: 24px;
  color: var(--green);
  font-weight: 850;
}

/* BARRE DU BAS */

.bottom-trust {
  padding-bottom: 40px;
}

.bottom-trust .trust-card {
  border-radius: 18px;
  box-shadow: none;
  border-color: rgba(31, 63, 38, 0.24);
  background: rgba(255, 255, 255, 0.42);
}

.bottom-trust .trust-item {
  min-height: 88px;
}

/* FOOTER */

.footer {
  background:
    radial-gradient(circle at 10% 20%, rgba(111, 129, 95, 0.35), transparent 28%),
    linear-gradient(135deg, #18331e, #244a2b);
  color: var(--white);
  padding: 46px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.9fr 1fr;
  gap: 54px;
  padding-bottom: 32px;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand .logo-img {
  width: 130px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 190px;
  font-weight: 650;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--white);
  font-weight: 850;
}

.footer-col {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 48px;
}

.footer h3 {
  font-size: 17px;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 650;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

/* RESPONSIVE TABLETTE */

@media (max-width: 1050px) {
  .site-header {
    position: relative;
    background: var(--cream);
    padding: 18px 0;
  }

  .nav-links,
  .site-header .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: grid;
    place-items: center;
  }

  .hero {
    padding-top: 70px;
    min-height: 620px;
  }

  .hero-content {
    margin-left: 0;
  }

  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(251, 246, 235, 0.98) 0%,
      rgba(251, 246, 235, 0.9) 55%,
      rgba(251, 246, 235, 0.5) 100%
    );
  }

  .trust-card,
  .cards-4,
  .product-grid,
  .location-layout,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .story-content {
    padding: 36px;
  }
}

/* RESPONSIVE MOBILE */

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .logo-img {
    width: 120px;
  }

  .footer-brand .logo-img {
    width: 110px;
  }

  .hero {
    min-height: auto;
    padding: 56px 0 90px;
  }

  .hero-bg {
    opacity: 0.28;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-bar {
    margin-top: -36px;
  }

  .trust-card,
  .cards-4,
  .product-grid,
  .location-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid #e8dac7;
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .why {
    padding-top: 54px;
  }

  .product-card img {
    height: 190px;
  }

  .location-text {
    text-align: center;
  }

  .location-text h2 {
    text-align: center;
  }

  .story-content {
    padding: 30px 24px;
  }

  .footer-col {
    border-left: 0;
    padding-left: 0;
  }
}