@font-face {
  font-family: "Montserrat Variable";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/montserrat-latin-wght-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Montserrat Variable";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("../fonts/montserrat-latin-wght-italic.woff2") format("woff2");
}

:root {
  --cream: #f5f5dc;
  --orange: #d87738;
  --orange-dark: #bd6027;
  --sage: #8aad8b;
  --green: #719e74;
  --green-dark: #456f4d;
  --text: #333333;
  --white: #ffffff;
  --header-font: "Montserrat Variable", Montserrat, "Avenir Next", sans-serif;
  --radius: 5px;
  --header-height: 64px;
  --content-width: 1280px;
  --page-gutter: clamp(20px, 4vw, 56px);
  --section-space: clamp(72px, 8vw, 116px);
  --section-title-size: clamp(34px, 3.5vw, 48px);
  --button-height: 42px;
  --button-padding-inline: 16px;
  --button-font-size: 11px;
  --card-surface: rgb(255 255 255 / 44%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--cream);
  color: var(--text);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgb(113 158 116 / 15%);
  background: rgb(245 245 220 / 96%);
  box-shadow: 0 5px 18px rgb(69 111 77 / 6%);
  backdrop-filter: blur(12px);
  font-family: var(--header-font);
}

.header-inner {
  width: min(1480px, calc(100% - 56px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  position: relative;
  z-index: 102;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  border-radius: var(--radius);
  transition: opacity 180ms ease, visibility 180ms;
}

.brand-logo {
  width: 164px;
  height: auto;
  display: block;
}

.brand:focus-visible,
.main-navigation a:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
}

.main-navigation-content {
  display: contents;
}

.mobile-menu-motifs {
  display: none;
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.55vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation li a {
  position: relative;
  display: inline-flex;
  padding: 10px 0;
  color: var(--green);
  font-size: 11.5px;
  font-weight: 640;
  letter-spacing: 0.05px;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-navigation li a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-navigation li a:hover,
.main-navigation li a.is-active {
  color: var(--green-dark);
}

.main-navigation li a:hover::after,
.main-navigation li a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.call-button {
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px var(--button-padding-inline);
  border-radius: var(--radius);
  background: var(--orange);
  box-shadow: 0 7px 17px rgb(216 119 56 / 18%);
  color: var(--white);
  font-size: var(--button-font-size);
  font-weight: 680;
  letter-spacing: 0.05px;
  white-space: nowrap;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.call-button svg {
  flex: 0 0 auto;
}

.desktop-call-button {
  justify-self: end;
}

.mobile-call-button {
  display: none;
}

.call-button:hover {
  background: var(--orange-dark);
  box-shadow: 0 9px 20px rgb(189 96 39 / 23%);
  transform: translateY(-1px);
}

.menu-toggle {
  position: relative;
  z-index: 103;
  width: 38px;
  height: 38px;
  display: none;
  align-content: center;
  justify-items: end;
  gap: 6px;
  padding: 7px 2px 7px 10px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 27px;
  height: 2px;
  display: block;
  border-radius: 2px;
  background: var(--green-dark);
  transform-origin: center;
  transition: width 180ms ease, background 180ms ease, transform 260ms ease, opacity 180ms ease;
}

.menu-toggle span:nth-child(2) {
  width: 21px;
}

.page-canvas {
  position: relative;
  isolation: isolate;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  background: var(--cream);
}

.page-canvas > section {
  position: relative;
  z-index: 1;
}

.section-with-side-motif {
  isolation: isolate;
  overflow: hidden;
}

.section-with-side-motif > :not(.section-side-motif) {
  position: relative;
  z-index: 1;
}

.section-side-motif {
  position: absolute;
  z-index: 0;
  top: 50%;
  width: clamp(84px, 7.5vw, 118px);
  height: clamp(84px, 7.5vw, 118px);
  opacity: 0.07;
  pointer-events: none;
}

.section-side-motif--left {
  left: clamp(-42px, -2.4vw, -24px);
  transform: translateY(-50%) rotate(-13deg);
}

.section-side-motif--right {
  right: clamp(-42px, -2.4vw, -24px);
  transform: translateY(-50%) rotate(13deg);
}

.section-side-motif--green {
  color: var(--green-dark);
}

.section-side-motif--cream {
  color: var(--cream);
  opacity: 0.11;
}

.hero {
  position: relative;
  min-height: clamp(540px, 72svh, 720px);
  display: grid;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-dark);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  z-index: -3;
  object-fit: cover;
  object-position: center 52%;
  background: var(--green-dark);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgb(20 40 28 / 90%) 0%, rgb(31 65 43 / 78%) 42%, rgb(31 65 43 / 30%) 72%, rgb(20 32 23 / 22%) 100%),
    linear-gradient(180deg, rgb(12 24 17 / 18%) 0%, transparent 52%, rgb(12 24 17 / 42%) 100%);
}

.hero-inner {
  width: min(1480px, calc(100% - 56px));
  min-height: inherit;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: clamp(48px, 6.5vh, 76px) 0;
}

.hero-content {
  width: min(100%, 700px);
  color: var(--white);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--cream);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-kicker svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--orange);
  transform: rotate(-10deg);
}

.hero-title {
  max-width: 690px;
  margin: 0;
  color: var(--white);
  font-family: var(--header-font);
  font-size: clamp(42px, 4.4vw, 66px);
  font-weight: 690;
  letter-spacing: -2.5px;
  line-height: 1.02;
  text-wrap: balance;
}

.hero-title span {
  color: var(--orange);
  font-weight: 780;
}

.hero-title strong {
  display: block;
  color: var(--cream);
  font-weight: 690;
}

.hero-description {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 450;
  line-height: 1.62;
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-button {
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 10px var(--button-padding-inline);
  border: 0;
  border-radius: var(--radius);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 680;
  letter-spacing: 0.05px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 28px rgb(0 0 0 / 18%);
}

.hero-button-primary span {
  font-size: 18px;
  line-height: 0;
  transition: transform 180ms ease;
}

.hero-button-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.hero-button-primary:hover span {
  transform: translateX(3px);
}

.hero-button-secondary {
  background: rgb(245 245 220 / 14%);
  color: var(--cream);
  backdrop-filter: blur(8px);
}

.hero-button-secondary:hover {
  background: var(--cream);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.hero-button:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 28px;
  color: rgb(245 245 220 / 76%);
  font-family: var(--header-font);
  font-size: 10px;
  font-weight: 590;
  letter-spacing: 0.45px;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.hero-highlights span::before {
  content: "";
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--sage);
}

.section-container {
  width: 100%;
  max-width: calc(var(--content-width) + (var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 16px;
  color: var(--orange);
  font-family: var(--header-font);
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.section-eyebrow svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
}

.section-title {
  max-width: 760px;
  margin: 0;
  color: var(--text);
  font-family: var(--header-font);
  font-size: var(--section-title-size);
  font-weight: 680;
  letter-spacing: -1.9px;
  line-height: 1.06;
  text-wrap: balance;
}

.section-title span {
  color: var(--green);
}

.section-copy {
  max-width: 430px;
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 480;
  line-height: 1.7;
  text-wrap: pretty;
}

.fruit-ritual {
  padding-block: var(--section-space);
  scroll-margin-top: var(--header-height);
  background:
    radial-gradient(circle at 100% 0%, rgb(138 173 139 / 15%), transparent 32%),
    var(--cream);
}

.ritual-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(36px, 7vw, 108px);
}

.ritual-panel {
  margin-top: clamp(42px, 5vw, 68px);
}

.wellbeing-visual {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage);
}

.wellbeing-visual::after {
  display: none;
}

.wellbeing-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.wellbeing-visual figcaption {
  position: absolute;
  z-index: 1;
  right: clamp(16px, 2vw, 26px);
  bottom: clamp(16px, 2vw, 26px);
  left: clamp(16px, 2vw, 26px);
  width: fit-content;
  max-width: calc(100% - 32px);
  display: grid;
  gap: 3px;
  padding: 15px 18px;
  border-radius: var(--radius);
  background: var(--orange);
  box-shadow: 0 14px 32px rgb(27 54 37 / 22%);
  color: var(--white);
  font-family: var(--header-font);
}

.wellbeing-visual figcaption strong {
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 720;
}

.wellbeing-visual figcaption span {
  color: rgb(255 255 255 / 82%);
  font-size: 11px;
  font-weight: 520;
}

.ritual-story {
  position: relative;
  min-height: 370px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 3.5vw, 48px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--cream);
}

.ritual-story-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ritual-story > :not(.ritual-fruit-motifs) {
  position: relative;
  z-index: 2;
}

.ritual-fruit-motifs {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  color: var(--sage);
  pointer-events: none;
}

.ritual-fruit-motifs svg {
  position: absolute;
  opacity: 0.13;
}

.motif-citrus {
  top: -62px;
  right: -40px;
  width: 168px;
  height: 168px;
}

.motif-apple {
  bottom: -30px;
  left: -22px;
  width: 90px;
  height: 90px;
}

.ritual-story-kicker {
  position: relative;
  margin: 0 0 10px;
  color: var(--orange);
  font-family: var(--header-font);
  font-size: clamp(16px, 1.7vw, 23px);
  font-weight: 690;
  line-height: 1.3;
  text-wrap: balance;
}

.ritual-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.ritual-benefits li {
  min-width: 0;
  padding: 3px clamp(22px, 2.8vw, 40px);
  border-left: 1px solid rgb(245 245 220 / 18%);
}

.ritual-benefits li:first-child {
  padding-left: 0;
  border-left: 0;
}

.ritual-benefits li > span {
  display: block;
  margin-bottom: 18px;
  color: var(--sage);
  font-family: var(--header-font);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 1.1px;
}

.ritual-benefits h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--header-font);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 680;
  line-height: 1.35;
}

.ritual-benefits p {
  margin: 7px 0 0;
  color: rgb(245 245 220 / 68%);
  font-size: 13px;
  line-height: 1.55;
}

.ritual-link {
  position: relative;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 0;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  color: var(--cream);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 690;
  letter-spacing: 0.15px;
}

.ritual-link span {
  color: var(--orange);
  font-size: 18px;
  line-height: 0;
  transition: transform 180ms ease;
}

.ritual-link:hover span {
  transform: translateX(4px);
}

.ritual-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}

.offers-section {
  padding-block: var(--section-space);
  scroll-margin-top: var(--header-height);
  background: var(--green-dark);
  color: var(--cream);
}

.offers-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: clamp(36px, 7vw, 104px);
}

.offers-eyebrow {
  color: var(--orange);
}

.offers-title {
  max-width: 720px;
  margin: 0;
  color: var(--cream);
  font-family: var(--header-font);
  font-size: var(--section-title-size);
  font-weight: 680;
  letter-spacing: -1.9px;
  line-height: 1.06;
  text-wrap: balance;
}

.offers-title span {
  color: var(--orange);
}

.offers-intro {
  max-width: 460px;
  margin: 0;
  color: rgb(245 245 220 / 82%);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.7;
  text-wrap: pretty;
}

.offers-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(44px, 5vw, 68px);
  border-top: 1px solid rgb(245 245 220 / 20%);
  border-bottom: 1px solid rgb(245 245 220 / 20%);
}

.offer-item {
  position: relative;
  padding: clamp(34px, 4vw, 54px) clamp(24px, 4vw, 58px);
}

.offer-item:first-child {
  padding-left: 0;
  border-right: 1px solid rgb(245 245 220 / 20%);
}

.offer-item:last-child {
  padding-right: 0;
}

.offer-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border: 1px solid rgb(245 245 220 / 30%);
  border-radius: var(--radius);
  color: var(--orange);
}

.offer-icon svg {
  width: 22px;
  height: 22px;
}

.offer-number {
  margin: 0 0 10px;
  color: var(--sage);
  font-family: var(--header-font);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 1.5px;
}

.offer-item h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--header-font);
  font-size: clamp(19px, 2vw, 27px);
  font-weight: 670;
  letter-spacing: -0.6px;
  line-height: 1.18;
}

.offer-item > p:not(.offer-number) {
  max-width: 500px;
  margin: 16px 0 0;
  color: rgb(245 245 220 / 74%);
  font-size: 14px;
  line-height: 1.68;
}

.offer-item a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 25px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
  color: var(--cream);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 700;
}

.offer-item a svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  transition: transform 180ms ease;
}

.offer-item a:hover svg {
  transform: translateX(4px);
}

.offer-item a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}

.quality-markers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.quality-markers span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgb(245 245 220 / 85%);
  font-family: var(--header-font);
  font-size: 10.5px;
  font-weight: 600;
  line-height: 1.4;
}

.quality-markers svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--orange);
}

.wellbeing-section {
  padding-block: clamp(50px, 5vw, 68px);
  background: linear-gradient(115deg, var(--orange-dark) 0%, var(--orange) 78%);
  color: var(--cream);
}

.wellbeing-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.wellbeing-content {
  position: relative;
  z-index: 2;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
}

.wellbeing-eyebrow {
  color: var(--green-dark);
}

.wellbeing-title {
  max-width: 680px;
  margin: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: var(--section-title-size);
  font-weight: 690;
  letter-spacing: -1.9px;
  line-height: 1.05;
  text-wrap: balance;
}

.wellbeing-title span {
  color: var(--cream);
}

.wellbeing-lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 480;
  line-height: 1.68;
  text-wrap: pretty;
}

.wellbeing-insight {
  max-width: 610px;
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(13.5px, 1.05vw, 15px);
  font-weight: 500;
  line-height: 1.75;
  text-wrap: pretty;
}

.wellbeing-insight strong {
  display: inline;
  margin-inline: 3px;
  padding: 0;
  background: transparent;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 1em;
  font-weight: 800;
  line-height: inherit;
  white-space: nowrap;
}

.wellbeing-cta {
  width: fit-content;
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin-top: 20px;
  padding: 10px var(--button-padding-inline);
  border-radius: var(--radius);
  background: #1f1f1f;
  color: var(--cream);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.wellbeing-cta span {
  color: var(--orange);
  font-size: 17px;
  line-height: 0;
  transition: transform 180ms ease;
}

.wellbeing-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.wellbeing-cta:hover span {
  transform: translateX(3px);
}

.wellbeing-cta:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.wellbeing-visual {
  width: 100%;
  height: clamp(350px, 28vw, 380px);
  min-height: 0;
  align-self: center;
  box-shadow: 0 20px 44px rgb(123 54 17 / 18%);
}

.about-section {
  padding-block: var(--section-space);
  scroll-margin-top: var(--header-height);
  background:
    radial-gradient(circle at 0% 100%, rgb(138 173 139 / 18%), transparent 30%),
    var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: clamp(46px, 8vw, 116px);
}

.about-content {
  max-width: 760px;
}

.about-title {
  max-width: 720px;
}

.about-lead {
  max-width: 700px;
  margin: 26px 0 0;
  color: var(--text);
  font-size: clamp(14px, 1.2vw, 17px);
  line-height: 1.75;
  text-wrap: pretty;
}

.about-note {
  margin: 18px 0 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 680;
  line-height: 1.55;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin: 32px 0 0;
  padding: 24px 0;
  border-top: 1px solid rgb(69 111 77 / 20%);
  border-bottom: 1px solid rgb(69 111 77 / 20%);
}

.about-stats div {
  min-width: 0;
}

.about-stats dt {
  color: var(--orange);
  font-family: var(--header-font);
  font-size: clamp(25px, 2.7vw, 38px);
  font-weight: 720;
  letter-spacing: -1.2px;
  line-height: 1;
}

.about-stats dd {
  margin: 9px 0 0;
  color: var(--text);
  font-size: 11px;
  line-height: 1.45;
}

.about-link {
  width: fit-content;
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
  padding: 10px var(--button-padding-inline);
  border-radius: var(--radius);
  background: var(--green);
  color: var(--white);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.about-link svg {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.about-link:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.about-link:hover svg {
  transform: translateX(3px);
}

.about-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.about-visual {
  width: min(100%, 500px);
  margin: 0;
  justify-self: end;
}

.about-visual img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 34px rgb(69 111 77 / 14%));
}

.contact-section {
  padding-block: clamp(46px, 5vw, 66px);
  scroll-margin-top: var(--header-height);
  background: var(--sage);
  color: var(--cream);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.contact-kicker {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.contact-section h2 {
  max-width: 760px;
  margin: 0;
  color: var(--cream);
  font-family: var(--header-font);
  font-size: clamp(27px, 3.4vw, 44px);
  font-weight: 680;
  letter-spacing: -1.7px;
  line-height: 1.08;
  text-wrap: balance;
}

.contact-call {
  min-height: var(--button-height);
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 10px var(--button-padding-inline);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 720;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-call svg {
  width: 17px;
  height: 17px;
}

.contact-call:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.contact-call:focus-visible {
  outline: 2px solid var(--cream);
  outline-offset: 4px;
}

.brand-story-section {
  padding-block: var(--section-space);
  scroll-margin-top: var(--header-height);
  border-top: 1px solid rgb(69 111 77 / 12%);
  background: var(--cream);
}

.brand-story-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
}

.brand-story-visual {
  position: relative;
  height: clamp(430px, 37vw, 520px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 24px 52px rgb(69 111 77 / 16%);
}

.brand-story-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.brand-story-visual:hover img {
  transform: scale(1.025);
}

.brand-story-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 16px;
  border-radius: var(--radius);
  background: rgb(31 31 31 / 86%);
  color: var(--cream);
  font-size: 11px;
  line-height: 1.4;
  backdrop-filter: blur(8px);
}

.brand-story-visual figcaption strong {
  color: var(--orange);
  font-family: var(--header-font);
  font-size: 18px;
}

.brand-story-content {
  max-width: 720px;
}

.brand-story-title {
  max-width: 700px;
}

.brand-story-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.75;
  text-wrap: pretty;
}

.brand-story-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 22px 0 0;
  padding: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 10.5px;
  font-weight: 680;
  list-style: none;
}

.brand-story-values li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.brand-story-values svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.brand-story-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 0;
  padding: 23px 0;
  border-top: 1px solid rgb(69 111 77 / 18%);
  border-bottom: 1px solid rgb(69 111 77 / 18%);
}

