.duo__texte {
  display: grid;
  gap: var(--space-m);
  justify-items: start;
}

.formulaire {
  display: grid;
  gap: var(--space-m);
}

@media (min-width: 1100px) {
  .entete__inner .bouton {
  padding: 0.8em 1.5em;
  text-wrap-mode: nowrap;
  white-space-collapse: collapse;
  }
}

body {
  margin: 0px;
  background: var(--creme);
  color: var(--encre);
  font-family: var(--font-texte);
  font-size: var(--text-m);
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: var(--font-titre);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0px;
  font-optical-sizing: auto;
}

p {
  margin: 0px;
}

a {
  color: inherit;
}

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

ul {
  margin: 0px;
  padding: 0px;
  list-style-position: outside;
  list-style-image: none;
  list-style-type: none;
}

.enveloppe {
  width: 100%;
  max-width: 1220px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding-inline: var(--space-l);
}

.enveloppe--etroite {
  max-width: 880px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding-inline: var(--space-l);
}

.surtitre {
  display: block;
  font-size: var(--text-xs);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terre);
  min-width: 0px;
}

.surtitre--orne::before, .surtitre--orne::after {
  content: "◆";
  color: var(--safran);
  font-size: 0.75em;
  letter-spacing: 0px;
  alignment-baseline: baseline;
  baseline-shift: 0.12em;
  baseline-source: auto;
}

.surtitre--orne::before {
  margin-inline-end: 0.9em;
}

.surtitre--orne::after {
  margin-inline-start: 0.9em;
}

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-texte);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  line-height: 1;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: transparent;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: transparent;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: transparent;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  cursor: pointer;
  text-wrap-mode: nowrap;
  white-space-collapse: collapse;
  transition-property: background-color, color, border-color;
  transition-duration: 0.2s, 0.2s, 0.2s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0s, 0s, 0s;
  transition-behavior: normal, normal, normal;
  padding: 1.05em 1.75em;
  letter-spacing: 0.14em;
}

@media (max-width: 375px) {
  .bouton {
  font-size: var(--text-xs);
  }
}

.bouton--plein {
  background: var(--terre);
  color: var(--ivoire);
}

.bouton--plein:hover {
  background: var(--cedre);
}

.bouton--vide {
  background-color: transparent;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  border-color: var(--cedre);
  color: var(--cedre);
}

.bouton--vide:hover {
  background: var(--cedre);
  color: var(--ivoire);
}

.bouton--or {
  background-color: transparent;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  border-color: var(--safran);
  color: var(--safran);
}

.bouton--or:hover {
  background: var(--safran);
  color: var(--foret);
}

.entete {
  position: sticky;
  top: 0px;
  z-index: 30;
  background: var(--creme);
  border-bottom: 1px solid var(--sable);
}

.entete__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-m);
  padding-block: var(--space-s);
  position: relative;
}

.marque {
  display: inline-flex;
  align-items: center;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
}

.marque__logo {
  width: 148px;
}

.nav {
  gap: var(--space-l);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  row-gap: 0px;
  column-gap: 0px;
  position: absolute;
  top: 100%;
  inset-inline-start: 0px;
  inset-inline-end: 0px;
  background: var(--creme);
  border-bottom: 1px solid var(--sable);
  max-height: 0px;
  overflow-x: hidden;
  overflow-y: hidden;
  transition-property: max-height;
  transition-duration: 0.25s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

@media (min-width: 900px) {
  .nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-l);
  position: static;
  max-height: none;
  overflow-x: visible;
  overflow-y: visible;
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  }
}

.nav__lien {
  padding-block-start: 0.4em;
  padding-block-end: 0.4em;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  color: var(--encre);
  padding: var(--space-s) var(--space-l);
  border-bottom: 1px solid var(--sable);
  transition-property: color, background-color;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
}

@media (min-width: 900px) {
  .nav__lien {
  padding: 0px 0px 0.4em;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: transparent;
  }
}

