/* ============================================================
   MAISON FAVRE — Système de design
   Fleuriste d'exception · Suisse
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  /* Palette */
  --ivoire:        #F7F5F1;
  --ivoire-chaud:  #EFEBE4;
  --parchemin:     #E4DED4;
  --encre:         #16150F;
  --encre-douce:   #2A2820;
  --graphite:      #5C584C;
  --brume:         #8C8779;
  --ligne:         #DCD6CB;
  --ligne-sombre:  rgba(247,245,241,.22);

  /* Accents issus des créations */
  --vert-tige:     #4A5A3A;
  --or-pale:       #A8935F;
  --rose-poudre:   #D9A9A0;

  /* Typographie */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans:  'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Rythme */
  --gouttiere: 24px;
  --marge: clamp(20px, 5vw, 72px);
  --section: clamp(80px, 12vh, 160px);

  /* Mouvement */
  --ease: cubic-bezier(.22, 1, .36, 1);
  --lent: .9s var(--ease);
}

/* ---------- Base ---------- */
body {
  background: var(--ivoire);
  color: var(--encre);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--encre); color: var(--ivoire); }

/* ---------- Typographie ---------- */
.surtitre {
  font-size: 10px;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brume);
}

.titre-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.6rem, 6.5vw, 6.2rem);
  line-height: .98;
  letter-spacing: -.015em;
}

.titre-section {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -.01em;
}

.titre-carte {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.2;
}

.chapo {
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.6;
  color: var(--encre-douce);
  font-weight: 300;
}

.texte { color: var(--graphite); max-width: 62ch; }
.texte + .texte { margin-top: 1.1em; }

.italique { font-style: italic; }

/* Lettrine éditoriale */
.lettrine::first-letter {
  font-family: var(--serif);
  float: left;
  font-size: 4.4em;
  line-height: .78;
  padding: .06em .12em 0 0;
  color: var(--encre);
  font-weight: 300;
}

/* ---------- Liens & boutons ---------- */
.lien-souligne {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding-bottom: 5px;
  position: relative;
}
.lien-souligne::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.lien-souligne:hover::after { transform: scaleX(0); transform-origin: left; }

.bouton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 40px;
  background: var(--encre);
  color: var(--ivoire);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--encre);
  transition: background .45s var(--ease), color .45s var(--ease);
}
.bouton:hover { background: transparent; color: var(--encre); }

.bouton--ligne {
  background: transparent;
  color: var(--encre);
  border-color: var(--encre);
}
.bouton--ligne:hover { background: var(--encre); color: var(--ivoire); }

.bouton--clair {
  background: var(--ivoire);
  color: var(--encre);
  border-color: var(--ivoire);
}
.bouton--clair:hover { background: transparent; color: var(--ivoire); }

/* ============================================================
   EN-TÊTE
   ============================================================ */
.entete {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  background: var(--ivoire);
  border-bottom: 1px solid var(--ligne);
  transition: background .5s var(--ease), border-color .5s var(--ease), color .5s var(--ease), transform .5s var(--ease);
}

/* Variante transparente au-dessus d'un hero sombre */
.entete--transparent {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--ivoire);
}
.entete--transparent .entete__logo img { filter: invert(1) brightness(2); }
.entete--transparent .icone-panier__compte { background: var(--ivoire); color: var(--encre); }

.entete--masque { transform: translateY(-100%); }

.entete__barre {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 var(--marge);
  height: 76px;
}

.entete__gauche, .entete__droite {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 30px);
}
.entete__droite { justify-content: flex-end; }

.entete__lien {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.entete__lien::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}
.entete__lien:hover::after, .entete__lien[aria-current="page"]::after { transform: scaleX(1); }

.entete__logo { justify-self: center; }
.entete__logo img {
  height: 20px;
  width: auto;
  transition: filter .5s var(--ease);
}

.icone {
  width: 19px; height: 19px;
  stroke: currentColor;
  stroke-width: 1.1;
  fill: none;
  display: block;
}

.icone-panier { position: relative; display: flex; }
.icone-panier__compte {
  position: absolute;
  top: -5px; right: -7px;
  min-width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--encre);
  color: var(--ivoire);
  font-size: 9px;
  line-height: 15px;
  text-align: center;
  letter-spacing: 0;
}

.entete__menu-mobile { display: none; }

/* Bandeau annonce */
.bandeau {
  background: var(--encre);
  color: var(--ivoire);
  text-align: center;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 11px var(--marge);
}
.bandeau strong { font-weight: 400; }

