/* ══════════════════════════════════════════════════════════
   PM Homepage — All homepage mockup styles
   Loaded conditionally on body#index only
   ══════════════════════════════════════════════════════════ */

/* ── VARIABLES ──────────────────────────────── */
:root {
  --bg: #ffffff;
  --bg2: #f3f1ec;
  --dk: #0b0e15;
  --dk2: #13161f;
  --text: #0c0c0c;
  --muted: #787878;
  --border: #e2dfda;
  --gold: #b08a26;
  --tr: 0.38s cubic-bezier(0.25, 0.1, 0.25, 1);
  --g: clamp(16px, 3.5vw, 56px);
  --mw: 1540px;
  --nav-h: 55px;
  --fd: 'Bebas Neue', sans-serif;
  --fb: 'Gilroy', sans-serif;
  --fi: 'Cormorant Garamond', serif;
  --banner-h: 32px;
}

/* ── GRAIN TEXTURE ──────────────────────────── */
body#index::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.024;
}

/* ── HOMEPAGE BODY RESET ──────────────────────── */
body#index {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body#index #wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
  overflow-x: hidden;
}
body#index .full-container {
  overflow: hidden;
}
body#index #content-wrapper {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
body#index .full-container > .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body#index .page-home {
  max-width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
}
body#index .page-home > * {
  width: 100%;
  flex-shrink: 0;
}

body#index #content {
  max-width: 100%;
  padding: 0;
}

/* ── SECTION ORDERING (CSS order) ────────────────
   Ensures mockup order: Hero → Marquee → Split → Brand → Manifesto
   → Best-sellers → Stats → Blog → Trust → Newsletter
   ──────────────────────────────────────────────── */
body#index .hero {
  order: 1;
}
body#index .marquee {
  order: 2;
}
body#index .split {
  order: 3;
}
body#index .brand {
  order: 4;
}
body#index .manifesto {
  order: 5;
}
body#index .prods {
  order: 6;
}
body#index .stats {
  order: 7;
}
body#index .blog {
  order: 8;
}
body#index .trust {
  order: 9;
}
body#index .nl {
  order: 10;
}
body#index [id^='blockEmailSubscription'] {
  order: 10;
}

/* Hide default PrestaShop breadcrumb & left/right columns on homepage */
body#index .breadcrumb,
body#index #left-column,
body#index #right-column {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── ANNOUNCEMENT BANNER ───────────────────────── */
.banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 910;
  height: var(--banner-h);
  background: #000;
  overflow: hidden;
  transition:
    height 0.28s ease,
    opacity 0.28s ease;
  animation: none !important;
  transform: none !important;
}
.banner.hidden {
  height: 0 !important;
  opacity: 0;
  pointer-events: none;
}
.banner__ticker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner__msg {
  white-space: nowrap;
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  transition: opacity 0.3s ease;
}
.banner__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.18s ease;
  z-index: 2;
}
.banner__close:hover {
  color: rgba(255, 255, 255, 0.9);
}
.banner__close svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* ── NAV ──────────────────────────────────────── */
body#index .nav {
  position: fixed;
  top: var(--banner-h);
  left: 0;
  right: 0;
  z-index: 950; /* > menu 920 > banner 910 */
  height: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 var(--g);
  transition:
    background var(--tr),
    border-color var(--tr),
    top 0.3s ease,
    transform 0.38s cubic-bezier(0.25, 0.1, 0.25, 1);
}
body#index .nav--hidden {
  transform: translateY(-100%);
}
body#index .nav.lit {
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__logo {
  display: flex;
  align-items: center;
}
.nav__logo img {
  height: clamp(13px, 1.2vw, 17px);
  width: auto;
  display: block;
  filter: invert(1) brightness(10);
  transition: filter var(--tr);
}
body#index .nav.lit .nav__logo img {
  filter: invert(0) brightness(1);
}

