@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/Fraunces-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --brown: #3b2314;
  --green: #1e5b45;
  --green-deep: #164535;
  --copper: #b5793d;
  --cream: #f6f1e8;
  --cream-deep: #eee5d6;
  --paper: #fffdf8;
  --ink: #211d19;
  --muted: #5f5751;
  --line: rgba(59, 35, 20, 0.16);
  --header-height: 92px;
  --radius: 18px;
  --shell: 1180px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Poppins", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--brown);
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(2.75rem, 6vw, 5.7rem);
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

p:last-child {
  margin-bottom: 0;
}

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 780px);
  margin-inline: auto;
}

.site-main {
  min-height: 60vh;
  overflow: clip;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--brown);
  font-weight: 600;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: rgba(246, 241, 232, 0.97);
}

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 215px;
  max-height: 68px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.site-nav > a:not(.button) {
  position: relative;
  padding-block: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper);
  content: "";
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--brown);
  cursor: pointer;
}

.nav-toggle-lines {
  display: grid;
  width: 24px;
  gap: 6px;
}

.nav-toggle-lines span {
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 2px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-deep);
}

.button-small {
  min-height: 43px;
  padding: 10px 18px;
  font-size: 0.82rem;
}

.button-secondary {
  border-color: var(--brown);
  background: transparent;
  color: var(--brown);
}

.button-secondary:hover {
  background: var(--brown);
  color: var(--cream);
}

.button-light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--brown);
}

.button-light:hover {
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 600;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 42px;
  height: 3px;
  background: var(--copper);
  content: "";
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.hero {
  position: relative;
  padding: clamp(64px, 8vw, 112px) 0 clamp(78px, 10vw, 138px);
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -170px;
  right: -190px;
  width: 540px;
  height: 540px;
  border: 96px solid rgba(30, 91, 69, 0.055);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(44px, 7vw, 92px);
}

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

.hero-copy .lead {
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 24px;
  right: -22px;
  bottom: -24px;
  left: 30px;
  border: 1px solid var(--copper);
  border-radius: 50% 50% 14px 14px;
  content: "";
}

.hero-visual img {
  width: 100%;
  height: 570px;
  border-radius: 50% 50% 14px 14px;
  object-fit: cover;
}

.hero-visual figcaption,
.editorial-image figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.5;
}

.hero-mark {
  position: absolute;
  right: -34px;
  bottom: 70px;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
}

.hero-mark img {
  width: 62px;
  height: 62px;
  border-radius: 0;
  object-fit: contain;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-item {
  padding: 30px clamp(22px, 4vw, 50px);
  text-align: center;
}

.proof-item + .proof-item {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.35rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.84rem;
}

.section {
  padding: clamp(82px, 10vw, 140px) 0;
}

.section-tight {
  padding: clamp(62px, 8vw, 100px) 0;
}

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

.section-green {
  background: var(--green);
  color: var(--cream);
}

.section-green h2,
.section-green h3,
.section-green .eyebrow {
  color: var(--cream);
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 72px);
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 50px;
}

.section-heading p {
  color: var(--muted);
}

.section-green .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

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

.offer-card {
  position: relative;
  display: flex;
  min-height: 530px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  color: var(--cream);
  isolation: isolate;
}

.offer-card::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background-position: center;
  background-size: cover;
  content: "";
  transition: transform 500ms ease;
}

.offer-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 16, 0.04) 15%, rgba(24, 20, 16, 0.88) 100%);
  content: "";
}

.offer-card:hover::before {
  transform: scale(1.025);
}

.offer-card-green::before {
  background-image: url("../images/echantillons-cafe-vert.jpeg");
}

.offer-card-roasted::before {
  background-image: url("../images/atelier-torrefaction-belgique.jpeg");
}

.offer-card h3 {
  max-width: 470px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.offer-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.83);
}

.offer-card .text-link {
  margin-top: 14px;
  color: #fff;
}

.card-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(50px, 8vw, 100px);
}

.split-reverse > :first-child {
  order: 2;
}

.split-copy p {
  color: var(--muted);
}

.editorial-image {
  margin: 0;
}

.editorial-image img {
  width: 100%;
  max-height: 680px;
  border-radius: var(--radius);
  object-fit: cover;
}

.editorial-image.portrait img {
  aspect-ratio: 4 / 5;
}