.brand-story-stats dt {
  color: var(--orange);
  font-family: var(--header-font);
  font-size: clamp(24px, 2.4vw, 35px);
  font-weight: 730;
  letter-spacing: -1px;
  line-height: 1;
}

.brand-story-stats dd {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 10.5px;
  line-height: 1.4;
}

.brand-story-link,
.process-link {
  width: fit-content;
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 26px;
  padding: 10px var(--button-padding-inline);
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.brand-story-link svg,
.process-link svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  transition: transform 180ms ease;
}

.brand-story-link:hover,
.process-link:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.brand-story-link:hover svg,
.process-link:hover svg {
  color: var(--white);
  transform: translateX(3px);
}

.brand-story-link:focus-visible,
.process-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.wellbeing-mission {
  max-width: 610px;
  margin: 15px 0 0;
  color: var(--cream);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.55;
}

.reasons-section {
  padding-block: var(--section-space);
  background: var(--cream);
}

.reasons-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: end;
  gap: clamp(36px, 7vw, 104px);
}

.reasons-heading > p {
  max-width: 430px;
  margin: 0;
  color: var(--text);
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.7;
}

.reasons-mosaic {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) repeat(2, minmax(220px, 0.85fr));
  grid-template-rows: repeat(2, minmax(235px, 1fr));
  gap: 14px;
  margin-top: clamp(42px, 5vw, 66px);
}

.reason-image-card {
  position: relative;
  grid-row: 1 / span 2;
  min-height: 484px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--orange);
}

.reason-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 70%;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reason-image-card:hover img {
  transform: scale(1.025);
}

.reason-image-card::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(180deg, transparent, rgb(18 31 22 / 82%));
}

.reason-image-card figcaption {
  position: absolute;
  z-index: 1;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  gap: 7px;
  color: var(--cream);
}

.reason-image-card figcaption span {
  color: var(--orange);
  font-family: var(--header-font);
  font-size: 9px;
  font-weight: 730;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.reason-image-card figcaption strong {
  max-width: 390px;
  font-family: var(--header-font);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.18;
}

.reason-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border-radius: var(--radius);
}

.reason-card > svg {
  width: 28px;
  height: 28px;
  margin-bottom: auto;
}

.reason-card h3 {
  margin: 26px 0 0;
  font-family: var(--header-font);
  font-size: clamp(15px, 1.4vw, 19px);
  font-weight: 700;
  line-height: 1.25;
}

.reason-card p {
  margin: 9px 0 0;
  font-size: 12.5px;
  line-height: 1.55;
}

.reason-expertise {
  background: var(--orange);
  color: var(--white);
}

.reason-variety {
  background: var(--green-dark);
  color: var(--cream);
}

.reason-flexible {
  background: var(--green-dark);
  color: var(--cream);
}

.reason-waste {
  background: var(--orange);
  color: var(--white);
}

.services-section {
  padding-block: var(--section-space);
  background: var(--green-dark);
  color: var(--cream);
}

.services-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.services-eyebrow {
  justify-content: center;
  color: var(--orange);
}

.services-title {
  margin: 0;
  color: var(--cream);
  font-family: var(--header-font);
  font-size: var(--section-title-size);
  font-weight: 680;
  letter-spacing: -1.9px;
  line-height: 1.06;
  text-wrap: balance;
}

.services-title span {
  color: var(--orange);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  margin-top: clamp(42px, 5vw, 68px);
}

.service-card {
  scroll-margin-top: calc(var(--header-height) + 20px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--text);
}

.service-card figure {
  height: clamp(320px, 30vw, 420px);
  margin: 0;
  overflow: hidden;
  background: var(--sage);
}

.service-card figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 42%;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.service-card-alt figure img {
  object-position: center 50%;
}

.service-card:hover figure img {
  transform: scale(1.025);
}

.service-card-body {
  position: relative;
  padding: clamp(28px, 3.2vw, 42px);
}

.service-card-icon {
  position: absolute;
  top: -24px;
  right: clamp(28px, 3.2vw, 42px);
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgb(126 61 26 / 20%);
}

.service-card-icon svg {
  width: 22px;
  height: 22px;
}

.service-card-kicker {
  margin: 0 0 10px;
  color: var(--orange);
  font-family: var(--header-font);
  font-size: 9.5px;
  font-weight: 730;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(21px, 2.3vw, 31px);
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.15;
}

.service-card-body > p:not(.service-card-kicker) {
  max-width: 560px;
  margin: 16px 0 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.68;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.service-tags span {
  padding: 7px 9px;
  border-radius: var(--radius);
  background: rgb(138 173 139 / 18%);
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 9px;
  font-weight: 680;
}

.service-card a {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--orange);
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 700;
}

.service-card a svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
  transition: transform 180ms ease;
}

.service-card a:hover svg {
  transform: translateX(3px);
}

.service-card a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}

.process-section {
  padding-block: var(--section-space);
  background: var(--cream);
  color: var(--text);
}

.process-heading {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.process-eyebrow {
  justify-content: center;
  color: var(--orange);
}

.process-title {
  color: var(--text);
}

.process-title span {
  color: var(--green-dark);
}

.process-heading > p:last-child {
  max-width: 590px;
  margin: 20px auto 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(40px, 5vw, 62px) 0 0;
  padding: 0;
  list-style: none;
}

.process-steps li {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 16px 38px rgb(69 111 77 / 10%);
}

.process-steps figure {
  height: 205px;
  margin: 0;
  overflow: hidden;
  background: var(--green-dark);
}

.process-steps figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.process-steps li:nth-child(2) figure img {
  object-position: center 38%;
}

.process-steps li:hover figure img {
  transform: scale(1.03);
}

.process-step-body {
  min-height: 132px;
  padding: 24px 25px 26px;
}

.process-steps h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.3;
}

.process-steps p {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.58;
}

.process-link {
  display: flex;
  margin: 30px auto 0;
  background: var(--orange);
}

.process-link svg {
  color: var(--white);
}

.process-link:hover {
  background: var(--green-dark);
}

.trust-section {
  padding-block: clamp(62px, 7vw, 92px);
  border-top: 1px solid rgb(69 111 77 / 12%);
  background: var(--cream);
  color: var(--text);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(38px, 7vw, 96px);
}

.trust-eyebrow {
  color: var(--orange);
}

.trust-heading h2 {
  max-width: 540px;
  margin: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(28px, 3.2vw, 43px);
  font-weight: 680;
  letter-spacing: -1.7px;
  line-height: 1.08;
  text-wrap: balance;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.logo-marquee-track {
  width: max-content;
  display: flex;
  animation: client-logo-scroll 32s linear infinite;
  will-change: transform;
}

.logo-marquee-set {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(22px, 3vw, 38px);
  padding-right: clamp(22px, 3vw, 38px);
}

.client-logo {
  width: 150px;
  height: 60px;
  flex: 0 0 150px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.client-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: normal;
}

.client-logo--cftc img {
  width: 60px;
}

.client-logo--stoik img {
  width: 124px;
}

.client-logo--babilou img {
  width: 106px;
}

.client-logo--ws-groupe img {
  width: 84px;
}

.client-logo--fortinet img {
  width: 150px;
}

.client-logo--capago img {
  width: 122px;
}

@keyframes client-logo-scroll {
  to {
    transform: translateX(-50%);
  }
}

.contact-section {
  position: relative;
  overflow: hidden;
  background: var(--green-dark);
}

.contact-inner {
  position: relative;
  z-index: 2;
}

.contact-kicker {
  color: var(--orange);
}

.contact-section h2 {
  color: var(--white);
}

.newsletter-section {
  padding-block: clamp(62px, 7vw, 94px);
  background:
    radial-gradient(circle at 100% 100%, rgb(216 119 56 / 12%), transparent 30%),
    var(--cream);
}

.newsletter-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(400px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 7vw, 104px);
}

.newsletter-copy h2 {
  max-width: 660px;
  margin: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(29px, 3.5vw, 46px);
  font-weight: 680;
  letter-spacing: -1.8px;
  line-height: 1.08;
  text-wrap: balance;
}

.newsletter-copy > p:last-child {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.68;
}

.newsletter-form {
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgb(69 111 77 / 18%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 46%);
}

.newsletter-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 10px;
  font-weight: 700;
}

.newsletter-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter-field input {
  width: 100%;
  min-height: var(--button-height);
  padding: 10px 14px;
  border: 1px solid rgb(69 111 77 / 24%);
  border-radius: var(--radius);
  outline: 0;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.newsletter-field input::placeholder {
  color: rgb(51 51 51 / 48%);
}

.newsletter-field input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgb(113 158 116 / 14%);
}

.newsletter-field button {
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 10px var(--button-padding-inline);
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 720;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.newsletter-field button svg {
  width: 15px;
  height: 15px;
}

.newsletter-field button:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.newsletter-field button:focus-visible {
  outline: 2px solid var(--green-dark);
  outline-offset: 3px;
}

.newsletter-feedback {
  min-height: 18px;
  margin: 11px 0 0;
  color: var(--text);
  font-size: 10.5px;
  line-height: 1.5;
}

.site-footer {
  overflow: hidden;
  background: #294c32;
  color: var(--cream);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(150px, 0.65fr));
  gap: clamp(30px, 5vw, 70px);
  padding-block: clamp(54px, 6vw, 82px);
}

.footer-brand img {
  width: 164px;
  height: auto;
  display: block;
}

.footer-brand > a {
  width: fit-content;
  display: inline-flex;
  padding: 0;
  border-radius: var(--radius);
  background: transparent;
}

.footer-brand p {
  max-width: 320px;
  margin: 20px 0 0;
  color: rgb(245 245 220 / 70%);
  font-size: 12.5px;
  line-height: 1.6;
}

.footer-tagline-fruit {
  width: 17px;
  height: 17px;
  display: inline-block;
  margin-left: 7px;
  color: var(--orange);
  vertical-align: -4px;
  transform: rotate(-8deg);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--orange);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  width: fit-content;
  color: rgb(245 245 220 / 72%);
  font-size: 11px;
  line-height: 1.5;
  transition: color 160ms ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-column a:focus-visible,
.back-to-top:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.footer-bottom {
  position: relative;
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgb(245 245 220 / 12%);
  color: rgb(245 245 220 / 55%);
  font-size: 10px;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: rgb(245 245 220 / 14%);
  transform: translateX(-50%);
}

.footer-bottom p {
  margin: 0;
}

.footer-address {
  margin: 0;
  justify-self: center;
  font-style: normal;
  line-height: 1.5;
  text-align: center;
}

.footer-address a {
  color: rgb(245 245 220 / 65%);
  transition: color 160ms ease;
}

.footer-address a:hover {
  color: var(--white);
}

.back-to-top {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  font-family: var(--header-font);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.4;
  cursor: pointer;
  justify-self: end;
  transition:
    color 160ms ease;
}

.back-to-top svg {
  width: 14px;
  height: 14px;
  transition: transform 160ms ease;
}

.back-to-top:hover {
  background: transparent;
  color: var(--orange);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

/* Visual rhythm: one calm canvas, with brand colors used as accents. */
.brand-story-section,
.wellbeing-section,
.reasons-section,
.services-section,
.process-section,
.trust-section,
.contact-section,
.newsletter-section {
  border: 0;
  background: transparent;
}

.brand-story-stats,
.footer-bottom {
  border: 0;
}

.wellbeing-section {
  color: var(--text);
}

.wellbeing-eyebrow {
  color: var(--orange);
}

.wellbeing-title {
  color: var(--green-dark);
}

.wellbeing-title span {
  color: var(--text);
}

.wellbeing-lead,
.wellbeing-insight,
.wellbeing-mission {
  color: var(--text);
}

.wellbeing-insight strong {
  color: var(--orange);
}

.wellbeing-cta {
  background: var(--green-dark);
}

.wellbeing-cta span {
  color: var(--orange);
}

.reasons-heading {
  max-width: 820px;
  display: block;
  margin-inline: auto;
  text-align: center;
}

.reasons-heading .section-eyebrow {
  justify-content: center;
}

.reasons-heading .section-title {
  margin-inline: auto;
}

.reasons-heading > p {
  max-width: 620px;
  margin: 20px auto 0;
}

.services-section {
  color: var(--text);
}

.services-title {
  color: var(--green-dark);
}

.services-title span {
  color: var(--orange);
}

.service-card {
  background: var(--card-surface);
  box-shadow: 0 18px 42px rgb(69 111 77 / 10%);
}

.process-steps li {
  position: relative;
  height: 340px;
  min-height: 0;
  background: var(--green-dark);
  box-shadow: 0 18px 40px rgb(69 111 77 / 12%);
}

.process-steps li::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 32% 0 0;
  background: linear-gradient(180deg, transparent, rgb(17 32 22 / 88%));
  pointer-events: none;
}

.process-steps figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.process-step-body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 0;
  padding: 28px;
}

.process-steps h3 {
  color: var(--white);
}

.process-steps p {
  max-width: 310px;
  color: rgb(245 245 220 / 82%);
}

.trust-inner {
  display: block;
}

.trust-section {
  padding-block: clamp(48px, 5vw, 68px);
}

.trust-heading {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.trust-eyebrow {
  justify-content: center;
}

.trust-heading h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: var(--section-title-size);
}

.logo-marquee {
  margin-top: clamp(28px, 4vw, 42px);
}

.client-logo {
  width: 150px;
  height: 60px;
  flex-basis: 150px;
  padding: 0;
  border: 0;
  background: transparent;
}

.client-logo img {
  mix-blend-mode: normal;
}

.contact-section {
  padding-block: clamp(52px, 6vw, 80px);
  overflow: visible;
}

.contact-section > .section-container {
  max-width: 1120px;
}