.nav__lien:hover {
  border-bottom-color: var(--terre);
  color: var(--terre);
  background: var(--sable);
}

@media (min-width: 900px) {
  .nav__lien:hover {
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  border-bottom-color: var(--terre);
  }
}

.nav__lien--actif {
  border-bottom-color: var(--safran);
  color: var(--terre);
}

@media (min-width: 900px) {
  .nav__lien--actif {
  border-bottom-color: var(--safran);
  }
}

.hero {
  position: relative;
  background: var(--foret);
  color: var(--ivoire);
  overflow-x: hidden;
  overflow-y: hidden;
}

.hero__grille {
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
  display: grid;
  min-height: clamp(420px, 82vh, 720px);
  align-items: center;
  padding-block: var(--space-3xl);
}

@media (min-width: 900px) {
  .hero__grille {
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-3xl);
  }
}

.hero__texte {
  display: grid;
  gap: var(--space-m);
  justify-items: start;
  max-width: 640px;
}

.hero .surtitre {
  color: var(--safran);
}

.hero__titre {
  font-size: var(--text-5xl);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero__accent {
  color: var(--safran);
  font-style: italic;
  font-weight: 400;
}

.hero__chapo {
  line-height: 1.55;
  font-size: var(--text-l);
  max-width: 46ch;
  color: color-mix(in srgb, var(--ivoire) 80%, transparent);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  margin-block-start: var(--space-xs);
}

.hero__media::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  border: 1px solid color-mix(in srgb, var(--safran) 45%, transparent);
  border-top-left-radius: 50% 32%;
  border-top-right-radius: 50% 32%;
  border-bottom-right-radius: 8px 2%;
  border-bottom-left-radius: 8px 2%;
}

.faits {
  display: grid;
  padding-block: var(--space-xl);
  border-block-end: 1px solid var(--sable);
  text-align: center;
  gap: var(--space-xl);
}

@media (min-width: 700px) {
  .faits {
  grid-template-columns: repeat(3, 1fr);
  }
}

.fait {
  display: grid;
  gap: var(--space-2xs);
}

.fait__cle {
  font-family: var(--font-titre);
  color: var(--cedre);
  font-size: var(--text-l);
  font-weight: 600;
}

.fait__valeur {
  font-size: var(--text-s);
  color: var(--pierre);
  line-height: 1.55;
}

.section {
  padding-block: var(--space-3xl);
}

.section--sombre {
  background: var(--foret);
  color: var(--ivoire);
}

.section--ivoire {
  background: var(--ivoire);
}

.section--sombre .surtitre {
  color: var(--safran);
}

.section--sombre .section__chapo {
  color: color-mix(in srgb, var(--ivoire) 72%, transparent);
}

.section__entete {
  display: grid;
  gap: var(--space-s);
  text-align: center;
  max-width: 60ch;
  margin-inline-start: auto;
  margin-inline-end: auto;
  margin-block-end: var(--space-2xl);
  min-width: 0px;
  justify-items: normal;
}

.section__titre {
  font-size: var(--text-4xl);
  font-weight: 500;
  min-width: 0px;
}

.section__chapo {
  color: var(--pierre);
  font-size: var(--text-l);
  line-height: 1.55;
  min-width: 0px;
}

