/* ======================================================
   MA JOLIE CIRE - HOMEPAGE
   Refonte strategique de la home
====================================================== */

.homepage {
  position: relative;
}

.home-hero,
.home-proof-section,
.home-categories-section,
.home-featured-section,
.home-brand-section,
.home-intents-section,
.home-story-section,
.home-instagram-section,
.home-event-section {
  position: relative;
}

.home-story-section,
.home-intents-section,
.home-instagram-section,
.home-brand-section {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.home-hero {
  padding: 28px 0 24px;
}

.home-hero-svg-accent {
  position: absolute;
  left: max(300px, calc((100vw - 1280px) / 2 + 360px));
  top: 116px;
  z-index: 2;
  width: min(310px, 24vw);
  height: auto;
  color: rgba(143, 78, 78, 0.2);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.home-hero-svg-line,
.home-hero-svg-flame,
.home-hero-svg-petal {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero-svg-line {
  stroke-width: 4;
}

.home-hero-svg-line-soft {
  opacity: 0.54;
  stroke-width: 3;
}

.home-hero-svg-flame,
.home-hero-svg-petal {
  opacity: 0.74;
  stroke-width: 3.4;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 255, 255, 0.62), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(234, 218, 218, 0.4), transparent 26%);
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.88fr);
  gap: 48px;
  align-items: center;
}

.home-hero-content {
  max-width: 610px;
}

.home-hero-content h1 {
  max-width: 11.5ch;
  margin-bottom: 22px;
}

.home-hero-text {
  max-width: 48ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.82;
}

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

.home-hero-quicklinks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
}

.hero-quicklink {
  display: grid;
  gap: 10px;
  padding: 16px 16px 18px;
  border-radius: 20px;
  background: rgba(255, 247, 246, 0.78);
  border: 1px solid rgba(234, 218, 218, 0.95);
  box-shadow: var(--shadow-xs);
  color: inherit;
  text-decoration: none;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.hero-quicklink:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 106, 106, 0.22);
  box-shadow: var(--shadow-sm);
}

.hero-quicklink-kicker {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-quicklink strong {
  color: var(--title);
  font-size: 0.96rem;
  line-height: 1.4;
}

.hero-quicklink span:last-child {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.65;
}

.home-hero-visual {
  position: relative;
  min-height: 540px;
  padding: 18px 0 0 22px;
}

.home-hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px 0 14px 0;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(234, 218, 218, 0.92), rgba(234, 218, 218, 0.75));
}

.home-hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 36px;
  object-fit: cover;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.home-hero-note {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  max-width: 248px;
  padding: 18px 18px 20px;
  border-radius: 24px;
  background: rgba(255, 247, 246, 0.96);
  border: 1px solid rgba(234, 218, 218, 0.95);
  box-shadow: 0 24px 44px rgba(43, 31, 31, 0.12);
}

.home-hero-note-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero-note strong {
  color: var(--title);
  font-size: 1rem;
  line-height: 1.5;
}

.home-proof-section {
  padding: 0 0 30px;
}

.home-proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-proof-list li {
  padding: 18px 18px 20px;
  border-top: 1px solid rgba(212, 106, 106, 0.2);
  color: var(--title-soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.home-section-shell {
  display: grid;
  gap: 24px;
}

.home-section-intro {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.home-section-intro p:last-child {
  color: var(--text-soft);
  line-height: 1.82;
}

.home-section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-categories-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-category-card {
  position: relative;
  display: grid;
  align-items: end;
  grid-column: span 2;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.home-category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.home-category-media {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.home-category-card:first-child,
.home-category-card:nth-child(2) {
  grid-column: span 3;
  min-height: 380px;
}

.home-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
  background: var(--bg-soft);
}

.home-category-card:hover img {
  transform: scale(1.04);
}

.home-category-icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(221, 165, 174, 0.78);
  border-radius: 999px;
  background: #fde7ea;
  color: #b8737d;
  box-shadow: 0 10px 20px rgba(116, 54, 66, 0.14);
  transform: translate(-50%, 50%);
  pointer-events: none;
}

.home-category-icon svg {
  width: 26px;
  height: 26px;
}

.home-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 31, 31, 0.03), rgba(43, 31, 31, 0.18) 42%, rgba(43, 31, 31, 0.78));
  z-index: 1;
}

.home-category-overlay {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
  padding: 22px;
}

.home-category-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 247, 246, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--accent-soft);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-category-overlay h3 {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  line-height: 1.02;
}

.home-category-overlay p {
  max-width: 30ch;
  color: rgba(255, 247, 246, 0.9);
  font-size: 0.92rem;
  line-height: 1.68;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-category-meta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 247, 246, 0.3);
  border-radius: 999px;
  background: rgba(255, 247, 246, 0.14);
  color: rgba(255, 247, 246, 0.92);
  font-size: 0.8rem;
  font-weight: 800;
}

.home-category-meta::after {
  content: "\2192";
  margin-left: 8px;
}

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

.featured-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border-radius: 26px;
  background: rgba(255, 247, 246, 0.96);
  border: 1px solid rgba(234, 218, 218, 0.95);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.featured-card-media {
  position: relative;
  aspect-ratio: var(--ratio-card-featured, 4 / 3);
  overflow: hidden;
  background: var(--bg-soft);
}

.featured-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43, 31, 31, 0.1), rgba(43, 31, 31, 0));
  pointer-events: none;
}

.featured-card img {
  width: 100%;
  height: 100%;
  display: block;
  box-sizing: border-box;
  object-fit: cover;
  object-position: center 54%;
  transition: transform 0.45s ease;
}

.featured-card:hover img {
  transform: scale(1.03);
}