.contact-inner {
  position: relative;
  z-index: 1;
  min-height: 220px;
  padding: clamp(36px, 5vw, 58px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--cream);
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-call {
  position: relative;
  z-index: 2;
}

.newsletter-layout {
  max-width: 900px;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

.newsletter-copy .section-eyebrow {
  justify-content: center;
}

.newsletter-copy h2 {
  max-width: 760px;
  margin-inline: auto;
  font-size: var(--section-title-size);
}

.newsletter-copy > p:last-child {
  max-width: 620px;
  margin: 18px auto 0;
}

.newsletter-form {
  width: min(100%, 720px);
  max-width: none;
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.newsletter-form label,
.newsletter-feedback,
.newsletter-privacy {
  text-align: left;
}

.newsletter-field input {
  border: 0;
  box-shadow: 0 12px 30px rgb(69 111 77 / 10%);
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .ritual-intro,
  .ritual-panel,
  .brand-story-visual,
  .brand-story-content,
  .wellbeing-content,
  .wellbeing-visual,
  .reasons-heading,
  .reasons-mosaic,
  .services-heading,
  .services-grid,
  .process-heading,
  .process-steps,
  .trust-inner {
    animation: section-rise both;
    animation-timeline: view();
    animation-range: entry 10% cover 28%;
  }

  .ritual-panel,
  .brand-story-visual,
  .wellbeing-visual,
  .reasons-mosaic,
  .services-grid,
  .process-steps {
    animation-range: entry 5% cover 24%;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    width: min(100% - 38px, 1120px);
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    gap: 18px;
  }

  .brand-logo {
    width: 150px;
  }

  .footer-brand img {
    width: 150px;
  }

  .main-navigation ul {
    gap: 17px;
  }

  .main-navigation li a,
  .call-button {
    font-size: 11.25px;
  }

  .hero-inner {
    width: min(100% - 48px, 1120px);
  }

  .hero-content {
    width: min(100%, 620px);
  }
}

/* Passe en navigation plein écran avant que des liens ajoutés dans WordPress
   puissent comprimer ou déborder le header. */
@media (max-width: 1120px) {
  :root {
    --header-height: 58px;
  }

  .header-inner {
    width: calc(100% - 30px);
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .brand-logo {
    width: 134px;
  }

  .footer-brand img {
    width: 134px;
  }

  .brand.is-hidden {
    opacity: 0;
    visibility: hidden;
  }

  .menu-toggle {
    display: grid;
  }

  .menu-toggle[aria-expanded="true"] span {
    width: 28px;
    background: var(--white);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .main-navigation {
    position: fixed;
    z-index: 101;
    inset: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: clamp(64px, 8vh, 82px) clamp(28px, 8vw, 62px);
    overflow-y: auto;
    background: var(--green);
    color: var(--white);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: none;
  }

  .main-navigation-content {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    display: grid;
    align-self: center;
    align-content: center;
    gap: 24px;
  }

  .mobile-menu-motifs {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: block;
    overflow: hidden;
    pointer-events: none;
  }

  .mobile-menu-fruit {
    position: absolute;
    width: auto;
    color: var(--cream);
    opacity: 0.09;
  }

  .mobile-menu-fruit-citrus {
    top: 8%;
    left: -42px;
    height: clamp(130px, 20vw, 180px);
    transform: rotate(-14deg);
  }

  .mobile-menu-fruit-banana {
    top: 17%;
    right: -55px;
    height: clamp(150px, 24vw, 210px);
    color: var(--orange);
    opacity: 0.12;
    transform: rotate(18deg);
  }

  .mobile-menu-fruit-grape {
    bottom: 8%;
    left: -42px;
    height: clamp(150px, 23vw, 200px);
    transform: rotate(-12deg);
  }

  .mobile-menu-fruit-apple {
    right: -30px;
    bottom: 12%;
    height: clamp(105px, 17vw, 150px);
    color: var(--orange);
    opacity: 0.1;
    transform: rotate(10deg);
  }

  .main-navigation.is-animated {
    transition: transform 390ms cubic-bezier(0.76, 0, 0.24, 1), visibility 390ms;
  }

  .main-navigation.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .main-navigation ul {
    width: 100%;
    display: grid;
    gap: 0;
  }

  .main-navigation li {
    border: 0;
  }

  .main-navigation li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 13px 2px;
    color: var(--white);
    font-size: clamp(16.5px, 4.6vw, 19px);
    font-weight: 640;
    letter-spacing: 0;
  }

  .main-navigation li a::after {
    display: none;
  }

  .main-navigation li a:hover,
  .main-navigation li a.is-active {
    color: var(--orange);
  }

  .desktop-call-button {
    display: none;
  }

  .mobile-call-button {
    width: 100%;
    min-height: var(--button-height);
    display: inline-flex;
    margin-top: 0;
    border: 0;
    border-radius: var(--radius);
    box-shadow: none;
    font-size: var(--button-font-size);
  }

  .mobile-call-button:hover {
    box-shadow: none;
  }

  .hero {
    min-height: clamp(540px, 72svh, 640px);
  }

  .hero-video {
    object-position: center center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgb(20 40 28 / 91%) 0%, rgb(27 57 38 / 75%) 63%, rgb(27 57 38 / 42%) 100%),
      linear-gradient(180deg, rgb(12 24 17 / 15%) 0%, transparent 45%, rgb(12 24 17 / 50%) 100%);
  }

  .hero-inner {
    width: calc(100% - 46px);
    padding: 46px 0 42px;
  }

  .hero-content {
    width: min(100%, 610px);
  }

  .hero-title {
    font-size: clamp(36px, 6.8vw, 52px);
    letter-spacing: -2px;
  }

  .hero-description {
    font-size: clamp(14.5px, 2vw, 17px);
  }

  .hero-actions {
    margin-top: 25px;
  }

  .hero-highlights {
    margin-top: 23px;
  }

  .ritual-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .brand-story-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .brand-story-content {
    order: 1;
  }

  .brand-story-visual {
    width: 100%;
    height: 390px;
    order: 2;
  }

  .offers-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .offers-intro {
    max-width: 650px;
  }

  .wellbeing-layout {
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
    gap: 22px;
  }

  .wellbeing-content {
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .wellbeing-visual {
    height: 330px;
    min-height: 0;
  }

  .ritual-story {
    min-height: 360px;
  }

  .reasons-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 22px;
  }

  .reasons-heading > p {
    max-width: 650px;
  }

  .reasons-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .reason-image-card {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 380px;
  }

  .services-grid {
    gap: 18px;
  }

  .service-card figure {
    height: 360px;
  }

  .process-steps li {
    min-height: 235px;
  }

  .trust-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .trust-eyebrow {
    margin-bottom: 0;
  }

  .newsletter-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .newsletter-form {
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-visual {
    width: min(100%, 390px);
    justify-self: center;
  }

  .contact-inner {
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  :root {
    --section-title-size: clamp(31px, 9vw, 38px);
  }

  .hero {
    min-height: clamp(550px, 68svh, 610px);
  }

  .hero-inner {
    padding: 38px 0 34px;
  }

  .hero-content,
  .weekly-hero-content {
    text-align: center;
  }

  .hero-kicker,
  .weekly-hero-kicker {
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(33px, 9vw, 38px);
    letter-spacing: -1.65px;
    line-height: 1.05;
  }

  .hero-title strong {
    display: inline;
  }

  .hero-description {
    margin-top: 18px;
    margin-right: auto;
    margin-left: auto;
    font-size: 13.5px;
    line-height: 1.52;
  }

  .hero-actions {
    justify-content: center;
    margin-top: 22px;
  }

  .hero-highlights {
    justify-content: center;
    gap: 8px 18px;
    margin-top: 21px;
  }

  .section-title {
    font-size: var(--section-title-size);
    letter-spacing: -1.5px;
  }

  .section-copy {
    font-size: 14px;
    line-height: 1.62;
  }

  .ritual-panel {
    margin-top: 36px;
  }

  .brand-story-visual {
    height: clamp(270px, 72vw, 320px);
  }

  .brand-story-visual figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-wrap: wrap;
    padding: 11px 13px;
  }

  .brand-story-lead {
    margin-top: 21px;
    font-size: 14px;
    line-height: 1.68;
  }

  .brand-story-values {
    display: grid;
    gap: 10px;
  }

  .brand-story-stats {
    gap: 12px;
    margin-top: 25px;
    padding: 20px 0;
  }

  .brand-story-stats dd {
    font-size: 9.5px;
  }

  .offers-title {
    font-size: var(--section-title-size);
    letter-spacing: -1.5px;
  }

  .offers-list {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .offer-item {
    padding: 30px 0;
  }

  .offer-item:first-child {
    border-right: 0;
    border-bottom: 1px solid rgb(245 245 220 / 20%);
  }

  .offer-item:last-child {
    padding-right: 0;
  }

  .offer-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 22px;
  }

  .quality-markers {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .ritual-story {
    min-height: auto;
    padding: 30px 24px 32px;
  }

  .ritual-story-top {
    display: grid;
    justify-items: start;
    gap: 19px;
  }

  .ritual-benefits {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .ritual-benefits li {
    grid-template-columns: 30px minmax(0, 1fr);
    display: grid;
    gap: 10px;
    padding: 18px 0;
    border-top: 1px solid rgb(245 245 220 / 18%);
    border-left: 0;
  }

  .ritual-benefits li:first-child {
    padding-left: 0;
    border-top: 1px solid rgb(245 245 220 / 18%);
  }

  .ritual-benefits li > span {
    margin-bottom: 0;
    padding-top: 2px;
  }

  .wellbeing-title {
    font-size: var(--section-title-size);
    letter-spacing: -1.5px;
  }

  .wellbeing-lead {
    margin-top: 19px;
    font-size: 14px;
    line-height: 1.62;
  }

  .wellbeing-insight {
    margin-top: 20px;
    font-size: 13.5px;
    line-height: 1.7;
  }

  .wellbeing-visual {
    height: clamp(240px, 66vw, 300px);
  }

  .wellbeing-content {
    min-height: 0;
    padding: 0;
  }

  .reasons-mosaic {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .reason-image-card {
    grid-column: auto;
    min-height: 330px;
  }

  .reason-card {
    min-height: 190px;
  }

  .services-title {
    font-size: var(--section-title-size);
    letter-spacing: -1.5px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .service-card figure {
    height: 280px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .process-steps li {
    min-height: 220px;
  }

  .process-steps figure {
    height: 210px;
  }

  .process-step-body {
    min-height: 0;
  }

  .trust-heading h2,
  .newsletter-copy h2 {
    font-size: var(--section-title-size);
    letter-spacing: -1.5px;
  }

  .client-logo {
    width: 128px;
    height: 52px;
    flex-basis: 128px;
    padding: 0;
  }

  .client-logo--cftc img {
    width: 52px;
  }

  .client-logo--stoik img {
    width: 108px;
  }

  .client-logo--babilou img {
    width: 92px;
  }

  .client-logo--ws-groupe img {
    width: 72px;
  }

  .client-logo--fortinet img {
    width: 128px;
  }

  .client-logo--capago img {
    width: 106px;
  }

  .section-side-motif {
    width: 72px;
    height: 72px;
    opacity: 0.06;
  }

  .section-side-motif--left {
    left: -27px;
  }

  .section-side-motif--right {
    right: -27px;
  }

  .section-side-motif--cream {
    opacity: 0.09;
  }

  .logo-marquee-track {
    animation-duration: 27s;
  }

  .newsletter-field {
    grid-template-columns: 1fr;
  }

  .newsletter-field button {
    width: fit-content;
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-lead {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
  }

  .about-stats {
    gap: 14px;
    margin-top: 28px;
    padding: 22px 0;
  }

  .about-stats dd {
    font-size: 10px;
  }

  .about-visual {
    width: min(100%, 320px);
  }

  .contact-inner {
    display: grid;
    align-items: center;
    justify-items: center;
    gap: 26px;
    text-align: center;
  }

  .contact-call {
    width: fit-content;
  }
}

@media (max-width: 420px) {
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-logo {
    width: 126px;
  }

  .footer-brand img {
    width: 126px;
  }

  .main-navigation {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-inner {
    width: calc(100% - 34px);
    padding: 32px 0 28px;
  }

  .hero {
    min-height: clamp(550px, 68svh, 590px);
  }

  .hero-kicker {
    margin-bottom: 14px;
    font-size: 8.5px;
    letter-spacing: 1.45px;
  }

  .hero-kicker svg {
    width: 15px;
    height: 15px;
    flex-basis: 15px;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 36px);
    letter-spacing: -1.45px;
    line-height: 1.06;
  }

  .hero-description {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
  }

  .hero-button {
    width: fit-content;
    max-width: 100%;
    min-height: var(--button-height);
    padding: 10px var(--button-padding-inline);
  }

  .hero-highlights {
    display: flex;
    gap: 8px 16px;
    margin-top: 20px;
    font-size: 9px;
  }

  .wellbeing-visual {
    height: 240px;
  }

  .wellbeing-visual figcaption {
    padding: 12px 14px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-stats div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: baseline;
    gap: 12px;
  }

  .about-stats dd {
    margin-top: 0;
  }

  .about-link,
  .contact-call {
    width: fit-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .brand-story-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .brand-story-stats div {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: baseline;
    gap: 12px;
  }

  .brand-story-stats dd {
    margin-top: 0;
  }

  .brand-story-link,
  .process-link {
    width: fit-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .service-card figure {
    height: 245px;
  }

  .service-card-body {
    padding: 28px 22px 30px;
  }

  .newsletter-form {
    padding: 22px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding-block: 20px;
    text-align: center;
  }

  .footer-address,
  .back-to-top {
    justify-self: center;
  }

}

@media (max-height: 700px) and (max-width: 980px) {
  .hero-inner {
    padding-top: 30px;
    padding-bottom: 26px;
  }

  .hero-kicker {
    margin-bottom: 12px;
  }

  .hero-description {
    margin-top: 15px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-highlights {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }

  .logo-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .logo-marquee-track {
    animation: none;
  }

  .logo-marquee-set[aria-hidden="true"] {
    display: none;
  }

}

/* Grille éditoriale unifiée : les héros suivent exactement l'axe du body. */
.hero-inner,
.weekly-hero-content,
.blog-article-hero-content {
  width: 100%;
  max-width: calc(var(--content-width) + (var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.hero-service-area {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 88%);
  font-family: var(--header-font);
  font-size: 10.5px;
  line-height: 1.4;
}

.hero-service-area svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--orange);
}

.hero-service-area span {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.hero-service-area strong {
  color: var(--cream);
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-service-area {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgb(113 158 116 / 22%);
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 12px;
  font-weight: 650;
}

.contact-service-area svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--orange);
}

.contact-service-area span,
.contact-service-area small {
  display: block;
}

.contact-service-area small {
  margin-bottom: 3px;
  color: var(--orange-dark);
  font-size: 8.5px;
  font-weight: 720;
  letter-spacing: 1px;
  text-transform: uppercase;
}

@media (max-width: 600px) {
  .hero-service-area {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-service-area span {
    display: block;
  }

  .hero-service-area strong {
    display: block;
    margin-bottom: 2px;
  }
}

/* Corrections de cohérence après validation client ---------------------- */
:root {
  --button-height: 42px;
  --button-padding-inline: 16px;
  --button-font-size: 12px;
}

.header-inner {
  grid-template-columns: minmax(190px, 1fr) auto minmax(235px, .82fr);
}

/* Le téléphone reste une action discrète ; seul le devis est un bouton. */
.header-actions .call-button {
  min-height: auto;
  padding: 7px 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--green-dark);
  font-size: 12px;
  white-space: nowrap;
}

.header-actions .call-button svg {
  color: var(--green-dark);
}

.header-actions .call-button:hover {
  background: transparent;
  box-shadow: none;
  color: var(--orange-dark);
  transform: none;
}

.header-actions .call-button:hover svg {
  color: var(--orange-dark);
}

.quote-button {
  min-height: var(--button-height);
  padding: 8px var(--button-padding-inline);
  background: var(--orange);
  box-shadow: 0 7px 16px rgb(216 119 56 / 18%);
  color: var(--white);
  font-size: var(--button-font-size);
}

.quote-button svg {
  color: var(--green-dark);
}

.quote-button:hover {
  background: var(--green-dark);
}

.quote-button:hover svg {
  color: var(--orange);
}

.hero-button,
.brand-story-link,
.process-link,
.contact-call,
.weekly-primary-button,
.blog-section-link,
.newsletter-field button,
.bdf-wpforms-contact button[type="submit"] {
  min-height: var(--button-height) !important;
  padding: 8px var(--button-padding-inline) !important;
  font-size: var(--button-font-size) !important;
}

/* Hiérarchie et couleurs communes aux sections de la page d’accueil. */
.brand-story-title,
.reasons-heading .section-title {
  color: var(--green-dark);
  font-size: var(--section-title-size);
  font-weight: 680;
  letter-spacing: -1.9px;
  line-height: 1.06;
}

.brand-story-title span,
.reasons-heading .section-title span {
  color: var(--orange);
}

.service-card-body > p:not(.service-card-kicker),
.service-card-body > p:not(.service-card-kicker) strong {
  color: var(--text);
}

.service-card-body > p:not(.service-card-kicker) strong {
  font-weight: 720;
}

/* Sur les aplats verts, les informations principales restent très lisibles. */
.contact-kicker,
.about-mission-copy .section-eyebrow,
.catering-events-copy .section-eyebrow,
.contact-direct-card .contact-card-kicker {
  color: var(--cream);
}

.contact-kicker svg,
.about-mission-copy .section-eyebrow svg,
.catering-events-copy .section-eyebrow svg,
.contact-direct-card .contact-card-kicker svg {
  color: var(--orange);
}

.contact-inner h2,
.about-mission-copy .section-title,
.catering-events-copy .section-title,
.contact-direct-card h2 {
  color: var(--white);
}

.contact-inner .contact-call:hover {
  background: var(--cream);
  color: var(--green-dark);
}

/* Les cartes pratiques reprennent le même centrage que les engagements. */
.catering-practical-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 24px;
  box-shadow: 0 14px 34px rgb(69 111 77 / 8%);
  text-align: center;
}

.catering-practical-grid {
  grid-auto-rows: 1fr;
}

.catering-practical-grid h3 {
  margin-top: 23px;
  font-size: 14px;
}

.catering-practical-grid p {
  max-width: 250px;
  margin: 12px auto 0;
  font-size: 14px;
}

/* Le formulaire suit un ordre naturel et le sélecteur est explicite. */
.bdf-wpforms-contact .wpforms-field-select {
  grid-column: 1 / -1;
}

.bdf-wpforms-contact select {
  appearance: none;
  padding-right: 46px !important;
  background-color: rgb(255 255 255 / 70%) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23456f4d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 17px 17px !important;
  cursor: pointer;
}

.contact-location-card {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
}

.contact-map,
.contact-map iframe {
  width: 100%;
  min-height: 300px;
  height: 100%;
}

.contact-location-copy {
  align-self: end;
}

/* Animation visible immédiatement, légère et déclenchée en avance. */
.has-scroll-reveal .scroll-reveal {
  opacity: .88;
  transform: translateY(12px);
  transition: opacity 460ms ease, transform 520ms cubic-bezier(.2,.75,.25,1);
}

.has-scroll-reveal .scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(160px, .8fr) auto minmax(215px, .74fr);
  }
}

@media (max-width: 980px) {
  .mobile-call-button {
    width: fit-content;
    min-height: auto;
    display: inline-flex;
    align-self: flex-start;
    padding: 7px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--cream);
    font-size: 13px;
  }

  .mobile-call-button svg {
    color: var(--orange);
  }

  .mobile-call-button:hover {
    background: transparent !important;
    box-shadow: none !important;
    color: var(--white) !important;
    transform: none;
  }

  .mobile-quote-button {
    width: fit-content;
    min-width: 116px;
    align-self: flex-start;
  }

  .contact-location-card {
    grid-template-rows: 250px auto;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 250px;
  }
}

@media (max-width: 700px) {
  .catering-practical-grid article {
    min-height: 264px;
  }

  .bdf-wpforms-contact .wpforms-field-select {
    grid-column: auto;
  }

  .contact-location-card {
    grid-template-rows: 230px auto;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-scroll-reveal .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Panier hebdomadaire */
.weekly-hero {
  padding-block: clamp(48px, 6vw, 76px);
  background: var(--cream);
}

.weekly-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 96px);
}

.weekly-hero-copy h1 {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(40px, 5.2vw, 68px);
  font-weight: 770;
  letter-spacing: clamp(-3px, -0.22vw, -1.7px);
  line-height: 1.02;
}

.weekly-hero-copy h1 span {
  display: block;
  color: var(--orange);
}

.weekly-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 30px;
}

.weekly-primary-button {
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 10px var(--button-padding-inline);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 720;
  transition: background 180ms ease, transform 180ms ease;
}

.weekly-primary-button svg {
  width: 16px;
  height: 16px;
}

.weekly-primary-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.weekly-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 700;
}

.weekly-phone-link svg {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.weekly-hero-visual {
  position: relative;
  height: clamp(320px, 30vw, 400px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sage);
}

.weekly-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 57%;
}

.weekly-hero-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgb(20 37 25 / 67%));
  pointer-events: none;
}

.weekly-hero-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 23px;
  left: 24px;
  color: var(--white);
  font-family: var(--header-font);
}

.weekly-hero-visual figcaption span,
.weekly-hero-visual figcaption strong {
  display: block;
}

.weekly-hero-visual figcaption span {
  margin-bottom: 5px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 730;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.weekly-hero-visual figcaption strong {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.25;
}

.basket-sizing-section,
.basket-extras-section,
.basket-commitments-section,
.basket-delivery-section {
  padding-block: var(--section-space);
  background: transparent;
}

.weekly-centered-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.weekly-centered-heading .section-eyebrow {
  justify-content: center;
}

.weekly-centered-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.basket-size-grid {
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 44px auto 0;
}

.basket-size-grid article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card-surface);
  text-align: center;
}

.basket-size-grid strong {
  color: var(--orange);
  font-family: var(--header-font);
  font-size: clamp(30px, 3.1vw, 43px);
  line-height: 1;
}

.basket-size-grid span {
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 670;
  line-height: 1.45;
}

.basket-size-note {
  max-width: 760px;
  margin: 26px auto 0;
  color: rgb(51 51 51 / 76%);
  font-size: 12.5px;
  line-height: 1.6;
  text-align: center;
}

.basket-custom-section {
  padding-block: var(--section-space);
  background: transparent;
  color: var(--text);
}

.basket-custom-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 94px);
}

.basket-custom-copy {
  grid-column: 2;
  grid-row: 1;
}

.basket-custom-visual {
  grid-column: 1;
  grid-row: 1;
  height: clamp(340px, 32vw, 430px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.basket-custom-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 38%;
}

.weekly-light-eyebrow {
  color: var(--orange);
}

.basket-custom-copy .section-title {
  color: var(--green-dark);
}

.basket-custom-copy .section-title span {
  color: var(--orange);
}

.basket-custom-copy > p:not(.section-eyebrow):not(.basket-fixed-price) {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.72;
}

.basket-custom-criteria {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.basket-custom-criteria li {
  min-height: 104px;
  display: grid;
  align-content: center;
  gap: 11px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--card-surface);
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 10px;
  font-weight: 680;
  line-height: 1.4;
}

.basket-custom-criteria svg {
  width: 21px;
  height: 21px;
  color: var(--orange);
  stroke-width: 1.6;
}

.basket-fixed-price {
  margin: 18px 0 0;
  padding: 17px 19px;
  border-radius: var(--radius);
  background: rgb(216 119 56 / 13%);
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 10.5px;
  font-weight: 640;
  line-height: 1.55;
}

.basket-extras-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.basket-extras-grid article {
  min-height: 230px;
  padding: 30px 25px;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 44%);
}

.basket-extras-grid svg {
  width: 31px;
  height: 31px;
  color: var(--orange);
}

.basket-extras-grid h3 {
  margin: 24px 0 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 15px;
  line-height: 1.3;
}

.basket-extras-grid p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.65;
}