.grille {
  display: grid;
  gap: var(--space-l);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.plat-carte {
  display: flex;
  flex-direction: column;
  background: var(--ivoire);
  border: 1px solid var(--sable);
  overflow-x: hidden;
  overflow-y: hidden;
  transition-property: border-color, transform;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.plat-carte:hover {
  border-color: var(--safran);
  transform: translateY(-3px);
}

.section--sombre .plat-carte {
  background: color-mix(in srgb, var(--ivoire) 6%, transparent);
  border-color: color-mix(in srgb, var(--safran) 28%, transparent);
}

.plat-carte__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.plat-carte__corps {
  display: grid;
  gap: var(--space-2xs);
  padding: var(--space-m);
}

.plat-carte__nom {
  font-size: var(--text-l);
  font-weight: 600;
}

.plat-carte__desc {
  font-size: var(--text-s);
  color: var(--pierre);
  line-height: 1.55;
}

.section--sombre .plat-carte__desc {
  color: color-mix(in srgb, var(--ivoire) 68%, transparent);
}

.plat-carte__prix {
  font-family: var(--font-titre);
  font-size: var(--text-l);
  font-weight: 600;
  color: var(--terre);
}

.section--sombre .plat-carte__prix {
  color: var(--safran);
}

.carte-bloc {
  display: grid;
  gap: var(--space-xl);
  margin-block-end: var(--space-3xl);
}

@media (min-width: 900px) {
  .carte-bloc {
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-2xl);
  align-items: start;
  }
}

@media (min-width: 900px) {
  .carte-bloc--inverse .carte-bloc__media {
  order: 2;
  }
}

.carte-bloc__media {
  position: relative;
}

@media (min-width: 900px) {
  .carte-bloc__media {
  position: sticky;
  top: 6.5rem;
  }
}

.carte-bloc__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-top-left-radius: 50% 22%;
  border-top-right-radius: 50% 22%;
  border-bottom-right-radius: 4px 1%;
  border-bottom-left-radius: 4px 1%;
}

.carte-bloc__entete {
  display: grid;
  gap: var(--space-2xs);
  margin-block-end: var(--space-m);
  min-width: 0px;
}

.carte-bloc__titre {
  font-size: var(--text-3xl);
  font-weight: 500;
  min-width: 0px;
}

.carte-bloc__note {
  font-size: var(--text-s);
  color: var(--pierre);
  font-style: italic;
  min-width: 0px;
}

.liste-plats {
  display: grid;
}

.ligne-plat {
  display: flex;
  align-items: flex-start;
  gap: var(--space-s);
  padding-block: var(--space-s);
  border-block-end: 1px dashed var(--sable);
  min-width: 0px;
}

.ligne-plat:last-child {
  border-block-end-width: 0px;
  border-block-end-style: none;
  border-block-end-color: currentcolor;
}

.ligne-plat__tete {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-2xs) var(--space-m);
}

.ligne-plat__nom {
  font-family: var(--font-titre);
  font-size: var(--text-l);
  font-weight: 600;
  letter-spacing: 0px;
  min-width: 0px;
}

.ligne-plat__prix {
  font-family: var(--font-titre);
  font-size: var(--text-l);
  font-weight: 600;
  color: var(--terre);
  text-wrap-mode: nowrap;
  white-space-collapse: collapse;
}

.ligne-plat__desc {
  font-size: var(--text-s);
  color: var(--pierre);
  line-height: 1.6;
  max-width: 62ch;
}

.etapes {
  display: grid;
  gap: var(--space-xl);
  counter-reset: etape 0;
  margin-block-start: var(--space-l);
}

@media (min-width: 700px) {
  .etapes {
  grid-template-columns: repeat(2, 1fr);
  }
}

.etape {
  position: relative;
  padding-block-start: var(--space-l);
  border-block-start: 1px solid var(--sable);
}

.etape::before {
  counter-increment: etape 1;
  content: counter(etape);
  position: absolute;
  inset-block-start: 0px;
  inset-inline-start: 0px;
  transform: translateY(-50%);
  display: grid;
  align-items: center;
  justify-items: center;
  width: 2.2em;
  height: 2.2em;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  border-bottom-left-radius: 999px;
  background: var(--safran);
  color: var(--foret);
  font-family: var(--font-titre);
  font-size: var(--text-s);
  font-weight: 700;
}

.etape__titre {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cedre);
  margin-block-end: var(--space-2xs);
  padding-inline-start: 3em;
}

