/* ==========================================================================
   LeFleuré — feuille de style du site vitrine
   Palette et espacements repris de la maquette d'origine.
   ========================================================================== */

/* ---------- Polices (hébergées sur le site, aucun appel à Google) ---------- */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/archivo-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/archivo-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/eb-garamond-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/eb-garamond-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/eb-garamond-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/eb-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Couleurs & valeurs partagées ---------- */
:root {
  --cream:        #FAF7F1;   /* fond principal */
  --cream-2:      #FBF9F5;   /* fond du bandeau */
  --sand:         #F1EBE1;   /* fond des sections "Approche" et "Contact" */
  --sand-2:       #EFE9DE;   /* fond derrière les photos */
  --sand-3:       #E8E1D5;
  --ink:          #292723;   /* texte principal */
  --ink-2:        #3B362E;
  --ink-3:        #3F3A32;
  --muted:        #675F53;   /* texte secondaire */
  --muted-2:      #5B5449;
  --green:        #4F6B43;   /* vert LeFleuré (accents, survol) */
  --footer-bg:    #2C3527;
  --footer-text:  #DCE2D4;
  --footer-muted: #A9B39F;
  --error:        #A0432F;

  --serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Archivo', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease-out:  cubic-bezier(.22, .61, .36, 1);  /* courbe des animations */
  --gutter:    clamp(16px, 3vw, 32px);  /* marge latérale */
  --container: 1720px;                  /* largeur max du contenu */
  --header-h:  84px;                    /* hauteur approx. de l'en-tête (pour les ancres) */
}

/* ---------- Base ---------- */
*, *::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: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--green); }
::selection { background: var(--green); color: var(--cream); }

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

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; }

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

.container { max-width: var(--container); margin: 0 auto; }
.container--padded { padding-left: var(--gutter); padding-right: var(--gutter); }

/* Texte réservé aux lecteurs d'écran (accessibilité) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.is-hidden { display: none !important; }

/* Petit libellé en capitales espacées au-dessus des titres */
.eyebrow {
  display: block;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
}

/* Lien "→" souligné */
.link-arrow {
  position: relative;
  display: inline-block;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(41, 39, 35, .32);
  transition: color .25s ease;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.link-arrow:hover { color: var(--green); }
.link-arrow:hover::after, .link-arrow:focus-visible::after { transform: scaleX(1); }

/* ---------- En-tête ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px var(--gutter);
  background: rgba(250, 247, 241, .94);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(41, 39, 35, .12);
  transition: padding .35s var(--ease-out), box-shadow .35s ease;
}
.site-header.is-scrolled {
  padding-top: 8px;
  padding-bottom: 8px;
  box-shadow: 0 12px 30px -24px rgba(41, 39, 35, .45);
}

.site-logo { display: flex; align-items: center; }
.site-logo img { height: 28px; width: auto; }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14.5px;
  min-width: 0;
}

.nav-links { display: flex; align-items: center; gap: 20px; white-space: nowrap; }
.nav-links a {
  position: relative;
  color: var(--ink-2);
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }

.nav-tools { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  padding: 0;
  border: 1px solid rgba(41, 39, 35, .22);
  border-radius: 100px;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: background .25s ease, border-color .25s ease, transform .25s var(--ease-out);
}
.icon-btn:hover { background: rgba(41, 39, 35, .06); border-color: rgba(41, 39, 35, .42); transform: scale(1.06); }
.icon-btn:active { transform: scale(.94); }

.menu-btn { display: none; }

/* Barre de recherche (masquée tant qu'on ne clique pas sur la loupe) */
.search-form { display: none; }
.search-form.is-open { display: block; }
.search-form input {
  width: clamp(120px, 18vw, 190px);
  padding: 8px 12px;
  border: 1px solid rgba(41, 39, 35, .28);
  border-radius: 100px;
  background: rgba(250, 247, 241, .75);
  color: var(--ink);
  font-size: 13.5px;
  outline: none;
}
.search-form input:focus { border-color: var(--green); }
.search-form input::-webkit-search-cancel-button { -webkit-appearance: none; }

/* Panneau de résultats de la recherche */
.search-results {
  position: absolute;
  top: 100%;
  right: var(--gutter);
  width: min(440px, calc(100vw - 2 * var(--gutter)));
  margin-top: 8px;
  background: var(--cream);
  border: 1px solid rgba(41, 39, 35, .14);
  border-radius: 4px;
  box-shadow: 0 18px 34px -18px rgba(41, 39, 35, .45);
  z-index: 60;
}
.search-results[hidden] { display: none; }
.search-results:not([hidden]) { animation: panelIn .28s var(--ease-out); }
.search-results ul { list-style: none; margin: 0; padding: 6px; }
.search-results a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 3px;
  color: var(--ink);
}
.search-results a strong { font-weight: 500; font-size: 15px; }
.search-results a span { font-size: 13px; color: var(--muted); }
.search-results li.is-active > a { background: rgba(79, 107, 67, .12); color: var(--ink); }
.search-results__empty { padding: 10px 12px 6px; font-size: 14px; color: var(--muted); }
.search-results__extra > a { font-size: 14px; color: var(--green); }
.search-results__extra:first-child > a { margin-top: 0; }
.search-results li[role="option"] + .search-results__extra > a,
.search-results__empty + .search-results__extra > a {
  border-top: 1px solid rgba(41, 39, 35, .1);
  border-radius: 0 0 3px 3px;
  margin-top: 4px;
  padding-top: 12px;
}
.search-results__extra + .search-results__extra > a { border-top: 0; margin-top: 0; padding-top: 8px; }
@media (max-width: 760px) {
  .search-results { left: var(--gutter); right: var(--gutter); width: auto; }
}