/* ── NAV MENU ────────────────────────────────── */
.nav__menu-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__menu {
  display: flex;
  gap: clamp(20px, 2.8vw, 44px);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav__menu > li > a {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--tr);
  position: relative;
  text-decoration: none;
  padding: 0;
}
.nav__menu > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.26s ease;
}
.nav__menu > li > a:hover::after {
  transform: scaleX(1);
}
body#index .nav.lit .nav__menu > li > a {
  color: var(--muted);
}
.nav__menu > li > a:hover {
  color: #fff !important;
}
body#index .nav.lit .nav__menu > li > a:hover {
  color: var(--text) !important;
}

.nav__icons {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  align-items: center;
}
.nav__icon {
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--tr);
  display: flex;
  cursor: pointer;
}
body#index .nav.lit .nav__icon {
  color: var(--muted);
}
.nav__icon:hover {
  color: #fff !important;
}
body#index .nav.lit .nav__icon:hover {
  color: var(--text) !important;
}
.nav__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav__cart {
  position: relative;
}
.nav__cart-badge {
  position: absolute;
  top: -7px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #c0392b;
  color: #fff;
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 400;
  line-height: 16px;
  text-align: center;
  border-radius: 999px;
  pointer-events: none;
  display: block;
}

.nav__lang {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--tr);
  cursor: pointer;
  font: 300 10px/1 var(--fb);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
body#index .nav.lit .nav__lang {
  color: var(--muted);
}
.nav__lang:hover {
  color: #fff !important;
}
body#index .nav.lit .nav__lang:hover {
  color: var(--text) !important;
}
.nav__lang svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nav__lang-drop {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  min-width: 80px;
  padding: 6px 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.78) translateY(-10px);
  transform-origin: top right;
  transition:
    opacity 0.14s ease,
    transform 0.14s ease-in;
}
.nav__lang.open .nav__lang-drop {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  transition:
    opacity 0.18s ease,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__lang-drop a {
  display: block;
  padding: 8px 16px;
  font: 300 10px/1 var(--fb);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--tr);
}
.nav__lang-drop a:hover {
  color: var(--text);
}
.nav__lang-drop a.active {
  color: var(--dk);
  font-weight: 500;
}

/* ── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--g) clamp(56px, 8vh, 96px);
}
.hero__vid,
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
}
.hero__mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(11, 14, 21, 0.02) 0%,
    rgba(11, 14, 21, 0.18) 40%,
    rgba(11, 14, 21, 0.9) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--mw);
  margin: 0 auto;
  width: 100%;
}

.hero__sub {
  font-family: var(--fi);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 18px;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroUp 0.7s 0.52s ease forwards;
}
.hero__h1 {
  font-family: var(--fd);
  font-weight: 400;
  font-size: clamp(64px, 10.5vw, 160px);
  line-height: 0.86;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 36px;
  opacity: 0;
  animation: heroUp 0.9s 0.35s ease forwards;
}
.hero__h1 span {
  display: block;
}
.hero__h1 em {
  font-style: normal;
  font-size: 0.76em;
  opacity: 0.58;
  letter-spacing: 0.02em;
}

.hero__ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  opacity: 0;
  animation: heroUp 0.7s 0.72s ease forwards;
}
.hero__cta {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 130px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 12px 24px;
  background: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 0.26s ease,
    border-color 0.26s ease,
    color 0.26s ease;
  overflow: hidden;
  text-decoration: none;
}
.hero__cta:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.hero__cta svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
  opacity: 0;
  max-width: 0;
  margin-left: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.22s ease 0.06s,
    transform 0.22s ease 0.06s,
    max-width 0.22s ease,
    margin-left 0.22s ease;
  overflow: hidden;
}
.hero__cta:hover svg {
  opacity: 1;
  max-width: 16px;
  margin-left: 9px;
  transform: translateX(0);
}

.hero__tagline {
  margin-top: clamp(24px, 3vw, 36px);
  font-family: var(--fi);
  font-size: clamp(11px, 1vw, 13px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.hero__tagline span {
  display: block;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: clamp(28px, 5vh, 44px);
  right: var(--g);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: heroUp 0.6s 0.85s ease forwards;
}
.hero__scroll span {
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.26);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.14);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.55);
  animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
  to {
    top: 100%;
  }
}

@keyframes heroUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── MARQUEE ──────────────────────────────────── */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
  background: var(--bg);
  cursor: default;
  user-select: none;
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 52s linear infinite;
}
.marquee:hover .marquee__track {
  animation-play-state: paused;
}
.marquee__item {
  font-family: var(--fd);
  font-size: clamp(11px, 1.05vw, 13px);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0 clamp(22px, 3vw, 44px);
}
.marquee__sep {
  color: var(--gold);
  font-size: 7px;
  line-height: 1.9;
}
@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SPLIT COLLECTIONS ────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.split__item {
  position: relative;
  overflow: hidden;
  height: clamp(400px, 56vw, 700px);
  display: block;
  cursor: pointer;
  text-decoration: none;
}
.split__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.85);
  transition:
    filter 0.5s ease,
    transform 0.72s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.split__item:hover .split__img {
  filter: brightness(0.68);
  transform: scale(1.025);
}
.split__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 14, 21, 0.84) 0%,
    rgba(11, 14, 21, 0.08) 52%,
    transparent 72%
  );
}
.split__num {
  position: absolute;
  top: clamp(20px, 3vw, 38px);
  right: clamp(20px, 3vw, 38px);
  font-family: var(--fd);
  font-size: clamp(64px, 9vw, 120px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.055);
  pointer-events: none;
  transition: color 0.4s ease;
  letter-spacing: -0.02em;
}
.split__item:hover .split__num {
  color: rgba(255, 255, 255, 0.1);
}
.split__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(28px, 3.5vw, 50px);
  z-index: 1;
}
.split__tag {
  font-family: var(--fd);
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.split__sub {
  font-family: var(--fi);
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.46);
  display: block;
  margin-bottom: 4px;
}
.split__terrain {
  font-family: var(--fi);
  font-size: 11px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.28);
  display: block;
  margin-bottom: 20px;
  letter-spacing: 0.14em;
}
.split__link {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 12px 24px;
  background: transparent;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
  overflow: hidden;
  transition:
    opacity 0.32s,
    transform 0.32s,
    background 0.26s ease,
    border-color 0.26s ease;
  opacity: 0;
  transform: translateY(10px);
}
.split__item:hover .split__link {
  opacity: 1;
  transform: none;
}
.split__link:hover {
  background: #000;
  border-color: #000;
}
.split__link svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
  opacity: 0;
  max-width: 0;
  margin-left: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.22s ease 0.06s,
    transform 0.22s ease 0.06s,
    max-width 0.22s ease,
    margin-left 0.22s ease;
  overflow: hidden;
}
.split__link:hover svg {
  opacity: 1;
  max-width: 16px;
  margin-left: 9px;
  transform: translateX(0);
}

/* ── TRUST BAR ────────────────────────────────── */
.trust {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--g);
}
.trust__inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 0;
}
.trust__item {
  flex: 1;
  max-width: 360px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 6px clamp(16px, 3vw, 36px);
  border-right: 1px solid var(--border);
}
.trust__item:first-child {
  padding-left: 0;
}
.trust__item:last-child {
  border-right: none;
}
.trust__icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--gold);
}
.trust__icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.trust__title {
  font-family: var(--fd);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text);
  display: block;
  margin-bottom: 3px;
}
.trust__sub {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 300;
  color: var(--muted);
  display: block;
}