.featured-card-badges {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: calc(100% - 36px);
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 247, 246, 0.92);
  color: var(--accent-deep);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-card-content {
  display: grid;
  gap: 14px;
  padding: 22px 22px 24px;
}

.featured-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.featured-card h3 {
  font-size: 1.55rem;
}

.featured-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.88rem;
  font-weight: 800;
  white-space: nowrap;
}

.featured-price-stack {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.featured-price-old {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: line-through;
}

.featured-price--promo {
  background: rgba(212, 106, 106, 0.12);
  color: var(--accent-deep);
}

.featured-card p {
  color: var(--text-soft);
  line-height: 1.72;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.featured-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--title);
  font-weight: 800;
  font-size: 0.92rem;
}

.featured-card-cta::after,
.intent-link::after {
  content: "\2197";
  font-size: 0.9rem;
  transition: transform var(--transition);
}

.featured-card:hover .featured-card-cta::after,
.intent-link:hover::after {
  transform: translate(2px, -2px);
}

/* Badge nouveaute */
.featured-badge--nouveau {
  background: rgba(143, 78, 78, 0.96);
  color: #fff;
}

.brand-story-box {
  border: 1px solid rgba(234, 218, 218, 0.95);
  box-shadow: var(--shadow-sm);
}

.brand-story-box p:last-child {
  color: var(--text-soft);
  line-height: 1.76;
}

.brand-story-box {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  padding: 42px 38px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 247, 246, 0.98), rgba(234, 218, 218, 0.96));
  text-align: center;
}

.home-event-section {
  padding: 26px 0 38px;
}

#evenement[hidden] {
  display: none !important;
}

.evenement-wrapper {
  padding: 0;
  border-radius: 12px;
  background: var(--bg);
  border: 0;
  box-shadow: 0 12px 30px rgba(76, 49, 49, 0.06);
  overflow: hidden;
}

.evenement-spotlight {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(232px, 22vw, 292px);
  overflow: hidden;
  isolation: isolate;
  background: var(--bg);
}

.evenement-spotlight--with-image {
  aspect-ratio: 1900 / 828;
  min-height: 0;
}

.evenement-spotlight::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(255, 248, 247, 0.88) 0%,
      rgba(255, 248, 247, 0.78) 24%,
      rgba(255, 248, 247, 0.54) 39%,
      rgba(255, 248, 247, 0.2) 56%,
      rgba(255, 248, 247, 0) 72%,
      rgba(255, 247, 246, 0) 100%
    );
  pointer-events: none;
}

.evenement-spotlight--no-image::before {
  display: none;
}

.evenement-heading {
  position: relative;
  z-index: 2;
  max-width: min(560px, 56%);
  padding: clamp(28px, 4vw, 42px);
}

.evenement-badge {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin-bottom: 8px;
  border-radius: 999px;
  background: transparent;
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.evenement-period {
  display: block;
  width: fit-content;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
}

.evenement-titre {
  max-width: 14em;
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 2.65vw, 2.65rem);
  line-height: 1;
}

.evenement-description {
  max-width: 37ch;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.56;
}

.evenement-spotlight--with-image .evenement-description {
  color: rgba(47, 37, 35, 0.88);
}

.evenement-spotlight--with-image .evenement-badge,
.evenement-spotlight--with-image .evenement-titre,
.evenement-spotlight--with-image .evenement-description {
  text-shadow: 0 1px 14px rgba(255, 248, 247, 0.72);
}

.evenement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.evenement-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--bg-soft);
}

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

.featured-card-media[data-product-visual="bouquet"] img,
.featured-card-media[data-product-visual="spray"] img,
.featured-card-media[data-product-visual="bruleur"] img {
  padding: 0;
  object-fit: cover;
  object-position: center 54%;
}

.featured-card-media[data-product-visual="fondant"] img {
  object-position: center 58%;
}

.product-image-placeholder {
  display: grid;
  place-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  min-height: 100%;
  color: rgba(143, 78, 78, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 247, 246, 0.96), rgba(234, 218, 218, 0.68)),
    var(--bg-soft);
}

.product-image-placeholder svg {
  width: min(58%, 150px);
  height: auto;
}

.product-image-placeholder path {
  fill: none;
  stroke: currentColor;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.intent-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 247, 246, 0.84);
  border: 1px solid rgba(234, 218, 218, 0.95);
  box-shadow: var(--shadow-xs);
}

.intent-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(234, 218, 218, 0.82);
  color: var(--accent-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intent-card p {
  color: var(--text-soft);
  line-height: 1.76;
}

.intent-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  color: var(--title);
  font-weight: 800;
  text-decoration: none;
}

.empty-state {
  padding: 34px 24px;
  border-radius: 24px;
  background: rgba(255, 247, 246, 0.82);
  border: 1px solid rgba(234, 218, 218, 0.95);
  text-align: center;
}

.empty-state p {
  color: var(--text-soft);
}

.home-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 44px;
  align-items: center;
}

.home-story-visual img {
  width: 100%;
  min-height: 460px;
  border-radius: 30px;
  object-fit: cover;
  background: var(--bg-soft);
  box-shadow: var(--shadow-sm);
}

.home-story-content {
  display: grid;
  gap: 16px;
  max-width: 560px;
}

.home-story-content p {
  color: var(--text-soft);
  line-height: 1.86;
}

