/* JMove — Système de design partagé
   Direction : éditorial premium · navy + orange · typographie Inter institutionnelle
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Mono:wght@300;400;500&display=swap');

:root {
  --paper: #FAF7F2;
  --paper-2: #F1ECE2;
  --paper-3: #E8E2D4;
  --ink: #0F1B2D;
  --ink-soft: #16223A;
  --navy: #1F3A6B;
  --orange: #E66A1F;
  --orange-soft: #FCEBDB;
  --orange-deep: #C25515;
  --muted: #756E64;
  --rule: #D9D2C2;
  --rule-soft: #E8E2D4;
  --head-h: 128px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; scroll-padding-top: var(--head-h); }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
.mono { font-family: 'DM Mono', 'JetBrains Mono', monospace; letter-spacing: 0.04em; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ──────────────── NAV ──────────────── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 52px; width: auto; }
.nav-logo small {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  padding-left: 14px;
  border-left: 1px solid var(--rule);
}
.nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav ul a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.2s;
}
.nav ul a:hover, .nav ul a.active { border-bottom-color: var(--orange); }
.nav .cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
.nav .cta:hover { background: var(--orange); }
.nav .cta::after { content: '→'; }

/* ──────────────── ANNOUNCE BAR ──────────────── */
.announce {
  background: var(--ink);
  color: var(--paper);
  padding: 9px 64px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.announce .left { display: flex; gap: 28px; align-items: center; }
.announce .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
}
.announce .pill::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

/* ──────────────── AVIS EXCEPTIONNEL ──────────────── */
.notice {
  background: var(--orange);
  color: #fff;
  padding: 10px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.notice-in { display: flex; align-items: center; gap: 14px; min-width: 0; }
.notice-tag {
  flex: none;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 2px;
}
.notice-txt { font-size: 13.5px; line-height: 1.35; letter-spacing: -0.005em; }
.notice-txt strong { font-weight: 700; }
.notice-x {
  flex: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 0 2px;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.notice-x:hover { opacity: 1; }

/* ──────────────── COMMON TYPE ──────────────── */
.eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }

h1.display {
  font-size: 84px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
  color: var(--ink);
}
h1.display em { font-style: normal; color: var(--orange); }
h2.section {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}
h2.section em { font-style: normal; color: var(--orange); }

/* ──────────────── HERO ──────────────── */
.hero {
  padding: 40px 64px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
  min-height: calc(100vh - var(--head-h));
  scroll-snap-align: start;
}
.hero > div:first-child { display: flex; flex-direction: column; justify-content: space-between; padding: 4px 0 8px; }
.hero p {
  font-size: 17px;
  line-height: 1.6;
  color: #2A2F38;
  max-width: 480px;
  margin: 24px 0 28px;
  text-wrap: pretty;
}
.hero .ctas { display: flex; align-items: center; gap: 24px; }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--orange); transform: translateY(-1px); }
.btn-primary::after { content: '→'; }
.btn-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-link:hover { color: var(--orange); border-bottom-color: var(--orange); }

.hero-img {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--ink);
  overflow: hidden;
  border-radius: 14px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero-video.is-active { opacity: 1; }
.analyse-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ──────────────── PLACEHOLDER ──────────────── */
.ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px);
}
.ph.light {
  background-image: repeating-linear-gradient(135deg, transparent 0, transparent 20px, rgba(15,27,45,0.04) 20px, rgba(15,27,45,0.04) 21px);
  background-color: var(--paper-2);
}
.ph .label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-align: center;
  padding: 0 24px;
}
.ph .sub {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.15em;
  text-align: center;
}
.ph.light .label { color: rgba(15,27,45,0.5); }
.ph.light .sub { color: rgba(15,27,45,0.32); }

/* ──────────────── META BAR ──────────────── */
.meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  padding: 32px 64px;
  gap: 40px;
  background: var(--paper);
}
.meta .item { display: flex; flex-direction: column; gap: 8px; }
.meta .k {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}
.meta .v {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.005em;
}