.basket-allergen-note {
  max-width: 780px;
  margin: 24px auto 0;
  color: rgb(51 51 51 / 70%);
  font-size: 11.5px;
  line-height: 1.55;
  text-align: center;
}

.basket-commitments-section {
  padding-block: var(--section-space);
}

.basket-commitments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.basket-commitments-grid article {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(32px, 4vw, 50px);
  border-radius: var(--radius);
  color: var(--white);
}

.basket-commitments-grid article > svg {
  width: 42px;
  height: 42px;
  margin-bottom: auto;
  color: var(--cream);
}

.basket-commitment-bio {
  background: var(--green-dark);
}

.basket-commitment-france {
  background: var(--orange);
}

.basket-commitments-grid strong {
  display: block;
  margin-top: 42px;
  color: var(--cream);
  font-family: var(--header-font);
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 770;
  line-height: 1;
}

.basket-commitments-grid h3 {
  max-width: 520px;
  margin: 10px 0 0;
  font-family: var(--header-font);
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.3;
}

.basket-commitments-grid p {
  max-width: 560px;
  margin: 17px 0 0;
  color: rgb(255 255 255 / 85%);
  font-size: 13px;
  line-height: 1.65;
}

.basket-example-section {
  padding-block: var(--section-space);
  background: transparent;
  color: var(--text);
}

.basket-example-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
}

.weekly-example-eyebrow {
  color: var(--orange);
}

.basket-example-copy .section-title {
  color: var(--green-dark);
}

.basket-example-copy .section-title span {
  color: var(--orange);
}

.basket-example-copy > p:not(.section-eyebrow) {
  max-width: 650px;
  margin: 21px 0 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.7;
}

.basket-example-lists {
  display: grid;
  gap: 17px;
  margin-top: 29px;
}

.basket-example-lists div {
  padding-left: 17px;
  border-left: 3px solid var(--orange);
}

.basket-example-lists h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 760;
}

.basket-example-lists p {
  margin: 6px 0 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.55;
}

.basket-example-visual {
  height: clamp(340px, 31vw, 420px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.basket-example-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 48%;
}

.basket-delivery-points {
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 48px auto 0;
}

.basket-delivery-points article {
  text-align: center;
}

.basket-delivery-points svg {
  width: 34px;
  height: 34px;
  color: var(--orange);
}

.basket-delivery-points h3 {
  margin: 20px 0 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 15px;
  line-height: 1.3;
}

.basket-delivery-points p {
  margin: 11px 0 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.65;
}

.weekly-contact-section {
  padding-top: clamp(32px, 4vw, 54px);
}

.weekly-contact-section .contact-call svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 980px) {
  .weekly-hero-layout,
  .basket-custom-layout,
  .basket-example-layout {
    grid-template-columns: 1fr;
  }

  .weekly-hero-copy {
    max-width: 760px;
  }

  .weekly-hero-visual {
    width: 100%;
    height: 360px;
  }

  .basket-size-grid,
  .basket-extras-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .basket-custom-visual {
    grid-column: 1;
    grid-row: 2;
    height: 360px;
  }

  .basket-custom-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .basket-example-visual {
    height: 360px;
  }
}

@media (max-width: 700px) {
  .weekly-hero {
    padding-block: 38px 58px;
  }

  .weekly-hero-layout {
    gap: 38px;
  }

  .weekly-hero-copy h1 {
    font-size: clamp(36px, 10.5vw, 47px);
    letter-spacing: -2px;
  }

  .weekly-hero-visual,
  .basket-custom-visual,
  .basket-example-visual {
    height: 290px;
  }

  .basket-custom-layout,
  .basket-example-layout {
    gap: 38px;
  }

  .basket-custom-copy {
    text-align: center;
  }

  .basket-custom-copy .section-eyebrow {
    justify-content: center;
  }

  .basket-custom-copy .section-title,
  .basket-custom-copy > p:not(.section-eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .basket-custom-criteria {
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 10px;
  }

  .basket-custom-criteria li {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 14px 16px;
    text-align: left;
  }

  .basket-custom-criteria svg {
    flex: 0 0 auto;
  }

  .basket-fixed-price {
    width: fit-content;
    max-width: 100%;
  }

  .basket-example-copy,
  .basket-extra-body,
  .basket-commitment-body {
    text-align: center;
  }

  .basket-example-copy .section-eyebrow {
    justify-content: center;
  }

  .basket-example-copy .section-title,
  .basket-example-copy > p:not(.section-eyebrow),
  .basket-extra-body p,
  .basket-commitment-body h3,
  .basket-commitment-body p {
    margin-right: auto;
    margin-left: auto;
  }

  .basket-example-lists {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .basket-example-lists div {
    padding-left: 0;
    border-left: 0;
  }

  .basket-commitment-france .basket-commitment-body strong::before {
    margin-right: auto;
    margin-left: auto;
  }

  .basket-commitments-grid {
    grid-template-columns: 1fr;
  }

  .basket-commitments-grid article {
    min-height: 280px;
  }

  .basket-delivery-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
    gap: 12px;
  }

  .basket-delivery-points article {
    min-height: 176px;
    padding: 22px 15px;
  }

  .basket-delivery-points article:last-child {
    width: calc(50% - 6px);
    grid-column: 1 / -1;
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .weekly-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .weekly-primary-button {
    width: fit-content;
    max-width: 100%;
    align-self: center;
  }

  .weekly-phone-link {
    justify-content: center;
    padding: 8px 0;
  }

  .weekly-hero-visual,
  .basket-custom-visual,
  .basket-example-visual {
    height: 245px;
  }

  .basket-size-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
  }

  .basket-size-grid article {
    min-height: 128px;
    padding: 19px 14px;
  }

  .basket-extras-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .basket-extras-grid article {
    min-height: 0;
  }

  .basket-commitments-grid {
    margin-top: 34px;
  }

  .basket-commitments-grid article {
    min-height: 260px;
  }

  .basket-example-lists div {
    padding-left: 0;
  }
}

/* WordPress integration --------------------------------------------------- */
.bdf-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  overflow: visible;
}

.screen-reader-text,
.bdf-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.screen-reader-text:focus {
  z-index: 99999;
  top: 10px;
  left: 10px;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  padding: 10px 14px !important;
  margin: 0 !important;
  background: var(--white);
  color: var(--green-dark);
}

.main-navigation li.current-menu-item > a,
.main-navigation li.current_page_item > a,
.main-navigation li.current-menu-ancestor > a,
.main-navigation li.is-current > a {
  color: var(--orange);
}

.main-navigation li.current-menu-item > a::after,
.main-navigation li.current_page_item > a::after,
.main-navigation li.current-menu-ancestor > a::after,
.main-navigation li.is-current > a::after {
  transform: scaleX(1);
}

.custom-logo-link {
  display: contents;
}

.navigation.pagination {
  margin-top: 42px;
  font-family: var(--header-font);
}

.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.navigation.pagination .page-numbers {
  min-width: 36px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid rgb(69 111 77 / 20%);
  border-radius: var(--radius);
}

.navigation.pagination .current,
.navigation.pagination a:hover {
  background: var(--green-dark);
  color: var(--white);
}

.generic-page-section {
  min-height: 60vh;
  padding-block: var(--section-space);
}

.generic-page-content {
  max-width: 820px;
  margin-top: 32px;
  font-size: 16px;
  line-height: 1.75;
}

.contact-location-copy > a {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-dark);
  font-family: var(--header-font);
  font-size: 12px;
  font-weight: 750;
}

.contact-location-copy > a svg {
  width: 15px;
  height: 15px;
}

.blog-article-content > :first-child {
  margin-top: 0;
}

.blog-article-content .wp-block-image img,
.blog-article-content > img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

body.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 980px) {
  .main-navigation li.current-menu-item > a,
  .main-navigation li.current_page_item > a,
  .main-navigation li.current-menu-ancestor > a,
  .main-navigation li.is-current > a {
    color: var(--orange);
  }
}

/* CTA commun avec motifs fruités */
.contact-section {
  background: var(--cream);
}

.contact-cta-motifs {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  pointer-events: none;
}

.contact-cta-fruit {
  position: absolute;
  width: auto;
  color: var(--sage);
  opacity: 0.14;
}

.contact-cta-fruit-left {
  bottom: -30px;
  left: -22px;
  height: 94px;
  transform: rotate(-9deg);
}

.contact-cta-fruit-right {
  top: -72px;
  right: -46px;
  height: 178px;
  color: var(--orange);
  opacity: 0.18;
  transform: rotate(11deg);
}