.nav-cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 14px;
  transition: background .25s ease, color .25s ease, transform .25s var(--ease-out);
}
.nav-cta:hover { background: var(--ink); color: var(--cream); transform: translateY(-1px); }
.nav-cta:active { transform: translateY(0); }

/* Menu déroulant mobile */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  padding: 6px var(--gutter) 18px;
  background: var(--cream);
  border-bottom: 1px solid rgba(41, 39, 35, .12);
  box-shadow: 0 14px 26px -18px rgba(41, 39, 35, .35);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  padding: 13px 0;
  font-size: 16px;
  color: var(--ink);
  border-bottom: 1px solid rgba(41, 39, 35, .1);
}
.mobile-menu .mobile-cta {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border: 0;
  border-radius: 100px;
  background: var(--ink);
  color: var(--cream);
  font-size: 15px;
}
.mobile-menu .mobile-cta:hover { background: var(--green); color: var(--cream); }
.mobile-menu.is-open { animation: panelIn .28s var(--ease-out); }

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none !important; }
  .menu-btn { display: inline-flex !important; }
}

/* ---------- Bandeau d'accueil ---------- */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 5;
  overflow: hidden;
  background: var(--cream-2);
}
.hero__parallax {           /* cadre de l'image : exactement la taille du bandeau,
                               aucun agrandissement, donc netteté maximale */
  position: absolute;
  inset: 0;
}
.hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--cream-2);
}
@media (max-width: 760px) {
  .hero { aspect-ratio: 16 / 9; } /* évite un bandeau trop fin sur téléphone */
}

/* ---------- Ligne de confiance sous le bandeau ---------- */
.trust-line {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 430px), 1fr));
  gap: 10px 32px;
  padding: 22px 2px;
  font-size: 13.5px;
  color: var(--muted);
  border-bottom: 1px solid rgba(41, 39, 35, .13);
  text-align: center;
}
.trust-line > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
  gap: 10px 32px;
}

/* ---------- Sections génériques ---------- */
section[id] { scroll-margin-top: var(--header-h); }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 40px;
}

/* ---------- Nos offres ---------- */
.offers {
  padding: clamp(26px, 3.2vw, 46px) var(--gutter) clamp(54px, 7.5vw, 104px);
}
.offers .section-head { margin-bottom: clamp(28px, 4vw, 52px); }
.offers .eyebrow { margin-bottom: 14px; }
.offers h2 {
  font-size: 35px;
  line-height: 1.05;
  letter-spacing: -.01em;
  max-width: 30ch;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 660px), 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}
