
/* ════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════ */
:root {
  --coral:         #FB926B;
  --coral-bg:      #fddfd8;
  --mint:          #BAFAEE;
  --mint-bg:       #dffdf7;
  --periwinkle:    #BFCCFB;
  --periwinkle-bg: #dee5fd;
  --cream:         #FEECC2;
  --cream-grid:    #fbefd3;
  --rose:          #FFCEEC;
  --rose-mid:      #FF9DB8;
  --ink:           #161616;
  --ink-dark:      #2a2a2a;
  --ink-mid:       #555555;
  --ink-soft:      #888888;
  --body-bg:       #f2f2f2;
  --white:         #F2F2F2;
  --border:        #161616;
  --mid:           #c8c8c8;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --sans: 'Lato', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--body-bg);
  color: var(--ink);
  cursor: none;
  overflow-x: hidden;
  font-size: 17px;
  line-height: 1.7;
}

/* ── CURSOR ── */
#cur {
  width: 9px; height: 9px;
  background: var(--coral); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .12s, background .2s;
  mix-blend-mode: multiply;
}
#cur-r {
  width: 32px; height: 32px;
  border: 1.5px solid rgba(251,146,107,.4); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .3s cubic-bezier(.23,1,.32,1);
  opacity: .5;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: #f2f2f2;
  border-bottom: 1.5px solid var(--mid);
  transition: padding .3s;
}
.logo { font-family: var(--sans); font-size: 1.25rem; font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -.03em; }
.logo em { font-style: normal; color: var(--coral); }
.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a {
  text-decoration: none; font-size: .82rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--ink-mid); transition: color .2s;
  position: relative;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1.5px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.23,1,.32,1);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--ink); }
.nav-menu a:hover::after, .nav-menu a.active::after { transform: scaleX(1); }
.nav-right-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; }
.nav-secondary { display: flex; gap: 1.2rem; align-items: center; }
.nav-secondary a { text-decoration: none; font-size: .78rem; font-weight: 500; color: rgba(22,22,22,.45); transition: color .2s; }
.nav-secondary a:hover { color: var(--coral); }
.nav-btn {
  background: var(--coral) !important; color: #fff !important;
  padding: .55rem 1.4rem !important; border: 1.5px solid var(--coral) !important;
  font-weight: 600 !important; font-size: .82rem !important; transition: background .18s !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--ink) !important; border-color: var(--ink) !important; }

/* ── SHARED ── */
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 500; letter-spacing: .07em; text-transform: uppercase;
  color: rgba(22,22,22,.5); margin-bottom: 2rem;
}
.breadcrumb a { text-decoration: none; color: inherit; }
.breadcrumb a:hover { color: var(--ink); }
::-webkit-scrollbar{width:5px} ::-webkit-scrollbar-track{background:var(--body-bg)} ::-webkit-scrollbar-thumb{background:var(--mid)} ::-webkit-scrollbar-thumb:hover{background:var(--coral)}

/* ════════════════════════════════════════════
   PAGE — MENTIONS LÉGALES
════════════════════════════════════════════ */
#legale { padding-top: 64px; }
.legal-layout {
  display: flex; flex-direction: column;
  max-width: 900px; margin: 0 auto;
  padding: 5rem 3rem 6rem;
}
.legal-nav {
  position: sticky; top: 64px; z-index: 10;
  background: var(--body-bg); border-bottom: 1.5px solid var(--border);
  padding: .75rem 0; margin-bottom: 3rem;
}
.ln-title { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: .5rem; }
.ln-items { display: flex; flex-wrap: wrap; gap: .4rem; }
.ln-item { font-size: .78rem; color: var(--ink-soft); text-decoration: none; padding: .3rem .75rem; transition: all .18s; border: 1.5px solid var(--mid); font-weight: 600; white-space: nowrap; background: var(--white); }
.ln-item:hover { color: var(--ink); border-color: var(--ink); background: var(--white); }
.ln-item.on { color: var(--ink); border-color: var(--coral); background: var(--coral-bg); }