.home-story-signature {
  color: var(--accent-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-story-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.home-story-link {
  color: var(--accent-deep);
  font-weight: 700;
  text-decoration: none;
}

.home-story-link:hover {
  text-decoration: underline;
}

.home-story-points,
.instagram-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-story-point,
.instagram-point {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(234, 218, 218, 0.9);
  color: var(--title-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.instagram-box {
  display: grid;
  gap: 14px;
  padding: 42px 36px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 247, 246, 0.98), rgba(234, 218, 218, 0.96));
  border: 1px solid rgba(234, 218, 218, 0.95);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.instagram-box p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-soft);
  line-height: 1.8;
}

.instagram-box .btn {
  justify-self: center;
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .home-hero-grid,
  .home-story-grid {
    gap: 34px;
  }

  .home-hero-quicklinks,
  .home-proof-list,
  .featured-grid,
  .intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .home-hero-svg-accent {
    top: 78px;
    left: 18px;
    width: min(260px, 54vw);
    opacity: 0.55;
  }
}

@media (max-width: 560px) {
  .home-hero-svg-accent {
    display: none;
  }
}

@media (max-width: 980px) {
  .home-hero {
    padding: 18px 0 24px;
  }

  .home-hero-grid,
  .evenement-spotlight,
  .home-story-grid {
    grid-template-columns: 1fr;
  }

  .home-story-actions {
    align-items: flex-start;
  }

  .home-hero-visual {
    min-height: 0;
    padding: 0 0 18px;
  }

  .home-hero-visual::before {
    inset: 0 18px 0 0;
  }

  .home-hero-visual img {
    min-height: 420px;
  }

  .home-proof-list,
  .home-categories-grid,
  .featured-grid,
  .intent-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .home-hero {
    padding: 10px 0 18px;
  }

  .home-hero-grid {
    gap: 24px;
  }

  .home-hero-content h1 {
    max-width: 12ch;
  }

  .home-hero-text {
    font-size: 0.96rem;
    line-height: 1.78;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 22px;
  }

  .home-hero-actions .btn,
  .evenement-actions .btn,
  .instagram-box .btn {
    width: 100%;
    justify-self: stretch;
  }

  .home-hero-quicklinks,
  .home-proof-list,
  .home-categories-grid,
  .featured-grid,
  .intent-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-visual {
    padding-bottom: 0;
  }

  .home-hero-visual::before {
    inset: 0;
    border-radius: 24px;
  }

  .home-hero-visual img {
    min-height: 320px;
    border-radius: 24px;
  }

  .home-hero-note {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .home-proof-section {
    padding-bottom: 14px;
  }

  .home-proof-list li {
    padding: 14px 0;
  }

  .home-category-card {
    min-height: 280px;
    border-radius: 24px;
  }

  .featured-card,
  .intent-card,
  .instagram-box,
  .evenement-wrapper {
    border-radius: 24px;
  }

  .featured-card img {
    height: 100%;
  }

  .featured-card-content,
  .intent-card {
    padding: 18px;
  }

  .featured-card-top {
    flex-direction: column;
    gap: 10px;
  }

  .home-section-actions {
    flex-direction: column;
  }

  .home-section-actions .btn {
    width: 100%;
  }

  .evenement-wrapper {
    padding: 0;
  }

  .evenement-visual {
    position: relative;
    inset: auto;
    height: auto;
    aspect-ratio: 1900 / 828;
  }

  .evenement-spotlight {
    min-height: 0;
  }

  .evenement-spotlight--with-image {
    aspect-ratio: auto;
  }

  .evenement-spotlight::before {
    display: none;
  }

  .evenement-heading {
    max-width: none;
    padding: 22px 20px 18px;
  }

  .evenement-titre {
    max-width: 12em;
    font-size: clamp(1.78rem, 7.2vw, 2.28rem);
  }

  .brand-story-box {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .home-story-visual img {
    min-height: 320px;
    border-radius: 24px;
  }

  .home-story-points,
  .instagram-points {
    gap: 8px;
  }

  .instagram-box {
    padding: 30px 22px;
  }
}

@media (max-width: 480px) {
  .home-hero-content h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .home-hero-visual img {
    min-height: 260px;
  }

  .home-category-card {
    min-height: 240px;
  }

  .home-category-overlay {
    padding: 18px;
  }

  .home-category-overlay h3 {
    font-size: 1.75rem;
  }

  .featured-card img {
    height: 100%;
  }
}

@media (max-width: 414px) {
  .home-hero {
    padding: 6px 0 14px;
  }

  .home-hero-grid {
    gap: 20px;
  }

  .home-hero-text {
    font-size: 0.92rem;
    line-height: 1.72;
  }

  .home-hero-actions,
  .home-section-actions {
    gap: 10px;
  }

  .home-hero-quicklinks {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-quicklink {
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-quicklink strong {
    font-size: 0.92rem;
  }

  .hero-quicklink span:last-child,
  .home-proof-list li {
    font-size: 0.84rem;
  }

  .home-hero-note,
  .brand-story-box,
  .instagram-box {
    padding: 16px;
    border-radius: 20px;
  }

  .evenement-wrapper {
    padding: 0;
    border-radius: 20px;
  }

  .evenement-visual {
    height: auto;
    aspect-ratio: 1900 / 828;
  }

  .featured-card img {
    height: 100%;
  }
}

/* ======================================================
   Homepage visuel 2 - editoriale artisanale
====================================================== */

.homepage {
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent-soft) 100%);
}

.homepage .section {
  padding: 46px 0;
}

.home-hero {
  padding: 8px 0 0;
}

.home-hero::before {
  display: none;
}

.home-hero-grid {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.28fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  min-height: 430px;
  border-top: 1px solid rgba(234, 218, 218, 0.9);
  border-bottom: 1px solid rgba(234, 218, 218, 0.9);
  background: rgba(255, 247, 246, 0.88);
}

.home-hero-content {
  display: grid;
  align-content: center;
  max-width: none;
  padding: 44px 42px 46px 8px;
}

.home-hero-content h1 {
  max-width: 13ch;
  margin-bottom: 18px;
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: 0;
}

.home-hero-text {
  max-width: 48ch;
  font-size: 0.98rem;
  line-height: 1.75;
}

.home-hero-actions {
  gap: 12px;
  margin-top: 24px;
}

.home-hero-quicklinks {
  display: none;
}

.home-hero-visual {
  min-height: 430px;
  padding: 0;
  overflow: hidden;
}

.home-hero-visual::before {
  display: none;
}

.home-hero-visual img {
  min-height: 430px;
  height: 100%;
  border-radius: 0;
  box-shadow: none;
}

.home-hero-product-visual {
  isolation: isolate;
}

.home-hero-product-visual .home-hero-atmosphere,
.home-hero-product-visual .home-hero-logo-stage,
.home-hero-product-visual .home-hero-visual-copy {
  display: none;
}

.home-hero-product-image {
  object-position: center 52%;
}

.home-hero-product-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, rgba(43, 31, 31, 0), rgba(43, 31, 31, 0.34));
  pointer-events: none;
}

.home-hero-note {
  display: grid;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  max-width: min(330px, calc(100% - 48px));
  border-radius: 8px;
}

.home-proof-section {
  padding: 0;
  background: rgba(255, 248, 247, 0.94);
  border-top: 1px solid rgba(234, 218, 218, 0.78);
  border-bottom: 1px solid rgba(234, 218, 218, 0.82);
}

.home-proof-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.home-proof-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
  min-height: 64px;
  padding: 12px 22px;
  border-top: 0;
  border-right: 1px solid rgba(234, 218, 218, 0.72);
  color: var(--title-soft);
  font-size: 0.82rem;
}