/* ---------- Panneau de navigation ---------- */
.panneau {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: var(--ivoire);
  padding: calc(76px + var(--section) * .4) var(--marge) var(--marge);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gouttiere);
  align-content: start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), visibility .55s;
  overflow-y: auto;
}
.panneau.est-ouvert { opacity: 1; visibility: visible; transform: none; }

.panneau__colonne { grid-column: span 3; }
.panneau__titre {
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--brume);
  margin-bottom: 22px;
}
.panneau__liste li + li { margin-top: 13px; }
.panneau__liste a {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  font-weight: 300;
  transition: color .4s var(--ease), padding-left .4s var(--ease);
}
.panneau__liste a:hover { color: var(--vert-tige); padding-left: 8px; }

.panneau__visuel { grid-column: 9 / -1; }
.panneau__visuel figure { overflow: hidden; }
.panneau__visuel img { aspect-ratio: 4/5; object-fit: cover; }
.panneau__visuel figcaption {
  margin-top: 14px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brume);
}

.panneau__fermer {
  position: absolute;
  top: 28px; right: var(--marge);
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--encre);
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: zoomLent 10s cubic-bezier(.16, .84, .32, 1) forwards;
}
@keyframes zoomLent { from { transform: scale(1.15); } to { transform: scale(1); } }

.hero__voile {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(12,11,8,1) 0%, rgba(12,11,8,.71) 34%, rgba(12,11,8,.41) 62%, rgba(12,11,8,.69) 100%);
}

.hero__contenu {
  position: relative;
  width: 100%;
  padding: 0 var(--marge) clamp(56px, 9vh, 110px);
  color: var(--ivoire);
}
.hero__contenu .surtitre { color: rgba(247,245,241,.92); }
.hero__contenu .surtitre,
.hero__titre,
.hero__chapo,
.hero__signature { text-shadow: 0 1px 22px rgba(10,9,6,.42); }
.hero__titre { max-width: min(900px, 92%); margin: 22px 0 26px; }
.hero__chapo {
  max-width: min(560px, 92%);
  color: rgba(247,245,241,.86);
  margin-bottom: 38px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero__signature {
  position: absolute;
  right: var(--marge);
  bottom: clamp(56px, 9vh, 110px);
  text-align: right;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(247,245,241,.78);
  line-height: 2.2;
}

/* Défilement */
.hero__defiler {
  position: absolute;
  left: 50%; bottom: 26px;
  transform: translateX(-50%);
  width: 1px; height: 54px;
  background: rgba(247,245,241,.34);
  overflow: hidden;
}
.hero__defiler::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--ivoire);
  animation: filet 2.6s var(--ease) infinite;
}
@keyframes filet {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* ============================================================
   MISE EN PAGE
   ============================================================ */
.section { padding: var(--section) var(--marge); }
.section--serre { padding-block: calc(var(--section) * .6); }
.section--ivoire-chaud { background: var(--ivoire-chaud); }
.section--encre { background: var(--encre); color: var(--ivoire); }
.section--encre .texte { color: rgba(247,245,241,.72); }
.section--encre .surtitre { color: rgba(247,245,241,.55); }

.grille { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gouttiere); }

.entete-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  margin-bottom: clamp(34px, 5vw, 62px);
  border-bottom: 1px solid var(--ligne);
}
.section--encre .entete-section { border-bottom-color: var(--ligne-sombre); }
.entete-section__titre { max-width: min(620px, 100%); }
.entete-section__titre .surtitre { display: block; margin-bottom: 16px; }

/* ============================================================
   FICHES CRÉATION
   ============================================================ */
.grille-creations { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 46px) var(--gouttiere); }

.creation { display: flex; flex-direction: column; }
.creation__media {
  position: relative;
  overflow: hidden;
  background: var(--parchemin);
  aspect-ratio: 4/5;
}
.creation__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease), opacity .6s var(--ease);
}
.creation:hover .creation__media img { transform: scale(1.045); }

.creation__etiquette {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(247,245,241,.94);
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--encre);
}
.creation__etiquette--unique { background: var(--encre); color: var(--ivoire); }

.creation__favori {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  color: var(--encre);
}
.creation:hover .creation__favori { opacity: 1; transform: none; }
.creation__favori:hover svg { fill: var(--encre); }

