/* ===== VARIABLES ===== */
:root {
  /* L'Origine-style ivory hero centre; page sections slightly brighter */
  --bg-hero:     #fdfaf4;
  --bg:          #fefdfa;
  --bg2:         #f2e5dd;
  --bg-dark:     #5c3825;
  --bg-footer:   #3d2112;
  --text:        #311b10;
  --text2:       #664431;
  --text3:       #8a6a57;
  --accent:      #a9683f;
  --accent-gold: #e6bd77;
  /* --cta intentionally matches --bg-dark: unified dusty-brown identity */
  --cta:         #5c3825;
  --cta-text:    #fcf3ee;
  --radius:      8px;
  --radius-photo: 6px;
  --max:         1100px;
  --font-sans:   'Outfit', system-ui, sans-serif;
  /* 45+ readability: 18px body desktop, 17px mobile (WCAG + aging-audience guidance) */
  --text-base:   1.125rem;
  --text-base-sm: 1.0625rem;
  --leading-body: 1.65;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  background: var(--bg);
  color: var(--text);
  line-height: var(--leading-body);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Content photos — shared corner radius (not logos / full-bleed hero) */
.apropos__media,
.produit-tile__img-wrap,
.campagne__frame,
.acces__map,
.footer__bg-cell {
  border-radius: var(--radius-photo);
  overflow: hidden;
}

.apropos__media img,
.produit-tile__img,
.campagne__img,
.acces__map-img,
.footer__bg-cell img,
.lb-img {
  border-radius: var(--radius-photo);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  line-height: 1.2;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.25rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; font-style: normal; font-weight: 600; }

/* ===== LAYOUT HELPERS ===== */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark {
  position: relative;
  isolation: isolate;
  color: var(--cta-text);
  background-color: var(--bg-dark);
  background-image: url('../images/granulated_brown.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
}
.section--dark > * {
  position: relative;
  z-index: 1;
}
.section--alt  { background: var(--bg2); }

/* ===== DECORATIVE RULE ===== */
.rule {
  width: 28px; height: 2px;
  background: var(--accent);
  margin: 1rem 0;
}
.rule--center { margin: 1rem auto; }
.rule--gold { background: var(--accent-gold); }

/* ===== SECTION HEADING ===== */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-eyebrow--gold { color: var(--accent-gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.85; transform: translateY(-1px); }
.btn--primary   { background: var(--cta); color: var(--cta-text); border-color: var(--cta); }
.btn--outline   { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn--outline-light { background: transparent; color: var(--cta-text); border-color: rgba(252, 243, 238, 0.4); }
.btn--gold {
  background: var(--accent-gold);
  color: var(--text);
  border-color: var(--accent-gold);
  font-weight: 600;
}
.btn--gold:hover {
  opacity: 1;
  background: #fed081;
  border-color: #fed081;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap; border: 0;
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--bg-hero);
  border-bottom: 1px solid rgba(49, 27, 16, 0.08);
  transition: box-shadow 0.2s, backdrop-filter 0.2s;
}
.nav.scrolled {
  box-shadow: 0 2px 16px rgba(49, 27, 16, 0.12);
  backdrop-filter: blur(8px);
  background: rgba(254, 253, 250, 0.92);
}
.nav .container.nav__inner {
  max-width: 100%;
  padding-inline: clamp(1.25rem, 3vw, 3rem);
}
.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: clamp(1.25rem, 3.5vw, 2.75rem);
  height: 76px;
}
.nav__inner > .nav__socials {
  display: flex;
  justify-self: start;
}
.nav__socials-menu {
  display: none;
}
.nav__socials--menu {
  display: none;
}
.nav__socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  color: var(--text);
  opacity: 0.72;
  transition: opacity 0.15s, color 0.15s;
}
.nav__social-link:hover {
  opacity: 1;
  color: var(--accent);
}
.nav__social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  justify-self: center;
  grid-column: 2;
  text-align: left;
  transition: opacity 0.15s;
}
.nav__brand:hover {
  opacity: 0.85;
}
.nav__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.15;
  color: var(--text);
  white-space: nowrap;
}
.nav__inner > nav {
  justify-self: end;
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav__logo {
  width: clamp(42px, 3.2vw, 52px);
  height: auto;
  max-height: 56px;
  flex-shrink: 0;
  object-fit: contain;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.25vw, 1.9rem);
  list-style: none;
}
.nav__links a {
  font-family: var(--font-sans); font-size: 1rem;
  color: var(--text3); transition: color 0.15s;
}
.nav__links a:hover { color: var(--text); }
.nav__cta-item { margin-left: 0.25rem; }
.nav__links .nav__cta.btn--outline {
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-width: 1px;
  color: var(--text2);
  border-color: rgba(49, 27, 16, 0.22);
  background: transparent;
}
.nav__links .nav__cta.btn--outline:hover {
  color: var(--text);
  border-color: var(--accent);
  background: transparent;
  opacity: 1;
  transform: none;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 1rem;
}
@media (min-width: 981px) {
  .nav__burger {
    display: none !important;
  }
  .nav__links {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ===== HERO (full-bleed background + overlay) ===== */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  padding-top: 76px;
  overflow: hidden;
  border-bottom: none;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

@media (max-width: 640px) {
  .hero__bg img {
    /* x y — smaller y moves image up */
    object-position: 60% 35%;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(17, 2, 0, 0.88) 0%,
    rgba(26, 7, 1, 0.72) 45%,
    rgba(33, 18, 10, 0.5) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  padding-block: clamp(3rem, 8vw, 5rem);
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  max-width: 36rem;
}

.hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: #fcf3ee;
  margin: 0;
  letter-spacing: 0.01em;
  text-transform: none;
  text-shadow: 0 2px 28px rgba(4, 1, 0, 0.35);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 1.6vw, 1.2rem);
  font-weight: 400;
  font-style: normal;
  line-height: var(--leading-body);
  color: rgba(252, 243, 238, 0.9);
  margin: 0;
  max-width: 40ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.1rem;
  margin-top: 0.35rem;
}

.hero__actions .btn {
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.85rem 1.65rem;
}

.hero__actions .hero__btn--primary {
  background: #eb9e41;
  border-color: #eb9e41;
  color: #1f0b03;
  box-shadow: 0 4px 22px rgba(4, 1, 0, 0.35);
}

.hero__actions .hero__btn--primary:hover {
  background: #ffb94c;
  border-color: #ffb94c;
  color: #1f0b03;
  opacity: 1;
  transform: translateY(-1px);
}

.hero__actions .hero__btn--secondary {
  background: rgba(252, 243, 238, 0.14);
  border: 2px solid rgba(252, 243, 238, 0.75);
  color: #fcf3ee;
}

.hero__actions .hero__btn--secondary:hover {
  background: rgba(252, 243, 238, 0.28);
  border-color: #fcf3ee;
  color: #fcf3ee;
  opacity: 1;
  transform: translateY(-1px);
}

.hero__address {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(252, 243, 238, 0.78);
  margin: 0;
}

.hero__address a {
  color: inherit;
  transition: color 0.15s;
}

.hero__address a:hover {
  color: var(--accent-gold);
}

/* ===== BANDEAU PREUVES ===== */
.bandeau {
  --bandeau-fs: clamp(0.975rem, 1.05vw, 1.0625rem);
  font-size: var(--bandeau-fs);
  padding-block: calc(var(--bandeau-fs) * 3.25);
}
.bandeau__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--bandeau-fs) * 1.35) calc(var(--bandeau-fs) * 1.85);
  list-style: none;
  text-align: center;
}
.bandeau__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55em;
  padding: 1em calc(var(--bandeau-fs) * 0.9);
  border-right: 1px solid rgba(252, 243, 238, 0.12);
}
.bandeau__item:last-child { border-right: none; }
.bandeau__stat {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.05em, 3.25vw, 2.5em);
  font-style: italic;
  font-weight: 400;
  line-height: 1.08;
  color: var(--accent-gold);
}
.bandeau__desc {
  font-family: var(--font-sans);
  font-size: 1em;
  color: rgba(252, 243, 238, 0.9);
  line-height: 1.5;
  text-align: center;
}

