/* ==========================================================================
   Tamnature — Components
   ========================================================================== */

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(120% 80% at 50% 0%, var(--c-blanc-creme) 0%, var(--c-lin) 55%, var(--c-lin-fonce) 100%);
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-art svg {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: auto;
  display: block;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: var(--sp-6);
}

.hero-title {
  font-size: var(--fs-hero);
  font-family: var(--font-display);
  line-height: 1.05;
  margin-bottom: var(--sp-4);
  color: var(--c-vert-fonce);
}

.hero-title em {
  color: var(--c-or-ancien);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: rgba(42, 36, 24, 0.78);
  margin-bottom: var(--sp-5);
  max-width: 42ch;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.hero-note {
  margin-top: var(--sp-4);
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(42, 36, 24, 0.72);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.hero-visual svg { width: 100%; height: 100%; }

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  color: var(--c-vert-fonce);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.scroll-indicator::after {
  content: "";
  width: 1px;
  height: 36px;
  background: currentColor;
  animation: scroll-pulse 2.4s ease-in-out infinite;
}

@media (max-width: 760px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 360px; margin-inline: auto; }
}

/* --- Desktop : photo hero portrait entière, aucun recadrage ------------ */
@media (min-width: 761px) {
  .hero--photo .hero-photo {
    object-fit: contain;
    object-position: center center;
  }
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  overflow: hidden;
  transition: transform var(--t-fast) var(--ease-bounce),
              background-color var(--t-fast),
              color var(--t-fast),
              border-color var(--t-fast),
              box-shadow var(--t-fast);
  will-change: transform;
}

/* petit reflet doux qui glisse au survol — touche "lovely" */
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform var(--t-mid) var(--ease-soft);
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-3px) scale(1.04);
}
.btn:hover::after { transform: translateX(120%); }

/* petit "squish" tout doux au clic */
.btn:active {
  transform: translateY(-1px) scale(0.97);
  transition-duration: 90ms;
}

.btn-primary {
  background-color: var(--c-vert-fonce);
  color: var(--c-lin);
  box-shadow: 0 12px 26px -14px rgba(62, 90, 46, 0.55);
}
.btn-primary:hover {
  background-color: var(--c-vert-herbe);
  color: var(--c-lin-clair);
  box-shadow: 0 18px 34px -14px rgba(107, 142, 78, 0.6);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--c-vert-fonce);
  color: var(--c-vert-fonce);
}
.btn-secondary:hover {
  background-color: var(--c-vert-fonce);
  color: var(--c-lin);
  box-shadow: 0 16px 30px -16px rgba(62, 90, 46, 0.5);
}

.btn-buy {
  background-color: var(--c-safran);
  color: var(--c-encre);
  width: 100%;
  font-weight: 700;
  padding: 1.05rem 1.5rem;
  box-shadow: 0 12px 26px -12px rgba(229, 181, 72, 0.8);
}
.btn-buy:hover {
  background-color: var(--c-safran-soft);
  color: var(--c-cire-dark);
  box-shadow: 0 20px 38px -12px rgba(229, 181, 72, 0.9);
}
/* petit clin d'oeil kawaii : le bouton frétille au survol */
.btn-buy:hover { animation: btn-wiggle 0.5s var(--ease-soft); }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--c-cire);
  border-bottom: 1.5px dashed currentColor;
  padding-bottom: 2px;
  transition: gap var(--t-fast) var(--ease-soft);
}
.btn-link:hover { gap: 0.7rem; color: var(--c-cire-dark); }

/* --- Section heads ----------------------------------------------------- */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--sp-6);
}
.section-head p {
  margin: var(--sp-3) auto 0;
  color: rgba(42, 36, 24, 0.72);
}

/* --- Product cards ----------------------------------------------------- */
.products {
  position: relative;
  z-index: 2;
}

.product-card {
  position: relative;
  background: var(--c-blanc-creme);
  border-radius: var(--radius-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-mid) var(--ease-soft),
              box-shadow var(--t-mid) var(--ease-soft);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-h);
}