.etape__liste {
  display: grid;
  gap: var(--space-2xs);
}

.etape__item {
  font-size: var(--text-s);
  color: var(--pierre);
}

.duo {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 900px) {
  .duo {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  }
}

@media (min-width: 900px) {
  .duo--inverse .duo__media {
  order: 2;
  }
}

.duo__titre {
  font-size: var(--text-3xl);
  font-weight: 500;
}

.duo__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-top-left-radius: 50% 20%;
  border-top-right-radius: 50% 20%;
  border-bottom-right-radius: 4px 1%;
  border-bottom-left-radius: 4px 1%;
}

.citation {
  text-align: center;
  max-width: 46ch;
  margin-inline-start: auto;
  margin-inline-end: auto;
  display: grid;
  gap: var(--space-m);
}

.citation__texte {
  font-family: var(--font-titre);
  font-size: var(--text-2xl);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
}

.citation__source {
  font-size: var(--text-xs);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--safran);
}

.infos {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 700px) {
  .infos {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  }
}

.info {
  display: grid;
  gap: var(--space-2xs);
  align-content: start;
}

.info__titre {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--safran);
}

.info__corps {
  font-size: var(--text-s);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.info__corps a {
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: currentcolor;
}

.horaires {
  display: grid;
  gap: var(--space-2xs);
}

.horaire {
  display: flex;
  justify-content: space-between;
  gap: var(--space-m);
  font-size: var(--text-s);
}

.page-entete {
  background: var(--foret);
  color: var(--ivoire);
  padding-block: var(--space-3xl);
  text-align: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: hidden;
}

.page-entete .surtitre {
  color: var(--safran);
}

.page-entete__inner {
  display: grid;
  gap: var(--space-s);
  justify-items: center;
  position: relative;
  z-index: 1;
}

.page-titre {
  font-size: var(--text-4xl);
  font-weight: 500;
}

@media (max-width: 375px) {
  .page-titre {
  font-size: var(--text-m);
  }
}

.page-chapo {
  font-size: var(--text-l);
  max-width: 56ch;
  color: color-mix(in srgb, var(--ivoire) 78%, transparent);
  line-height: 1.55;
}

@media (max-width: 375px) {
  .page-chapo {
  font-size: var(--text-s);
  }
}

.champ-duo {
  display: grid;
  gap: var(--space-m);
}

@media (min-width: 600px) {
  .champ-duo {
  grid-template-columns: 1fr 1fr;
  }
}

.champ {
  display: grid;
  gap: var(--space-2xs);
}

.champ__label {
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--cedre);
}

.champ__saisie {
  font-family: var(--font-texte);
  font-size: var(--text-m);
  color: var(--encre);
  background: var(--ivoire);
  border: 1px solid var(--sable);
  padding: 0.85em 1em;
  width: 100%;
}

.champ__saisie:focus {
  outline: 2px solid var(--safran);
  outline-offset: 1px;
  border-color: var(--safran);
}

.champ__aire {
  font-family: var(--font-texte);
  font-size: var(--text-m);
  color: var(--encre);
  background: var(--ivoire);
  border: 1px solid var(--sable);
  padding: 0.85em 1em;
  width: 100%;
  min-height: 8em;
  resize: vertical;
}

.champ__aire:focus {
  outline: 2px solid var(--safran);
  outline-offset: 1px;
  border-color: var(--safran);
}

.form-note {
  font-size: var(--text-s);
  color: var(--pierre);
}

.pied {
  background: var(--foret);
  color: var(--ivoire);
  padding-block: var(--space-3xl) var(--space-xl);
}

.pied__grille {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 800px) {
  .pied__grille {
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-2xl);
  }
}

.pied__texte {
  color: color-mix(in srgb, var(--ivoire) 70%, transparent);
  max-width: 34ch;
  margin-block-start: var(--space-s);
  font-size: var(--text-s);
  line-height: 1.6;
}