/* ===== SECTION HEADER (reusable) ===== */
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-sub {
  color: var(--text3); font-family: var(--font-sans);
  font-size: 1.125rem; max-width: 46ch; line-height: var(--leading-body);
}
.section-header--center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ===== À PROPOS (L'Origine-style) ===== */
.apropos {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.apropos__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
}

.apropos__media {
  display: flex;
  min-height: 0;
}

.apropos__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 52vh, 640px);
  object-fit: contain;
  object-position: center center;
  background: rgba(49, 27, 16, 0.06);
}

.apropos__eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.apropos__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  flex-shrink: 0;
}

.apropos__eyebrow-line {
  flex: 1;
  height: 1px;
  background: var(--accent-gold);
  max-width: 12rem;
}

.apropos__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 1.75rem;
  max-width: 20ch;
}

.apropos__content {
  align-self: center;
}

.apropos__body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.apropos__body p {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: var(--leading-body);
  color: var(--text2);
  margin: 0;
}

/* ===== CAMPAGNE SAISONNIÈRE / NOUVEAUTÉ ===== */
.campagne {
  padding: clamp(4.5rem, 9vw, 7rem) 0;
}

.campagne__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(2.5rem, 5.5vw, 5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.campagne__visual {
  position: relative;
}

.campagne__frame {
  position: relative;
  box-shadow:
    0 2px 0 rgba(230, 189, 119, 0.35),
    0 12px 40px rgba(4, 1, 0, 0.45),
    0 32px 72px rgba(2, 0, 0, 0.55);
}

.campagne__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(252, 243, 238, 0.12);
  pointer-events: none;
  z-index: 2;
}