/* Héros intérieur compact */
.weekly-hero {
  position: relative;
  min-height: clamp(340px, 31vw, 390px);
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
}

.weekly-hero-background,
.weekly-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.weekly-hero-background {
  display: block;
  object-fit: cover;
  object-position: center 52%;
}

.weekly-hero-overlay {
  background:
    linear-gradient(90deg, rgb(24 49 31 / 91%) 0%, rgb(30 62 40 / 77%) 52%, rgb(30 62 40 / 35%) 100%),
    linear-gradient(180deg, rgb(13 28 18 / 10%), rgb(13 28 18 / 42%));
}

.weekly-hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 900px);
  margin: 0;
  padding-block: clamp(28px, 4vw, 42px);
}

.weekly-hero-content .weekly-hero-kicker {
  color: var(--cream);
}

.weekly-hero-content .hero-title {
  max-width: 900px;
  margin: 0;
  color: var(--white);
}

.weekly-hero-content .hero-title span {
  display: inline;
  color: var(--orange);
  font-weight: 780;
}

.weekly-hero-content .hero-title strong {
  display: block;
  color: var(--white);
}

.weekly-hero-content .hero-actions {
  margin-top: 28px;
}

.weekly-hero-kicker svg {
  transform: none;
}

/* Cartes-photo des options */
.basket-extras-grid article {
  position: relative;
  min-height: 340px;
  padding: 0;
  overflow: hidden;
  background: var(--green-dark);
  box-shadow: 0 18px 40px rgb(69 111 77 / 12%);
}

.basket-extras-grid figure {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.basket-extras-grid figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms ease;
}

.basket-extras-grid article::after,
.basket-commitments-grid article::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 28% 0 0;
  background: linear-gradient(180deg, transparent, rgb(15 31 21 / 92%));
  pointer-events: none;
}

.basket-extras-grid article:hover figure img {
  transform: scale(1.035);
}

.basket-extra-body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 0;
  padding: 27px 25px;
}

.basket-extra-body h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(16px, 1.5vw, 20px);
}

.basket-extra-body p {
  max-width: 290px;
  color: rgb(245 245 220 / 84%);
}

/* Engagements illustrés */
.basket-commitments-grid article {
  position: relative;
  min-height: 380px;
  display: block;
  padding: 0;
  overflow: hidden;
  background: var(--green-dark);
  box-shadow: 0 18px 40px rgb(69 111 77 / 12%);
}

.basket-commitments-grid figure {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.basket-commitments-grid figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 520ms ease;
}

.basket-commitment-bio figure img {
  object-position: center 72%;
}

.basket-commitment-france figure img {
  object-position: center 55%;
}

.basket-commitment-body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 0;
  padding: clamp(28px, 3.5vw, 40px);
}

.basket-commitments-grid article:hover figure img {
  transform: scale(1.025);
}

.basket-commitment-body strong {
  margin-top: 0;
  color: var(--white);
  font-size: clamp(23px, 2.5vw, 34px);
}

.basket-commitment-france .basket-commitment-body strong::before {
  content: "";
  width: 32px;
  height: 4px;
  display: block;
  margin-bottom: 14px;
  border-radius: 2px;
  background: linear-gradient(90deg, #1c4f9c 0 33.33%, #fff 33.33% 66.66%, #e53935 66.66%);
}

.basket-commitment-body h3 {
  max-width: 560px;
  color: var(--cream);
  font-size: clamp(15px, 1.5vw, 19px);
}

.basket-commitment-body p {
  max-width: 560px;
  margin-top: 12px;
  color: rgb(255 255 255 / 84%);
}

.basket-delivery-points article {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 25px;
  border-radius: var(--radius);
  background: var(--card-surface);
}

@media (max-width: 700px) {
  .weekly-hero {
    min-height: 390px;
    padding: 0;
  }

  .weekly-hero-background {
    object-position: 60% center;
  }

  .weekly-hero-overlay {
    background: linear-gradient(90deg, rgb(24 49 31 / 91%), rgb(30 62 40 / 62%));
  }

  .weekly-hero-content {
    width: 100%;
    padding-block: 36px;
  }

  .basket-delivery-points article {
    min-height: 176px;
    padding: 22px 15px;
  }

  .basket-delivery-points svg {
    width: 25px;
    height: 25px;
  }

  .basket-delivery-points h3 {
    margin-top: 16px;
    font-size: 12px;
  }

  .basket-delivery-points p {
    margin-top: 9px;
    font-size: 10.5px;
    line-height: 1.52;
  }

  .basket-commitments-grid article {
    min-height: 360px;
  }

  .contact-cta-fruit-left {
    bottom: -25px;
    left: -26px;
    height: 76px;
  }

  .contact-cta-fruit-right {
    top: -48px;
    right: -38px;
    height: 124px;
  }
}

@media (max-width: 520px) {
  .weekly-hero {
    min-height: 390px;
  }

  .basket-extras-grid article {
    min-height: 310px;
  }

  .basket-extras-grid figure {
    height: 100%;
  }

  .basket-commitments-grid {
    gap: 14px;
  }

  .basket-commitments-grid article {
    min-height: 350px;
  }

  .basket-commitments-grid figure {
    height: 100%;
  }

  .basket-commitment-body {
    min-height: 0;
  }
}

/* Page traiteur */
.catering-hero-background {
  object-position: center 48%;
}

.catering-hero-overlay {
  background:
    linear-gradient(90deg, rgb(23 45 29 / 93%) 0%, rgb(28 57 37 / 79%) 51%, rgb(28 57 37 / 34%) 100%),
    linear-gradient(180deg, rgb(13 28 18 / 8%), rgb(13 28 18 / 44%));
}

.catering-offers-section,
.catering-events-section {
  padding-block: var(--section-space);
  background: transparent;
}

.catering-centered-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.catering-centered-heading .section-eyebrow {
  justify-content: center;
}

.catering-centered-heading .section-title {
  margin-inline: auto;
}

.catering-centered-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.catering-offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.catering-offers-grid article {
  position: relative;
  min-height: clamp(330px, 35vw, 430px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  box-shadow: 0 18px 40px rgb(69 111 77 / 12%);
}

.catering-offers-grid figure {
  position: absolute;
  inset: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.catering-offers-grid figure img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.catering-offer-cut-fruit figure img {
  object-position: center 56%;
}

.catering-offer-skewers figure img {
  object-position: center 55%;
}

.catering-offer-vegetables figure img {
  object-position: center 52%;
}

.catering-offers-grid article::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 22% 0 0;
  background: linear-gradient(180deg, transparent, rgb(13 29 19 / 95%));
  pointer-events: none;
}

.catering-offers-grid article:hover figure img {
  transform: scale(1.035);
}

.catering-offer-body {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: clamp(25px, 3vw, 36px);
}

.catering-offer-body h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--header-font);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.25;
}

.catering-offer-body p {
  max-width: 380px;
  margin: 12px 0 0;
  color: rgb(245 245 220 / 84%);
  font-size: 12.5px;
  line-height: 1.62;
}

.catering-expertise-section {
  padding-block: var(--section-space);
  background: transparent;
  color: var(--text);
}

.catering-expertise-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 94px);
}

.catering-expertise-copy {
  grid-column: 2;
  grid-row: 1;
}

.catering-light-eyebrow {
  color: var(--orange);
}

.catering-expertise-copy .section-title {
  color: var(--green-dark);
}

.catering-expertise-copy .section-title span {
  color: var(--orange);
}

.catering-expertise-copy > p:not(.section-eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.72;
}

.catering-quality-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.catering-quality-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.catering-quality-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 3px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
}

.catering-expertise-visual {
  grid-column: 1;
  grid-row: 1;
  height: clamp(330px, 31vw, 420px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.catering-expertise-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 54%;
}

.catering-events-panel {
  position: relative;
  min-height: clamp(380px, 38vw, 490px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
}

.catering-events-panel > img,
.catering-events-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.catering-events-panel > img {
  display: block;
  object-fit: cover;
  object-position: center 52%;
}

.catering-events-overlay {
  background: linear-gradient(180deg, rgb(20 42 27 / 62%), rgb(20 42 27 / 88%));
}

.catering-events-copy {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin-inline: auto;
  padding: clamp(36px, 6vw, 72px);
  text-align: center;
}

.catering-events-copy .section-eyebrow {
  justify-content: center;
  color: var(--orange);
}

.catering-events-copy .section-title {
  margin-inline: auto;
  color: var(--white);
}

.catering-events-copy .section-title span {
  color: var(--cream);
}

.catering-events-copy > p:not(.section-eyebrow) {
  max-width: 650px;
  margin: 20px auto 0;
  color: rgb(255 255 255 / 86%);
  font-size: 14px;
  line-height: 1.68;
}

.catering-event-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.catering-event-tags li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgb(245 245 220 / 30%);
  border-radius: var(--radius);
  background: rgb(245 245 220 / 10%);
  color: var(--white);
  font-family: var(--header-font);
  font-size: 9.5px;
  font-weight: 640;
  backdrop-filter: blur(5px);
}

.catering-practical-section {
  padding-block: var(--section-space);
  background: transparent;
  color: var(--text);
}

.catering-practical-heading .section-eyebrow {
  color: var(--orange);
}

.catering-practical-heading .section-title {
  color: var(--text);
}

.catering-practical-heading .section-title span {
  color: var(--green);
}

.catering-practical-heading > p:last-child {
  color: var(--text);
}

.catering-practical-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.catering-practical-grid article {
  min-height: 210px;
  padding: 28px 25px;
  border-radius: var(--radius);
  background: var(--card-surface);
}

.catering-practical-grid svg {
  width: 29px;
  height: 29px;
  display: block;
  margin-inline: auto;
  color: var(--orange);
}

.catering-practical-grid h3 {
  margin: 23px 0 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 14px;
  line-height: 1.35;
}

.catering-practical-grid p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.62;
}

.catering-contact-section {
  padding-top: clamp(32px, 4vw, 54px);
}