.product-illustration {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  background: linear-gradient(160deg, var(--c-safran-soft) 0%, var(--c-lin-clair) 100%);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.product-illustration svg {
  position: relative;
  z-index: 2;
  width: 70%;
  height: 70%;
}

/* Buisson en arrière-plan : animé au hover */
.product-illustration .bush-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.85;
  transform-origin: 50% 100%;
}

.product-illustration .bush-bg .leaf,
.product-illustration .bush-bg .branch {
  transform-origin: 50% 100%;
  transition: transform var(--t-mid) var(--ease-soft);
}

.product-card:hover .product-illustration .bush-bg .leaf {
  animation: wind-leaves 3s ease-in-out infinite;
}
.product-card:hover .product-illustration .bush-bg .leaf:nth-child(2n) {
  animation-delay: -0.6s;
  animation-duration: 3.4s;
}
.product-card:hover .product-illustration .bush-bg .leaf:nth-child(3n) {
  animation-delay: -1.2s;
  animation-duration: 4.2s;
}
.product-card:hover .product-illustration .bush-bg .branch {
  animation: wind-branch 5s ease-in-out infinite;
}

.product-name {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--c-vert-fonce);
}

.product-tag {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--c-or-ancien);
  font-weight: 600;
}

.product-desc {
  color: rgba(42, 36, 24, 0.75);
  font-size: 0.98rem;
  line-height: 1.55;
}

/* Quantity selector */
.qty-selector {
  border: 0;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.qty-selector legend { display: none; }

.qty-selector label {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.qty-selector input { position: absolute; opacity: 0; pointer-events: none; }

.qty-selector span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 0.7rem 1.1rem;
  background: var(--c-lin);
  border: 1.5px solid transparent;
  border-radius: 16px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--c-vert-fonce);
  transition: background var(--t-fast),
              border-color var(--t-fast),
              box-shadow var(--t-fast),
              transform var(--t-fast) var(--ease-bounce);
}

.qty-selector span small {
  font-weight: 500;
  color: var(--c-or-ancien);
  font-size: 0.78rem;
}

.qty-selector input:checked + span {
  background: var(--c-safran-soft);
  border-color: var(--c-safran);
  box-shadow: 0 8px 18px -10px rgba(229, 181, 72, 0.7);
}

.qty-selector input:focus-visible + span {
  outline: 2px solid var(--c-vert-fonce);
  outline-offset: 3px;
}

.qty-selector label:hover span {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 20px -12px rgba(62, 90, 46, 0.45);
}
.qty-selector label:active span { transform: translateY(0) scale(0.96); }

/* Official French organic certification (label AB + EU) — static image */
.cert-ab {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 120px;
  height: auto;
  z-index: 4;
  display: block;
  background: #fff;
  padding: 6px 8px;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(58, 145, 63, 0.22);
}

/* --- Frise / Timeline (Circuit court) --------------------------------- */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  position: relative;
}

.timeline-step {
  text-align: center;
  position: relative;
  padding: var(--sp-3);
}

.timeline-step-art {
  width: 140px;
  height: 140px;
  margin: 0 auto var(--sp-3);
  border-radius: 50%;
  background: var(--c-lin-clair);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1.5px rgba(62, 90, 46, 0.12);
  position: relative;
}

.timeline-step-art svg { width: 80%; height: 80%; }

.timeline-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-safran);
  color: var(--c-encre);
  font-family: var(--font-display);
  font-weight: 600;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 10px rgba(229, 181, 72, 0.4);
}

.timeline-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.timeline-step p {
  margin: 0 auto;
  max-width: 28ch;
  color: rgba(42, 36, 24, 0.72);
  font-size: 0.96rem;
}

/* Pointillé qui relie les étapes */
.timeline-line {
  position: absolute;
  top: 70px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  z-index: -1;
}

.timeline-line svg {
  width: 100%;
  height: 24px;
  overflow: visible;
}