.campagne__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(252, 243, 238, 0.06) 0%,
    transparent 42%,
    rgba(4, 1, 0, 0.18) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.campagne__img {
  width: 100%;
  height: clamp(420px, 52vw, 680px);
  object-fit: contain;
  object-position: center center;
  display: block;
  background: rgba(252, 243, 238, 0.03);
}

.campagne__badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-dark);
  background: var(--accent-gold);
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.campagne__eyebrow {
  font-size: 0.9375rem;
  margin-bottom: 0.65rem;
}

.campagne__title {
  color: var(--cta-text);
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.15;
  margin: 0;
}

.campagne__rule {
  width: 40px;
  margin: 1.35rem 0 1.5rem;
}

.campagne__sub {
  color: rgba(252, 243, 238, 0.92);
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 1.5vw, 1.2rem);
  line-height: var(--leading-body);
  margin-bottom: 2.25rem;
  max-width: 44ch;
}

.campagne__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn--lg {
  font-size: 1.0625rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.15rem;
}

.campagne__cta {
  border-width: 2px;
  box-shadow: 0 4px 20px rgba(4, 1, 0, 0.35);
}

/* ===== SUR MESURE ===== */
.sur-mesure__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.sur-mesure__sub {
  color: var(--text2); font-family: var(--font-sans);
  font-size: 1.125rem; line-height: var(--leading-body); margin-bottom: 1.5rem; max-width: 38ch;
}
.sur-mesure__usages {
  list-style: none; margin-bottom: 2rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.sur-mesure__usages li {
  font-family: var(--font-sans); font-size: 1.0625rem;
  color: var(--text2); display: flex; align-items: center; gap: 0.6rem;
}
.sur-mesure__usages span { color: var(--accent); }
.sur-mesure__form-wrap {
  background: var(--bg2); border-radius: var(--radius); padding: 2rem;
}
.form-group {
  display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem;
}
.form-group label {
  font-family: var(--font-sans); font-size: 0.9375rem;
  font-weight: 600; color: var(--text); letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans); font-size: 1rem;
  color: var(--text); background: var(--bg);
  border: 1px solid rgba(49, 27, 16, 0.2); border-radius: var(--radius);
  padding: 0.6rem 0.9rem; transition: border-color 0.15s;
  outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(169, 104, 63, 0.12);
}
.form-hint {
  font-weight: 400;
  color: var(--text2);
}
.form-status {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}
.form-status--success { color: #135d1d; }
.form-status--error { color: #6e2826; }

/* ===== FORM — fontaine chocolat ===== */
.spec-tag {
  background: rgba(49, 27, 16, 0.08); border: 1px solid rgba(49, 27, 16, 0.15);
  border-radius: var(--radius); padding: 0.35rem 0.8rem;
  font-family: var(--font-sans); font-size: 0.9375rem; color: var(--text2);
}

.form-fontaine-details {
  margin: -0.25rem 0 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--bg2);
  border: 1px solid rgba(49, 27, 16, 0.08);
  border-radius: var(--radius);
}

.form-fontaine-details__intro {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text2);
  margin: 0 0 0.85rem;
}