.home-proof-list li:last-child {
  border-right: 0;
}

.home-proof-icon {
  display: inline-flex;
  grid-row: span 2;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  color: #d46a7a;
  background: rgba(246, 218, 222, 0.5);
}

.home-proof-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-proof-list strong {
  color: var(--title);
  font-size: 0.83rem;
  line-height: 1.25;
}

.home-proof-list span:last-child {
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.25;
}

.home-section-shell {
  gap: 18px;
}

.home-section-intro {
  max-width: 620px;
  gap: 7px;
}

.home-section-intro .eyebrow {
  margin-bottom: 2px;
}

.home-section-intro h2 {
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  letter-spacing: 0;
}

.home-section-intro p:last-child {
  max-width: 58ch;
  font-size: 0.92rem;
  line-height: 1.7;
}

.home-categories-section {
  padding-top: 42px;
}

.home-categories-section .home-section-shell {
  gap: 24px;
}

.home-categories-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.home-categories-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 22vw, 320px);
  grid-template-columns: none;
  gap: 16px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 18px;
  cursor: grab;
}

.home-categories-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.home-categories-grid::-webkit-scrollbar {
  display: none;
}

.home-categories-nav {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(221, 165, 174, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--accent-deep);
  box-shadow: 0 10px 22px rgba(43, 31, 31, 0.08);
  cursor: pointer;
  transition:
    opacity var(--transition),
    transform var(--transition),
    border-color var(--transition);
}

.home-categories-nav:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(212, 106, 106, 0.32);
}

.home-categories-nav:disabled,
.home-categories-carousel:not(.has-overflow) .home-categories-nav {
  opacity: 0.24;
  pointer-events: none;
}

.home-category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  grid-column: auto;
  scroll-snap-align: start;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(234, 218, 218, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(43, 31, 31, 0.055);
}

.home-category-card:first-child,
.home-category-card:nth-child(2) {
  grid-column: auto;
  min-height: 0;
}

.home-category-card::before {
  display: none;
}

.home-category-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(43, 31, 31, 0.08);
}

.home-category-card img {
  position: static;
  width: 100%;
  height: 196px;
  object-fit: cover;
  object-position: center 54%;
}

.home-category-media {
  position: relative;
  inset: auto;
  height: 196px;
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(255, 247, 246, 0.96), rgba(234, 218, 218, 0.7));
}

.home-category-media img {
  display: block;
  height: 100%;
}

.home-category-card-event {
  align-content: end;
  background: #ffffff;
}

.home-category-overlay {
  position: static;
  display: grid;
  gap: 7px;
  min-height: auto;
  padding: 32px 14px 15px;
}

.home-category-overlay h3 {
  color: var(--title);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-category-overlay p {
  max-width: none;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-category-kicker {
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
}

.home-category-meta {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
}

.home-featured-section {
  background: #ffffff;
  border-top: 1px solid rgba(234, 218, 218, 0.78);
  border-bottom: 1px solid rgba(234, 218, 218, 0.78);
}

.home-featured-section .home-section-shell {
  gap: 30px;
}

.home-featured-section .home-section-intro {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.home-featured-section .home-section-intro p:last-child {
  margin: 0 auto;
}

.featured-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.featured-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(340px, 24vw, 380px);
  grid-template-columns: none;
  gap: clamp(18px, 1.8vw, 26px);
  min-width: 0;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 18px;
  cursor: grab;
}

.featured-grid::-webkit-scrollbar {
  display: none;
}

.featured-grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.featured-carousel-nav {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(212, 106, 106, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--accent-deep);
  box-shadow: 0 10px 22px rgba(43, 31, 31, 0.08);
  cursor: pointer;
  transition:
    opacity var(--transition),
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.featured-carousel-nav:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(212, 106, 106, 0.16);
}

.featured-carousel-nav:disabled,
.featured-carousel:not(.has-overflow) .featured-carousel-nav {
  opacity: 0.24;
  pointer-events: none;
}

.featured-carousel:not(.has-overflow) {
  grid-template-columns: minmax(0, 1fr);
}

.featured-carousel:not(.has-overflow) .featured-carousel-nav {
  display: none;
}

.featured-carousel:not(.has-overflow) .featured-grid {
  justify-content: center;
}

.featured-card {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-width: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(234, 218, 218, 0.95);
  background: rgba(255, 247, 246, 0.96);
  box-shadow: var(--shadow-sm);
}

.featured-card-media {
  display: block;
  position: relative;
  aspect-ratio: var(--ratio-card-catalogue, 4 / 4.45);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.82), rgba(255, 247, 246, 0.34) 46%, rgba(234, 218, 218, 0.56)),
    var(--border);
}