@media (max-width: 980px) {
  .catering-offers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catering-offers-grid article:last-child {
    grid-column: 1 / -1;
  }

  .catering-expertise-layout {
    grid-template-columns: 1fr;
  }

  .catering-expertise-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .catering-expertise-visual {
    grid-column: 1;
    grid-row: 2;
    height: 360px;
  }

  .catering-practical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .catering-hero-background {
    object-position: 58% 50%;
  }

  .catering-hero-overlay {
    background: linear-gradient(90deg, rgb(23 45 29 / 92%), rgb(28 57 37 / 64%));
  }

  .catering-offers-grid {
    grid-template-columns: 1fr;
  }

  .catering-offers-grid article,
  .catering-offers-grid article:last-child {
    grid-column: auto;
    min-height: 320px;
  }

  .catering-centered-heading,
  .catering-expertise-copy,
  .catering-events-copy,
  .catering-offer-body,
  .catering-practical-grid article {
    text-align: center;
  }

  .catering-expertise-copy .section-eyebrow,
  .catering-events-copy .section-eyebrow {
    justify-content: center;
  }

  .catering-expertise-copy .section-title,
  .catering-expertise-copy > p:not(.section-eyebrow),
  .catering-events-copy .section-title,
  .catering-events-copy > p:not(.section-eyebrow),
  .catering-offer-body p {
    margin-right: auto;
    margin-left: auto;
  }

  .catering-quality-list {
    width: fit-content;
    max-width: 100%;
    justify-items: start;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .catering-quality-list li {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .catering-expertise-visual {
    height: 290px;
  }

  .catering-events-panel {
    min-height: 520px;
  }

  .catering-events-overlay {
    background: linear-gradient(180deg, rgb(20 42 27 / 69%), rgb(20 42 27 / 91%));
  }

  .catering-events-copy {
    padding: 38px 25px;
  }

  .catering-event-tags {
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .catering-offers-grid {
    margin-top: 34px;
  }

  .catering-offers-grid article {
    min-height: 300px;
  }

  .catering-expertise-visual {
    height: 245px;
  }

  .catering-events-panel {
    min-height: 500px;
  }

  .catering-practical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
  }

  .catering-practical-grid article {
    min-height: 168px;
    padding: 21px 14px;
  }

  .catering-practical-grid svg {
    width: 25px;
    height: 25px;
  }

  .catering-practical-grid h3 {
    margin-top: 16px;
    font-size: 12px;
  }

  .catering-practical-grid p {
    margin-top: 9px;
    font-size: 10.5px;
    line-height: 1.52;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catering-offers-grid figure img {
    transition: none;
  }
}

/* Page qui sommes-nous */
.about-page-hero-background {
  object-position: center 38%;
}

.about-page-hero-overlay {
  background:
    linear-gradient(90deg, rgb(23 45 29 / 93%) 0%, rgb(28 57 37 / 78%) 53%, rgb(28 57 37 / 34%) 100%),
    linear-gradient(180deg, rgb(13 28 18 / 8%), rgb(13 28 18 / 42%));
}

.about-story-section,
.about-mission-section,
.about-commitments-section {
  padding-block: var(--section-space);
  background: transparent;
}

.about-story-layout {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 7vw, 94px);
}

.about-story-copy {
  grid-column: 2;
  grid-row: 1;
}

.about-story-copy .section-title {
  color: var(--green-dark);
}

.about-story-copy > p:not(.section-eyebrow) {
  max-width: 650px;
  margin: 21px 0 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.72;
}

.about-story-values {
  display: grid;
  gap: 12px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.about-story-values li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.about-story-values svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  padding: 3px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
}

.about-story-visual {
  grid-column: 1;
  grid-row: 1;
  height: clamp(330px, 31vw, 420px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--cream);
}

.about-story-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.about-mission-panel {
  position: relative;
  isolation: isolate;
  max-width: 1120px;
  min-height: 330px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  margin-inline: auto;
  padding: clamp(38px, 6vw, 70px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--cream);
}

.about-mission-fruit-motifs {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.about-mission-fruit {
  position: absolute;
  width: auto;
  opacity: 0.13;
}

.about-mission-fruit-apple {
  bottom: -34px;
  left: -24px;
  height: 112px;
  color: var(--sage);
  transform: rotate(-9deg);
}

.about-mission-fruit-citrus {
  top: -82px;
  right: -48px;
  height: 194px;
  color: var(--orange);
  transform: rotate(12deg);
}

.about-mission-copy,
.about-mission-signature {
  position: relative;
  z-index: 2;
}

.about-mission-copy .section-eyebrow {
  color: var(--orange);
}

.about-mission-copy .section-title {
  color: var(--white);
}

.about-mission-copy .section-title span {
  color: var(--orange);
}

.about-mission-copy > p:not(.section-eyebrow) {
  max-width: 680px;
  margin: 21px 0 0;
  color: rgb(245 245 220 / 84%);
  font-size: 14px;
  line-height: 1.7;
}

.about-mission-signature {
  margin: 0;
  padding: clamp(26px, 3.5vw, 38px);
  border-radius: var(--radius);
  background: var(--orange);
}

.about-mission-signature span {
  display: block;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-mission-signature p {
  margin: 13px 0 0;
  color: var(--white);
  font-family: var(--header-font);
  font-size: clamp(20px, 2.2vw, 29px);
  font-weight: 680;
  letter-spacing: -0.8px;
  line-height: 1.2;
  text-wrap: balance;
}

.about-centered-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.about-centered-heading .section-eyebrow {
  justify-content: center;
}

.about-centered-heading .section-title {
  margin-inline: auto;
}

.about-centered-heading > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.about-commitments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.about-commitments-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 24px;
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 14px 34px rgb(69 111 77 / 8%);
  text-align: center;
}

.about-commitments-grid article > svg {
  width: 31px;
  height: 31px;
  color: var(--orange);
}

.about-commitments-grid h3 {
  margin: 23px 0 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 14px;
  line-height: 1.35;
}

.about-commitments-grid p {
  margin: 12px 0 0;
  color: var(--text);
  font-size: 12px;
  line-height: 1.62;
}

.about-contact-section {
  padding-top: clamp(32px, 4vw, 54px);
}

@media (max-width: 980px) {
  .about-story-layout,
  .about-mission-panel {
    grid-template-columns: 1fr;
  }

  .about-story-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .about-story-visual {
    grid-column: 1;
    grid-row: 2;
    height: 360px;
  }

  .about-mission-signature {
    max-width: 560px;
  }

  .about-commitments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .about-page-hero-background {
    object-position: 54% 38%;
  }

  .about-page-hero-overlay {
    background: linear-gradient(90deg, rgb(23 45 29 / 92%), rgb(28 57 37 / 64%));
  }

  .about-story-copy,
  .about-mission-copy,
  .about-mission-signature {
    text-align: center;
  }

  .about-story-copy .section-eyebrow,
  .about-mission-copy .section-eyebrow {
    justify-content: center;
  }

  .about-story-copy .section-title,
  .about-story-copy > p:not(.section-eyebrow),
  .about-mission-copy .section-title,
  .about-mission-copy > p:not(.section-eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .about-story-values {
    width: fit-content;
    max-width: 100%;
    justify-items: start;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .about-story-values li {
    width: auto;
    max-width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .about-story-visual {
    height: 290px;
  }

  .about-mission-panel {
    min-height: 0;
    padding: 36px 25px;
  }

  .about-mission-signature {
    width: 100%;
    margin-inline: auto;
  }

  .about-commitments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .about-commitments-grid article {
    min-height: 190px;
    padding: 24px 16px;
  }

  .about-mission-fruit-apple {
    bottom: -27px;
    left: -25px;
    height: 84px;
  }

  .about-mission-fruit-citrus {
    top: -54px;
    right: -39px;
    height: 136px;
  }
}

@media (max-width: 520px) {
  .about-story-visual {
    height: 245px;
  }

  .about-commitments-grid {
    margin-top: 34px;
  }

  .about-commitments-grid article {
    min-height: 188px;
    padding: 21px 13px;
  }

  .about-commitments-grid article > svg {
    width: 25px;
    height: 25px;
  }

  .about-commitments-grid h3 {
    margin-top: 16px;
    font-size: 11.5px;
  }

  .about-commitments-grid p {
    margin-top: 9px;
    font-size: 10.25px;
    line-height: 1.5;
  }
}

/* Système commun des boutons colorés */
.brand-story-link,
.wellbeing-cta {
  background: var(--green-dark);
  color: var(--white);
}

.brand-story-link svg,
.wellbeing-cta span {
  color: var(--orange);
}

.brand-story-link:hover,
.wellbeing-cta:hover {
  background: var(--orange);
  color: var(--white);
}

.brand-story-link:hover svg,
.wellbeing-cta:hover span {
  color: var(--green-dark);
}

.call-button,
.hero-button-primary,
.process-link,
.contact-call,
.newsletter-field button,
.weekly-primary-button {
  background: var(--orange);
  color: var(--white);
}

.call-button svg,
.hero-button-primary span,
.process-link svg,
.contact-call svg,
.newsletter-field button svg,
.weekly-primary-button svg {
  color: var(--green-dark);
}

.call-button:hover,
.hero-button-primary:hover,
.process-link:hover,
.contact-call:hover,
.newsletter-field button:hover,
.weekly-primary-button:hover {
  background: var(--green-dark);
  color: var(--white);
}

.call-button:hover svg,
.hero-button-primary:hover span,
.process-link:hover svg,
.contact-call:hover svg,
.newsletter-field button:hover svg,
.weekly-primary-button:hover svg {
  color: var(--orange);
}

/* Un bouton doit rester contrasté lorsqu'il se trouve déjà sur un fond vert. */
.hero .hero-button-primary:hover,
.weekly-hero .hero-button-primary:hover,
.contact-inner .contact-call:hover,
.main-navigation .mobile-call-button:hover {
  background: var(--cream);
  color: var(--green-dark);
  box-shadow: 0 10px 24px rgb(14 36 23 / 18%);
}

.hero .hero-button-primary:hover span,
.weekly-hero .hero-button-primary:hover span,
.contact-inner .contact-call:hover svg,
.main-navigation .mobile-call-button:hover svg {
  color: var(--orange);
}

/* Page contact */
.contact-intro-section {
  padding-block: clamp(68px, 7vw, 96px) clamp(52px, 6vw, 78px);
  scroll-margin-top: var(--header-height);
}

.contact-intro-content {
  max-width: 920px;
  text-align: center;
}

.contact-intro-content .section-eyebrow {
  justify-content: center;
}

.contact-intro-content .section-title {
  max-width: 800px;
  margin-inline: auto;
}

.contact-intro-content > p:last-child {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  text-wrap: pretty;
}

.contact-form-section {
  padding-bottom: var(--section-space);
}

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);
  align-items: stretch;
  gap: clamp(20px, 3vw, 36px);
}

.contact-form-panel {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(28px, 4vw, 52px);
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 20px 48px rgb(69 111 77 / 9%);
}

.contact-form-heading {
  max-width: 650px;
}

.contact-form-heading h2,
.contact-direct-card h2,
.contact-location-copy h2 {
  margin: 0;
  font-family: var(--header-font);
  font-weight: 680;
  text-wrap: balance;
}

.contact-form-heading h2 {
  color: var(--green-dark);
  font-size: clamp(23px, 2.35vw, 32px);
  letter-spacing: -0.8px;
  line-height: 1.16;
}

.contact-form-heading > p:last-child {
  margin: 13px 0 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.6;
}

.contact-form {
  margin-top: clamp(30px, 4vw, 42px);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px 18px;
}

.contact-form-field {
  min-width: 0;
  display: grid;
  gap: 9px;
}

.contact-form-field-full {
  grid-column: 1 / -1;
}

.contact-form-field > span {
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 680;
  line-height: 1.4;
}

.contact-form-field > span b {
  color: var(--orange);
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  border: 1px solid rgb(69 111 77 / 19%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 70%);
  color: var(--text);
  font: inherit;
  font-size: 13px;
  line-height: 1.5;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form-field input {
  height: 47px;
  padding: 0 15px;
}

.contact-form-field textarea {
  min-height: 164px;
  resize: vertical;
  padding: 14px 15px;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
  color: rgb(51 51 51 / 48%);
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgb(216 119 56 / 12%);
}

.contact-form-field small {
  max-width: 670px;
  color: rgb(51 51 51 / 72%);
  font-size: 10.5px;
  line-height: 1.55;
}

.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 24px;
}

.contact-submit {
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px var(--button-padding-inline);
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  box-shadow: 0 8px 20px rgb(216 119 56 / 20%);
  color: var(--white);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 690;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-submit svg {
  width: 15px;
  height: 15px;
  color: var(--green-dark);
  transition: color 180ms ease, transform 180ms ease;
}

.contact-submit:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 23px rgb(69 111 77 / 20%);
  transform: translateY(-1px);
}

.contact-submit:hover svg {
  color: var(--orange);
  transform: translateX(2px);
}

.contact-submit:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.contact-form-status {
  margin: 0;
  color: var(--green-dark);
  font-size: 11px;
  line-height: 1.45;
}

/* WPForms inherits the approved contact-page design. */
.bdf-wpforms-contact {
  margin-top: clamp(30px, 4vw, 42px);
}

.bdf-wpforms-contact .wpforms-container,
.bdf-wpforms-contact .wpforms-container-full {
  margin: 0 !important;
}

.bdf-wpforms-contact .wpforms-field-container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px 18px;
}

.bdf-wpforms-contact .wpforms-field {
  min-width: 0;
  padding: 0 !important;
}

.bdf-wpforms-contact .wpforms-field-textarea {
  grid-column: 1 / -1;
}

.bdf-wpforms-contact .wpforms-field-label {
  display: block;
  margin: 0 0 9px !important;
  color: var(--green-dark) !important;
  font-family: var(--header-font) !important;
  font-size: 11px !important;
  font-weight: 680 !important;
  line-height: 1.4 !important;
}

.bdf-wpforms-contact .wpforms-required-label {
  color: var(--orange) !important;
}

.bdf-wpforms-contact input[type="text"],
.bdf-wpforms-contact input[type="email"],
.bdf-wpforms-contact textarea {
  width: 100% !important;
  max-width: none !important;
  border: 1px solid rgb(69 111 77 / 19%) !important;
  border-radius: var(--radius) !important;
  background: rgb(255 255 255 / 70%) !important;
  box-shadow: none !important;
  color: var(--text) !important;
  font-family: inherit !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
  outline: none !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

.bdf-wpforms-contact input[type="text"],
.bdf-wpforms-contact input[type="email"] {
  height: 47px !important;
  padding: 0 15px !important;
}

.bdf-wpforms-contact textarea {
  min-height: 164px !important;
  padding: 14px 15px !important;
  resize: vertical;
}

.bdf-wpforms-contact input::placeholder,
.bdf-wpforms-contact textarea::placeholder {
  color: rgb(51 51 51 / 48%) !important;
}

.bdf-wpforms-contact input:focus,
.bdf-wpforms-contact textarea:focus {
  border-color: var(--orange) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgb(216 119 56 / 12%) !important;
}

.bdf-wpforms-contact .wpforms-field-description {
  max-width: 670px;
  margin-top: 8px !important;
  color: rgb(51 51 51 / 72%) !important;
  font-size: 10.5px !important;
  line-height: 1.55 !important;
}

.bdf-wpforms-contact .wpforms-submit-container {
  margin-top: 24px !important;
  padding: 0 !important;
}

.bdf-wpforms-contact button[type="submit"] {
  min-height: var(--button-height) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px var(--button-padding-inline) !important;
  border: 0 !important;
  border-radius: var(--radius) !important;
  background: var(--orange) !important;
  box-shadow: 0 8px 20px rgb(216 119 56 / 20%) !important;
  color: var(--white) !important;
  font-family: var(--header-font) !important;
  font-size: var(--button-font-size) !important;
  font-weight: 690 !important;
  line-height: 1.3 !important;
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease !important;
}

.bdf-wpforms-contact button[type="submit"]::after {
  content: "→";
  color: var(--green-dark);
  font-size: 15px;
  line-height: 1;
  transition: color 180ms ease, transform 180ms ease;
}

.bdf-wpforms-contact button[type="submit"]:hover {
  background: var(--green-dark) !important;
  box-shadow: 0 10px 23px rgb(69 111 77 / 20%) !important;
  transform: translateY(-1px);
}

.bdf-wpforms-contact button[type="submit"]:hover::after {
  color: var(--orange);
  transform: translateX(2px);
}

.bdf-wpforms-contact button[type="submit"]:focus-visible {
  outline: 2px solid var(--orange) !important;
  outline-offset: 4px;
}

.bdf-wpforms-contact .wpforms-error,
.bdf-wpforms-contact label.wpforms-error {
  color: #9d342c !important;
  font-size: 10px !important;
}

.bdf-wpforms-contact .wpforms-confirmation-container-full,
.bdf-wpforms-contact .wpforms-confirmation-container {
  margin: 0 !important;
  padding: 18px 20px !important;
  border: 1px solid rgb(69 111 77 / 18%) !important;
  border-radius: var(--radius) !important;
  background: rgb(113 158 116 / 14%) !important;
  color: var(--green-dark) !important;
  font-size: 12px;
  line-height: 1.6;
}

.bdf-wpforms-privacy {
  max-width: 660px;
  margin: 17px 0 0;
  color: rgb(51 51 51 / 68%);
  font-size: 9.5px;
  line-height: 1.55;
}

.bdf-wpforms-privacy a {
  color: var(--green-dark);
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 2px;
}

.bdf-form-unavailable {
  margin-top: 28px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgb(113 158 116 / 12%);
  color: var(--green-dark);
  font-size: 12px;
  line-height: 1.6;
}

.bdf-form-unavailable p {
  margin: 0;
}

.bdf-form-unavailable a {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 2px;
}

.contact-sidebar {
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.contact-direct-card,
.contact-location-card {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-direct-card {
  padding: clamp(28px, 3vw, 38px);
  background: var(--green-dark);
  color: var(--cream);
  box-shadow: 0 20px 48px rgb(69 111 77 / 13%);
}

.contact-card-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--header-font);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-direct-card h2 {
  color: var(--white);
  font-size: clamp(20px, 2vw, 27px);
  letter-spacing: -0.65px;
  line-height: 1.2;
}

.contact-direct-card > p:not(.contact-card-kicker) {
  margin: 14px 0 0;
  color: rgb(245 245 220 / 82%);
  font-size: 12.5px;
  line-height: 1.65;
}

.contact-direct-links {
  display: grid;
  gap: 9px;
  margin-top: 25px;
}

.contact-direct-links a {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: var(--radius);
  background: rgb(245 245 220 / 9%);
  color: var(--white);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-direct-links a:hover {
  background: rgb(245 245 220 / 16%);
  transform: translateX(2px);
}

.contact-direct-links a > svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--orange);
}

.contact-direct-links a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-direct-links small {
  display: block;
  margin-bottom: 2px;
  color: rgb(245 245 220 / 66%);
  font-size: 8.5px;
  font-weight: 650;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-location-card {
  background: var(--card-surface);
  box-shadow: 0 16px 38px rgb(69 111 77 / 8%);
}

.contact-map {
  min-height: 210px;
  overflow: hidden;
  background: #dfe9d8;
}

.contact-map iframe {
  width: 100%;
  height: 210px;
  display: block;
  border: 0;
  filter: saturate(0.84) contrast(0.96);
}

.contact-location-copy {
  padding: 24px 26px 27px;
}

.contact-location-copy h2 {
  color: var(--green-dark);
  font-size: 18px;
  line-height: 1.25;
}

.contact-location-copy > p:last-child {
  margin: 10px 0 0;
  color: var(--text);
  font-size: 11.5px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .contact-form-panel {
    height: auto;
  }

  .contact-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .contact-direct-card,
  .contact-location-card {
    min-height: 100%;
  }
}

@media (max-width: 700px) {
  .contact-intro-section {
    padding-block: 58px 45px;
  }

  .contact-intro-content > p:last-child {
    font-size: 13px;
  }

  .contact-form-panel {
    padding: 30px 22px;
  }

  .contact-form-heading {
    text-align: center;
  }

  .contact-form-heading .section-eyebrow {
    justify-content: center;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .bdf-wpforms-contact .wpforms-field-container {
    grid-template-columns: 1fr;
  }

  .bdf-wpforms-contact .wpforms-field-textarea {
    grid-column: auto;
  }

  .bdf-wpforms-contact .wpforms-submit-container,
  .bdf-wpforms-privacy {
    text-align: center;
  }

  .contact-form-field-full {
    grid-column: auto;
  }

  .contact-form-footer {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .contact-direct-card,
  .contact-location-copy {
    text-align: center;
  }

  .contact-direct-links {
    max-width: 440px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .contact-card-kicker {
    text-align: center;
  }
}

@media (max-width: 520px) {
  .contact-form-section {
    padding-bottom: 72px;
  }

  .contact-form-panel {
    padding: 27px 18px;
  }

  .contact-form-heading h2 {
    font-size: 22px;
  }

  .contact-form-field input {
    height: 45px;
  }

  .bdf-wpforms-contact input[type="text"],
  .bdf-wpforms-contact input[type="email"] {
    height: 45px !important;
  }

  .contact-form-field textarea {
    min-height: 150px;
  }

  .bdf-wpforms-contact textarea {
    min-height: 150px !important;
  }

  .contact-submit {
    width: fit-content;
    max-width: 100%;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 190px;
    height: 190px;
  }
}

/* Blog et articles */
.home-blog-section,
.blog-index-section,
.blog-related-section,
.blog-article-content-section {
  padding-block: var(--section-space);
  background: transparent;
}

.blog-page-hero-background {
  object-position: center 56%;
}

.blog-page-hero-overlay {
  background:
    linear-gradient(90deg, rgb(24 49 31 / 93%) 0%, rgb(30 62 40 / 75%) 56%, rgb(30 62 40 / 36%) 100%),
    linear-gradient(180deg, rgb(13 28 18 / 10%), rgb(13 28 18 / 44%));
}

.blog-centered-heading {
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.blog-centered-heading .section-eyebrow {
  justify-content: center;
}

.blog-centered-heading .section-title {
  margin-inline: auto;
}

.blog-centered-heading > p:last-child {
  max-width: 660px;
  margin: 20px auto 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

.blog-grid {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  margin-top: 43px;
}

.home-blog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blog-index-grid {
  max-width: 1120px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-right: auto;
  margin-left: auto;
}

.blog-related-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blog-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 16px 38px rgb(69 111 77 / 8%);
  transition: box-shadow 220ms ease, transform 220ms ease;
}

.blog-card:hover {
  box-shadow: 0 21px 46px rgb(69 111 77 / 14%);
  transform: translateY(-4px);
}

.blog-card > a {
  height: 100%;
  display: grid;
  grid-template-rows: 230px minmax(0, 1fr);
}

.blog-card--compact > a {
  grid-template-rows: 180px minmax(0, 1fr);
}

.blog-card figure {
  position: relative;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: var(--sage);
}

.blog-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgb(22 42 27 / 24%));
  pointer-events: none;
}

.blog-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 500ms ease;
}

.blog-card:hover img {
  transform: scale(1.035);
}

.blog-card-body {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  padding: 25px 25px 27px;
}

.blog-card--compact .blog-card-body {
  padding: 21px 20px 23px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--orange);
  font-family: var(--header-font);
  font-size: 8.5px;
  font-weight: 720;
  letter-spacing: 0.65px;
  line-height: 1.4;
  text-transform: uppercase;
}

.blog-card-meta span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgb(51 51 51 / 58%);
  white-space: nowrap;
}

.blog-card-meta svg {
  width: 12px;
  height: 12px;
}

.blog-card h3 {
  margin: 17px 0 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(17px, 1.55vw, 21px);
  font-weight: 690;
  letter-spacing: -0.45px;
  line-height: 1.28;
  text-wrap: balance;
}

.blog-card--compact h3 {
  font-size: clamp(15px, 1.3vw, 18px);
}

.blog-card-body > p {
  margin: 13px 0 0;
  color: var(--text);
  font-size: 11.5px;
  line-height: 1.62;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 10px;
  font-weight: 710;
}

.blog-card-link svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  transition: transform 180ms ease;
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(3px);
}

.blog-section-link {
  width: fit-content;
  min-height: var(--button-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 31px auto 0;
  padding: 9px var(--button-padding-inline);
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 690;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.blog-section-link svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.blog-section-link:hover {
  background: var(--orange);
  box-shadow: 0 9px 21px rgb(216 119 56 / 20%);
  transform: translateY(-1px);
}

.blog-section-link:hover svg {
  color: var(--green-dark);
}

.blog-newsletter-section {
  padding-top: clamp(48px, 5vw, 68px);
}

.blog-article-hero {
  position: relative;
  min-height: clamp(340px, 31vw, 390px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
  color: var(--white);
}

.blog-article-hero > img,
.blog-article-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.blog-article-hero > img {
  display: block;
  object-fit: cover;
  object-position: center 50%;
}

.blog-article-hero-overlay {
  background:
    linear-gradient(90deg, rgb(20 41 26 / 92%) 0%, rgb(25 52 33 / 76%) 64%, rgb(25 52 33 / 38%) 100%),
    linear-gradient(180deg, rgb(13 28 18 / 16%), rgb(13 28 18 / 68%));
}

.blog-article-hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(28px, 4vw, 42px);
}

.blog-back-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 21px;
  color: var(--cream);
  font-family: var(--header-font);
  font-size: 9.5px;
  font-weight: 680;
}

.blog-back-link svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  transition: transform 180ms ease;
}

.blog-back-link:hover svg {
  transform: translateX(-3px);
}

.blog-article-category {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--header-font);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.blog-article-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: var(--header-font);
  font-size: clamp(42px, 4.4vw, 66px);
  font-weight: 690;
  letter-spacing: -2.5px;
  line-height: 1.02;
  text-wrap: balance;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 19px;
  color: rgb(245 245 220 / 80%);
  font-family: var(--header-font);
  font-size: 9.5px;
  font-weight: 620;
}

.blog-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-article-author strong {
  color: var(--white);
  font-weight: 700;
}

.blog-article-meta svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 340px);
  align-items: start;
  gap: clamp(42px, 8vw, 110px);
}