.logo-showcase {
  display: grid;
  min-height: 650px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.logo-showcase img,
.editorial-image.portrait.logo-showcase img {
  width: min(78%, 460px);
  height: auto;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: contain;
}

.editorial-image.landscape img {
  aspect-ratio: 4 / 3;
}

.pillars {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pillar {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--line);
}

.pillar:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.pillar strong {
  display: block;
  margin-bottom: 5px;
  color: var(--brown);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.pillar span {
  color: var(--muted);
  font-size: 0.84rem;
}

.statement {
  position: relative;
  padding: clamp(78px, 11vw, 150px) 0;
  overflow: hidden;
  background: var(--green);
  color: var(--cream);
  text-align: center;
}

.statement::before,
.statement::after {
  position: absolute;
  width: 310px;
  height: 310px;
  border: 55px solid rgba(246, 241, 232, 0.06);
  border-radius: 50%;
  content: "";
}

.statement::before {
  top: -170px;
  left: -100px;
}

.statement::after {
  right: -120px;
  bottom: -190px;
}

.statement blockquote {
  position: relative;
  z-index: 1;
  width: min(100%, 940px);
  margin: 0 auto;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.15;
  text-wrap: balance;
}

.statement cite {
  display: block;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--sans);
  font-size: 0.77rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.steps {
  display: grid;
  counter-reset: steps;
  grid-template-columns: repeat(4, 1fr);
}

.step {
  position: relative;
  padding: 12px 30px 12px 0;
  counter-increment: steps;
}

.step + .step {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.step::before {
  display: block;
  margin-bottom: 30px;
  color: var(--copper);
  content: "0" counter(steps);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
}

.step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  padding: clamp(72px, 8vw, 108px) 0;
  background: var(--brown);
  color: var(--cream);
}

.cta-inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
}

.cta-band h2 {
  max-width: 790px;
  margin-bottom: 12px;
  color: var(--cream);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: clamp(64px, 8vw, 110px) 0 clamp(68px, 9vw, 120px);
}

.page-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(45px, 8vw, 100px);
}

.page-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.page-hero-media {
  margin: 0;
}

.page-hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
}

/* Points focaux des photographies humaines : le cadrage reste juste
   lorsque les images passent d'un écran large à un écran mobile. */
.people-focus-field img {
  object-position: 38% 50%;
}

.people-focus-couple img {
  object-position: 50% 28%;
}

.people-focus-group img {
  object-position: 50% 42%;
}

.page-hero-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.76rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream);
}

.feature-card-number {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.audience-list,
.check-list {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.audience-list li,
.check-list li {
  position: relative;
  padding: 15px 0 15px 34px;
  border-bottom: 1px solid var(--line);
}

.audience-list li::before,
.check-list li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--copper);
  border-radius: 50%;
  content: "";
}