.form-fontaine-details__specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
}

/* ===== AVIS ===== */
.avis__stars {
  color: var(--accent-gold); font-size: 1.1rem;
  letter-spacing: 0.15em; margin: 0.75rem 0 2.5rem;
}
.avis__list {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; list-style: none;
}
.avis__card {
  background: var(--bg2); border-radius: var(--radius); padding: 1.75rem;
  border-left: 3px solid var(--accent);
}
.avis__card blockquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic; font-size: 1.125rem;
  color: var(--text2); line-height: var(--leading-body);
  margin-bottom: 1rem;
}
.avis__card cite {
  font-family: var(--font-sans); font-size: 0.9375rem;
  font-style: normal; font-weight: 600; color: var(--accent);
}

/* ===== ACCÈS & CONTACT ===== */
.acces__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: center;
}
.acces__details {
  margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.75rem;
}
.acces__row dd {
  font-family: var(--font-sans); font-size: 1.125rem;
  color: var(--text2); line-height: var(--leading-body);
}
.acces__row a { color: var(--accent); }
.acces__row a:hover { text-decoration: underline; }
.acces__actions { display: flex; gap: 1rem; }
.acces__map {
  box-shadow: 0 4px 24px rgba(49, 27, 16, 0.1);
  background: var(--bg2);
}
.acces__map-link {
  display: block;
  line-height: 0;
}
.acces__map-img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center 42%;
  transition: opacity 0.2s;
}
.acces__map-link:hover .acces__map-img { opacity: 0.92; }
.acces__map-open {
  display: block;
  padding: 0.65rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  text-align: center;
  color: var(--accent);
  background: var(--bg);
  border-top: 1px solid rgba(49, 27, 16, 0.08);
  transition: color 0.15s, background 0.15s;
}
.acces__map-open:hover {
  color: var(--text);
  background: var(--bg2);
}

/* ===== FAQ ===== */
.faq {
  padding: clamp(3.5rem, 6vw, 4.5rem) 0;
}

.faq__header {
  margin-bottom: 2rem;
}

.faq__list {
  max-width: 42rem;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid rgba(49, 27, 16, 0.1);
}

.faq__item:first-child {
  border-top: 1px solid rgba(49, 27, 16, 0.1);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.4vw, 1.0625rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
  padding: 1rem 2rem 1rem 0;
  transition: color 0.15s;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  margin-top: -0.2rem;
  transition: transform 0.2s ease-out;
}

.faq__item[open] .faq__question::after {
  transform: rotate(-135deg);
  margin-top: 0.2rem;
}

.faq__question:hover {
  color: var(--accent);
}

.faq__answer {
  padding: 0 0 1.25rem;
}

.faq__answer p {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: var(--leading-body);
  color: var(--text2);
  margin: 0;
  max-width: 65ch;
}

