/*
	Theme Name: Les Clés du Bois
	Theme URI: https://fw16.fr
	Description: 
	Author: FW16
	Author URI: https://fw16.fr
	Version: 3.4.9
	Stable tag: 3.4.9
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/

 /* ── TOKENS ─────────────────────────────────────── */
    :root {
      --cream:   #F5EDD8;
      --ivory:   #EFE6CC;
      --brown-d: #2C1A0E;
      --brown-m: #5C3D22;
      --brown-l: #8B6040;
      --gold:    #FFFAEB;
      --gold-lt: #D4AA68;
      --text:    #2C1A0E;
      --muted:   #7A6050;
      --white:   #FFFDF6;
    }

    /* ── RESET ──────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 1rem; }
    body {
      background: var(--cream);
      color: var(--text);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ── NOISE TEXTURE OVERLAY ──────────────────────── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 9999; opacity: .4;
    }

    /* ── TYPOGRAPHY ─────────────────────────────────── */
    h1, h2, h3, h4, .serif { font-family: 'Cormorant Garamond', serif; }
    .display {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -.01em;
    }
    .label {
      font-family: 'Jost', sans-serif;
      font-size: 1rem;
      font-weight: 500;
      letter-spacing: .25em;
      text-transform: uppercase;
      color: var(--gold-lt);
    }
    .gold { color: var(--gold); }
    .muted { color: var(--muted); }

    /* ── LAYOUT ──────────────────────────────────────── */
    .container { max-width: 1280px; margin: 0 auto; padding: 0 3rem; }
    .container--narrow { max-width: 900px; margin: 0 auto; padding: 0 3rem; }

    /* ── DECORATIVE LINE ────────────────────────────── */
    .deco-line {
      display: inline-block;
      width: 40px; 
      height: 1px;
      background: var(--gold-lt);
      vertical-align: middle;
      margin-right: .75rem;
    }

    img.imagesMethodes{
      width: 100%;
      height: 230px;
      object-fit: contain;
      margin-top: 1rem;
      background: var(--cream);
    }

    /* ── NAV ─────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.25rem 3rem;
      transition: background .4s, backdrop-filter .4s, border-color .4s;
      border-bottom: 1px solid transparent;
    }
    nav.scrolled {
      background: rgba(245,237,216,.92);
      backdrop-filter: blur(12px);
      border-color: rgba(92,61,34,.12);
    }
    .nav-logo { display: flex; align-items: center; gap: 1rem; }
    .nav-logo img { height: 80px; width: auto; }
    .nav-logo-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem;
      font-weight: 400;
      letter-spacing: .03em;
      line-height: 1.2;
    }
    .nav-logo-text span { display: block; font-size: 1rem; letter-spacing: .15em; color: var(--muted); font-family: 'Jost', sans-serif; font-weight: 300; text-transform: uppercase; margin-top: 2px; }
    .nav-links { display: flex; align-items: center; gap: 2.5rem; }
    .nav-links a {
      font-size: .75rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase;
      color: var(--brown-m); position: relative; padding-bottom: 3px;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
      background: var(--gold); transition: width .3s;
    }
    .nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
    .nav-cta {
      font-size: .7rem; font-weight: 400; letter-spacing: .15em; text-transform: uppercase;
      border: 1px solid var(--brown-m); padding: .55rem 1.4rem; color: var(--brown-m);
      transition: background .3s, color .3s, border-color .3s;
    }
    .nav-cta:hover { background: var(--brown-m); color: var(--cream); }
    .nav-cta::after { display: none !important; }

    /* ── HERO ────────────────────────────────────────── */
    #hero {
      position: relative; height: 100vh; min-height: 700px;
      display: flex; align-items: flex-end;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background-image: url('assets/charpente_hero.jpg');
      background-size: cover; background-position: center 30%;
      transform: scale(1.05);
      animation: heroKen 20s ease-in-out infinite alternate;
    }
    @keyframes heroKen {
      from { transform: scale(1.05) translate(0,0); }
      to   { transform: scale(1.12) translate(-1%, 1%); }
    }
    .hero-vignette {
      position: absolute; inset: 0;
      background: linear-gradient(to top,
        rgba(20,10,5,.85) 0%,
        rgba(20,10,5,.4) 40%,
        rgba(20,10,5,.1) 70%,
        rgba(20,10,5,.05) 100%
      );
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 3rem 5rem;
      max-width: 900px;
      animation: fadeUp .9s ease both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      display: flex; align-items: center; gap: .75rem;
      margin-bottom: 1.5rem;
    }
    .hero-eyebrow span {
      font-size: 1rem; letter-spacing: .3em; text-transform: uppercase;
      color: var(--cream); font-family: 'Jost', sans-serif; font-weight: bold;
    }
    .hero-eyebrow::before {
      content: ''; display: block; width: 48px; height: 1px; background: var(--gold-lt);
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 6.5rem);
      font-weight: 300; line-height: 1.0;
      color: #FFFDF6;
      margin-bottom: 1.5rem;
      text-shadow: 0 2px 40px rgba(0,0,0,.3);
    }
    .hero-title em { font-style: italic; color: var(--gold-lt);text-shadow: 5px 5px 10px black;}
    .hero-subtitle {
      font-size: 1.5rem; font-weight: normal; color: rgba(255,253,246,.7);
      max-width: 800px; line-height: 1.8; margin-bottom: 2.5rem;
    }
    .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
    .btn-primary {
      font-size: .7rem; 
      letter-spacing: .18em; 
      text-transform: uppercase; 
      font-weight: 500;
      padding: .85rem 2.2rem;
      background: var(--gold); 
      color: var(--gold-lt) !important;
      border: 1px solid var(--gold);
      transition: background .3s, color .3s;
      font-family: 'Jost', sans-serif;
    }
    .btn-primary:hover { 
      background: var(--gold-lt); 
      color: var(--white) !important; 
      border: 1px solid var(--gold-lt);
    }
    
    .btn-outline {
      font-size: .7rem;
      letter-spacing: .18em;
      text-transform: uppercase; font-weight: 400;
      padding: .85rem 2.2rem;
      border: 1px solid rgba(255,253,246,.4); 
      color: var(--white) !important;
      transition: border-color .3s, color .3s;
      font-family: 'Jost', sans-serif;
      background-color: var(--gold-lt);
    }
    .btn-outline:hover { 
      border-color: var(--gold); 
      color: var(--gold-lt) !important;
      background-color: var(--gold);
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 2rem; right: 3rem; z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      opacity: .5; animation: pulse 2.5s ease infinite;
    }
    @keyframes pulse { 0%,100%{opacity:.5} 50%{opacity:.9} }
    .scroll-hint span { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--white); writing-mode: vertical-rl; }
    .scroll-hint-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--gold-lt), transparent); }

    /* ── STRIP INTRO ─────────────────────────────────── */
    #intro-strip {
      background: var(--brown-d);
      padding: 1.8rem 3rem;
      display: flex; align-items: center; gap: 3rem;
      overflow: hidden;
    }
    .intro-strip-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem; font-weight: 300; font-style: italic;
      color: var(--cream); opacity: .85; white-space: nowrap;
      animation: marquee 30s linear infinite;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── SECTION GÉNÉRIQUE ───────────────────────────── */
    section { padding: 7rem 0; }
    .section-header { margin-bottom: 4rem; }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 300; line-height: 1.15;
    }
    .section-intro {
      font-size: 1.3rem; color: var(--muted); max-width: 600px; margin-top: 1rem; line-height: 1.9;
    }

    /* ── ABOUT ───────────────────────────────────────── */
    #about {
      background: var(--white);
      padding: 7rem 0;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6rem;
      align-items: center;
    }
    .about-visual { position: relative; }
    .about-img-main {
      width: 100%; aspect-ratio: 4/5; object-fit: cover;
    }
    .about-img-float {
      position: absolute;
      bottom: -2.5rem; right: -2.5rem;
      width: 55%; aspect-ratio: 1/1; object-fit: cover;
      border: 6px solid var(--white);
      box-shadow: 0 20px 60px rgba(44,26,14,.15);
    }
    .about-stamp {
      position: absolute; 
      top: -1.5rem; 
      left: -1.5rem;
      width: 100px; 
      height: 100px;
      background: var(--gold);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      color: var(--gold-lt);
    }
    .about-stamp-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 300; line-height: 1; }
    .about-stamp-txt { font-size: .5rem; letter-spacing: .15em; text-transform: uppercase; text-align: center; margin-top: 2px; }
    .about-text h2 { margin-bottom: 1.5rem; }
    .about-text p { font-size: .95rem; color: var(--brown-m); margin-bottom: 1.25rem; line-height: 1.9; }
    .about-text p strong { color: var(--brown-d); font-weight: 500; }
    .about-keys {
      display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
      margin: 2.5rem 0;
    }
    .about-key {
      display: flex; align-items: flex-start; gap: .75rem;
      padding: 1rem 1.1rem;
      background: var(--cream); border-left: 2px solid var(--gold);
    }
    .about-key-icon { font-size: 1.3rem; margin-top: 2px; flex-shrink: 0; }
    .about-key-text { font-size: .82rem; font-weight: 400; color: var(--brown-m); line-height: 1.5; }
    .about-key-text strong { display: block; font-size: .88rem; color: var(--brown-d); margin-bottom: 2px; }
    .about-link {
      display: inline-flex; align-items: center; gap: .6rem;
      font-size: .75rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--gold-lt); border-bottom: 1px solid var(--gold-lt);
      padding-bottom: 2px; transition: gap .3s;
    }
    .about-link:hover { gap: 1rem; }

    /* ── METHODES / SERVICES ─────────────────────────── */
    #methodes {
      background: var(--cream);
      position: relative; overflow: hidden;
    }
    #methodes::before {
      content: 'MÉTHODE';
      position: absolute; right: -2rem; top: 50%;
      transform: translateY(-50%) rotate(90deg);
      font-family: 'Cormorant Garamond', serif;
      font-size: 10rem; font-weight: 300;
      color: rgba(92,61,34,.04);
      pointer-events: none; white-space: nowrap;
    }
    .methodes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .methode-card {
      background: var(--white);
      padding: 2.5rem 2rem;
      position: relative; overflow: hidden;
      transition: transform .3s;
    }
    .methode-card:hover { transform: translateY(-4px); }
    .methode-card::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transition: transform .4s;
      transform-origin: left;
    }
    .methode-card:hover::before { transform: scaleX(1); }
    .methode-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem; font-weight: 300; line-height: 1;
      color: rgba(184,136,58,.15);
      margin-bottom: .5rem;
    }
    .methode-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem; font-weight: 400; margin-bottom: .75rem;
      color: var(--brown-d);
    }
    .methode-card p { font-size: .88rem; color: var(--muted); line-height: 1.8; }
    .methode-icon { font-size: 1.8rem; margin-bottom: 1rem; }

    /* ── CHAMPS D'INTERVENTION ───────────────────────── */
    #intervention {
      background: var(--brown-d);
      position: relative; overflow: hidden;
    }
    #intervention::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url('assets/terrain2.jpg');
      background-size: cover; background-position: center;
      opacity: .3;
    }
    #intervention .label { color: var(--gold-lt); }
    #intervention .section-title { color: var(--cream); }
    #intervention .section-intro { color: rgba(245,237,216,.6); }
    .intervention-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 4rem;
    }
    .intervention-card {
      border: 1px solid rgba(255,255,255,.08);
      padding: 2.5rem;
      position: relative; overflow: hidden;
      transition: border-color .3s, background .3s;
    }
    .intervention-card:hover {
      border-color: rgba(184,136,58,.5);
      background: rgba(184,136,58,.05);
    }
    .intervention-card-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity .4s;
    }
    .intervention-card:hover .intervention-card-bg { opacity: .1; }
    .intervention-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 400;
      color: var(--cream); margin-bottom: .75rem;
    }
    .intervention-card p { font-size: 1rem; color: rgba(245,237,216,.6); line-height: 1.8; }
    .intervention-card-num {
      position: absolute; top: 1.5rem; right: 2rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem; font-weight: 300;
      color: rgba(255,255,255,.04); line-height: 1;
    }
    .ic-link {
      display: inline-flex; align-items: center; gap: .5rem;
      margin-top: 1.25rem;
      font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--gold); transition: gap .3s;
    }
    .ic-link:hover { gap: .9rem; }

    /* ── GALERIE ─────────────────────────────────────── */
    #galerie {
      background: var(--ivory);
      padding: 7rem 0 0;
    }
    .galerie-masthead {
      padding: 0 3rem 4rem;
      display: flex; justify-content: space-between; align-items: flex-end;
    }
    .galerie-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      grid-template-rows: 340px 280px;
      gap: 3px;
    }
    .galerie-item {
      overflow: hidden; position: relative;
      cursor: pointer;
    }
    .galerie-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .6s ease, filter .4s;
      filter: saturate(.8);
    }
    .galerie-item:hover img { transform: scale(1.06); filter: saturate(1.1); }
    .galerie-item--large { grid-row: 1 / 3; }
    .galerie-item-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1rem 1.25rem .75rem;
      background: linear-gradient(transparent, rgba(20,10,5,.7));
      font-size: .7rem; letter-spacing: .15em; text-transform: uppercase;
      color: var(--cream); opacity: 0; transition: opacity .3s;
    }
    .galerie-item:hover .galerie-item-label { opacity: 1; }

    /* ── PARCOURS / BIO ──────────────────────────────── */
    #parcours {
      background: var(--white);
    }
    .parcours-grid {
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 7rem;
      align-items: start;
    }
    .parcours-portrait { position: relative; }
    .parcours-portrait-img {
      width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top;
    }
    .parcours-portrait-frame {
      position: absolute; inset: -8px;
      border: 1px solid var(--gold);
      z-index: -1;
    }
    .parcours-portrait-badge {
      position: absolute; bottom: -1.5rem; right: -1.5rem;
      background: var(--brown-d); color: var(--cream);
      padding: 1rem 1.25rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: .9rem; line-height: 1.4;
      box-shadow: 0 10px 30px rgba(0,0,0,.2);
    }
    .parcours-portrait-badge strong { display: block; font-size: 1.1rem; font-weight: 500; }
    .parcours-content h2 { margin-bottom: 1rem; }
    .parcours-content p { font-size: 1rem; color: var(--brown-m); line-height: 1.9; margin-bottom: 1.25rem; }
    .parcours-content p strong { color: var(--brown-d); font-weight: 500; }
    .parcours-thesis {
      margin: 2.5rem 0;
      padding: 1.75rem 2rem;
      background: var(--cream);
      border-left: 3px solid var(--gold);
    }
    .parcours-thesis-label { font-size: 1rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-lt); margin-bottom: .5rem; font-family: 'Jost'; font-weight: 500; }
    .parcours-thesis-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; font-style: italic; color: var(--brown-m); line-height: 1.6;
    }
    .parcours-links { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; }
    .parcours-link {
      display: inline-flex; align-items: center; gap: .6rem;
      font-size: 1rem; letter-spacing: .12em; text-transform: uppercase;
      color: var(--gold-lt); border: 1px solid var(--gol-lt);
      padding: .65rem 1.4rem; transition: background .3s, color .3s;
    }
    .parcours-link:hover { background: var(--gold-lt); color: var(--cream); }

    /* ── TESTIMONIALS / CONFIANCE ────────────────────── */
    #confiance {
      background: var(--cream);
      text-align: center;
    }
    .confiance-subtitle { font-size: 1rem; color: var(--muted); max-width: 480px; margin: .75rem auto 4rem; }
    .confiance-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
    }
    .confiance-card {
      padding: 2rem 1.5rem;
      background: var(--white);
      text-align: left;
    }
    .confiance-card-icon { font-size: 1.5rem; margin-bottom: 1rem; }
    .confiance-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem; font-weight: 500; margin-bottom: .5rem; color: var(--brown-d);
    }
    .confiance-card p { font-size: 1rem; color: var(--muted); line-height: 1.7; }

    /* ── CONTACT ─────────────────────────────────────── */
    #contact {
      background: var(--brown-d);
      position: relative; overflow: hidden;
      padding: 8rem 0;
    }
    #contact::after {
      content: '';
      position: absolute; right: 0; top: 0; bottom: 0;
      width: 40%;
      background-image: url('assets/anneau.jpg');
      background-size: cover; background-position: center;
      opacity: .2;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7rem;
      align-items: center;
      position: relative; z-index: 2;
    }
    .contact-left h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 300; color: var(--cream);
      line-height: 1.2; margin-bottom: 1.5rem;
    }
    .contact-left h2 em { font-style: italic; color: var(--gold); }
    .contact-left p { font-size: 1rem; color: rgba(245,237,216,.65); line-height: 1.9; margin-bottom: 2.5rem; }
    .contact-items { display: flex; flex-direction: column; gap: 1.25rem; }
    .contact-item { display: flex; align-items: flex-start; gap: 1rem; }
    .contact-item-icon {
      width: 38px; height: 38px; flex-shrink: 0;
      border: 1px solid rgba(255,255,255,.12);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: var(--gold);
    }
    .contact-item-label { font-size: 1rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); font-family: 'Jost'; font-weight: 500; margin-bottom: 2px; }
    .contact-item-val { font-size: 1rem; color: rgba(245,237,216,.8); }
    .contact-item-val a { color: inherit; }
    .contact-item-val a:hover { color: var(--gold-lt); }

    .contact-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: .35rem; }
    .form-label { font-size: 1rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(245,237,216,.5); font-family: 'Jost'; font-weight: 400; }
    .form-input, .form-textarea, .form-select {
      background: rgba(255,255,255,.6);
      border: 1px solid rgba(255,255,255,.1);
      color: var(--text); font-family: 'Jost'; font-weight: 300; font-size: .9rem;
      padding: .8rem 1rem;
      outline: none; transition: border-color .3s;
      width: 100%;
    }
    .form-input::placeholder, .form-textarea::placeholder { color: var(--text) }
    .form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
    .form-textarea { resize: vertical; min-height: 120px; }
    .form-select { appearance: none; cursor: pointer; }
    .form-select option { background: var(--brown-d); }
    .form-submit {
      display: inline-flex; align-items: center; justify-content: center; gap: .75rem;
      background: var(--gold); color: var(--text);
      border: none; cursor: pointer;
      padding: 1rem 2rem;
      font-family: 'Jost'; font-size: 1rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
      transition: background .3s;
      margin-top: .5rem;
      width: 100%;
    }
    .form-submit:hover { background: var(--gold-lt); }

    /* ── EXTRANET BANNER ─────────────────────────────── */
    #extranet-banner {
      background: var(--gold);
      padding: 2.5rem 3rem;
      display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    }
    .extranet-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.5rem; font-weight: 400; color: var(--brown-d);
    }
    .extranet-text p { font-size: 1rem; color: rgba(44,26,14,.7); margin-top: .25rem; }
    .extranet-cta {
      flex-shrink: 0;
      display: inline-flex; align-items: center; gap: .75rem;
      background: var(--brown-d); color: var(--cream);
      padding: .9rem 2rem;
      font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500;
      font-family: 'Jost'; transition: opacity .3s;
    }
    .extranet-cta:hover { opacity: .85; }

    /* ── FOOTER ──────────────────────────────────────── */
    footer {
      background: #1C0E07;
      padding: 4rem 3rem 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem; margin-bottom: 3rem;
    }
    .footer-logo { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
    .footer-logo img { height: 150px;}
    .footer-logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem; color: rgba(245,237,216,.8);
    }
    .footer-tagline { font-size: 1rem; color: rgba(245,237,216,.4); line-height: 1.8; max-width: 280px; }
    .footer-col h4 {
      font-size: 1rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.25rem; font-family: 'Jost'; font-weight: 500;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: .6rem; }
    .footer-col ul li a { font-size: 1rem; color: rgba(245,237,216,.45); transition: color .3s; }
    .footer-col ul li a:hover { color: var(--gold-lt); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding-top: 1.75rem;
      display: flex; justify-content: space-between; align-items: center;
    }
    .footer-bottom p { font-size: 1rem; color: rgba(245,237,216,.25); }
    .footer-bottom a { color: rgba(245,237,216,.35); }
    .footer-bottom a:hover { color: var(--gold); }

    /* ── FLOAT SOCIAL ────────────────────────────────── */
    .social-float {
      position: fixed; right: 1.5rem; bottom: 6rem; z-index: 50;
      display: flex; flex-direction: column; gap: .5rem;
    }
    .social-float a {
      width: 36px; height: 36px; background: var(--brown-d);
      border: 1px solid rgba(255,255,255,.08);
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem; color: rgba(245,237,216,.5);
      transition: background .3s, color .3s;
    }
    .social-float a:hover { background: var(--gold); color: var(--cream); border-color: var(--gold); }

    /* ── BACK-TO-TOP ─────────────────────────────────── */
    .back-top {
      position: fixed; right: 1.5rem; bottom: 2rem; z-index: 50;
      width: 36px; height: 36px; background: var(--gold-lt);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none; transition: opacity .3s;
      font-size: 1rem; color: var(--cream);
    }
    .back-top.visible { opacity: 1; pointer-events: all; }

    /* ── RESPONSIVE ──────────────────────────────────── */
    @media (max-width: 1024px) {
      .about-grid, .parcours-grid, .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
      .methodes-grid { grid-template-columns: 1fr 1fr; }
      .confiance-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
      .galerie-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .galerie-item--large { grid-row: auto; grid-column: 1 / -1; height: 400px; }
      .about-img-float { display: none; }
    }
    @media (max-width: 768px) {
      .container, .container--narrow { padding: 0 1.5rem; }
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      .hero-content { padding: 0 1.5rem 4rem; }
      .methodes-grid { grid-template-columns: 1fr; }
      .intervention-grid { grid-template-columns: 1fr; }
      .confiance-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .galerie-grid { grid-template-columns: 1fr; }
      .galerie-item--large { grid-column: auto; }
      #intro-strip { display: none; }
      .form-row { grid-template-columns: 1fr; }
      #extranet-banner { flex-direction: column; text-align: center; }
    }