/* Geoffrey Gil Chocolaterie — style premium */
*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; overflow-y:scroll; }
body{ background:#0b0806; font-family:'Jost',sans-serif; color:#efe4d4; -webkit-font-smoothing:antialiased; }
img{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
a:hover{ color:#d2b373; }

/* ---------- EN-TÊTE ---------- */
.hdr{ position:fixed; top:0; left:0; right:0; z-index:1000;
  display:flex; align-items:center; justify-content:space-between; gap:18px;
  padding:18px clamp(18px,2.4vw,34px);
  transition:background .4s ease, backdrop-filter .4s ease, padding .4s ease, box-shadow .4s ease; }
.hdr.solid{ background:rgba(11,8,6,.82); backdrop-filter:blur(20px) saturate(1.2);
  padding:10px clamp(18px,2.4vw,34px); box-shadow:0 1px 0 rgba(201,168,106,.16); }
.hdr .brand{ display:flex; align-items:center; flex:0 0 auto; }
.hdr .brand img{ height:52px; width:auto; transition:height .4s ease; }
.hdr.solid .brand img{ height:40px; }
.nav{ display:flex; align-items:center; justify-content:center; flex:1 1 auto;
  min-width:0; gap:clamp(12px,1.5vw,24px); }
.nav a{ font-size:11.5px; letter-spacing:.07em; text-transform:uppercase; color:#e4d9c6;
  white-space:nowrap; position:relative; padding:6px 0; }
.nav a::after{ content:""; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background:#d2b373; transition:right .35s cubic-bezier(.22,.61,.36,1); }
.nav a:hover::after{ right:0; }
.nav a.on{ color:#d2b373; }
.nav .btn-sm{ display:none; }
.nav a.on::after{ right:0; }
.hdr .act{ display:flex; align-items:center; gap:12px; flex:0 0 auto; }
.btn-sm{ border:1px solid rgba(201,168,106,.55); color:#d2b373; font-size:11px; letter-spacing:.1em;
  text-transform:uppercase; padding:11px 20px; border-radius:100px; white-space:nowrap;
  transition:background .3s ease, color .3s ease; }
.btn-sm:hover{ background:#d2b373; color:#17100d; }

.burger{ display:none; width:44px; height:44px; align-items:center; justify-content:center;
  background:none; border:1px solid rgba(201,168,106,.45); border-radius:6px; cursor:pointer; }
.burger i{ display:block; width:19px; height:1.5px; background:#d2b373; position:relative; }
.burger i::before, .burger i::after{ content:""; position:absolute; left:0; width:19px; height:1.5px; background:#d2b373;
  transition:transform .3s ease, top .3s ease; }
.burger i::before{ top:-6px; } .burger i::after{ top:6px; }
.burger.x i{ background:transparent; }
.burger.x i::before{ top:0; transform:rotate(45deg); }
.burger.x i::after{ top:0; transform:rotate(-45deg); }

@media (max-width:1200px){
  .hdr{ padding:14px 20px; }
  .hdr .brand img{ height:46px; }
  .hdr.solid .brand img{ height:38px; }
  .burger{ display:flex; }
  .hdr .act .btn-sm{ display:none; }
  .nav{ position:fixed; left:0; right:0; top:0; flex-direction:column; align-items:stretch;
    gap:0; padding:88px 24px 30px; background:rgba(9,7,5,.97); backdrop-filter:blur(20px);
    transform:translateY(-102%); transition:transform .48s cubic-bezier(.22,.61,.36,1);
    max-height:100svh; overflow-y:auto; }
  .nav.open{ transform:translateY(0); }
  .nav a{ font-size:14px; letter-spacing:.14em; padding:17px 4px;
    border-bottom:1px solid rgba(201,168,106,.14); }
  .nav a::after{ display:none; }
  .nav .btn-sm{ display:inline-flex !important; justify-content:center; margin-top:24px; border-radius:100px;
    padding:15px 22px; font-size:12px; }
}

:focus-visible{ outline:2px solid #d2b373; outline-offset:3px; border-radius:3px; }
::selection{ background:rgba(210,179,115,.3); color:#fff; }

/* ---------- HERO ---------- */
.hero{ position:relative; height:78svh; min-height:520px; overflow:hidden;
  display:flex; align-items:center; justify-content:center; text-align:center; }
.hero.tall{ height:100svh; min-height:620px; }
.hero > img, .hero picture img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.hero .veil{ position:absolute; inset:0;
  background:
    radial-gradient(72% 58% at 50% 48%, rgba(11,8,6,.66), rgba(11,8,6,0) 78%),
    linear-gradient(180deg, rgba(11,8,6,.62) 0%, rgba(11,8,6,.4) 46%, rgba(11,8,6,.9) 100%); }
.hero .inner{ position:relative; padding:0 24px; max-width:900px; }

.kicker{ font-size:10.5px; letter-spacing:.4em; text-transform:uppercase; color:#e8c98d;
  padding-left:.4em; text-shadow:0 1px 14px rgba(11,8,6,.7); }
h1{ font-family:'Cormorant Garamond',serif; font-weight:300; font-size:clamp(40px,7vw,92px);
  line-height:1.04; letter-spacing:-.012em; color:#fbf5ea; margin:20px 0 0;
  text-wrap:balance; text-shadow:0 2px 24px rgba(11,8,6,.6); }
.lede{ font-weight:300; font-size:clamp(15.5px,1.5vw,19px); line-height:1.8; color:#e6dbc9;
  max-width:54ch; margin:22px auto 0; text-wrap:pretty; text-shadow:0 1px 16px rgba(11,8,6,.6); }

.btns{ display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-top:34px; }
.cta{ display:inline-flex; align-items:center; background:#d2b373; color:#17100d;
  font-size:12px; letter-spacing:.2em; text-transform:uppercase; font-weight:500;
  padding:17px 38px; border-radius:100px; transition:transform .3s ease, background .3s ease; }
.cta:hover{ background:#e2c68a; color:#17100d; transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(210,179,115,.22); }
.cta:active{ transform:translateY(0); box-shadow:none; }
.ghost:active, .btn-sm:active{ transform:translateY(0); }
.cta, .ghost, .btn-sm{ -webkit-tap-highlight-color:transparent; }
.ghost{ display:inline-flex; align-items:center; border:1px solid rgba(232,222,205,.38);
  color:#f0e7d8; font-size:12px; letter-spacing:.2em; text-transform:uppercase;
  padding:16px 34px; border-radius:100px; transition:border-color .3s ease, color .3s ease; }
.ghost:hover{ border-color:#d2b373; color:#d2b373; }

/* ---------- SECTIONS ---------- */
.statement{ padding:clamp(64px,8vw,110px) 24px; text-align:center; }
.statement p{ font-family:'Cormorant Garamond',serif; font-weight:300; font-style:italic;
  font-size:clamp(20px,2.2vw,31px); line-height:1.55; color:#f3e9dd; max-width:38ch;
  margin:0 auto; text-wrap:balance; }
.sign{ margin-top:22px; font-size:10.5px; letter-spacing:.3em; text-transform:uppercase; color:#9b8d78; }

.center{ padding:clamp(80px,10vw,140px) 24px; text-align:center; }
.center.tight{ padding-top:0; }
.center h2{ font-family:'Cormorant Garamond',serif; font-weight:300;
  font-size:clamp(30px,4.6vw,60px); line-height:1.12; letter-spacing:-.008em; color:#fbf5ea;
  margin:16px auto 0; max-width:22ch; text-wrap:balance; }
.center .sub{ font-weight:300; font-size:clamp(15.5px,1.4vw,17px); line-height:1.88; color:#c3b6a1;
  max-width:58ch; margin:20px auto 0; text-wrap:pretty; }

.showcase{ position:relative; height:86svh; min-height:500px; overflow:hidden; display:flex; align-items:flex-end; }
.showcase img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.showcase .veil{ position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(11,8,6,.1) 26%, rgba(11,8,6,.94) 100%); }
.showcase .inner{ position:relative; width:100%; padding:0 clamp(24px,6vw,90px) clamp(48px,7vw,86px); }
.showcase h2{ font-family:'Cormorant Garamond',serif; font-weight:300;
  font-size:clamp(29px,4.6vw,62px); line-height:1.12; letter-spacing:-.008em; color:#fbf5ea;
  margin:16px 0 0; max-width:18ch; text-wrap:balance; }
.showcase p{ font-weight:300; font-size:16px; line-height:1.82; color:#d6c9b4; max-width:48ch;
  margin:18px 0 0; text-wrap:pretty; }

.duo{ display:grid; grid-template-columns:1fr 1fr; align-items:center; }
.duo .pic{ position:relative; aspect-ratio:4/3; overflow:hidden; }
.duo .pic img{ width:100%; height:100%; object-fit:cover; transition:transform 1.5s cubic-bezier(.22,.61,.36,1); }
.duo:hover .pic img{ transform:scale(1.045); }
.duo .txt{ padding:clamp(40px,6vw,90px) clamp(24px,5vw,78px); }
.duo h3{ font-family:'Cormorant Garamond',serif; font-weight:300; font-size:clamp(26px,3.4vw,44px);
  line-height:1.16; letter-spacing:-.006em; color:#fbf5ea; margin:14px 0 0; text-wrap:balance; }
.duo p{ font-weight:300; font-size:15.5px; line-height:1.88; color:#bfb29d; margin:18px 0 0;
  max-width:46ch; text-wrap:pretty; }
.duo.rev .pic{ order:2; }
@media (max-width:900px){
  .duo{ grid-template-columns:1fr; }
  .duo.rev .pic{ order:0; }
  .duo .pic{ aspect-ratio:5/4; }
}

.trio{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(201,168,106,.16); }
.trio > div{ background:#0b0806; padding:clamp(44px,5.5vw,76px) clamp(24px,3vw,44px); text-align:center; }
.trio h3{ font-family:'Cormorant Garamond',serif; font-weight:400; font-size:25px; color:#d2b373;
  margin:0 0 13px; text-wrap:balance; }
.trio p{ font-weight:300; font-size:15px; line-height:1.85; color:#b6a894; margin:0 auto;
  max-width:34ch; text-wrap:pretty; }
@media (max-width:900px){ .trio{ grid-template-columns:1fr; } }

.plans{ display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:18px; max-width:1080px; margin:clamp(40px,6vw,68px) auto 0; text-align:left; }
.plan{ border:1px solid rgba(201,168,106,.24); border-radius:14px; padding:34px 32px;
  background:linear-gradient(180deg, rgba(210,179,115,.045), transparent 70%);
  transition:border-color .35s ease, transform .35s ease, background .35s ease; }
.plan:hover{ border-color:rgba(201,168,106,.55); transform:translateY(-3px); }
.plan .t{ font-family:'Cormorant Garamond',serif; font-size:23px; color:#fbf5ea; }
.plan .pr{ font-family:'Cormorant Garamond',serif; font-size:34px; color:#d2b373; margin-top:8px;
  padding-bottom:18px; border-bottom:1px solid rgba(201,168,106,.16); }
.plan ul{ list-style:none; margin:18px 0 0; padding:0; display:flex; flex-direction:column; gap:11px; }
.plan li{ font-weight:300; font-size:14.5px; color:#b6a894; padding-left:15px; position:relative; }
.plan li::before{ content:"·"; position:absolute; left:2px; color:#d2b373; }

.band{ position:relative; padding:clamp(80px,11vw,140px) 24px; overflow:hidden; text-align:center; }
.band img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.band .veil{ position:absolute; inset:0;
  background:radial-gradient(110% 90% at 50% 50%, rgba(11,8,6,.58), rgba(11,8,6,.92)); }
.band .inner{ position:relative; max-width:840px; margin:0 auto; }
.band p{ font-family:'Cormorant Garamond',serif; font-weight:300; font-style:italic;
  font-size:clamp(22px,3.2vw,40px); line-height:1.5; color:#f7efe2; margin:0;
  max-width:32ch; margin-inline:auto; text-wrap:balance; }

/* ---------- DÉFILEMENTS ---------- */
.marq{ overflow:hidden; padding:14px 0;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent);
  mask-image:linear-gradient(90deg,transparent,#000 7%,#000 93%,transparent); }
.mtrack{ display:flex; width:max-content; animation:mscroll var(--sp,36s) linear infinite; }
.marq:hover .mtrack{ animation-play-state:paused; }
@keyframes mscroll{ from{ transform:translateX(0) } to{ transform:translateX(-50%) } }

/* galerie produits */
.gcell{ flex:none; width:clamp(210px,24vw,300px); aspect-ratio:3/4; border-radius:12px;
  overflow:hidden; margin-right:16px; box-shadow:0 14px 34px rgba(0,0,0,.4);
  transition:transform .55s cubic-bezier(.22,.61,.36,1); }
.gcell:hover{ transform:translateY(-5px); }
.gcell img{ display:block; width:100%; height:100%; min-height:100%; object-fit:cover; object-position:center; }

/* logos clients */
.lcell{ flex:none; width:168px; height:112px; background:#fff; border-radius:12px;
  display:flex; align-items:center; justify-content:center; padding:18px 22px; margin-right:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.3); }
.lcell img{ max-width:100%; max-height:100%; width:auto; height:auto; object-fit:contain; }
.lcell.dark{ background:#4f5a53; }
@media (max-width:640px){ .lcell{ width:142px; height:96px; padding:15px 18px; margin-right:14px; } }

/* ---------- REVEAL ---------- */
.rv{ opacity:0; transform:translateY(24px);
  transition:opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1); }
.rv.in{ opacity:1; transform:none; }
.d1{ transition-delay:.1s } .d2{ transition-delay:.22s } .d3{ transition-delay:.34s }
@media (prefers-reduced-motion:reduce){
  .rv{ opacity:1 !important; transform:none !important }
  .mtrack{ animation:none }
  .gcell:hover, .plan:hover, .cta:hover{ transform:none !important }
}

/* ---------- AFFINAGES MOBILE ---------- */
@media (max-width:640px){
  .hero{ height:64svh; min-height:420px; }
  .hero.tall{ height:72svh; min-height:470px; }
  .hero .veil{ background:
    radial-gradient(80% 56% at 50% 44%, rgba(11,8,6,.62), rgba(11,8,6,0) 82%),
    linear-gradient(180deg, rgba(11,8,6,.6) 0%, rgba(11,8,6,.34) 52%, rgba(11,8,6,.62) 100%); }
  .hero .inner{ padding-bottom:0; }
  .kicker{ font-size:10px; letter-spacing:.32em; }
  .lede{ font-size:15.5px; line-height:1.78; }
  .btns{ gap:10px; margin-top:28px; }
  .cta, .ghost{ padding:15px 28px; font-size:11.5px; letter-spacing:.16em; }
  .statement, .center{ padding-left:22px; padding-right:22px; }
  .showcase{ height:auto; min-height:0; }
  .showcase .inner{ padding:clamp(180px,52vw,300px) 22px 44px; }
  .duo .txt{ padding:44px 22px 52px; }
  .band{ padding:74px 22px; }
  .plans{ gap:14px; }
  .foot .top{ gap:30px; }
  .foot img.lg{ height:64px; }
}

/* ---------- PIED ---------- */
.foot{ border-top:1px solid rgba(201,168,106,.16); padding:clamp(56px,7vw,92px) 24px clamp(36px,4vw,52px); }
.foot .top{ display:flex; align-items:flex-start; justify-content:space-between; gap:40px;
  max-width:1200px; margin:0 auto; flex-wrap:wrap; }
.foot img.lg{ height:74px; width:auto; }
.foot .col{ font-weight:300; font-size:14.5px; line-height:2; color:#a2947f; }
.foot .col a:hover{ color:#d2b373; }
.foot .col b{ font-weight:400; color:#e9dcc9; display:block; font-size:12px; letter-spacing:.2em;
  text-transform:uppercase; margin-bottom:8px; }
.foot .bot{ max-width:1200px; margin:clamp(34px,4vw,50px) auto 0; padding-top:24px;
  border-top:1px solid rgba(201,168,106,.12); display:flex; justify-content:space-between;
  gap:18px; flex-wrap:wrap; font-size:12px; color:#7a6f5f; }
.foot .bot a{ letter-spacing:.1em; }

/* retour en haut */
#toTop{ position:fixed; right:18px; bottom:18px; z-index:900; width:46px; height:46px;
  border-radius:50%; background:rgba(11,8,6,.88); border:1px solid rgba(201,168,106,.45);
  color:#d2b373; cursor:pointer; font-size:17px; display:flex; align-items:center;
  justify-content:center; backdrop-filter:blur(10px); box-shadow:0 8px 20px rgba(0,0,0,.4);
  opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .35s ease, transform .35s ease, visibility .35s, background .3s ease; }
#toTop.show{ opacity:1; visibility:visible; transform:none; }
#toTop:hover{ background:#d2b373; color:#17100d; }
@media (max-width:640px){ #toTop{ right:14px; bottom:14px; } }

/* ---------- FORMULAIRE ---------- */
.form{ max-width:820px; margin:clamp(40px,5vw,60px) auto 0; text-align:left;
  border:1px solid rgba(201,168,106,.24); border-radius:14px; padding:clamp(28px,4vw,46px); background:#120d09; }
.fgrid{ display:grid; grid-template-columns:1fr 1fr; gap:18px 22px; }
.f{ display:flex; flex-direction:column; gap:7px; }
.f label{ font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:#a2947f; }
.f input, .f select, .f textarea{ width:100%; background:#0b0806; border:1px solid rgba(201,168,106,.26);
  border-radius:8px; padding:14px 15px; color:#f3e9dd; font-family:'Jost',sans-serif;
  font-size:15px; font-weight:300; outline:none; transition:border-color .3s ease; }
.f input:focus, .f select:focus, .f textarea:focus{ border-color:#c2a25e; }
.f textarea{ min-height:150px; resize:vertical; line-height:1.7; }
.f select{ appearance:none; cursor:pointer; }
.frow{ display:flex; align-items:center; justify-content:space-between; gap:22px;
  flex-wrap:wrap; margin-top:26px; }
.frow p{ font-weight:300; font-size:12.5px; line-height:1.7; color:#8b7d68; margin:0; max-width:400px; }
.frow p a{ color:#b58f4f; }
.frow button{ border:none; cursor:pointer; font-family:'Jost',sans-serif; }
@media (max-width:640px){
  .fgrid{ grid-template-columns:1fr; }
  .frow{ flex-direction:column; align-items:stretch; }
  .frow button{ justify-content:center; }
}

/* ---------- BOUTIQUES ---------- */
.shops{ display:grid; grid-template-columns:1fr 1fr; gap:22px; max-width:1080px;
  margin:clamp(40px,5vw,62px) auto 0; text-align:left; }
.shop{ border:1px solid rgba(201,168,106,.24); border-radius:14px; overflow:hidden; background:#120d09; }
.shop .t{ font-family:'Cormorant Garamond',serif; font-size:27px; color:#d2b373; padding:30px 32px 12px; }
.shop .a{ font-weight:300; font-size:14.5px; line-height:1.8; color:#bfb29d; padding:0 32px; }
.shop .p{ display:inline-block; font-size:15px; color:#e9dcc9; padding:12px 32px 0; }
.shop .h{ font-size:11.5px; letter-spacing:.14em; text-transform:uppercase; color:#8b7d68; padding:8px 32px 24px; }
.shop iframe{ display:block; width:100%; height:280px; border:0; filter:grayscale(.15); }
@media (max-width:900px){ .shops{ grid-template-columns:1fr; } }

/* ---------- TEXTE LÉGAL ---------- */
.legal{ max-width:820px; margin:0 auto; padding:clamp(130px,15vw,190px) 24px clamp(70px,9vw,110px); }
.legal h1{ font-size:clamp(34px,5vw,56px); text-shadow:none; margin:0 0 30px; }
.legal h2{ font-family:'Cormorant Garamond',serif; font-weight:400; font-size:25px; color:#d2b373;
  margin:44px 0 14px; }
.legal p, .legal li{ font-weight:300; font-size:15.5px; line-height:1.9; color:#bfb29d; }
.legal ul{ margin:0 0 0 20px; }
.legal a{ color:#d2b373; }
.legal strong{ color:#e9dcc9; font-weight:400; }

/* ---------- ACTUALITÉ / SAISON ---------- */
.news{ display:grid; grid-template-columns:1.05fr 1fr; align-items:center;
  border-top:1px solid rgba(201,168,106,.14); border-bottom:1px solid rgba(201,168,106,.14); }
.news .pic{ position:relative; height:clamp(250px,30vw,390px); min-height:0; overflow:hidden; }
.news .pic img{ width:100%; height:100%; object-fit:cover;
  transition:transform 1.6s cubic-bezier(.22,.61,.36,1); }
.news:hover .pic img{ transform:scale(1.04); }
.news .tag{ position:absolute; top:22px; left:22px; z-index:2;
  background:rgba(11,8,6,.78); backdrop-filter:blur(8px);
  border:1px solid rgba(210,179,115,.5); color:#e8c98d;
  font-size:10px; letter-spacing:.24em; text-transform:uppercase;
  padding:9px 16px; border-radius:100px; }
.news .txt{ display:flex; flex-direction:column; justify-content:center;
  padding:clamp(34px,4vw,52px) clamp(24px,5vw,64px);
  background:linear-gradient(160deg, rgba(210,179,115,.05), transparent 60%); }
.news h2{ font-family:'Cormorant Garamond',serif; font-weight:300;
  font-size:clamp(28px,3.8vw,50px); line-height:1.12; letter-spacing:-.008em;
  color:#fbf5ea; margin:16px 0 0; max-width:20ch; text-wrap:balance; }
.news p{ font-weight:300; font-size:15.5px; line-height:1.88; color:#bfb29d;
  margin:18px 0 0; max-width:46ch; text-wrap:pretty; }
.news .btns{ justify-content:flex-start; margin-top:30px; }
@media (max-width:900px){
  .news{ grid-template-columns:1fr; }
  .news .pic{ height:clamp(220px,48vw,320px); }
}

/* ---------- FONDS TEXTURÉS CACAO (sections simples) ---------- */
.statement, .center, .trio > div{ position:relative; isolation:isolate; }
.statement::before, .center::before, .trio > div::before{
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background-image:url("assets/w-mat-cacao.jpg");
  background-size:cover; background-position:center;
  opacity:.085; filter:saturate(.6) contrast(1.05); }
.statement::after, .center::after, .trio > div::after{
  content:""; position:absolute; inset:0; z-index:-1; pointer-events:none;
  background:radial-gradient(120% 90% at 50% 40%, rgba(11,8,6,.5), rgba(11,8,6,.9) 78%); }

/* ---------- AFFINAGES FINS ---------- */

/* Chargement progressif des images : plus de "pop" brutal */
.duo .pic img, .gcell img, .news .pic img{ background:#120d09; }

/* Héros : léger zoom lent, vivant sans être distrayant */
@media (prefers-reduced-motion:no-preference){
  .hero > img, .hero picture img{ animation:heroBreath 26s ease-in-out infinite alternate; }
  @keyframes heroBreath{ from{ transform:scale(1) } to{ transform:scale(1.045) } }
}

/* Indicateur de défilement discret sous le héros plein écran */
.hero.tall .inner::after{ content:""; display:block; width:1px; height:52px;
  margin:clamp(36px,5vw,58px) auto 0;
  background:linear-gradient(180deg, rgba(232,201,141,.7), rgba(232,201,141,0));
  animation:scrollHint 2.6s ease-in-out infinite; }
@keyframes scrollHint{ 0%,100%{ opacity:.35; transform:scaleY(.75) } 50%{ opacity:1; transform:scaleY(1) } }
@media (max-width:640px){ .hero.tall .inner::after{ height:38px; margin-top:28px; } }

/* Séparateur doré très fin entre grandes sections */
.duo + .band, .band + .duo, .showcase + .band{ border-top:1px solid rgba(201,168,106,.1); }

/* Liens du pied de page : soulignement animé */
.foot .bot a{ position:relative; }
.foot .bot a::after{ content:""; position:absolute; left:0; right:100%; bottom:-3px; height:1px;
  background:#d2b373; transition:right .3s ease; }
.foot .bot a:hover::after{ right:0; }

/* Cartes formules : le chiffre se réchauffe au survol */
.plan:hover .pr{ color:#e6c884; }
.plan:hover{ background:linear-gradient(180deg, rgba(210,179,115,.075), transparent 72%); }

/* Boutiques : la carte se soulève légèrement */
.shop{ transition:border-color .35s ease, transform .35s ease; }
.shop:hover{ border-color:rgba(201,168,106,.45); transform:translateY(-3px); }

/* Champs de formulaire : anneau doré diffus à la saisie */
.f input:focus, .f select:focus, .f textarea:focus{
  box-shadow:0 0 0 3px rgba(210,179,115,.12); }

/* Chiffres clés : léger réchauffement au survol */
.trio > div{ transition:background .4s ease; }
.trio > div:hover{ background:#0d0907; }

/* Barre de défilement dans les tons de la marque */
::-webkit-scrollbar{ width:11px; }
::-webkit-scrollbar-track{ background:#0b0806; }
::-webkit-scrollbar-thumb{ background:#3a2c1e; border-radius:10px; border:3px solid #0b0806; }
::-webkit-scrollbar-thumb:hover{ background:#5a4529; }

/* Impression propre (devis, mentions, contact) */
@media print{
  .hdr, #toTop, .marq, .hero, .band, .showcase{ display:none !important; }
  body{ background:#fff; color:#1a1a1a; }
  .center h2, h1, .legal h1, .legal h2{ color:#111; text-shadow:none; }
  .legal p, .legal li, .center .sub, .shop .a{ color:#333; }
  .statement::before, .center::before, .trio > div::before,
  .statement::after, .center::after, .trio > div::after{ display:none; }
  .form, .shop{ border-color:#ccc; background:#fff; }
  a{ color:#111; text-decoration:underline; }
}

/* Écrans très larges : le contenu reste lisible */
@media (min-width:1800px){
  .duo .txt{ padding-left:clamp(78px,7vw,140px); padding-right:clamp(78px,7vw,140px); }
  .showcase .inner{ padding-left:clamp(90px,8vw,180px); }
}

/* Citation : vraie bande texturée cacao */
.statement{ border-top:1px solid rgba(201,168,106,.14);
  border-bottom:1px solid rgba(201,168,106,.14); }
.statement::before{ opacity:.4 !important; filter:saturate(.75) contrast(1.05) !important; }
.statement::after{ background:radial-gradient(115% 95% at 50% 45%,
  rgba(11,8,6,.62), rgba(11,8,6,.9) 76%) !important; }
.statement p{ text-shadow:0 2px 20px rgba(11,8,6,.75); }
.statement .sign{ color:#c3ab86; text-shadow:0 1px 14px rgba(11,8,6,.8); }

/* Portrait de l'artisan : cadre plus contenu */
.duo .pic{ aspect-ratio:auto; height:clamp(300px,34vw,460px); }
@media (max-width:900px){ .duo .pic{ height:clamp(260px,54vw,380px); } }

/* Logo affiché entier (pas de recadrage) dans une cellule deux colonnes */
.duo .pic.logo{ background:#fbf7f0; display:flex; align-items:center; justify-content:center;
  padding:clamp(34px,4vw,60px); height:clamp(240px,26vw,340px); }
.duo .pic.logo img{ width:auto; height:auto; max-width:100%; max-height:100%; object-fit:contain; }
.duo:hover .pic.logo img{ transform:none; }
@media (max-width:900px){ .duo .pic.logo{ height:clamp(200px,40vw,270px); } }

/* Bloc de chiffres : s'adapte au nombre réel de colonnes */
.trio{ grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }

/* Cellule double : label + produit côte à côte */
.duo .pic.duo-pair{ display:grid; grid-template-columns:1fr 1fr; gap:0; padding:0;
  background:transparent; height:clamp(240px,26vw,340px); }
.duo .pic.duo-pair .pair-logo{ background:#fbf7f0; display:flex; align-items:center;
  justify-content:center; padding:clamp(20px,2.4vw,36px); }
.duo .pic.duo-pair .pair-logo img{ width:auto; height:auto; max-width:100%; max-height:100%;
  object-fit:contain; }
.duo .pic.duo-pair .pair-photo{ overflow:hidden; }
.duo .pic.duo-pair .pair-photo img{ width:100%; height:100%; object-fit:cover;
  transition:transform 1.6s cubic-bezier(.22,.61,.36,1); }
.duo:hover .pic.duo-pair .pair-photo img{ transform:scale(1.05); }
@media (max-width:900px){ .duo .pic.duo-pair{ height:clamp(200px,40vw,270px); } }

/* Médaillons clients : la carte s'ajuste au logo (fin des grands vides blancs) */
.lcell{ width:auto !important; min-width:118px; max-width:230px;
  height:110px; padding:15px 22px; }
.lcell img{ height:100%; width:auto; max-width:186px; max-height:100%; object-fit:contain; }
@media (max-width:640px){
  .lcell{ min-width:104px; max-width:190px; height:94px; padding:13px 18px; }
  .lcell img{ max-width:150px; }
}

/* ---------- TÉMOIGNAGES ---------- */
.quotes{ display:grid; grid-template-columns:1fr 1fr; gap:20px; max-width:1080px;
  margin:clamp(40px,5vw,62px) auto 0; text-align:left; }
.quote{ border:1px solid rgba(201,168,106,.24); border-radius:14px;
  padding:clamp(28px,3.4vw,42px);
  background:linear-gradient(180deg, rgba(210,179,115,.05), transparent 70%);
  display:flex; flex-direction:column; }
.quote .stars{ color:#d2b373; font-size:14px; letter-spacing:.22em; }
.quote blockquote{ font-family:'Cormorant Garamond',serif; font-weight:300; font-style:italic;
  font-size:clamp(17px,1.6vw,20px); line-height:1.66; color:#e8dcc8; margin:16px 0 0;
  text-wrap:pretty; flex:1; }
.quote figcaption{ margin-top:22px; padding-top:18px;
  border-top:1px solid rgba(201,168,106,.18); font-size:12px; letter-spacing:.14em;
  text-transform:uppercase; color:#a2947f; }
.quote figcaption b{ color:#e9dcc9; font-weight:400; }
@media (max-width:900px){ .quotes{ grid-template-columns:1fr; } }

/* ---------- GRILLE PRODUITS ---------- */
.pgrid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1px;
  background:rgba(201,168,106,.14);
  border-top:1px solid rgba(201,168,106,.14);
  border-bottom:1px solid rgba(201,168,106,.14); }
.pgrid.three{ grid-template-columns:repeat(3,1fr); }
.pcard{ margin:0; background:#0b0806; display:flex; flex-direction:column; }
.pcard .pimg{ overflow:hidden; aspect-ratio:3/4; }
.pcard .pimg img{ width:100%; height:100%; object-fit:cover;
  transition:transform 1.4s cubic-bezier(.22,.61,.36,1); }
.pcard:hover .pimg img{ transform:scale(1.05); }
.pcard figcaption{ padding:clamp(22px,2.4vw,32px) clamp(20px,2.2vw,30px) clamp(28px,3vw,38px); }
.pcard h3{ font-family:'Cormorant Garamond',serif; font-weight:400; font-size:clamp(20px,1.7vw,25px);
  color:#d2b373; margin:0 0 10px; text-wrap:balance; }
.pcard p{ font-weight:300; font-size:14.5px; line-height:1.8; color:#b6a894; margin:0;
  max-width:36ch; text-wrap:pretty; }
@media (max-width:1080px){
  .pgrid, .pgrid.three{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:620px){
  .pgrid, .pgrid.three{ grid-template-columns:1fr; }
  .pcard .pimg{ aspect-ratio:4/3; }
}

/* cellules sans description : ne pas étirer la bande de légende */


/* Cellule double : LG Béziers et Étoile Mercedes-Benz réunis */
.lcell.pair{ width:250px; gap:16px; padding:15px 20px; }
.lcell.pair img{ height:auto; width:auto; max-width:none; max-height:100%; }
/* logotype large : dimensionné en largeur */
.lcell.pair img[src*="logo-lg"]{ flex:1 1 auto; width:100%; max-width:62%; max-height:none; }
/* logo carré : dimensionné en hauteur */
.lcell.pair img[src*="etoile-mb"]{ flex:0 0 auto; max-height:74%; }
@media (max-width:640px){ .lcell.pair{ width:210px; gap:11px; padding:13px 15px; } }