.timeline-line path {
  fill: none;
  stroke: var(--c-or-ancien);
  stroke-width: 2;
  stroke-dasharray: 4 7;
  stroke-linecap: round;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 2.5s var(--ease-out);
}

.timeline.is-visible .timeline-line path { stroke-dashoffset: 0; }

/* Variante 5 étapes (processus de fabrication) */
.timeline-5 { grid-template-columns: repeat(5, 1fr); gap: var(--sp-4); }
.timeline-5 .timeline-line { left: 10%; right: 10%; }
.timeline-5 .timeline-step-art { width: 120px; height: 120px; }

/* Couches illustration → photo (crossfade) */
.process-art { overflow: hidden; }

.process-illu,
.process-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.6s var(--ease-out);
}

.process-illu {
  display: grid;
  place-items: center;
  opacity: 1;
}

.process-illu svg { width: 80%; height: 80%; }

.process-photo {
  object-fit: cover;
  border-radius: 50%;
  opacity: 0;
}

/* Le badge numéroté reste au-dessus des deux couches */
.process-art .timeline-num { z-index: 2; }

/* Desktop : survol = bascule en photo */
@media (hover: hover) {
  .timeline-step:hover .process-photo { opacity: 1; }
  .timeline-step:hover .process-illu { opacity: 0; }
}

/* Tactile / scroll : classe posée par reveal.js */
.process-art.is-photo .process-photo { opacity: 1; }
.process-art.is-photo .process-illu { opacity: 0; }

/* Bandeau "ce que nous excluons" (valorise la pureté) */
.process-promise {
  margin-top: var(--sp-6);
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.process-promise-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--c-or-ancien);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.process-exclusions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 0.7rem;
  list-style: none;
}

.process-exclusions li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  background: var(--c-lin-clair);
  border: 1.5px dashed rgba(62, 90, 46, 0.22);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-vert-fonce);
}

@media (max-width: 1024px) {
  .timeline-5 { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
  .timeline-5 .timeline-line { display: none; }
}

@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: var(--sp-4); }
  .timeline-line { display: none; }
  .timeline-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .timeline-5 { grid-template-columns: 1fr; }
}

/* --- "Pourquoi nos arômes" --------------------------------------------- */
.why-section {
  background:
    linear-gradient(180deg, var(--c-lin-clair) 0%, var(--c-blanc-creme) 100%);
  border-block: 1px dashed rgba(62, 90, 46, 0.18);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: var(--sp-5);
}

.why-item {
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
}

.why-icon {
  width: 96px;
  height: 96px;
  margin: 0 auto var(--sp-3);
  display: grid;
  place-items: center;
  background: var(--c-lin);
  border-radius: 50%;
  border: 1.5px dashed rgba(62, 90, 46, 0.25);
}

.why-icon svg { width: 56px; height: 56px; }

.why-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.why-item p {
  margin-inline: auto;
  font-size: 0.96rem;
  color: rgba(42, 36, 24, 0.74);
  max-width: 30ch;
}

.why-quote {
  margin-top: var(--sp-6);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--c-vert-fonce);
  max-width: 56ch;
  margin-inline: auto;
  position: relative;
}

.why-quote::before,
.why-quote::after {
  content: "“";
  color: var(--c-safran);
  font-size: 2.4rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.2em;
}
.why-quote::after {
  content: "”";
  margin-right: 0;
  margin-left: 0.2em;
}

.why-quote-author {
  display: block;
  margin-top: var(--sp-3);
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--c-or-ancien);
}

@media (max-width: 760px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* --- Storytelling teaser ----------------------------------------------- */
.story-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-6);
}

.story-teaser-art {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: linear-gradient(180deg, var(--c-safran-soft), var(--c-vert-mousse));
  aspect-ratio: 5 / 4;
}

.story-teaser-art svg { width: 100%; height: 100%; }

@media (max-width: 760px) {
  .story-teaser { grid-template-columns: 1fr; gap: var(--sp-4); }
}