.featured-card-media-link,
.featured-card-title-link {
  color: inherit;
  text-decoration: none;
}

.featured-card-title-link:hover {
  color: var(--accent-deep);
}

.featured-card img {
  display: block;
  width: 100%;
  height: 100%;
}

.home-featured-section .featured-card-media img {
  object-fit: cover;
  object-position: center 54%;
}

.featured-card-media::after {
  display: none;
}

.featured-card-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 222px;
  gap: 14px;
  padding: 22px 22px 24px;
}

.featured-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.featured-card h3 {
  margin: 0;
  color: var(--title);
  font-family: var(--font-body, Manrope, Arial, sans-serif);
  font-size: clamp(1.02rem, 1.08vw, 1.12rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.32;
}

.featured-card p {
  color: var(--text-soft);
  font-size: 0.91rem;
  line-height: 1.7;
  -webkit-line-clamp: 3;
}

.featured-price {
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.featured-card-cta {
  margin-top: 0;
  color: var(--accent-deep);
  font-size: 0.84rem;
  text-decoration: none;
}

.featured-card-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: auto;
}

.featured-card-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border: 1px solid rgba(212, 106, 106, 0.24);
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(212, 106, 106, 0.18);
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    opacity var(--transition);
}

.featured-card-add:hover:not(:disabled),
.featured-card-add:focus-visible {
  background: #b95a5a;
  border-color: rgba(185, 90, 90, 0.32);
  box-shadow: 0 14px 26px rgba(185, 90, 90, 0.22);
  transform: translateY(-1px);
}

.featured-card-add:disabled {
  cursor: default;
  opacity: 0.78;
}

.featured-card-add.is-added {
  background: #a95162;
}

.featured-card-add.is-unavailable {
  background: #8f7a7a;
  border-color: rgba(143, 122, 122, 0.26);
}

.featured-card-add {
  flex: 0 0 38px;
  width: 38px;
  min-width: 38px;
  padding: 0;
}

.featured-card-add svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.featured-card-add span {
  display: inline-flex;
}

.featured-card-add {
  gap: 7px;
  flex-basis: auto;
  width: auto;
  min-width: 104px;
  padding: 0 15px;
}

.home-story-section {
  padding: 50px 0 0;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-top: 1px solid rgba(234, 218, 218, 0.78);
}

.home-story-shell {
  display: block;
}

.home-story-banner {
  position: relative;
  min-height: clamp(300px, 27vw, 360px);
  overflow: hidden;
  border: 1px solid rgba(234, 218, 218, 0.82);
  border-radius: 12px 12px 0 0;
  background: var(--bg);
  box-shadow: 0 18px 42px rgba(116, 54, 66, 0.08);
  isolation: isolate;
}

.home-story-banner-image {
  position: absolute;
  inset: auto 0 auto 0;
  top: 49%;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 0;
  object-fit: unset;
  object-position: center center;
  box-shadow: none;
  transform: translateY(-50%);
}

.home-story-content {
  position: relative;
  z-index: 1;
  display: grid;
  box-sizing: border-box;
  align-content: center;
  gap: 10px;
  width: min(500px, 46%);
  min-height: clamp(300px, 27vw, 360px);
  margin-left: auto;
  padding: clamp(26px, 3.4vw, 38px) clamp(30px, 4.5vw, 56px) clamp(26px, 3.4vw, 38px) 0;
  background: transparent;
}

.home-story-content h2 {
  max-width: 16ch;
  font-size: clamp(1.82rem, 2.45vw, 2.75rem);
  line-height: 1.02;
}

.home-story-content p {
  max-width: 46ch;
  font-size: 0.9rem;
  line-height: 1.55;
}

#home-story-paragraph-1 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.home-story-signature,
.home-story-points,
#home-story-paragraph-2 {
  display: none;
}

.home-story-points {
  gap: 8px;
}

.home-story-point {
  min-height: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.76rem;
}

.home-story-actions {
  margin-top: 4px;
}

@media (max-width: 1280px) {
  .home-categories-grid {
    grid-auto-columns: clamp(300px, 28vw, 330px);
  }

  .featured-grid {
    grid-auto-columns: clamp(320px, 31vw, 360px);
  }
}

@media (max-width: 1100px) {
  .featured-grid {
    grid-auto-columns: clamp(300px, 40vw, 340px);
    grid-template-columns: none;
  }

  .home-categories-grid {
    grid-auto-columns: clamp(270px, 31vw, 320px);
    grid-template-columns: none;
  }

}

@media (max-width: 900px) {
  .home-hero-grid,
  .home-story-grid {
    grid-template-columns: 1fr;
  }

  .home-hero-content,
  .home-story-content {
    padding: 34px 0;
  }

  .home-story-content {
    padding: 30px 24px 34px;
  }

  .home-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-proof-list li:nth-child(2) {
    border-right: 0;
  }

  .featured-grid {
    grid-auto-columns: clamp(292px, 44vw, 330px);
    grid-template-columns: none;
  }

  .home-categories-grid {
    grid-auto-columns: clamp(270px, 38vw, 300px);
    grid-template-columns: none;
  }

}