.origin-map {
  display: grid;
  margin-top: 52px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.origin-stop {
  position: relative;
  padding: 38px 28px 30px;
  border-top: 3px solid var(--copper);
}

.origin-stop::before {
  position: absolute;
  top: -9px;
  left: 28px;
  width: 15px;
  height: 15px;
  border: 3px solid var(--cream);
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.origin-stop + .origin-stop {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.origin-stop h3 {
  color: var(--cream);
}

.origin-stop p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.87rem;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(55px, 8vw, 100px);
}

.contact-details {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.contact-details li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-details span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-details a {
  color: var(--brown);
  font-weight: 600;
}

.contact-form-wrap {
  padding: clamp(30px, 5vw, 54px);
  border-radius: var(--radius);
  background: var(--paper);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field legend {
  color: var(--brown);
  font-size: 0.82rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid rgba(59, 35, 20, 0.25);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(30, 91, 69, 0.13);
}

.consent {
  display: grid;
  align-items: start;
  grid-template-columns: auto 1fr;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--green);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-status {
  margin-bottom: 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--green);
  background: rgba(30, 91, 69, 0.09);
}

.form-status.error {
  border-color: #9d372f;
  background: rgba(157, 55, 47, 0.09);
}

.legal-content {
  padding: clamp(65px, 8vw, 105px) 0;
}

.legal-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.legal-content h2 {
  margin-top: 52px;
  font-size: 1.7rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.notice {
  margin-top: 34px;
  padding: 20px 22px;
  border-left: 4px solid var(--copper);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding-top: 76px;
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: grid;
  padding-bottom: 62px;
  grid-template-columns: 1.2fr 0.7fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: 230px;
  max-height: 112px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  margin-top: 22px;
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1.35;
}

.site-footer h2 {
  margin: 10px 0 20px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li + li {
  margin-top: 8px;
}

.site-footer a {
  color: inherit;
}

.site-footer a:hover {
  color: #fff;
}

.footer-contact {
  font-style: normal;
}

.footer-bottom {
  display: grid;
  align-items: center;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1060px) {
  :root {
    --header-height: 78px;
  }

  .brand img {
    width: 180px;
  }

  .nav-toggle {
    display: inline-flex;
    min-width: 76px;
    min-height: 44px;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }

  .nav-toggle-label {
    font-size: 0.82rem;
    font-weight: 600;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    height: calc(100vh - var(--header-height));
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 28px 20px 40px;
    overflow-y: auto;
    border-top: 1px solid var(--line);
    background: var(--cream);
  }

  .nav-open .site-nav {
    display: flex;
  }

  .nav-open .nav-toggle-lines span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-open .nav-toggle-lines span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav > a:not(.button) {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.45rem;
  }

  .site-nav > .button {
    margin-top: 26px;
  }

  .hero-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    width: min(88%, 690px);
    min-height: 520px;
    margin-left: auto;
  }

  .hero-visual img {
    height: 520px;
  }

  .steps,
  .origin-map {
    grid-template-columns: repeat(2, 1fr);
  }

  .step:nth-child(3),
  .origin-stop:nth-child(3) {
    border-left: 0;
  }

  .origin-stop:nth-child(3),
  .origin-stop:nth-child(4) {
    border-top-color: rgba(181, 121, 61, 0.55);
  }

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

  .footer-bottom nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .shell,
  .narrow {
    width: min(calc(100% - 32px), var(--shell));
  }

  .hero {
    padding-top: 50px;
  }

  .hero-visual {
    width: calc(100% - 12px);
    min-height: 410px;
  }

  .hero-visual img {
    height: 410px;
  }

  .hero-mark {
    right: -14px;
    bottom: 54px;
    width: 84px;
    height: 84px;
  }

  .hero-mark img {
    width: 48px;
    height: 48px;
  }

  .proof-grid,
  .offer-grid,
  .split,
  .section-heading,
  .feature-grid,
  .contact-layout,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    padding: 20px;
  }

  .proof-item + .proof-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading,
  .split,
  .contact-layout,
  .footer-grid {
    gap: 38px;
  }

  .split-reverse > :first-child {
    order: initial;
  }

  .offer-card {
    min-height: 460px;
  }

  .page-hero-grid {
    gap: 38px;
  }

  .page-hero-media {
    width: calc(100% + 16px);
  }

  .steps,
  .origin-map {
    grid-template-columns: 1fr;
  }

  .step,
  .step + .step {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .step::before {
    margin-bottom: 12px;
  }

  .origin-stop,
  .origin-stop + .origin-stop {
    border-top: 3px solid var(--copper);
    border-left: 0;
  }

  .cta-inner {
    justify-items: start;
  }

  .contact-form-wrap {
    margin-inline: -16px;
    border-radius: 0;
  }

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

  .field-full {
    grid-column: auto;
  }

  .footer-grid {
    gap: 34px;
  }

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

  .footer-bottom nav {
    grid-column: auto;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: 2.65rem;
  }

  .brand img {
    width: 156px;
  }

  .nav-toggle-label {
    display: none;
  }

  .nav-toggle {
    min-width: 44px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 350px;
    height: 350px;
  }

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

  .pillar:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }
}

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

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

  .reveal-ready {
    opacity: 1;
    transform: none;
  }
}

/* SamCafé v2.0.1 — ajouts fonctionnels sans modification du rendu existant. */
.contact-details .contact-whatsapp {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-left: 12px;
  padding: 4px 10px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.contact-details .contact-whatsapp:hover,
.contact-details .contact-whatsapp:focus-visible {
  background: var(--green);
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 10px 28px rgba(33, 29, 25, 0.18);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

/* Cette zone n'existe sur le front public que dans l'aperçu/éditeur Elementor. */
.samcafe-elementor-bridge {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
  padding: 24px 0;
}

@media (max-width: 600px) {
  .contact-details .contact-whatsapp {
    margin-top: 8px;
    margin-left: 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}

.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  font-size: 0.76rem;
}

.footer-social-links a {
  color: inherit;
  font-weight: 600;
}


/* v2.0.2 — correctifs proportions photo et suppression du liseré indésirable */
.hero-visual.clean-photo::before {
  display: none;
}

.hero-visual img,
.page-hero-media img,
.editorial-image img {
  height: auto;
  aspect-ratio: auto;
}

.hero-visual img,
.page-hero-media img {
  max-height: 760px;
  object-fit: contain;
}

.editorial-image img {
  object-fit: contain;
}

.editorial-image.landscape img,
.editorial-image.portrait img {
  aspect-ratio: auto;
}