/* --- Product detail page ----------------------------------------------- */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
  padding-block: clamp(2.5rem, 6vw, 5rem);
}

.product-hero-art {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-card);
  background: linear-gradient(160deg, var(--c-safran-soft) 0%, var(--c-blanc-creme) 100%);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.product-hero-art > svg.jar { width: 60%; height: 60%; position: relative; z-index: 2; }
.product-hero-art .cert-ab { width: 150px; height: auto; top: 1.4rem; right: 1.4rem; }

.product-hero-art .bush-bg { animation: wind-leaves 7s ease-in-out infinite; transform-origin: 50% 100%; }

.product-hero-info .product-tag { margin-bottom: var(--sp-2); }

.product-hero-info h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: var(--sp-3);
}

.product-hero-info .lead { margin-bottom: var(--sp-4); }

.product-buy-block {
  background: var(--c-blanc-creme);
  border-radius: var(--radius-card);
  padding: var(--sp-4);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}

.product-buy-block .qty-selector { margin-top: var(--sp-2); }

.product-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}

.product-meta-item {
  background: var(--c-lin-clair);
  border-radius: var(--radius-soft);
  padding: var(--sp-3);
  text-align: center;
  font-size: 0.9rem;
}
.product-meta-item strong {
  display: block;
  color: var(--c-or-ancien);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  font-size: 0.72rem;
  margin-bottom: 0.3rem;
}

@media (max-width: 760px) {
  .product-hero { grid-template-columns: 1fr; }
  .product-meta { grid-template-columns: 1fr; }
}

/* --- Product page banner ---------------------------------------------- */
.product-banner {
  position: relative;
  margin: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 21 / 9;
}
.product-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 36, 24, 0) 30%, rgba(42, 36, 24, 0.62) 100%);
}
.product-banner-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.2rem, 4vw, 2.75rem);
  color: var(--c-blanc-creme);
}
.product-banner-caption .eyebrow {
  color: var(--c-safran-soft);
  margin-bottom: var(--sp-2);
}
.product-banner-caption .banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  line-height: var(--lh-tight);
  max-width: 24ch;
  margin: 0;
  text-shadow: 0 2px 18px rgba(42, 36, 24, 0.4);
}
@media (max-width: 760px) {
  .product-banner { aspect-ratio: 4 / 3; }
}

/* --- Usage ideas ------------------------------------------------------- */
.usage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}

.usage-item {
  background: var(--c-blanc-creme);
  border-radius: var(--radius-soft);
  padding: var(--sp-4);
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  box-shadow: var(--shadow-warm);
}

.usage-item .usage-icon {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-safran-soft);
  display: grid;
  place-items: center;
}
.usage-item .usage-icon svg { width: 32px; height: 32px; }
.usage-item h3 { font-size: 1.05rem; margin-bottom: 0.25rem; color: var(--c-vert-fonce); }
.usage-item p  { font-size: 0.92rem; margin: 0; color: rgba(42, 36, 24, 0.74); }

@media (max-width: 760px) {
  .usage-grid { grid-template-columns: 1fr; }
}

