:root{
  --bg:#000;
  --fg:#fff;
  --muted: rgba(255,255,255,.72);
  --border: rgba(255,255,255,.14);
  --border-strong: rgba(255,255,255,.28);
  --focus:2px solid #fff;
  --radius:14px;
  --radius2:22px;
  --space:16px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --shadow2: 0 18px 60px rgba(0,0,0,.55);
  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Garamond, Georgia, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  --panel:#0b0b0b;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--sans), "Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--fg);
  line-height:1.4;
}
img{max-width:100%; display:block}
a{color:inherit}
button, input, select{font:inherit; color:inherit}

.skip{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background:#000;
  outline:var(--focus);
  border-radius:999px;
  z-index:9999;
}

.container{
  width:min(1160px, calc(100% - 32px));
  margin-inline:auto;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(0,0,0,.78);
  backdrop-filter:saturate(120%) blur(8px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:16px 0;
}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand__logo{
  width:42px;
  height:42px;
  object-fit:contain;
  border-radius:12px;
  background:#fff;
  flex:0 0 auto;
}
.brand__name{
  font-weight:700;
  letter-spacing:.14em;
  text-transform:lowercase;
  font-size:15px;
}
.brand__tag{font-size:12px; color:var(--muted)}
.nav{display:flex; align-items:center; gap:12px; flex-wrap:wrap; justify-content:flex-end}
.link{
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid transparent;
  color:var(--muted);
}
.link:hover{border-color:var(--border-strong); color:#fff}
.link:focus-visible{outline:var(--focus); outline-offset:2px}
.link--contact{
  padding:0;
  border-radius:0;
  border:none;
  color:#fff;
  text-decoration:underline;
  text-underline-offset:4px;
}
.link--contact:hover{opacity:.8}

.hero{
  border-bottom:1px solid var(--border);
}
.hero__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:40px;
  padding:44px 0 34px;
  align-items:center;
}
.h1{
  margin:0 0 10px;
  font-family:var(--serif);
  font-weight:700;
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing:-.02em;
  line-height:1.02;
}
.h2{
  margin:0;
  font-family:var(--serif);
  font-weight:650;
  font-size: clamp(22px, 2.7vw, 32px);
  letter-spacing:-.01em;
}
.lead{margin:0 0 18px; font-size:16px; max-width:62ch; color:var(--muted)}
.lead strong{color:#fff; font-weight:700}

.kicker{
  font-weight:850;
  letter-spacing:.22em;
  text-transform:uppercase;
  font-size: clamp(18px, 2.4vw, 30px);
  color:#fff;
  margin-bottom:6px;
}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin:10px 0 14px}
.notice{
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px 16px 14px;
  max-width:64ch;
  background: var(--panel);
  box-shadow: var(--shadow);
}
.notice__title{font-weight:850; margin-bottom:6px; letter-spacing:.08em; text-transform:uppercase; font-size:12px}
.notice__body{font-size:13px; color:var(--muted)}

.hero__frame{
  border:1px solid var(--border);
  border-radius:22px;
  padding:18px;
  background: var(--panel);
  box-shadow: var(--shadow2);
}
.hero__mock{
  border:1px solid var(--border);
  border-radius:18px;
  height:320px;
  background:#000;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero__mock img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:11px 16px;
  border-radius:999px;
  border:1px solid #fff;
  background:transparent;
  color:#fff;
  text-decoration:none;
  cursor:pointer;
  white-space:nowrap;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.btn:hover{filter:none; background:#fff; color:#000}
.btn:focus-visible{outline:var(--focus); outline-offset:3px}
.btn--ghost{
  background:transparent;
  color:#fff;
  border-color: var(--border-strong);
}
.btn--ghost:hover{background:#fff; color:#000; border-color:#fff}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  padding:36px 0 18px;
  flex-wrap:wrap;
}
.sectionHead__meta{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.pill{
  border:1px solid var(--border);
  border-radius:999px;
  padding:6px 10px;
  font-size:12px;
  color:var(--muted);
  letter-spacing:.06em;
  text-transform:uppercase;
}

.group{
  border-top:1px solid var(--border);
  padding:24px 0 34px;
}
.group__head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:14px;
}
.collection{max-width:72ch}
.collection__name{
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
}
.collection__quote{
  font-family:var(--serif);
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing:-.01em;
  margin-top:6px;
}
.collection__price{
  margin-top:8px;
  font-weight:900;
  letter-spacing:.02em;
}
.collection__facts{
  margin-top:4px;
  color:var(--muted);
  font-size:12px;
}
.colorBlock{margin-top:16px}
.colorBlock__title{
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--muted);
  margin: 6px 0 12px;
}
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:22px;
}
.card{
  border:none;
  border-radius:22px;
  padding:0;
  background:transparent;
  display:flex;
  flex-direction:column;
  gap:10px;
  min-width:0;
  box-shadow:none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-2px);
  box-shadow:none;
}
.card:focus-within{outline:var(--focus); outline-offset:4px}
.card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  padding:0 2px;
}
.card__title{font-weight:750; font-size:13px; letter-spacing:.12em; text-transform:uppercase}
.price{font-weight:850; letter-spacing:.02em}
.card__meta{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:10px;
  padding:0 2px;
}
.card__sub{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:0 2px;
}
.badge{
  border:1px solid var(--border-strong);
  border-radius:999px;
  padding:4px 8px;
  font-size:12px;
  white-space:nowrap;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.badge--off{background:#000; color:#fff}
.badge--on{background:transparent; color:#fff}

.ratio{position:relative; width:100%; overflow:hidden; border-radius:18px; border:1px solid var(--border)}
.ratio--nike{aspect-ratio:4/5}
.img{
  width:100%;
  height:100%;
  object-fit:contain;
  background:#000;
}
.card__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:auto; padding:0 2px 2px}

.btn--link{
  border:none;
  padding:0;
  border-radius:0;
  background:transparent;
  color:#fff;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  text-decoration:underline;
  text-underline-offset:4px;
}
.btn--link:hover{background:transparent; color:#fff; opacity:.75}

.mini{font-size:12px; color:var(--muted)}
.mini strong{color:#fff}
.dot{margin:0 6px}

.modal{
  border:none;
  padding:0;
  width:min(920px, calc(100% - 24px));
  background:transparent;
}
.modal::backdrop{background:rgba(0,0,0,.6)}
.modal__card{
  background:#000;
  border:1px solid var(--border-strong);
  border-radius:26px;
  padding:18px;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.modal__card--small{
  width:min(560px, calc(100% - 24px));
  margin-inline:auto;
}
.modal__close{
  position:absolute;
  top:10px;
  right:10px;
  z-index:2;
}
.iconBtn{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid var(--border-strong);
  background:#000;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  line-height:1;
  font-size:18px;
}
.modal__close.iconBtn{
  background:#fff;
  color:#000;
  border-color:#fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}
.iconBtn:hover{background:#000; color:#fff}
.iconBtn:focus-visible{outline:var(--focus); outline-offset:3px}

.modal__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
  align-items:start;
}
.modal__title{font-family:var(--serif); font-weight:700; font-size:20px; letter-spacing:-.01em}
.modal__sub{font-size:12px; margin-top:4px}

.field{margin-top:12px}
.field__label{font-size:12px; font-weight:900; margin-bottom:6px}
.field__hint{font-size:12px; margin-top:6px}
.input,.select{
  width:100%;
  padding:10px 12px;
  border:1px solid var(--border-strong);
  border-radius:12px;
  background:#000;
}
.input,.select{color:#fff}
.select option{background:#000; color:#fff}
.field__label,.field__hint,.modal__sub{color:var(--muted)}
.modal__title{color:#fff}
.input::placeholder{color: rgba(255,255,255,.55)}
.input:focus-visible,.select:focus-visible{outline:var(--focus); outline-offset:2px}

.chips{display:flex; gap:8px; flex-wrap:wrap}
.chip{
  border:1px solid var(--border-strong);
  border-radius:999px;
  padding:8px 10px;
  background:#fff;
  color:#000;
  cursor:pointer;
  user-select:none;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.chip[aria-selected="true"]{
  background:#fff;
  color:#000;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(0,0,0,.55);
}
.chip[aria-disabled="true"]{opacity:.55; cursor:not-allowed}

.actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.actions--right{justify-content:flex-end}

.regionGrid{display:grid; gap:10px; margin-top:14px}
.radio{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid var(--border-strong);
  border-radius:14px;
  cursor:pointer;
  user-select:none;
  background: var(--panel);
}
.radio input{accent-color:#fff}

.footer{
  border-top:1px solid var(--border);
  padding:20px 0;
  margin-top:24px;
}
.footer__inner{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap; align-items:center}
.footer__brand{font-weight:750; letter-spacing:.14em; text-transform:lowercase}
.footer__small{font-size:12px}
.footer__right{display:flex; gap:10px; flex-wrap:wrap}

.contact{padding-bottom:16px}
.contact__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  padding:0 0 28px;
}
.contact__card{
  border:1px solid var(--border);
  border-radius:18px;
  background: var(--panel);
  padding:16px;
}
.contact__title{
  font-weight:850;
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:12px;
  margin-bottom:12px;
}
.contact__row{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  padding:10px 0;
  border-top:1px solid var(--border);
}
.contact__row:first-of-type{border-top:none; padding-top:0}
.contact__label{color:var(--muted); font-size:12px}
.contact__mini{margin-top:12px; color:var(--muted); font-size:12px}

@media (max-width: 900px){
  .hero__inner{grid-template-columns:1fr; padding-top:24px}
  .hero__mock{height:260px}
  .modal__grid{grid-template-columns:1fr}
  .grid{grid-template-columns: repeat(2, minmax(0, 1fr)); gap:18px}
  .contact__grid{grid-template-columns:1fr}
}

@media (max-width: 700px){
  .header__inner{align-items:flex-start}
  .nav{justify-content:flex-start}
  .grid{grid-template-columns: 1fr; gap:16px}
  /* Sur petits écrans: le vêtement doit être visible en entier */
  .img{object-fit:contain}
}

@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important; transition:none !important; animation:none !important}
}