.pied__titre {
  font-size: var(--text-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--safran);
  margin-block-end: var(--space-s);
}

.pied__liste {
  display: grid;
  gap: var(--space-2xs);
  font-size: var(--text-s);
}

.pied__liste a {
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  color: color-mix(in srgb, var(--ivoire) 82%, transparent);
}

.pied__liste a:hover {
  color: var(--safran);
}

.pied__bas {
  margin-block-start: var(--space-2xl);
  padding-block-start: var(--space-m);
  border-block-start: 1px solid color-mix(in srgb, var(--safran) 30%, transparent);
  font-size: var(--text-xs);
  color: color-mix(in srgb, var(--ivoire) 55%, transparent);
}

.pied__logo {
  width: 210px;
  margin-block-end: var(--space-s);
}

.carte-bloc--texte {
  margin-block-start: var(--space-2xl);
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.carte-bloc__corps {
  min-width: 0px;
}

.pied__col {
  min-width: 0px;
}

.ligne-plat__photo {
  width: clamp(64px, 20vw, 88px);
  height: clamp(64px, 20vw, 88px);
  flex-shrink: 0;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--sable);
}

.ligne-plat__contenu {
  display: grid;
  gap: var(--space-2xs);
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 0%;
  min-width: 0px;
}

.nav-toggle-input {
  position: absolute;
  width: 0px;
  height: 0px;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 5px;
  column-gap: 5px;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  cursor: pointer;
}

.entete__actions {
  display: flex;
  align-items: center;
  gap: var(--space-s);
}

.whatsapp-fab {
  position: fixed;
  right: var(--space-m);
  bottom: var(--space-m);
  z-index: 40;
  width: 56px;
  height: 56px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  background-color: rgb(37, 211, 102);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.28) 0px 8px 24px;
  transition-property: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

.nav__lien:last-child {
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
}

.nav-toggle-input:checked ~ .nav {
  max-height: 400px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--encre);
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  transition-property: transform, opacity;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease, ease;
  transition-delay: 0s, 0s;
  transition-behavior: normal, normal;
}

.nav-toggle-input:checked ~ .entete__actions .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle-input:checked ~ .entete__actions .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-toggle-input:checked ~ .entete__actions .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.entete__actions .bouton--plein {
  padding: 0.7em 1.1em;
  font-size: 10px;
  letter-spacing: 0.09em;
  display: none;
}

@media (min-width: 900px) {
  .entete__actions .bouton--plein {
  padding: 1.15em 2em;
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  display: inline-flex;
  }
}

@media (min-width: 900px) {
  .nav-toggle, .nav-toggle-input {
  display: none;
  }
}

.whatsapp-fab:hover {
  transform: scale(1.06);
}

.whatsapp-fab svg {
  width: 30px;
  height: 30px;
  fill: rgb(255, 255, 255);
}

.hero__bg {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__bg::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: linear-gradient(115deg, rgba(11, 31, 21, 0.96) 8%, rgba(11, 31, 21, 0.84) 42%, rgba(11, 31, 21, 0.45) 75%, rgba(11, 31, 21, 0.18) 100%);
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

@media (max-width: 480px) {
  .section__titre, .page-titre {
  font-size: clamp(2.1rem, 9vw, 3rem);
  }
}

.nav__cta {
  margin: var(--space-m) var(--space-l);
  justify-content: center;
}

@media (min-width: 900px) {
  .nav__cta {
  display: none;
  }
}

.page-entete__bg {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
}

.page-entete__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.page-entete__bg::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: linear-gradient(rgba(11, 31, 21, 0.93) 0%, rgba(11, 31, 21, 0.74) 45%, rgba(11, 31, 21, 0.93) 100%);
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

.cedre-icone {
  width: 40px;
  height: 40px;
  color: var(--safran);
  margin-block-end: var(--space-2xs);
}

.cedre-icone path, .cedre-icone rect {
  fill: currentcolor;
}