@font-face {
  font-family: "Lenoha Display";
  src: url("../fonts/Anton-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #0a0a0a;
  --bone: #f1eee5;
  --volt: #c9ff38;
  --paper: #faf9f5;
  --line: rgba(10, 10, 10, 0.18);
  --muted: #6f706b;
  --blue: #2358d5;
  --font-display: "Lenoha Display", "Arial Narrow", sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { max-width: 100%; overflow-x: hidden; scroll-behavior: smooth; }
body {
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
}
a { color: inherit; text-decoration: none; }
svg { display: block; }
img { max-width: 100%; }
.no-break { white-space: nowrap; }

:where(h1, h2, h3, h4, .button, .text-link, .product-badge, .section-kicker) {
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

:where(main, section, article, header, footer, nav, form, fieldset, div) { min-width: 0; }

.announcement {
  min-height: 34px;
  padding: 8px 4vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.announcement-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--volt); }

.site-header {
  height: 88px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 249, 245, .94);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 30;
}
.brand { width: 74px; height: 74px; display: grid; place-items: center; }
.brand img { width: 70px; height: 70px; object-fit: contain; display: block; }
.desktop-nav { display: flex; gap: clamp(14px, 2vw, 32px); align-items: center; }
.desktop-nav a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--ink);
  transition: right .25s ease;
}
.desktop-nav a:hover::after { right: 0; }
.header-cta {
  justify-self: end;
  height: 42px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 17px;
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.header-cta svg, .button svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.mobile-menu { display: none; }

.hero {
  min-height: calc(100vh - 122px);
  display: grid;
  grid-template-columns: 48% 52%;
  border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: clamp(56px, 7vw, 112px) 5vw 56px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow span { padding: 7px 9px; background: var(--volt); }
.hero h1 {
  margin: 0;
  max-width: 620px;
  font-family: var(--font-display);
  font-size: clamp(84px, 10.4vw, 166px);
  line-height: .76;
  letter-spacing: -.045em;
  text-transform: uppercase;
  font-weight: 900;
}
.hero h1 em { color: transparent; -webkit-text-stroke: 2px var(--ink); font-style: normal; }
.hero-lead {
  max-width: 500px;
  margin: 34px 0 0;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.45;
  letter-spacing: -.02em;
}
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.text-link { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; border-bottom: 1px solid; padding: 8px 0; }
.hero-facts {
  margin-top: clamp(48px, 7vh, 85px);
  padding-top: 19px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.hero-facts div { display: flex; flex-direction: column; gap: 4px; }
.hero-facts strong { font-family: var(--font-display); font-size: 24px; letter-spacing: .02em; }
.hero-facts span { max-width: 105px; font-size: 9px; font-weight: 700; line-height: 1.4; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

.hero-visual { position: relative; min-height: 660px; background: var(--volt); overflow: hidden; }
.hero-visual::before {
  content: "";
  position: absolute;
  width: 62%;
  aspect-ratio: 1;
  border: 1px solid rgba(10,10,10,.25);
  border-radius: 50%;
  right: -22%;
  top: -16%;
}
.hero-image-wrap { position: absolute; inset: 7.5% 12% 9% 8%; overflow: hidden; background: #c8c4bb; }
.hero-image { object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.hero-visual:hover .hero-image { transform: scale(1.025); }
.hero-index {
  position: absolute;
  top: 2.2%;
  left: 2.8%;
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(58px, 6vw, 102px);
  line-height: 1;
  letter-spacing: -.05em;
}
.product-stamp {
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 4;
  min-width: 220px;
  padding: 20px 23px;
  background: var(--ink);
  color: white;
  display: grid;
  gap: 4px;
}
.product-stamp span { color: var(--volt); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; font-weight: 800; }
.product-stamp strong { font-size: 17px; }
.product-stamp small { color: #aaa; font-size: 11px; }
.vertical-note {
  position: absolute;
  right: 2.5%;
  top: 43%;
  z-index: 4;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.trust-strip {
  min-height: 82px;
  padding: 20px 4vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.trust-strip p { white-space: nowrap; margin: 0; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }
.trust-strip span { color: #8a8b84; }

.products-section { padding: 115px 4vw 125px; background: var(--paper); }
.section-heading {
  margin-bottom: 50px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}
.section-kicker { margin: 0 0 14px; font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.section-heading h2, .experience h2, .faq-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(54px, 6.4vw, 98px);
  line-height: .92;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card { min-width: 0; }
.product-image { display: block; position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--bone); }
.product-image img { object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-number { position: absolute; top: 15px; left: 15px; font-family: var(--font-display); font-size: 28px; line-height: 1; }
.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 7px 9px;
  background: var(--volt);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.quick-view {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  height: 48px;
  padding: 0 17px;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  transform: translateY(75px);
  transition: transform .3s ease;
}
.quick-view svg, .collection-card svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.product-card:hover .quick-view, .product-image:focus-visible .quick-view { transform: translateY(0); }
.product-info { padding-top: 17px; display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.product-info h3 { margin: 0 0 5px; font-size: 15px; letter-spacing: -.02em; }
.product-info p { margin: 0; color: var(--muted); font-size: 11px; }
.product-info strong { white-space: nowrap; font-size: 12px; }
.product-sizes { margin: 13px 0 0; padding-top: 11px; border-top: 1px solid var(--line); color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.drop-more-wrap { margin-top: 48px; display: flex; justify-content: center; }
.drop-more svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.collections { display: grid; grid-template-columns: 36% 32% 32%; min-height: 740px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.collection-cards-host { display: contents; }
.collection-empty-note { margin: auto; padding: 40px; color: var(--muted); line-height: 1.6; }
.collection-title { padding: 80px 5vw; background: var(--bone); display: flex; flex-direction: column; justify-content: center; }
.collection-title h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(65px, 7.1vw, 112px);
  line-height: .82;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.collection-title h2 em { color: transparent; -webkit-text-stroke: 1.5px var(--ink); font-style: normal; }
.collection-card { position: relative; overflow: hidden; border-left: 1px solid var(--line); color: white; display: flex; flex-direction: column; justify-content: flex-end; padding: 35px 30px; }
.collection-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,0) 58%); z-index: 1; }
.collection-card img { object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.collection-card:hover img { transform: scale(1.04); }
.collection-card span, .collection-card strong, .collection-card svg { position: relative; z-index: 2; }
.collection-card span { margin-bottom: 10px; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.collection-card strong { font-family: var(--font-display); font-size: clamp(38px, 4vw, 66px); line-height: .94; text-transform: uppercase; }
.collection-card svg { margin-top: 25px; }
.collection-city img { object-position: center; }

.reviews-section { padding: 90px 5vw 100px; overflow: hidden; background: #dce8f1; border-bottom: 1px solid var(--ink); }
.reviews-intro { max-width: 470px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.reviews-bubble { position: relative; margin-bottom: 28px; }
.reviews-bubble::before, .reviews-bubble::after { content: ""; position: absolute; left: 30px; pointer-events: none; clip-path: polygon(0 0, 100% 0, 0 100%); }
.reviews-bubble::before { width: 34px; height: 24px; bottom: -23px; background: var(--ink); }
.reviews-bubble::after { width: 31px; height: 21px; bottom: -20px; left: 31px; background: #dce8f1; }
.reviews-viewport { position: relative; z-index: 1; overflow: hidden; border: 1px solid var(--ink); border-radius: 28px; background: #dce8f1; touch-action: pan-y; }
.reviews-track { display: flex; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.review-card { min-height: 220px; flex: 0 0 50%; padding: 26px clamp(22px, 3vw, 42px); display: flex; flex-direction: column; border-right: 1px solid var(--ink); }
.review-stars { color: #795f00; font-size: 17px; letter-spacing: .1em; }
.review-card blockquote { margin: 25px 0 24px; font-family: Georgia, serif; font-size: clamp(17px, 1.45vw, 22px); line-height: 1.45; }
.review-card footer { margin-top: auto; padding-top: 13px; display: grid; gap: 5px; border-top: 1px solid var(--line); }
.review-card footer strong { font-size: 12px; text-transform: uppercase; letter-spacing: .11em; }
.review-card footer span { color: var(--muted); font-size: 10px; }
.reviews-bottom { margin-top: 0; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.reviews-controls { display: flex; align-items: center; justify-content: flex-end; gap: 14px; }
.reviews-controls button { width: 46px; height: 46px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 18px; }
.reviews-controls button:hover, .reviews-controls button:focus-visible { background: var(--ink); color: white; }
.reviews-controls span { min-width: 62px; text-align: center; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.review-open-button { min-width: 190px; border: 0; cursor: pointer; }
.reviews-empty { min-height: 180px; padding: 36px; display: grid; place-content: center; text-align: center; border: 1px solid var(--ink); background: rgba(255,255,255,.32); }
.reviews-empty strong { font-family: var(--font-display); font-size: clamp(27px, 3vw, 42px); font-weight: 400; text-transform: uppercase; }
.reviews-empty p { margin: 10px 0 0; color: var(--muted); font-size: 13px; }
.review-form-panel { max-width: 980px; margin: 38px auto 0; padding: clamp(24px, 4vw, 46px); border: 1px solid var(--ink); background: var(--paper); }
.review-form-heading { margin-bottom: 28px; display: flex; align-items: flex-start; justify-content: space-between; gap: 25px; }
.review-form-heading h3 { margin: 0; font-family: var(--font-display); font-size: clamp(38px, 5vw, 68px); font-weight: 400; line-height: .9; text-transform: uppercase; }
.review-form-heading > button { width: 44px; height: 44px; flex: 0 0 44px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 25px; }
.review-form { display: grid; gap: 18px; }
.review-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.review-form-grid > label { display: grid; gap: 8px; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.review-form-grid .wide { grid-column: 1 / -1; }
.review-form input:not([type="radio"]):not([type="checkbox"]), .review-form textarea, .review-form select { width: 100%; min-height: 48px; padding: 11px 12px; border: 1px solid var(--ink); border-radius: 0; background: white; color: var(--ink); font-size: 16px; letter-spacing: 0; text-transform: none; }
.review-form textarea { resize: vertical; line-height: 1.5; }
.review-rating { margin: 0; padding: 10px 12px; border: 1px solid var(--ink); }
.review-rating legend { padding: 0 5px; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.review-rating > div { min-height: 30px; display: flex; flex-direction: row-reverse; justify-content: flex-end; align-items: center; }
.review-rating input { width: 1px; height: 1px; position: absolute; opacity: 0; }
.review-rating label { padding: 0 3px; color: #aaa; cursor: pointer; font-size: 26px; line-height: 1; }
.review-rating input:checked ~ label, .review-rating label:hover, .review-rating label:hover ~ label { color: #795f00; }
.review-rating input:focus-visible + label { outline: 3px solid #4285f4; outline-offset: 2px; }
.review-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 11px; line-height: 1.55; }
.review-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--ink); }
.review-consent a { font-weight: 800; text-decoration: underline; }
.review-private-note { margin: 0; padding: 12px; border-left: 3px solid var(--volt); background: var(--bone); color: var(--muted); font-size: 10px; line-height: 1.55; }
.review-honeypot { width: 1px; height: 1px; position: absolute; left: -10000px; overflow: hidden; }
.review-form .button { width: 100%; border: 0; cursor: pointer; }
.review-form .button:disabled { opacity: .55; cursor: wait; }
.review-form-message { min-height: 20px; margin: 0; font-size: 11px; font-weight: 800; }
.review-form-message.error { color: #9a0808; }
.review-form-message.success { color: #244c02; }
.sr-only { width: 1px; height: 1px; padding: 0; position: absolute; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.lookbook { min-height: 720px; display: grid; grid-template-columns: 30% repeat(3, minmax(0, 1fr)); background: var(--ink); color: white; }
.lookbook-heading { padding: 75px 3.5vw; display: flex; flex-direction: column; justify-content: center; background: var(--bone); color: var(--ink); }
.lookbook-heading h2 { margin: 0; font-family: var(--font-display); font-size: clamp(57px, 6.4vw, 102px); line-height: .84; letter-spacing: -.04em; text-transform: uppercase; }
.lookbook-heading h2 em { color: transparent; -webkit-text-stroke: 1.5px var(--ink); font-style: normal; }
.lookbook-heading > p:last-child { max-width: 390px; margin: 36px 0 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.lookbook-shot { min-width: 0; min-height: 720px; margin: 0; position: relative; overflow: hidden; border-left: 1px solid rgba(255,255,255,.26); }
.lookbook-shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.58), transparent 48%); }
.lookbook-shot img { object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.lookbook-shot:hover img { transform: scale(1.035); }
.lookbook-shot-one img { object-position: 50% 50%; }
.lookbook-shot-two img { object-position: 50% 30%; }
.lookbook-shot-three img { object-position: 50% 55%; }
.lookbook-shot figcaption { position: absolute; left: 22px; bottom: 22px; z-index: 2; padding: 8px 10px; background: var(--volt); color: var(--ink); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }

.manifesto { min-height: 780px; display: grid; grid-template-columns: 50% 50%; background: var(--volt); }
.manifesto-image { position: relative; min-height: 680px; overflow: hidden; }
.manifesto-image img { object-fit: cover; object-position: 50% 35%; }
.manifesto-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.48), transparent 45%); }
.manifesto-image span { position: absolute; left: 30px; bottom: 30px; z-index: 2; color: white; font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.manifesto-copy { padding: clamp(65px, 8vw, 125px) 8vw; display: flex; flex-direction: column; justify-content: center; }
.manifesto-copy h2 {
  max-width: 700px;
  margin: 0;
  overflow-wrap: normal;
  font-family: var(--font-display);
  font-size: clamp(61px, 7.2vw, 112px);
  line-height: .87;
  letter-spacing: -.038em;
  text-transform: uppercase;
}
.manifesto-copy > p:not(.section-kicker) { max-width: 560px; margin: 34px 0 0; font-size: clamp(17px, 1.6vw, 22px); line-height: 1.5; }
.manifesto-copy blockquote { margin: 42px 0 35px; padding: 20px 0; border-top: 1px solid rgba(10,10,10,.4); border-bottom: 1px solid rgba(10,10,10,.4); font-family: Georgia, serif; font-size: clamp(20px, 2vw, 30px); font-style: italic; }
.button-outline { align-self: flex-start; color: var(--ink); border: 1px solid var(--ink); }
.button-outline:hover { background: var(--ink); color: white; }

.home-brands { padding: 90px 0 100px; overflow: hidden; background: var(--bone); border-bottom: 1px solid var(--ink); }
.home-brands .section-heading { padding-inline: 5vw; }
.home-brand-marquee { width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: none; touch-action: pan-x; }
.home-brand-marquee::-webkit-scrollbar { display: none; }
.home-brand-track { width: max-content; display: flex; animation: brand-marquee var(--brand-marquee-duration, 30s) linear infinite; }
.home-brand-group { display: flex; gap: 10px; padding-right: 10px; }
.home-brand-card { width: clamp(96px, 8vw, 112px); height: clamp(76px, 6.3vw, 88px); position: relative; flex: 0 0 auto; overflow: hidden; border: 1px solid var(--ink); background: #dce8f1; color: white; }
.home-brand-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(0,0,0,.82), rgba(0,0,0,0) 62%); }
.home-brand-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.home-brand-card:hover img, .home-brand-card:focus-visible img { transform: scale(1.05); }
.home-brand-card strong { position: absolute; left: 8px; right: 8px; bottom: 7px; z-index: 2; overflow: hidden; font-family: var(--font-display); font-size: clamp(12px, 1.05vw, 15px); line-height: .95; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.home-brand-placeholder { position: absolute; inset: 0; display: grid; place-items: center; background: #f1a2b9; color: var(--ink); font-family: var(--font-display); font-size: 30px; text-transform: uppercase; }
.home-brand-card-other { background: var(--volt); color: var(--ink); }
.home-brand-card-other::after { background: linear-gradient(to top, rgba(201,255,56,.98), rgba(201,255,56,0) 72%); }
.home-brand-card-other .home-brand-placeholder { background: var(--volt); }
.home-brand-marquee:hover .home-brand-track, .home-brand-marquee:focus-within .home-brand-track, .home-brand-marquee:active .home-brand-track { animation-play-state: paused; }
@keyframes brand-marquee { to { transform: translateX(-50%); } }

.experience { padding: 120px 5vw; background: var(--paper); }
.experience-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.experience-grid article { min-height: 310px; padding: 30px 3vw 35px 0; display: flex; flex-direction: column; border-right: 1px solid var(--line); }
.experience-grid article + article { padding-left: 3vw; }
.experience-grid article:last-child { border-right: 0; }
.experience-grid article > span { width: 43px; height: 43px; display: grid; place-items: center; background: var(--ink); color: white; font-family: var(--font-display); font-size: 16px; }
.experience-grid h3 { margin: auto 0 14px; font-family: var(--font-display); font-size: clamp(31px, 3vw, 47px); line-height: .95; text-transform: uppercase; }
.experience-grid p { max-width: 410px; margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.home-showcase[hidden] { display: none; }
.best-seller-section { background: var(--bone); border-top: 1px solid var(--ink); }
.lenohams-select-section { background: var(--volt); border-top: 1px solid var(--ink); }
.lenohams-select-grid .product-card:first-child { grid-column: span 2; }
.lenohams-select-grid .product-card:first-child .product-image { aspect-ratio: 8 / 5; }

.faq-section { padding: 115px 5vw; display: grid; grid-template-columns: 38% 62%; background: var(--bone); border-top: 1px solid var(--line); }
.faq-intro { padding-right: 7vw; }
.faq-intro > p:last-child { max-width: 300px; color: var(--muted); line-height: 1.6; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--ink); }
.faq-list summary { min-height: 86px; padding: 10px 0; list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: clamp(17px, 1.5vw, 22px); font-weight: 700; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 28px; font-weight: 300; transition: transform .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 700px; margin: -7px 0 27px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.faq-more-link { display: inline-block; margin-top: 25px; padding-bottom: 6px; border-bottom: 1px solid; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }

.final-cta { min-height: 690px; padding: 100px 7vw; background: var(--ink); color: white; position: relative; overflow: hidden; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.final-cta::before { content: "LH"; position: absolute; right: -3vw; top: 50%; transform: translateY(-51%); color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.16); font-family: var(--font-display); font-size: min(52vw, 800px); line-height: .75; letter-spacing: -.09em; }
.final-cta > * { position: relative; z-index: 1; }
.final-cta p { margin: 0 0 24px; color: var(--volt); font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.final-cta h2 { margin: 0 0 42px; overflow-wrap: normal; word-break: normal; hyphens: none; font-family: var(--font-display); font-size: clamp(68px, 10vw, 158px); line-height: .8; letter-spacing: -.04em; text-transform: uppercase; }
.button-light { background: var(--volt); color: var(--ink); }

.newsletter-section { padding: 100px 6vw; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr); gap: clamp(45px, 8vw, 130px); background: var(--volt); border-top: 1px solid var(--ink); }
.newsletter-copy h2 { max-width: 740px; margin: 0; overflow-wrap: normal; word-break: normal; hyphens: none; font-family: var(--font-display); font-size: clamp(65px, 8vw, 124px); line-height: .82; letter-spacing: -.04em; text-transform: uppercase; }
.newsletter-copy h2 em { color: transparent; -webkit-text-stroke: 1.5px var(--ink); font-style: normal; }
.newsletter-copy > p:last-child { max-width: 540px; margin: 32px 0 0; font-size: 17px; line-height: 1.6; }
.newsletter-form { align-self: center; display: grid; gap: 14px; }
.newsletter-form > label:not(.newsletter-consent):not(.newsletter-honeypot) { display: grid; gap: 8px; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.newsletter-form input[type="text"], .newsletter-form input[type="email"] { width: 100%; min-height: 54px; padding: 12px 14px; border: 1px solid var(--ink); border-radius: 0; background: rgba(255,255,255,.75); }
.newsletter-consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: 11px; line-height: 1.55; }
.newsletter-consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--ink); }
.newsletter-consent a { text-decoration: underline; font-weight: 800; }
.newsletter-honeypot { width: 1px; height: 1px; position: absolute; left: -10000px; overflow: hidden; }
.newsletter-form .button { width: 100%; border: 0; cursor: pointer; }
.newsletter-form .button:disabled { opacity: .55; cursor: wait; }
.newsletter-message { min-height: 20px; margin: 0; font-size: 11px; font-weight: 800; }
.newsletter-message.error { color: #9a0808; }
.newsletter-message.success { color: #244c02; }

.site-footer { padding: 75px 5vw 25px; background: #050505; color: white; }
.footer-brand { display: flex; align-items: center; gap: 19px; }
.footer-brand img { width: 118px; height: auto; }
.footer-links { margin: 70px 0; display: grid; grid-template-columns: repeat(2, minmax(180px, 280px)); gap: 55px; justify-content: end; }
.footer-links div { display: grid; align-content: start; }
.footer-links nav { display: grid; }
.footer-links p { margin: 0 0 18px; color: #777; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.footer-links a { padding: 8px 0; font-size: 14px; transition: color .2s ease; }
.footer-links a:hover { color: var(--volt); }
.footer-bottom { padding-top: 21px; border-top: 1px solid rgba(255,255,255,.18); display: flex; justify-content: space-between; gap: 20px; color: #777; font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-legal { margin-top: 22px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); color: #777; font-size: 9px; letter-spacing: .08em; }
.footer-legal a { text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--volt); }

.legal-page { background: var(--paper); }
.legal-hero { min-height: 530px; padding: 90px 7vw 70px; display: flex; flex-direction: column; justify-content: center; background: var(--bone); border-bottom: 1px solid var(--ink); }
.legal-hero h1 { max-width: 1000px; margin: 0; overflow-wrap: normal; font-family: var(--font-display); font-size: clamp(68px, 10vw, 150px); line-height: .8; text-transform: uppercase; }
.legal-hero h1 em { color: transparent; -webkit-text-stroke: 1.5px var(--ink); font-style: normal; }
.legal-hero > p:last-child { max-width: 650px; margin: 35px 0 0; font-size: 18px; line-height: 1.6; }
.legal-content { max-width: 980px; margin: 0 auto; padding: 90px 6vw 120px; }
.legal-content section { padding: 30px 0; display: grid; grid-template-columns: minmax(210px, .65fr) 1.35fr; gap: 45px; border-top: 1px solid var(--ink); }
.legal-content h2 { margin: 0; font-family: var(--font-display); font-size: 30px; text-transform: uppercase; }
.legal-content section p { margin: 0; color: #454641; font-size: 16px; line-height: 1.75; }
.legal-content section > div { min-width: 0; display: grid; gap: 15px; }
.legal-content section a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

.faq-page { background: var(--paper); }
.faq-page-hero { background: var(--volt); }
.faq-page-nav { padding: 0 5vw; position: sticky; top: 87px; z-index: 20; display: flex; overflow-x: auto; overscroll-behavior-inline: contain; background: var(--ink); color: white; }
.faq-page-nav a { min-width: max-content; min-height: 54px; padding: 0 18px; display: inline-flex; align-items: center; border-right: 1px solid #383838; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.faq-page-nav a:hover, .faq-page-nav a:focus-visible { background: var(--volt); color: var(--ink); }
.faq-page-content { max-width: 1180px; margin: 0 auto; padding: 80px 5vw 120px; }
.faq-group { padding: 52px 0; display: grid; grid-template-columns: minmax(220px, .65fr) 1.35fr; gap: 55px; scroll-margin-top: 155px; border-top: 1px solid var(--ink); }
.faq-group-heading h2 { max-width: 390px; margin: 8px 0 0; font-family: var(--font-display); font-size: clamp(42px, 5vw, 68px); line-height: .88; text-transform: uppercase; }
.faq-contact-card { margin-top: 45px; padding: clamp(35px, 6vw, 80px); background: var(--volt); }
.faq-contact-card h2 { max-width: 760px; margin: 12px 0 20px; font-family: var(--font-display); font-size: clamp(50px, 7.5vw, 100px); line-height: .85; text-transform: uppercase; }
.faq-contact-card > p:not(.section-kicker) { max-width: 620px; margin: 0 0 28px; font-size: 16px; line-height: 1.6; }

.whatsapp-float { position: fixed; right: 18px; bottom: 18px; z-index: 25; min-height: 48px; padding: 0 17px; display: flex; align-items: center; gap: 15px; background: var(--volt); color: var(--ink); border: 1px solid var(--ink); box-shadow: 0 8px 30px rgba(0,0,0,.18); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.whatsapp-float svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.journal-preview { padding: 120px 5vw 135px; background: #dce8f1; border-top: 1px solid var(--line); }
.journal-preview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.journal-preview-card { min-width: 0; padding: 18px 18px 28px; border-right: 1px solid var(--ink); transition: background .25s ease; }
.journal-preview-card:last-child { border-right: 0; }
.journal-preview-card:hover { background: rgba(255,255,255,.45); }
.journal-preview-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bone); }
.journal-preview-image img { object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.journal-preview-card:hover img { transform: scale(1.035); }
.journal-preview-image > span { position: absolute; top: 13px; left: 13px; width: 43px; height: 43px; display: grid; place-items: center; background: var(--ink); color: white; font-family: var(--font-display); font-size: 19px; }
.journal-preview-copy { padding: 23px 4px 0; }
.journal-preview-copy p, .journal-side-card p, .journal-feature-copy > p { margin: 0 0 14px; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.journal-preview-copy h3 { min-height: 2.6em; margin: 0 0 30px; font-family: var(--font-display); font-size: clamp(30px, 3vw, 46px); line-height: .94; text-transform: uppercase; }
.journal-preview-copy strong { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid var(--ink); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.journal-preview-copy svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }

.journal-shell { background: var(--paper); }
.journal-index { min-height: 100vh; }
.journal-hero { min-height: 620px; padding: 105px 6vw 70px; position: relative; background: var(--ink); color: white; overflow: hidden; }
.journal-hero::after { content: "J"; position: absolute; right: 2vw; bottom: -18%; color: transparent; -webkit-text-stroke: 1px rgba(201,255,56,.3); font-family: var(--font-display); font-size: min(48vw, 680px); line-height: 1; }
.journal-hero > * { position: relative; z-index: 1; }
.journal-hero .section-kicker { color: var(--volt); }
.journal-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(108px, 15vw, 228px); line-height: .72; letter-spacing: -.05em; text-transform: uppercase; }
.journal-hero h1 em { color: transparent; -webkit-text-stroke: 2px white; font-style: normal; }
.journal-hero > p:not(.section-kicker) { max-width: 530px; margin: 46px 0 0; color: #b9b9b4; font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; }
.journal-issue { position: absolute; right: 6vw; bottom: 76px; font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; writing-mode: vertical-rl; }

.journal-featured { padding: 90px 5vw 130px; display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr); gap: 22px; background: var(--paper); }
.journal-feature-card { min-width: 0; display: grid; grid-template-rows: minmax(420px, 62vw) auto; border: 1px solid var(--ink); }
.journal-feature-image, .journal-side-image { position: relative; overflow: hidden; }
.journal-feature-image img, .journal-side-image img { object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.journal-feature-card:hover img, .journal-side-card:hover img { transform: scale(1.035); }
.journal-feature-copy { padding: clamp(28px, 4vw, 60px); }
.journal-feature-copy h2 { max-width: 860px; margin: 0; font-family: var(--font-display); font-size: clamp(48px, 6.5vw, 104px); line-height: .88; letter-spacing: -.03em; text-transform: uppercase; }
.journal-feature-copy > span { max-width: 650px; margin: 26px 0 38px; display: block; color: #494a46; font-size: 16px; line-height: 1.6; }
.journal-feature-copy strong { display: inline-block; padding-bottom: 7px; border-bottom: 1px solid; font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.accent-volt .journal-feature-copy { background: var(--volt); }
.accent-blue .journal-feature-copy { background: #bcd8e9; }
.accent-bone .journal-feature-copy { background: var(--bone); }
.journal-side-list { border-top: 1px solid var(--ink); }
.journal-side-card { padding: 20px 0; display: grid; grid-template-columns: 42% 1fr; gap: 20px; border-bottom: 1px solid var(--ink); }
.journal-side-image { min-height: 230px; background: var(--bone); }
.journal-side-image > span { position: absolute; top: 10px; left: 10px; width: 35px; height: 35px; display: grid; place-items: center; background: var(--volt); font-family: var(--font-display); }
.journal-side-card > div:last-child { display: flex; flex-direction: column; align-items: flex-start; }
.journal-side-card h2 { margin: 0; font-family: var(--font-display); font-size: clamp(30px, 3vw, 49px); line-height: .92; text-transform: uppercase; }
.journal-side-card strong { margin-top: auto; padding-bottom: 5px; border-bottom: 1px solid; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }

.journal-promise { padding: 110px 6vw 125px; background: var(--volt); display: grid; grid-template-columns: 22% 42% 36%; align-items: start; }
.journal-promise > p { margin: 9px 0 0; font-size: 9px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.journal-promise > h2 { margin: 0; font-family: var(--font-display); font-size: clamp(61px, 7.5vw, 118px); line-height: .83; letter-spacing: -.035em; text-transform: uppercase; }
.journal-promise > div { border-top: 1px solid var(--ink); display: grid; grid-template-columns: 42px 1fr; }
.journal-promise > div span, .journal-promise > div p { margin: 0; padding: 18px 0; border-bottom: 1px solid var(--ink); }
.journal-promise > div span { font-family: var(--font-display); font-size: 19px; }
.journal-promise > div p { font-size: 14px; line-height: 1.55; }

.article-page { background: var(--paper); }
.article-hero { padding: 75px 8vw 90px; }
.article-back { display: inline-block; margin-bottom: 70px; padding-bottom: 6px; border-bottom: 1px solid; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.article-meta { display: flex; align-items: center; gap: 13px; margin: 0 0 27px; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.article-meta span { width: 4px; height: 4px; border-radius: 50%; background: var(--volt); }
.article-hero h1 { max-width: 1250px; margin: 0; font-family: var(--font-display); font-size: clamp(67px, 9.6vw, 154px); line-height: .84; letter-spacing: -.035em; text-transform: uppercase; }
.article-deck { max-width: 760px; margin: 40px 0 0 auto; color: var(--muted); font-size: clamp(18px, 1.8vw, 26px); line-height: 1.5; }
.article-cover { height: min(77vw, 920px); position: relative; overflow: hidden; background: var(--bone); }
.article-cover img { object-fit: cover; }
.article-cover > span { position: absolute; right: 24px; bottom: 24px; padding: 10px 13px; background: var(--ink); color: white; font-size: 8px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.article-body { max-width: 1080px; margin: 0 auto; padding: 100px 5vw 130px; }
.article-intro { max-width: 870px; margin: 0 0 100px auto; font-family: Georgia, serif; font-size: clamp(25px, 3vw, 43px); line-height: 1.38; letter-spacing: -.025em; }
.article-body > section { padding: 46px 0 58px; display: grid; grid-template-columns: 100px 1fr; border-top: 1px solid var(--ink); }
.article-index { font-family: var(--font-display); font-size: 27px; }
.article-body section h2 { max-width: 760px; margin: 0 0 28px; font-family: var(--font-display); font-size: clamp(42px, 5vw, 73px); line-height: .94; text-transform: uppercase; }
.article-body section p, .article-body li { max-width: 720px; color: #484944; font-size: 17px; line-height: 1.8; }
.article-body ul { max-width: 720px; margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.article-body li { padding: 13px 0 13px 28px; border-bottom: 1px solid var(--line); position: relative; }
.article-body li::before { content: "↗"; position: absolute; left: 0; color: var(--ink); font-weight: 800; }
.article-help { margin-top: 60px; padding: 55px clamp(25px, 5vw, 75px); background: var(--volt); }
.article-help p { margin: 0 0 12px; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.article-help h2 { max-width: 700px; margin: 0 0 38px; font-family: var(--font-display); font-size: clamp(43px, 6vw, 80px); line-height: .9; text-transform: uppercase; }
.article-help a { display: inline-block; padding-bottom: 7px; border-bottom: 1px solid; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.article-related { padding: 90px 7vw 110px; background: var(--ink); color: white; }
.article-related > p { color: var(--volt); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.article-related a { display: grid; grid-template-columns: 170px 1fr auto; align-items: end; gap: 30px; padding: 30px 0; border-top: 1px solid rgba(255,255,255,.35); border-bottom: 1px solid rgba(255,255,255,.35); }
.article-related span, .article-related strong { font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.article-related h2 { max-width: 780px; margin: 0; font-family: var(--font-display); font-size: clamp(45px, 6vw, 91px); line-height: .88; text-transform: uppercase; }

.logo-lab { background: var(--paper); }
.logo-lab-nav { min-height: 54px; padding: 0 4vw; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: var(--ink); color: white; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.logo-lab-nav a { color: var(--volt); }
.logo-lab-hero { min-height: 720px; padding: 90px 6vw 70px; background: var(--volt); position: relative; overflow: hidden; }
.logo-lab-hero::after { content: "04"; position: absolute; right: -2vw; top: 50%; transform: translateY(-50%); color: transparent; -webkit-text-stroke: 1px rgba(10,10,10,.22); font-family: var(--font-display); font-size: min(53vw, 780px); line-height: .75; }
.logo-lab-hero > * { position: relative; z-index: 1; }
.logo-lab-hero > p { margin: 0 0 35px; font-size: 10px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.logo-lab-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(100px, 15vw, 230px); line-height: .72; letter-spacing: -.045em; text-transform: uppercase; }
.logo-lab-hero h1 em { color: transparent; -webkit-text-stroke: 2px var(--ink); font-style: normal; }
.logo-lab-hero > div { max-width: 690px; margin: 60px 0 0 auto; display: grid; grid-template-columns: 1.5fr 1fr; gap: 35px; align-items: start; }
.logo-lab-hero > div p { margin: 0; font-size: clamp(17px, 1.6vw, 23px); line-height: 1.5; }
.logo-lab-hero > div span { padding-top: 7px; border-top: 1px solid var(--ink); font-size: 10px; font-weight: 800; line-height: 1.6; letter-spacing: .08em; text-transform: uppercase; }
.logo-concepts { padding: 25px 4vw 120px; }
.logo-concept { padding: 80px 0 95px; border-bottom: 1px solid var(--ink); }
.logo-concept-head { margin-bottom: 32px; display: grid; grid-template-columns: 100px 1fr; align-items: end; }
.logo-concept-head > span { font-family: var(--font-display); font-size: 40px; }
.logo-concept-head p { margin: 0 0 5px; color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.logo-concept-head h2 { margin: 0; font-family: var(--font-display); font-size: clamp(54px, 7vw, 105px); line-height: .85; text-transform: uppercase; }
.logo-showcase { display: grid; grid-template-columns: 3fr 1fr; gap: 14px; }
.logo-full-preview, .logo-mark-preview { min-height: 390px; position: relative; background: white; border: 1px solid var(--line); overflow: hidden; }
.logo-full-preview img { object-fit: contain; padding: clamp(28px, 5vw, 85px); }
.logo-mark-preview img { object-fit: contain; padding: clamp(30px, 4vw, 65px); }
.logo-concept-02 .logo-full-preview, .logo-concept-02 .logo-mark-preview { background: #e6e7e3; }
.logo-concept-03 .logo-full-preview, .logo-concept-03 .logo-mark-preview { background: var(--bone); }
.logo-concept-04 .logo-full-preview, .logo-concept-04 .logo-mark-preview { background: #dce8f1; }
.logo-concept-info { margin-top: 30px; display: grid; grid-template-columns: 1.4fr .9fr 1.3fr; gap: 35px; align-items: start; }
.logo-concept-info > p { max-width: 590px; margin: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }
.logo-traits { display: flex; flex-wrap: wrap; gap: 7px; }
.logo-traits span { padding: 7px 10px; border: 1px solid var(--ink); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.logo-downloads { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.logo-downloads a { min-height: 42px; padding: 0 13px; display: inline-flex; align-items: center; border: 1px solid var(--ink); font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.logo-downloads a:last-child { background: var(--ink); color: white; }
.logo-lab-note { padding: 110px 7vw 125px; background: var(--ink); color: white; }
.logo-lab-note > p:first-child { color: var(--volt); font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.logo-lab-note h2 { margin: 22px 0 40px; font-family: var(--font-display); font-size: clamp(55px, 8vw, 122px); line-height: .85; text-transform: uppercase; }
.logo-lab-note > p:not(:first-child) { max-width: 660px; color: #aaa; font-size: 17px; line-height: 1.6; }
.logo-lab-note a { margin-top: 35px; display: inline-block; padding-bottom: 7px; border-bottom: 1px solid var(--volt); color: var(--volt); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }

.logo-restored-hero::after { content: "01"; }
.logo-restoration { padding: 120px 5vw; display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr); gap: 6vw; align-items: center; border-bottom: 1px solid var(--ink); }
.logo-restoration-copy > p:first-child { margin: 0 0 22px; font-size: 9px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.logo-restoration-copy h2 { margin: 0; font-family: var(--font-display); font-size: clamp(58px, 7.2vw, 112px); line-height: .85; letter-spacing: -.035em; text-transform: uppercase; }
.logo-restoration-copy > p:last-child { max-width: 540px; margin: 38px 0 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.logo-restoration-preview { min-height: 690px; position: relative; overflow: hidden; background: var(--bone); border: 1px solid var(--line); }
.logo-restoration-preview img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: contain; padding: clamp(35px, 5vw, 90px); }
.logo-variants { padding: 115px 4vw 130px; background: #dce8f1; }
.logo-variant-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.logo-variant-card { min-width: 0; border: 1px solid var(--ink); background: var(--paper); }
.logo-variant-image { aspect-ratio: 1 / 1; position: relative; overflow: hidden; background: var(--paper); }
.logo-variant-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: contain; padding: clamp(28px, 4vw, 64px); }
.logo-variant-paper .logo-variant-image, .logo-variant-volt .logo-variant-image { background: var(--ink); }
.logo-variant-copy { min-height: 230px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; border-top: 1px solid var(--ink); }
.logo-variant-copy h3 { margin: 0 0 8px; font-family: var(--font-display); font-size: 39px; line-height: 1; text-transform: uppercase; }
.logo-variant-copy p { margin: 0; color: var(--muted); font-size: 11px; font-weight: 700; line-height: 1.45; letter-spacing: .08em; text-transform: uppercase; }
.logo-variant-card .logo-downloads { justify-content: flex-start; }
.logo-variant-card .logo-downloads a:last-child { background: var(--ink); color: white; }

a:focus-visible, summary:focus-visible { outline: 3px solid #4285f4; outline-offset: 3px; }

@media (max-width: 900px) {
  .site-header { height: 74px; grid-template-columns: 1fr auto; }
  .brand { width: 62px; height: 62px; }
  .brand img { width: 59px; height: 59px; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; justify-self: end; position: relative; }
  .mobile-menu summary { list-style: none; width: 42px; height: 42px; display: grid; place-content: center; gap: 7px; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 23px; height: 2px; display: block; background: var(--ink); }
  .mobile-menu nav { position: fixed; top: 108px; left: 0; right: 0; padding: 28px 5vw 34px; background: var(--ink); color: white; display: grid; gap: 0; }
  .mobile-menu nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.15); font-size: 15px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 60px 6vw 55px; }
  .hero h1 { font-size: clamp(78px, 23vw, 122px); }
  .hero-visual { min-height: 680px; }
  .trust-strip { justify-content: flex-start; overflow-x: auto; }
  .products-section { padding: 80px 5vw 90px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 45px; }
  .collections { grid-template-columns: 1fr 1fr; }
  .collection-title { grid-column: 1 / -1; min-height: 430px; }
  .collection-card { min-height: 630px; }
  .reviews-section { padding: 85px 5vw 95px; }
  .review-card { flex-basis: 50%; }
  .lookbook { grid-template-columns: 1fr 1fr; min-height: 0; }
  .lookbook-heading { grid-column: 1 / -1; min-height: 480px; padding: 75px 6vw; }
  .lookbook-shot { min-height: 620px; }
  .lookbook-shot-one { grid-column: 1 / -1; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-image { min-height: 720px; }
  .manifesto-copy { min-height: 680px; }
  .experience { padding: 85px 5vw; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-grid article, .experience-grid article + article { min-height: 260px; padding: 25px 0 30px; border-right: 0; border-bottom: 1px solid var(--line); }
  .experience-grid article:last-child { border-bottom: 0; }
  .faq-section { grid-template-columns: 1fr; gap: 50px; padding: 85px 5vw; }
  .final-cta { min-height: 620px; }
  .newsletter-section { grid-template-columns: 1fr; padding: 85px 6vw; }
  .newsletter-form { width: 100%; max-width: 680px; }
  .journal-preview { padding: 85px 5vw 95px; }
  .journal-preview-grid { grid-template-columns: 1fr 1fr; }
  .journal-preview-card { border-bottom: 1px solid var(--ink); }
  .journal-preview-card:nth-child(2) { border-right: 0; }
  .journal-preview-card:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .journal-preview-card:last-child .journal-preview-image { aspect-ratio: 16 / 7; }
  .journal-featured { grid-template-columns: 1fr; }
  .journal-feature-card { grid-template-rows: minmax(480px, 80vw) auto; }
  .journal-side-list { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 0; }
  .journal-side-card { grid-template-columns: 1fr; border-top: 1px solid var(--ink); }
  .journal-side-image { min-height: 360px; }
  .journal-side-card strong { margin-top: 32px; }
  .journal-promise { grid-template-columns: 1fr 2fr; gap: 35px; }
  .journal-promise > div { grid-column: 2; }
  .article-body { padding-top: 80px; }
  .article-intro { margin-bottom: 75px; }
  .article-related a { grid-template-columns: 1fr; align-items: start; }
  .logo-showcase { grid-template-columns: 1fr 1fr; }
  .logo-full-preview { grid-column: 1 / -1; }
  .logo-mark-preview { grid-column: 1; min-height: 350px; }
  .logo-concept-info { grid-template-columns: 1fr 1fr; }
  .logo-downloads { grid-column: 1 / -1; justify-content: flex-start; }
  .logo-restoration { grid-template-columns: 1fr; padding: 85px 6vw; }
  .logo-restoration-preview { min-height: min(85vw, 700px); }
  .logo-variant-grid { grid-template-columns: 1fr 1fr; }
  .logo-variant-card:last-child { grid-column: 1 / -1; }
  .logo-variant-card:last-child .logo-variant-image { aspect-ratio: 16 / 8; }
}

@media (max-width: 560px) {
  .announcement { justify-content: center; padding-inline: 12px; font-size: 8px; gap: 8px; }
  .announcement span:nth-of-type(3) { display: none; }
  .hero-copy { padding-top: 48px; }
  .hero-lead { max-width: 355px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .text-link { align-self: flex-start; }
  .hero-facts { gap: 8px; }
  .hero-visual { min-height: 590px; }
  .hero-image-wrap { inset: 10% 10% 9% 6%; }
  .product-stamp { right: 0; bottom: 7%; min-width: 205px; }
  .vertical-note { display: none; }
  .products-section { padding-top: 65px; }
  .section-heading { margin-bottom: 36px; }
  .section-heading .text-link { display: none; }
  .product-grid { gap: 12px; row-gap: 38px; }
  .product-info { flex-direction: column; gap: 9px; }
  .product-info h3 { font-size: 13px; }
  .product-info strong { font-size: 11px; }
  .product-number { font-size: 21px; }
  .product-badge { top: 10px; right: 10px; padding: 6px 7px; font-size: 7px; }
  .quick-view { display: none; }
  .collections { grid-template-columns: 1fr; }
  .collection-title { min-height: 390px; padding: 65px 6vw; }
  .collection-card { min-height: 590px; border-left: 0; border-top: 1px solid var(--line); }
  .review-card { min-height: 210px; flex-basis: 100%; padding: 24px 6vw; }
  .review-card blockquote { margin-top: 23px; font-size: 18px; }
  .reviews-bottom { align-items: stretch; flex-direction: column; }
  .reviews-controls { justify-content: space-between; }
  .review-open-button { width: 100%; }
  .review-form-grid { grid-template-columns: 1fr; }
  .review-form-grid .wide { grid-column: auto; }
  .lookbook { grid-template-columns: 1fr; }
  .lookbook-heading { grid-column: auto; min-height: 440px; }
  .lookbook-shot, .lookbook-shot-one { grid-column: auto; min-height: 540px; border-left: 0; border-top: 1px solid rgba(255,255,255,.26); }
  .manifesto-image { min-height: 620px; }
  .manifesto-copy { min-height: 650px; padding: 70px 6vw; }
  .experience-grid article, .experience-grid article + article { min-height: 235px; }
  .faq-list summary { min-height: 76px; font-size: 16px; }
  .final-cta { min-height: 590px; padding: 80px 6vw; }
  .newsletter-section { padding: 70px 6vw; }
  .newsletter-copy h2 { font-size: clamp(58px, 18vw, 88px); }
  .newsletter-consent { font-size: 10px; }
  .site-footer { padding: 60px 6vw 22px; }
  .footer-links { margin: 55px 0; grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom span:last-child { color: #aaa; }
  .legal-content section { grid-template-columns: 1fr; gap: 14px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { width: 49px; padding: 0; justify-content: center; }
  .journal-preview-grid { grid-template-columns: 1fr; }
  .journal-preview-card, .journal-preview-card:nth-child(2) { border-right: 0; }
  .journal-preview-card:last-child { grid-column: auto; }
  .journal-preview-card:last-child .journal-preview-image { aspect-ratio: 4 / 3; }
  .journal-preview-copy h3 { min-height: auto; }
  .journal-hero { min-height: 560px; padding: 75px 6vw 60px; }
  .journal-hero h1 { font-size: clamp(92px, 29vw, 142px); }
  .journal-issue { bottom: 38px; }
  .journal-featured { padding: 55px 5vw 80px; }
  .journal-feature-card { grid-template-rows: 430px auto; }
  .journal-side-list { grid-template-columns: 1fr; }
  .journal-side-image { min-height: 380px; }
  .journal-promise { padding: 75px 6vw 85px; grid-template-columns: 1fr; }
  .journal-promise > div { grid-column: auto; }
  .article-hero { padding: 52px 6vw 65px; }
  .article-back { margin-bottom: 48px; }
  .article-meta { flex-wrap: wrap; }
  .article-cover { height: 120vw; max-height: 650px; }
  .article-body { padding: 68px 6vw 85px; }
  .article-intro { margin-bottom: 65px; }
  .article-body > section { grid-template-columns: 1fr; gap: 20px; }
  .article-body section p, .article-body li { font-size: 16px; }
  .article-help { margin-top: 30px; }
  .article-related { padding: 70px 6vw 80px; }
  .logo-lab-nav { align-items: flex-start; flex-direction: column; padding-block: 16px; }
  .logo-lab-hero { min-height: 620px; padding: 75px 6vw 60px; }
  .logo-lab-hero h1 { font-size: clamp(90px, 29vw, 140px); }
  .logo-lab-hero > div { margin-top: 45px; grid-template-columns: 1fr; gap: 24px; }
  .logo-concepts { padding-inline: 5vw; }
  .logo-concept { padding: 65px 0 75px; }
  .logo-concept-head { grid-template-columns: 60px 1fr; }
  .logo-showcase { grid-template-columns: 1fr; }
  .logo-full-preview, .logo-mark-preview { grid-column: auto; min-height: 260px; }
  .logo-mark-preview { aspect-ratio: 1; }
  .logo-concept-info { grid-template-columns: 1fr; }
  .logo-downloads { grid-column: auto; }
  .logo-lab-note { padding: 80px 6vw 90px; }
  .logo-restoration { padding: 70px 6vw; }
  .logo-restoration-preview { min-height: 96vw; }
  .logo-variant-grid { grid-template-columns: 1fr; }
  .logo-variant-card:last-child { grid-column: auto; }
  .logo-variant-card:last-child .logo-variant-image { aspect-ratio: 1; }
}

@media (max-width: 699px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 412px) {
  .site-header { padding-inline: 5vw; }
  .mobile-menu nav { top: 108px; }
  .hero h1 { max-width: 100%; font-size: clamp(64px, 20.5vw, 84px); }
  .hero-visual { min-height: 520px; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-facts div:last-child { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; row-gap: 32px; }
  .product-image { aspect-ratio: 5 / 6; }
  .product-info { padding-top: 11px; }
  .product-info h3 { font-size: clamp(11px, 3.4vw, 13px); line-height: 1.15; }
  .product-info p, .product-info strong { font-size: 10px; }
  .product-sizes { margin-top: 9px; padding-top: 8px; font-size: 7px; letter-spacing: .08em; line-height: 1.45; }
  .collection-card { min-height: 500px; }
  .manifesto-image { min-height: 520px; }
  .manifesto-copy { min-height: 0; padding-block: 62px; }
  .manifesto-copy h2 { font-size: clamp(50px, 15.5vw, 66px); line-height: .88; }
  .final-cta h2 { font-size: clamp(50px, 15.5vw, 66px); }
  .newsletter-copy h2 { font-size: clamp(46px, 14.5vw, 60px); }
  .legal-hero { min-height: 460px; padding-inline: 6vw; }
  .legal-hero h1 { font-size: clamp(50px, 16vw, 68px); }
  .privacy-hero h1 { font-size: clamp(42px, 14vw, 48px); }
  .product-detail-copy h1 { font-size: clamp(52px, 17vw, 72px); }
  .admin-intro h1 { font-size: clamp(48px, 15vw, 66px); }
  .admin-stats { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .announcement { letter-spacing: .08em; }
  .hero-copy, .products-section, .collection-title, .reviews-section, .manifesto-copy, .experience, .faq-section, .newsletter-section { padding-left: 18px; padding-right: 18px; }
  .button { width: 100%; padding-inline: 14px; gap: 14px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-links a { min-height: 44px; display: flex; align-items: center; }
  .gallery-dots { gap: 6px; }
  .gallery-dots button { width: 9px; height: 9px; }
  .admin-main { padding-inline: 14px; }
  .admin-tabs button { flex: 1 1 50%; }
}

@media (max-width: 320px) {
  .hero-copy, .products-section, .collection-title, .reviews-section, .manifesto-copy, .experience, .faq-section, .newsletter-section { padding-left: 14px; padding-right: 14px; }
  .hero h1 { font-size: clamp(60px, 19vw, 64px); }
  .product-grid { gap: 8px; row-gap: 28px; }
  .product-number { top: 8px; left: 8px; font-size: 18px; }
  .product-badge { max-width: 76px; text-align: center; line-height: 1.25; }
  .final-cta h2, .manifesto-copy h2, .newsletter-copy h2 { font-size: clamp(43px, 14vw, 48px); }
  .owner-login-card h1 { font-size: clamp(43px, 14vw, 48px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .home-brand-track { animation: none; }
  .home-brand-group[aria-hidden="true"] { display: none; }
}


/* Remplacement du positionnement injecté par next/image */
.fill-img { position:absolute; inset:0; width:100%; height:100%; }

/* =========================================================
   V3 — Collection, fiche produit et dashboard propriétaire
   ========================================================= */
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid #4285f4; outline-offset: 2px; }

.catalog-hero {
  min-height: 590px;
  padding: 95px 6vw 75px;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 520px);
  align-content: center;
  gap: 28px 6vw;
  background: var(--volt);
  position: relative;
  overflow: hidden;
}
.catalog-hero::after { content: "ALL"; position: absolute; right: -2vw; bottom: -12%; color: transparent; -webkit-text-stroke: 1px rgba(10,10,10,.17); font-family: var(--font-display); font-size: min(31vw, 470px); line-height: .8; }
.catalog-hero > * { position: relative; z-index: 1; }
.catalog-hero .section-kicker { grid-column: 1 / -1; align-self: end; }
.catalog-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(88px, 13vw, 200px); line-height: .74; letter-spacing: -.045em; text-transform: uppercase; }
.catalog-hero h1 em { color: transparent; -webkit-text-stroke: 2px var(--ink); font-style: normal; }
.catalog-hero > p:last-child { align-self: end; margin: 0 0 12px; max-width: 500px; font-size: clamp(16px, 1.6vw, 23px); line-height: 1.55; }
.catalog-section { padding: 70px 4vw 120px; }
.catalog-toolbar { padding-bottom: 30px; display: flex; justify-content: space-between; gap: 25px; align-items: flex-start; border-bottom: 1px solid var(--ink); }
.catalog-pills { display: grid; gap: 8px; }
.category-pills, .tag-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.catalog-pill { min-height: 42px; padding: 0 15px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.catalog-pill.active, .catalog-pill:hover { background: var(--ink); color: white; }
.catalog-filters { flex: 1; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; }
.catalog-field { min-height: 42px; min-width: 170px; padding: 0 12px; border: 1px solid var(--ink); border-radius: 0; background: var(--paper); font-size: 11px; }
.catalog-field[type="search"] { min-width: min(320px, 100%); }
.catalog-count { padding: 24px 0 40px; display: flex; justify-content: space-between; gap: 20px; align-items: center; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.catalog-empty { padding: 90px 0 130px; text-align: center; }
.catalog-empty h2 { margin: 0; font-family: var(--font-display); font-size: clamp(50px, 8vw, 110px); text-transform: uppercase; }
.catalog-empty p { color: var(--muted); }

.product-page { background: var(--paper); }
.product-detail-loading, .product-not-found { min-height: 65vh; padding: 100px 6vw; }
.product-not-found h1 { font-family: var(--font-display); font-size: clamp(65px, 10vw, 140px); text-transform: uppercase; line-height: .86; }
.product-detail { min-height: calc(100vh - 122px); display: grid; grid-template-columns: 57% 43%; }
.product-detail-visual { min-height: 760px; position: sticky; top: 88px; height: calc(100vh - 88px); background: var(--bone); overflow: hidden; }
.product-gallery { width: 100%; height: 100%; position: relative; overflow: hidden; touch-action: pan-y; outline: none; }
.product-gallery:focus-visible { box-shadow: inset 0 0 0 3px var(--blue); }
.product-gallery-track { width: 100%; height: 100%; position: relative; }
.product-gallery-slide { margin: 0; position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(.985); transition: opacity .32s ease, transform .42s ease; }
.product-gallery-slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.product-gallery-slide img { width: 100%; height: 100%; padding: clamp(20px, 3vw, 55px); object-fit: contain; display: block; }
.product-gallery-empty { width: 100%; height: 100%; display: grid; place-content: center; justify-items: center; gap: 12px; background: linear-gradient(135deg, var(--bone), #dedbd0); color: var(--muted); text-transform: uppercase; }
.product-gallery-empty span { width: 85px; height: 85px; display: grid; place-items: center; border: 1px solid var(--ink); color: var(--ink); font-family: var(--font-display); font-size: 34px; }
.product-gallery-empty p { margin: 0; font-size: 9px; font-weight: 900; letter-spacing: .13em; }
.gallery-arrow { width: 48px; height: 48px; min-height: 44px; position: absolute; top: 50%; z-index: 3; border: 1px solid var(--ink); background: rgba(247,246,241,.9); cursor: pointer; font-size: 21px; }
.gallery-arrow:hover, .gallery-arrow:focus-visible { background: var(--ink); color: white; }
.gallery-prev { left: 20px; }
.gallery-next { right: 20px; }
.gallery-count { position: absolute; right: 24px; top: 24px; z-index: 3; padding: 8px 11px; background: var(--ink); color: white; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.gallery-dots { position: absolute; left: 50%; bottom: 26px; z-index: 4; display: flex; gap: 8px; transform: translateX(-50%); }
.gallery-dots button { width: 10px; height: 10px; padding: 0; border: 1px solid var(--ink); border-radius: 50%; background: rgba(255,255,255,.6); cursor: pointer; }
.gallery-dots button.active { background: var(--ink); }
.gallery-thumbnails { position: absolute; left: 22px; bottom: 22px; z-index: 3; display: flex; gap: 8px; }
.gallery-thumbnails button { width: 64px; height: 64px; padding: 3px; border: 1px solid transparent; background: rgba(247,246,241,.88); cursor: pointer; }
.gallery-thumbnails button.active { border-color: var(--ink); }
.gallery-thumbnails img { width: 100%; height: 100%; object-fit: contain; }
.product-detail-badge { position: absolute; left: 24px; top: 24px; z-index: 4; padding: 8px 10px; background: var(--volt); font-size: 8px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.product-detail-copy { padding: clamp(55px, 7vw, 110px) clamp(30px, 5vw, 78px); align-self: start; }
.product-detail-copy h1 { max-width: 100%; margin: 0; overflow-wrap: normal; font-family: var(--font-display); font-size: clamp(62px, 7.5vw, 118px); line-height: .84; letter-spacing: -.035em; text-transform: uppercase; }
.product-detail-price { margin-top: 30px; display: flex; align-items: baseline; gap: 16px; }
.product-detail-price strong { font-family: var(--font-display); font-size: 38px; letter-spacing: .01em; }
.product-detail-price del { color: var(--muted); font-size: 14px; }
.product-detail-description { max-width: 620px; margin: 32px 0; color: #444641; font-size: 16px; line-height: 1.7; }
.size-picker { margin-top: 38px; }
.size-picker > div:first-child { margin-bottom: 17px; display: flex; justify-content: space-between; gap: 20px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.size-picker #size-status { color: var(--muted); }
.size-picker #size-status.error { color: #b10d0d; }
.size-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.size-chip { width: 52px; height: 48px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 11px; font-weight: 900; }
.size-chip.active, .size-chip:hover { background: var(--ink); color: white; }
.order-summary { margin: 38px 0 25px; padding: 25px; background: var(--bone); }
.order-summary > p { margin: 0 0 17px; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.order-summary dl { margin: 0; }
.order-summary dl div { padding: 9px 0; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.order-summary dt { color: var(--muted); font-size: 11px; }
.order-summary dd { margin: 0; text-align: right; font-size: 11px; font-weight: 800; }
.product-order-button { width: 100%; border: 0; cursor: pointer; }
.product-order-button:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.order-note { margin: 13px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }

/* Ajustements Journal dynamique */
.journal-feature-image > span { position: absolute; left: 18px; top: 18px; z-index: 2; padding: 8px 10px; background: var(--volt); font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.journal-feature-copy > p:first-child { margin: 0 0 18px; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.journal-feature-copy > p:nth-of-type(2) { max-width: 650px; margin: 26px 0 38px; color: #494a46; font-size: 16px; line-height: 1.6; }
.journal-feature-copy > a { display: inline-block; padding-bottom: 7px; border-bottom: 1px solid; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.journal-side-card { color: inherit; }
.journal-side-card .section-kicker { margin-bottom: 15px; }

/* Dashboard propriétaire */
.admin-shell { min-height: 100vh; background: #e9e7df; }
.owner-login { min-height: 100vh; display: grid; grid-template-columns: 40% 60%; }
.owner-logo { min-height: 100vh; display: grid; place-items: center; background: var(--volt); padding: 8vw; }
.owner-logo img { width: min(420px, 72%); display: block; }
.owner-login-card { padding: 9vw; display: flex; flex-direction: column; justify-content: center; background: var(--paper); }
.owner-login-card h1 { margin: 0; overflow-wrap: normal; word-break: normal; hyphens: none; font-family: var(--font-display); font-size: clamp(85px, 10vw, 155px); line-height: .75; text-transform: uppercase; }
.owner-login-card > p:not(.section-kicker):not(.owner-security):not(.owner-message) { max-width: 520px; margin: 28px 0 35px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.owner-form { max-width: 520px; display: grid; gap: 14px; }
.owner-form label, .admin-editor label { display: grid; gap: 8px; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.owner-form input, .admin-editor input, .admin-editor textarea, .admin-editor select { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid var(--ink); border-radius: 0; background: white; color: var(--ink); font-size: 13px; font-weight: 500; letter-spacing: 0; text-transform: none; }
.admin-editor textarea { resize: vertical; }
.owner-form .button { border: 0; cursor: pointer; }
.owner-demo-button, .admin-link-button { padding: 0; border: 0; border-bottom: 1px solid; background: transparent; cursor: pointer; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.owner-demo-button { margin-top: 18px; align-self: flex-start; }
.owner-message { min-height: 20px; color: #a20d0d; font-size: 11px; }
.owner-security { max-width: 520px; margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.6; }
.admin-header { min-height: 74px; padding: 0 4vw; display: flex; align-items: center; justify-content: space-between; gap: 30px; position: sticky; top: 0; z-index: 40; background: var(--ink); color: white; }
.admin-header > div { display: flex; align-items: center; gap: 18px; }
.admin-header img { width: 52px; height: 52px; object-fit: contain; }
.admin-header span, .admin-header a, .admin-header button { font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.admin-header nav { display: flex; align-items: center; gap: 22px; }
.admin-header button { padding: 0; border: 0; border-bottom: 1px solid var(--volt); background: transparent; color: var(--volt); cursor: pointer; }
.admin-main { padding: 65px 4vw 100px; }
.admin-intro { display: flex; justify-content: space-between; gap: 30px; align-items: end; }
.admin-intro h1 { max-width: 850px; margin: 0; font-family: var(--font-display); font-size: clamp(64px, 8vw, 120px); line-height: .82; text-transform: uppercase; }
.admin-mode { min-width: 210px; padding: 17px; border: 1px solid var(--ink); display: grid; gap: 4px; }
.admin-mode strong { font-size: 10px; letter-spacing: .12em; }
.admin-mode span { color: var(--muted); font-size: 10px; }
.admin-tabs { margin: 55px 0 28px; display: flex; flex-wrap: nowrap; gap: 0; overflow-x: auto; overscroll-behavior-inline: contain; scrollbar-width: thin; border-bottom: 1px solid var(--ink); }
.admin-tabs button { min-width: max-content; min-height: 47px; padding: 0 21px; flex: 0 0 auto; border: 1px solid var(--ink); border-bottom: 0; background: transparent; cursor: pointer; font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.admin-tabs button.active { background: var(--ink); color: white; }
.admin-panel { display: none; }
.admin-panel.active { display: block; }
.admin-stats { margin-bottom: 22px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.admin-stats article { padding: 24px; border: 1px solid var(--ink); background: var(--paper); display: grid; gap: 4px; }
.admin-stats strong { font-family: var(--font-display); font-size: 37px; }
.admin-stats span { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.admin-quality-panel { margin-bottom: 22px; padding: clamp(22px, 3vw, 34px); border: 1px solid var(--ink); background: var(--bone); }
.admin-quality-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.admin-quality-heading h2 { margin: 0; font-family: var(--font-display); font-size: clamp(38px, 4vw, 60px); line-height: .9; text-transform: uppercase; }
.admin-quality-heading > strong { max-width: 260px; text-align: right; font-size: 10px; line-height: 1.5; letter-spacing: .09em; text-transform: uppercase; }
.admin-quality-panel > .admin-data-note { margin-top: 18px; background: rgba(255,255,255,.55); }
.admin-quality-list { margin-top: 14px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.admin-quality-item { min-height: 74px; padding: 13px 15px; display: flex; align-items: center; justify-content: space-between; gap: 15px; border: 1px solid var(--line); background: var(--paper); color: var(--ink); cursor: pointer; text-align: left; }
.admin-quality-item:hover, .admin-quality-item:focus-visible { border-color: var(--ink); background: var(--volt); }
.admin-quality-item > span { min-width: 0; display: grid; gap: 5px; }
.admin-quality-item strong { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.admin-quality-item small { color: var(--muted); font-size: 9px; line-height: 1.45; }
.admin-quality-item em { flex: 0 0 auto; font-size: 8px; font-style: normal; font-weight: 900; text-transform: uppercase; }
.admin-quality-success { grid-column: 1 / -1; margin: 0; padding: 18px; border: 1px solid #126b32; background: #edfff3; color: #126b32; font-size: 11px; font-weight: 800; }
.admin-layout { display: grid; grid-template-columns: minmax(420px, .9fr) minmax(420px, 1.1fr); gap: 20px; align-items: start; }
.admin-editor, .admin-list-wrap { padding: clamp(24px, 3vw, 45px); border: 1px solid var(--ink); background: var(--paper); }
.admin-editor-head, .admin-list-head { margin-bottom: 30px; display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.admin-editor h2, .admin-list-head h2 { margin: 0; font-family: var(--font-display); font-size: clamp(38px, 4vw, 62px); line-height: .9; text-transform: uppercase; }
.admin-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.admin-form-grid .wide { grid-column: 1 / -1; }
.admin-editor small { color: var(--muted); font-size: 9px; line-height: 1.4; letter-spacing: 0; text-transform: none; }
.admin-editor fieldset { margin: 0; padding: 16px; border: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 17px; }
.admin-editor legend { padding: 0 8px; font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.admin-editor label.check { display: flex; align-items: center; gap: 7px; font-size: 9px; }
.admin-editor label.check input { width: 16px; min-height: 16px; height: 16px; padding: 0; }
.admin-editor label.check.standalone { align-self: center; }
.admin-save { margin-top: 24px; width: 100%; border: 0; cursor: pointer; }
.admin-list { display: grid; }
.admin-list-item { min-height: 130px; padding: 13px 0; display: grid; grid-template-columns: 105px 1fr auto; gap: 17px; align-items: center; border-top: 1px solid var(--ink); }
.admin-list-item:last-child { border-bottom: 1px solid var(--ink); }
.admin-list-item img { width: 105px; height: 105px; object-fit: cover; background: var(--bone); }
.admin-list-item > div:nth-child(2) { min-width: 0; display: grid; gap: 5px; }
.admin-list-item strong { font-size: 13px; }
.admin-list-item span { color: var(--muted); font-size: 10px; }
.admin-list-item small { font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.admin-image-manager { display: grid; gap: 9px; }
.admin-empty-note, .admin-data-note { margin: 0; padding: 18px; border: 1px dashed var(--line); color: var(--muted); font-size: 11px; line-height: 1.55; }
.admin-image-card { padding: 9px; display: grid; grid-template-columns: 86px 1fr; gap: 12px; align-items: center; border: 1px solid var(--line); background: white; }
.admin-image-card > img { width: 86px; height: 86px; object-fit: contain; background: var(--bone); }
.admin-image-card > div:nth-child(2) { display: grid; gap: 5px; }
.admin-image-card span { color: var(--muted); font-size: 9px; }
.admin-image-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 7px; }
.admin-image-actions button, .cover-label { min-height: 34px; padding: 8px 10px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 8px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.admin-image-actions button:disabled { opacity: .35; cursor: not-allowed; }
.admin-image-actions .danger { border-color: #a30c0c; color: #a30c0c; }
.cover-label { display: inline-flex; align-items: center; background: var(--volt); color: var(--ink) !important; }
.admin-review-item, .admin-subscriber-item, .admin-category-item { grid-template-columns: 1fr auto; }
.admin-review-copy, .admin-subscriber-item > div:first-child, .admin-category-item > div:first-child { min-width: 0; display: grid; gap: 6px; }
.admin-review-item .admin-stars { color: #8b7100; font-size: 16px; letter-spacing: .08em; }
.admin-review-filters { margin-bottom: 14px; display: flex; gap: 8px; overflow-x: auto; }
.admin-review-filters button { min-width: max-content; min-height: 42px; padding: 0 15px; border: 1px solid var(--ink); background: var(--paper); cursor: pointer; font-size: 9px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.admin-review-filters button.active { background: var(--ink); color: white; }
.admin-action-link, .admin-legacy-review { width: fit-content; max-width: 100%; margin-top: 5px; font-size: 9px; font-weight: 900; line-height: 1.45; text-decoration: underline; }
.admin-action-link { color: #126b32; }
.admin-legacy-review { color: var(--muted); text-decoration: none; }
.admin-subscriber-item a { overflow-wrap: normal; color: var(--blue); font-size: 12px; text-decoration: underline; }
.admin-subscriber-wrap { max-width: 1000px; }
.admin-item-actions { display: grid; gap: 8px; }
.admin-item-actions button { padding: 7px 8px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.admin-item-actions button:hover { background: var(--ink); color: white; }
.admin-item-actions button.danger { border-color: #a30c0c; color: #a30c0c; }
.admin-item-actions button.danger:hover { background: #a30c0c; color: white; }
.admin-item-actions button.approve { border-color: #126b32; color: #126b32; }
.admin-item-actions button.approve:hover { background: #126b32; color: white; }
.admin-item-actions button:disabled { opacity: .38; cursor: not-allowed; }
.admin-analytics { display: grid; gap: 18px; }
.admin-analytics-head { padding: clamp(22px, 3vw, 34px); display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; border: 1px solid var(--ink); background: var(--volt); }
.admin-analytics-head h2 { max-width: 760px; margin: 0; font-family: var(--font-display); font-size: clamp(46px, 6vw, 82px); line-height: .84; text-transform: uppercase; }
.admin-analytics-head #analytics-period-label { margin: 14px 0 0; font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.admin-analytics-actions { display: grid; justify-items: end; gap: 15px; }
.admin-analytics-actions .admin-review-filters { margin: 0; }
.admin-analytics-actions .admin-link-button:disabled { opacity: .45; cursor: wait; }
.admin-analytics > .admin-data-note { margin: 0; }
.admin-analytics > .admin-data-note.error { border-color: #a30c0c; color: #a30c0c; }
.admin-analytics-kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.admin-analytics-kpis article { min-height: 178px; padding: 22px; display: grid; align-content: start; gap: 7px; border: 1px solid var(--ink); background: var(--paper); }
.admin-analytics-kpis article > span { font-size: 9px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.admin-analytics-kpis article > strong { font-family: var(--font-display); font-size: clamp(42px, 5vw, 68px); line-height: .9; }
.admin-analytics-kpis article > p { margin: 0; color: var(--muted); font-size: 9px; }
.admin-analytics-kpis article > small { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--line); color: var(--muted); font-size: 8px; line-height: 1.4; }
.admin-analytics-kpis article > small.positive { color: #126b32; }
.admin-analytics-kpis article > small.negative { color: #a30c0c; }
.admin-analytics-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.admin-analytics-card { min-width: 0; padding: clamp(20px, 2.5vw, 28px); border: 1px solid var(--ink); background: var(--paper); }
.admin-analytics-card .admin-list-head { margin-bottom: 15px; }
.admin-analytics-card h3 { margin: 3px 0 0; font-family: var(--font-display); font-size: clamp(30px, 3vw, 44px); line-height: .9; text-transform: uppercase; }
.admin-analytics-list { display: grid; }
.admin-analytics-list article { min-height: 50px; padding: 10px 0; display: flex; align-items: center; justify-content: space-between; gap: 15px; border-top: 1px solid var(--line); }
.admin-analytics-list article > span { min-width: 0; display: flex; align-items: center; gap: 10px; }
.admin-analytics-list article em { color: var(--muted); font-size: 8px; font-style: normal; }
.admin-analytics-list article strong { overflow: hidden; font-size: 11px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.admin-analytics-list article b { flex: 0 0 auto; font-family: var(--font-display); font-size: 25px; }
.admin-analytics-trend { overflow: hidden; }
.admin-trend-chart { min-height: 220px; padding-top: 14px; display: flex; align-items: stretch; gap: 5px; overflow-x: auto; border-top: 1px solid var(--line); }
.admin-trend-chart > div { min-width: 31px; height: 190px; display: flex; flex-direction: column; justify-content: flex-end; align-items: stretch; gap: 8px; }
.admin-trend-chart > div > span { min-height: 5px; background: var(--blue); }
.admin-trend-chart > div > small { min-height: 23px; color: var(--muted); font-size: 7px; line-height: 1.2; text-align: center; }
@media (max-width: 1000px) {
  .catalog-toolbar { flex-direction: column; }
  .catalog-filters { justify-content: flex-start; width: 100%; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail-visual { position: relative; top: auto; height: min(88vw, 760px); min-height: 560px; }
  .owner-login { grid-template-columns: 1fr; }
  .owner-logo { min-height: 360px; }
  .owner-login-card { padding: 70px 7vw; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-analytics-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .catalog-hero { min-height: 520px; padding: 75px 6vw 55px; grid-template-columns: 1fr; }
  .catalog-hero .section-kicker { grid-column: auto; }
  .catalog-hero > p:last-child { max-width: 390px; }
  .catalog-section { padding: 55px 5vw 90px; }
  .catalog-filters { display: grid; grid-template-columns: 1fr; }
  .catalog-field, .catalog-field[type="search"] { width: 100%; min-width: 0; }
  .product-detail-visual { width: 100%; height: min(112vw, 620px); min-height: 420px; }
  .product-gallery-slide img { padding: 18px; }
  .gallery-arrow { width: 44px; height: 44px; top: auto; bottom: 19px; }
  .gallery-prev { left: 5vw; }
  .gallery-next { right: 5vw; }
  .gallery-thumbnails { display: none; }
  .gallery-dots { bottom: 35px; }
  .gallery-count { top: auto; right: 5vw; bottom: 74px; }
  .product-detail-badge { left: 5vw; top: 18px; }
  .product-detail-copy { padding: 55px 6vw 80px; }
  .faq-page-nav { top: 76px; padding-inline: 0; }
  .faq-page-nav a { min-height: 48px; padding-inline: 14px; }
  .faq-page-content { padding: 45px 5vw 80px; }
  .faq-group { padding: 42px 0; grid-template-columns: 1fr; gap: 25px; scroll-margin-top: 130px; }
  .faq-group-heading h2 { max-width: 100%; font-size: clamp(39px, 12vw, 58px); }
  .faq-contact-card { margin-top: 25px; }
  .admin-header { padding: 12px 5vw; align-items: flex-start; }
  .admin-header > div span { display: none; }
  .admin-header nav { align-items: flex-end; flex-direction: column; gap: 8px; }
  .admin-main { padding: 50px 5vw 80px; }
  .admin-intro { align-items: flex-start; flex-direction: column; }
  .admin-mode { width: 100%; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-analytics-head { align-items: stretch; flex-direction: column; }
  .admin-analytics-actions { justify-items: stretch; }
  .admin-analytics-actions .admin-review-filters { width: 100%; }
  .admin-analytics-actions .admin-review-filters button { flex: 1; padding-inline: 8px; }
  .admin-analytics-grid { grid-template-columns: 1fr; }
  .admin-analytics-kpis article { min-height: 158px; padding: 17px; }
  .admin-quality-heading { align-items: flex-start; flex-direction: column; }
  .admin-quality-heading > strong { max-width: none; text-align: left; }
  .admin-quality-list { grid-template-columns: 1fr; }
  .admin-form-grid { grid-template-columns: 1fr; }
  .admin-form-grid .wide { grid-column: auto; }
  .admin-list-item { grid-template-columns: 78px 1fr; }
  .admin-review-item, .admin-subscriber-item, .admin-category-item { grid-template-columns: 1fr; }
  .admin-list-item img { width: 78px; height: 78px; }
  .admin-item-actions { width: 100%; grid-column: 1 / -1; display: flex; flex-wrap: wrap; }
  .admin-item-actions button { min-height: 38px; flex: 1 1 110px; }
  .admin-editor, .admin-list-wrap { padding: 22px 18px; }
  .admin-editor-head, .admin-list-head { align-items: flex-start; }
  .owner-logo { min-height: clamp(190px, 58vw, 300px); padding: 9vw; }
  .owner-logo img { width: min(250px, 68%); }
  .owner-login-card { padding: 48px 6vw max(48px, env(safe-area-inset-bottom)); }
  .owner-login-card h1 { font-size: clamp(46px, 16vw, 84px); line-height: .82; }
  .owner-form input { font-size: 16px; }
}

/* Guide de pointure */
.size-finder-hero { min-height: 570px; display: grid; grid-template-columns: 58% 42%; border-bottom: 1px solid var(--line); }
.size-finder-hero > div:first-child { padding: clamp(65px, 8vw, 120px) 7vw; display: flex; flex-direction: column; justify-content: center; }
.size-finder-hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(78px, 10vw, 150px); line-height: .78; letter-spacing: -.04em; text-transform: uppercase; }
.size-finder-hero h1 em { color: transparent; -webkit-text-stroke: 2px var(--ink); font-style: normal; }
.size-finder-hero > div:first-child > p:last-child { max-width: 580px; margin: 34px 0 0; font-size: 19px; line-height: 1.55; }
.size-measure-visual { position: relative; min-height: 460px; overflow: hidden; background: var(--volt); display: grid; place-items: center; }
.size-measure-visual > span { position: absolute; top: 28px; left: 28px; font-family: var(--font-display); font-size: 70px; }
.size-measure-visual strong { position: relative; z-index: 2; padding: 16px 20px; background: var(--ink); color: white; font-family: var(--font-display); font-size: clamp(35px, 5vw, 68px); letter-spacing: .03em; }
.foot-line { position: absolute; width: 72%; height: 42%; border: 3px solid var(--ink); border-radius: 58% 42% 44% 56% / 70% 68% 32% 30%; transform: rotate(-17deg); }
.foot-line::before, .foot-line::after { content: ""; position: absolute; background: var(--ink); }
.foot-line::before { left: -8%; right: -8%; bottom: -30px; height: 2px; }
.foot-line::after { width: 2px; height: 44px; left: 50%; bottom: -51px; }
.size-finder-section { padding: 90px 5vw 110px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: clamp(35px, 6vw, 90px); align-items: start; }
.size-finder-panel { padding: clamp(28px, 4vw, 58px); border: 1px solid var(--ink); background: var(--bone); }
.size-finder-panel h2, .size-measure-guide h2, .size-finder-cta h2 { margin: 0; font-family: var(--font-display); font-size: clamp(48px, 5vw, 78px); line-height: .9; text-transform: uppercase; }
#size-finder-form { margin-top: 38px; display: grid; gap: 12px; }
#size-finder-form > label { font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.size-input-row { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: stretch; }
.size-input-row input { min-width: 0; min-height: 62px; padding: 0 18px; border: 1px solid var(--ink); background: white; font-size: 22px; }
.size-input-row > span { min-width: 58px; display: grid; place-items: center; border-block: 1px solid var(--ink); background: white; font-size: 12px; font-weight: 900; text-transform: uppercase; }
.size-input-row .button { border: 0; }
#size-finder-form > small { color: var(--muted); font-size: 10px; }
.size-result { min-height: 145px; margin-top: 26px; padding: 24px; display: grid; align-content: center; gap: 7px; border: 1px dashed var(--ink); }
.size-result > span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.size-result strong { font-family: var(--font-display); font-size: clamp(56px, 7vw, 94px); line-height: .9; }
.size-result p { max-width: 650px; margin: 2px 0 0; font-size: 12px; line-height: 1.55; }
.size-result.success { border-style: solid; background: var(--volt); }
.size-result.error { border-style: solid; border-color: #9d2525; background: #fff0ed; }
.size-result.error strong { font-family: var(--font-body); font-size: 18px; }
.size-measure-guide { padding-top: 20px; }
.size-measure-guide ol { margin: 34px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.size-measure-guide li { padding: 22px 0; display: grid; grid-template-columns: 48px 1fr; gap: 15px; border-bottom: 1px solid var(--line); }
.size-measure-guide li > span { font-family: var(--font-display); font-size: 27px; color: var(--blue); }
.size-measure-guide li strong { font-size: 13px; }
.size-measure-guide li p { margin: 6px 0 0; color: var(--muted); font-size: 12px; line-height: 1.5; }
.size-disclaimer { margin: 24px 0 0; padding: 18px; background: var(--ink); color: white; font-size: 11px; line-height: 1.6; }
.size-finder-cta { padding: 80px 6vw; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; background: var(--volt); }
.size-finder-cta > div:last-child { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* V4.6 — catégories multiples, marques visuelles et sélections d’accueil */
.brand-directory[hidden] { display: none; }
.brand-directory { margin: 38px 0 22px; padding: clamp(28px, 4vw, 58px); background: var(--ink); color: white; }
.brand-directory-heading { margin-bottom: 28px; display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; }
.brand-directory-heading h2 { margin: 0; max-width: 650px; font-family: var(--font-display); font-size: clamp(48px, 6vw, 88px); line-height: .9; text-transform: uppercase; }
.brand-directory-heading > p { max-width: 360px; margin: 0; color: #aaa; font-size: 13px; line-height: 1.6; }
.brand-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.brand-card { padding: 0; position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid #333; background: #181818; color: white; cursor: pointer; text-align: left; }
.brand-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.brand-card-placeholder { width: 100%; height: 100%; display: grid; place-items: center; background: var(--volt); color: var(--ink); font-family: var(--font-display); font-size: clamp(54px, 7vw, 92px); }
.brand-card::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.88)); }
.brand-card > span { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 17px; display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.brand-card strong { font-family: var(--font-display); font-size: clamp(28px, 3vw, 44px); line-height: .9; text-transform: uppercase; }
.brand-card small { color: var(--volt); font-size: 8px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.brand-card:hover img, .brand-card:focus-visible img { transform: scale(1.04); }
.brand-card.active { outline: 3px solid var(--volt); outline-offset: -3px; }

.admin-brand-cover-section { margin-top: 28px; padding: 30px; border: 1px solid var(--ink); background: var(--bone); }
.admin-brand-cover-grid { margin-top: 22px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.admin-brand-cover-card { padding: 12px; display: grid; align-content: start; gap: 12px; border: 1px solid var(--line); background: white; }
.admin-brand-cover-preview { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: #dfe0d8; }
.admin-brand-cover-preview img { width: 100%; height: 100%; object-fit: cover; }
.admin-brand-cover-preview > span { height: 100%; display: grid; place-items: center; color: var(--muted); font-size: 10px; }
.admin-brand-cover-preview::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(0,0,0,.85)); }
.admin-brand-cover-preview strong, .admin-brand-cover-preview small { position: absolute; z-index: 2; left: 12px; right: 12px; color: white; }
.admin-brand-cover-preview strong { bottom: 31px; font-family: var(--font-display); font-size: 27px; text-transform: uppercase; }
.admin-brand-cover-preview small { bottom: 12px; color: var(--volt); font-size: 7px; font-weight: 900; text-transform: uppercase; }
.admin-brand-cover-card > label { display: grid; gap: 6px; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.admin-brand-cover-card input[type="file"] { min-height: 44px; max-width: 100%; padding: 9px; border: 1px solid var(--line); }
.admin-brand-cover-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; align-items: end; }
.admin-brand-cover-fields label { display: grid; gap: 5px; font-size: 8px; font-weight: 900; text-transform: uppercase; }
.admin-brand-cover-fields input[type="number"] { min-height: 42px; padding: 8px; border: 1px solid var(--line); }

.catalog-brands-root span { margin-left: 6px; font-size: 13px; line-height: 1; }

.admin-brand-field { display: grid; gap: 7px; }
.admin-chip-list { display: flex; flex-wrap: wrap; gap: 7px; }
.admin-chip-list button { min-height: 36px; padding: 7px 11px; border: 1px solid var(--ink); background: white; cursor: pointer; font-size: 9px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.admin-chip-list button:hover, .admin-chip-list button:focus-visible { background: var(--volt); }
.admin-chip-empty { color: var(--muted); font-size: 9px; }
.admin-category-selector { display: grid !important; gap: 12px !important; }
.admin-field-note { width: 100%; margin: 0; color: var(--muted); font-size: 10px; line-height: 1.5; }
.admin-category-options { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.admin-category-check { min-height: 68px; padding: 11px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); background: white; cursor: pointer; }
.admin-category-check.selected { border-color: var(--ink); background: var(--volt); }
.admin-category-check input { width: 18px !important; height: 18px !important; min-height: 18px !important; flex: 0 0 auto; }
.admin-category-check span { display: grid; gap: 3px; }
.admin-category-check strong { font-size: 11px; }
.admin-category-check small { color: var(--muted); font-size: 8px; }
.admin-category-product-manager { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--ink); }
.admin-category-product-manager[hidden] { display: none; }
.admin-showcase-manager { margin: 28px 0 0; padding: clamp(22px, 3vw, 36px); border: 1px solid var(--ink); background: var(--bone); }
.admin-showcase-manager .admin-membership-head h2 { margin: 4px 0 0; font-family: var(--font-display); font-size: clamp(34px, 4vw, 58px); line-height: .92; text-transform: uppercase; }
.admin-showcase-mode-tabs { width: fit-content; margin-top: 18px; }
.admin-membership-head { margin-bottom: 12px; display: flex; justify-content: space-between; align-items: flex-end; gap: 15px; }
.admin-membership-head h3 { margin: 4px 0 0; font-family: var(--font-display); font-size: clamp(28px, 3vw, 44px); line-height: .92; text-transform: uppercase; }
.admin-membership-tabs { display: flex; gap: 7px; }
.admin-membership-tabs[hidden] { display: none; }
.admin-membership-tabs button { min-height: 38px; padding: 0 12px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font-size: 8px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.admin-membership-tabs button.active { background: var(--ink); color: white; }
.admin-product-picker-grid { margin-top: 12px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
.admin-product-picker-card { min-height: 120px; padding: 8px; position: relative; display: grid; grid-template-columns: 86px minmax(0, 1fr); gap: 10px; align-items: center; border: 1px solid var(--line); background: white; cursor: pointer; }
.admin-product-picker-card.selected { border: 2px solid var(--ink); background: #f2ffd0; }
.admin-product-picker-card > input { width: 19px !important; height: 19px !important; min-height: 19px !important; position: absolute; top: 9px; left: 9px; z-index: 2; accent-color: var(--ink); }
.admin-product-picker-card img { width: 86px; height: 102px; object-fit: contain; background: var(--bone); }
.admin-product-picker-card > span { min-width: 0; display: grid; gap: 5px; }
.admin-product-picker-card strong { font-size: 11px; line-height: 1.2; }
.admin-product-picker-card small { color: var(--muted); font-size: 8px; line-height: 1.4; }
.admin-product-picker-card em { width: fit-content; padding: 4px 6px; background: var(--bone); font-size: 7px; font-style: normal; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.admin-membership-apply { width: 100%; margin-top: 13px; border: 0; cursor: pointer; }
.admin-membership-apply[hidden] { display: none; }

.whatsapp-float .whatsapp-icon { display: none; object-fit: contain; }
.whatsapp-float .whatsapp-arrow { fill: none; stroke: currentColor; stroke-width: 1.8; }

@media (max-width: 700px) {
  .home-brand-group { gap: 8px; padding-right: 8px; }
  .home-brand-card { width: 82px; height: 68px; }
  .home-brand-card strong { left: 7px; right: 7px; bottom: 6px; font-size: 12px; }
  .size-finder-hero { min-height: 0; grid-template-columns: 1fr; }
  .size-finder-hero > div:first-child { padding: 65px 5vw; }
  .size-finder-hero h1 { font-size: clamp(66px, 20vw, 100px); }
  .size-finder-hero > div:first-child > p:last-child { font-size: 16px; }
  .size-measure-visual { min-height: 330px; }
  .size-finder-section { padding: 55px 5vw 75px; grid-template-columns: 1fr; gap: 45px; }
  .size-finder-panel { padding: 26px 18px; }
  .size-input-row { grid-template-columns: minmax(0, 1fr) 50px; }
  .size-input-row .button { grid-column: 1 / -1; margin-top: 9px; }
  .size-finder-cta { padding: 60px 5vw; align-items: flex-start; flex-direction: column; }
  .size-finder-cta > div:last-child { align-items: flex-start; flex-direction: column; }
  .brand-directory { margin-inline: -1vw; padding: 30px 4vw; }
  .brand-directory-heading { align-items: flex-start; flex-direction: column; }
  .brand-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .brand-card > span { left: 10px; right: 10px; bottom: 10px; display: grid; gap: 4px; }
  .brand-card strong { font-size: clamp(23px, 8vw, 34px); }
  .admin-brand-cover-section { padding: 22px 18px; }
  .admin-brand-cover-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .admin-brand-cover-card { padding: 7px; }
  .admin-brand-cover-fields { grid-template-columns: 1fr; }
  .admin-category-options { grid-template-columns: 1fr; }
  .admin-membership-head { align-items: stretch; flex-direction: column; }
  .admin-membership-tabs { width: 100%; }
  .admin-membership-tabs button { flex: 1; }
  .admin-product-picker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .admin-product-picker-card { min-height: 168px; padding: 7px; grid-template-columns: 1fr; align-content: start; }
  .admin-product-picker-card img { width: 100%; height: 105px; }
  .admin-product-picker-card > span { padding: 3px 2px 5px; }
}

@media (max-width: 699px) {
  .whatsapp-float span, .whatsapp-float .whatsapp-arrow { display: none; }
  .whatsapp-float .whatsapp-icon { display: block; width: 23px; height: 23px; }
}