/* --- About page -------------------------------------------------------- */
.about-hero {
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.about-hero .eyebrow { color: var(--c-or-ancien); }
.about-hero h1 { max-width: 18ch; margin: 0 auto var(--sp-3); }
.about-hero .lead { max-width: 56ch; margin: 0 auto; }

/* Prose éditoriale centrée */
.about-prose {
  max-width: 700px;
  margin-inline: auto;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  line-height: 1.80;
}
.about-prose p { margin-bottom: var(--sp-4); color: rgba(42, 36, 24, 0.82); }
.about-prose p:last-child { margin-bottom: 0; }
.about-prose h3 { margin-top: var(--sp-5); margin-bottom: var(--sp-3); color: var(--c-vert-fonce); }
.about-prose strong { color: var(--c-vert-fonce); font-weight: 600; }
.about-prose em { color: var(--c-or-ancien); font-style: italic; }

/* Liste "dangers" avec puce ocre */
.about-prose .danger-list {
  list-style: none;
  margin: var(--sp-4) 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about-prose .danger-list li {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(42, 36, 24, 0.82);
}
.about-prose .danger-list li::before {
  content: "•";
  position: absolute;
  left: 0.3rem;
  color: var(--c-cire);
  font-weight: 700;
}

/* Encart "Le savais-tu ?" */
.fact-callout {
  background: var(--c-blanc-creme);
  border-radius: var(--radius-soft);
  padding: var(--sp-4) clamp(1.2rem, 3vw, 1.8rem);
  box-shadow: var(--shadow-warm);
  border-left: 4px solid var(--c-safran);
  margin: var(--sp-5) auto;
  max-width: 700px;
}
.fact-callout h3 {
  color: var(--c-cire-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.fact-callout p {
  color: rgba(42, 36, 24, 0.82);
  margin-bottom: 0;
}
.fact-callout p + p { margin-top: 0.5rem; }

/* Photo cinématique entre les blocs texte */
.about-photo-break {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  margin: 0;
}
.about-photo-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.about-photo-break:hover img { transform: scale(1.03); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-5);
}
.value-card {
  background: var(--c-blanc-creme);
  border-radius: var(--radius-soft);
  padding: var(--sp-4);
  box-shadow: var(--shadow-warm);
  border-top: 3px solid var(--c-safran);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--c-vert-fonce); }
.value-card p  { font-size: 0.95rem; color: rgba(42, 36, 24, 0.75); }

@media (max-width: 760px) {
  .about-photo-break { aspect-ratio: 4 / 3; }
  .values-grid { grid-template-columns: 1fr; }
}

/* --- Contact ----------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: start;
}

.contact-info ul { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 1rem;
}
.contact-info li strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
  font-size: 0.75rem;
  color: var(--c-or-ancien);
}

.contact-form {
  background: var(--c-blanc-creme);
  border-radius: var(--radius-card);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-vert-fonce);
  text-transform: uppercase;
  letter-spacing: var(--tracking-eyebrow);
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1.5px solid rgba(62, 90, 46, 0.2);
  background: var(--c-lin-clair);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-encre);
  text-transform: none;
  font-weight: 400;
  letter-spacing: normal;
  transition: border-color var(--t-fast), background var(--t-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--c-safran);
  background: var(--c-blanc-creme);
  outline: none;
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.form-status {
  font-size: 0.9rem;
  color: var(--c-vert-fonce);
  min-height: 1.2em;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}

/* --- Cross-sell -------------------------------------------------------- */
.cross-sell {
  background:
    linear-gradient(180deg, var(--c-lin) 0%, var(--c-blanc-creme) 100%);
  border-top: 1px dashed rgba(62, 90, 46, 0.2);
  text-align: center;
}

.cross-sell h2 {
  margin-bottom: var(--sp-4);
}

/* --- Reveal-on-scroll -------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-slow) var(--ease-out),
              transform var(--t-slow) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Decorative SVG defs (paper-grain & crayonne filter) --------------- */
.svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ==========================================================================
   Photo integrations
   ========================================================================== */

/* --- Hero photo variant ------------------------------------------------- */
.hero--photo { background: var(--c-lin); } /* fallback si photo absente — crème beige */

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
}

/* Voile crème/beige : lisibilité du texte sur fond clair, sans plaquer le vert */
.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(105deg,
      rgba(239, 230, 210, 0.92) 0%,
      rgba(239, 230, 210, 0.72) 52%,
      rgba(239, 230, 210, 0.30) 100%),
    linear-gradient(180deg,
      rgba(239, 230, 210, 0.25) 0%,
      transparent 35%);
}

/* Mode photo : colonne texte seule, alignée à gauche */
.hero--photo .hero-inner {
  grid-template-columns: minmax(0, 680px);
  z-index: 3;
}