/* ── SECTION LABEL ────────────────────────────── */
.slabel {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}
.slabel__h {
  font-family: var(--fd);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
}
.slabel__all {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--tr);
  cursor: pointer;
  padding-bottom: 4px;
  text-decoration: none;
}
.slabel__all:hover {
  color: var(--text);
}
.slabel__all svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* ── PRODUCTS ─────────────────────────────────── */
.prods {
  padding: clamp(28px, 3.5vw, 48px) var(--g) clamp(40px, 5vw, 64px);
  background: var(--bg);
}
.prods__inner {
  max-width: var(--mw);
  margin: 0 auto;
}
.prods__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 1.6vw, 24px);
  margin-top: clamp(14px, 1.6vw, 22px);
}
.pitem {
  cursor: pointer;
}
.pitem a {
  text-decoration: none;
  color: inherit;
}
.pitem__img-w {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg2);
}
.pitem__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.pitem__img--base {
  z-index: 1;
  transform: translateY(0);
}
.pitem__img--hover {
  z-index: 2;
  transform: translateY(-100%);
}
.pitem:hover .pitem__img--base {
  transform: translateY(100%);
}
.pitem:hover .pitem__img--hover {
  transform: translateY(0);
}

.pitem__actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 12px;
  background: linear-gradient(
    to top,
    rgba(11, 14, 21, 0.62) 0%,
    transparent 100%
  );
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease;
}
.pitem:hover .pitem__actions {
  opacity: 1;
  transform: none;
}
.pitem__add-btn {
  width: 100%;
  padding: 10px;
  background: rgba(250, 250, 248, 0.96);
  color: var(--dk);
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  transition: background var(--tr);
  text-decoration: none;
  display: block;
  box-sizing: border-box;
  line-height: normal;
}
.pitem__add-btn:hover {
  background: #fff;
}

.pitem__new {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--dk);
  color: #fff;
  padding: 4px 10px;
}
.pitem__body {
  padding: 14px 0 0;
}
.pitem__name {
  font-family: var(--fd);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}
.pitem__desc {
  font-family: var(--fi);
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 10px;
}
.pitem__price {
  font-family: var(--fd);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

/* ── PRODS CTA ─────────────────────────────────── */
.prods__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(36px, 4vw, 52px);
}
.prods__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  border: 1px solid rgba(12, 12, 12, 0.35);
  border-radius: 999px;
  padding: 13px 28px;
  overflow: hidden;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease;
  text-decoration: none;
}
.prods__cta-link svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
  opacity: 0;
  max-width: 0;
  margin-left: 0;
  transform: translateX(-4px);
  overflow: hidden;
  transition:
    opacity 0.22s ease 0.06s,
    transform 0.22s ease 0.06s,
    max-width 0.22s ease,
    margin-left 0.22s ease;
}
.prods__cta-link:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.prods__cta-link:hover svg {
  opacity: 1;
  max-width: 16px;
  margin-left: 9px;
  transform: translateX(0);
}

/* ── STATS ────────────────────────────────────── */
.stats {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stats__item {
  padding: clamp(22px, 3vw, 36px) clamp(20px, 3vw, 40px);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stats__item:first-child {
  padding-left: var(--g);
}
.stats__item:last-child {
  border-right: none;
  padding-right: var(--g);
}
.stats__num {
  font-family: var(--fd);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  line-height: 1;
}
.stats__label {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── BRAND ────────────────────────────────────── */
.brand {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(400px, 56vw, 700px);
}
.brand__img {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: var(--dk2);
}
.brand__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.86) contrast(1.04);
  transition: transform 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.brand__img:hover img {
  transform: scale(1.03);
}

.brand__body {
  background: var(--bg);
  padding: clamp(36px, 5vw, 64px) clamp(24px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.brand__tag {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.brand__h {
  font-family: var(--fd);
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 13em;
}
.brand__p {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.92;
  color: #4a4a4a;
  margin-bottom: 36px;
  text-align: justify;
}
/* Multiple paragraphs within brand__p: add spacing for breathing room */
.brand__p p {
  margin-bottom: 1.4em;
}
.brand__p p:last-child {
  margin-bottom: 0;
}

/* Text-wrap container for clamped + expandable brand text */
.brand__text-wrap {
  position: relative;
  margin-bottom: 20px;
}
.brand__text-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.brand__btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text);
  border: 1px solid var(--text);
  border-radius: 999px;
  padding: 12px 24px;
  background: transparent;
  white-space: nowrap;
  align-self: flex-start;
  cursor: pointer;
  overflow: hidden;
  transition:
    background 0.26s ease,
    color 0.26s ease,
    border-color 0.26s ease;
  text-decoration: none;
}
.brand__btn:hover {
  background: #000;
  color: #fff;
  border-color: #000;
}
.brand__btn svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
  opacity: 0;
  max-width: 0;
  margin-left: 0;
  transform: translateX(-4px);
  transition:
    opacity 0.22s ease 0.06s,
    transform 0.22s ease 0.06s,
    max-width 0.22s ease,
    margin-left 0.22s ease;
  overflow: hidden;
}
.brand__btn:hover svg {
  opacity: 1;
  max-width: 16px;
  margin-left: 9px;
  transform: translateX(0);
}
/* Toggle variant — same visual style but as a <button> */
.brand__btn--toggle {
  border: none;
  padding-left: 0;
  padding-right: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--text);
  background: transparent;
  gap: 8px;
}
.brand__btn--toggle:hover {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.brand__btn--toggle svg {
  opacity: 1;
  max-width: 14px;
  margin-left: 0;
  transform: none;
  transition: transform 0.28s ease;
}
.brand__btn--toggle:hover svg {
  transform: none;
}

/* ── BLOG ─────────────────────────────────────── */
.blog {
  padding: clamp(28px, 3.5vw, 44px) var(--g) clamp(40px, 5vw, 64px);
  background: var(--bg);
}
.blog__inner {
  max-width: var(--mw);
  margin: 0 auto;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 32px);
  margin-top: 2px;
}
.barticle {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.barticle a {
  text-decoration: none;
  color: inherit;
}
.barticle__img-w {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--bg2);
  margin-bottom: 22px;
}
.barticle__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition:
    transform 0.65s cubic-bezier(0.25, 0.1, 0.25, 1),
    filter 0.38s ease;
}
.barticle:hover .barticle__img {
  transform: scale(1.04);
  filter: brightness(0.72);
}
.barticle__panel {
  position: absolute;
  inset: 0;
  background: rgba(11, 14, 21, 0.68);
  opacity: 0;
  transition: opacity 0.34s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 22px;
}
.barticle:hover .barticle__panel {
  opacity: 1;
}
.barticle__panel-cat {
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  transform: translateY(8px);
  transition: transform 0.26s ease 0.08s;
}
.barticle__panel-link {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transform: translateY(8px);
  transition: transform 0.26s ease 0.14s;
  text-decoration: none;
}
.barticle__panel-link svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.barticle:hover .barticle__panel-cat,
.barticle:hover .barticle__panel-link {
  transform: translateY(0);
}
.barticle__cat {
  font-family: var(--fb);
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.barticle__title {
  font-family: var(--fd);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.barticle__desc {
  font-family: var(--fi);
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.barticle__link {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 3px;
  align-self: flex-start;
  transition:
    border-color var(--tr),
    color var(--tr);
  cursor: pointer;
  text-decoration: none;
}
.barticle__link:hover {
  border-color: var(--text);
}
.barticle__link svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
/* Blog dots — hidden on desktop */
.blog__dots {
  display: none;
}

/* ── MANIFESTO ──────────────────────────────────── */
.manifesto {
  background: var(--dk);
  padding: clamp(79px, 8vw, 110px) var(--g);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
}
.manifesto__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.manifesto__text {
  font-family: var(--fi);
  font-size: clamp(14px, 1.3vw, 16px);
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.32);
  line-height: 2.1;
  letter-spacing: 0.01em;
}
.manifesto__text em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.58);
}
.manifesto__sep {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 22px auto;
}

