:root {
  --ink: #171214;
  --muted: #665c60;
  --paper: #fffaf8;
  --rose: #f7e5e9;
  --rose-2: #eed1d8;
  --pink: #d9006c;
  --pink-dark: #b00058;
  --beige: #d8c5b0;
  --line: rgba(23, 18, 20, .15);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
body::selection { color: #fff; background: var(--pink); }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #ff4da5; outline-offset: 4px; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(72px, 9vw, 124px); }
.skip-link { position: fixed; z-index: 100; top: 12px; left: 12px; transform: translateY(-150%); padding: 10px 16px; background: #fff; color: #000; }
.skip-link:focus { transform: none; }

.site-header { position: sticky; z-index: 20; top: 0; background: rgba(255, 250, 248, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); transition: transform .24s ease; }
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner { width: var(--shell); min-height: 76px; margin: auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); font-weight: 700; letter-spacing: -.03em; text-decoration: none; text-transform: uppercase; }
.brand em { color: var(--pink); font-family: var(--serif); font-weight: 400; text-transform: none; }
.brand-mark { display: grid; place-items: center; width: 70px; aspect-ratio: 1; overflow: hidden; border-radius: 50%; color: #fff; background: var(--ink); font-family: var(--serif); font-size: 24px; font-style: italic; padding: 10px; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 42px); }
.site-nav a, .footer-links a { font-size: .78rem; font-weight: 700; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; right: 0; bottom: -6px; left: 0; height: 2px; background: var(--pink); transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); font: 700 .75rem var(--sans); letter-spacing: .1em; text-transform: uppercase; }

.hero { position: relative; min-height: min(760px, calc(100vh - 76px)); display: grid; align-items: center; overflow: hidden; color: #fff; background: #302923; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 45%; }
.hero-shade { background: linear-gradient(90deg, rgba(20, 15, 16, .82) 0%, rgba(20, 15, 16, .47) 55%, rgba(20, 15, 16, .15) 100%); }
.hero-content { position: relative; z-index: 1; padding-block: 100px; }
.eyebrow, .section-kicker { margin: 0 0 16px; color: var(--pink); font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { color: #ffc1df; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 400; line-height: 1.05; letter-spacing: -.035em; }
h1 { max-width: 850px; margin-bottom: 24px; font-size: clamp(2.7rem, 6.5vw, 6.2rem); text-wrap: balance; }
h2 { margin-bottom: 24px; font-size: clamp(2.35rem, 4.4vw, 4.65rem); }
h3 { margin-bottom: 20px; font-size: clamp(1.9rem, 3vw, 3.1rem); }
.hero-context { max-width: 650px; margin: 0 0 4px; font: 400 clamp(1.1rem, 2vw, 1.5rem)/1.35 var(--serif); }
.hero-date { margin: 0 0 28px; font-size: clamp(.9rem, 1.5vw, 1.05rem); letter-spacing: .08em; }
.hero-brands { position: absolute; top: 50%; right: 0; width: clamp(180px, 23vw, 300px); margin: 0; display: grid; grid-template-columns: 1fr; gap: 14px; transform: translateY(-50%); }
.hero-brand-frame { width: 100%; height: 72px; display: grid; place-items: center; overflow: hidden; background: #fff; }
.hero-brands img { width: 100%; height: 72px; padding: 14px 10px; object-fit: contain; opacity: .72; background: #fff; }
.hero-offer { position: absolute; z-index: 2; right: clamp(24px, 7vw, 100px); bottom: 0; width: clamp(150px, 19vw, 240px); aspect-ratio: 1; display: grid; align-content: center; justify-items: center; border-radius: 50% 50% 0 0; background: var(--pink); transform: translateY(12%); }
.hero-offer span { font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.hero-offer strong { font: 400 clamp(2.75rem, 6vw, 4.75rem)/1 var(--serif); }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 18px; padding: 13px 24px; border: 1px solid transparent; font-size: .76rem; font-weight: 800; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { color: var(--ink); background: #fff; }
.button-dark { color: #fff; background: var(--ink); }
.button-pink { color: #fff; background: var(--pink); }
.button-pink:hover { background: var(--pink-dark); }

.offer-strip { color: #fff; background: var(--pink); }
.offer-inner { padding-block: 36px; text-align: center; }
.offer-inner > div { max-width: 860px; margin-inline: auto; }
.offer-strip .section-kicker { color: #fff; }
.offer-strip h2 { margin-bottom: 8px; font: 400 clamp(1.7rem, 2.8vw, 2.8rem)/1.1 var(--serif); }
.offer-strip p { margin: 0 auto; max-width: 760px; }
.offer-strip .offer-code { width: fit-content; margin-top: 22px; padding: 12px 22px; border: 1px solid rgba(255,255,255,.7); }
.offer-code span, .offer-code small { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.offer-code strong { display: block; font: 400 clamp(1.8rem, 4vw, 2.7rem)/1.15 var(--serif); letter-spacing: .06em; }
.offer-code small { letter-spacing: .06em; text-transform: none; }

.section-intro { margin-bottom: 54px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 8vw, 110px); align-items: end; }
.section-intro h2 { margin-bottom: 0; }
.section-intro > p { max-width: 580px; margin: 0; color: var(--muted); }
.section-intro-copy { max-width: 580px; }
.equita-logo { width: min(100%, 280px); height: auto; margin: 0 0 22px; object-fit: contain; object-position: left center; }
.section-intro-copy > p { margin: 0; color: var(--muted); }
.product-card { position: relative; min-height: 475px; padding: clamp(28px, 5vw, 62px); display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 26px; border: 1px solid var(--line); background: #f1e8df; overflow: hidden; }
.product-featured { min-height: 430px; grid-template-columns: 64px minmax(0, 590px) 1fr; background: var(--rose); }
.product-grid { margin-top: 24px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-grid .product-card:last-child { grid-column: 1 / -1; }
.product-number { font: italic 1.05rem var(--serif); color: var(--pink); }
.brand-label { margin: 0 0 14px; color: var(--pink); font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.product-card p, .product-card ul { max-width: 650px; }
.product-card ul { margin: 22px 0 0; padding-left: 20px; }
.product-card li + li { margin-top: 7px; }
.product-word { min-width: 80px; align-self: end; justify-self: end; color: rgba(217, 0, 108, .12); font: italic clamp(4rem, 6vw, 4.75rem)/.7 var(--serif); writing-mode: vertical-rl; }
.rose-card { background: var(--rose-2); }
.dark-card { color: #fff; background: var(--ink); }
.dark-card .brand-label, .dark-card .product-number { color: #ff6db5; }
.variant-selector { margin-top: 28px; display: grid; grid-template-columns: repeat(auto-fit, minmax(104px, 128px)); gap: 14px; }
.variant-option { min-width: 0; padding: 0 0 9px; border: 1px solid rgba(23,18,20,.25); color: inherit; background: rgba(255,255,255,.32); font: inherit; text-align: left; cursor: pointer; }
.dark-card .variant-option { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.06); }
.variant-option:hover, .variant-option.is-active { border-color: var(--pink); box-shadow: 0 0 0 2px var(--pink); }
.variant-option img { width: 100%; aspect-ratio: 3 / 4; object-fit: contain; object-position: center; background: #fff; }
.variant-option span { display: block; padding: 7px 7px 0; font-size: .7rem; line-height: 1.2; }
.local-product-viewer { width: 100%; max-width: 650px; margin-top: 28px; color: var(--ink); background: #fff; border: 1px solid var(--line); }
.local-product-viewer .gallery-media img { width: 100%; height: clamp(330px, 48vw, 560px); object-fit: contain; object-position: center; background: #fff; }
.local-product-viewer .gallery-thumbnails { background: #f4ece8; }
.local-product-viewer .gallery-details { border-top: 1px solid var(--line); }
.local-product-viewer .gallery-details h4 { color: var(--ink); }
.local-product-viewer .gallery-thumbnail { min-height: 88px; }
.local-product-viewer .gallery-thumbnail img { height: 104px; }
.center-action { margin-top: 48px; text-align: center; }
.product-gallery { margin-top: 72px; padding: clamp(24px, 5vw, 56px); color: #fff; background: var(--ink); }
.checkout-image { display: block; width: min(100%, 120px); height: auto; margin-top: 28px; object-fit: contain; }
.gallery-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; margin-bottom: 34px; }
.gallery-heading h3 { margin: 0; }.gallery-heading p:last-child { margin: 0; color: #d7cdd0; }
.gallery-heading .section-kicker { grid-column: 1 / -1; margin-bottom: -12px; color: #ff6db5; }
.gallery-layout { display: grid; grid-template-columns: minmax(230px, .8fr) 1.2fr; gap: 30px; }
.gallery-viewer { scroll-margin-top: 92px; background: #241e20; }.gallery-media { position: relative; }.gallery-viewer .gallery-media img { width: 100%; max-height: 520px; object-fit: cover; object-position: top; }
.gallery-image-order { position: absolute; right: 16px; bottom: 16px; z-index: 1; box-shadow: 0 4px 18px rgba(23, 18, 20, .28); }
.gallery-details { padding: 24px; }.gallery-details h4 { margin: 0 0 22px; font: 400 clamp(1.5rem, 3vw, 2.6rem)/1.05 var(--serif); }
.gallery-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.gallery-details .brand-label { color: #ff6db5; }.gallery-products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; align-content: start; }
.gallery-product-card { min-width: 0; display: flex; flex-direction: column; }
.gallery-product { width: 100%; padding: 0 0 12px; border: 1px solid rgba(255,255,255,.18); color: #fff; background: transparent; font: inherit; text-align: left; cursor: pointer; }
.gallery-product:hover, .gallery-product.is-active { border-color: #ff6db5; }.gallery-product img { width: 100%; aspect-ratio: 3 / 4; object-fit: contain; object-position: center; background: #fff; }.gallery-product span { display: block; padding: 10px 10px 0; font-size: .76rem; line-height: 1.25; }
.gallery-product-order { width: 100%; min-height: 42px; margin-top: 8px; padding: 10px 8px; font-size: .62rem; letter-spacing: .08em; }
.gallery-thumbnails { padding: 12px; display: grid; grid-template-columns: repeat(4, minmax(54px, 1fr)); gap: 10px; background: #171214; }
.gallery-thumbnail { min-height: 72px; padding: 0; border: 2px solid transparent; background: #fff; cursor: pointer; overflow: hidden; }
.gallery-thumbnail:hover, .gallery-thumbnail.is-active { border-color: #ff6db5; }
.gallery-thumbnail img { width: 100%; height: 88px; object-fit: contain; object-position: center; background: #fff; }
.promo-code { width: 100%; max-width: 520px; margin-top: 24px; padding: 18px 20px; border: 1px solid var(--line); background: #fff; }
.promo-code span { display: block; color: var(--ink); font-size: .72rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.promo-code strong { display: block; color: var(--pink); font: 400 clamp(2rem, 5vw, 3.4rem)/1.2 var(--serif); }
.promo-code p { margin: 4px 0 0; font-size: .88rem; }

.benefits { position: relative; isolation: isolate; padding-bottom: 0; background: var(--rose); overflow: hidden; }
.benefits::before { content: ""; position: absolute; z-index: -1; inset: 0; background: url("../images/equita_materiel.webp") center / cover no-repeat; mix-blend-mode: multiply; opacity: 0.1; }
.benefits-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 9vw, 130px); }
.benefits-heading > p:last-child { color: var(--muted); }
.benefits-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.benefits-list li { padding: 28px 0; display: grid; grid-template-columns: 56px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.benefit-index { color: var(--pink); font: italic 1rem var(--serif); }
.benefits-list strong { font: 400 1.55rem var(--serif); }
.benefits-list p { margin: 6px 0 0; color: var(--muted); }
.benefit-statement { margin-top: 70px; padding: 50px 0; border-top: 1px solid var(--line); font: italic clamp(1.8rem, 4vw, 4rem)/1.1 var(--serif); text-align: center; }

.delivery { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(40px, 9vw, 130px); align-items: center; }.delivery-copy { min-width: 0; }
.delivery-offer { aspect-ratio: 1; display: grid; align-content: center; justify-items: center; border: 1px solid var(--pink); border-radius: 50%; color: var(--pink); }
.delivery-offer span { font-size: .78rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.delivery-offer strong { font: 400 clamp(4.5rem, 11vw, 9rem)/1 var(--serif); }
.delivery-copy p { max-width: 670px; color: var(--muted); }
.delivery-copy .button { margin-top: 18px; }

.checkout { color: #fff; background: var(--ink); }
.checkout .section-kicker { color: #ff6db5; }
.checkout-intro > p { color: #d7cdd0; }
.steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; list-style: none; background: rgba(255,255,255,.22); }
.steps li { min-height: 230px; padding: 30px; background: var(--ink); }
.steps span { display: block; margin-bottom: 50px; color: #ff6db5; font: italic 1.15rem var(--serif); }
.steps p { margin: 0; }
.checkout-note { max-width: 900px; margin: 42px 0 0; color: #d7cdd0; font-size: .9rem; }
.payment-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; width: 100%; margin-top: 18px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.18); }
.payment-logos img { width: auto; height: 32px; max-width: 92px; object-fit: contain; background: #fff; }

.social { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 10vw, 150px); }
.social-list { margin: 0; padding: 0; list-style: none; }
.social-list li { padding: 24px 0; display: grid; grid-template-columns: 54px 1fr; gap: 22px; border-top: 1px solid var(--line); }
.social-list li:last-child { border-bottom: 1px solid var(--line); }
.social-list p { margin: 0; }
.social-link { grid-column: 1 / -1; display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 22px; text-decoration: none; }
.social-link:hover strong { color: var(--pink); }
.social-icon { width: 50px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--pink); border-radius: 50%; color: var(--pink); }
.social-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-icon .icon-fill { fill: currentColor; stroke: none; }
.event-note { padding: 24px max(24px, calc((100% - 1180px) / 2)); color: #5e5558; background: #efe5e0; font-size: .75rem; text-align: center; }
.event-note p { margin: 0 auto; max-width: 1000px; }

.site-footer { padding: 58px max(24px, calc((100% - 1180px) / 2)) 30px; display: grid; grid-template-columns: 1fr auto; gap: 36px; color: #fff; background: #0e0b0c; }
.brand-footer { color: #fff; }
.footer-main p { max-width: 420px; color: #a89da1; }
.footer-links { display: flex; flex-wrap: wrap; align-items: start; justify-content: flex-end; gap: 20px 34px; }
.footer-links a:hover { color: #ff6db5; }
.footer-meta { grid-column: 1 / -1; margin: 20px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.15); color: #887d81; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

/* Mentions légales générées */
.legal-main { width: var(--shell); margin-inline: auto; padding-block: clamp(60px, 9vw, 110px); }
.legal-main h1 { max-width: 900px; font-size: clamp(2.8rem, 6vw, 5.6rem); }
.legal-main h2 { margin-top: 52px; font-size: clamp(1.7rem, 3vw, 2.7rem); }
.legal-main p, .legal-main li { max-width: 820px; }

@media (max-width: 820px) {
  :root { --shell: min(100% - 36px, 680px); }
  .menu-toggle { display: flex; min-height: 44px; align-items: center; gap: 10px; cursor: pointer; }
  .menu-icon, .menu-icon::before, .menu-icon::after { width: 20px; height: 2px; display: block; background: currentColor; }
  .menu-icon { position: relative; }.menu-icon::before, .menu-icon::after { content: ""; position: absolute; left: 0; }.menu-icon::before { top: -6px; }.menu-icon::after { top: 6px; }
  .site-nav { position: absolute; top: 76px; right: 0; left: 0; padding: 24px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: 0 14px 30px rgba(23,18,20,.12); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 0; }
  .hero { min-height: 680px; }
  .hero-brands { position: static; width: 100%; margin-top: 34px; display: flex; gap: 10px; transform: none; }
  .hero-brand-frame { flex: 1 1 0; width: auto; min-width: 0; }
  .hero-offer { right: 24px; width: 155px; }
  .offer-inner, .section-intro, .benefits-layout, .delivery, .social { grid-template-columns: 1fr; }
  .offer-inner { gap: 16px; padding-block: 32px; }
  .offer-inner .button { justify-self: start; margin-top: 10px; }
  .product-featured { grid-template-columns: 44px 1fr; }
  .product-word { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .product-grid .product-card:last-child { grid-column: auto; }
  .product-card { grid-template-columns: 40px 1fr; }
.gallery-heading, .gallery-layout { grid-template-columns: 1fr; }
  .gallery-products { grid-template-columns: repeat(3, 1fr); }
  .gallery-viewer { scroll-margin-top: 84px; }
  .delivery-offer { width: min(75vw, 350px); justify-self: center; }
  .steps { grid-template-columns: 1fr; }
  .steps li { min-height: 0; }
  .steps span { margin-bottom: 20px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .footer-meta { grid-column: auto; }
}

@media (max-width: 480px) {
  :root { --shell: calc(100% - 30px); }
  .header-inner { min-height: 68px; gap: 8px; }
  .header-inner .brand { min-width: 0; flex: 0 1 auto; gap: 8px; white-space: nowrap; font-size: clamp(.68rem, 3vw, .78rem); }
  .header-inner .brand-mark { width: 56px; padding: 8px; }
  .site-nav { top: 68px; }
  .hero { min-height: 650px; align-items: start; }
  .hero-content { padding-top: 78px; padding-bottom: 190px; }
  h1 { font-size: clamp(2.45rem, 12vw, 3.55rem); }
  h2 { font-size: clamp(2.1rem, 10vw, 3.1rem); }
  .hero-offer { right: 15px; width: 145px; }
  .product-card { min-height: 0; padding: 28px 22px; grid-template-columns: 1fr; gap: 8px; }
  .product-number { margin-bottom: 8px; }
  .variant-selector { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .local-product-viewer .gallery-media img { height: min(125vw, 500px); }
  .local-product-viewer .gallery-thumbnail img { height: 92px; }
  .gallery-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-thumbnails { grid-template-columns: repeat(3, minmax(54px, 1fr)); }
  .hero-brands { width: 100%; margin-top: 28px; gap: 8px; }
  .hero-brand-frame { height: 58px; }
  .hero-brands img { height: 58px; }
  .benefits-list li { grid-template-columns: 42px 1fr; }
  .event-note { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