@media (prefers-reduced-motion: reduce) {
  .faq__question::after {
    transition: none;
  }
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--cta-text);
  padding: 2.75rem 0 0;
}
.footer--compact {
  background: var(--bg-footer);
  padding: 1.5rem 0;
}
.footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.footer__bg-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(2, 1fr);
  width: 100%;
  height: 100%;
  min-height: 100%;
}
.footer__bg-cell {
  overflow: hidden;
  min-height: 0;
}
.footer__bg-cell img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.footer__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(41, 20, 9, 0.55),
    rgba(61, 33, 18, 0.92)
  );
  pointer-events: none;
}
.footer__inner {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(28, 13, 6, 0.9);
}
.footer__grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem 4.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(252, 243, 238, 0.22);
}
.footer__brand-logo {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.85rem;
}
.footer__logo {
  width: 56px; height: 56px; object-fit: contain;
  filter: invert(1) brightness(2);
}
.footer__name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem; font-style: italic; font-weight: 600;
  color: var(--cta-text);
}
.footer__address {
  font-family: var(--font-sans); font-size: 0.85rem; font-weight: 500;
  color: rgba(252, 243, 238, 0.92); line-height: 1.75; font-style: normal;
  margin-bottom: 0.9rem;
}
.footer__address a { color: rgba(252, 243, 238, 0.92); transition: color 0.15s; }
.footer__address a:hover { color: #fff; }
.footer__socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  color: var(--cta-text);
  opacity: 0.88;
  transition: opacity 0.15s, color 0.15s;
}
.footer__social-link:hover {
  opacity: 1;
  color: var(--accent-gold);
}
.footer__social-link svg {
  width: 1.2rem;
  height: 1.2rem;
  display: block;
}
.footer__nav-title {
  font-family: var(--font-sans); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent-gold); margin-bottom: 1rem;
}
.footer__nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a {
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 500;
  color: rgba(252, 243, 238, 0.92); transition: color 0.15s;
}
.footer__nav a:hover { color: #fff; }
.footer__newsletter-sub {
  font-family: var(--font-sans); font-size: 0.82rem;
  color: rgba(252, 243, 238, 0.6); margin-bottom: 1rem;
}
.footer__form { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__input {
  font-family: var(--font-sans); font-size: 0.88rem;
  background: rgba(252, 243, 238, 0.07); border: 1px solid rgba(252, 243, 238, 0.15);
  color: var(--cta-text); border-radius: var(--radius); padding: 0.6rem 0.9rem;
  outline: none; transition: border-color 0.15s;
}
.footer__input::placeholder { color: rgba(252, 243, 238, 0.35); }
.footer__input:focus { border-color: var(--accent-gold); }
.footer__submit { width: 100%; }
.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  padding: 0.9rem 0 1.1rem;
  text-align: center;
}
.footer__legal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(252, 243, 238, 0.78);
}
.footer__legal-dot { color: rgba(252, 243, 238, 0.45); }
.footer__credit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(252, 243, 238, 0.72);
  transition: color 0.15s;
}
.footer__credit-link:hover {
  color: #fff;
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
}
.footer__legal-link,
.footer__legal-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(252, 243, 238, 0.78);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.15em;
  transition: color 0.15s;
}
.footer__legal-link:hover,
.footer__legal-btn:hover {
  color: #fff;
}