/* ──────────────── ANALYSE ──────────────── */
.analyse {
  padding: 72px 64px;
  background: var(--paper-2);
  min-height: calc(100vh - var(--head-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-snap-align: start;
}
.analyse .head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 40px;
}
.analyse .head h2 { max-width: 540px; }
.analyse .head .lead {
  font-size: 17px;
  line-height: 1.65;
  color: #2A2F38;
  max-width: 460px;
}
.analyse .grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: stretch;
}
.analyse .grid.img-left { grid-template-columns: 1fr 1.1fr; }
.analyse .steps { display: flex; flex-direction: column; }
.analyse .left-col { display: flex; flex-direction: column; }
.analyse .left-col .steps { margin-top: 28px; }
.analyse .step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.analyse .step:last-child { border-bottom: 1px solid var(--rule); }
.analyse .step .n {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.04em;
}
.analyse .step .t {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--ink);
}
.analyse .step .d {
  font-size: 15px;
  color: #3A4050;
  line-height: 1.65;
  max-width: 460px;
}
.analyse .img-wrap {
  height: 100%;
  min-height: 320px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}
.analyse-cta {
  margin-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px 32px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
}
.analyse .left-col .analyse-cta { margin-top: 28px; }
.analyse-cta .left h4 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.analyse-cta .left p { font-size: 14px; color: rgba(250,247,242,0.7); }
.analyse-cta .btn {
  background: var(--orange);
  color: #fff;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.analyse-cta .btn::after { content: '→'; }

/* ──────────────── UNIVERS ──────────────── */
.univers { padding: 110px 64px; background: var(--paper); min-height: calc(100vh - var(--head-h)); display: flex; flex-direction: column; justify-content: center; scroll-snap-align: start; }
.univers .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
}
.univers .head h2 { max-width: 680px; }
.univers .head .counter {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.univers .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.univers .card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.25s;
}
.univers .card:hover { transform: translateY(-4px); }
.univers .card .visual {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--paper-2);
  overflow: hidden;
}
.univers .card .visual .prod-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.univers .card .visual .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}
.univers .card .visual .arrow {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
}
.univers .card:hover .visual .arrow { background: var(--orange); }
.univers .card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.univers .card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}
.univers .card .brands-hint {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--orange-deep);
  text-transform: uppercase;
  margin-top: -4px;
}