.offers-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(14px, 1.6vw, 24px);
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(41, 39, 35, .15);
  transition: border-color .3s ease;
}
.offer-card:hover { border-bottom-color: var(--green); }
.offer-card { scroll-margin-top: calc(var(--header-h) + 16px); border-radius: 4px; outline: 2px solid transparent; outline-offset: 10px; transition: border-color .3s ease, outline-color .4s ease; }
.offer-card.is-highlighted { outline-color: var(--green); } /* carte trouvée par la recherche */

.offer-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 3px;
  overflow: hidden;
  background: var(--sand-2);
}
.offer-card__media { transition: transform .45s var(--ease-out); }
.offer-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.offer-card:hover .offer-card__media img { transform: scale(1.04); }

.offer-card__title { display: flex; align-items: baseline; gap: 10px; }
.offer-card__emoji { font-size: 15px; opacity: .8; }
.offer-card h3 { font-size: clamp(24px, 2.2vw, 31px); line-height: 1.1; }

.offer-card p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--muted);
}

.offer-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
}
.offer-card__more .arrow { font-family: var(--serif); font-size: 17px; transition: transform .35s var(--ease-out); }
.offer-card:hover .offer-card__more .arrow { transform: translateX(4px); }

/* ---------- Notre approche ---------- */
.approach { background: var(--sand); }

.approach__inner {
  padding: clamp(54px, 7.5vw, 112px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
}

.approach__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 56ch;
}
.approach__text h2 {
  font-size: clamp(30px, 3.9vw, 54px);
  line-height: 1.08;
  letter-spacing: -.01em;
  text-wrap: pretty;
}
.approach__text p {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.75;
  color: var(--ink-3);
  text-wrap: pretty;
}
.approach__text p + p { color: var(--muted-2); }
.approach__text .link-arrow { align-self: flex-start; margin-top: 6px; }