/* ===== COOKIE BANNER ===== */
.cookie-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(49, 27, 16, 0.35);
  backdrop-filter: blur(2px);
}
body.cookie-banner-open {
  overflow: hidden;
}
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  padding: 1.25rem 0 1.5rem;
  background: var(--bg-hero);
  border-top: 1px solid rgba(49, 27, 16, 0.1);
  box-shadow: 0 -8px 32px rgba(49, 27, 16, 0.12);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner--visible {
  transform: translateY(0);
}
.cookie-banner__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem 2rem;
}
.cookie-banner__content {
  flex: 1;
  min-width: 0;
}
.cookie-banner__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.cookie-banner__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}
.cookie-banner__text {
  font-size: var(--text-base-sm);
  color: var(--text2);
  max-width: 42rem;
  line-height: var(--leading-body);
}
.cookie-banner__link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.cookie-banner__link:hover {
  color: var(--text);
}
.cookie-banner__categories {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
}
.cookie-banner__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(49, 27, 16, 0.1);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.55);
}
.cookie-banner__category-info {
  min-width: 0;
}
.cookie-banner__category-title {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.cookie-banner__category-desc {
  font-size: 0.8125rem;
  color: var(--text2);
  line-height: 1.45;
}
.cookie-banner__always-on {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.cookie-toggle {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle__input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.cookie-toggle__track {
  display: block;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(49, 27, 16, 0.18);
  transition: background 0.2s ease;
  position: relative;
}
.cookie-toggle__thumb {
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(49, 27, 16, 0.2);
  transition: transform 0.2s ease;
}
.cookie-toggle__input:checked + .cookie-toggle__track {
  background: var(--accent);
}
.cookie-toggle__input:checked + .cookie-toggle__track .cookie-toggle__thumb {
  transform: translateX(1.25rem);
}
.cookie-toggle__input:focus-visible + .cookie-toggle__track {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.25rem;
}
.cookie-banner__actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cookie-banner__btn {
  min-width: 7.5rem;
  text-align: center;
}

/* ===== LEGAL PAGE ===== */
.legal-page {
  padding: 7rem 0 4rem;
  background: var(--bg);
}
.legal-page__inner {
  max-width: 720px;
}
.legal-page__title {
  margin-bottom: 0.5rem;
}
.legal-page__body {
  margin-top: 2rem;
}
.legal-page__section {
  margin-bottom: 2rem;
}
.legal-page__section h2 {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.65rem;
}
.legal-page__section p {
  color: var(--text2);
  margin-bottom: 0.75rem;
}
.legal-page__section a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}
.legal-page__section a:hover {
  color: var(--text);
}
.legal-page__table-wrap {
  overflow-x: auto;
  margin: 1rem 0 0.5rem;
}
.legal-page__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.legal-page__table th,
.legal-page__table td {
  padding: 0.65rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid rgba(49, 27, 16, 0.12);
  vertical-align: top;
}
.legal-page__table th {
  font-weight: 600;
  color: var(--text);
  background: rgba(49, 27, 16, 0.04);
}
.legal-page__table td {
  color: var(--text2);
}
.legal-page__back {
  margin-top: 2.5rem;
}

@media (max-width: 720px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner__actions-row {
    width: 100%;
  }
  .cookie-banner__btn {
    flex: 1;
    min-width: 0;
  }
  .cookie-banner__category {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== MOBILE NAV OPEN STATE ===== */
.nav__burger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open span:nth-child(2) { opacity: 0; }
.nav__burger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== RESPONSIVE (< 980px) ===== */
@media (max-width: 980px) {

  /* Nav */
  .nav__inner {
    grid-template-columns: 1fr auto;
    column-gap: 1rem;
    height: 68px;
  }
  .nav__inner > .nav__socials {
    display: none;
  }
  .nav__brand {
    grid-column: 1;
    justify-self: start;
    gap: 0.65rem;
    min-width: 0;
  }
  .nav__title {
    font-size: 0.95rem;
    white-space: normal;
    max-width: 9.5rem;
    line-height: 1.2;
  }
  .nav__inner > nav {
    grid-column: 2;
  }
  .nav__socials-menu {
    display: list-item;
    list-style: none;
    width: 100%;
  }
  .nav__socials--menu {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(49, 27, 16, 0.1);
    list-style: none;
  }
  .nav__logo {
    width: 40px;
    max-height: 44px;
  }
  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(49, 27, 16, 0.1);
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: 0 8px 24px rgba(49, 27, 16, 0.1);
  }
  .nav__links--open { display: flex; }
  .nav__burger { display: flex; }
  .nav__cta-item { margin-left: 0; }

  body {
    font-size: var(--text-base-sm);
  }

  /* Hero */
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 68px;
  }

  .hero__content {
    min-height: calc(100vh - 68px);
    min-height: calc(100svh - 68px);
    padding-block: 2.5rem;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(19, 5, 1, 0.78) 0%,
      rgba(28, 13, 6, 0.72) 55%,
      rgba(38, 22, 14, 0.65) 100%
    );
  }

  .hero__title {
    font-size: clamp(1.85rem, 7vw, 2.65rem);
  }

  /* Bandeau */
  .bandeau {
    --bandeau-fs: clamp(1.05rem, 3.2vw, 1.1rem);
    padding-block: calc(var(--bandeau-fs) * 3);
  }
  .bandeau__list { grid-template-columns: repeat(3, 1fr); }
  .bandeau__stat { font-size: clamp(1.95em, 6.5vw, 2.35em); }
  .bandeau__desc {
    font-size: 0.95em;
    line-height: 1.55;
  }
  .bandeau__item { padding: 0.85em 0.5em; }

  /* À propos */
  .apropos__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .apropos__media {
    display: flex;
    order: 2;
  }

  .apropos__content {
    order: 1;
  }

  .apropos__media img {
    min-height: clamp(280px, 58vw, 400px);
  }

  .apropos__title {
    max-width: none;
  }

  .apropos__eyebrow-line {
    max-width: none;
  }

  /* Produits */

  /* Campagne */
  .campagne__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .campagne__img {
    height: clamp(320px, 65vw, 480px);
  }

  .campagne__title {
    font-size: clamp(1.75rem, 7vw, 2.35rem);
  }

  .campagne__sub {
    max-width: none;
  }

  /* Sur mesure */
  .sur-mesure__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Avis */
  .avis__list { grid-template-columns: 1fr; }

  /* Accès */
  .acces__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .acces__map-img { height: 220px; }

  /* Footer */
  .footer { padding-top: 2.25rem; }
  .footer__bg-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .footer__grid {
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    padding-bottom: 1.5rem;
    text-align: center;
  }
  .footer__brand-logo { justify-content: center; }
  .footer__socials { justify-content: center; }
  .footer__legal { padding-bottom: 0.9rem; }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .produits__img { transform: none !important; }
  .campagne__frame,
  .campagne__img { transform: none !important; }
}

/* ===== POLISH ===== */

/* Smooth nav anchor offset (accounts for fixed nav height) */
[id] { scroll-margin-top: 88px; }

/* Section spacing consistency */
.hero + .apropos {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  margin-top: 0;
}

/* Skip link reveal on focus */
.sr-only:focus {
  position: static;
  width: auto; height: auto;
  padding: 0.5rem 1rem;
  margin: 0;
  overflow: visible;
  clip-path: none;
  white-space: normal;
}

/* Webkit backdrop-filter for Safari */
.nav.scrolled {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

/* Campagne visual order swap on mobile (text first) */
@media (max-width: 980px) {
  .campagne__visual { order: 2; }
  .campagne__text  { order: 1; }
}

/* ===== PRODUITS — FULL-WIDTH CATALOG (L'Origine-style) ===== */
.produits {
  padding-bottom: 0;
  overflow: hidden;
}

.produits__stage {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
}

.produits__marquee {
  position: absolute;
  left: 0;
  right: 0;
  top: -3rem;
  transform: translateY(-50%);
  width: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.produits__marquee-track {
  display: flex;
  width: max-content;
  animation: produits-marquee 42s linear infinite;
}

.produits__marquee-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.produits__marquee-text {
  flex-shrink: 0;
  padding-inline: 2.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(3rem, 14vw, 9rem);
  font-weight: 600;
  line-height: 1;
  color: rgba(169, 104, 63, 0.1);
  white-space: nowrap;
}

@keyframes produits-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.produit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem clamp(1rem, 2.2vw, 2.25rem);
  align-items: start;
  width: 100%;
  padding: 0.5rem clamp(1.25rem, 3vw, 3rem) 3.5rem;
}

.produit-tile--wide {
  grid-column: auto;
}

/* Staggered vertical flow (L'Origine-style) */
.produit-tile:nth-child(1) { margin-top: 3.25rem; }
.produit-tile:nth-child(2) { margin-top: 0; }
.produit-tile:nth-child(3) { margin-top: 2.5rem; }
.produit-tile:nth-child(4) { margin-top: 0.75rem; }
.produit-tile:nth-child(5) { margin-top: 3rem; }

.produit-tile {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease;
}

.produit-tile:hover {
  transform: translateY(-4px);
}

.produit-tile__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: none;
  background: rgba(49, 27, 16, 0.06);
  box-shadow: 0 8px 28px rgba(49, 27, 16, 0.1);
}

.produit-tile:nth-child(2) .produit-tile__img-wrap,
.produit-tile:nth-child(4) .produit-tile__img-wrap {
  aspect-ratio: 1 / 1;
}

.produit-tile:nth-child(3) .produit-tile__img-wrap {
  outline: 3px double rgba(230, 189, 119, 0.35);
  outline-offset: 5px;
}

.produit-tile__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.45s ease-out;
  background: rgba(252, 243, 238, 0.08);
}

