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

  :root {
    --navy: #0D2150;
    --navy-mid: #1A3272;
    --gold: #C09B3A;
    --gold-light: #E0BC68;
    --gold-pale: #F5E9C8;
    --white: #FFFFFF;
    --off-white: #F8F6F1;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --radius: 6px;
  }

  html { scroll-behavior: smooth; scroll-padding-top: 78px; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-user-select: none;
    user-select: none;
  }
  img,
  a {
    -webkit-user-drag: none;
    user-drag: none;
  }
  ::selection { background: transparent; }
  .js-phone-link,
  .js-email-link {
    -webkit-user-select: text;
    user-select: text;
  }
  .js-phone-link::selection,
  .js-email-link::selection {
    background: rgba(192,155,58,0.28);
  }
  [id] { scroll-margin-top: 0; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(13,33,80,0.97); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%; height: 70px;
    border-bottom: 1px solid rgba(192,155,58,0.3);
  }
  .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
  .nav-logo-icon {
    width: 44px; height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700; color: var(--navy);
  }
  .nav-logo-text { font-family: 'Playfair Display', serif; }
  .nav-logo-text span:first-child { display: block; color: var(--white); font-size: 15px; font-weight: 600; letter-spacing: 1px; }
  .nav-logo-text span:last-child { display: block; color: var(--gold); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 13px; letter-spacing: 0.5px; transition: color .2s; }
  .nav-links a:hover { color: var(--gold); }
  .nav-mobile-phone { display: none; }
  .nav-cta {
    background: var(--gold); color: var(--navy);
    padding: 9px 22px; border-radius: var(--radius);
    font-size: 13px; font-weight: 500; text-decoration: none;
    transition: background .2s;
  }
  .nav-cta:hover { background: var(--gold-light); }
  .nav-burger {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px;
    border: 0; background: transparent;
    cursor: pointer;
  }
  .nav-burger span { width: 24px; height: 2px; background: var(--white); transition: all .3s; }
  .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* HERO */
  .hero {
    min-height: 100vh; padding-top: 70px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0B1E4A 100%);
    display: flex; align-items: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("../images/background-pattern.svg");
    z-index: 0;
    pointer-events: none;
  }
  .hero-content { position: relative; z-index: 2; width: min(55%, 760px); padding: 0 5%; }
  .hero-visual {
    position: absolute;
    top: 70px; right: 0; bottom: 0;
    width: 52%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
  }
  .hero-visual-fade-left {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 150px;
    background: linear-gradient(to right, #0D2150, rgba(13,33,80,0.72) 35%, transparent);
    z-index: 2;
  }
  .hero-visual-fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(to top, #0D2150, transparent);
    z-index: 2;
  }
  .hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(192,155,58,0.15); border: 1px solid rgba(192,155,58,0.4);
    padding: 6px 16px; border-radius: 100px;
    color: var(--gold-light); font-size: 12px; letter-spacing: 2px; text-transform: uppercase;
    margin-bottom: 28px;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 700; line-height: 1.15;
    color: var(--white); margin-bottom: 24px;
  }
  .hero h1 em { font-style: normal; color: var(--gold); }
  .hero p { color: rgba(255,255,255,0.75); font-size: 17px; line-height: 1.75; max-width: 560px; margin-bottom: 40px; }
  .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    padding: 14px 32px; border-radius: var(--radius);
    font-size: 14px; font-weight: 500; text-decoration: none;
    transition: all .2s;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-outline {
    border: 1.5px solid rgba(255,255,255,0.4); color: var(--white);
    padding: 14px 32px; border-radius: var(--radius);
    font-size: 14px; text-decoration: none; transition: all .2s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-stats {
    display: flex; gap: 40px;
    margin-top: 48px;
    flex-wrap: wrap;
  }
  .hero-stat { text-align: center; }
  .hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--gold); }
  .hero-stat span { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 1px; text-transform: uppercase; }
  .hero-scroll {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    animation: bounce 2s infinite;
    z-index: 2;
  }
  .hero-scroll::after { content: '↓'; font-size: 16px; }
  @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

  /* SECTIONS */
  section { padding: 90px 5%; }
  .section-label {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--gold); font-weight: 500; margin-bottom: 12px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700; line-height: 1.2;
    color: var(--navy); margin-bottom: 16px;
  }
  .section-title.light { color: var(--white); }
  .section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 560px; margin-bottom: 50px; }
  .section-sub.light { color: rgba(255,255,255,0.7); }
  .service-card,
  .partner-card,
  .special-offer,
  .contact-card,
  .contact-item-text,
  .ba-card,
  .engagement-card {
    min-width: 0;
  }

  /* ABOUT */
  .about { background: var(--off-white); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
  .about-visual {
    position: relative;
    background: var(--navy);
    border-radius: 12px; overflow: hidden;
    height: 480px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 20px;
  }
  .about-logo-big {
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 48px; font-weight: 700; color: var(--navy);
  }
  .about-visual-title { font-family: 'Playfair Display', serif; color: var(--white); font-size: 28px; text-align: center; }
  .about-visual-sub { color: var(--gold); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; }
  .about-visual-line {
    width: 60px; height: 2px; background: var(--gold);
  }
  .about-pills { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; padding: 0 20px; }
  .pill {
    background: rgba(192,155,58,0.15); border: 1px solid rgba(192,155,58,0.3);
    color: var(--gold-light); font-size: 12px; padding: 5px 14px;
    border-radius: 100px;
  }
  .about-text p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
  .about-text .highlight { color: var(--navy); font-weight: 500; }
  .about-info { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
  .about-info-row { display: flex; align-items: center; gap: 12px; font-size: 14px; }
  .about-info-row strong { color: var(--navy); min-width: 80px; }
  .about-info-row span { color: var(--text-muted); }

  /* SERVICES */
  .services { background: var(--white); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; align-items: stretch; }
  .service-card {
    border: 1px solid #E5E7EB;
    border-radius: 12px; padding: 32px;
    transition: all .3s; position: relative; overflow: hidden;
  }
  .service-card::before {
    content: attr(data-num);
    position: absolute; top: -10px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 80px; font-weight: 700;
    color: rgba(13,33,80,0.04);
    line-height: 1;
  }
  .service-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(13,33,80,0.1); }
  .service-icon {
    width: 48px; height: 48px; border-radius: 10px;
    background: var(--gold-pale);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .service-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .service-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--navy); margin-bottom: 12px; }
  .service-card ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .service-card ul li { font-size: 13px; color: var(--text-muted); padding-left: 16px; position: relative; line-height: 1.5; }
  .service-card ul li::before { content: '—'; position: absolute; left: 0; color: var(--gold); font-size: 10px; top: 3px; }
  .service-info-note,
  .pcmi-info-note {
    background: var(--off-white);
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    color: var(--text-dark);
    line-height: 1.75;
  }
  .service-info-note strong,
  .pcmi-info-note strong {
    color: var(--navy);
    font-weight: 700;
  }
  .service-info-note {
    margin-top: 22px;
    padding: 18px 20px;
    font-size: 13px;
  }
  .pcmi-info-note {
    margin: 20px 0 24px;
    padding: 20px 24px;
    font-size: 13.5px;
  }

  /* PARTENAIRES */
  .partenaires { background: var(--navy); }
  .partenaires-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 50px; }
  .partner-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(192,155,58,0.25);
    border-radius: 12px; padding: 28px;
    transition: all .3s;
  }
  .partner-card:hover { background: rgba(192,155,58,0.1); border-color: var(--gold); }
  .partner-card h3 { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 18px; margin-bottom: 8px; }
  .partner-card p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.6; }
  .partner-badge {
    display: inline-block; margin-top: 12px;
    font-size: 11px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase;
    border-top: 1px solid rgba(192,155,58,0.3); padding-top: 10px; width: 100%;
  }
  .partner-logo-wrap {
    width: 100%; height: 90px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); border-radius: 8px;
    margin-bottom: 18px; overflow: hidden; padding: 10px;
  }
  .partner-logo {
    max-height: 70px; max-width: 100%;
    object-fit: contain;
  }
  .partner-info {
    display: flex; flex-direction: column; gap: 6px;
    margin-top: 12px; margin-bottom: 4px;
  }
  .partner-info-row {
    font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.5;
  }
  .partner-phone {
    color: var(--gold-light); text-decoration: none;
  }
  .partner-phone:hover { color: var(--gold); }

  /* DRONE / SMART HOME */
  .special-offer {
    background: var(--off-white);
    border: 2px solid var(--navy);
    border-radius: 16px;
    padding: 60px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    margin: 90px 5%;
  }
  .special-offer h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
  .special-offer h2 em { font-style: normal; color: var(--gold); }
  .special-offer p { color: var(--text-muted); font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
  .offer-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .offer-list li { font-size: 14px; color: var(--text-dark); display: flex; align-items: flex-start; gap: 10px; }
  .offer-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
  .offer-visual {
    background: var(--navy); border-radius: 12px;
    height: 300px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 16px;
  }
  .offer-visual-icon { font-size: 64px; line-height: 1; }
  .offer-visual h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 20px; text-align: center; padding: 0 20px; }
  .offer-visual p { color: var(--gold); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; }
  .pcmi-doc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 24px;
  }
  .pcmi-wide { grid-column: 1 / -1; }

  /* TARIFS */
  .tarifs-section {
    background: var(--off-white);
    padding: 90px 5%;
  }
  .tarifs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
  }
  .tarifs-support-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
  .tarifs-grid > *,
  .tarifs-support-grid > * { min-width: 0; }

  /* ENGAGEMENT */
  .engagement-section {
    background: var(--white);
    padding: 90px 5%;
  }

  /* CONTACT */
  .contact { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .contact-info { display: flex; flex-direction: column; gap: 28px; }
  .contact-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-item-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--gold-pale); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .contact-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
  .contact-item-text strong { display: block; font-size: 13px; color: var(--navy); margin-bottom: 2px; }
  .contact-item-text span, .contact-item-text a { font-size: 14px; color: var(--text-muted); text-decoration: none; }
  .contact-item-text a:hover { color: var(--gold); }
  .contact-card {
    background: var(--navy); border-radius: 12px; padding: 40px;
    display: flex; flex-direction: column; gap: 20px;
  }
  .contact-card h3 { font-family: 'Playfair Display', serif; color: var(--white); font-size: 22px; }
  .contact-card p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; }
  .contact-card a.btn-primary { display: inline-block; text-align: center; }
  .contact-siret { margin-top: 8px; font-size: 12px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }

  /* FOOTER */
  footer {
    background: #070F24; padding: 50px 5% 30px;
  }
  .footer-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 40px; margin-bottom: 30px;
    flex-wrap: wrap; gap: 30px;
  }
  .footer-brand .nav-logo-text span:first-child { font-size: 18px; }
  .footer-tagline { color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 8px; font-style: italic; }
  .footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
  .footer-col h4 { color: var(--gold); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
  .footer-col ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color .2s; }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
  .footer-bottom p { color: rgba(255,255,255,0.3); font-size: 12px; }
  .footer-bottom .gold { color: var(--gold); }
  .instagram-link {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px;
    transition: color .2s;
  }
  .instagram-link:hover { color: var(--gold); }

  /* MOBILE */
  @media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: flex; }
    nav.mobile-open .nav-links {
      position: absolute;
      top: 70px; left: 0; right: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 10px 5% 16px;
      background: rgba(13,33,80,0.99);
      border-bottom: 1px solid rgba(192,155,58,0.3);
      box-shadow: 0 16px 32px rgba(0,0,0,0.24);
    }
    nav.mobile-open .nav-links li { border-top: 1px solid rgba(255,255,255,0.08); }
    nav.mobile-open .nav-links li:first-child { border-top: 0; }
    nav.mobile-open .nav-links a {
      display: block;
      padding: 14px 0;
      font-size: 15px;
      letter-spacing: 0.6px;
    }
    nav.mobile-open .nav-mobile-phone { display: block; }
    nav.mobile-open .nav-mobile-phone a {
      color: var(--navy);
      background: var(--gold);
      border-radius: var(--radius);
      margin-top: 10px;
      padding: 13px 16px;
      text-align: center;
      font-weight: 600;
    }
    .hero { min-height: auto; padding-top: 70px; flex-direction: column; align-items: stretch; }
    .hero-content { width: 100%; padding: 48px 5% 0; }
    .hero-visual { position: relative; top: auto; right: auto; bottom: auto; width: 100%; height: 260px; margin-top: 40px; }
    .hero-visual-fade-left { display: none; }
    .hero-visual-fade-bottom { height: 70px; }
    .hero-visual img { object-position: center center; }
    .hero-stats { position: static; margin-top: 48px; justify-content: flex-start; }
    .about-grid, .contact-grid, .special-offer { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { padding-left: 24px; padding-right: 24px; }
    .about-visual-sub {
      width: 100%;
      max-width: 300px;
      text-align: center;
      line-height: 1.6;
      letter-spacing: 2px;
    }
    section,
    .tarifs-section,
    .engagement-section,
    .drone-section { padding: 64px 5%; }
    .section-sub { max-width: none; margin-bottom: 36px; }
    .services-grid,
    .partenaires-grid,
    .pcmi-doc-grid,
    .tarifs-grid,
    .tarifs-support-grid { grid-template-columns: 1fr; }
    .pcmi-wide { grid-column: auto; }
    .service-card,
    .partner-card,
    .contact-card { padding: 24px; }
    .special-offer { padding: 32px 22px; margin: 40px 5%; }
    .offer-visual { height: 260px; }
    .about-info-row { flex-direction: column; align-items: flex-start; gap: 4px; }
    .about-info-row strong { min-width: 0; }
    .contact-item-text span,
    .contact-item-text a { overflow-wrap: anywhere; }
    .footer-links { gap: 30px; }
    .hero-scroll { display: none; }
  }


  /* RÉALISATIONS */
  .realisations { background: var(--off-white); }
  .ba-intro { margin-bottom: 8px; }

  /* CARTES AVANT/APRÈS */
  .ba-card {
    display: flex; align-items: stretch; gap: 0;
    background: var(--white); border-radius: 14px;
    overflow: hidden; margin-bottom: 28px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 20px rgba(13,33,80,0.06);
  }
  .ba-card--single { flex-direction: column; }
  .ba-half { flex: 1; display: flex; flex-direction: column; }
  .ba-full { width: 100%; }
  .ba-divider {
    display: flex; align-items: center; justify-content: center;
    width: 48px; flex-shrink: 0;
    background: var(--navy); color: var(--gold);
    font-size: 22px; font-weight: 700;
  }
  .ba-img-wrap { position: relative; aspect-ratio: 16/9; overflow: hidden; flex: 1; }
  .ba-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
  .ba-img-wrap:hover img { transform: scale(1.04); }
  .ba-label {
    position: absolute; top: 12px; left: 12px;
    padding: 5px 14px; border-radius: 100px;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  }
  .ba-label.avant { background: rgba(0,0,0,0.65); color: white; }
  .ba-label.apres { background: var(--gold); color: var(--navy); }
  .ba-caption {
    padding: 12px 16px; font-size: 13px;
    color: var(--text-muted); line-height: 1.5;
    border-top: 1px solid #F3F4F6;
  }

  /* JBSO GRID */
  .jbso-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* GALLERY */
  .gallery-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; aspect-ratio: 4/3; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,33,80,0.75) 0%, transparent 60%);
    opacity: 0; transition: opacity .3s;
    display: flex; align-items: flex-end; padding: 16px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span { color: white; font-size: 13px; font-weight: 500; }

  /* PAGES DE GARDE */
  .pg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .pg-item { text-align: center; }
  .pg-item img { width: 100%; border-radius: 10px; box-shadow: 0 8px 24px rgba(13,33,80,0.12); transition: transform .3s; }
  .pg-item:hover img { transform: translateY(-4px); }
  .pg-item p { margin-top: 10px; font-size: 13px; color: var(--navy); font-weight: 500; line-height: 1.4; }

  /* DRONE */
  .drone-section { background: var(--navy); padding: 90px 5%; }
  .drone-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .drone-img { position: relative; border-radius: 12px; overflow: hidden; }
  .drone-img img { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; }
  .drone-badge {
    position: absolute; bottom: 16px; left: 16px;
    background: var(--gold); color: var(--navy);
    padding: 8px 16px; border-radius: 100px;
    font-size: 12px; font-weight: 600;
  }

  @media (max-width: 768px) {
    .ba-card { flex-direction: column; }
    .ba-divider { width: 100%; height: 40px; writing-mode: horizontal-tb; }
    .jbso-grid { grid-template-columns: 1fr; }
    .pg-grid { grid-template-columns: repeat(2, 1fr); }
    .drone-inner { grid-template-columns: 1fr; }
  }


  /* REALISATIONS */
  .realisations { background: var(--off-white); }
  .ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 20px; align-items: stretch; }
  .ba-card {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    align-self: stretch;
  }
  .ba-card-single { grid-template-columns: 1fr; }
  .ba-card-single > img { display: block; width: 100% !important; height: auto !important; min-width: 0; min-height: 0; aspect-ratio: 8 / 3; object-fit: contain; background: var(--white); }
  .ba-images { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .ba-img-wrap {
    position: relative;
    height: auto;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--white);
  }
  .ba-img-wrap img { width: 100%; height: 100%; min-height: 0; object-fit: cover; transition: transform .4s; }
  .ba-img-wrap:hover img { transform: scale(1.05); }
  .ba-label {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .ba-label.avant { background: rgba(0,0,0,0.6); color: white; }
  .ba-label.apres { background: var(--gold); color: var(--navy); }
  .ba-desc { display: block; margin: 0; padding: 14px 18px 16px; font-size: 12.5px; color: var(--text-muted); line-height: 1.55; }
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 12px; }
  .gallery-item { position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
  .gallery-item:hover img { transform: scale(1.08); }
  .gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,33,80,0.75) 0%, transparent 60%); opacity: 0; transition: opacity .3s; display: flex; align-items: flex-end; padding: 16px; }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span { color: white; font-size: 13px; font-weight: 500; }
  .modular-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 800px;
  }
  #maison-modulaire { scroll-margin-top: 0; }
  .modular-gallery .gallery-item {
    aspect-ratio: 16 / 10;
    height: auto;
  }
  .deliverables-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 16px;
    margin-bottom: 24px;
    align-items: stretch;
  }
  .deliverables-gallery .gallery-item {
    aspect-ratio: 1 / 1;
    min-height: 0;
  }
  .engagement-feature {
    background: var(--navy);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: start;
  }
  .engagement-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 48px;
  }
  .engagement-card {
    min-width: 0;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px;
  }
  .engagement-card-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
  }
  .engagement-card-heading h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--navy);
    line-height: 1.25;
  }
  .engagement-icon {
    width: 44px; height: 44px;
    background: var(--gold-pale);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }
  .engagement-legal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.4fr;
    gap: 20px;
  }
  .drone-section { background: var(--navy); padding: 90px 5%; }
  .drone-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  .drone-img { position: relative; border-radius: 12px; overflow: hidden; }
  .drone-img img { width: 100%; height: 420px; object-fit: cover; border-radius: 12px; }
  .drone-badge { position: absolute; bottom: 16px; left: 16px; background: var(--gold); color: var(--navy); padding: 8px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; }
  @media (max-width: 768px) {
    .ba-grid { grid-template-columns: 1fr; }
    .ba-card,
    .ba-card-single { grid-template-columns: 1fr; }
    .ba-images { height: auto; }
    .ba-img-wrap { height: auto; aspect-ratio: 4 / 3; }
    .ba-card-single > img { height: auto !important; aspect-ratio: 8 / 3; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
    .modular-gallery { grid-template-columns: 1fr; max-width: none; }
    .modular-gallery .gallery-item { aspect-ratio: 4 / 3; }
    .deliverables-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; margin-bottom: 32px; }
    .deliverables-gallery .gallery-item { aspect-ratio: 4 / 3; }
    .engagement-feature { grid-template-columns: 1fr; padding: 28px; gap: 28px; }
    .engagement-cards { grid-template-columns: 1fr; gap: 22px; }
    .engagement-card { padding: 24px; }
    .engagement-card-heading { align-items: flex-start; }
    .engagement-legal-grid { grid-template-columns: 1fr; }
    .drone-section { padding: 64px 5%; }
    .drone-inner { grid-template-columns: 1fr; }
  }


  .drone-section .offer-list li { color: rgba(255,255,255,0.9) !important; }
  .drone-section .offer-list li::before { color: var(--gold) !important; }

  @media (max-width: 768px) {
    .engagement-grid { grid-template-columns: 1fr !important; }
    .modular-gallery { grid-template-columns: 1fr; }
    .deliverables-gallery { grid-template-columns: 1fr; }
  }

  @media (max-width: 480px) {
    nav,
    .hero-content,
    section,
    .tarifs-section,
    .engagement-section,
    .drone-section {
      padding-left: 16px;
      padding-right: 16px;
    }
    .nav-logo { gap: 8px; }
    .nav-logo > img { height: 48px !important; }
    .nav-logo-text span:first-child { font-size: 13px; }
    .nav-logo-text span:last-child { font-size: 9px; letter-spacing: 2px; }
    .special-offer {
      margin-left: 16px;
      margin-right: 16px;
      padding: 28px 18px;
    }
    .service-card,
    .partner-card,
    .engagement-card,
    .contact-card { padding: 22px; }
    .engagement-feature { padding: 24px 20px; }
    .drone-img img { height: auto; min-height: 260px; }
    .drone-badge {
      left: 12px;
      right: 12px;
      max-width: calc(100% - 24px);
      white-space: normal;
      text-align: center;
    }
  }