.legal-content { padding-left: 0; }
h1.legal-title { font-family: var(--display); font-size: clamp(2.5rem,4vw,4rem); font-weight: 700; letter-spacing: -.05em; line-height: 1.0; margin-bottom: .7rem; }
h1.legal-title em { font-style: normal; font-weight: 700; color: inherit; }
.legal-update { font-size: .82rem; color: var(--ink-soft); margin-bottom: 3rem; display: flex; align-items: center; gap: .5rem; }
.legal-update svg { width: 14px; height: 14px; stroke: var(--ink-soft); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.legal-section { margin-bottom: 3.5rem; scroll-margin-top: 100px; }
.ls-title {
  font-family: var(--display); font-size: 1.2rem; font-weight: 700; letter-spacing: -.03em;
  margin-bottom: 1.2rem; padding-bottom: .8rem;
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; gap: .8rem;
}
.ls-num { font-size: .78rem; font-weight: 700; letter-spacing: .04em; color: var(--coral); background: var(--coral-bg); padding: .2rem .55rem; border: 1.5px solid rgba(251,146,107,.3); flex-shrink: 0; }
.legal-section p { font-size: .95rem; line-height: 1.88; color: var(--ink-mid); margin-bottom: .9rem; }
.legal-section strong { color: var(--ink); font-weight: 700; }
.legal-section a { color: var(--coral); font-weight: 600; }
.legal-table { width: 100%; border-collapse: collapse; margin: 1.2rem 0; font-size: .88rem; }
.legal-table th { text-align: left; padding: .75rem 1rem; background: var(--cream-grid); border: 1.5px solid var(--border); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); }
.legal-table td { padding: .75rem 1rem; border: 1.5px solid var(--mid); vertical-align: top; line-height: 1.6; color: var(--ink-mid); }
.legal-table tr:nth-child(even) td { background: rgba(242,242,242,.5); }
.legal-box { background: var(--cream-grid); border: 1.5px solid var(--mid); border-left: 3px solid var(--coral); padding: 1.2rem 1.6rem; margin: 1.2rem 0; font-size: .9rem; line-height: 1.75; color: var(--ink-mid); }
.legal-box.warning { background: var(--rose); border-left-color: var(--rose-mid); }
.lbw-icon { margin-bottom: .4rem; font-size: .75rem; font-weight: 700; color: #8a1040; letter-spacing: .08em; text-transform: uppercase; }
.legal-contact { background: var(--white); border: 1.5px solid var(--border); padding: 1.6rem 2rem; margin-top: 2rem; display: flex; align-items: center; gap: 1.5rem; box-shadow: 3px 3px 0 rgba(0,0,0,.08); }
.lc-icon { width: 42px; height: 42px; background: var(--coral-bg); border: 1.5px solid var(--coral); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lc-icon svg { width: 18px; height: 18px; stroke: var(--coral); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.lc-title { font-size: .95rem; font-weight: 700; margin-bottom: .2rem; }
.lc-txt { font-size: .85rem; color: var(--ink-mid); }
.lc-txt a { color: var(--coral); font-weight: 600; text-decoration: none; }

/* ════ FOOTER ════ */
footer{background:var(--ink)!important;color:rgba(255,255,255,.85)!important;padding: 4.5rem 0 2rem}
.container { max-width: 1240px; margin: 0 auto; padding: 0 3rem; }
.footer-top { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 3.5rem; margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand .logo { color: rgba(255,255,255,.85); display: block; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.75; color: rgba(255,255,255,.35); max-width: 28ch; margin-bottom: 1.6rem; }
.footer-social { display: flex; gap: .6rem; }
.social-btn { width: 32px; height: 32px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s; }
.social-btn:hover { background: var(--coral); border-color: var(--coral); }
.social-btn svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a { text-decoration: none; font-size: .95rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul a:hover { color: var(--coral); }
.footer-newsletter input { width: 100%; background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1); padding: .9rem 1.1rem; color: #fff; font-family: var(--sans); font-size: .95rem; margin-bottom: .7rem; outline: none; transition: border-color .2s; }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.25); }
.footer-newsletter input:focus { border-color: var(--coral); }
.footer-newsletter .btn-nl { width: 100%; background: var(--coral); color: #fff; border: 1.5px solid var(--coral); padding: 1rem; font-family: var(--sans); font-size: .95rem; font-weight: 600; cursor: pointer; transition: background .2s; }
.footer-newsletter .btn-nl:hover { background: #e07555; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,.25); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ════════════════════════════════════════════
   HAMBURGER MOBILE
════════════════════════════════════════════ */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; width: 36px; height: 36px; cursor: pointer;
  background: none; border: none; padding: 4px; z-index: 300;
}
.hamburger span { display: block; height: 2px; background: var(--ink); transition: transform .3s, opacity .3s, width .3s; transform-origin: center; }
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--body-bg); z-index: 250; padding: 6rem 2rem 3rem;
  flex-direction: column; gap: 0; overflow-y: auto;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.23,1,.32,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; text-decoration: none; color: var(--ink); font-size: 1.6rem; font-weight: 700; letter-spacing: -.03em; padding: .9rem 0; border-bottom: 1px solid var(--mid); transition: color .2s; }
.mobile-menu a:hover { color: var(--coral); }
.mobile-menu .mob-secondary { margin-top: 2rem; display: flex; flex-direction: column; gap: .3rem; }
.mobile-menu .mob-secondary a { font-size: .95rem; font-weight: 500; letter-spacing: 0; color: var(--ink-mid); border-bottom: none; padding: .5rem 0; }
.mobile-menu .mob-cta { margin-top: 2rem; display: inline-flex; align-items: center; background: var(--coral); color: #fff !important; padding: 1rem 2rem; font-size: 1rem !important; font-weight: 700 !important; border: none !important; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 1rem 1.5rem; }
  .nav-menu { display: none; }
  .nav-right-wrap { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  body { cursor: auto; }
  #cur, #cur-r { display: none; }

  .legal-layout { padding: 3rem 1.5rem 5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  nav { padding: .9rem 1.2rem; }
  #legale { padding-top: 58px; }

  .legal-layout { padding: 2rem 1.2rem 4rem; }
  .legal-nav { top: 58px; }
  .ln-item { font-size: .72rem; padding: .25rem .6rem; }
  h1.legal-title { font-size: 2.4rem; }
  .legal-update { margin-bottom: 2rem; }
  .legal-section { margin-bottom: 2.5rem; }
  .legal-table { font-size: .8rem; display:block; overflow-x:auto; -webkit-overflow-scrolling:touch; max-width:100%; }
  .legal-table th, .legal-table td { padding: .55rem .7rem; }
  .legal-content { overflow-wrap:break-word; word-break:break-word; }
  .legal-contact { flex-direction: column; gap: 1rem; padding: 1.2rem; align-items:flex-start; }
  .legal-section a { word-break:break-all; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .8rem; }
  footer{background:var(--ink)!important;color:rgba(255,255,255,.85)!important;padding: 3rem 0 2rem; }
  .container { padding: 0 1.2rem; }
}