.produit-tile:hover .produit-tile__img {
  transform: scale(1.05);
}

.produit-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.produit-tile__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(49, 27, 16, 0.38);
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.produit-tile:hover .produit-tile__overlay::before {
  opacity: 1;
}

.produit-tile__overlay-label {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fcf3ee;
  border: 1px solid rgba(252, 243, 238, 0.5);
  border-radius: var(--radius);
  padding: 0.5rem 1.1rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
}

.produit-tile:hover .produit-tile__overlay-label {
  opacity: 1;
  transform: translateY(0);
}

/* Touch devices: show a clear "tap to open" cue */
@media (hover: none) and (pointer: coarse) {
  .produit-tile__overlay::before {
    opacity: 0.42;
  }

  .produit-tile__overlay-label {
    opacity: 1;
    transform: translateY(0);
    backdrop-filter: blur(6px);
    background: rgba(17, 2, 0, 0.18);
  }

  .produit-tile__overlay-label::after {
    content: ' →';
  }
}

@media (hover: hover) and (pointer: fine) {
  .produit-tile:hover .produit-tile__overlay::before {
    opacity: 0.55;
  }

  .produit-tile:hover .produit-tile__overlay-label {
    background: rgba(17, 2, 0, 0.22);
    border-color: rgba(252, 243, 238, 0.75);
  }
}