/* ── NEWSLETTER ───────────────────────────────── */
.nl {
  padding: 0 var(--g);
  background: var(--dk);
  overflow: hidden;
  position: relative;
}
.nl__bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--fd);
  font-size: clamp(72px, 15vw, 210px);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.nl__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: clamp(68px, 10vw, 112px) 0;
}
.nl__tag {
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.nl__h {
  font-family: var(--fd);
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.nl__h2 {
  font-family: var(--fi);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 34px;
}
.nl__form {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.26s ease;
}
.nl__form:focus-within {
  border-color: rgba(255, 255, 255, 0.26);
}
.nl__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 18px;
  font-family: var(--fb);
  font-size: 13px;
  font-weight: 300;
  color: #fff;
}
.nl__input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
.nl__btn {
  padding: 16px 28px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  transition:
    color var(--tr),
    background var(--tr);
}
.nl__btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.nl__note {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.28);
  margin-top: 14px;
}

/* ── FOOTER ───────────────────────────────────── */
body#index .footer-container,
body#index footer#footer {
  background: var(--dk);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(52px, 7vw, 88px) var(--g) 32px;
}
body#index footer.page-footer {
  display: none !important;
}
.footer__inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(48px, 7vw, 112px);
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 28px;
  align-items: start;
}
/* Left column */
.footer__left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.footer__brand-name {
  font-family: var(--fd);
  font-size: clamp(16px, 1.5vw, 20px);
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
}
.footer__nl-form {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 10px;
  gap: 8px;
}
.footer__nl-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.footer__nl-input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.footer__nl-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  padding: 0;
  transition: color 0.18s ease;
}
.footer__nl-btn:hover {
  color: #fff;
}
.footer__nl-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
}
.footer__desc {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.26);
  line-height: 1.95;
}
/* Right columns */
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
}
.fch {
  font-family: var(--fd);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1;
}
.fcol ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fcol ul li {
  margin-bottom: 12px;
}
.fcol ul a {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  transition: color var(--tr);
  cursor: pointer;
  text-decoration: none;
}
.fcol ul a:hover {
  color: rgba(255, 255, 255, 0.82);
}
.footer__bot {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.footer__tagline {
  font-family: var(--fi);
  font-size: 11px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.22);
}
.fcopy {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.18);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Cookie popup styles moved to views/css/cookie.css (loaded unconditionally via hookDisplayHeader) */

/* ── STICKY CTA MOBILE (cf. index-mobile.html) ───────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 890;
  background: rgba(11, 14, 21, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px var(--g) calc(14px + env(safe-area-inset-bottom, 0px));
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
  height: env(safe-area-inset-bottom, 0px);
  background: rgba(11, 14, 21, 0.97);
  pointer-events: none;
}
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-cta__left {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}
.sticky-cta__logo img {
  width: 100%;
  height: auto;
  max-height: 14px;
  display: block;
  object-fit: contain;
  object-position: left center;
  filter: invert(1) brightness(10);
}
.sticky-cta__label {
  font-family: var(--fi);
  font-size: 11px;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.32);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__btn {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--fb);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 12px 20px;
  min-height: 46px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
}
.sticky-cta__btn svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── FOCUS VISIBLE ────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ── TOUCH: CTAs toujours visibles ─────────────── */
@media (hover: none) {
  .split__link {
    opacity: 1;
    transform: none;
  }
  .pitem__actions {
    opacity: 1;
    transform: none;
  }
}

/* ── REVEAL AU SCROLL ─────────────────────────── */
.rv {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.82s ease,
    transform 0.82s ease;
}
.rv.on {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.06s;
}
.d2 {
  transition-delay: 0.12s;
}
.d3 {
  transition-delay: 0.18s;
}
.d4 {
  transition-delay: 0.24s;
}
.d5 {
  transition-delay: 0.3s;
}
.d6 {
  transition-delay: 0.36s;
}

