﻿  :root{
    --ink:#0a0a0a;
    --paper:#ffffff;
    --off:#faf9f6;
    --graphite:#3d3b36;
    --line:#000000;
    --hair:#dedad0;
    --ease:cubic-bezier(.4,0,.2,1);
    color-scheme:light;
  }
  *{ box-sizing:border-box; margin:0; padding:0; border-radius:0 !important; }
  html{ background:var(--paper); color-scheme:light; scroll-behavior:smooth; }
  @media (prefers-reduced-motion:reduce){ html{scroll-behavior:auto;} *{animation-duration:.001ms !important; transition-duration:.001ms !important;} }
  body{
    background:var(--paper); color:var(--ink);
    font-family:'Jost', sans-serif; font-weight:400;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  h1,h2,h3,.display{ font-family:'Bodoni Moda', serif; font-weight:600; letter-spacing:-0.01em; line-height:1.0; }
  a{ color:inherit; text-decoration:none; }
  button{ font-family:inherit; cursor:pointer; }
  img{ display:block; max-width:100%; }
  .wrap{ max-width:1280px; margin:0 auto; padding:0 32px; }
  @media (max-width:640px){ .wrap{ padding:0 20px; } }

  .eyebrow{ font-size:11px; letter-spacing:.3em; text-transform:uppercase; font-weight:600; color:var(--graphite); }

  /* thick full-bleed divider (signature rule) */
  .divider{ height:4px; background:var(--ink); }
  .divider-thin{ height:1px; background:var(--hair); }

  /* facet motif kept from brand exploration, refined */
  .facet-corner{
    position:absolute; top:0; right:0; width:0; height:0;
    border-style:solid; border-width:0 30px 30px 0;
    border-color:transparent var(--ink) transparent transparent;
    transition:border-width .18s var(--ease);
  }

  /* reveal-on-scroll (subtle, IntersectionObserver driven) */
  .reveal{ opacity:0; transform:translateY(14px); transition:opacity .35s var(--ease), transform .35s var(--ease); }
  .reveal.in{ opacity:1; transform:translateY(0); }

  /* ============ nav ============ */
  header{ position:sticky; top:0; z-index:70; background:var(--paper); border-bottom:1px solid var(--ink); }
  .nav{ display:flex; align-items:center; justify-content:space-between; height:76px; }
  .wordmark{ font-family:'Bodoni Moda', serif; font-weight:700; font-size:26px; letter-spacing:-0.02em; display:flex; align-items:baseline; gap:9px; }
  .wordmark small{ font-family:'Jost',sans-serif; font-weight:600; font-size:9px; letter-spacing:.24em; color:var(--graphite); text-transform:uppercase; }
  .nav-links{ display:flex; gap:34px; align-items:center; }
  .nav-links a{ font-size:12px; letter-spacing:.08em; text-transform:uppercase; font-weight:500; position:relative; padding-bottom:4px; }
  .nav-links a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background:var(--ink); transition:width .2s var(--ease); }
  .nav-links a:hover::after{ width:100%; }
  .wa-btn{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--ink); color:var(--paper); border:1px solid var(--ink);
    padding:11px 18px; font-size:11px; letter-spacing:.1em; text-transform:uppercase; font-weight:600;
    transition:background .1s linear, color .1s linear;
  }
  .wa-btn:hover, .wa-btn:active{ background:var(--paper); color:var(--ink); }
  .wa-btn svg{ width:15px; height:15px; flex-shrink:0; }
  .burger{ display:none; background:none; border:none; flex-direction:column; gap:5px; width:24px; }
  .burger span{ height:1px; background:var(--ink); width:100%; display:block; }
  @media (max-width:900px){ .nav-links{ display:none; } .burger{ display:flex; } }

  /* ============ hero ============ */
  .hero{ padding:76px 0 56px; background:var(--paper); position:relative; }
  .hero-eyebrow{ display:flex; align-items:center; gap:14px; margin-bottom:22px; }
  .hero-eyebrow .ln{ width:44px; height:1px; background:var(--ink); }
  .hero-title{
    font-size:clamp(52px, 9.5vw, 128px);
    text-transform:uppercase;
    letter-spacing:-0.01em;
    display:flex; flex-wrap:wrap; column-gap:22px;
  }
  .hero-title em{ font-style:italic; font-weight:400; }
  .hero-sub{
    display:grid; grid-template-columns:1.3fr .7fr; gap:50px; margin-top:38px; align-items:end;
  }
  @media (max-width:820px){ .hero-sub{ grid-template-columns:1fr; } }
  .hero-sub p{ font-size:17px; line-height:1.7; color:var(--graphite); max-width:46ch; }
  .hero-cta{ display:flex; gap:12px; flex-wrap:wrap; margin-top:26px; }
  .btn{
    display:inline-flex; align-items:center; gap:9px;
    padding:15px 26px; font-size:11px; letter-spacing:.12em; text-transform:uppercase; font-weight:600;
    border:1px solid var(--ink); transition:background .1s linear, color .1s linear;
  }
  .btn-dark{ background:var(--ink); color:var(--paper); }
  .btn-dark:hover, .btn-dark:active{ background:var(--paper); color:var(--ink); }
  .btn-outline{ background:var(--paper); color:var(--ink); }
  .btn-outline:hover, .btn-outline:active{ background:var(--ink); color:var(--paper); }
  .btn svg{ width:15px; height:15px; }

  /* ============ marquee (only true "dark" band, kept thin & short) ============ */
  .marquee{ background:var(--ink); color:var(--paper); overflow:hidden; white-space:nowrap; padding:13px 0; }
  .marquee-track{ display:inline-block; animation:scroll 24s linear infinite; font-size:11px; letter-spacing:.32em; text-transform:uppercase; font-weight:600; }
  .marquee-track span{ margin:0 26px; }
  @keyframes scroll{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

  section{ padding:96px 0; }
  @media (max-width:640px){ section{ padding:64px 0; } }
  .section-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:24px; margin-bottom:48px; flex-wrap:wrap; }
  .section-head h2{ font-size:clamp(34px,4.4vw,54px); text-transform:uppercase; }
  .section-head .note{ font-size:12px; color:var(--graphite); letter-spacing:.04em; max-width:32ch; text-align:right; }
  @media (max-width:640px){ .section-head .note{ text-align:left; } }

  /* ============ collection ============ */
  .filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:42px; }
  .chip{ border:1px solid var(--ink); padding:9px 18px; font-size:11px; letter-spacing:.08em; text-transform:uppercase; font-weight:600; background:var(--paper); transition:background .1s linear, color .1s linear; }
  .chip.active, .chip:hover{ background:var(--ink); color:var(--paper); }

  .product-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--ink); border:1px solid var(--ink); }
  @media (max-width:900px){ .product-grid{ grid-template-columns:repeat(2,1fr); } }
  @media (max-width:560px){ .product-grid{ grid-template-columns:1fr; } }
  .product-card{ background:var(--paper); display:flex; flex-direction:column; }
  .product-media{ position:relative; aspect-ratio:4/3; background:var(--off); display:flex; align-items:center; justify-content:center; overflow:hidden; }
  .product-media img, .look-tile img{ width:100%; height:100%; object-fit:cover; }
  .product-media svg{ width:56%; opacity:.6; }
  .product-card:hover .facet-corner{ border-width:0 46px 46px 0; }
  .ph-tag{ position:absolute; bottom:10px; left:10px; font-size:9px; letter-spacing:.12em; text-transform:uppercase; background:var(--paper); border:1px solid var(--ink); padding:4px 8px; }
  .product-info{ padding:22px; display:flex; flex-direction:column; gap:6px; flex:1; }
  .product-cat{ font-size:10px; letter-spacing:.18em; text-transform:uppercase; color:var(--graphite); }
  .product-name{ font-family:'Bodoni Moda',serif; font-size:21px; font-weight:600; }
  .product-ref{ font-size:11px; color:var(--graphite); letter-spacing:.04em; }
  .order-btn{ margin-top:16px; border:1px solid var(--ink); background:var(--paper); padding:10px 14px; font-size:11px; letter-spacing:.08em; text-transform:uppercase; font-weight:600; display:inline-flex; align-items:center; gap:8px; align-self:flex-start; transition:background .1s linear, color .1s linear; }
  .order-btn:hover, .order-btn:active{ background:var(--ink); color:var(--paper); }
  .order-btn svg{ width:13px; height:13px; }

  /* ============ lookbook / mannequins ============ */
  .lookbook{ display:grid; grid-template-columns:repeat(2, 1fr); grid-auto-rows:260px; gap:1px; background:var(--ink); border:1px solid var(--ink); }
  .look-tile{ background:var(--off); position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
  .look-tile img{ width:100%; height:100%; object-fit:contain; object-position:center center; }
  .look-tile.t1,
  .look-tile.t2,
  .look-tile.t3,
  .look-tile.t4,
  .look-tile.t5,
  .look-tile.t6{ grid-column:auto; grid-row:auto; }
  @media (max-width:820px){
    .lookbook{ grid-template-columns:1fr; grid-auto-rows:220px; }
    .look-tile.t1,.look-tile.t2,.look-tile.t3,.look-tile.t4,.look-tile.t5,.look-tile.t6{ grid-column:auto; }
  }
  .look-label{ font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--graphite); text-align:center; padding:0 14px; }
  .look-label small{ display:block; font-size:9px; color:var(--graphite); opacity:.7; margin-top:6px; }

  /* ============ personnalisation ============ */
  .custom-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--ink); border:1px solid var(--ink); }
  @media (max-width:820px){ .custom-grid{ grid-template-columns:1fr; } }
  .custom-card{ background:var(--paper); display:flex; flex-direction:column; }
  .custom-media{ aspect-ratio:16/10; background:var(--off); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
  .custom-media img{ width:100%; height:100%; object-fit:cover; }
  .custom-body{ padding:34px; }
  .custom-body .tag{ font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:var(--graphite); margin-bottom:12px; display:block; }
  .custom-body h3{ font-family:'Bodoni Moda',serif; font-size:26px; font-weight:600; margin-bottom:14px; text-transform:uppercase; }
  .custom-body p{ font-size:14.5px; line-height:1.7; color:var(--graphite); margin-bottom:22px; }

  /* ============ video ============ */
  .video-wrap{ border:1px solid var(--ink); background:var(--off); position:relative; aspect-ratio:16/9; display:flex; align-items:center; justify-content:center; overflow:hidden; }
  .video-wrap video{ width:100%; height:100%; object-fit:cover; }
  .play-badge{ position:absolute; display:flex; flex-direction:column; align-items:center; gap:14px; pointer-events:none; }
  .play-circle{ width:74px; height:74px; border:1px solid var(--ink); display:flex; align-items:center; justify-content:center; }
  .play-circle svg{ width:22px; height:22px; margin-left:3px; }
  .video-caption{ margin-top:18px; font-size:12px; color:var(--graphite); letter-spacing:.03em; text-align:center; }

  /* ============ boutique ============ */
  .boutique-grid{ display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--ink); border:1px solid var(--ink); }
  @media (max-width:860px){ .boutique-grid{ grid-template-columns:1fr; } }
  .boutique-info{ background:var(--paper); padding:44px; }
  .info-line{ display:flex; gap:14px; padding:16px 0; border-bottom:1px solid var(--hair); }
  .info-line .lbl{ width:110px; flex-shrink:0; font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--graphite); }
  .info-line .val{ font-size:15px; }
  .map-block{ background:var(--off); position:relative; display:flex; align-items:center; justify-content:center; text-align:center; padding:30px; }
  .map-block p{ color:var(--graphite); font-size:13px; letter-spacing:.04em; line-height:1.7; }

  /* ============ order banner (compact, single inverted moment) ============ */
  .order-banner{ background:var(--ink); color:var(--paper); padding:64px 0; text-align:center; }
  .order-banner h2{ color:var(--paper); font-size:clamp(28px,4vw,42px); text-transform:uppercase; margin-bottom:16px; }
  .order-banner p{ color:#cfcdc4; font-size:14.5px; max-width:52ch; margin:0 auto 30px; line-height:1.7; }

  /* ============ footer ============ */
  footer{ padding:56px 0 40px; background:var(--paper); }
  .footer-grid{ display:flex; justify-content:space-between; align-items:flex-start; gap:40px; flex-wrap:wrap; padding-bottom:32px; margin-bottom:24px; border-bottom:1px solid var(--hair); }
  .footer-cols{ display:flex; gap:60px; flex-wrap:wrap; }
  .footer-col h4{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; margin-bottom:14px; color:var(--graphite); }
  .footer-col a, .footer-col p{ display:block; font-size:13px; margin-bottom:9px; color:var(--ink); }
  .footer-bottom{ display:flex; justify-content:space-between; font-size:11px; color:var(--graphite); flex-wrap:wrap; gap:10px; }

  /* ============ floating whatsapp FAB ============ */
  .fab{
    position:fixed; right:22px; bottom:22px; z-index:80;
    display:flex; align-items:center; gap:10px;
    background:var(--ink); color:var(--paper); border:1px solid var(--ink);
    padding:15px 20px; font-size:11px; letter-spacing:.1em; text-transform:uppercase; font-weight:600;
    box-shadow:0 6px 0 0 var(--ink);
    transform:translateY(0); transition:transform .15s var(--ease);
  }
  .fab:hover{ transform:translateY(-3px); }
  .fab svg{ width:18px; height:18px; }
  @media (max-width:640px){ .fab span{ display:none; } .fab{ padding:15px; } }

  :focus-visible{ outline:2px solid var(--ink); outline-offset:2px; }