@media (max-width: 560px) {
  .homepage .section {
    padding: 34px 0;
  }

  .home-hero-content h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }

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

  .home-categories-grid {
    grid-auto-columns: clamp(248px, 72vw, 286px);
    grid-template-columns: none;
  }

  .home-categories-carousel,
  .featured-carousel {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-categories-nav,
  .featured-carousel-nav {
    display: none;
  }

  .home-proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-grid {
    grid-auto-columns: clamp(270px, 82vw, 330px);
    grid-template-columns: none;
  }

  .featured-card-actions {
    display: grid;
    gap: 8px;
  }

  .featured-card-add,
  .featured-card-cta {
    width: 100%;
    justify-content: center;
  }

  .home-proof-list li {
    min-height: 66px;
    padding: 12px 14px;
    border-right: 1px solid rgba(234, 218, 218, 0.78);
    border-bottom: 1px solid rgba(234, 218, 218, 0.78);
  }

  .home-proof-list li:nth-child(even) {
    border-right: 0;
  }

  .home-proof-list li:nth-child(n + 3) {
    border-bottom: 0;
  }

  .home-proof-icon {
    width: 30px;
    height: 30px;
  }

  .home-category-card img,
  .featured-card img {
    height: 100%;
  }

  .home-category-media,
  .home-category-card img {
    height: 172px;
  }

  .home-story-banner {
    display: grid;
    min-height: 0;
    border-radius: 10px 10px 0 0;
  }

  .home-story-banner-image {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    transform: none;
  }

  .home-story-content {
    width: auto;
    min-height: 0;
    margin-left: 0;
    background: var(--bg);
  }
}

/* ======================================================
   Hero logo anime - accueil inspire du teaser
====================================================== */