.creation__apercu {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(247,245,241,.95);
  text-align: center;
  padding: 15px;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.creation:hover .creation__apercu { transform: none; }

.creation__infos { padding-top: 18px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.creation__nom { font-family: var(--serif); font-size: 1.28rem; font-weight: 400; line-height: 1.25; }
.creation__meta { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--brume); }
.creation__composition {
  font-size: 13px;
  color: var(--graphite);
  font-style: italic;
  font-family: var(--serif);
  font-size: .98rem;
}
.creation__prix { margin-top: auto; padding-top: 12px; font-size: 13px; letter-spacing: .06em; }

/* ============================================================
   BLOCS ÉDITORIAUX
   ============================================================ */
.diptyque {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gouttiere);
  align-items: center;
}
.diptyque__media { grid-column: span 7; overflow: hidden; }
.diptyque__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.diptyque__texte { grid-column: 9 / -1; }
.diptyque--inverse .diptyque__media { grid-column: 6 / -1; order: 2; }
.diptyque--inverse .diptyque__texte { grid-column: 1 / 5; order: 1; }
.diptyque__texte .titre-section { margin: 16px 0 22px; }
.diptyque__texte .bouton, .diptyque__texte .lien-souligne { margin-top: 30px; }

/* Manifeste suisse */
.suisse { position: relative; overflow: hidden; }
.suisse__grille { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gouttiere); align-items: center; }
.suisse__texte { grid-column: 1 / 6; }
.suisse__media { grid-column: 7 / -1; display: grid; grid-template-columns: 1fr 1fr; gap: var(--gouttiere); }
.suisse__media img { aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.suisse__media img:last-child { margin-top: clamp(28px, 6vw, 72px); }

.croix {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.croix__symbole {
  width: 17px; height: 17px;
  background: #C8102E;
  position: relative;
  flex: none;
}
.croix__symbole::before, .croix__symbole::after {
  content: '';
  position: absolute;
  background: #fff;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.croix__symbole::before { width: 9px; height: 2.6px; }
.croix__symbole::after  { width: 2.6px; height: 9px; }

/* Piliers savoir-faire */
.piliers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 60px); }
.pilier { padding-top: 26px; border-top: 1px solid var(--ligne); }
.section--encre .pilier { border-top-color: var(--ligne-sombre); }
.pilier__numero {
  font-family: var(--serif);
  font-size: .95rem;
  color: var(--brume);
  letter-spacing: .1em;
  display: block;
  margin-bottom: 14px;
}
.pilier h3 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin-bottom: 12px; }
.pilier p { color: var(--graphite); font-size: 14px; }
.section--encre .pilier p { color: rgba(247,245,241,.68); }

/* Citation */
.citation { text-align: center; max-width: min(880px, 90vw); margin: 0 auto; }
.citation blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.6vw, 3.1rem);
  line-height: 1.24;
  font-style: italic;
}
.citation figcaption {
  margin-top: 30px;
  font-size: 10px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brume);
}

/* Bandeau de valeurs */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gouttiere); }
.service { text-align: center; padding: 0 12px; }
.service svg { margin: 0 auto 16px; width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1; }
.service h4 { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 9px; font-weight: 400; }
.service p { font-size: 12.5px; color: var(--graphite); }

/* ============================================================
   PIED DE PAGE
   ============================================================ */
.pied { background: var(--encre); color: var(--ivoire); padding: var(--section) var(--marge) 40px; }
.pied__haut {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gouttiere);
  padding-bottom: clamp(50px, 7vw, 84px);
  border-bottom: 1px solid var(--ligne-sombre);
}
.pied__marque { grid-column: span 4; }
.pied__marque img { height: 20px; width: auto; margin-bottom: 24px; }
.pied__marque p { color: rgba(247,245,241,.6); font-size: 13.5px; max-width: 34ch; }
.pied__colonne { grid-column: span 2; }
.pied__colonne h4 {
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(247,245,241,.55);
  font-weight: 400;
}
.pied__colonne li + li { margin-top: 11px; }
.pied__colonne a { font-size: 13.5px; color: rgba(247,245,241,.82); transition: color .4s var(--ease); }
.pied__colonne a:hover { color: var(--ivoire); }

.pied__lettre { grid-column: 11 / -1; }
.lettre__champ { display: flex; border-bottom: 1px solid var(--ligne-sombre); margin-top: 6px; }
.lettre__champ input {
  flex: 1;
  background: none; border: 0;
  color: var(--ivoire);
  padding: 11px 0;
  font: inherit;
  font-size: 13px;
  outline: none;
}
.lettre__champ input::placeholder { color: rgba(247,245,241,.42); }
.lettre__champ button { padding-left: 14px; font-size: 16px; }

.pied__bas {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(247,245,241,.48);
}
.pied__bas nav { display: flex; gap: 26px; flex-wrap: wrap; }

