:root{
    --forest: #1f4d3a;
    --forest-dark: #12332584;
    --forest-darker: #0d2419;
    --green: #2f7a52;
    --green-light: #4f9c6e;
    --leaf: #8fbf6f;
    --cream: #f7f6f0;
    --white: #ffffff;
    --ink: #1c2b23;
    --muted: #5c6b62;
    --gold: #e0a53c;
    --shadow: 0 10px 30px rgba(18,51,37,0.12);
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  html, body{ max-width:100%; overflow-x:hidden; }
  body{
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height:1.6;
  }
  img,svg{display:block;}
  a{color:inherit; text-decoration:none;}
  .container{
    max-width:1120px;
    margin:0 auto;
    padding:0 24px;
  }
  section{padding:88px 0;}
  h1,h2,h3{font-family:'Georgia', 'Times New Roman', serif; line-height:1.15;}
  .eyebrow{
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:13px;
    font-weight:700;
    color: var(--green);
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:15px 30px;
    border-radius:8px;
    font-weight:700;
    font-size:15px;
    cursor:pointer;
    border:2px solid transparent;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  .btn-primary{
    background: var(--gold);
    color: var(--forest-darker);
  }
  .btn-primary:hover{ transform: translateY(-2px); box-shadow: 0 8px 20px rgba(224,165,60,0.4);}
  .btn-outline{
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
  }
  .btn-outline:hover{ background: rgba(255,255,255,0.12); }
  .btn-outline-dark{
    background: transparent;
    border-color: var(--forest);
    color: var(--forest);
  }
  .btn-outline-dark:hover{ background: var(--forest); color:var(--white); }

  /* HEADER */
  header{
    position:sticky; top:0; z-index:100;
    background: rgba(31,77,58,0.97);
    backdrop-filter: blur(6px);
    color: var(--white);
  }
  .nav{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 24px; gap:12px;
    max-width:1120px; margin:0 auto;
  }
  .brand{ display:flex; align-items:center; gap:12px; min-width:0; flex:1 1 auto; }
  .brand-name{ font-family:'Georgia', serif; font-size:20px; font-weight:700; letter-spacing:.3px; min-width:0; }
  .brand-name span{ display:block; font-family:system-ui; font-size:11px; font-weight:400; opacity:.75; letter-spacing:1px; text-transform:uppercase;}
  .nav-links{ display:flex; gap:28px; font-size:14px; font-weight:600; }
  .nav-links a{ opacity:.9; transition:opacity .15s; }
  .nav-links a:hover{ opacity:1; }
  .nav-phone{
    display:flex; align-items:center; gap:8px;
    font-weight:700; font-size:15px;
    white-space:nowrap; flex-shrink:0;
  }
  @media (max-width:860px){
    .nav-links{ display:none; }
  }
  @media (max-width:480px){
    .nav{ padding:14px 16px; gap:8px; }
    .logo-icon{ width:34px; height:34px; }
    .brand-name{ font-size:15.5px; }
    .brand-name span{ display:none; }
    .nav-phone{ font-size:12.5px; gap:5px; }
  }
  @media (max-width:360px){
    .nav-phone span.phone-emoji{ display:none; }
  }

  /* HERO */
  .hero{
    position:relative;
    background:
      radial-gradient(circle at 15% 20%, rgba(255,255,255,0.06), transparent 40%),
      linear-gradient(160deg, var(--forest) 0%, #163c2c 55%, #0d2419 100%);
    color: var(--white);
    padding:100px 0 90px;
    overflow:hidden;
  }
  .hero::after{
    content:"";
    position:absolute; right:-120px; top:-80px;
    width:420px; height:420px;
    background: radial-gradient(circle, rgba(143,191,111,0.18), transparent 70%);
    border-radius:50%;
  }
  .hero-grid{
    display:grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap:56px;
    align-items:center;
    position:relative;
    z-index:2;
  }
  @media (max-width:900px){ .hero-grid{ grid-template-columns:1fr; } }
  .rating-pill{
    display:inline-flex; align-items:center; gap:8px;
    background: rgba(255,255,255,0.1);
    border:1px solid rgba(255,255,255,0.25);
    padding:7px 14px;
    border-radius:100px;
    font-size:14px;
    font-weight:600;
    margin-bottom:22px;
  }
  .stars{ color: var(--gold); letter-spacing:1px; font-size:14px; }
  .hero h1{
    font-size:44px;
    margin-bottom:20px;
    font-weight:700;
  }
  .hero h1 em{ font-style:normal; color: var(--leaf); }
  .hero p.lead{
    font-size:18px;
    color: rgba(255,255,255,0.85);
    max-width:520px;
    margin-bottom:32px;
  }
  .hero-cta{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:38px; }
  .hero-facts{
    display:flex; flex-wrap:wrap; gap:26px;
    font-size:14px;
    color: rgba(255,255,255,0.75);
  }
  .hero-facts div{ display:flex; align-items:center; gap:8px; }
  .hero-visual{
    display:flex; justify-content:center; align-items:center;
  }
  .badge-card{
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:20px;
    padding:36px;
    text-align:center;
    width:100%;
    max-width:320px;
    box-shadow: var(--shadow);
  }
  .badge-card .score{
    font-family:'Georgia', serif;
    font-size:56px;
    font-weight:700;
    color: var(--gold);
  }
  .badge-card .stars{ font-size:20px; margin:6px 0 10px; }
  .badge-card .count{ font-size:14px; color: rgba(255,255,255,0.7); margin-bottom:22px; }
  .badge-card hr{ border:none; border-top:1px solid rgba(255,255,255,0.15); margin:18px 0; }
  .badge-card .quote{ font-size:14px; font-style:italic; color: rgba(255,255,255,0.85); }

  /* ICON LOGO */
  .logo-icon{
    width:44px; height:44px; flex-shrink:0;
  }

  /* SERVICES */
  .section-head{ text-align:center; max-width:640px; margin:0 auto 56px; }
  .section-head h2{ font-size:34px; color: var(--forest-darker); margin:12px 0 14px; }
  .section-head p{ color: var(--muted); font-size:16px; }
  .services-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:26px;
  }
  @media (max-width:860px){ .services-grid{ grid-template-columns: 1fr 1fr; } }
  @media (max-width:560px){ .services-grid{ grid-template-columns: 1fr; } }
  .service-card{
    position:relative;
    background: var(--white);
    border-radius:16px;
    padding:32px 26px;
    box-shadow: 0 6px 20px rgba(18,51,37,0.06);
    border:1px solid rgba(31,77,58,0.06);
    overflow:hidden;
    transition: transform .25s cubic-bezier(.2,.8,.25,1), box-shadow .25s ease, border-color .25s ease;
  }
  .service-card::before{
    content:"";
    position:absolute; top:0; left:0; right:0; height:4px;
    background: linear-gradient(90deg, var(--leaf), var(--green));
    transform: scaleX(0); transform-origin:left;
    transition: transform .3s ease;
  }
  .service-card:hover{
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 38px rgba(18,51,37,0.16);
    border-color: rgba(47,122,82,0.35);
  }
  .service-card:hover::before{ transform: scaleX(1); }
  .service-icon{
    width:52px; height:52px;
    border-radius:12px;
    background: linear-gradient(135deg, var(--green), var(--forest));
    display:flex; align-items:center; justify-content:center;
    color:white; font-size:24px;
    margin-bottom:18px;
    transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
  }
  .service-card:hover .service-icon{
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 8px 18px rgba(47,122,82,0.35);
  }
  .service-card h3{ font-size:18px; margin-bottom:8px; color:var(--forest-darker); font-family:system-ui; font-weight:700; }
  .service-card p{ font-size:14.5px; color: var(--muted); }

  /* WHY US */
  .why{ background: var(--forest-darker); color: var(--white); }
  .why .container{ display:grid; grid-template-columns: 1fr 1fr; gap:64px; align-items:center; }
  @media (max-width:860px){ .why .container{ grid-template-columns:1fr; gap:36px; } }
  .why h2{ font-size:32px; margin:12px 0 20px; }
  .why p.lead{ color: rgba(255,255,255,0.75); margin-bottom:28px; font-size:16px; }
  .why-list{ display:flex; flex-direction:column; gap:20px; }
  .why-item{ display:flex; gap:16px; }
  .why-item .num{
    width:36px; height:36px; flex-shrink:0;
    border-radius:50%;
    background: rgba(143,191,111,0.15);
    border:1px solid rgba(143,191,111,0.4);
    display:flex; align-items:center; justify-content:center;
    color: var(--leaf); font-weight:700; font-size:14px;
  }
  .why-item h4{ font-size:16px; margin-bottom:4px; }
  .why-item p{ font-size:14px; color: rgba(255,255,255,0.65); }
  .why-photo{
    border-radius:20px;
    background: linear-gradient(135deg, rgba(143,191,111,0.15), rgba(31,77,58,0.4));
    border:1px solid rgba(255,255,255,0.1);
    padding:40px;
    text-align:center;
  }
  .why-photo .icon-lg{ margin:0 auto 20px; }
  .why-photo .stat{ font-family:'Georgia', serif; font-size:42px; color: var(--gold); font-weight:700; }
  .why-photo .stat-label{ font-size:13px; text-transform:uppercase; letter-spacing:1.5px; color: rgba(255,255,255,0.6); margin-top:6px; }
  .why-stats{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:28px; }

  /* REVIEWS */
  .reviews{ background: var(--cream); }
  .reviews-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:22px;
  }
  @media (max-width:860px){ .reviews-grid{ grid-template-columns: 1fr 1fr; } }
  @media (max-width:560px){ .reviews-grid{ grid-template-columns: 1fr; } }
  .review-card{
    background: var(--white);
    border-radius:14px;
    padding:26px;
    border:1px solid rgba(31,77,58,0.08);
  }
  .review-top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:12px; }
  .review-name{ font-weight:700; font-size:14.5px; color: var(--forest-darker); }
  .review-time{ font-size:12px; color: var(--muted); }
  .review-stars{ color: var(--gold); font-size:13px; margin-bottom:10px; }
  .review-text{ font-size:14px; color: #3a473f; }

  /* REVIEWS CAROUSEL */
  .reviews-carousel{ position:relative; display:flex; align-items:center; gap:14px; }
  .rc-viewport{
    overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
    -ms-overflow-style:none; scrollbar-width:none;
  }
  .rc-viewport::-webkit-scrollbar{ display:none; }
  .rc-track{ display:flex; gap:22px; }
  .rc-track > .review-card{
    scroll-snap-align:start;
    flex: 0 0 calc((100% - 44px)/3);
  }
  @media (max-width:860px){ .rc-track > .review-card{ flex: 0 0 calc((100% - 22px)/2); } }
  @media (max-width:560px){ .rc-track > .review-card{ flex: 0 0 100%; } }
  .rc-arrow{
    flex:0 0 auto; width:44px; height:44px; border-radius:50%;
    background: var(--white); border:1px solid rgba(31,77,58,0.15);
    color: var(--forest); font-size:20px; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    box-shadow: 0 6px 16px rgba(18,51,37,0.10);
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .rc-arrow:hover{ background: var(--forest); color:#fff; transform: scale(1.06); }
  @media (max-width:560px){ .rc-arrow{ width:36px; height:36px; font-size:16px; } }
  .rc-dots{ display:flex; justify-content:center; gap:8px; margin-top:22px; }
  .rc-dot{
    width:8px; height:8px; border-radius:50%; border:none;
    background: rgba(31,77,58,0.2); cursor:pointer; padding:0;
    transition: background .2s ease, transform .2s ease;
  }
  .rc-dot.active{ background: var(--green); transform: scale(1.3); }

  /* COVERAGE */
  .coverage{ }
  .coverage .container{ display:grid; grid-template-columns: 1fr 1fr; gap:56px; align-items:center; }
  @media (max-width:860px){ .coverage .container{ grid-template-columns:1fr; } }
  .coverage h2{ font-size:32px; color: var(--forest-darker); margin:12px 0 18px; }
  .coverage p{ color: var(--muted); margin-bottom:20px; font-size:16px; }
  .zone-tags{ display:flex; flex-wrap:wrap; gap:10px; }
  .zone-tag{
    background: rgba(47,122,82,0.08);
    color: var(--forest);
    border:1px solid rgba(47,122,82,0.25);
    padding:8px 16px;
    border-radius:100px;
    font-size:13.5px;
    font-weight:600;
  }
  .map-frame{
    border-radius:18px;
    overflow:hidden;
    box-shadow: var(--shadow);
    border:1px solid rgba(31,77,58,0.1);
  }
  .map-placeholder{
    background: var(--white);
    min-height:320px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:32px;
    gap:10px;
  }
  .map-placeholder-icon{ font-size:32px; }
  .map-placeholder-text{ font-weight:700; color: var(--forest-darker); font-size:15px; }
  .map-placeholder-note{ font-size:12px; color: var(--muted); max-width:320px; margin-top:6px; }
  .map-placeholder-note a{ text-decoration:underline; color: var(--forest); }

  /* CTA / CONTACT */
  .cta{
    background: linear-gradient(160deg, var(--forest) 0%, var(--forest-darker) 100%);
    color: var(--white);
  }
  .cta-grid{
    display:grid; grid-template-columns: 1fr 1fr; gap:56px; min-width:0;
  }
  .cta-grid > *{ min-width:0; }
  @media (max-width:860px){ .cta-grid{ grid-template-columns:1fr; } }
  .cta h2{ font-size:32px; margin:12px 0 16px; }
  .cta p.lead{ color: rgba(255,255,255,0.75); font-size:16px; margin-bottom:30px; }
  .contact-card{
    background: rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:18px;
    padding:34px;
  }
  .contact-row{ display:flex; gap:16px; align-items:flex-start; margin-bottom:22px; }
  .contact-row:last-child{ margin-bottom:0; }
  .contact-row > div{ min-width:0; }
  .contact-icon{
    width:40px; height:40px; flex-shrink:0;
    border-radius:10px;
    background: rgba(224,165,60,0.15);
    color: var(--gold);
    display:flex; align-items:center; justify-content:center;
    font-size:18px;
  }
  .contact-row h4{ font-size:14px; text-transform:uppercase; letter-spacing:1px; color: rgba(255,255,255,0.6); margin-bottom:4px; }
  .contact-row p, .contact-row a{ font-size:16px; font-weight:600; overflow-wrap:anywhere; }

  /* FOOTER */
  footer{
    background: var(--forest-darker);
    color: rgba(255,255,255,0.55);
    text-align:center;
    padding:28px 0;
    font-size:13px;
  }
  footer a{ color: rgba(255,255,255,0.8); font-weight:600; }
  footer .footer-sep{ opacity:.4; margin:0 2px; }

  /* MOBILE HERO CTA */
  @media (max-width:900px){
    .hero h1{ font-size:32px; }
    section{ padding:64px 0; }
  }

  /* ===== ANIMATIONS & INTERACTIONS ===== */
  .reveal{ opacity:0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.in{ opacity:1; transform:none; }

  /* Logo + titre cliquable */
  a.brand{ cursor:pointer; transition: transform .2s ease; }
  a.brand:hover{ transform: translateY(-1px); }
  a.brand:hover .logo-icon{ transform: rotate(-8deg) scale(1.07); }
  a.brand:hover .brand-name{ color:#eafff0; }
  .logo-icon{ transition: transform .35s ease; }

  /* Liens de navigation : soulignement animé */
  .nav-links a::after{
    content:""; position:absolute; left:0; bottom:-6px;
    width:100%; height:2px; background: var(--leaf);
    transform: scaleX(0); transform-origin:right; transition: transform .28s ease;
  }
  .nav-links a:hover::after{ transform: scaleX(1); transform-origin:left; }
  .nav-links a{ transition: opacity .15s, color .15s; }
  .nav-links a:hover{ opacity:1; color:#eafff0; }

  /* Téléphone : léger soulèvement + sonnerie de l'icône */
  .nav-phone{ transition: transform .2s ease, color .2s ease, background .2s ease; border-radius:8px; padding:6px 10px; }
  .nav-phone:hover{ transform: translateY(-2px); color: var(--leaf); background: rgba(255,255,255,0.08); }
  .nav-phone:hover .phone-emoji{ animation: ring .6s ease; }
  .phone-emoji{ display:inline-block; }
  @keyframes ring{ 0%,100%{transform:rotate(0)} 15%{transform:rotate(-18deg)} 30%{transform:rotate(14deg)} 45%{transform:rotate(-10deg)} 60%{transform:rotate(7deg)} 75%{transform:rotate(-4deg)} }

  /* Pourquoi nous : apparition progressive 1 -> 4 */
  .why-list .why-item{ opacity:0; transform: translateX(-20px); transition: opacity .6s ease, transform .6s ease; }
  .why-list.in .why-item{ opacity:1; transform:none; }
  .why-list .why-item:nth-child(1){ transition-delay:.05s; }
  .why-list .why-item:nth-child(2){ transition-delay:.25s; }
  .why-list .why-item:nth-child(3){ transition-delay:.45s; }
  .why-list .why-item:nth-child(4){ transition-delay:.65s; }
  .why-item .num{ transition: transform .3s ease, background .3s ease; }
  .why-item:hover .num{ transform: scale(1.15); background: rgba(143,191,111,0.32); }

  /* Zones : villes en mouvement au survol */
  .zone-tag{ cursor:default; transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease; }
  .zone-tag:hover{ transform: translateY(-3px) scale(1.06); background: var(--forest); color: var(--white); box-shadow: 0 8px 18px rgba(31,77,58,0.28); }

  /* ===== GALERIE PHOTOS — CARROUSEL (3 visibles) ===== */
  .gallery{ background: var(--white); }
  .pg-carousel{ display:flex; align-items:center; gap:14px; }
  .pg-viewport{
    overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth;
    -ms-overflow-style:none; scrollbar-width:none;
  }
  .pg-viewport::-webkit-scrollbar{ display:none; }
  .pg-track{ display:flex; gap:18px; }
  .pg-track > .pg-item{
    scroll-snap-align:start;
    flex: 0 0 calc((100% - 36px)/3);
    position:relative; border-radius:16px; overflow:hidden;
    aspect-ratio:3/4; background:#eee;
    box-shadow: 0 6px 20px rgba(18,51,37,0.10);
  }
  @media(max-width:860px){ .pg-track > .pg-item{ flex-basis: calc((100% - 18px)/2); } }
  @media(max-width:560px){ .pg-track > .pg-item{ flex-basis: 100%; } }
  .pg-item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
  .pg-item:hover img{ transform: scale(1.06); }
  .pg-item .cap{
    position:absolute; left:0; right:0; bottom:0;
    padding:26px 14px 12px; color:#fff; font-size:13px; font-weight:600;
    background: linear-gradient(transparent, rgba(13,36,25,0.85));
  }
  .pg-arrow{
    flex:0 0 auto; width:44px; height:44px; border-radius:50%;
    background: var(--white); border:1px solid rgba(31,77,58,0.15);
    color: var(--forest); font-size:20px; cursor:pointer;
    display:flex; align-items:center; justify-content:center;
    box-shadow: 0 6px 16px rgba(18,51,37,0.10);
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .pg-arrow:hover{ background: var(--forest); color:#fff; transform: scale(1.06); }
  @media(max-width:560px){ .pg-arrow{ width:36px; height:36px; font-size:16px; } }
  .pg-dots{ display:flex; justify-content:center; gap:8px; margin-top:22px; }
  .pg-dot{
    width:8px; height:8px; border-radius:50%; border:none; padding:0; cursor:pointer;
    background: rgba(31,77,58,0.2); transition: background .2s ease, transform .2s ease;
  }
  .pg-dot.active{ background: var(--green); transform: scale(1.3); }

  /* ===== PHOTO HERO — DIAPORAMA ===== */
  .hero-photo{
    position:relative; width:100%; max-width:330px; margin:0 auto;
    aspect-ratio: 3/4; border-radius:22px; overflow:hidden;
    box-shadow: var(--shadow); border:3px solid rgba(255,255,255,0.16);
    background: var(--forest-darker);
  }
  .hs-slide{
    position:absolute; inset:0; width:100%; height:100%;
    object-fit:cover; opacity:0; transition: opacity 1.1s ease;
  }
  .hs-slide.active{ opacity:1; }
  .hs-dots{
    position:absolute; top:14px; right:14px; z-index:3;
    display:flex; gap:6px;
  }
  .hs-dot{
    width:8px; height:8px; border-radius:50%; padding:0; cursor:pointer;
    border:1px solid rgba(255,255,255,0.75); background: rgba(255,255,255,0.3);
    transition: background .2s ease, transform .2s ease;
  }
  .hs-dot.active{ background: var(--gold); border-color: var(--gold); transform: scale(1.3); }
  .rating-float{
    position:absolute; bottom:14px; left:14px; right:14px; z-index:2;
    background: rgba(13,36,25,0.82); backdrop-filter: blur(4px);
    border:1px solid rgba(255,255,255,0.16); border-radius:14px;
    padding:12px 16px; display:flex; align-items:center; gap:12px;
  }
  .rating-float .rf-score{ font-family:'Georgia',serif; font-size:30px; font-weight:700; color:var(--gold); line-height:1; }
  .rating-float .rf-stars{ color:var(--gold); font-size:13px; letter-spacing:1px; }
  .rating-float .rf-sub{ font-size:11px; color:rgba(255,255,255,0.72); }

  @media (prefers-reduced-motion: reduce){
    .reveal, .why-list .why-item{ opacity:1 !important; transform:none !important; }
    *{ animation:none !important; }
  }