/* ── HAMBURGER ────────────────────────────────── */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255, 255, 255, 0.75);
  transition:
    background var(--tr),
    transform var(--tr),
    opacity var(--tr);
  transform-origin: center;
}
body#index .nav.lit .nav__burger span {
  background: var(--text);
}
.nav__burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── MOBILE MENU (module navmenu restyled for homepage) ─── */
body#index #navmenu.hp-open {
  position: fixed !important;
  inset: 0 !important;
  background: var(--dk) !important;
  z-index: 800 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
body#index #navmenu.hp-open .top-menu {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}
body#index #navmenu.hp-open .top-menu > li {
  text-align: center !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  padding: 14px 0 !important;
}
body#index #navmenu.hp-open .top-menu > li > a {
  font-family: var(--fd) !important;
  font-size: clamp(36px, 10vw, 58px) !important;
  font-weight: 400 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 1 !important;
  text-decoration: none !important;
  padding: 0 !important;
}
body#index #navmenu.hp-open .top-menu > li > a:hover {
  color: #fff !important;
}
body#index #navmenu.hp-open .top-menu .sub-menu,
body#index #navmenu.hp-open .top-menu .popover {
  display: none !important;
}
body#index #navmenu.hp-open .top-menu > li > a .navbar-toggler,
body#index #navmenu.hp-open .top-menu > li > a .collapse-icons {
  display: none !important;
}
body#index #navmenu.hp-open #showsorch,
body#index #navmenu.hp-open #sorch,
body#index #navmenu.hp-open #showtrans,
body#index #navmenu.hp-open #lnk-ma-taille {
  display: none !important;
}
body#index #navmenu.hp-open .mobile-nav-close {
  display: none !important;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .prods__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1058px) {
  .nav__menu-wrap {
    display: none;
  }
  .nav__burger {
    display: flex;
    position: static;
  }
  .nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  /* On mobile, only burger + cart remain visible. Search/user/lang
     are reachable via the burger drawer (.nav__mobile). */
  .nav__icons .nav__lang,
  .nav__icons .nav__icon:not(.nav__cart):not(.nav__size-btn) {
    display: none;
  }
  /* Force nav__icons to the right regardless of nav layout (flex or grid). */
  .nav__icons {
    grid-column: 3 / -1;
    justify-self: end;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  /* ── Aligné sur index-mobile.html (maquette) ── */
  /* Hero (section 1 vidéo) */
  .hero {
    height: 100svh;
    min-height: 600px;
    padding: 0 var(--g) clamp(88px, 14vh, 120px);
  }
  .hero__h1 {
    font-size: clamp(72px, 22vw, 98px);
    line-height: 0.86;
  }
  .hero__sub {
    font-size: 13px;
    line-height: 1.68;
    margin-top: 14px;
    margin-bottom: 26px;
  }
  .hero__ctas {
    gap: 10px;
  }
  .hero__cta {
    flex: 1;
    min-width: 0;
    font-size: 12px;
    padding: 13px 12px;
    min-height: 50px;
  }
  /* Indice de scroll : trait centré en bas (cf. maquette) */
  .hero__scroll {
    display: flex;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 32px;
    gap: 0;
  }
  .hero__scroll span {
    display: none;
  }
  .hero__scroll-line {
    height: 34px;
  }

  /* Split collections (sections 2 formel + 3 casual) — cf. index-mobile.html */
  .split {
    grid-template-columns: 1fr;
  }
  .split__item {
    height: 100svh;
    min-height: 500px;
  }
  .split__tag {
    font-size: clamp(60px, 13vw, 56px);
    margin-bottom: 14px;
  }
  .split__sub {
    font-size: 15px;
  }
  .split__terrain {
    font-size: 11px;
  }
  .split__link {
    display: none;
  }
  /* Centre les textes au milieu des images Formel/Casual sur mobile (cf. index-mobile.html) */
  .split__body {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .split__overlay {
    background: linear-gradient(
      to bottom,
      rgba(11, 14, 21, 0.55) 0%,
      rgba(11, 14, 21, 0.18) 48%,
      rgba(11, 14, 21, 0.55) 100%
    );
  }

  .prods__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__item:nth-child(2) {
    border-right: none;
  }
  /* Blog: horizontal scroll carousel on mobile */
  .blog__inner {
    max-width: 100%;
    padding: 0;
  }
  .blog__grid {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 14px;
    margin-top: 0;
    scrollbar-width: none;
  }
  .blog__grid::-webkit-scrollbar {
    display: none;
  }
  .blog__grid .barticle {
    flex: 0 0 76vw;
    max-width: 300px;
    scroll-snap-align: start;
    padding: 0;
  }
  .blog__grid .barticle:first-child {
    margin-left: var(--g);
  }
  .blog__grid .barticle:last-child {
    margin-right: var(--g);
  }
  .blog__grid .barticle__img-w {
    aspect-ratio: 4/3;
    margin-bottom: 14px;
  }
  .blog .slabel {
    padding: 0 var(--g);
  }
  .blog__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
  }
  .blog__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.26s ease;
  }
  .blog__dot.active {
    background: var(--text);
  }
  /* Brand / À propos (section 4) — cf. index-mobile.html (.brand-m) */
  .brand {
    grid-template-columns: 1fr;
    height: auto;
  }
  .brand__img {
    display: none;
  }
  .brand__body {
    padding: 44px var(--g) 52px;
  }
  .brand__tag {
    font-size: 10px;
    margin-bottom: 22px;
  }
  .brand__h {
    font-size: 38px;
    max-width: none;
    margin-bottom: 22px;
  }
  .brand__p {
    font-size: 12px;
    line-height: 1.92;
  }
  .brand__btn {
    font-size: 12px;
  }
  /* Footer: accordion on mobile */
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__cols {
    display: block !important;
  }
  .fcol {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .fch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 16px 0;
    margin: 0;
  }
  .fch::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 1.5px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    transition: transform 0.26s ease;
    flex-shrink: 0;
  }
  .fcol.open .fch::after {
    transform: rotate(-135deg);
  }
  .fcol ul {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .fcol.open ul {
    max-height: 300px;
  }
  .sticky-cta {
    display: block;
  }
  /* Dégage le bas du footer pour ne pas être masqué par le sticky CTA */
  body#index .footer-container,
  body#index footer#footer {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  /* Trust bar: stack vertically on mobile */
  .trust {
    padding: 0;
  }
  .trust__inner {
    flex-direction: column;
  }
  .trust__item {
    max-width: none;
    padding: 16px var(--g);
    border-right: none;
    border-bottom: 1px solid var(--border);
    align-items: center;
    gap: 14px;
  }
  .trust__item:first-child {
    padding-left: var(--g);
  }
  .trust__item:last-child {
    border-bottom: none;
  }

  /* Manifesto (section 5 texte) — cf. index-mobile.html */
  .manifesto {
    padding: 129px var(--g);
  }
  .manifesto__text {
    font-size: 15px;
  }

  /* Newsletter: match mockup 62px padding */
  .nl__inner {
    max-width: 100%;
    padding: 62px 0;
  }
  .nl__tag {
    font-size: 9px;
    letter-spacing: 0.38em;
    margin-bottom: 14px;
  }
  .nl__h {
    font-size: clamp(40px, 14vw, 60px);
    margin-bottom: 8px;
  }
  .nl__h2 {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .nl__input {
    padding: 15px 14px;
    min-height: 52px;
  }
  .nl__btn {
    padding: 15px 18px;
    font-size: 9px;
    min-height: 52px;
  }
  .nl__note {
    font-size: 10px;
  }
}

/* Cookie popup mobile media-query moved to views/css/cookie.css */

@media (max-width: 480px) {
  .prods__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats__inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer__cols {
    grid-template-columns: 1fr 1fr;
  }
  .footer__bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
