/* ============================================================
   NO VOID PLUS — Aix-en-Provence
   Design : éditorial mode · ivoire / espresso / cognac
   Typo   : Bodoni Moda (display) · Figtree (texte)
   ============================================================ */

:root {
  --ivoire:  #F6F1E7;
  --creme:   #EDE5D4;
  --blanc:   #FDFBF6;
  --encre:   #221A12;
  --brun:    #52422F;
  --cognac:  #A6612C;
  --cognac-d:#8A4E20;
  --lin:     #D9CDB6;
  --hair:    rgba(34, 26, 18, .16);
  --ff-d: "Bodoni Moda", "Didot", Georgia, serif;
  --ff-t: "Figtree", "Segoe UI", system-ui, sans-serif;
  --gutter: clamp(20px, 5vw, 72px);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-t);
  font-weight: 300;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--encre);
  background: var(--ivoire);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--cognac); color: var(--ivoire); }

/* ---------- Bandeau supérieur ---------- */
.topline {
  display: flex; justify-content: center; gap: 14px;
  padding: 9px var(--gutter);
  background: var(--encre); color: var(--ivoire);
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
}
.topline-sep { opacity: .5; }
@media (max-width: 640px) { .topline span:nth-child(n+2) { display: none; } }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  background: color-mix(in srgb, var(--ivoire) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hair);
  transition: padding .35s var(--ease);
}
.site-head.is-tight { padding-top: 12px; padding-bottom: 12px; }
.brand {
  font-family: var(--ff-d); font-size: 24px; letter-spacing: .02em;
  display: inline-flex; gap: 7px; align-items: baseline;
}
.brand-no   { font-weight: 400; }
.brand-void { font-weight: 700; font-style: italic; }
.brand-plus { font-weight: 400; color: var(--cognac); }
.mainnav { display: flex; gap: clamp(18px, 3vw, 42px); align-items: center; }
.mainnav a {
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  padding: 4px 0; position: relative;
}
.mainnav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: var(--cognac);
  transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.mainnav a:hover::after, .mainnav a.is-on::after { transform: scaleX(1); transform-origin: left; }
.mainnav .nav-cta {
  border: 1px solid var(--encre); border-radius: 999px; padding: 9px 20px;
  transition: background .3s, color .3s;
}
.mainnav .nav-cta::after { display: none; }
.mainnav .nav-cta:hover, .mainnav .nav-cta.is-on { background: var(--encre); color: var(--ivoire); }
.burger { display: none; }

@media (max-width: 860px) {
  .burger {
    display: flex; flex-direction: column; gap: 6px;
    background: none; border: 0; cursor: pointer; padding: 8px; z-index: 70;
  }
  .burger span { width: 26px; height: 1.5px; background: var(--encre); transition: transform .3s var(--ease), opacity .3s; }
  .burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .burger.is-open span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }
  .mainnav {
    position: fixed; inset: 0; z-index: 65;
    flex-direction: column; justify-content: center; gap: 34px;
    background: var(--ivoire);
    opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
  }
  .mainnav.is-open { opacity: 1; pointer-events: auto; }
  .mainnav a { font-size: 17px; }
}

