/* ══════════════════════════════════════
   SHARED.CSS — Styles communs curateipsum.be
   ══════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --charbon:    #2A2620;
  --foret:      #3D6038;
  --sauge:      #7BA870;
  --mousse:     #C8D6B8;
  --lin:        #F8F4EE;
  --blanc:      #FFFFFF;
  --separateur: #E8E2D8;
  --corps:      #5A5249;
  --discret:    #8A8078;
  --font-titre: 'Lora', Georgia, serif;
  --font-corps: 'Source Sans 3', system-ui, sans-serif;
  --max-width:  1140px;
  --nav-h:      68px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-corps); background: var(--lin); color: var(--charbon); line-height: 1.6; font-size: 15px; }

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-alt { background: var(--blanc); }
.section-dark { background: var(--charbon); }

/* ── TYPO ── */
.section-label { font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--foret); margin-bottom: 10px; display: block; }
.section-label-light { color: var(--sauge); }
.section-title { font-family: var(--font-titre); font-style: italic; font-size: clamp(26px, 3.2vw, 34px); color: var(--charbon); line-height: 1.28; margin-bottom: 14px; }
.section-title-light { color: var(--blanc); }
.section-lead { font-size: 17px; color: var(--corps); line-height: 1.7; max-width: 640px; margin-bottom: 48px; }
.section-lead-light { color: rgba(255,255,255,.6); }

/* ── NAV ── */
.nav-wrapper { position: sticky; top: 0; z-index: 100; background: var(--charbon); box-shadow: 0 2px 12px rgba(0,0,0,.18); }
nav { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); max-width: var(--max-width); margin: 0 auto; padding: 0 24px; gap: 16px; }
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-logo-name { font-family: var(--font-titre); font-style: italic; font-size: 18px; color: var(--sauge); white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a { font-family: var(--font-corps); font-weight: 300; font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none; padding: 6px 10px; border-radius: 4px; transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: rgba(255,255,255,.95); }
.nav-links a.active { color: var(--mousse); font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-toggle { display: flex; align-items: center; background: rgba(255,255,255,.08); border-radius: 20px; padding: 2px; gap: 2px; }
.lang-btn { font-family: var(--font-corps); font-size: 12px; font-weight: 600; letter-spacing: .04em; padding: 5px 11px; border-radius: 18px; border: none; cursor: pointer; background: transparent; color: rgba(255,255,255,.45); transition: background .2s, color .2s; }
.lang-btn.active { background: var(--foret); color: var(--blanc); }
.btn-nav-cta { background: var(--foret); color: var(--blanc); font-family: var(--font-corps); font-weight: 600; font-size: 13px; padding: 9px 18px; border-radius: 5px; text-decoration: none; white-space: nowrap; transition: background .2s; }
.btn-nav-cta:hover { background: #4e7848; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,.7); border-radius: 2px; }
.sub-nav { background: #221E1A; border-top: 1px solid rgba(255,255,255,.05); }
.sub-nav-inner { display: flex; align-items: center; gap: 24px; max-width: var(--max-width); margin: 0 auto; padding: 8px 24px; }
.sub-nav a { font-family: var(--font-corps); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.3); text-decoration: none; transition: color .2s; }
.sub-nav a:hover, .sub-nav a.active { color: rgba(255,255,255,.7); }

/* ── HERO GRID (logo droit) ── */
.page-hero-grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center; }
.page-hero-logo-wrap { display: flex; align-items: center; justify-content: center; }
.page-hero-logo-wrap img { width: 100%; max-width: 400px; height: auto; display: block; border-radius: 10px; }
@media (max-width: 960px) { .page-hero-grid { grid-template-columns: 1fr; } .page-hero-logo-wrap { display: none; } }

/* ── PAGE HERO ── */
.page-hero { background: var(--charbon); padding: 72px 24px 64px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 90% 50%, rgba(61,96,56,.2) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { max-width: var(--max-width); margin: 0 auto; position: relative; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb a, .breadcrumb span { font-size: 12px; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.6); }
.breadcrumb-sep { color: rgba(255,255,255,.2); }
.page-hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--sauge); margin-bottom: 14px; }
.page-hero-title { font-family: var(--font-titre); font-style: italic; font-size: clamp(30px, 4.5vw, 50px); color: var(--blanc); line-height: 1.18; margin-bottom: 18px; max-width: 780px; }
.page-hero-desc { font-size: 17px; color: rgba(255,255,255,.62); line-height: 1.7; max-width: 600px; margin-bottom: 32px; }
.page-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.page-hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }

/* ── BOUTONS ── */
.btn-primary { background: var(--foret); color: var(--blanc); font-family: var(--font-corps); font-weight: 600; font-size: 15px; padding: 13px 26px; border-radius: 5px; text-decoration: none; display: inline-block; transition: background .2s; }
.btn-primary:hover { background: #4e7848; }
.btn-secondary { background: transparent; color: var(--mousse); font-family: var(--font-corps); font-weight: 600; font-size: 15px; padding: 12px 24px; border-radius: 5px; border: 1px solid rgba(200,214,184,.3); text-decoration: none; display: inline-block; transition: border-color .2s, color .2s; }
.btn-secondary:hover { border-color: var(--mousse); color: var(--blanc); }
.btn-white { background: var(--blanc); color: var(--foret); font-family: var(--font-corps); font-weight: 600; font-size: 15px; padding: 13px 28px; border-radius: 5px; text-decoration: none; display: inline-block; transition: opacity .2s; }
.btn-white:hover { opacity: .9; }
.btn-outline-white { background: transparent; color: var(--blanc); font-family: var(--font-corps); font-weight: 600; font-size: 15px; padding: 12px 26px; border-radius: 5px; border: 1px solid rgba(255,255,255,.45); text-decoration: none; display: inline-block; transition: border-color .2s; }
.btn-outline-white:hover { border-color: rgba(255,255,255,.85); }
.btn-foret-sm { background: var(--foret); color: var(--blanc); font-family: var(--font-corps); font-weight: 600; font-size: 14px; padding: 10px 20px; border-radius: 5px; text-decoration: none; display: inline-block; transition: background .2s; }
.btn-foret-sm:hover { background: #4e7848; }

/* ── BADGES ── */
.badge { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .03em; padding: 5px 12px; border-radius: 4px; }
.badge-vert { background: rgba(61,96,56,.35); color: var(--mousse); border: 1px solid rgba(123,168,112,.3); }
.badge-dark { background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.1); }
.badge-light { background: #EAF3DE; color: var(--foret); }

/* ── CARDS ── */
.card { background: var(--blanc); border: 1px solid var(--separateur); border-radius: 9px; padding: 24px; transition: border-color .2s, box-shadow .2s; }
.card:hover { border-color: var(--sauge); box-shadow: 0 4px 20px rgba(61,96,56,.08); }
.card-accent { border-left: 3px solid var(--foret); border-radius: 0 9px 9px 0; }
.card-dark { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 9px; padding: 22px; }

/* ── ICÔNES ── */
.icon-box { width: 44px; height: 44px; background: #EAF3DE; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-box svg { width: 22px; height: 22px; stroke: var(--foret); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.icon-box-dark { background: rgba(123,168,112,.15); }
.icon-box-dark svg { stroke: var(--sauge); }

/* ── STAT ── */
.stat-card { background: var(--lin); border: 1px solid var(--separateur); border-radius: 9px; padding: 22px 18px; }
.stat-number { font-family: var(--font-titre); font-style: italic; font-size: 38px; color: var(--foret); line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 12px; color: var(--corps); line-height: 1.45; }

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* ── LISTE POINTS ── */
.dot-list { display: flex; flex-direction: column; gap: 10px; }
.dot-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--corps); line-height: 1.6; }
.dot-item::before { content: ''; width: 6px; height: 6px; background: var(--sauge); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.dot-item-light { color: rgba(255,255,255,.6); }
.dot-item-light::before { background: var(--sauge); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--separateur); }
.faq-item:first-child { border-top: 1px solid var(--separateur); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; gap: 16px; }
.faq-q-text { font-family: var(--font-titre); font-size: 16px; color: var(--charbon); line-height: 1.4; }
.faq-toggle { width: 24px; height: 24px; border-radius: 50%; background: #EAF3DE; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, transform .2s; }
.faq-toggle svg { width: 12px; height: 12px; stroke: var(--foret); fill: none; stroke-width: 2; stroke-linecap: round; }
.faq-a { font-size: 14px; color: var(--corps); line-height: 1.7; padding-bottom: 20px; display: none; }
.faq-item.open .faq-toggle { background: var(--foret); transform: rotate(45deg); }
.faq-item.open .faq-toggle svg { stroke: white; }
.faq-item.open .faq-a { display: block; }

/* ── PULL QUOTE ── */
.pull-quote { background: var(--charbon); padding: 60px 24px; text-align: center; }
.pull-quote-inner { max-width: 760px; margin: 0 auto; }
.pull-quote-mark { font-family: var(--font-titre); font-size: 64px; color: var(--foret); line-height: 1; margin-bottom: -10px; }
.pull-quote-text { font-family: var(--font-titre); font-style: italic; font-size: clamp(18px, 2.8vw, 26px); color: var(--blanc); line-height: 1.55; margin-bottom: 18px; }
.pull-quote-author { font-size: 12px; color: var(--discret); }

/* ── CTA SECTION ── */
.cta-section { background: var(--foret); padding: 72px 24px; text-align: center; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-title { font-family: var(--font-titre); font-style: italic; font-size: clamp(24px, 3.5vw, 36px); color: var(--blanc); margin-bottom: 14px; line-height: 1.25; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,.72); line-height: 1.7; margin-bottom: 32px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-guarantees { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.cta-guarantee { font-size: 13px; color: rgba(255,255,255,.6); display: flex; align-items: center; gap: 6px; }
.cta-guarantee::before { content: '✓'; color: var(--mousse); font-weight: 700; }

/* ── FOOTER ── */
footer { background: #1A1714; padding: 56px 24px 32px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .footer-logo { font-family: var(--font-titre); font-style: italic; font-size: 20px; color: var(--sauge); margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,.35); line-height: 1.7; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,.07); border-radius: 6px; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s; }
.footer-social a:hover { background: rgba(255,255,255,.14); }
.footer-social a svg { width: 16px; height: 16px; fill: rgba(255,255,255,.5); }
.footer-col-title { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-col ul a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p, .footer-bottom a { font-size: 12px; color: rgba(255,255,255,.2); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.5); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ── RESPONSIVE ── */

    /* ══ DROPDOWN NAV ══ */
    .nav-has-dropdown { position: relative; }
    .nav-parent {
      font-family: var(--font-corps);
      font-weight: 300;
      font-size: 14px;
      color: rgba(255,255,255,.6);
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px 8px;
      border-radius: 4px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 5px;
      transition: color .2s;
      letter-spacing: .01em;
    }
    .nav-parent:hover { color: rgba(255,255,255,.95); }
    .nav-parent.active { color: var(--mousse); font-weight: 600; }
    .nav-caret { font-size: 10px; display: inline-block; transition: transform .25s; line-height: 1; }
    .nav-has-dropdown.open .nav-caret { transform: rotate(180deg); }
    .nav-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      background: var(--charbon);
      border: 1px solid rgba(255,255,255,.1);
      border-top: 2px solid var(--foret);
      border-radius: 0 6px 6px 6px;
      min-width: 210px;
      box-shadow: 0 8px 24px rgba(0,0,0,.3);
      z-index: 200;
      list-style: none;
      padding: 6px 0;
    }
    .nav-has-dropdown.open .nav-dropdown { display: block; }
    .nav-dropdown li a {
      display: block;
      padding: 10px 18px;
      font-size: 13px;
      color: rgba(255,255,255,.65);
      text-decoration: none;
      white-space: nowrap;
      transition: color .15s, background .15s;
    }
    .nav-dropdown li a:hover { color: var(--blanc); background: rgba(255,255,255,.06); }
    .sub-nav { display: none !important; }

@media (max-width: 900px) {
  .grid-2, .grid-2-1 { grid-template-columns: 1fr; gap: 36px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--charbon); padding: 16px 24px 24px; gap: 4px; border-top: 1px solid rgba(255,255,255,.08); z-index: 99; }
  .nav-links.open a { padding: 10px 8px; font-size: 15px; }
  .sub-nav { display: none; }

  .nav-has-dropdown.open .nav-dropdown {
    display: block;
    position: static;
    border: none;
    border-top: 1px solid rgba(255,255,255,.08);
    border-radius: 0;
    background: rgba(255,255,255,.04);
    box-shadow: none;
    margin-left: 12px;
  }
  .nav-parent {
    width: 100%;
    justify-content: space-between;
    padding: 10px 8px;
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
}

@media (max-width: 400px) {
  .nav-logo-name { display: none; }
}