.home-hero-content .eyebrow,
.home-hero-content h1,
.home-hero-text,
.home-hero-actions {
  opacity: 0;
  transform: translateY(12px);
  animation: home-hero-copy-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.home-hero-content .eyebrow {
  animation-delay: 0.55s;
}

.home-hero-content h1 {
  max-width: 14ch;
  letter-spacing: 0;
  animation-delay: 1.05s;
}

.home-hero-text {
  animation-delay: 1.55s;
}

.home-hero-actions {
  animation-delay: 2.05s;
}

.home-hero-teaser-visual {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(12px, 2.1vw, 22px);
  min-height: 430px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
  background:
    linear-gradient(138deg, rgba(253, 248, 247, 0.98) 0%, rgba(251, 241, 239, 0.96) 58%, rgba(255, 247, 243, 0.98) 100%);
}

.home-hero-teaser-visual::before {
  content: "";
  position: absolute;
  inset: 24px;
  z-index: 0;
  display: block;
  border: 1px solid rgba(201, 154, 76, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(242, 170, 163, 0.08));
}

.home-hero-teaser-visual::after {
  content: "fait main en Belgique";
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 32px);
  z-index: 3;
  color: rgba(90, 90, 90, 0.62);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero-atmosphere {
  position: absolute;
  inset: 28px 24px;
  z-index: 1;
  width: calc(100% - 48px);
  height: calc(100% - 56px);
  color: rgba(154, 154, 149, 0.42);
  pointer-events: none;
}

.home-hero-atmosphere-line,
.home-hero-atmosphere-scent {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero-atmosphere-line {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

.home-hero-atmosphere-line-main {
  stroke-width: 3.4;
  animation: home-hero-draw 2.6s ease-out 0.7s forwards;
}

.home-hero-atmosphere-line-soft {
  opacity: 0.58;
  stroke-width: 2.4;
  animation: home-hero-draw 2.4s ease-out 1.1s forwards;
}

.home-hero-atmosphere-scent {
  opacity: 0;
  stroke: rgba(201, 154, 76, 0.44);
  stroke-width: 2.6;
  transform: scale(0.96);
  transform-origin: center;
  animation: home-hero-soft-pop 1.05s ease-out 2.25s forwards;
}

.home-hero-logo-stage {
  position: relative;
  z-index: 2;
  width: clamp(205px, 27vw, 325px);
  aspect-ratio: 1;
}

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

.home-hero-teaser-visual .home-hero-logo-final {
  display: block;
  min-height: 0;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translateY(8px) scale(0.985);
  animation: home-hero-final-logo 1.2s cubic-bezier(0.22, 1, 0.36, 1) 3.55s forwards;
}

.home-hero-logo-overlay {
  pointer-events: none;
  animation: home-hero-overlay-out 0.85s ease-out 4.1s forwards;
}

.home-hero-overlay-wreath {
  color: rgba(154, 154, 149, 0.78);
  stroke: currentColor;
  stroke-width: 2.5;
}

.home-hero-draw,
.home-hero-word-line,
.home-hero-word-underline {
  fill: none;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

.home-hero-draw-left {
  animation: home-hero-draw 2.8s ease-out 0.18s forwards;
}

.home-hero-draw-right {
  animation: home-hero-draw 2.8s ease-out 0.42s forwards;
}

.home-hero-leaves {
  opacity: 0;
  transform: scale(0.94);
  transform-origin: center;
}

.home-hero-leaves-left {
  animation: home-hero-soft-pop 1.25s ease-out 1.22s forwards;
}

.home-hero-leaves-right {
  animation: home-hero-soft-pop 1.25s ease-out 1.42s forwards;
}

.home-hero-overlay-watercolor {
  opacity: 0;
  transform: scale(0.92);
  transform-origin: 250px 306px;
  animation: home-hero-watercolor 1.8s ease-out 1.55s forwards;
}

.home-hero-overlay-watercolor path {
  filter: blur(0.3px);
}

.home-hero-overlay-watercolor path:nth-child(1) {
  fill: #ef98a7;
  opacity: 0.62;
}

.home-hero-overlay-watercolor path:nth-child(2) {
  fill: #f6d5af;
  opacity: 0.58;
}

.home-hero-overlay-watercolor path:nth-child(3) {
  fill: #f2aaa3;
  opacity: 0.48;
}

.home-hero-overlay-candle {
  fill: none;
  stroke: #c99a4c;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: translateY(8px);
  animation: home-hero-candle 1.1s ease-out 2.35s forwards;
}

.home-hero-overlay-candle ellipse {
  fill: rgba(255, 248, 236, 0.72);
}

.home-hero-overlay-flame {
  fill: rgba(212, 106, 106, 0.86);
  stroke: none;
  transform-origin: 252px 170px;
}

.home-hero-overlay-wordmark {
  fill: none;
  stroke: #4e5a56;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transform: translateY(10px);
  animation: home-hero-wordmark 1.05s ease-out 2.8s forwards;
}

.home-hero-word-line {
  animation: home-hero-draw 1.1s ease-out 2.8s forwards;
}

.home-hero-word-underline {
  stroke-width: 4;
  animation: home-hero-draw 0.95s ease-out 3.05s forwards;
}

.home-hero-visual-copy {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  width: min(100%, 440px);
  gap: 10px;
  padding: 0 18px;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  animation: home-hero-copy-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 4.1s forwards;
}

.home-hero-visual-kicker {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-hero-visual-text {
  max-width: 34rem;
  margin: 0;
  color: rgba(51, 40, 41, 0.78);
  font-size: clamp(0.92rem, 1.2vw, 1.02rem);
  font-weight: 600;
  line-height: 1.72;
}

.home-hero-visual-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.home-hero-visual-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(234, 218, 218, 0.92);
  color: rgba(90, 90, 90, 0.8);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes home-hero-copy-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-hero-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes home-hero-soft-pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes home-hero-watercolor {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes home-hero-candle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-hero-wordmark {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-hero-final-logo {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes home-hero-overlay-out {
  to {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .home-hero-content h1 {
    max-width: 16ch;
  }

  .home-hero-teaser-visual {
    min-height: 390px;
  }

  .home-hero-logo-stage {
    width: clamp(210px, 42vw, 300px);
  }
}

@media (max-width: 560px) {
  .home-hero-teaser-visual {
    min-height: 390px;
    padding: 26px 18px 42px;
  }

  .home-hero-teaser-visual::before {
    inset: 14px;
  }

  .home-hero-logo-stage {
    width: min(64vw, 245px);
  }

  .home-hero-teaser-visual::after {
    right: 18px;
    bottom: 18px;
    font-size: 0.62rem;
  }

  .home-hero-visual-copy {
    width: min(100%, 320px);
    padding: 0;
  }

  .home-hero-visual-text {
    font-size: 0.9rem;
  }

  .home-hero-visual-tags span {
    min-height: 28px;
    padding: 5px 9px;
    font-size: 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-content .eyebrow,
  .home-hero-content h1,
  .home-hero-text,
  .home-hero-actions,
  .home-hero-logo-final,
  .home-hero-logo-overlay,
  .home-hero-draw,
  .home-hero-word-line,
  .home-hero-word-underline,
  .home-hero-leaves,
  .home-hero-overlay-watercolor,
  .home-hero-overlay-candle,
  .home-hero-overlay-wordmark,
  .home-hero-atmosphere-line,
  .home-hero-atmosphere-scent,
  .home-hero-visual-copy {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    transform: none !important;
  }

  .home-hero-logo-overlay {
    display: none;
  }
}

/* ======================================================
   Equilibre header/hero - version desktop
====================================================== */

@media (min-width: 901px) {
  .home-hero {
    padding-top: 6px;
  }

  .home-hero-grid {
    grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
    min-height: 390px;
  }

  .home-hero-content {
    padding: 36px 42px 38px 8px;
  }

  .home-hero-content h1 {
    max-width: 13ch;
    margin-bottom: 16px;
    font-size: clamp(2.9rem, 4.35vw, 4.45rem);
  }

  .home-hero-text {
    max-width: 44ch;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .home-hero-actions {
    margin-top: 22px;
  }

  .home-hero-visual,
  .home-hero-teaser-visual {
    min-height: 390px;
  }

  .home-hero-logo-stage {
    width: clamp(198px, 24vw, 292px);
  }

  .home-hero-visual-copy {
    width: min(100%, 420px);
  }
}

/* ======================================================
   Hero homepage - Phase 6
====================================================== */

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: clamp(520px, 36vw, 680px);
  background: var(--bg);
  border-bottom: 1px solid rgba(234, 218, 218, 0.82);
}

.home-hero::before {
  display: none;
}

.home-hero-banner {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  isolation: isolate;
}

.home-hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      var(--bg) 0%,
      rgba(255, 248, 247, 0.98) 26%,
      rgba(255, 248, 247, 0.72) 42%,
      rgba(255, 248, 247, 0) 56%
    );
  pointer-events: none;
}

.home-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  object-fit: cover;
  object-position: center center;
  background: var(--bg);
  box-shadow: none;
}

.home-hero-banner picture {
  display: contents;
}

.home-hero-content-shell {
  position: relative;
  z-index: 2;
  display: grid;
  align-items: center;
  min-height: inherit;
  padding-block: 72px;
}

.home-hero-content {
  position: relative;
  display: grid;
  align-content: center;
  max-width: 590px;
  padding: 0;
}

.home-hero-content .eyebrow,
.home-hero-content h1,
.home-hero-text,
.home-hero-actions {
  opacity: 1;
  transform: none;
  animation: none;
}

.home-hero-content .eyebrow {
  color: #d85c73;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.home-hero-content h1 {
  max-width: 12ch;
  margin: 14px 0 20px;
  color: #342527;
  font-size: 4.35rem;
  line-height: 0.96;
  letter-spacing: 0;
}

.home-hero-text {
  max-width: 47ch;
  color: rgba(72, 58, 58, 0.82);
  font-size: 1rem;
  line-height: 1.78;
}

.home-hero-actions {
  gap: 14px;
  margin-top: 28px;
}

.home-hero-note[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .home-hero {
    min-height: 500px;
  }

  .home-hero-content h1 {
    max-width: 12ch;
    font-size: 3.2rem;
  }

  .home-hero-text {
    font-size: 0.96rem;
  }
}

@media (max-width: 900px) {
  .home-hero-background {
    object-position: 58% center;
  }

  .home-hero-banner::before {
    background:
      linear-gradient(
        90deg,
        var(--bg) 0%,
        rgba(255, 248, 247, 0.98) 34%,
        rgba(255, 248, 247, 0.62) 54%,
        rgba(255, 248, 247, 0) 72%
      );
  }
}

@media (max-width: 760px) {
  .home-hero {
    min-height: clamp(500px, 118vw, 620px);
    padding: 0;
  }

  .home-hero-banner {
    display: block;
    min-height: inherit;
    background: var(--bg);
  }

  .home-hero-banner::before {
    display: block;
    background:
      linear-gradient(
        180deg,
        rgba(255, 248, 247, 0.9) 0%,
        rgba(255, 248, 247, 0.8) 44%,
        rgba(255, 248, 247, 0.16) 100%
      );
  }

  .home-hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
  }

  .home-hero-content-shell {
    min-height: inherit;
    padding: 38px 18px 24px;
    background: transparent;
  }

  .home-hero-content {
    max-width: 620px;
  }

  .home-hero-content h1 {
    max-width: 12ch;
    font-size: 2.55rem;
    line-height: 1;
  }

  .home-hero-actions {
    margin-top: 22px;
  }
}

@media (max-width: 430px) {
  .home-hero-content-shell {
    padding-inline: 14px;
  }

  .home-hero-content h1 {
    font-size: 2.28rem;
  }

  .home-hero-text {
    font-size: 0.92rem;
    line-height: 1.68;
  }
}

/* ======================================================
   FINITIONS GRAPHIQUES - homepage
   ====================================================== */

/* Hero h1 : line-height 0.96 -> 1.02 (ascendantes degagees) */
.home-hero-content h1 {
  line-height: 1.02;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

/* Section intros : titres equilibres */
.home-section-intro h2 {
  line-height: 1.06;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

/* Quicklinks et hero-note : rayon harmonise (20/24 -> 16) */
.hero-quicklink {
  border-radius: 16px;
  border-color: rgba(234, 218, 218, 0.7);
}

.home-hero-note {
  border-radius: 14px;
  border-color: rgba(234, 218, 218, 0.7);
}

/* Brand story / instagram box : 30 -> 22 */
.brand-story-box,
.instagram-box {
  border-radius: 22px;
  border-color: rgba(234, 218, 218, 0.7);
}

/* Citation brand-story : touche italique editoriale Newsreader */
.brand-story-box p:first-of-type::first-line,
.brand-story-box .home-story-quote,
.brand-story-box em {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 500;
}

/* Featured cards : 8 -> 16 (deja fait dans style.css mais on renforce localement) */
.featured-card {
  border-radius: 16px;
  border-color: rgba(234, 218, 218, 0.7);
}

.featured-card-content h3 {
  letter-spacing: -0.005em;
}

/* Home category : harmonisation rayon */
.home-category-card {
  border-radius: 16px;
  border-color: rgba(234, 218, 218, 0.7);
}

.home-category-overlay h3 {
  letter-spacing: -0.005em;
}

/* Carousels nav : ombre raffinee */
.home-categories-nav,
.featured-carousel-nav {
  box-shadow:
    0 1px 2px rgba(43, 31, 31, 0.05),
    0 8px 18px -8px rgba(43, 31, 31, 0.18);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.home-categories-nav:hover:not(:disabled),
.featured-carousel-nav:hover:not(:disabled) {
  box-shadow:
    0 2px 4px rgba(43, 31, 31, 0.06),
    0 12px 24px -8px rgba(43, 31, 31, 0.22);
}

/* Featured price stack : tabular-nums */
.featured-price-stack,
.featured-price,
.featured-price-old {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "kern" 1;
}

/* Hero teaser kicker : touche italique discrete */
.home-hero-visual-kicker {
  letter-spacing: 0.18em;
}

/* Story content : titre aere */
.home-story-content h2 {
  line-height: 1.04;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

@media (max-width: 768px) {
  .hero-quicklink {
    border-radius: 14px;
  }

  .brand-story-box,
  .instagram-box {
    border-radius: 18px;
  }
}

/* Nouveautes : dimensions catalogue, affichage homepage */
.featured-card-add {
  background: var(--accent);
  border-color: rgba(212, 106, 106, 0.24);
  color: #ffffff;
  box-shadow: 0 12px 22px rgba(212, 106, 106, 0.18);
}

.featured-card-add:hover:not(:disabled),
.featured-card-add:focus-visible {
  background: #b95a5a;
  border-color: rgba(185, 90, 90, 0.32);
  box-shadow: 0 14px 26px rgba(185, 90, 90, 0.22);
}

.featured-card-add.is-added {
  background: #a95162;
}

.home-reviews-section {
  background: #fffafb;
}

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

.home-review-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(184, 120, 134, 0.22);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 42px -34px rgba(75, 45, 50, 0.35);
}

.home-review-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
}

.home-review-stars {
  color: #b87886;
  letter-spacing: 0.08em;
}

.home-review-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.home-review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.home-review-card footer {
  display: grid;
  gap: 3px;
  color: var(--text);
}

.home-review-card footer span {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .home-reviews-grid {
    grid-template-columns: 1fr;
  }
}
