  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --gold: #9b6f3d;
    --gold-light: #c2a16a;
    --gold-pale: #f2e9de;
    --ink: #2a2219;
    --ink-soft: #4c4338;
    --stone: #f6f1ea;
    --paper: #fbf8f3;
    --mist: #efe7dd;
  }
  html { scroll-behavior: smooth; }
  body { font-family: 'Libre Baskerville', serif; background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.8; }
  button, a { outline:none; }
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(251,248,243,0.95); backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(155,111,61,0.15);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 7%; height: 74px;
  }
  .nav-logo { height: auto; width: 150px;}
  .nav-links { display: flex; gap: 34px; list-style: none; align-items:center; }
  .nav-links a { text-decoration: none; color: var(--ink); font-size: 12px; font-weight: 600; letter-spacing: 0; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--gold);
    color: #fff !important;
    padding: 11px 26px;
    border-radius: 2px;
    transition: background 0.2s !important;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    cursor: pointer;
  }
  .nav-cta:hover { background: var(--ink) !important; color: #fff !important; }
  .nav-cta i { font-size: 12px; }
  .nav-toggle {
    display: none; width: 44px; height: 44px; border: 1px solid rgba(156,120,64,0.25);
    background: #fff; border-radius: 2px; align-items: center; justify-content: center; gap: 5px;
    flex-direction: column; cursor: pointer; transition: border-color 0.2s, background 0.2s;
  }
  .nav-toggle:hover { border-color: var(--gold); }
  .nav-toggle span { width: 20px; height: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.25s; }
  nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .hero {
    margin-top: 74px; min-height: 88vh;
    background: #1d150d;
    position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, rgba(16,12,8,0.55), rgba(16,12,8,0.65)),
      url('/assets/images/img1.webp') center/cover no-repeat;
  }
  .hero-lines { position: absolute; inset: 0; background-image: repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(155,111,61,0.05) 120px, rgba(155,111,61,0.05) 121px); }
  .hero-content { position: relative; z-index: 2; max-width: 760px; padding: 0 7%; text-align: center; }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-size: 11px; letter-spacing: 0; text-transform: uppercase; color: var(--gold-light); margin-bottom: 26px; }
  .hero-eyebrow::before { content: ''; width: 32px; height: 1px; background: rgba(194,161,106,0.7); display: inline-block; }
  .hero h1 { font-family: 'Libre Baskerville', serif; font-size: clamp(34px, 5vw, 56px); font-weight: 400; color: #fff; line-height: 1.1; margin-bottom: 22px; letter-spacing: 0; }
  .hero h1 em { font-style: italic; color: var(--gold-light); }
  .hero p { font-size: 17px; color: rgba(255,255,255,0.68); max-width: 520px; margin-bottom: 38px; font-weight: 400; letter-spacing: 0; }
  .hero-btns { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }
  .hero-btns {justify-content: center;}
  .btn-primary { background: var(--gold); color: #fff; padding: 14px 34px; text-decoration: none; font-size: 11px; letter-spacing: 0; text-transform: uppercase; font-weight: 600; border-radius: 2px; transition: background 0.2s, transform 0.2s; display: inline-block; }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline { border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85); padding: 14px 34px; text-decoration: none; font-size: 11px; letter-spacing: 0; text-transform: uppercase; font-weight: 600; border-radius: 2px; transition: border-color 0.2s, color 0.2s; display: inline-block; }
  .btn-outline:hover { border-color: var(--gold-light); color: var(--gold-light); }
  .hero-scroll { position: absolute; bottom: 36px; left: 7%; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.4); font-size: 10px; letter-spacing: 0; text-transform: uppercase; }
  .hero-scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(155,111,61,0.8), transparent); animation: scrollLine 1.5s ease-in-out infinite; }
  @keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

  section { padding: 110px 7%; }
  .section-label { font-size: 10px; letter-spacing: 0; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
  .section-title { font-family: 'Libre Baskerville', serif; font-size: clamp(30px, 4vw, 46px); font-weight: 400; line-height: 1.25; color: var(--ink); margin-bottom: 18px; }
  .section-subtitle { color: var(--ink-soft); font-size: 15px; font-weight: 400; max-width: 560px; line-height: 1.85; }
  .gold-line { width: 56px; height: 2px; background: var(--gold); margin: 22px 0; }

  .expertise { background: var(--stone); position: relative; overflow: hidden; }
  .expertise::before {
    content: '';
    position: absolute; inset: 0;
    background-image: linear-gradient(90deg, rgba(155,111,61,0.06) 1px, transparent 1px);
    background-size: 150px 100%;
    opacity: 0.55;
    pointer-events: none;
  }
  .expertise-header { text-align: left; margin-bottom: 46px; position: relative; z-index: 1; max-width: 640px; }
  .expertise-header .section-subtitle { margin: 0; }
  .expertise-header .gold-line { margin: 20px 0 0; width: 64px; }
  .expertise-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; position: relative; z-index: 1; }
  .expertise-card {
    background: #fff;
    padding: 40px 34px;
    position: relative;
    border: 1px solid rgba(155,111,61,0.22);
    box-shadow: 0 12px 34px rgba(42,34,25,0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    cursor: default;
    overflow: hidden;
  }
  .expertise-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(42,34,25,0.18); border-color: rgba(155,111,61,0.45); }
  .expertise-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--gold);
    transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease;
  }
  .expertise-card:hover::before { transform: scaleX(1); }
  .expertise-icon {
    width: 54px; height: 54px; border-radius: 999px;
    background: var(--gold-pale);
    border: 1px solid rgba(155,111,61,0.3);
    display: flex; align-items: center; justify-content: center; margin-bottom: 26px; font-size: 22px; color: var(--gold);
    box-shadow: inset 0 0 0 3px rgba(255,255,255,0.6);
  }
  .expertise-icon i, .expertise-icon svg { width: 22px; height: 22px; }
  .expertise-card h3 { font-family: 'Libre Baskerville', serif; font-size: 22px; font-weight: 500; margin-bottom: 10px; color: var(--ink); }
  .expertise-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.85; font-weight: 400; }
  .expertise-card .learn-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-size: 10px; letter-spacing: 0; text-transform: uppercase; color: var(--gold); text-decoration: none; font-weight: 500; }
  .expertise-card .learn-more::after { content: '→'; transition: transform 0.2s; }
  .expertise-card:hover .learn-more::after { transform: translateX(4px); }

  .team { background: #fff; }
  .team-header { display: flex; justify-content: center; align-items: center; margin-bottom: 52px; flex-wrap: wrap; gap: 24px; text-align: center; }
  .team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 28px; max-width: 900px; margin: 0 auto; }
  .team-card { text-align: center; }
  .team-photo { width: 100%; aspect-ratio: 3/4; background: var(--gold-pale); margin-bottom: 18px; position: relative; overflow: hidden; border: 1px solid rgba(155,111,61,0.25); box-shadow: 0 12px 30px rgba(42,34,25,0.08); }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .team-photo-inner { width: 100%; height: 100%; background: linear-gradient(135deg, #efe4d6 0%, #dcc8ac 100%); display: flex; align-items: center; justify-content: center; font-family: 'Libre Baskerville', serif; font-size: 54px; color: var(--gold); opacity: 0.55; }
  .team-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(42,34,25,0.3) 0%, transparent 60%); }
  .team-linkedin {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: #fff;
    color: #0a66c2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(42,34,25,0.18);
    z-index: 2;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  }
  .team-linkedin:hover { transform: translateY(-2px); box-shadow: 0 12px 22px rgba(42,34,25,0.22); }
  .team-linkedin i { font-size: 16px; }
  .team-card h4 { font-family: 'Libre Baskerville', serif; font-size: 18px; font-weight: 500; margin-bottom: 4px; }
  .team-card .role { font-size: 11px; color: var(--gold); letter-spacing: 0; text-transform: uppercase; }
  .team-link { display: none; }

  .values { background: var(--stone); }
  .values-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .values-list { margin-top: 40px; display: flex; flex-direction: column; gap: 32px; }
  .value-item { display: flex; gap: 24px; }
  .value-num { font-family: 'Libre Baskerville', serif; font-size: 34px; color: var(--gold-light); opacity: 0.4; line-height: 1; min-width: 40px; font-style: italic; }
  .value-content h4 { font-family: 'Libre Baskerville', serif; font-size: 19px; font-weight: 500; margin-bottom: 6px; }
  .value-content p { font-size: 14px; color: var(--ink-soft); line-height: 1.8; font-weight: 400; }
  .values-visual-box { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, #231a12 0%, #3a2b1b 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; border: 1px solid rgba(155,111,61,0.2); }
  .values-visual-box::before { content: ''; position: absolute; inset: 20px; border: 1px solid rgba(156,120,64,0.3); }
  .values-quote { font-family: 'Libre Baskerville', serif; font-size: 24px; font-style: italic; color: rgba(255,255,255,0.85); text-align: center; padding: 40px; line-height: 1.6; }
  .values-quote-mark { font-size: 80px; color: var(--gold); opacity: 0.3; line-height: 0.5; display: block; margin-bottom: 20px; }

  .gallery { background: #fff; }
  .gallery-header { text-align: center; margin-bottom: 40px; }
  .gallery-header .gold-line { margin: 22px auto; }
  .gallery-header .section-subtitle { margin: 0 auto; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    border: 1px solid rgba(155,111,61,0.2);
    box-shadow: 0 10px 28px rgba(42,34,25,0.1);
    aspect-ratio: 4 / 3;
  }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

  .cta-banner { background: linear-gradient(135deg, #22180f 0%, #3a2a19 100%); padding: 80px 7%; text-align: center; position: relative; overflow: hidden; }
  .cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(156,120,64,0.2) 0%, transparent 70%); }
  .cta-banner h2 { font-family: 'Libre Baskerville', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 400; color: #fff; margin-bottom: 16px; position: relative; }
  .cta-banner p { color: rgba(255,255,255,0.6); font-size: 15px; margin-bottom: 36px; font-weight: 400; position: relative; }

  .awards { background: #fff; }
  .awards-header { text-align: center; margin-bottom: 60px; }
  .awards-header .gold-line { margin: 24px auto; }
  .awards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }
  .award-card { border: 1px solid rgba(155,111,61,0.18); padding: 40px 28px; text-align: center; transition: border-color 0.3s, background 0.3s, transform 0.3s; background: #fff; }
  .award-card:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateY(-4px); }
  .award-icon { font-size: 36px; margin-bottom: 16px; }
  .award-card h4 { font-family: 'Libre Baskerville', serif; font-size: 17px; margin-bottom: 8px; color: var(--ink); }
  .award-card p { font-size: 13px; color: var(--ink-soft); letter-spacing: 0; }

  .dataroom { background: var(--mist); padding: 80px 7%; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; border-top: 1px solid rgba(155,111,61,0.18); border-bottom: 1px solid rgba(155,111,61,0.18); }
  .dataroom-text h2 { font-family: 'Libre Baskerville', serif; font-size: clamp(26px, 3.5vw, 40px); font-weight: 400; margin-bottom: 12px; color: var(--ink); }
  .dataroom-text p { font-size: 15px; color: var(--ink-soft); font-weight: 400; max-width: 480px; }

  .contact { background: #fff; }
  .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
  .contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
  .contact-detail-icon { width: 36px; height: 36px; background: var(--gold-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; border: 1px solid rgba(155,111,61,0.2); }
  .contact-detail-icon i, .contact-detail-icon svg { width: 14px; height: 14px; }
  .contact-detail-text { text-decoration: none;font-size: 14px; color: var(--ink-soft); font-weight: 400; line-height: 1.65; }
  .contact-detail-text strong { display: block; color: var(--ink); font-weight: 600; font-size: 12px; letter-spacing: 0; text-transform: uppercase; margin-bottom: 2px; }
  .map-embed {
    width: 100%;
    height: 210px;
    margin-top: 28px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(155,111,61,0.25);
    background: var(--mist);
  }
  .map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

  .form-group { margin-bottom: 20px; }
  .form-group label { display: block; font-size: 11px; letter-spacing: 0; text-transform: uppercase; color: var(--ink); font-weight: 600; margin-bottom: 8px; }
  .form-group input, .form-group select, .form-group textarea { width: 100%; border: 1px solid rgba(155,111,61,0.25); background: var(--stone); padding: 12px 16px; font-family: 'Libre Baskerville', serif; font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.2s; border-radius: 1px; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); background: #fff; }
  .form-group textarea { height: 120px; resize: none; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .btn-submit { width: 100%; justify-content: center; padding:15px 26px; }
  .btn-submit:hover { background: var(--ink); }

  .form-notification {
    margin-top: 16px; padding: 14px 20px; border-radius: 4px;
    font-size: 14px; line-height: 1.6; text-align: center;
    animation: notifSlide 0.4s ease;
  }
  .form-notification.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; }
  .form-notification.error { background: #fbe9e7; color: #c62828; border: 1px solid #ef9a9a; }
  .form-notification.warning { background: #fff8e1; color: #f57f17; border: 1px solid #ffe082; }
  @keyframes notifSlide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

  footer { background: #1f1710; color: rgba(255,255,255,0.6); padding: 70px 7% 34px; }
  .footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
  .footer-logo { filter: brightness(0) invert(1); height: auto; margin-bottom: 18px; opacity: 0.85; width: 200px; }
  .footer-desc { font-size: 14px; line-height: 1.8; font-weight: 400; max-width: 300px; }
  .footer-col h5 { color: #fff; font-size: 12px; letter-spacing: 0; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; font-weight: 400; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--gold-light); }
  .footer-col-image { display: flex; justify-content: flex-end; align-items: flex-start; }
  .footer-col-image img { width: 140px; max-width: 100%; height: auto; opacity: 0.9; transition: opacity 0.2s; }
  .footer-col-image a:hover img { opacity: 1; }

  .legal-page { padding: 140px 7% 90px; background: #faf8f5; color: #1f1710; }
  .legal-container { max-width: 760px; margin: 0 auto; }
  .legal-container h1 { font-size: 32px; margin-bottom: 18px; color: #1f1710; }
  .legal-container h2 { font-size: 18px; margin-top: 28px; margin-bottom: 10px; color: #1f1710; }
  .legal-container p { font-size: 15px; line-height: 1.8; color: rgba(31,23,16,0.85); }
  .legal-back { display: inline-block; margin-top: 30px; color: var(--gold-dark); text-decoration: none; font-weight: 600; }
  .legal-back:hover { color: var(--gold-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: center; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 12px; transition: color 0.2s; }
  .footer-bottom-links a:hover { color: var(--gold-light); }

  /* ===================== RGPD Cookie Popup ===================== */
  .cookies-popup-holder {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
  }
  .over-lay-first {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
  }
  .over-lay-first-second { display: none; }

  /* --- shared popup card --- */
  .block-one-cockies,
  .block-two-cockies {
    position: relative; z-index: 2;
    background: #fff; border-radius: 14px;
    width: 92%; padding: 32px 30px 26px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.18);
    animation: cookiePop 0.3s ease;
  }
  @keyframes cookiePop {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .block-one-cockies { max-width: 540px; }
  .block-two-cockies { max-width: 600px; }

  .block-one-cockies p,
  .block-two-cockies p {
    font-size: 13px; line-height: 1.8;
    color: var(--ink-soft); margin-bottom: 10px;
  }
  .block-one-cockies p strong { color: var(--ink); font-size: 17px; }

  /* cookie icon top */
  .cookie-icon-header {
    text-align: center; margin-bottom: 14px;
    font-size: 36px; color: var(--gold);
  }

  /* "continuer sans accepter" */
  .contunuer-sans-ac {
    display: block; text-align: right; font-size: 11.5px;
    color: #aaa; cursor: pointer; margin-bottom: 8px;
    text-decoration: none; transition: color 0.2s;
    letter-spacing: 0.2px;
  }
  .contunuer-sans-ac:hover { color: var(--ink); }
  .contunuer-sans-ac i { margin-left: 3px; font-size: 10px; }

  /* buttons row */
  .btns-cookies-holder,
  .second-btns-cookies-holder {
    display: flex; gap: 10px; margin-top: 20px;
  }
  .btns-cookies-holder button,
  .second-btns-cookies-holder button {
    flex: 1; padding: 13px 16px; border: none; border-radius: 6px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    font-family: inherit; transition: all 0.2s;
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  }
  .personnaliser-choix,
  .tout-regester {
    background: #f5f0e8; color: var(--ink);
    border: 1px solid #e5ddd0;
  }
  .personnaliser-choix:hover,
  .tout-regester:hover { background: #ede5d8; }
  .tout-accepter-a,
  .tout-accepter { background: var(--gold); color: #fff; }
  .tout-accepter-a:hover,
  .tout-accepter:hover { background: #7a5730; }

  /* ===================== Block 2 — Settings ===================== */
  .top-title-coockie {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 14px; padding-bottom: 14px;
    border-bottom: 1px solid #eee;
  }
  .title-popup-cookies {
    font-size: 17px; font-weight: 700; color: var(--ink);
  }
  .title-popup-cookies i {
    color: var(--gold); margin-right: 6px; font-size: 15px;
  }
  .retour-pop-one {
    font-size: 12.5px; color: var(--gold); cursor: pointer;
    transition: color 0.2s; font-weight: 600;
  }
  .retour-pop-one:hover { color: var(--ink); }
  .retour-pop-one i { margin-right: 3px; }

  .block-two-intro { margin-bottom: 18px !important; }

  /* --- Category cards --- */
  .cookie-category-list {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 6px;
  }
  .cookie-category {
    border: 1px solid #eae4da; border-radius: 10px;
    overflow: hidden; transition: border-color 0.2s;
  }
  .cookie-category:hover { border-color: #d4c9b8; }

  .cookie-cat-header {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; cursor: pointer;
    transition: background 0.15s;
  }
  .cookie-cat-header:hover { background: #faf7f2; }

  .cookie-cat-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; flex-shrink: 0;
  }
  .cookie-cat-icon.necessaire { background: #eef2f7; color: #4a6fa5; }
  .cookie-cat-icon.analytique { background: #fef4e6; color: #c58b2c; }
  .cookie-cat-icon.marketing  { background: #fce8ec; color: #c0392b; }

  .cookie-cat-info { flex: 1; min-width: 0; }
  .cookie-cat-info h4 {
    font-size: 13.5px; font-weight: 700; color: var(--ink);
    margin-bottom: 1px; line-height: 1.3;
  }
  .cookie-cat-desc {
    font-size: 11.5px; color: #999; line-height: 1.4;
  }

  .cookie-cat-status { flex-shrink: 0; }
  .cookie-always-on {
    font-size: 11px; color: #8a9bb5; font-weight: 600;
    background: #eef2f7; padding: 5px 10px; border-radius: 20px;
    letter-spacing: 0.2px;
  }
  .cookie-always-on i { margin-right: 3px; font-size: 10px; }

  /* toggle switch */
  .cookie-cat-toggle { flex-shrink: 0; }
  .toggle-switch {
    position: relative; display: inline-block;
    width: 44px; height: 24px; cursor: pointer;
  }
  .toggle-switch input { opacity: 0; width: 0; height: 0; }
  .toggle-slider {
    position: absolute; inset: 0;
    background: #d0c9be; border-radius: 24px;
    transition: background 0.25s;
  }
  .toggle-slider::before {
    content: ''; position: absolute;
    width: 18px; height: 18px; border-radius: 50%;
    left: 3px; bottom: 3px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
    transition: transform 0.25s;
  }
  .toggle-switch input:checked + .toggle-slider { background: var(--gold); }
  .toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

  /* expandable details */
  .cookie-cat-details {
    max-height: 0; overflow: hidden;
    padding: 0 16px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    border-top: 0px solid transparent;
  }
  .cookie-category.open .cookie-cat-details {
    max-height: 300px;
    padding: 12px 16px 16px;
    border-top: 1px solid #f0ebe3;
  }
  .cookie-detail-row {
    display: flex; gap: 10px;
    font-size: 12px; line-height: 1.6;
    padding: 4px 0; color: var(--ink-soft);
  }
  .cookie-detail-label {
    color: #999; min-width: 100px; flex-shrink: 0;
    font-weight: 600;
  }
  .cookie-detail-label i {
    width: 14px; text-align: center;
    margin-right: 4px; font-size: 11px; color: var(--gold);
  }

  /* mobile */
  @media (max-width: 600px) {
    .block-one-cockies,
    .block-two-cockies { padding: 22px 18px 20px; border-radius: 12px; }
    .btns-cookies-holder,
    .second-btns-cookies-holder { flex-direction: column; }
    .cookie-cat-header { padding: 12px 14px; gap: 10px; }
    .cookie-cat-icon { width: 34px; height: 34px; font-size: 14px; }
    .cookie-cat-info h4 { font-size: 12.5px; }
    .cookie-detail-row { flex-direction: column; gap: 2px; }
    .cookie-detail-label { min-width: auto; }
    .cookie-always-on { font-size: 10px; padding: 4px 8px; }
  }

  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }
  .team .fade-in.visible { display:flex; flex-direction:column; align-items:center; }
  @media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
      position: absolute; top: 74px; left: 0; right: 0;
      background: rgba(251,248,243,0.98); backdrop-filter: blur(8px);
      flex-direction: column; gap: 0; padding: 12px 6% 18px;
      border-bottom: 1px solid rgba(155,111,61,0.15);
      max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
      transform: translateY(-8px); transition: max-height 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
    }
    .nav-links li { padding: 10px 0; border-top: 1px solid rgba(155,111,61,0.08); }
    .nav-links li:first-child { border-top: none; }
    .nav-links .nav-cta { display: inline-flex; width: fit-content; margin-top: 6px; }
    nav.is-open .nav-links { max-height: 360px; opacity: 1; pointer-events: auto; transform: translateY(0); }
    .hero { min-height: 80vh; }
    .hero-content { padding: 0 6%; }
    .values-inner, .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 600px) {
    section { padding: 70px 5%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .dataroom { flex-direction: column; }
    .map-embed { height: 280px; }
    .gallery-grid { grid-template-columns: 1fr; }
  }



#tablementions {
  background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: .9em;
    margin-block-end: 15px;
    width: 100%;
}
table th {
    font-weight: 700;
  }
table td, table th {
    border: 1px solid hsla(0, 0%, 50%, .502);
    line-height: 1.5;
    padding: 15px;
    vertical-align: top;
}
table tbody>tr:nth-child(odd)>td, table tbody>tr:nth-child(odd)>th {
    background-color: hsla(0, 0%, 50%, .071);
}

.accessibilite b {
  padding: 15px 0;
}