/* ============================================================
   FIL D'ARIANE + PAGES INTÉRIEURES
   ============================================================ */
.ariane {
  padding: calc(76px + 28px) var(--marge) 0;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brume);
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
}
.ariane a:hover { color: var(--encre); }
.ariane span[aria-current] { color: var(--encre); }

.entete-page {
  padding: clamp(46px, 7vw, 92px) var(--marge) clamp(36px, 5vw, 62px);
  border-bottom: 1px solid var(--ligne);
}
.entete-page .surtitre { display: block; margin-bottom: 18px; }
.entete-page .chapo { margin-top: 24px; max-width: 58ch; }

/* Barre de filtres */
.filtres {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 22px var(--marge);
  border-bottom: 1px solid var(--ligne);
  position: sticky;
  top: 76px;
  background: var(--ivoire);
  z-index: 100;
  transition: top .5s var(--ease);
}
.filtres--haut { top: 0; }
.filtres__groupe { display: flex; gap: clamp(14px, 2vw, 30px); flex-wrap: wrap; }
.filtres__bouton {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brume);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.filtres__bouton:hover { color: var(--encre); }
.filtres__bouton.est-actif { color: var(--encre); border-bottom-color: var(--encre); }
.filtres__compte { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--brume); }

/* ============================================================
   FICHE PRODUIT
   ============================================================ */
.produit { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gouttiere); padding: 34px var(--marge) var(--section); }
.produit__galerie { grid-column: span 7; display: grid; grid-template-columns: 1fr 1fr; gap: var(--gouttiere); }
.produit__galerie figure { overflow: hidden; background: var(--parchemin); }
.produit__galerie img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.produit__galerie figure:first-child { grid-column: span 2; }
.produit__galerie figure:first-child img { aspect-ratio: 4/3.4; }

.produit__panneau { grid-column: 9 / -1; position: sticky; top: 118px; align-self: start; }
.produit__nom { font-family: var(--serif); font-weight: 300; font-size: clamp(1.9rem, 2.8vw, 2.8rem); line-height: 1.08; margin: 14px 0 16px; }
.produit__prix { font-size: 1.02rem; letter-spacing: .04em; margin-bottom: 8px; }
.produit__mention { font-size: 12px; color: var(--brume); margin-bottom: 30px; }
.produit__description { color: var(--graphite); margin-bottom: 32px; }
.produit__actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 38px; }
.produit__actions .bouton { width: 100%; }

.accordeon { border-top: 1px solid var(--ligne); }
.accordeon__entete {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 19px 0;
  font-size: 11px;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-align: left;
}
.accordeon__entete::-webkit-details-marker { display: none; }
.accordeon__entete { list-style: none; cursor: pointer; }
/* Signe +/− dessiné en CSS : la barre verticale disparaît à l'ouverture */
.accordeon__signe {
  position: relative;
  width: 11px; height: 11px;
  flex: none;
  font-size: 0;
}
.accordeon__signe::before,
.accordeon__signe::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: opacity .35s var(--ease), transform .45s var(--ease);
}
.accordeon__signe::before { width: 11px; height: 1px; }
.accordeon__signe::after  { width: 1px; height: 11px; }
.accordeon[open] .accordeon__signe::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.accordeon__corps { padding-bottom: 24px; color: var(--graphite); font-size: 14px; }
.accordeon__corps li { position: relative; padding-left: 17px; }
.accordeon__corps li + li { margin-top: 8px; }
.accordeon__corps li::before {
  content: ''; position: absolute;
  left: 0; top: .68em;
  width: 6px; height: 1px;
  background: var(--brume);
}

/* Table botanique */
.botanique { width: 100%; border-collapse: collapse; font-size: 14px; }
.botanique th, .botanique td { text-align: left; padding: 15px 16px 15px 0; border-bottom: 1px solid var(--ligne); vertical-align: top; }
.botanique th { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--brume); font-weight: 400; }
.botanique td:first-child { font-family: var(--serif); font-size: 1.08rem; width: 26%; }
.botanique td em { font-family: var(--serif); color: var(--brume); font-size: .95rem; display: block; margin-top: 2px; }
.botanique td:last-child { color: var(--graphite); }

/* ============================================================
   ANIMATIONS D'ENTRÉE
   ============================================================ */