.produit-tile__info {
  padding: 1rem 0.25rem 0;
  background: transparent;
}

.produit-tile__title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.produit-tile__zoom {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: rgba(230, 189, 119, 0.22);
  color: var(--accent);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.produit-tile__zoom-icon {
  display: block;
}

.produit-tile:hover .produit-tile__zoom,
.produit-tile:focus-visible .produit-tile__zoom {
  transform: scale(1.1);
  background: rgba(230, 189, 119, 0.4);
  color: var(--text);
}

.produit-tile__desc {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text2);
  line-height: 1.55;
}

.produits__intro {
  margin-bottom: 0.5rem;
}

.produits__intro .produits__intro-sub {
  margin: 0 auto 3.5rem;
  padding-bottom: 0.25rem;
}

.produits__intro-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1rem;
}

@media (max-width: 1100px) {
  .produit-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem 1.5rem;
  }
  .produit-tile:nth-child(1) { margin-top: 2.5rem; }
  .produit-tile:nth-child(2) { margin-top: 0; }
  .produit-tile:nth-child(3) { margin-top: 1.75rem; }
  .produit-tile:nth-child(4) { margin-top: 0.5rem; }
  .produit-tile:nth-child(5) {
    grid-column: 1 / -1;
    margin-top: 2rem;
  }
  .produit-tile:nth-child(5) .produit-tile__img-wrap {
    aspect-ratio: 21 / 9;
    outline: none;
  }
}

@media (max-width: 720px) {
  .produit-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1.25rem;
    padding-inline: 1.25rem;
  }
  .produit-tile:nth-child(1) { margin-top: 0; }
  .produit-tile:nth-child(2) { margin-top: 2rem; }
  .produit-tile:nth-child(3) { margin-top: 0.5rem; }
  .produit-tile:nth-child(4) { margin-top: 2rem; }
  .produit-tile:nth-child(5) { margin-top: 0; }
  .produit-tile:nth-child(5) .produit-tile__img-wrap {
    aspect-ratio: 16 / 9;
  }
  .produit-tile:nth-child(2) .produit-tile__img-wrap,
  .produit-tile:nth-child(4) .produit-tile__img-wrap {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 480px) {
  .produit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .produit-tile:nth-child(n) {
    margin-top: 0;
  }
  .produit-tile:nth-child(even) {
    margin-top: 0;
  }
  .produit-tile__img-wrap,
  .produit-tile:nth-child(2) .produit-tile__img-wrap,
  .produit-tile:nth-child(4) .produit-tile__img-wrap,
  .produit-tile:nth-child(5) .produit-tile__img-wrap {
    aspect-ratio: 16 / 10;
    outline: none;
  }
}

/* ===== LIGHTBOX ===== */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

#lightbox.lb-active {
  display: flex;
}

.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 2, 1, 0.93);
}

.lb-img-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}

.lb-img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  user-select: none;
}

.lb-close,
.lb-prev,
.lb-next {
  position: fixed;
  background: rgba(252, 243, 238, 0.12);
  border: 1px solid rgba(252, 243, 238, 0.2);
  color: #fcf3ee;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease-out;
  font-family: var(--font-sans);
  line-height: 1;
}

.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(252, 243, 238, 0.25);
}

.lb-close {
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.1rem;
}

.lb-prev {
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}

.lb-next {
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
}

.lb-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(252, 243, 238, 0.6);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  z-index: 2;
  user-select: none;
}

@media (max-width: 640px) {
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
}