/* Fond clair crème/beige : texte foncé pour la lisibilité */
.hero--photo .hero-title       { color: var(--c-vert-fonce); }
.hero--photo .hero-title em    { color: var(--c-or-ancien); }
.hero--photo .hero-sub         { color: rgba(42, 36, 24, 0.82); }
.hero--photo .hero-note        { color: rgba(42, 36, 24, 0.72); }
.hero--photo .eyebrow          { color: var(--c-cire-dark); }
.hero--photo .scroll-indicator { color: var(--c-vert-fonce); }

/* Boutons hero : couleur ocre pour les deux CTA */
.hero-cta .btn-primary {
  background-color: var(--c-or-ancien);
  color: var(--c-blanc-creme);
  box-shadow: 0 12px 26px -14px rgba(201, 148, 73, 0.55);
}
.hero-cta .btn-primary:hover {
  background-color: var(--c-cire-dark);
  color: var(--c-blanc-creme);
  box-shadow: 0 18px 34px -14px rgba(138, 54, 33, 0.5);
}
.hero-cta .btn-secondary {
  background-color: transparent;
  border-color: var(--c-or-ancien);
  color: var(--c-or-ancien);
}
.hero--photo .hero-cta .btn-secondary {
  border-color: var(--c-or-ancien);
  color: var(--c-or-ancien);
}
.hero-cta .btn-secondary:hover,
.hero--photo .hero-cta .btn-secondary:hover {
  background-color: var(--c-or-ancien);
  color: var(--c-blanc-creme);
  border-color: var(--c-or-ancien);
  box-shadow: 0 16px 30px -16px rgba(201, 148, 73, 0.5);
}

/* Badge logo carré dans le hero */
.hero-logo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: var(--sp-3);
}
.hero-logo-badge svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: var(--shadow-warm);
}

@media (max-width: 760px) {
  .hero--photo .hero-inner { grid-template-columns: 1fr; }
}

/* --- Timeline step : vignette photo ------------------------------------ */
.timeline-step-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* --- Story teaser : photo remplace le SVG ------------------------------ */
.story-teaser-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- About hero photo variant ------------------------------------------ */
.about-hero--photo {
  position: relative;
  overflow: hidden;
  min-height: clamp(360px, 46vw, 560px);
  display: flex;
  align-items: flex-end;
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.about-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.about-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(10, 20, 5, 0.18) 0%,
    rgba(10, 20, 5, 0.65) 100%
  );
}

.about-hero--photo .container     { position: relative; z-index: 2; }
.about-hero--photo h1,
.about-hero--photo .lead          { color: var(--c-lin-clair); }
.about-hero--photo .eyebrow       { color: var(--c-safran-soft); }

/* --- About image : photo remplace le SVG ------------------------------- */
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* --- Terroir banner (photo 06) ----------------------------------------- */
.terroir-banner {
  position: relative;
  overflow: hidden;
  aspect-ratio: 21 / 8;
}

.terroir-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* recadre le bas = cache le toit de voiture */
  display: block;
}

.terroir-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(42, 36, 24, 0.65) 100%
  );
  pointer-events: none;
}

.terroir-banner-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(1.2rem, 3vw, 2.5rem);
  color: var(--c-lin-clair);
}

.terroir-banner-caption .eyebrow {
  color: var(--c-safran-soft);
  margin-bottom: var(--sp-2);
}

.terroir-banner-caption p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.8rem);
  font-style: italic;
  max-width: 48ch;
  margin: 0;
  text-shadow: 0 2px 12px rgba(42, 36, 24, 0.38);
}

@media (max-width: 760px) {
  .terroir-banner { aspect-ratio: 4 / 3; }
}

/* --- Product hero : photo derrière le bocal ---------------------------- */
.product-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

/* Assombrit légèrement la photo pour garder la lisibilité du bocal SVG */
.product-hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 20, 5, 0.28);
  pointer-events: none;
}

/* Les éléments SVG restent au-dessus de la photo */
.product-hero-art .bush-bg { z-index: 2; }
.product-hero-art svg.jar  { z-index: 3; }
.product-hero-art .cert-ab { z-index: 4; }