/* Styles extraits des attributs inline */
.u-style-001 { height:56px; width:auto; object-fit:contain; background:white; border-radius:6px; padding:2px; }
.u-style-002 { width:150px; height:150px; object-fit:contain; background:white; border-radius:50%; padding:8px; }
.u-style-003 { color:var(--gold); text-decoration:none; }
.u-style-004 { font-family:'Playfair Display',serif; font-size:2rem; color:var(--navy); margin-bottom:12px; }
.u-style-005 { font-style:normal; color:var(--gold); }
.u-style-006 { color:var(--text-muted); font-size:14px; line-height:1.7; margin-bottom:16px; }
.u-style-007 { font-size:12.5px; color:var(--text-dark); padding:4px 0; border-bottom:1px solid #E5E7EB; }
.u-style-008 { color:var(--gold); }
.u-style-009 { font-size:12.5px; color:var(--text-dark); padding:4px 0; }
.u-style-010 { margin-top:18px; font-size:12px; color:var(--text-muted); font-style:italic; }
.u-style-011 { padding:0; overflow:hidden; border-radius:12px; }
.u-style-012 { width:100%; height:100%; object-fit:cover; border-radius:12px; }
.u-style-013 { color:var(--gold-light) }
.u-style-014 { margin-bottom:48px; }
.u-style-015 { display:block; margin-bottom:8px; }
.u-style-016 { font-family:'Playfair Display',serif; font-size:1.5rem; color:var(--navy); margin-bottom:32px; }
.u-style-017 { width:100%; height:260px; object-fit:cover; }
.u-style-018 { margin-top:64px; margin-bottom:32px; }
.u-style-019 { font-family:'Playfair Display',serif; font-size:1.5rem; color:var(--navy); margin-bottom:12px; }
.u-style-020 { font-size:14px; color:var(--text-muted); margin-bottom:24px; max-width:600px; }
.u-style-021 { font-size:14px; color:var(--text-muted); margin-bottom:24px; }
.u-style-022 { color:var(--gold-light); }
.u-style-023 { margin-top:0; }
.u-style-024 { color:#fff; }
.u-style-025 { background:var(--white); border-radius:12px; border:2px solid var(--gold); padding:28px; position:relative; overflow:hidden; }
.u-style-026 { position:absolute; top:0; left:0; right:0; height:4px; background:var(--gold); }
.u-style-027 { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:8px; }
.u-style-028 { font-family:'Playfair Display',serif; font-size:1.1rem; color:var(--navy); margin-bottom:6px; }
.u-style-029 { font-size:2rem; font-family:'Playfair Display',serif; color:var(--navy); font-weight:700; }
.u-style-030 { font-size:1rem; font-weight:400; color:var(--text-muted); }
.u-style-031 { font-size:12px; color:var(--text-muted); margin-bottom:16px; }
.u-style-032 { list-style:none; display:flex; flex-direction:column; gap:7px; }
.u-style-033 { font-size:12px; color:var(--text-dark); display:flex; gap:8px; }
.u-style-034 { background:var(--white); border-radius:12px; border:1px solid #E5E7EB; padding:28px; position:relative; overflow:hidden; }
.u-style-035 { position:absolute; top:0; left:0; right:0; height:4px; background:var(--navy); }
.u-style-036 { font-size:0.8rem; font-weight:400; color:var(--text-muted); }
.u-style-037 { background:var(--navy); border-radius:12px; padding:28px; }
.u-style-038 { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--gold-light); margin-bottom:12px; }
.u-style-039 { font-family:'Playfair Display',serif; color:var(--white); font-size:1.1rem; margin-bottom:16px; }
.u-style-040 { display:flex; flex-direction:column; gap:14px; }
.u-style-041 { border-bottom:1px solid rgba(255,255,255,0.1); padding-bottom:14px; }
.u-style-042 { color:var(--gold); font-size:12px; font-weight:600; margin-bottom:4px; }
.u-style-043 { color:rgba(255,255,255,0.7); font-size:12px; line-height:1.6; }
.u-style-044 { color:var(--white); }
.u-style-045 { background:var(--white); border-radius:12px; border:1px solid #E5E7EB; padding:28px; }
.u-style-046 { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:12px; }
.u-style-047 { font-family:'Playfair Display',serif; color:var(--navy); font-size:1.1rem; margin-bottom:8px; }
.u-style-048 { font-size:12px; color:var(--text-muted); margin-bottom:20px; line-height:1.6; }
.u-style-049 { display:flex; flex-direction:column; gap:12px; }
.u-style-050 { display:flex; align-items:center; gap:12px; padding:12px; background:var(--off-white); border-radius:8px; }
.u-style-051 { width:10px; height:10px; border-radius:50%; background:var(--gold); flex-shrink:0; }
.u-style-052 { font-size:13px; font-weight:600; color:var(--navy); }
.u-style-053 { font-size:11px; color:var(--text-muted); }
.u-style-054 { font-size:11px; color:var(--text-muted); margin-top:8px; font-style:italic; }
.u-style-055 { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--gold-light); margin-bottom:12px; }
.u-style-056 { font-family:'Playfair Display',serif; font-size:1.6rem; color:var(--white); margin-bottom:20px; }
.u-style-057 { color:rgba(255,255,255,0.75); font-size:15px; line-height:1.8; margin-bottom:16px; }
.u-style-058 { color:rgba(255,255,255,0.75); font-size:15px; line-height:1.8; }
.u-style-059 { display:flex; flex-direction:column; gap:16px; }
.u-style-060 { background:rgba(255,255,255,0.07); border:1px solid rgba(192,155,58,0.3); border-radius:10px; padding:20px; }
.u-style-061 { color:var(--gold); font-size:12px; letter-spacing:2px; text-transform:uppercase; margin-bottom:6px; }
.u-style-062 { color:rgba(255,255,255,0.8); font-size:13px; line-height:1.6; }
.u-style-063 { font-size:13px; color:var(--text-muted); line-height:1.7; margin-bottom:16px; }
.u-style-064 { color:var(--navy); }
.u-style-065 { list-style:none; display:flex; flex-direction:column; gap:8px; }
.u-style-066 { font-size:13px; color:var(--text-dark); display:flex; gap:8px; align-items:flex-start; }
.u-style-067 { color:var(--gold); flex-shrink:0; }
.u-style-068 { margin-top:20px; padding:14px; background:var(--gold-pale); border-radius:8px; }
.u-style-069 { font-size:12px; color:var(--navy); font-weight:500; margin-bottom:4px; }
.u-style-070 { font-size:12px; color:var(--text-muted); }
.u-style-071 { display:flex; flex-direction:column; gap:10px; }
.u-style-072 { display:flex; gap:10px; align-items:flex-start; }
.u-style-073 { background:var(--navy); color:var(--gold); font-size:10px; font-weight:700; padding:2px 8px; border-radius:100px; flex-shrink:0; margin-top:1px; }
.u-style-074 { font-size:13px; color:var(--text-dark); }
.u-style-075 { background:var(--off-white); border-radius:12px; padding:28px; border-left:4px solid var(--gold); }
.u-style-076 { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--gold); margin-bottom:10px; }
.u-style-077 { font-size:12px; font-weight:600; color:var(--navy); margin-bottom:4px; }
.u-style-078 { font-size:12px; color:var(--text-muted); line-height:1.6; }
.u-style-079 { display:block; font-size:12px; margin-top:2px; color:var(--text-muted); }
.u-style-080 { border-color:rgba(255,255,255,0.3); color:white; padding:12px 24px; border-radius:6px; font-size:14px; text-decoration:none; text-align:center; }
.u-style-081 { text-decoration:none; }
.u-style-082 { width:40px; height:40px; object-fit:contain; background:white; border-radius:6px; padding:2px; }

.special-offer .offer-visual {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.special-offer .offer-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover !important;
  object-position: center;
  transform: none !important;
}

.modular-gallery .gallery-item,
.deliverables-gallery .gallery-item {
  background: var(--navy);
}

.modular-gallery .gallery-item {
  aspect-ratio: 4 / 3;
}

.modular-gallery .gallery-item img,
.deliverables-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center;
  transform: none !important;
}

.modular-gallery .gallery-overlay,
.deliverables-gallery .gallery-overlay {
  inset: auto 14px 14px 14px;
  z-index: 2;
  width: auto;
  padding: 0;
  background: none;
  opacity: 1;
  display: block;
  pointer-events: none;
}

.modular-gallery .gallery-overlay span,
.deliverables-gallery .gallery-overlay span {
  display: inline-flex;
  max-width: 100%;
  padding: 8px 14px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  box-shadow: 0 8px 20px rgba(13,33,80,0.18);
}

@media (max-width: 768px) {
  .special-offer .offer-visual {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .ba-card-single > .u-style-017 {
    height: auto !important;
    aspect-ratio: 8 / 3 !important;
    object-fit: contain !important;
  }

  .gallery-item:hover img {
    transform: none !important;
  }

  .modular-gallery .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .deliverables-gallery .gallery-item {
    aspect-ratio: 1 / 1;
  }

  .modular-gallery .gallery-item img,
  .deliverables-gallery .gallery-item img {
    object-fit: cover !important;
  }

  .drone-img img {
    width: 100% !important;
    height: auto !important;
    min-height: 260px !important;
    object-fit: cover !important;
  }
}