.approach__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 620px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sand-3);
}
.approach__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ---------- "Ils nous ont fait confiance" (logos qui défilent) ---------- */
.trust-logos { padding: clamp(26px, 3vw, 40px) 0 clamp(44px, 6vw, 80px); }
.trust-logos__title {
  display: block;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-bottom: clamp(16px, 2vw, 26px);
  border-bottom: 1px solid rgba(41, 39, 35, .14);
}
.marquee {
  overflow: hidden;
  padding-top: clamp(20px, 2.4vw, 30px);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 7%, #000 93%, transparent 100%);
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee__track:hover { animation-play-state: paused; }
.marquee__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px; height: 58px;
  margin-right: clamp(22px, 2.6vw, 44px);
  border: 1px dashed rgba(41, 39, 35, .26);
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.marquee__logo img { max-height: 40px; width: auto; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---------- Réalisations ---------- */
.works { padding: clamp(54px, 7.5vw, 104px) 0; }
.works .section-head {
  padding: 0 var(--gutter);
  margin-bottom: clamp(24px, 3.5vw, 44px);
}
.works h2 {
  font-size: clamp(30px, 3.9vw, 54px);
  line-height: 1.05;
  letter-spacing: -.01em;
}

.works-band {
  display: flex;
  gap: clamp(12px, 1.4vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-left: var(--gutter);
  padding: 0 var(--gutter) 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.works-band::-webkit-scrollbar { display: none; }

.works-band__item {
  flex: 0 0 auto;
  width: clamp(220px, 25vw, 330px);
  height: clamp(290px, 32vw, 420px);
  border-radius: 3px;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--sand-2);
}
.works-band__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.works-band__item:hover img { transform: scale(1.04); }
@media (hover: hover) and (pointer: fine) {
  .works-band { cursor: grab; }
  .works-band.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
  .works-band.is-dragging .works-band__item img { transform: none; }
}

/* ---------- Contact ---------- */
.contact {
  background: var(--sand);
  border-top: 1px solid rgba(41, 39, 35, .1);
}
.contact__inner {
  padding: clamp(56px, 8vw, 118px) var(--gutter);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(30px, 4.5vw, 68px);
  align-items: start;
}

.contact__info { display: flex; flex-direction: column; gap: 20px; }
.contact__info h2 {
  font-size: clamp(34px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.015em;
  text-wrap: pretty;
}
.contact__info h2 em { font-style: italic; color: var(--green); }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
  font-size: 15.5px;
  line-height: 1.6;
}
.contact__details > div { display: flex; flex-direction: column; gap: 3px; }
.contact__details .label {
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.contact__details .muted { color: var(--muted-2); }
.contact__details a {
  position: relative;
  align-self: flex-start;
  transition: color .25s ease;
}
.contact__details a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 1px;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.contact__details a:hover::after, .contact__details a:focus-visible::after { transform: scaleX(1); }

/* Formulaire */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: clamp(22px, 2.4vw, 34px);
  border: 1px solid rgba(41, 39, 35, .16);
  border-radius: 4px;
  background: var(--cream);
}
.contact-form > p {
  margin: 0 0 6px;
  font-size: 14.5px;
  color: var(--muted);
  text-wrap: pretty;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(41, 39, 35, .2);
  border-radius: 3px;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(79, 107, 67, .12); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select { -webkit-appearance: none; appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath d='M3 6l5 5 5-5' fill='none' stroke='%23675F53' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.contact-form select:invalid { color: var(--muted); } /* tant que "Type de projet" n'est pas choisi */
.contact-form select option { color: var(--ink); }

.contact-form button {
  margin-top: 4px;
  padding: 15px 24px;
  border: none;
  border-radius: 100px;
  background: var(--ink);
  color: var(--cream);
  font-size: 14px;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .25s ease, opacity .25s ease, transform .25s var(--ease-out);
}
.contact-form button:hover { background: var(--green); transform: translateY(-1px); }
.contact-form button:active { transform: translateY(0); }
.contact-form button:disabled { opacity: .55; cursor: default; transform: none; }

/* Champ anti-spam : invisible pour les visiteurs, rempli seulement par les robots */
.contact-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  overflow: hidden;
}

/* Message de confirmation / d'erreur sous le formulaire */
.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 3px;
  font-size: 14.5px;
  line-height: 1.5;
}
.form-status.is-success { display: block; background: rgba(79, 107, 67, .12); color: var(--green); }
.form-status.is-error   { display: block; background: rgba(160, 67, 47, .10); color: var(--error); }

/* ---------- Pied de page ---------- */
.site-footer { background: var(--footer-bg); color: var(--footer-text); }
.site-footer__inner {
  padding: 36px var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
  font-size: 13px;
}
.site-footer__brand {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--cream);
}
.site-footer__links { display: flex; flex-wrap: wrap; gap: 8px 26px; }
.site-footer a { color: var(--footer-text); }
.site-footer a:hover { color: var(--cream); }
.site-footer__copy { color: var(--footer-muted); }

/* ---------- Page "Boutique — bientôt" ---------- */
.soon {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(56px, 8vw, 118px) var(--gutter);
}
.soon__inner { max-width: 60ch; display: flex; flex-direction: column; gap: 20px; align-items: center; }
.soon h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.015em;
  text-wrap: pretty;
}
.soon p { margin: 0; font-size: clamp(16px, 1.2vw, 18px); line-height: 1.75; color: var(--ink-3); text-wrap: pretty; }
.soon .search-term { font-family: var(--serif); font-style: italic; color: var(--green); }
.soon .btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  font-size: 14px;
  transition: background .25s ease, color .25s ease;
}
.soon .btn:hover { background: var(--ink); color: var(--cream); }

/* ==========================================================================
   Animations (voir assets/js/animations.js)
   Principe : peu de mouvement, lent et régulier, uniquement opacité + transform.
   Tout est désactivé si le visiteur a demandé "réduire les animations".
   ========================================================================== */

/* Petits panneaux (menu mobile, résultats de recherche) */
@keyframes panelIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: none; }
}

/* Apparition au défilement : l'élément monte de 18 px en s'affichant.
   Actif seulement quand JavaScript est présent (classe "js" sur <html>) */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .8s var(--ease-out),
    transform .8s var(--ease-out),
    border-color .3s ease,
    outline-color .4s ease,
    box-shadow .3s ease;
}
.js [data-reveal="x"] { transform: translateX(24px); }   /* variante horizontale, à utiliser hors des zones à défilement */
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* Bandeau d'accueil : la photo "se pose" au chargement */
.js .hero img {
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s ease, transform 1.8s var(--ease-out);
}
.js .hero.is-loaded img { opacity: 1; transform: none; }

/* Clavier : même repère vert que le survol */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.contact-form :focus-visible { outline: none; }

/* Le visiteur a demandé moins d'animations : tout s'affiche directement */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .js .hero img { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