.apparait { opacity: 0; transform: translateY(24px); transition: opacity .95s var(--ease), transform .95s var(--ease); }
.apparait.est-visible { opacity: 1; transform: none; }
.apparait--d1 { transition-delay: .09s; }
.apparait--d2 { transition-delay: .18s; }
.apparait--d3 { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .apparait { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .grille-creations { grid-template-columns: repeat(2, 1fr); }
  .piliers { grid-template-columns: 1fr; gap: 34px; }
  .diptyque__media, .diptyque--inverse .diptyque__media { grid-column: 1 / -1; order: 1; }
  .diptyque__texte, .diptyque--inverse .diptyque__texte { grid-column: 1 / -1; order: 2; }
  .suisse__texte, .suisse__media { grid-column: 1 / -1; }
  .suisse__media { margin-top: 40px; }
  .produit__galerie, .produit__panneau { grid-column: 1 / -1; }
  .produit__panneau { position: static; margin-top: 44px; }
  .pied__marque { grid-column: span 12; margin-bottom: 40px; }
  .pied__colonne { grid-column: span 4; }
  .pied__lettre { grid-column: span 12; margin-top: 38px; }
  .panneau__colonne { grid-column: span 6; margin-bottom: 34px; }
  .panneau__visuel { display: none; }
  .services { grid-template-columns: repeat(2, 1fr); gap: 38px; }

  /* Colonnes éditoriales : pleine largeur sous 1080px */
  .section .grille > div { grid-column: 1 / -1 !important; }
  .entete-page .grille > div { grid-column: 1 / -1 !important; }
  .entete-page .grille > div + div { margin-top: 24px; }
  .texte, .chapo { max-width: 68ch; }
}

@media (max-width: 920px) {
  .entete__barre { grid-template-columns: 1fr auto 1fr; height: 76px; padding-inline: clamp(18px, 5vw, 30px); }
  .entete__gauche .entete__lien, .entete__droite .entete__lien { display: none; }
  /* Menu hamburger : plus de libellé, picto agrandi de 25 % */
  .entete__menu-mobile { display: flex; align-items: center; }
  .entete__menu-mobile .icone { width: 24px; height: 24px; stroke-width: 1.25; }
  /* Icônes recherche + panier agrandies de 25 % (19 -> 24) */
  .entete__droite .icone { width: 24px; height: 24px; }
  .entete__droite { gap: 22px; }
  /* Logo agrandi de 25 % (15 -> 19) */
  .entete__logo img { height: 19px; }
  /* Pastille panier proportionnée au nouveau picto */
  .icone-panier__compte { min-width: 17px; height: 17px; line-height: 17px; font-size: 10px; top: -6px; right: -8px; }
  .ariane, .produit { padding-top: calc(76px + 22px); }
  .filtres { top: 76px; }
  .grille-creations { grid-template-columns: 1fr; gap: 40px; }
  .produit__galerie { grid-template-columns: 1fr; }
  .produit__galerie figure:first-child { grid-column: span 1; }
  .services { grid-template-columns: 1fr; }
  .hero__signature { display: none; }

  /* Hero mobile : le texte doit tenir dans la largeur */
  .hero { min-height: 92svh; }
  .hero__titre { max-width: none; font-size: clamp(2.3rem, 11vw, 3.2rem); margin: 18px 0 20px; }
  .hero__chapo { max-width: none; font-size: 1rem; line-height: 1.55; margin-bottom: 30px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 18px; }
  .hero__actions .bouton { width: 100%; }
  .hero__actions .lien-souligne { align-self: flex-start; }
  .hero__contenu { padding-bottom: clamp(46px, 7vh, 72px); }

  /* Titres de section resserrés */
  .titre-display { font-size: clamp(2.3rem, 11vw, 3.4rem); }
  .entete-page .grille > div,
  .entete-page .grille > div:last-child { grid-column: 1 / -1 !important; }
  .entete-page .chapo { margin-top: 20px; }
  .section .grille > div { grid-column: 1 / -1 !important; }
  .citation blockquote { font-size: clamp(1.45rem, 7vw, 2rem); }
  .lettrine::first-letter { font-size: 3.4em; }
  .pied__colonne { grid-column: span 6; }
  .citation { max-width: 100%; }
  .botanique td:first-child { width: 40%; }
  .botanique th:last-child, .botanique td:last-child { display: none; }
}

/* ============================================================
   PETITS ÉCRANS (iPhone SE / mini, ≤ 480 px)
   Optimisation du cadrage du visuel hero
   ============================================================ */
@media (max-width: 480px) {
  /* Décale le cadrage vers le bas : fait remonter les fleurs
     vers la zone du titre et réduit le mur clair en haut */
  .hero__media img { object-position: center; }
  /* Léger surcroît de hauteur pour aérer sur écran court */
  .hero { min-height: 96svh; }
}