.blog-article-content {
  max-width: 760px;
}

.blog-article-intro {
  margin: 0 0 44px;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 600;
  letter-spacing: -0.45px;
  line-height: 1.5;
}

.blog-article-content > section + section {
  margin-top: 43px;
}

.blog-article-content h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(23px, 2.5vw, 32px);
  font-weight: 680;
  letter-spacing: -0.75px;
  line-height: 1.2;
  text-wrap: balance;
}

.blog-article-content h2::after {
  content: "";
  width: 38px;
  height: 3px;
  display: block;
  margin-top: 15px;
  border-radius: 2px;
  background: var(--orange);
}

.blog-article-content section > p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.8;
}

.blog-article-content ul {
  display: grid;
  gap: 12px;
  margin: 23px 0 0;
  padding: 0;
  list-style: none;
}

.blog-article-content li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.65;
}

.blog-article-content li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  transform: translateY(-50%);
}

.blog-article-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 31px 28px;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--cream);
  box-shadow: 0 18px 42px rgb(69 111 77 / 12%);
}

.blog-article-aside > svg {
  width: 27px;
  height: 27px;
  color: var(--orange);
}

.blog-article-aside > p {
  margin: 23px 0 0;
  color: var(--orange);
  font-family: var(--header-font);
  font-size: 8.5px;
  font-weight: 740;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.blog-article-aside h2 {
  margin: 11px 0 0;
  color: var(--white);
  font-family: var(--header-font);
  font-size: 20px;
  font-weight: 660;
  letter-spacing: -0.5px;
  line-height: 1.35;
  text-wrap: balance;
}

.blog-article-aside a {
  width: fit-content;
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 9px var(--button-padding-inline);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 690;
  transition: background 180ms ease, color 180ms ease;
}

.blog-article-aside a svg {
  width: 15px;
  height: 15px;
  color: var(--green-dark);
}

.blog-article-aside a:hover {
  background: var(--cream);
  color: var(--green-dark);
}

.blog-article-aside a:hover svg {
  color: var(--orange);
}

.blog-related-section {
  padding-top: clamp(44px, 5vw, 68px);
}

@media (max-width: 1120px) {
  .home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-blog-grid .blog-card--compact > a {
    grid-template-rows: 220px minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .blog-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-article-aside {
    position: static;
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  .blog-page-hero-background {
    object-position: 58% center;
  }

  .blog-page-hero-overlay {
    background: linear-gradient(90deg, rgb(24 49 31 / 92%), rgb(30 62 40 / 63%));
  }

  .blog-centered-heading > p:last-child {
    font-size: 13px;
  }

  .blog-index-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-grid,
  .blog-related-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 330px);
    justify-content: start;
    gap: 14px;
    padding-bottom: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 2px;
    scroll-snap-type: inline mandatory;
    scrollbar-color: var(--orange) rgb(69 111 77 / 10%);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .home-blog-grid::-webkit-scrollbar,
  .blog-related-grid::-webkit-scrollbar {
    height: 4px;
  }

  .home-blog-grid::-webkit-scrollbar-track,
  .blog-related-grid::-webkit-scrollbar-track {
    background: rgb(69 111 77 / 10%);
  }

  .home-blog-grid::-webkit-scrollbar-thumb,
  .blog-related-grid::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: var(--orange);
  }

  .home-blog-grid .blog-card,
  .blog-related-grid .blog-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .blog-card > a,
  .blog-card--compact > a,
  .home-blog-grid .blog-card--compact > a {
    grid-template-rows: clamp(205px, 58vw, 270px) minmax(0, 1fr);
  }

  .blog-article-hero {
    min-height: 390px;
    text-align: center;
  }

  .blog-article-hero-overlay {
    background: linear-gradient(90deg, rgb(20 41 26 / 88%), rgb(25 52 33 / 68%));
  }

  .blog-back-link {
    margin-right: auto;
    margin-left: auto;
  }

  .blog-article-hero h1 {
    margin-inline: auto;
    font-size: clamp(33px, 9vw, 38px);
    letter-spacing: -1.65px;
    line-height: 1.05;
  }

  .blog-article-meta {
    justify-content: center;
  }

  .blog-article-intro,
  .blog-article-content h2,
  .blog-article-content section > p {
    text-align: center;
  }

  .blog-article-content h2::after {
    margin-right: auto;
    margin-left: auto;
  }

  .blog-article-content ul {
    width: fit-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .blog-article-aside {
    margin-inline: auto;
    text-align: center;
  }

  .blog-article-aside a {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .blog-grid {
    margin-top: 34px;
  }

  .blog-card-body,
  .blog-card--compact .blog-card-body {
    padding: 22px 19px 24px;
  }

  .blog-card h3,
  .blog-card--compact h3 {
    font-size: 17px;
  }

  .blog-article-content-section {
    padding-block: 72px;
  }

  .blog-article-intro {
    font-size: 18px;
  }

  .blog-article-content section > p {
    font-size: 13px;
    line-height: 1.75;
  }

  .blog-article-aside {
    padding: 28px 22px;
  }
}

/* Pages d’informations légales */
.legal-intro-section {
  padding-block: clamp(68px, 7vw, 96px) clamp(48px, 5vw, 66px);
}

.legal-intro-content {
  max-width: 930px;
  text-align: center;
}

.legal-intro-content .section-eyebrow {
  justify-content: center;
}

.legal-intro-content .section-title {
  max-width: 850px;
  margin-inline: auto;
  color: var(--green-dark);
}

.legal-intro-content > p:not(.section-eyebrow):not(.legal-update) {
  max-width: 690px;
  margin: 22px auto 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
}

.legal-update {
  margin: 17px 0 0;
  color: rgb(51 51 51 / 58%);
  font-family: var(--header-font);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.legal-content-section {
  padding-bottom: var(--section-space);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.28fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(34px, 6vw, 86px);
}

.legal-navigation {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  padding: 24px;
  border-radius: var(--radius);
  background: var(--green-dark);
  box-shadow: 0 16px 38px rgb(69 111 77 / 11%);
}

.legal-navigation > p {
  margin: 0 0 15px;
  color: var(--orange);
  font-family: var(--header-font);
  font-size: 8.5px;
  font-weight: 740;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.legal-navigation nav {
  display: grid;
  gap: 5px;
}

.legal-navigation a {
  padding: 11px 12px;
  border-radius: var(--radius);
  color: rgb(245 245 220 / 78%);
  font-family: var(--header-font);
  font-size: 10px;
  font-weight: 640;
  line-height: 1.35;
  transition: background 180ms ease, color 180ms ease;
}

.legal-navigation a:hover,
.legal-navigation a.is-active {
  background: rgb(245 245 220 / 11%);
  color: var(--white);
}

.legal-document {
  min-width: 0;
  max-width: 900px;
  padding: clamp(30px, 4.5vw, 58px);
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 20px 48px rgb(69 111 77 / 8%);
}

.legal-document > section + section {
  margin-top: clamp(39px, 5vw, 54px);
}

.legal-document section {
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.legal-document h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(22px, 2.45vw, 30px);
  font-weight: 680;
  letter-spacing: -0.7px;
  line-height: 1.2;
  text-wrap: balance;
}

.legal-document h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.4;
}

.legal-document section > p,
.legal-document section > ul {
  margin-top: 17px;
  margin-bottom: 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.78;
}

.legal-document section > p + p {
  margin-top: 14px;
}

.legal-document ul {
  display: grid;
  gap: 11px;
  padding-left: 20px;
}

.legal-document li {
  padding-left: 4px;
}

.legal-document a:not(.legal-source-link) {
  color: var(--green-dark);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgb(216 119 56 / 60%);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-status-box {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  margin-bottom: clamp(42px, 5vw, 56px);
  padding: clamp(24px, 3vw, 34px);
  border-radius: var(--radius);
}

.legal-status-box {
  background: var(--green-dark);
  color: var(--cream);
}

.legal-status-box > svg {
  width: 25px;
  height: 25px;
  color: var(--orange);
}

.legal-status-box h2 {
  font-size: clamp(18px, 2vw, 23px);
}

.legal-status-box h2 {
  color: var(--white);
}

.legal-status-box p {
  margin: 10px 0 0;
  font-size: 12.5px;
  line-height: 1.65;
}

.legal-status-box p {
  color: rgb(245 245 220 / 82%);
}

.legal-info-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: rgb(113 158 116 / 12%);
}

.legal-info-row svg {
  width: 19px;
  height: 19px;
  color: var(--orange);
}

.legal-info-row p {
  margin: 0;
  color: var(--text);
  font-size: 11.5px;
  line-height: 1.65;
}

.legal-source-link {
  width: fit-content;
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  padding: 9px var(--button-padding-inline);
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 680;
  transition: background 180ms ease, transform 180ms ease;
}

.legal-source-link svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.legal-source-link:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.legal-source-link:hover svg {
  color: var(--green-dark);
}

.legal-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 23px;
}

.legal-data-grid article {
  min-height: 230px;
  padding: 24px 20px;
  border-radius: var(--radius);
  background: rgb(113 158 116 / 10%);
}

.legal-data-grid svg {
  width: 23px;
  height: 23px;
  color: var(--orange);
}

.legal-data-grid h3 {
  margin-top: 18px;
}

.legal-data-grid p {
  margin: 11px 0 0;
  color: var(--text);
  font-size: 11px;
  line-height: 1.62;
}

.contact-form-privacy,
.newsletter-privacy {
  color: rgb(51 51 51 / 68%);
  font-size: 9.5px;
  line-height: 1.55;
}

.contact-form-privacy {
  max-width: 660px;
  margin: 17px 0 0;
}

.newsletter-privacy {
  width: 100%;
  margin: 16px 0 0;
  text-align: left;
}

.contact-form-privacy a,
.newsletter-privacy a {
  color: var(--green-dark);
  font-weight: 680;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 2px;
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .legal-navigation {
    position: static;
    padding: 19px;
  }

  .legal-navigation > p {
    text-align: center;
  }

  .legal-navigation nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .legal-navigation a {
    text-align: center;
  }

  .legal-document {
    max-width: none;
  }

  .legal-data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-data-grid article:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .legal-intro-section {
    padding-block: 58px 44px;
  }

  .legal-intro-content > p:not(.section-eyebrow):not(.legal-update) {
    font-size: 13px;
  }

  .legal-navigation {
    overflow: visible;
  }

  .legal-navigation nav {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .legal-navigation a:last-child {
    grid-column: 1 / -1;
  }

  .legal-document {
    padding: 31px 22px;
  }

  .legal-document h2,
  .legal-document section > p {
    text-align: center;
  }

  .legal-document ul {
    width: fit-content;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .legal-status-box {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .legal-info-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .legal-source-link {
    margin-right: auto;
    margin-left: auto;
  }

  .legal-data-grid {
    grid-template-columns: 1fr;
  }

  .legal-data-grid article,
  .legal-data-grid article:last-child {
    grid-column: auto;
    min-height: 0;
    text-align: center;
  }

  .contact-form-privacy {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .legal-content-section {
    padding-bottom: 72px;
  }

  .legal-document {
    padding: 28px 18px;
  }

  .legal-navigation nav {
    grid-template-columns: 1fr;
  }

  .legal-navigation a:last-child {
    grid-column: auto;
  }

  .legal-status-box {
    padding: 24px 19px;
  }

  .legal-document section > p,
  .legal-document section > ul {
    font-size: 12.5px;
    line-height: 1.72;
  }
}

/* Priorité finale : même ligne de départ pour tous les héros et le body. */
.hero-inner,
.weekly-hero-content,
.blog-article-hero-content {
  width: 100%;
  max-width: calc(var(--content-width) + (var(--page-gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

/* Les portraits et l’exemple de panier conservent leur ratio source à tous les formats. */
.brand-story-visual,
.about-story-visual {
  height: auto;
  aspect-ratio: 4 / 3;
}

.brand-story-visual img,
.about-story-visual img {
  object-fit: cover;
}

.basket-example-visual {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.basket-example-visual img {
  object-fit: cover;
  object-position: center 68%;
  border: 0;
  background: transparent;
  box-shadow: none;
}

/* Les fruits décoratifs restent dans les marges, jamais sur les cartes. */
.section-side-motif {
  display: none;
}

@media (min-width: 1400px) {
  .section-with-side-motif {
    overflow: visible;
  }

  .section-side-motif {
    top: 27%;
    width: 68px;
    height: 68px;
    display: block;
    opacity: 0.075;
  }

  .section-side-motif--left {
    left: max(22px, calc((100vw - var(--content-width)) / 2 - 104px));
  }

  .section-side-motif--right {
    right: max(22px, calc((100vw - var(--content-width)) / 2 - 104px));
  }
}

.blog-empty-state {
  max-width: 680px;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 42px auto 0;
  padding: clamp(30px, 5vw, 48px);
  border: 1px solid rgb(69 111 77 / 14%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 34%);
  text-align: center;
}

.blog-empty-state svg {
  width: 28px;
  height: 28px;
  color: var(--orange);
}

.blog-empty-state h3,
.blog-empty-state p {
  margin: 0;
}

.blog-empty-state h3 {
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: clamp(18px, 2.1vw, 24px);
}

.blog-empty-state p {
  max-width: 520px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
}

/* Aucun fruit purement décoratif dans les arrière-plans. */
.mobile-menu-motifs,
.section-side-motif,
.ritual-fruit-motifs,
.contact-cta-motifs,
.about-mission-fruit-motifs {
  display: none !important;
}

/* Ajustements client — version 1.1 -------------------------------------- */
:root {
  --header-height: 72px;
  --button-height: 46px;
  --button-padding-inline: 20px;
  --button-font-size: 12.5px;
}

body {
  font-size: 16px;
}

.header-inner {
  grid-template-columns: minmax(200px, 1fr) auto minmax(280px, 1fr);
}

.brand-logo {
  width: 188px;
}

.main-navigation ul {
  gap: clamp(16px, 1.35vw, 24px);
}

.main-navigation li a {
  font-size: 12.5px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
}

.quote-button {
  min-height: var(--button-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px var(--button-padding-inline);
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 8px 20px rgb(113 158 116 / 20%);
  color: var(--white);
  font-family: var(--header-font);
  font-size: var(--button-font-size);
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.quote-button svg {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.quote-button:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.quote-button:hover svg {
  color: var(--green-dark);
}

.mobile-quote-button {
  display: none;
}

.hero-description,
.section-copy,
.brand-story-lead,
.reasons-heading > p,
.service-card-body > p:not(.service-card-kicker),
.weekly-centered-heading > p:last-child,
.basket-custom-copy > p:not(.section-eyebrow):not(.basket-fixed-price),
.basket-example-copy > p:not(.section-eyebrow),
.basket-delivery-points p,
.contact-intro-content > p:last-child,
.contact-form-heading > p:last-child {
  font-size: clamp(15px, 1.18vw, 17px);
}

.section-eyebrow,
.hero-kicker {
  font-size: 11px;
}

.hero-highlights {
  gap: 11px 28px;
  font-size: 12px;
  line-height: 1.5;
}

.hero-highlights span::before {
  width: 7px;
  height: 7px;
  flex-basis: 7px;
  background: var(--orange);
}

.hero-button svg {
  width: 16px;
  height: 16px;
  color: var(--green-dark);
  transition: transform 180ms ease;
}

.hero-button:hover svg {
  transform: translateX(3px);
}

.hero-button-secondary svg {
  color: var(--orange);
}

.hero-button-secondary:hover svg {
  color: var(--green-dark);
}

.contact-inner,
.about-mission-panel,
.catering-events-panel,
.contact-direct-card {
  background-color: var(--green);
}

.reason-variety,
.reason-flexible {
  background: var(--green);
}

.reason-card h3 {
  font-size: clamp(17px, 1.5vw, 21px);
}

.reason-card p,
.process-steps p,
.catering-offer-body p,
.catering-practical-grid p,
.about-commitments-grid p {
  font-size: 14px;
}

.services-section {
  padding-top: clamp(78px, 8vw, 118px);
}

.service-card-body > p strong {
  color: var(--green-dark);
  font-weight: 720;
}

.service-card a {
  min-height: 42px;
  align-items: center;
  margin-top: 27px;
  padding: 10px 14px;
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
}

.service-card a svg {
  color: var(--green-dark);
}

.service-card a:hover {
  background: var(--green);
}

.client-logo--wework img {
  width: 94px;
  height: auto;
}

.testimonial-marquee {
  position: relative;
  margin-top: clamp(34px, 4vw, 50px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.testimonial-marquee-track {
  width: max-content;
  display: flex;
  animation: testimonial-scroll 58s linear infinite;
  will-change: transform;
}

.testimonial-marquee-set {
  display: flex;
  flex: none;
  gap: 14px;
  padding-right: 14px;
}

.testimonial-marquee blockquote {
  width: clamp(270px, 29vw, 390px);
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 28px;
  border-radius: var(--radius);
  background: rgb(255 255 255 / 48%);
  box-shadow: 0 14px 32px rgb(69 111 77 / 8%);
}

.testimonial-marquee blockquote:nth-child(3n + 2) {
  background: rgb(113 158 116 / 18%);
}

.testimonial-marquee blockquote:nth-child(3n) {
  background: rgb(216 119 56 / 15%);
}

.testimonial-marquee p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

.testimonial-marquee cite {
  margin-top: 20px;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
}

@keyframes testimonial-scroll {
  to { transform: translateX(-50%); }
}

.site-footer {
  background: var(--green-dark);
}

.footer-brand img {
  width: 200px;
}

.footer-brand p {
  max-width: 380px;
  font-size: 14px;
}

.footer-column h2 {
  font-size: 12.5px;
}

.footer-column a,
.footer-column span {
  font-size: 13px;
}

.footer-bottom {
  min-height: 72px;
  grid-template-columns: 1fr auto;
  font-size: 11.5px;
}

/* Composition et différence — page panier. */
.basket-difference-section {
  padding-block: var(--section-space);
}

.basket-difference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
}

.basket-difference-grid article {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card-surface);
  box-shadow: 0 16px 36px rgb(69 111 77 / 8%);
}

.basket-difference-grid article:nth-child(2) {
  background: rgb(113 158 116 / 16%);
}

.basket-difference-grid article:nth-child(4) {
  background: rgb(216 119 56 / 14%);
}

.basket-difference-grid figure {
  height: 205px;
  margin: 0;
  overflow: hidden;
}

.basket-difference-grid img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 450ms ease;
}

.basket-difference-grid article:hover img {
  transform: scale(1.025);
}

.basket-difference-grid article > div {
  padding: 24px 23px 27px;
}

.basket-difference-grid h3 {
  margin: 0;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 17px;
  line-height: 1.32;
}

.basket-difference-grid p {
  margin: 11px 0 0;
  font-size: 14px;
  line-height: 1.62;
}

.basket-difference-list {
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 34px auto 0;
  padding: 0;
  list-style: none;
}

.basket-difference-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 13px;
  font-weight: 670;
  line-height: 1.45;
}

.basket-difference-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  padding: 3px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
}

.basket-trial-cta {
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 40px auto 0;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
}

.basket-trial-cta p {
  margin: 0 0 7px;
  color: var(--green-dark);
  font-family: var(--header-font);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.basket-trial-cta h3 {
  max-width: 650px;
  margin: 0;
  font-family: var(--header-font);
  font-size: clamp(21px, 2.5vw, 31px);
  line-height: 1.2;
}

.basket-trial-cta .hero-button-primary {
  flex: 0 0 auto;
  background: var(--green);
}

.basket-trial-cta .hero-button-primary:hover {
  background: var(--green-dark);
}

.basket-custom-criteria {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.basket-size-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hero-service-area {
  margin-top: 22px;
  padding: 10px 13px;
  border: 1px solid rgb(245 245 220 / 26%);
  border-radius: var(--radius);
  background: rgb(245 245 220 / 11%);
  font-size: 13px;
  backdrop-filter: blur(6px);
}

.hero-service-area strong {
  font-size: 10px;
}

/* Formulaire de devis WPForms. */
.bdf-wpforms-contact select,
.bdf-wpforms-contact input[type="number"] {
  width: 100% !important;
  max-width: none !important;
  height: 47px !important;
  padding: 0 15px !important;
  border: 1px solid rgb(69 111 77 / 19%) !important;
  border-radius: var(--radius) !important;
  background: rgb(255 255 255 / 70%) !important;
  color: var(--text) !important;
  font-family: inherit !important;
  font-size: 13px !important;
  outline: none !important;
}

.bdf-wpforms-contact select:focus,
.bdf-wpforms-contact input[type="number"]:focus {
  border-color: var(--orange) !important;
  background: var(--white) !important;
  box-shadow: 0 0 0 3px rgb(216 119 56 / 12%) !important;
}

.bdf-wpforms-contact .wpforms-field-select,
.bdf-wpforms-contact .wpforms-field-textarea {
  grid-column: 1 / -1;
}

/* Révélation progressive au défilement, désactivée si l’utilisateur le demande. */
.has-scroll-reveal .scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  animation: none !important;
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms cubic-bezier(.2,.75,.25,1) var(--reveal-delay, 0ms);
}

.has-scroll-reveal .scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(165px, .8fr) auto minmax(250px, .8fr);
  }

  .brand-logo {
    width: 172px;
  }

  .main-navigation li a,
  .call-button,
  .quote-button {
    font-size: 11.5px;
  }

  .basket-difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .basket-custom-criteria {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .basket-size-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  :root {
    --header-height: 64px;
  }

  .header-actions {
    display: none;
  }

  .mobile-quote-button {
    width: 100%;
    display: inline-flex;
  }

  .main-navigation-content {
    gap: 13px;
  }

  .main-navigation li a {
    padding-block: 10px;
    font-size: clamp(17px, 4.5vw, 20px);
  }

  .brand-logo {
    width: 158px;
  }

  .footer-brand img {
    width: 184px;
  }
}

@media (max-width: 700px) {
  .hero-description,
  .section-copy,
  .brand-story-lead,
  .reasons-heading > p,
  .service-card-body > p:not(.service-card-kicker),
  .weekly-centered-heading > p:last-child,
  .basket-custom-copy > p:not(.section-eyebrow):not(.basket-fixed-price),
  .basket-example-copy > p:not(.section-eyebrow),
  .contact-intro-content > p:last-child {
    font-size: 15px;
  }

  .hero-highlights {
    font-size: 11px;
  }

  .basket-difference-grid {
    grid-template-columns: 1fr;
  }

  .basket-difference-grid figure {
    height: 250px;
  }

  .basket-difference-list {
    grid-template-columns: 1fr;
    width: fit-content;
    max-width: 100%;
  }

  .basket-trial-cta {
    flex-direction: column;
    text-align: center;
  }

  .basket-size-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .basket-size-grid article:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 5px);
    justify-self: center;
  }

  .testimonial-marquee {
    margin-right: calc(var(--page-gutter) * -1);
    margin-left: calc(var(--page-gutter) * -1);
  }

  .testimonial-marquee blockquote {
    width: min(82vw, 330px);
  }

  .footer-bottom {
    min-height: 88px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .bdf-wpforms-contact .wpforms-field-select,
  .bdf-wpforms-contact .wpforms-field-textarea {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 146px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-block: 18px;
    text-align: center;
  }

  .back-to-top {
    justify-self: center;
  }

  .basket-custom-criteria {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee-track,
  .logo-marquee-track {
    animation-play-state: paused;
  }

  .has-scroll-reveal .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Priorité finale — corrections de cohérence validées ------------------ */
:root {
  --button-height: 42px;
  --button-padding-inline: 16px;
  --button-font-size: 12px;
}

.header-inner {
  grid-template-columns: minmax(190px, 1fr) auto minmax(235px, .82fr);
}

.header-actions .call-button {
  min-height: auto;
  padding: 7px 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--green-dark);
  font-size: 12px;
  white-space: nowrap;
}

.header-actions .call-button svg {
  color: var(--green-dark);
}

.header-actions .call-button:hover {
  background: transparent;
  box-shadow: none;
  color: var(--orange-dark);
  transform: none;
}

.header-actions .call-button:hover svg {
  color: var(--orange-dark);
}

.quote-button {
  min-height: var(--button-height);
  padding: 8px var(--button-padding-inline);
  background: var(--orange);
  box-shadow: 0 7px 16px rgb(216 119 56 / 18%);
  color: var(--white);
  font-size: var(--button-font-size);
}

.quote-button svg {
  color: var(--green-dark);
}

.quote-button:hover {
  background: var(--green-dark);
}

.quote-button:hover svg {
  color: var(--orange);
}

.hero-button,
.brand-story-link,
.process-link,
.contact-call,
.weekly-primary-button,
.blog-section-link,
.newsletter-field button,
.bdf-wpforms-contact button[type="submit"] {
  min-height: var(--button-height) !important;
  padding: 8px var(--button-padding-inline) !important;
  font-size: var(--button-font-size) !important;
}

.brand-story-title,
.reasons-heading .section-title {
  color: var(--green-dark);
  font-size: var(--section-title-size);
  font-weight: 680;
  letter-spacing: -1.9px;
  line-height: 1.06;
}

.brand-story-title span,
.reasons-heading .section-title span {
  color: var(--orange);
}

.service-card-body > p:not(.service-card-kicker),
.service-card-body > p:not(.service-card-kicker) strong {
  color: var(--text);
}

.service-card-body > p:not(.service-card-kicker) strong {
  font-weight: 720;
}

.contact-kicker,
.about-mission-copy .section-eyebrow,
.catering-events-copy .section-eyebrow,
.contact-direct-card .contact-card-kicker {
  color: var(--cream);
}

.contact-kicker svg,
.about-mission-copy .section-eyebrow svg,
.catering-events-copy .section-eyebrow svg,
.contact-direct-card .contact-card-kicker svg {
  color: var(--orange);
}

.contact-inner h2,
.about-mission-copy .section-title,
.catering-events-copy .section-title,
.contact-direct-card h2 {
  color: var(--white);
}

.contact-inner .contact-call:hover {
  background: var(--cream);
  color: var(--green-dark);
}

.catering-practical-grid article {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 30px 24px;
  box-shadow: 0 14px 34px rgb(69 111 77 / 8%);
  text-align: center;
}

.catering-practical-grid h3 {
  margin-top: 23px;
  font-size: 14px;
}

.catering-practical-grid p {
  max-width: 250px;
  margin: 12px auto 0;
  font-size: 14px;
}

.bdf-wpforms-contact .wpforms-field-select {
  grid-column: 1 / -1;
}

.bdf-wpforms-contact select {
  appearance: none;
  padding-right: 46px !important;
  background-color: rgb(255 255 255 / 70%) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23456f4d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  background-size: 17px 17px !important;
  cursor: pointer;
}

.contact-location-card {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(300px, 1fr) auto;
}

.contact-map,
.contact-map iframe {
  width: 100%;
  min-height: 300px;
  height: 100%;
}

.contact-location-copy {
  align-self: end;
}

.has-scroll-reveal .scroll-reveal {
  opacity: .88;
  transform: translateY(12px);
  transition: opacity 460ms ease, transform 520ms cubic-bezier(.2,.75,.25,1);
}

.has-scroll-reveal .scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: minmax(160px, .8fr) auto minmax(215px, .74fr);
  }
}

@media (max-width: 1120px) {
  .mobile-call-button {
    width: fit-content;
    min-height: auto;
    display: inline-flex;
    align-self: flex-start;
    padding: 7px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    color: var(--cream);
    font-size: 13px;
  }

  .mobile-call-button svg {
    color: var(--orange);
  }

  .mobile-call-button:hover {
    background: transparent !important;
    box-shadow: none !important;
    color: var(--white) !important;
    transform: none;
  }

  .mobile-quote-button {
    width: fit-content;
    min-width: 116px;
    align-self: flex-start;
  }

  .contact-location-card {
    grid-template-rows: 250px auto;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 250px;
  }
}

@media (max-width: 700px) {
  .catering-practical-grid article {
    min-height: 264px;
  }

  .bdf-wpforms-contact .wpforms-field-select {
    grid-column: auto;
  }

  .contact-location-card {
    grid-template-rows: 230px auto;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 230px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .has-scroll-reveal .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