/* product visual placeholders — soft gradient with shoe silhouette */
.prod-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #F4EFE5 0%, #E5DECB 100%);
}
.prod-bg.trail { background: linear-gradient(135deg, #ECE6D4 0%, #C9C1A8 100%); }
.prod-bg.textile { background: linear-gradient(135deg, #F0EAD9 0%, #DCD0B3 100%); }
.prod-bg.nutri { background: linear-gradient(135deg, #FBEFDC 0%, #E8C99A 100%); }
.prod-bg.montre { background: linear-gradient(135deg, #E9ECEF 0%, #C5CCD6 100%); }
.prod-shape.montre {
  bottom: 24%;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #16223A;
  border: 12px solid var(--ink);
  box-shadow: 0 -52px 0 -22px var(--ink), 0 52px 0 -22px var(--ink);
}
.prod-shape {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 22%;
  background: var(--ink);
  border-radius: 100% 100% 18% 100% / 100% 100% 100% 100%;
  opacity: 0.85;
  box-shadow: 0 22px 50px rgba(15,27,45,0.18);
}
.prod-shape.running {
  border-radius: 100% 60% 30% 80% / 100% 100% 100% 100%;
  background: linear-gradient(180deg, #1F3A6B 60%, #0F1B2D 100%);
}
.prod-shape.trail {
  background: linear-gradient(180deg, #16223A 60%, #0F1B2D 100%);
  border-radius: 100% 70% 25% 90% / 100% 100% 100% 100%;
}
.prod-shape.textile {
  width: 38%;
  height: 56%;
  bottom: 12%;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-deep) 100%);
}
.prod-shape.nutri {
  width: 12%;
  height: 50%;
  bottom: 14%;
  border-radius: 24% 24% 18% 18% / 12% 12% 6% 6%;
  background: linear-gradient(180deg, #E66A1F 0%, #C25515 100%);
}
.prod-shape.nutri::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 30%;
  right: 30%;
  height: 10px;
  background: #0F1B2D;
  border-radius: 3px;
}

/* ──────────────── MARQUES STRIP ──────────────── */
.marques-strip { padding: 130px 64px; background: var(--paper-2); scroll-snap-align: start; }
.marques-strip .head { text-align: center; margin-bottom: 56px; }
.marques-strip .head .eyebrow { justify-content: center; }
.marques-strip .head .eyebrow::before { display: none; }
.marques-strip .head h2 { margin-top: 16px; }
.marques-strip .head p {
  margin: 18px auto 0;
  max-width: 520px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.marques-strip .grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.marques-strip .b {
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: var(--paper);
  transition: background 0.2s;
}
.marques-strip .b img {
  height: 34px;
  width: auto;
  max-width: 78%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.marques-strip .b:hover { background: var(--paper-3); }
.marques-strip .b .name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.marques-strip .b .cat {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--orange-deep);
  text-transform: uppercase;
}
.marques-strip .cta-row {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ──────────────── BOUTIQUE INFO ──────────────── */
.shop-info {
  padding: 110px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - var(--head-h));
  scroll-snap-align: start;
}
.shop-info h2 { margin-bottom: 28px; }
.shop-info p { font-size: 17px; color: #2A2F38; line-height: 1.65; margin-bottom: 36px; max-width: 480px; }
.shop-info .info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.shop-info .info-grid > div {
  border-top: 1px solid var(--ink);
  padding-top: 14px;
}
.shop-info .info-grid .k {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.shop-info .info-grid .v {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}
.shop-info .map {
  aspect-ratio: 1/1;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  border-radius: 6px;
}
.shop-info .map .map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.shop-info .map .map-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
}
.shop-info .map .open-maps {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 11px 18px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(15,27,45,0.18);
  transition: transform 0.2s ease;
}
.shop-info .map:hover .open-maps { transform: translateY(-2px); }

/* ──────────────── BRANDS INDEX (page marques) ──────────────── */
.brands-index { padding: 96px 64px; background: var(--paper); }
.brands-index .head { margin-bottom: 48px; }
.brands-index .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.brands-index .cell {
  padding: 40px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.brands-index .cell img {
  height: 38px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
  align-self: flex-start;
}
.brands-index .cell .bi-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  white-space: nowrap;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.brands-index .cell p {
  font-size: 14px;
  line-height: 1.6;
  color: #2A2F38;
  margin: 0;
}
.brands-index .index-note {
  margin: 40px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}

.shop-info .hours-note {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--orange-deep);
}
.shop-info .hours-note strong { color: var(--orange-deep); font-weight: 700; }
.shop-info .info-grid .sat-ete { color: var(--orange-deep); font-weight: 600; }

/* ──────────────── FOOTER ──────────────── */
.foot {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 64px 36px;
}
.foot .top {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(250,247,242,0.15);
}
.foot .brand img {
  height: 74px;
  width: auto;
  margin-bottom: 14px;
}
.foot .brand small {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(250,247,242,0.55);
  text-transform: uppercase;
}
.foot .brand p {
  color: rgba(250,247,242,0.65);
  font-size: 13px;
  line-height: 1.65;
  margin-top: 22px;
  max-width: 280px;
}
.foot .brand-desc p {
  color: rgba(250,247,242,0.65);
  font-size: 13px;
  line-height: 1.65;
  max-width: 320px;
}
.foot h6 {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot ul li { font-size: 14px; color: rgba(250,247,242,0.85); }
.foot .bot {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(250,247,242,0.45);
  text-transform: uppercase;
}

/* ──────────────── MARQUES PAGE ──────────────── */
.brand-hero {
  padding: 80px 64px 96px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: end;
  border-bottom: 1px solid var(--rule);
}
.brand-hero h1 {
  font-size: 88px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.035em;
}
.brand-hero h1 em { color: var(--orange); font-style: normal; }
.brand-hero .intro {
  margin-top: 28px;
  max-width: 520px;
  font-size: 17px;
  line-height: 1.65;
  color: #2A2F38;
}
.brand-hero .right { max-width: 480px; padding-top: 46px; }
.brand-hero .right p {
  font-size: 17px;
  line-height: 1.65;
  color: #2A2F38;
  margin-bottom: 18px;
}
.brand-hero .stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
  border-top: 1px solid var(--rule);
}
.brand-hero .stats > div {
  padding: 16px 0 0;
}
.brand-hero .domains {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.brand-hero .domains span {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  white-space: nowrap;
}
.brand-hero .stats .v {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--orange);
}
.brand-hero .stats .k {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 4px;
}

.featured {
  padding: 96px 64px;
  background: var(--paper);
}
.featured .head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 56px;
}
.featured .head h2 { max-width: 600px; font-size: 56px; font-weight: 700; letter-spacing: -0.025em; line-height: 1.05; }
.featured .head h2 em { color: var(--orange); font-style: normal; }
.featured .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.featured .card {
  background: var(--paper-2);
  padding: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rule);
  transition: border-color 0.2s, transform 0.2s;
}
.featured .card:hover { border-color: var(--orange); transform: translateY(-2px); }
.featured .card .visual {
  aspect-ratio: 16/10;
  background: var(--paper-3);
  position: relative;
  overflow: hidden;
}
.featured .card .body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; }
.featured .card .meta {
  display: flex;
  justify-content: space-between;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
}
.featured .card .meta .country { color: var(--orange-deep); }
.featured .card h3 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
}
.featured .card p {
  font-size: 14px;
  color: #3A4050;
  line-height: 1.6;
}
.featured .card .more {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  align-self: flex-start;
}
.featured .card .more::after { content: '→'; }

/* brand-mark placeholders */
.brand-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F4EFE5 0%, #E5DECB 100%);
}
.brand-mark .word {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: rgba(15,27,45,0.65);
  text-transform: uppercase;
  font-style: italic;
}
.brand-mark.dark { background: linear-gradient(135deg, #0F1B2D 0%, #16223A 100%); }
.brand-mark.dark .word { color: rgba(250,247,242,0.78); }
.brand-mark.orange { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%); }
.brand-mark.orange .word { color: rgba(255,255,255,0.85); }
.brand-mark.navy { background: linear-gradient(135deg, #1F3A6B 0%, #0F1B2D 100%); }
.brand-mark.navy .word { color: rgba(250,247,242,0.78); }

.index-list { padding: 96px 64px; background: var(--paper-2); }
.index-list h2 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
}
.index-list h2 em { color: var(--orange); font-style: normal; }
.index-list .table {
  border-top: 1.5px solid var(--ink);
}
.index-list .row {
  display: grid;
  grid-template-columns: 60px 1.2fr 2fr 1fr 1fr auto;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
  transition: background 0.15s;
}
.index-list .row:hover { background: var(--paper); }
.index-list .row .n {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.index-list .row .name { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.index-list .row .desc { font-size: 14px; color: #3A4050; }
.index-list .row .cat {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.index-list .row .country {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}
.index-list .row .arr {
  width: 36px;
  height: 36px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--ink);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.index-list .row:hover .arr { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ──────────────── BOUTIQUE / CATALOGUE ──────────────── */
.shop-hero {
  padding: 64px 64px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
}
.shop-hero h1 {
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.95;
}
.shop-hero h1 em { color: var(--orange); font-style: normal; }
.shop-hero .right { max-width: 460px; padding-bottom: 8px; }
.shop-hero .right p { font-size: 16px; color: #2A2F38; line-height: 1.65; margin-bottom: 16px; }
.shop-hero .right .ship {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  padding: 10px 16px;
  border-radius: 999px;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.shop-hero .right .ship::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
  position: sticky;
  top: 73px;
  z-index: 40;
  gap: 24px;
  flex-wrap: wrap;
}
.filter-group { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-group .label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  margin-right: 4px;
}
.chip {
  padding: 10px 18px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.chip:hover { border-color: var(--ink); }
.chip.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.chip .count {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.chip.active .count { color: rgba(250,247,242,0.6); }

.select {
  padding: 10px 16px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.select::after { content: '▾'; font-size: 11px; color: var(--muted); }
.sort-row { display: flex; align-items: center; gap: 16px; }
.sort-row .count {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.sort-row .count.soon { color: var(--muted); opacity: 0.7; }
.catalog-note {
  margin: 56px auto 0;
  max-width: 620px;
  text-align: center;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}
.catalog { padding: 48px 64px 96px; }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}
.product {
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: transform 0.2s;
}
.product:hover { transform: translateY(-3px); }
.product .visual {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--paper-2);
  overflow: hidden;
}
.product .visual .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--paper);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.15em;
  color: var(--ink);
  text-transform: uppercase;
}
.product .visual .tag.new { background: var(--orange); color: #fff; }
.product .visual .heart {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: var(--paper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--muted);
}
.product .brand {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.product .name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.product .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
}
.product .price { font-size: 15px; font-weight: 700; }
.product .price .crossed { color: var(--muted); text-decoration: line-through; font-weight: 400; margin-right: 6px; }
.product .colors { display: flex; gap: 6px; }
.product .colors i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(15,27,45,0.15);
}
.product .meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}
.product .meta-row .stars { color: var(--orange); }

/* product visuals — generated colors */
.pv-bg { position: absolute; inset: 0; }
.pv-bg.s1 { background: linear-gradient(135deg, #F4EFE5 0%, #E5DECB 100%); }
.pv-bg.s2 { background: linear-gradient(135deg, #E8E2D4 0%, #C9C1A8 100%); }
.pv-bg.s3 { background: linear-gradient(135deg, #FBEFDC 0%, #E8C99A 100%); }
.pv-bg.s4 { background: linear-gradient(135deg, #DDE1E8 0%, #B7BFCB 100%); }
.pv-bg.s5 { background: linear-gradient(135deg, #F0E8DA 0%, #D5C9B0 100%); }
.pv-bg.s6 { background: linear-gradient(135deg, #EFE7D9 0%, #D9CDB1 100%); }
.pv-bg.dark { background: linear-gradient(135deg, #16223A 0%, #0F1B2D 100%); }
.pv-bg.orange { background: linear-gradient(135deg, #F2D2B4 0%, #E5A975 100%); }

.pv-shoe {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  width: 70%;
  height: 26%;
  background: #0F1B2D;
  border-radius: 100% 60% 25% 90% / 100% 100% 100% 100%;
  box-shadow: 0 22px 40px rgba(15,27,45,0.25);
}
.pv-shoe.alt1 { background: linear-gradient(180deg, #1F3A6B 0%, #0F1B2D 100%); transform: translateX(-50%) rotate(2deg); }
.pv-shoe.alt2 { background: linear-gradient(180deg, #E66A1F 0%, #C25515 100%); }
.pv-shoe.alt3 { background: linear-gradient(180deg, #2A4D7A 0%, #16223A 100%); transform: translateX(-50%) rotate(-1deg); }
.pv-shoe.alt4 { background: linear-gradient(180deg, #4E5662 0%, #2A2F38 100%); }
.pv-shoe.alt5 { background: linear-gradient(180deg, #1F3A6B 30%, #E66A1F 100%); transform: translateX(-50%) rotate(-4deg); }

.pv-textile {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 58%;
  background: #0F1B2D;
  border-radius: 4px 4px 4px 4px;
}
.pv-textile.alt1 { background: linear-gradient(180deg, #E66A1F 0%, #C25515 100%); }
.pv-textile.alt2 { background: linear-gradient(180deg, #1F3A6B 0%, #16223A 100%); }
.pv-textile.alt3 { background: linear-gradient(180deg, #2A2F38 0%, #0F1B2D 100%); }

.pv-bottle {
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 14%;
  height: 56%;
  background: linear-gradient(180deg, #E66A1F 0%, #C25515 100%);
  border-radius: 28% 28% 16% 16% / 14% 14% 6% 6%;
}
.pv-bottle::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 25%;
  right: 25%;
  height: 12px;
  background: #0F1B2D;
  border-radius: 3px;
}
.pv-bottle.alt1 { background: linear-gradient(180deg, #1F3A6B 0%, #0F1B2D 100%); }
.pv-bottle.alt2 { background: linear-gradient(180deg, #2A2F38 0%, #0F1B2D 100%); width: 18%; }

.pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper);
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.pagination button.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pagination button:hover:not(.active) { border-color: var(--ink); }
.pagination .arrow { width: auto; padding: 0 18px; }

/* small util */
.section-sep { width: 100%; height: 1px; background: var(--rule); }
.rule-orange { width: 56px; height: 3px; background: var(--orange); margin-top: 18px; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — tablette & mobile (n'affecte pas le desktop)
   ══════════════════════════════════════════════════════════ */

/* Header : le wrapper est transparent en desktop, le burger est caché */
.nav-menu { display: contents; }
.nav-toggle { display: none; }
.burger { display: none; }
.nav .cta-top { display: none; }

/* ---------- TABLETTE : ≤ 960px ---------- */
@media (max-width: 960px) {
  .announce { padding: 9px 24px; }
  .nav { padding: 16px 24px; }

  .hero { padding: 32px 24px 40px; grid-template-columns: 1fr; gap: 32px; min-height: 0; }
  .hero-img { aspect-ratio: 16/10; height: auto; }
  h1.display { font-size: 60px; }
  h2.section { font-size: 44px; }

  .meta { grid-template-columns: repeat(2, 1fr); }

  .analyse { padding: 64px 24px; min-height: 0; }
  .analyse .grid, .analyse .grid.img-left { grid-template-columns: 1fr; gap: 36px; }

  .univers { padding: 72px 24px; min-height: 0; }
  .univers .grid { grid-template-columns: repeat(3, 1fr); }

  .marques-strip { padding: 72px 24px; }
  .marques-strip .grid { grid-template-columns: repeat(4, 1fr); }

  .shop-info { padding: 72px 24px; grid-template-columns: 1fr; gap: 40px; min-height: 0; }

  .brand-hero { padding: 56px 24px 64px; grid-template-columns: 1fr; gap: 32px; }
  .brand-hero h1 { font-size: 60px; }
  .brand-hero .right { padding-top: 0; }

  .brands-index { padding: 72px 24px !important; }
  .brands-index .grid { grid-template-columns: repeat(2, 1fr); }

  .foot { padding-left: 24px; padding-right: 24px; }
  .foot .top { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* ══════════════════════════ MOBILE : ≤ 640px ══════════════════════════ */
@media (max-width: 640px) {

  /* ---- Avis exceptionnel ---- */
  .notice { padding: 9px 20px; gap: 12px; }
  .notice-txt { font-size: 12px; }
  .notice-tag { display: none; }

  /* ---- Barre d'annonce : une seule ligne, sobre ---- */
  .announce { justify-content: center; padding: 7px 16px; font-size: 9px; gap: 12px; }
  .announce .left { gap: 12px; }
  .announce .addr,
  .announce .mail,
  .announce .sep { display: none; }
  .announce .contact { letter-spacing: 0.14em; }

  /* ---- HEADER : burger ---- */
  .nav { position: sticky; top: 0; flex-wrap: nowrap; justify-content: flex-start; padding: 11px 18px; }
  .nav-logo img { height: 34px; }
  .nav .cta-top { display: inline-flex; margin-left: auto; gap: 6px; padding: 9px 14px; font-size: 12px; white-space: nowrap; }

  .burger {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 5px; width: 44px; height: 44px; margin-left: 8px; cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .burger span { width: 24px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.25s ease, opacity 0.2s ease; }
  .nav-toggle:checked ~ .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-menu {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 26px 44px rgba(15,27,45,0.13);
    padding: 4px 18px 20px;
    transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }
  .nav-toggle:checked ~ .nav-menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu ul { flex-direction: column; gap: 0; width: 100%; }
  .nav-menu ul li { border-bottom: 1px solid var(--rule); }
  .nav-menu ul a { display: block; padding: 16px 2px; font-size: 17px; font-weight: 600; border: 0; }
  .nav-menu .cta { display: none; }

  /* ---- HERO : vidéo verticale en haut, titres dessous ---- */
  .hero { display: flex; flex-direction: column; gap: 22px; padding: 18px 18px 64px; min-height: 0; }
  .hero > div:first-child { order: 2; padding: 0; }
  .hero-img { order: 1; width: 100%; height: auto; aspect-ratio: 4/5; max-height: 44vh; border-radius: 14px; }
  h1.display { font-size: 42px; line-height: 1.06; padding-bottom: 2px; }
  h1.display[style] { margin-top: 20px !important; }
  .hero p { font-size: 16px; line-height: 1.7; margin: 24px 0 32px; max-width: none; }
  .hero .ctas { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero .btn-primary { justify-content: center; padding: 17px; font-size: 15px; }
  .hero .btn-link {
    text-align: center; border: 1.5px solid var(--ink); border-bottom-width: 1.5px;
    border-radius: 999px; padding: 16px; font-weight: 600;
  }
  .hero .btn-link:hover { background: var(--ink); color: var(--paper); }

  h2.section { font-size: 32px; }

  /* ---- META : 2×2 condensé ---- */
  .meta { grid-template-columns: 1fr 1fr; gap: 0; padding: 0; border-top: 1px solid var(--ink); }
  .meta .item { padding: 22px 18px; gap: 6px; border-bottom: 1px solid var(--rule); }
  .meta .item:nth-child(odd) { border-right: 1px solid var(--rule); }
  .meta .k { font-size: 9px; }
  .meta .v { font-size: 14px; line-height: 1.3; }

  /* ---- ANALYSE : sans photo, blocs lisibles d'un coup ---- */
  .analyse { padding: 84px 18px; min-height: 0; }
  .analyse .grid.img-left { grid-template-columns: 1fr; gap: 0; }
  .analyse .img-wrap { display: none; }
  .analyse .left-col .steps { margin-top: 30px; }
  .analyse .step { grid-template-columns: 38px 1fr; gap: 16px; padding: 24px 0; }
  .analyse .step .n { font-size: 25px; }
  .analyse .step .t { font-size: 17px; margin-bottom: 8px; }
  .analyse .step .d { font-size: 14px; line-height: 1.65; }
  .analyse-cta { flex-direction: column; align-items: stretch; gap: 14px; margin-top: 24px; padding: 22px; }
  .analyse-cta .btn { justify-content: center; }

  /* ---- UNIVERS : 2 colonnes ---- */
  .univers { padding: 84px 18px; min-height: 0; }
  .univers .head { flex-direction: column; align-items: flex-start; gap: 10px; margin-bottom: 40px; }
  .univers .grid { grid-template-columns: 1fr 1fr; gap: 18px 14px; }
  .univers .card h3 { font-size: 17px; }
  .univers .card p { font-size: 12px; }
  .univers .card .brands-hint { display: none; }

  /* ---- MUR DE MARQUES ---- */
  .marques-strip { padding: 84px 18px; }
  .marques-strip .head { margin-bottom: 40px; }
  .marques-strip .grid { grid-template-columns: repeat(3, 1fr); }
  .marques-strip .b { min-height: 82px; padding: 16px 10px; }
  .marques-strip .b img { height: 26px; }
  .marques-strip .cta-row { margin-top: 26px; }
  .marques-strip .cta-row .btn-primary { display: flex; width: 100%; justify-content: center; padding: 16px; }

  /* ---- BOUTIQUE ---- */
  .shop-info { grid-template-columns: 1fr; gap: 34px; padding: 84px 18px; min-height: 0; }
  .shop-info h2 { margin-bottom: 20px; }
  .shop-info p { font-size: 15px; margin-bottom: 22px; max-width: none; }
  .shop-info .info-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .shop-info .map { aspect-ratio: 4/3; }

  /* ---- PIED DE PAGE ---- */
  .foot { padding: 68px 18px 34px; }
  .foot .top { grid-template-columns: 1fr 1fr; gap: 28px 24px; padding-bottom: 30px; }
  .foot .brand { grid-column: 1 / -1; }
  .foot .brand img { height: 54px; }
  .foot .brand-desc { grid-column: 1 / -1; }
  .foot .brand p, .foot .brand-desc p { max-width: none; }
  .foot .bot { flex-direction: column; gap: 10px; }

  /* ════ PAGE NOS MARQUES ════ */
  .brand-hero { grid-template-columns: 1fr; gap: 32px; padding: 56px 18px 76px; }
  .brand-hero h1 { font-size: 44px; }
  .brand-hero h1[style] { margin-top: 16px !important; }
  .brand-hero .intro { font-size: 15px; margin-top: 16px; max-width: none; }
  .brand-hero .right { padding-top: 0; max-width: none; }
  /* Les trois stats orange restent sur UNE seule ligne */
  .brand-hero .stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .brand-hero .stats .v { font-size: 25px; }
  .brand-hero .stats .k { font-size: 9px; }
  .brand-hero .domains { gap: 6px; margin-top: 20px; }

  .brands-index { padding: 84px 18px !important; }
  .brands-index .head { margin-bottom: 40px; }
  .brands-index h2 { font-size: 30px; }
  .brands-index .grid { grid-template-columns: 1fr; }
  .brands-index .cell { padding: 22px 18px; gap: 12px; }
  .brands-index .cell img { height: 30px; }
}