/* ---------- Typographie commune ---------- */
.d1 { font-family: var(--ff-d); font-weight: 400; font-size: clamp(42px, 7.2vw, 104px); line-height: 1.02; letter-spacing: -.01em; }
.d2 { font-family: var(--ff-d); font-weight: 400; font-size: clamp(30px, 4.2vw, 56px);  line-height: 1.08; }
.d3 { font-family: var(--ff-d); font-weight: 600; font-size: clamp(21px, 2.4vw, 28px);  line-height: 1.2; }
.d1 em, .d2 em { font-style: italic; color: var(--cognac); }
.kick {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11.5px; letter-spacing: .24em; text-transform: uppercase; font-weight: 600;
  color: var(--brun); margin-bottom: 22px;
}
.kick::before { content: ""; width: 34px; height: 1px; background: var(--cognac); }
.lede { font-size: clamp(17px, 1.6vw, 20px); line-height: 1.7; color: var(--brun); max-width: 56ch; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  padding: 15px 30px; border-radius: 999px;
  background: var(--encre); color: var(--ivoire); border: 1px solid var(--encre);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.btn:hover { background: var(--cognac); border-color: var(--cognac); transform: translateY(-2px); }
.btn.ghost { background: transparent; color: var(--encre); }
.btn.ghost:hover { background: var(--encre); color: var(--ivoire); }
.btn .arr { transition: transform .3s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Révélation au scroll ---------- */
.rv { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.is-in { opacity: 1; transform: none; }
.rv-2 { transition-delay: .12s; }
.rv-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Hero accueil ---------- */
.hero {
  display: grid; grid-template-columns: 1.05fr .95fr;
  min-height: calc(100vh - 150px); border-bottom: 1px solid var(--hair);
}
.hero-txt {
  padding: clamp(40px, 6vw, 90px) var(--gutter);
  display: flex; flex-direction: column; justify-content: center; gap: 30px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.hero-img { position: relative; overflow: hidden; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; left: 26px; bottom: 26px;
  background: var(--ivoire); border-radius: 2px; padding: 14px 20px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  box-shadow: 0 12px 30px rgba(34, 26, 18, .18);
}
.hero-badge strong { display: block; font-family: var(--ff-d); font-size: 21px; letter-spacing: 0; text-transform: none; font-weight: 600; }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-img { order: -1; height: 54vw; min-height: 260px; }
}

/* ---------- Bandeau défilant marques ---------- */
.marquee {
  overflow: hidden; border-bottom: 1px solid var(--hair);
  background: var(--creme); padding: 18px 0;
}
.marquee-track {
  display: flex; gap: 56px; width: max-content;
  animation: slide 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--ff-d); font-size: 19px; white-space: nowrap; color: var(--brun);
}
.marquee-track span i { font-style: normal; color: var(--cognac); margin-left: 56px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.sec { padding: clamp(70px, 9vw, 130px) var(--gutter); }
.sec-head { max-width: 900px; margin-bottom: clamp(40px, 5vw, 70px); }
.sec.tinted { background: var(--creme); }
.sec.dark { background: var(--encre); color: var(--ivoire); }
.sec.dark .kick { color: var(--lin); }
.sec.dark .lede { color: var(--lin); }

/* Cartes vestiaire */
.wardrobe { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 34px); }
.wcard { position: relative; overflow: hidden; border-radius: 3px; }
.wcard img { height: clamp(340px, 34vw, 520px); width: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.wcard:hover img { transform: scale(1.05); }
.wcard-veil {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px; gap: 4px;
  background: linear-gradient(to top, rgba(34, 26, 18, .72), transparent 55%);
  color: var(--ivoire);
}
.wcard-veil h3 { font-family: var(--ff-d); font-weight: 400; font-size: clamp(24px, 2.6vw, 34px); }
.wcard-veil p { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.wcard-veil .go {
  margin-top: 12px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600;
  display: inline-flex; gap: 8px; align-items: center;
  opacity: 0; transform: translateY(8px); transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.wcard:hover .go { opacity: 1; transform: none; }
@media (max-width: 780px) { .wardrobe { grid-template-columns: 1fr; } .wcard-veil .go { opacity: 1; transform: none; } }

/* Rangée éditoriale image + texte */
.edito { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 80px); align-items: center; }
.edito.flip .edito-img { order: 2; }
.edito-img { overflow: hidden; border-radius: 3px; }
.edito-img img { width: 100%; height: clamp(320px, 38vw, 560px); object-fit: cover; transition: transform 1.1s var(--ease); }
.edito-img:hover img { transform: scale(1.04); }
.edito-txt { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
@media (max-width: 780px) { .edito { grid-template-columns: 1fr; } .edito.flip .edito-img { order: 0; } }

/* Chiffres */
.figures { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; border-top: 1px solid var(--hair); padding-top: 44px; }
.fig strong { display: block; font-family: var(--ff-d); font-weight: 400; font-size: clamp(38px, 4.6vw, 64px); line-height: 1; }
.fig span { font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--brun); }
.sec.dark .fig span { color: var(--lin); }
.sec.dark .figures { border-color: rgba(246, 241, 231, .25); }
@media (max-width: 780px) { .figures { grid-template-columns: repeat(2, 1fr); } }

/* Liste services (accueil + page) */
.svc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.4vw, 30px); }
.svc {
  border: 1px solid var(--hair); border-radius: 3px; padding: clamp(26px, 3vw, 44px);
  background: var(--blanc); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.svc:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(34, 26, 18, .1); }
.svc .num {
  font-family: var(--ff-d); font-style: italic; font-size: 17px; color: var(--cognac);
  display: block; margin-bottom: 16px;
}
.svc h3 { font-family: var(--ff-d); font-weight: 600; font-size: clamp(20px, 2.1vw, 26px); margin-bottom: 12px; }
.svc p { color: var(--brun); font-size: 15.5px; }
@media (max-width: 780px) { .svc-list { grid-template-columns: 1fr; } }

/* Pièces (page vestiaire) */
.pieces { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 6px 34px; margin-top: 26px; }
.pieces li {
  list-style: none; padding: 13px 2px; border-bottom: 1px solid var(--hair);
  display: flex; justify-content: space-between; gap: 12px; font-size: 15.5px;
}
.pieces li em { font-style: normal; color: var(--cognac); font-size: 13px; letter-spacing: .08em; }

/* Bandeau final CTA */
.cta-final { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.cta-final .d2 { max-width: 20ch; }

/* ---------- Page interne : entête ---------- */
.page-head {
  padding: clamp(60px, 7vw, 110px) var(--gutter) clamp(40px, 5vw, 70px);
  border-bottom: 1px solid var(--hair);
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: end;
}
.page-head .lede { justify-self: end; }
@media (max-width: 780px) { .page-head { grid-template-columns: 1fr; } .page-head .lede { justify-self: start; } }

/* ---------- Horaires / infos boutique ---------- */
.hours { display: grid; gap: 0; border-top: 1px solid var(--hair); }
.hours div {
  display: flex; justify-content: space-between; padding: 13px 2px;
  border-bottom: 1px solid var(--hair); font-size: 15.5px;
}
.hours div span:last-child { font-weight: 500; }
.hours .closed span:last-child { color: var(--cognac); font-style: italic; font-weight: 300; }

/* ---------- Formulaire contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 8px; }
.field label { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; color: var(--brun); }
.field input, .field select, .field textarea {
  font: inherit; color: var(--encre);
  background: var(--blanc); border: 1px solid var(--hair); border-radius: 3px;
  padding: 14px 16px; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--cognac); box-shadow: 0 0 0 3px rgba(166, 97, 44, .14);
}
.field textarea { min-height: 160px; resize: vertical; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.notice { padding: 16px 20px; border-radius: 3px; font-size: 15px; margin-bottom: 26px; }
.notice.ok  { background: #E7EDDA; border: 1px solid #9BAA74; color: #3C4A1E; }
.notice.err { background: #F3E0D8; border: 1px solid #C98A6A; color: #7C3A18; }

/* ---------- Pages légales ---------- */
.legal { max-width: 820px; }
.legal h2 { font-family: var(--ff-d); font-weight: 600; font-size: 24px; margin: 44px 0 14px; }
.legal h2:first-of-type { margin-top: 0; }
.legal p, .legal li { color: var(--brun); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--cognac); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Footer ---------- */
.site-foot { background: var(--encre); color: var(--ivoire); padding: clamp(60px, 7vw, 90px) var(--gutter) 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.foot-logo { font-family: var(--ff-d); font-size: 34px; }
.foot-logo em { color: var(--cognac); }
.foot-tag { margin-top: 14px; font-family: var(--ff-d); font-style: italic; font-size: 18px; color: var(--lin); }
.foot-h { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; color: var(--lin); margin-bottom: 16px; }
.foot-col { display: grid; gap: 8px; align-content: start; font-size: 15px; }
.foot-col a:hover { color: var(--cognac); }
.foot-small { font-size: 13px; color: var(--lin); }
.foot-legal {
  border-top: 1px solid rgba(246, 241, 231, .2); padding-top: 26px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--lin);
}
.foot-legal nav { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-legal a:hover { color: var(--cognac); }
@media (max-width: 860px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } }
