/* ==========================================================================
   ROUEN GARAGE — Feuille de style principale
   Structure inspirée du thème Autrics, palette du nouveau logo Rouen Garage (bleu #0069B1, charbon #1B2129, gris acier)
   ========================================================================== */

:root {
  --primary: #7DBFE1;          /* bleu ciel : couleur secondaire du site */
  --primary-dark: #5FAAD3;
  --primary-light: #A9D6EE;
  --sky: #7DBFE1;
  --sky-dark: #5FAAD3;
  --navy: #1B2129;
  --navy-deep: #10151B;
  --navy-logo: #0069B1;        /* bleu du logo, non utilisé dans l'interface */
  --on-primary: #1B2129;       /* texte posé sur le bleu ciel */
  --primary-text: #3F96CC;     /* bleu ciel soutenu pour les petits textes sur blanc */
  --steel: #5C6F80;
  --steel-light: #8A9BAB;
  --accent-on-dark: #7DBFE1;
  --dark: #3E4C59;
  --dark-2: #2F3A45;
  --grey: #f5f6f8;
  --grey-2: #e9ebef;
  --text: #666a70;
  --heading: #1f2125;
  --white: #fff;
  --font-heading: 'Rajdhani', 'Arial Narrow', sans-serif;
  --font-body: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --container: 1140px;
  --radius: 4px;
  --shadow: 0 10px 30px rgba(27, 33, 41, .10);
  --shadow-lg: 0 20px 50px rgba(27, 33, 41, .18);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
a:hover { color: var(--primary); }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 500;
}
h1 { font-size: 56px; } h2 { font-size: 36px; } h3 { font-size: 24px; } h4 { font-size: 20px; } h5 { font-size: 18px; }
h1 b, h2 b, h3 b, h4 b { font-weight: 700; }
p { margin: 0 0 1em; }
strong { color: var(--heading); }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 15px; }
::selection { background: var(--primary); color: #fff; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 15px; position: relative; }
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.col { padding: 0 15px; flex: 1 1 0; min-width: 0; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --------------------------------------------------------------------------
   Boutons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 0 30px; height: 50px;
  font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase;
  background: var(--primary); color: #fff; border: 2px solid var(--primary);
  position: relative; overflow: hidden; z-index: 1;
  transition: all .35s var(--ease);
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--navy); transform: translateX(-101%); transition: transform .4s var(--ease);
}
.btn:hover { color: #fff; border-color: var(--navy); }
.btn:hover::before { transform: translateX(0); }
.btn-outline { background: transparent; color: #fff; }
.btn-outline:hover { border-color: var(--primary); }
.btn-outline::before { background: var(--primary); }
.btn-outline-dark { background: transparent; color: var(--primary); }
.btn-outline-dark::before { background: var(--primary); }
.btn-navy { background: var(--navy); border-color: var(--navy); }
.btn-navy::before { background: var(--primary); }
.btn-navy:hover { border-color: var(--primary); }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white::before { background: var(--navy); }
.btn-white:hover { color: #fff; border-color: var(--navy); }
.btn-sm { height: 42px; padding: 0 22px; font-size: 12px; }
.btn-block { width: 100%; }
.link-more { font-size: 14px; color: var(--text); display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.link-more svg { width: 14px; height: 14px; transition: transform .3s; }
.link-more:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Titres de section
   -------------------------------------------------------------------------- */
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.section-title { margin-bottom: 50px; }
.section-title h2 { font-size: 36px; font-weight: 400; margin: 0; position: relative; padding-bottom: 18px; }
.section-title h2 b { font-weight: 700; }
.section-title h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 2px; background: var(--primary); }
.section-title.center { text-align: center; }
.section-title.center h2::after { left: 50%; transform: translateX(-50%); }
.section-title.light h2 { color: #fff; }
.section-title .subtitle { display: block; font-family: var(--font-heading); color: var(--primary); font-size: 16px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; font-weight: 600; }
.section-title p { margin-top: 18px; max-width: 620px; }
.section-title.center p { margin-left: auto; margin-right: auto; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; gap: 20px; flex-wrap: wrap; }
.section-head .section-title { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   Préchargeur
   -------------------------------------------------------------------------- */
#preloader { position: fixed; inset: 0; z-index: 9999; background: var(--navy); display: flex; align-items: center; justify-content: center; transition: opacity .5s, visibility .5s; }
#preloader.hide { opacity: 0; visibility: hidden; }
#preloader .gear { width: 70px; height: 70px; animation: spin 1.6s linear infinite; }
#preloader .gear path { fill: var(--sky); }
@keyframes spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   En-tête
   -------------------------------------------------------------------------- */
.site-header { position: relative; z-index: 100; }
/* Pas de fond sur l'en-tête : la barre rouge chevauche le hero de 15 px et la photo doit remonter jusqu'au liseré rouge (comme la référence) */
.header-top, .header-main { background: #fff; }
/* Barre supérieure : liseré bleu 4 px sur toute la largeur, bloc bleu biseauté sur 62,5 % à droite (comme la référence) */
.header-top { position: relative; height: 38px; color: #fff; font-size: 14px; }
.header-top::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--navy); }
.header-top::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: calc(68% + 65px); background: var(--navy); clip-path: polygon(0 0, 100% 0, 100% 100%, 65px 100%); }
.header-top .container { display: flex; justify-content: flex-end; align-items: center; height: 100%; padding-top: 4px; z-index: 1; }
.header-top__right { display: flex; align-items: center; gap: 30px; }
.open-time { display: inline-flex; align-items: center; gap: 10px; }
.open-time svg { width: 16px; height: 16px; stroke: #fff; }
.socials { display: flex; }
.socials a { display: inline-flex; }
.header-top .socials a { padding: 0 8px; }
.header-top .socials a:last-child { padding-right: 0; }
.socials svg { width: 14px; height: 14px; fill: currentColor; stroke: none; transition: transform .3s, color .3s; }
.socials a:hover svg { transform: translateY(-2px); }

/* Zone logo : 80 px de haut */
.header-main { padding: 6px 0; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; min-height: 68px; }
.logo img { height: 64px; width: auto; }
.header-info { display: flex; align-items: center; margin: 0; padding: 0; list-style: none; }
.info-item { display: flex; align-items: center; gap: 10px; margin-right: 50px; }
.info-item svg { width: 24px; height: 24px; stroke: var(--primary); flex: none; }
.info-item span { display: block; font-size: 14px; font-weight: 500; color: var(--heading); line-height: 18px; }
.info-item a { font-size: 14px; color: var(--text); font-weight: 400; line-height: 20px; }
.info-item a:hover { color: var(--primary); }
.header-info .btn { height: 40px; padding: 0 32px; font-size: 15px; font-family: var(--font-heading); letter-spacing: 0; }

/* Barre de navigation : 58 px, bloc rouge biseauté sur 62,5 % à droite, liseré rouge 4 px à gauche, chevauche la section suivante de 15 px */
.header-nav { position: relative; height: 58px; margin-bottom: -15px; z-index: 5; }
.header-nav::before { content: ""; position: absolute; left: 0; right: 0; bottom: 15px; height: 4px; background: var(--primary); }
.header-nav::after { content: ""; position: absolute; top: 0; right: 0; bottom: 0; width: calc(68% + 56px); background: var(--primary); clip-path: polygon(56px 0, 100% 0, 100% 100%, 0 100%); }
@media (min-width: 1600px) { .header-top::after { width: calc(62.5% + 65px); } .header-nav::after { width: calc(62.5% + 56px); } }
.header-nav .container { display: flex; justify-content: flex-end; align-items: center; height: 100%; z-index: 1; }
.main-nav > ul { display: flex; }
.main-nav > ul > li { position: relative; margin-right: 30px; }
.main-nav > ul > li > a {
  display: flex; align-items: center; height: 58px; padding: 17px 5px; position: relative;
  color: #fff; font-family: var(--font-heading); font-size: 15px; font-weight: 700; text-transform: uppercase; line-height: 24px;
}
.main-nav > ul > li > a svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 2.5; margin-left: 4px; margin-right: -8px; transition: transform .3s; }
.main-nav > ul > li:hover > a svg, .main-nav > ul > li.open > a svg { transform: rotate(180deg); }
.main-nav > ul > li > a::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 100%; height: 4px; background: #fff; opacity: 0; visibility: hidden; transform: scale(0); transition: all .5s ease; }
.main-nav > ul > li:hover > a::after, .main-nav > ul > li.open > a::after { opacity: 1; visibility: visible; transform: scale(1); }
.main-nav ul ul {
  position: absolute; top: 57px; left: 0; min-width: 220px; background: #fff; padding: 0;
  box-shadow: 0 3px 5px rgba(0,0,0,.2);
  opacity: 0; visibility: hidden; transition: all .28s ease-in-out; z-index: 1000;
}
.main-nav > ul > li:hover > ul, .main-nav > ul > li.open > ul { opacity: 1; visibility: visible; }
.main-nav ul ul li a { display: block; padding: 13px 23px; color: #101010; font-family: var(--font-heading); font-size: 15px; font-weight: 600; text-transform: uppercase; line-height: 24px; white-space: nowrap; transition: all .3s; }
.main-nav ul ul li a:hover, .main-nav ul ul li.current a { color: #fff; background: var(--primary); }
.nav-tools { display: flex; align-items: center; }
.nav-tools button, .nav-tools a { background: none; border: 0; color: #fff; display: inline-flex; align-items: center; position: relative; padding: 0; cursor: pointer; }
.nav-tools svg { width: 16px; height: 16px; stroke: #fff; }
.nav-tools .search-toggle { padding: 0 15px; }
.nav-tools .cart-link { padding-left: 15px; }
.nav-tools .cart-link svg { width: 20px; height: 20px; }
.cart-count { position: relative; top: -10px; margin-left: -4px; min-width: 10px; height: 10px; padding: 0 2px; border-radius: 5px; background: #fff; color: var(--primary); font-size: 8px; font-weight: 700; line-height: 10px; text-align: center; }
.menu-toggle { display: none !important; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: #fff; transition: .3s; }

/* Barre fixe (après 250 px de défilement, comme la référence) */
.header-nav.sticky { position: fixed; top: 0; left: 0; right: 0; margin: 0; background: var(--primary); box-shadow: 0 8px 17px rgba(0,0,0,.08); animation: fadeInDown 1s both .1s; z-index: 200; }
.header-nav.sticky::before { display: none; }
.header-nav.sticky::after { width: 100%; clip-path: none; }
.header-nav.sticky .container { justify-content: space-between; }
.header-nav.sticky .sticky-logo { display: block; }
.sticky-logo { display: none; margin-right: auto; padding: 10px 0; }
.sticky-logo img { height: 36px; width: auto; }
.sticky-logo .sl-dark { display: none; }
@keyframes fadeInDown { from { opacity: 0; transform: translate3d(0, -100%, 0); } to { opacity: 1; transform: none; } }
body.has-sticky .header-placeholder { height: 43px; }

/* Recherche plein écran */
.search-overlay { position: fixed; inset: 0; background: rgba(27,33,41,.96); z-index: 500; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: .4s; }
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay form { width: min(700px, 90%); position: relative; }
.search-overlay input { width: 100%; background: transparent; border: 0; border-bottom: 2px solid rgba(255,255,255,.4); color: #fff; font-size: 34px; font-family: var(--font-heading); padding: 14px 60px 14px 0; outline: 0; }
.search-overlay input::placeholder { color: rgba(255,255,255,.5); }
.search-overlay button[type=submit] { position: absolute; right: 0; top: 50%; transform: translateY(-50%); background: none; border: 0; }
.search-overlay button svg { width: 28px; height: 28px; stroke: #fff; }
.search-close { position: absolute; top: 30px; right: 40px; background: none; border: 0; color: #fff; font-size: 40px; line-height: 1; }
.search-results { position: absolute; top: 100%; left: 0; right: 0; margin-top: 14px; }
.search-results a { display: block; color: #fff; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 16px; }
.search-results a small { display: block; color: rgba(255,255,255,.55); font-size: 12px; }
.search-results a:hover { color: var(--primary-light); }

/* Menu mobile */
.offcanvas { position: fixed; top: 0; bottom: 0; left: 0; width: 320px; max-width: 85vw; background: var(--navy); z-index: 600; transform: translateX(-100%); transition: transform .4s var(--ease); overflow-y: auto; padding: 30px 25px; }
.offcanvas.open { transform: translateX(0); }
.offcanvas-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 590; opacity: 0; visibility: hidden; transition: .3s; }
.offcanvas-backdrop.show { opacity: 1; visibility: visible; }
.offcanvas .logo img { height: 40px; margin-bottom: 30px; }
.offcanvas-close { position: absolute; top: 18px; right: 18px; background: none; border: 0; color: #fff; font-size: 30px; }
.mobile-nav li { border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav a { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; color: #fff; font-family: var(--font-heading); font-size: 17px; font-weight: 600; text-transform: uppercase; }
.mobile-nav a svg { width: 12px; height: 12px; stroke: #fff; stroke-width: 3; transition: .3s; }
.mobile-nav li.open > a svg { transform: rotate(180deg); }
.mobile-nav ul ul { display: none; padding: 0 0 10px 14px; }
.mobile-nav li.open > ul { display: block; }
.mobile-nav ul ul a { text-transform: none; font-family: var(--font-body); font-size: 14px; font-weight: 400; padding: 7px 0; color: rgba(255,255,255,.8); }
.offcanvas .contact-mini { margin-top: 30px; color: rgba(255,255,255,.8); font-size: 14px; }
.offcanvas .contact-mini p { display: flex; gap: 10px; align-items: center; margin: 0 0 8px; }
.offcanvas .contact-mini svg { width: 16px; height: 16px; stroke: var(--sky); }

/* --------------------------------------------------------------------------
   Hero slider
   -------------------------------------------------------------------------- */
.hero { position: relative; height: 700px; overflow: hidden; background: var(--navy); }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center right; opacity: 0; visibility: hidden; transition: opacity 1.2s var(--ease), visibility 1.2s; }
.hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,21,27,.78) 0%, rgba(16,21,27,.45) 45%, rgba(16,21,27,.05) 75%); }
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide .container { height: 100%; display: flex; align-items: center; }
.hero-content { max-width: 640px; color: #fff; }
.hero-content .kicker { font-family: var(--font-heading); font-size: 20px; font-weight: 500; letter-spacing: .5px; margin-bottom: 8px; display: block; }
.hero-content .hero-h { color: #fff; font-size: 62px; font-weight: 700; text-transform: uppercase; line-height: 1.05; margin-bottom: 22px; }
.hero-content .hero-h span { color: var(--accent-on-dark); }
.hero-content p { font-size: 17px; line-height: 1.7; margin-bottom: 30px; max-width: 560px; }
.hero-content > * { opacity: 0; transform: translateX(-60px); }
.hero-slide.active .hero-content > * { animation: heroIn .9s var(--ease) forwards; }
.hero-slide.active .hero-content > *:nth-child(1) { animation-delay: .25s; }
.hero-slide.active .hero-content > *:nth-child(2) { animation-delay: .45s; }
.hero-slide.active .hero-content > *:nth-child(3) { animation-delay: .65s; }
.hero-slide.active .hero-content > *:nth-child(4) { animation-delay: .85s; }
@keyframes heroIn { to { opacity: 1; transform: translateX(0); } }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; width: 60px; height: 60px; background: var(--dark); border: 0; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.hero-arrow svg { width: 18px; height: 18px; stroke: #fff; stroke-width: 3; }
.hero-arrow:hover { background: var(--primary); }
.hero-arrow.prev { left: 30px; } .hero-arrow.next { right: 30px; }
.hero-dots { position: absolute; bottom: 150px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.hero-dots button { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; padding: 0; }
.hero-dots button.active { background: var(--sky); border-color: var(--sky); }

/* Boîtes sous le hero */
.hero-boxes { position: relative; z-index: 3; margin-top: -110px; }
.hero-boxes .row { align-items: flex-end; }
.hero-boxes .col { flex: 0 0 33.3333%; max-width: 33.3333%; }
.hbox { color: #fff; padding: 40px 30px; min-height: 380px; }
.hbox h3 { color: #fff; font-size: 24px; font-weight: 400; text-align: center; margin-bottom: 30px; }
.hbox h3 b { font-weight: 700; }
.hbox-navy { background: var(--navy); }
.hbox-primary { background: var(--primary); min-height: 430px; position: relative; overflow: hidden; }
.hbox-primary::after { content: "%"; position: absolute; left: 10px; bottom: -40px; font-family: var(--font-heading); font-size: 200px; font-weight: 700; color: rgba(255,255,255,.08); line-height: 1; pointer-events: none; }
.contact-list li { display: flex; gap: 12px; margin-bottom: 16px; font-size: 14px; line-height: 1.6; }
.contact-list li span:first-child { flex: 0 0 118px; color: rgba(255,255,255,.75); }
.contact-list li span:first-child::after { content: " :"; }
.contact-list a { color: #fff; }
.contact-list a:hover { color: var(--primary-light); }
.hbox-navy .contact-list a:hover { color: var(--sky); }
.form-inline .field { margin-bottom: 14px; }
.form-inline input, .form-inline select { width: 100%; height: 50px; border: 0; background: rgba(0,0,0,.18); color: #fff; padding: 0 18px; outline: 0; }
.form-inline input::placeholder { color: rgba(255,255,255,.85); }
.form-inline select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-inline select option { color: #333; }
.form-inline .field-2 { display: flex; gap: 14px; }
.hbox .btn-outline { width: 100%; margin-top: 10px; }
.tips-slider { position: relative; min-height: 150px; }
.tip { position: absolute; inset: 0; opacity: 0; transition: opacity .6s; font-size: 14px; line-height: 1.8; }
.tip.active { opacity: 1; position: relative; }
.tip strong { color: #fff; display: block; margin-bottom: 4px; font-family: var(--font-heading); font-size: 17px; }
.slider-nav { display: flex; gap: 8px; justify-content: flex-end; margin-top: 20px; }
.slider-nav button { width: 40px; height: 40px; background: var(--primary); border: 0; display: flex; align-items: center; justify-content: center; transition: background .3s; }
.slider-nav button svg { width: 14px; height: 14px; stroke: #fff; stroke-width: 3; }
.slider-nav button:hover { background: var(--dark); }
.slider-nav.dark button { background: var(--navy); }
.slider-nav.dark button:hover { background: var(--primary); }

/* --------------------------------------------------------------------------
   Pourquoi nous choisir
   -------------------------------------------------------------------------- */
.why { padding: 100px 0 60px; overflow: hidden; }
.why .row { align-items: center; }
.why .col-text { flex: 0 0 58%; max-width: 58%; }
.why .col-img { flex: 0 0 42%; max-width: 42%; position: relative; }
.why .col-img img { transform: scale(1.35) translateX(12%); transform-origin: center; }
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 30px; }
.feature { display: flex; gap: 18px; }
.feature .icon { flex: 0 0 52px; height: 52px; }
.feature .icon svg { width: 50px; height: 50px; stroke: var(--navy); stroke-width: 1.2; fill: none; transition: .4s var(--ease); }
.feature:hover .icon svg { stroke: var(--primary); transform: rotateY(360deg); }
.feature h4 { font-size: 20px; font-weight: 400; margin-bottom: 6px; }
.feature h4 b { font-weight: 700; }
.feature p { font-size: 14px; margin: 0; }

/* --------------------------------------------------------------------------
   Bandeau promo + À propos
   -------------------------------------------------------------------------- */
.promo { display: flex; min-height: 560px; overflow: hidden; }
.promo-left { flex: 0 0 42%; position: relative; background-size: cover; background-position: center; color: #fff; display: flex; align-items: center; padding: 60px 8% 60px 5%; }
.promo-left::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,21,27,.85), rgba(16,21,27,.6)); }
.promo-left::after { content: ""; position: absolute; top: 0; bottom: 0; right: -60px; width: 120px; background: var(--primary); transform: skewX(-8deg); }
.promo-left > div { position: relative; z-index: 1; max-width: 420px; }
.promo-left .kicker { font-family: var(--font-heading); font-size: 15px; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 8px; }
.promo-left h2 { color: #fff; font-size: 38px; font-weight: 400; padding-bottom: 16px; position: relative; margin-bottom: 22px; }
.promo-left h2 b { font-weight: 700; }
.promo-left h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 2px; background: #fff; }
.promo-right { flex: 1; background: var(--primary); color: #fff; position: relative; display: flex; align-items: center; padding: 60px 0; overflow: hidden; }
.promo-right::before { content: ""; position: absolute; inset: 0; opacity: .08; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M20 70h80l-10-20H35z'/%3E%3Ccircle cx='38' cy='75' r='7'/%3E%3Ccircle cx='82' cy='75' r='7'/%3E%3C/g%3E%3C/svg%3E"); }
.promo-right .inner { position: relative; z-index: 1; display: flex; align-items: center; width: 100%; max-width: 1000px; padding: 0 40px 0 80px; }
.promo-right .text { flex: 0 0 55%; }
.promo-right h2 { color: #fff; font-size: 36px; font-weight: 400; margin-bottom: 26px; }
.promo-right h2 b { font-weight: 700; }
.promo-right p { font-size: 15px; }
.check-list li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: 15px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px; border: 2px solid currentColor; border-radius: 50%; }
.check-list.dark li::before { border-color: var(--primary); }
.promo-right .mech { flex: 1; align-self: flex-end; margin-bottom: -60px; position: relative; }
.promo-right .mech img { width: 100%; max-width: 330px; margin-left: auto; filter: drop-shadow(-10px 10px 20px rgba(0,0,0,.25)); }

/* --------------------------------------------------------------------------
   Services
   -------------------------------------------------------------------------- */
.services-home { position: relative; padding: 90px 0 100px; }
.services-home::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 430px; background: var(--navy) url(../img/page-title-bg.jpg) center/cover no-repeat; background-attachment: fixed; }
.services-home::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 430px; background: rgba(16,21,27,.82); }
.services-home .container { z-index: 2; }
.carousel { overflow: hidden; }
.carousel-track { display: flex; transition: transform .6s var(--ease); margin: 0 -15px; }
.carousel-item { flex: 0 0 33.3333%; padding: 0 15px; }
.service-card { background: var(--grey); height: 100%; transition: transform .4s var(--ease), box-shadow .4s; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .thumb { position: relative; overflow: hidden; }
.service-card .thumb img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform .7s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .icon { position: absolute; right: 30px; bottom: -26px; width: 54px; height: 54px; background: var(--primary); display: flex; align-items: center; justify-content: center; transition: .4s; }
.service-card .icon svg { width: 28px; height: 28px; stroke: #fff; stroke-width: 1.5; fill: none; }
.service-card:hover .icon { background: var(--navy); transform: rotate(-8deg); }
.service-card .body { padding: 36px 30px 30px; }
.service-card h3 { font-size: 22px; font-weight: 500; margin-bottom: 10px; }
.service-card h3 a:hover { color: var(--primary); }
.service-card p { font-size: 14px; margin-bottom: 14px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.services-grid .service-card { background: #fff; box-shadow: var(--shadow); }

/* --------------------------------------------------------------------------
   Processus
   -------------------------------------------------------------------------- */
.process { display: flex; }
.step { flex: 1; color: #fff; padding: 46px 40px 40px 90px; position: relative; min-height: 270px; }
.step:nth-child(1) { background: var(--dark); clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 50%, calc(100% - 60px) 100%, 0 100%, 60px 50%); }
.step:nth-child(2) { background: var(--primary-dark); margin-left: -50px; clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 50%, calc(100% - 60px) 100%, 0 100%, 60px 50%); }
.step:nth-child(3) { background: var(--primary); margin-left: -50px; clip-path: polygon(0 0, calc(100% - 60px) 0, 100% 50%, calc(100% - 60px) 100%, 0 100%, 60px 50%); }
.step .num { position: absolute; right: 90px; top: 30px; font-family: var(--font-heading); font-size: 76px; font-weight: 700; color: rgba(255,255,255,.12); line-height: 1; }
.step .icon svg { width: 66px; height: 66px; stroke: #fff; stroke-width: 1.2; fill: none; margin-bottom: 14px; }
.step h3 { color: #fff; font-size: 22px; font-weight: 400; margin-bottom: 8px; }
.step h3 b { font-weight: 700; }
.step p { font-size: 14px; margin: 0; max-width: 260px; }

/* --------------------------------------------------------------------------
   Réservation (grille)
   -------------------------------------------------------------------------- */
.booking-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; padding: 0 24px; flex-wrap: wrap; gap: 14px; }
.booking-head h3 { font-family: var(--font-body); font-size: 22px; font-weight: 500; margin: 0; }
.booking-filter { display: flex; gap: 10px; }
.booking-filter select, .booking-filter input { height: 42px; border: 1px solid var(--grey-2); padding: 0 14px; background: #fff; color: var(--text); }
.booking-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 0 24px; }
.book-card { border: 1px solid var(--grey-2); background: #fff; padding: 20px; transition: .4s; }
.book-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.book-card img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.book-card h4 { font-family: var(--font-body); font-size: 19px; font-weight: 700; margin: 18px 0 6px; }
.book-card p { font-size: 13px; color: var(--text); margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.book-card .foot { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.book-card .price { font-family: var(--font-body); font-size: 19px; font-weight: 700; color: var(--heading); line-height: 1.1; }
.book-card .price small { display: block; font-size: 11px; font-weight: 400; color: var(--text); }
.pagination { display: flex; justify-content: flex-end; align-items: center; gap: 8px; margin-top: 40px; padding: 0 24px; }
.pagination a, .pagination span { min-width: 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--grey-2); font-size: 14px; padding: 0 8px; }
.pagination .active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* --------------------------------------------------------------------------
   Newsletter + CTA
   -------------------------------------------------------------------------- */
.newsletter-cta { display: flex; min-height: 400px; overflow: hidden; }
.newsletter { flex: 0 0 52%; background: var(--primary); color: #fff; display: flex; align-items: center; padding: 60px 8% 60px 5%; position: relative; }
.newsletter::after { content: ""; position: absolute; top: 0; bottom: 0; right: -50px; width: 100px; background: var(--primary); transform: skewX(-6deg); z-index: 1; }
.newsletter h2 { color: #fff; font-size: 34px; font-weight: 400; padding-bottom: 16px; position: relative; margin-bottom: 40px; }
.newsletter h2 b { font-weight: 700; }
.newsletter h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 2px; background: #fff; }
.newsletter form { display: flex; max-width: 460px; border: 1px solid rgba(255,255,255,.7); }
.newsletter input { flex: 1; background: transparent; border: 0; color: #fff; padding: 0 20px; height: 50px; outline: 0; min-width: 0; }
.newsletter input::placeholder { color: rgba(255,255,255,.85); }
.newsletter button { background: transparent; border: 0; padding: 0 18px; }
.newsletter button svg { width: 20px; height: 20px; stroke: #fff; }
.cta-dark { flex: 1; background: var(--navy) url(../img/cta-bg.jpg) center/cover; color: #fff; display: flex; align-items: center; padding: 60px 5% 60px 8%; position: relative; }
.cta-dark::before { content: ""; position: absolute; inset: 0; background: rgba(16,21,27,.7); }
.cta-dark > div { position: relative; }
.cta-dark .kicker { font-family: var(--font-heading); font-size: 18px; display: block; margin-bottom: 8px; }
.cta-dark h2 { color: #fff; font-size: 32px; font-weight: 400; padding-bottom: 16px; position: relative; margin-bottom: 36px; }
.cta-dark h2 b { font-weight: 700; }
.cta-dark h2::after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 2px; background: #fff; }

/* --------------------------------------------------------------------------
   Blog / actualités
   -------------------------------------------------------------------------- */
.post-card { background: var(--grey); height: 100%; transition: .4s var(--ease); }
.post-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.post-card .thumb { position: relative; overflow: hidden; }
.post-card .thumb img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.08); }
.post-card .date { position: absolute; right: 30px; bottom: 0; background: var(--primary); color: #fff; text-align: center; padding: 8px 10px 4px; font-family: var(--font-heading); line-height: 1; min-width: 50px; }
.post-card .date b { display: block; font-size: 22px; font-weight: 700; }
.post-card .date span { font-size: 11px; text-transform: uppercase; }
.post-card .body { padding: 28px 30px 26px; }
.post-card .meta { font-size: 13px; color: var(--text); display: flex; gap: 6px; align-items: center; margin-bottom: 10px; }
.post-card .meta svg { width: 14px; height: 14px; stroke: var(--text); }
.post-card h3 { font-size: 22px; font-weight: 500; margin-bottom: 8px; }
.post-card p { font-size: 14px; margin-bottom: 16px; }
.post-card .link-more { float: right; }
.post-card .body::after { content: ""; display: block; clear: both; }

/* --------------------------------------------------------------------------
   Marques / partenaires
   -------------------------------------------------------------------------- */
.brands { background: var(--grey); padding: 60px 0; overflow: hidden; }
.brands-track { display: flex; width: max-content; animation: brands-scroll 32s linear infinite; }
.brands:hover .brands-track { animation-play-state: paused; }
.brands-set { display: flex; flex: none; }
.brands span { font-family: var(--font-heading); font-size: 26px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #b9bcc3; transition: color .3s; display: inline-flex; align-items: center; gap: 8px; margin-right: 110px; white-space: nowrap; }
.brands span:hover { color: var(--navy); }
.brands span svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.5; }
/* 4 séries identiques : un déplacement d'un quart = une série, la boucle est invisible */
@keyframes brands-scroll { to { transform: translateX(-25%); } }
@media (prefers-reduced-motion: reduce) { .brands-track { animation: none; } }

/* --------------------------------------------------------------------------
   Pied de page
   -------------------------------------------------------------------------- */
.footer { background: var(--navy-deep); color: rgba(255,255,255,.75); position: relative; display: flow-root; /* évite la fusion de la marge négative du bandeau avec le pied de page */ }
/* Bandeau contact : à cheval sur la section précédente (moitié au-dessus du pied de page, comme la référence), flèches en chevron */
.footer-contact { position: relative; z-index: 2; margin-top: -49px; }
.footer-contact .strip { display: flex; }
.footer-contact .item { flex: 1 1 0; display: flex; align-items: center; justify-content: center; gap: 22px; min-height: 98px; padding: 12px 30px 12px 20px; color: #fff; position: relative; }
.footer-contact .item:nth-child(1) { background: var(--dark); }
.footer-contact .item:nth-child(2) { background: var(--primary-dark); }
.footer-contact .item:nth-child(3) { background: var(--primary); }
.footer-contact .item::after { content: ""; position: absolute; top: 0; bottom: 0; left: 100%; width: 50px; background: inherit; clip-path: polygon(0 0, 100% 50%, 0 100%); z-index: 1; }
.footer-contact .item:nth-child(3)::after { display: none; }
.footer-contact .item svg { width: 36px; height: 36px; stroke: #fff; stroke-width: 1.2; fill: none; flex: 0 0 36px; position: relative; }
.footer-contact .item div { position: relative; }
.footer-contact .item strong { color: #fff; font-family: var(--font-heading); font-size: 20px; font-weight: 600; display: block; line-height: 1.2; }
.footer-contact .item strong a { color: #fff; }
.footer-contact .item span { font-size: 14px; line-height: 1.6; display: block; }
/* Image de fond du pied de page : deux roues en filigrane (SVG maison) */
.footer-main { position: relative; padding: 56px 0 40px; overflow: hidden; }
.footer-main::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .07; background: url(../img/footer-wheel.svg) left -150px bottom -140px / 620px 620px no-repeat, url(../img/footer-wheel.svg) right -90px top -30px / 440px 440px no-repeat; }
.footer-main .container { position: relative; }
.footer-main .row > .col { flex: 0 0 23.33%; max-width: 23.33%; }
.footer-main .row > .col:first-child { flex: 0 0 30%; max-width: 30%; }
.footer-logo img { height: 46px; margin-bottom: 24px; }
.footer p { font-size: 14px; }
.footer .socials { margin-top: 20px; gap: 10px; }
.footer .socials a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: inline-flex; align-items: center; justify-content: center; color: #fff; transition: .3s; }
.footer .socials a:hover { background: var(--primary); border-color: var(--primary); }
.footer h4 { color: #fff; font-size: 22px; font-weight: 400; margin-bottom: 26px; }
.footer h4 b { font-weight: 700; }
.footer-links li { margin-bottom: 8px; font-size: 14px; }
.footer-links a { color: rgba(255,255,255,.75); position: relative; padding-left: 0; transition: .3s; display: inline-block; }
.footer-links a:hover { color: var(--primary-light); padding-left: 8px; }
.footer-news li { margin-bottom: 14px; }
.footer-news a { color: rgba(255,255,255,.85); font-size: 14px; display: block; line-height: 1.4; }
.footer-news a:hover { color: var(--primary-light); }
.footer-news time { font-size: 12px; color: rgba(255,255,255,.5); }
.hours li { display: flex; justify-content: space-between; font-size: 14px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.hours li span:last-child { color: #fff; }
.hours li.closed span:last-child { color: var(--primary-light); }
/* Barre des mentions légales : copyright à gauche, liens + signature daelio.fr à droite, sur une seule ligne */
.footer-bottom { background: var(--navy); padding: 23px 0; font-size: 15px; color: #fff; position: relative; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-bottom__right { display: flex; align-items: center; flex-wrap: wrap; gap: 14px 40px; }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 10px 40px; }
.footer-bottom a { color: #fff; }
.footer-bottom a:hover { color: var(--primary-light); }

.back-top { position: fixed; right: 22px; bottom: 17px; width: 35px; height: 35px; background: var(--primary-dark); color: #fff; border: 0; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: .4s; z-index: 300; cursor: pointer; }
.back-top.show { opacity: 1; visibility: visible; transform: none; }
.back-top svg { width: 16px; height: 16px; stroke: #fff; stroke-width: 3; }
.back-top:hover { background: var(--navy); }

/* --------------------------------------------------------------------------
   Bannière de titre de page
   -------------------------------------------------------------------------- */
.page-title { position: relative; padding: 110px 0; background: var(--navy) url(../img/page-title-bg.jpg) center/cover; color: #fff; text-align: center; }
.page-title::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,21,27,.8), rgba(16,21,27,.75)); }
.page-title .container { position: relative; }
.page-title .pt-h { font-family: var(--font-heading); line-height: 1.15; margin: 0 0 10px; color: #fff; font-size: 52px; font-weight: 700; text-transform: uppercase; margin-bottom: 10px; animation: fadeUp .8s var(--ease); }
.breadcrumb { display: inline-flex; gap: 10px; font-size: 14px; color: rgba(255,255,255,.8); animation: fadeUp .8s .15s var(--ease) both; }
.breadcrumb a { color: #fff; }
.breadcrumb a:hover { color: var(--primary-light); }
.breadcrumb li + li::before { content: "/"; margin-right: 10px; color: var(--primary-light); }
.breadcrumb li:last-child { color: var(--primary-light); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   À propos
   -------------------------------------------------------------------------- */
.about-intro .row { align-items: center; }
.about-intro .col-img { flex: 0 0 48%; max-width: 48%; }
.about-intro .col-img img { box-shadow: var(--shadow-lg); }
.about-intro .col-text { flex: 0 0 52%; max-width: 52%; }
.experience-badge { position: absolute; left: 15px; bottom: -30px; background: var(--primary); color: #fff; padding: 22px 28px; font-family: var(--font-heading); line-height: 1; box-shadow: var(--shadow-lg); }
.experience-badge b { font-size: 54px; font-weight: 700; display: block; }
.experience-badge span { font-size: 16px; text-transform: uppercase; letter-spacing: 1px; }
.tabs { margin-top: 30px; }
.tab-nav { display: flex; gap: 4px; border-bottom: 2px solid var(--grey-2); }
.tab-nav button { background: transparent; border: 0; padding: 12px 22px; font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--heading); position: relative; text-transform: uppercase; }
.tab-nav button::after { content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--primary); transform: scaleX(0); transition: transform .3s; }
.tab-nav button.active { color: var(--primary); }
.tab-nav button.active::after { transform: scaleX(1); }
.tab-pane { display: none; padding-top: 24px; animation: fadeUp .5s var(--ease); }
.tab-pane.active { display: block; }
.tab-pane h4 { font-size: 22px; margin-bottom: 10px; }
.stats { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; inset: 0; background: url(../img/promo-bg.jpg) center/cover; opacity: .18; }
.stats .container { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 60px 20px; border-right: 1px solid rgba(255,255,255,.08); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--font-heading); font-size: 60px; font-weight: 700; color: #fff; line-height: 1; }
.stat .num span { color: var(--accent-on-dark); }
.stat p { margin: 8px 0 0; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.8); }

/* Témoignages */
.testimonials-wrap { background: var(--grey); }
.testimonial { background: #fff; padding: 40px 34px 34px; position: relative; height: 100%; box-shadow: var(--shadow); transition: .4s; }
.testimonial:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial .quote { width: 40px; height: 40px; fill: var(--sky); opacity: .7; margin-bottom: 14px; }
.testimonial p { font-size: 15px; font-style: italic; }
.testimonial .stars { color: #f5b301; font-size: 15px; letter-spacing: 2px; margin-bottom: 10px; }
.testimonial .author { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.testimonial .avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-size: 22px; font-weight: 700; flex: 0 0 54px; }
.testimonial .author strong { display: block; color: var(--heading); font-family: var(--font-heading); font-size: 18px; }
.testimonial .author span { font-size: 13px; }

/* Équipe */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.member { background: #fff; box-shadow: var(--shadow); transition: .4s; overflow: hidden; }
.member:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.member .photo { position: relative; overflow: hidden; }
.member .photo img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .7s var(--ease); }
.member:hover .photo img { transform: scale(1.06); }
.member .photo .socials { position: absolute; left: 0; right: 0; bottom: 0; justify-content: center; gap: 0; background: rgba(27,33,41,.9); transform: translateY(100%); transition: .4s var(--ease); }
.member:hover .photo .socials { transform: none; }
.member .photo .socials a { padding: 12px 16px; color: #fff; }
.member .body { padding: 24px 26px; }
.member h3 { font-size: 24px; margin-bottom: 2px; }
.member .role { color: var(--primary); font-family: var(--font-heading); font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 12px; }
.member p { font-size: 14px; margin-bottom: 14px; }
.member .facts { display: flex; gap: 20px; border-top: 1px solid var(--grey-2); padding-top: 14px; }
.member .facts div { font-size: 13px; }
.member .facts b { display: block; font-family: var(--font-heading); font-size: 24px; color: var(--navy); line-height: 1; }
.skills .row { align-items: center; }
.skills .col-img, .skills .col-text { flex: 0 0 50%; max-width: 50%; }
.skill { margin-bottom: 22px; }
.skill .label { display: flex; justify-content: space-between; font-family: var(--font-heading); font-size: 17px; font-weight: 600; color: var(--heading); margin-bottom: 6px; }
.skill .bar { height: 8px; background: var(--grey-2); position: relative; overflow: hidden; }
.skill .bar span { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: linear-gradient(90deg, var(--primary), var(--primary-light)); transition: width 1.4s var(--ease); }

/* Galerie */
.gallery-filter { display: flex; justify-content: center; gap: 6px; flex-wrap: wrap; margin-bottom: 40px; }
.gallery-filter button { background: transparent; border: 1px solid var(--grey-2); padding: 8px 20px; font-family: var(--font-heading); font-size: 16px; font-weight: 600; text-transform: uppercase; color: var(--heading); transition: .3s; }
.gallery-filter button.active, .gallery-filter button:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { position: relative; overflow: hidden; display: block; transition: .4s; }
.gallery-item.hide { display: none; }
.gallery-item img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item .cap { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(27,33,41,.92)); color: #fff; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: .4s; }
.gallery-item:hover .cap { opacity: 1; }
.gallery-item .cap strong { color: #fff; font-family: var(--font-heading); font-size: 22px; }
.gallery-item .cap span { font-size: 13px; color: var(--primary-light); text-transform: uppercase; letter-spacing: 1px; }
.gallery-item .zoom { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: var(--primary); display: flex; align-items: center; justify-content: center; transform: scale(0); transition: .4s var(--ease); }
.gallery-item:hover .zoom { transform: scale(1); }
.gallery-item .zoom svg { width: 20px; height: 20px; stroke: #fff; }
.lightbox { position: fixed; inset: 0; background: rgba(16,21,27,.96); z-index: 700; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: .4s; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; box-shadow: 0 30px 80px rgba(0,0,0,.6); transform: scale(.9); transition: transform .4s var(--ease); }
.lightbox.open img { transform: scale(1); }
.lightbox button { position: absolute; background: none; border: 0; color: #fff; }
.lightbox .lb-close { top: 24px; right: 34px; font-size: 44px; line-height: 1; }
.lightbox .lb-prev, .lightbox .lb-next { top: 50%; transform: translateY(-50%); width: 56px; height: 56px; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; }
.lightbox .lb-prev { left: 24px; } .lightbox .lb-next { right: 24px; }
.lightbox .lb-prev svg, .lightbox .lb-next svg { width: 22px; height: 22px; stroke: #fff; stroke-width: 3; }
.lightbox .lb-cap { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; color: #fff; font-family: var(--font-heading); font-size: 20px; }

/* FAQ */
.faq-wrap .row { gap: 0; }
.faq-wrap .col-main { flex: 0 0 66.66%; max-width: 66.66%; }
.faq-wrap .col-side { flex: 0 0 33.33%; max-width: 33.33%; }
.accordion-item { border: 1px solid var(--grey-2); margin-bottom: 12px; background: #fff; }
.accordion-item button { width: 100%; text-align: left; background: transparent; border: 0; padding: 18px 60px 18px 24px; font-family: var(--font-heading); font-size: 20px; font-weight: 600; color: var(--heading); position: relative; }
.accordion-item button::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); width: 28px; height: 28px; border-radius: 50%; background: var(--grey); color: var(--primary); font-size: 20px; display: flex; align-items: center; justify-content: center; transition: .3s; }
.accordion-item.open button { color: var(--primary); }
.accordion-item.open button::after { content: "–"; background: var(--primary); color: #fff; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.accordion-body div { padding: 0 24px 22px; font-size: 15px; }

/* Tarifs */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: stretch; }
.plan { background: #fff; box-shadow: var(--shadow); padding: 40px 34px; text-align: center; position: relative; transition: .4s; border-top: 4px solid var(--navy); }
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.plan.featured { border-top-color: var(--primary); }
.plan .badge { position: absolute; top: -4px; right: 20px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 6px 12px; }
.plan h3 { font-size: 26px; text-transform: uppercase; }
.plan .price { font-family: var(--font-heading); color: var(--navy); font-size: 58px; font-weight: 700; line-height: 1; margin: 16px 0 4px; }
.plan .price sup { font-size: 24px; vertical-align: top; margin-top: 8px; display: inline-block; }
.plan .period { font-size: 13px; color: var(--text); display: block; margin-bottom: 24px; }
.plan ul { text-align: left; margin-bottom: 28px; }
.plan li { padding: 9px 0 9px 28px; border-bottom: 1px dashed var(--grey-2); font-size: 14px; position: relative; }
.plan li::before { content: ""; position: absolute; left: 2px; top: 12px; width: 8px; height: 14px; border: solid var(--primary); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.plan li.no { color: #b0b3b8; text-decoration: line-through; }
.plan li.no::before { border-color: #b0b3b8; }

/* --------------------------------------------------------------------------
   Page service (détail)
   -------------------------------------------------------------------------- */
.with-sidebar .row { gap: 0; }
.with-sidebar .col-main { flex: 0 0 66.66%; max-width: 66.66%; }
.with-sidebar .col-side { flex: 0 0 33.33%; max-width: 33.33%; }
.service-detail h2 { font-size: 32px; margin-bottom: 16px; }
.service-detail h3 { font-size: 24px; margin: 30px 0 12px; }
.service-detail .lead { font-size: 17px; color: var(--heading); }
.service-detail .imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
.service-detail .imgs img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.service-detail .imgs img:first-child { grid-column: span 2; aspect-ratio: 16/8; }
.two-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 30px; }
.two-lists li { padding: 6px 0 6px 28px; position: relative; font-size: 15px; }
.two-lists li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 8px; height: 14px; border: solid var(--primary); border-width: 0 2px 2px 0; transform: rotate(45deg); }
.price-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 20px; }
.price-box { background: var(--grey); padding: 30px; border-left: 4px solid var(--primary); }
.price-box h4 { font-size: 22px; text-transform: uppercase; }
.price-box .p { font-family: var(--font-heading); font-size: 42px; font-weight: 700; color: var(--navy); line-height: 1; }
.price-box .p small { font-size: 14px; color: var(--text); font-weight: 400; font-family: var(--font-body); display: block; margin-top: 4px; }
.price-box ul { margin: 16px 0 20px; }
.price-box li { font-size: 14px; padding: 4px 0 4px 20px; position: relative; }
.price-box li::before { content: ""; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; background: var(--primary); }
.sidebar { padding-left: 30px; }
.widget { margin-bottom: 40px; }
.widget h4 { font-size: 22px; padding-bottom: 12px; position: relative; margin-bottom: 20px; }
.widget h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 2px; background: var(--primary); }
.widget-services li a { display: flex; justify-content: space-between; align-items: center; background: var(--grey); padding: 12px 18px; margin-bottom: 6px; color: var(--heading); font-weight: 500; font-size: 14px; transition: .3s; }
.widget-services li a svg { width: 14px; height: 14px; stroke: currentColor; }
.widget-services li a:hover, .widget-services li.current a { background: var(--primary); color: #fff; }
.widget-hours { background: var(--navy); color: rgba(255,255,255,.8); padding: 28px; }
.widget-hours h4 { color: #fff; }
.widget-cta { background: var(--primary) url(../img/promo-bg.jpg) center/cover; color: #fff; padding: 34px 28px; position: relative; text-align: center; }
.widget-cta::before { content: ""; position: absolute; inset: 0; background: rgba(125,191,225,.9); }
.widget-cta > * { position: relative; }
.widget-cta h4 { color: #fff; }
.widget-cta h4::after { background: #fff; left: 50%; transform: translateX(-50%); }
.widget-cta strong { display: block; color: #fff; font-family: var(--font-heading); font-size: 30px; margin: 10px 0 18px; }
.widget-cta strong a:hover { color: #fff; text-decoration: underline; }
.widget-search form { display: flex; border: 1px solid var(--grey-2); }
.widget-search input { flex: 1; border: 0; padding: 0 14px; height: 46px; outline: 0; }
.widget-search button { background: var(--primary); border: 0; width: 48px; }
.widget-search button svg { width: 18px; height: 18px; stroke: #fff; }
.widget-posts li { display: flex; gap: 14px; margin-bottom: 16px; }
.widget-posts img { width: 80px; height: 64px; object-fit: cover; flex: 0 0 80px; }
.widget-posts a { font-weight: 500; color: var(--heading); font-size: 14px; line-height: 1.4; display: block; }
.widget-posts a:hover { color: var(--primary); }
.widget-posts time { font-size: 12px; color: var(--text); }
.widget-cats li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--grey-2); font-size: 14px; }
.widget-cats li span { color: var(--primary); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags a { border: 1px solid var(--grey-2); padding: 5px 12px; font-size: 13px; transition: .3s; }
.tags a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Blog list */
.post-list .post-card { height: auto; margin-bottom: 40px; }
.post-list .post-card .thumb img { aspect-ratio: 16/8; }
.post-list .post-card h3 { font-size: 28px; }
.post-list .meta { display: flex; gap: 18px; flex-wrap: wrap; }
.post-list .meta span { display: inline-flex; gap: 6px; align-items: center; }
/* Article */
.article .thumb { margin-bottom: 30px; position: relative; }
.article .thumb img { width: 100%; aspect-ratio: 16/8; object-fit: cover; }
.article h1 { font-size: 40px; margin-bottom: 14px; }
.article .meta { display: flex; gap: 18px; flex-wrap: wrap; font-size: 13px; margin-bottom: 24px; }
.article .meta span { display: inline-flex; gap: 6px; align-items: center; }
.article .meta svg { width: 14px; height: 14px; stroke: var(--primary); }
.article h2 { font-size: 28px; margin: 34px 0 12px; }
.article h3 { font-size: 22px; margin: 26px 0 10px; }
.article ul.list li { padding: 5px 0 5px 24px; position: relative; }
.article ul.list li::before { content: ""; position: absolute; left: 0; top: 13px; width: 8px; height: 8px; background: var(--primary); }
.article blockquote { margin: 30px 0; padding: 26px 30px 26px 34px; background: var(--grey); border-left: 4px solid var(--primary); font-family: var(--font-heading); font-size: 22px; font-weight: 500; color: var(--heading); font-style: italic; }
.article .tags-share { display: flex; justify-content: space-between; align-items: center; margin: 40px 0; padding: 20px 0; border-top: 1px solid var(--grey-2); border-bottom: 1px solid var(--grey-2); flex-wrap: wrap; gap: 14px; }
.share { display: flex; gap: 8px; align-items: center; }
.share a { width: 34px; height: 34px; border-radius: 50%; background: var(--grey); display: inline-flex; align-items: center; justify-content: center; transition: .3s; }
.share a svg { width: 14px; height: 14px; fill: var(--heading); }
.share a:hover { background: var(--primary); }
.share a:hover svg { fill: #fff; }
.post-nav { display: flex; justify-content: space-between; gap: 20px; margin-bottom: 40px; }
.post-nav a { flex: 1; padding: 20px; background: var(--grey); font-family: var(--font-heading); font-size: 18px; font-weight: 600; color: var(--heading); transition: .3s; }
.post-nav a span { display: block; font-family: var(--font-body); font-size: 12px; font-weight: 400; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; }
.post-nav a:hover { background: var(--navy); color: #fff; }
.post-nav a.next { text-align: right; }
.author-box { display: flex; gap: 24px; background: var(--grey); padding: 30px; margin-bottom: 40px; align-items: center; }
.author-box img { width: 110px; height: 110px; object-fit: cover; border-radius: 50%; flex: 0 0 110px; }
.author-box h4 { font-size: 22px; margin-bottom: 4px; }
.comments h3 { font-size: 26px; margin-bottom: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: span 2; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; border: 1px solid var(--grey-2); background: var(--grey); padding: 12px 16px; height: 50px; outline: 0; transition: border .3s; }
.form-grid textarea { height: 150px; resize: vertical; padding-top: 12px; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--primary); background: #fff; }
.form-grid label { display: block; font-size: 13px; font-weight: 500; color: var(--heading); margin-bottom: 6px; }
.form-msg { display: none; margin-top: 18px; padding: 14px 18px; background: #e6f7ee; border-left: 4px solid #21a35a; color: #1a6e3f; }
.form-msg.show { display: block; animation: fadeUp .5s; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: -60px; position: relative; z-index: 2; }
.cbox { background: #fff; box-shadow: var(--shadow-lg); padding: 36px 30px; text-align: center; border-bottom: 4px solid var(--navy); transition: .4s; }
.cbox:hover { transform: translateY(-6px); border-bottom-color: var(--primary); }
.cbox .icon { width: 70px; height: 70px; margin: 0 auto 18px; background: var(--grey); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.cbox .icon svg { width: 32px; height: 32px; stroke: var(--primary); fill: none; stroke-width: 1.5; }
.cbox h4 { font-size: 22px; margin-bottom: 6px; }
.cbox p { margin: 0; font-size: 14px; }
.cbox a { color: var(--heading); font-weight: 500; }
.contact-main .row { gap: 0; }
.contact-main .col-form { flex: 0 0 62%; max-width: 62%; }
.contact-main .col-info { flex: 0 0 38%; max-width: 38%; padding-left: 40px; }
.map { height: 460px; }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.05); }

/* Boutique */
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product { background: #fff; border: 1px solid var(--grey-2); padding: 20px; position: relative; transition: .4s; text-align: center; }
.product:hover { box-shadow: var(--shadow-lg); border-color: transparent; }
.product .sale { position: absolute; top: 14px; left: 14px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 4px 10px; z-index: 1; }
.product .pimg { background: var(--grey); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; overflow: hidden; }
.product .pimg svg { width: 45%; height: 45%; stroke: var(--navy); stroke-width: 1; fill: none; transition: .5s var(--ease); }
.product:hover .pimg svg { transform: scale(1.1) rotate(-4deg); stroke: var(--primary); }
.product h3 { font-size: 20px; margin-bottom: 4px; }
.product .cat { font-size: 12px; color: var(--text); text-transform: uppercase; letter-spacing: 1px; }
.product .price { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--navy); margin: 10px 0 14px; }
.product .price del { color: #b0b3b8; font-weight: 400; font-size: 16px; margin-right: 8px; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 14px; font-size: 14px; }
.shop-toolbar select { height: 42px; border: 1px solid var(--grey-2); padding: 0 14px; }
.widget-cats.shop li { cursor: pointer; }
.widget-cats.shop li.active { color: var(--primary); font-weight: 500; }
.product-single .row { gap: 0; }
.product-single .col-img { flex: 0 0 45%; max-width: 45%; }
.product-single .col-info { flex: 0 0 55%; max-width: 55%; padding-left: 40px; }
.product-single .pimg { background: var(--grey); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.product-single .pimg svg { width: 50%; height: 50%; stroke: var(--navy); stroke-width: .8; fill: none; }
.product-single h1 { font-size: 40px; margin-bottom: 8px; }
.product-single .price { font-family: var(--font-heading); font-size: 36px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
.product-single .price del { color: #b0b3b8; font-size: 22px; font-weight: 400; margin-right: 10px; }
.qty { display: inline-flex; border: 1px solid var(--grey-2); margin-right: 14px; vertical-align: middle; }
.qty button { width: 42px; height: 50px; background: var(--grey); border: 0; font-size: 18px; }
.qty input { width: 56px; text-align: center; border: 0; font-weight: 700; }
.product-meta { margin-top: 24px; font-size: 14px; border-top: 1px solid var(--grey-2); padding-top: 16px; }
.product-meta li { padding: 4px 0; }
.product-meta b { color: var(--heading); margin-right: 6px; }
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 14px; border-bottom: 1px solid var(--grey-2); text-align: left; font-size: 14px; }
.cart-table th { font-family: var(--font-heading); font-size: 17px; background: var(--grey); }
.cart-table .remove { background: none; border: 0; color: var(--primary); font-size: 20px; }
.cart-total { margin-top: 30px; margin-left: auto; max-width: 380px; background: var(--grey); padding: 26px; }
.cart-total div { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--grey-2); }
.cart-total div.total { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--heading); border: 0; }
.toast { position: fixed; bottom: 90px; right: 26px; background: var(--navy); color: #fff; padding: 14px 20px; box-shadow: var(--shadow-lg); z-index: 400; transform: translateY(20px); opacity: 0; transition: .4s; font-size: 14px; border-left: 4px solid var(--primary); }
.toast.show { transform: none; opacity: 1; }

/* Pages légales */
.legal h2 { font-size: 26px; margin-top: 34px; }
.legal p, .legal li { font-size: 15px; }

/* Zone locale SEO */
.local-seo { background: var(--grey); }
.local-seo .row { align-items: center; }
.local-seo .col-text { flex: 0 0 60%; max-width: 60%; }
.local-seo .col-img { flex: 0 0 40%; max-width: 40%; }
.local-seo .col-img img { box-shadow: var(--shadow-lg); }
.zones { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.zones span { background: #fff; border: 1px solid var(--grey-2); padding: 5px 12px; font-size: 13px; border-radius: 30px; }

/* --------------------------------------------------------------------------
   Animations d'apparition
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.left { transform: translateX(-60px); }
.reveal.right { transform: translateX(60px); }
.reveal.zoom { transform: scale(.85); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .15s; } .reveal.d2 { transition-delay: .3s; } .reveal.d3 { transition-delay: .45s; } .reveal.d4 { transition-delay: .6s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .hero-content > * { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1499px) {
  /* Écrans portables : le menu français est plus long que celui de la référence, on resserre pour rester dans le bloc rouge */
  .main-nav > ul > li { margin-right: 20px; }
}
@media (max-width: 1199px) {
  :root { --container: 960px; }
  .main-nav > ul > li { margin-right: 14px; }
  .main-nav > ul > li > a { font-size: 14px; }
  .info-item { margin-right: 26px; }
  .info-item:nth-child(2) { display: none; }
  .hero-content .hero-h { font-size: 52px; }
  .hbox { padding: 34px 22px; }
  .contact-list li span:first-child { flex: 0 0 100px; }
  .step { padding: 40px 30px 34px 76px; }
  .step .num { right: 70px; }
  .promo-right .inner { padding: 0 20px 0 50px; }
  .services-grid, .team-grid, .pricing-grid, .booking-grid, .shop-grid, .gallery-grid { gap: 20px; }
}
@media (max-width: 991px) {
  :root { --container: 720px; }
  .reveal.left, .reveal.right { transform: translateY(40px); }
  .reveal.in { transform: none; }
  h1 { font-size: 44px; }
  .section { padding: 70px 0; }
  /* En-tête : les trois barres (bleue, logo, rouge biseautée) gardent la même forme sur tous les écrans ;
     seuls les liens du menu passent dans le volet latéral (hamburger dans la barre rouge). */
  .header-info .info-item { display: none; }
  .main-nav { display: none; }
  .menu-toggle { display: inline-flex !important; width: auto; height: auto; padding-left: 15px; }
  .services-home::before { background-attachment: scroll; }
  .hero { height: 600px; }
  .hero-slide::before { background: rgba(16,21,27,.7); }
  .hero-content .hero-h { font-size: 44px; }
  .hero-arrow { width: 44px; height: 44px; }
  .hero-arrow.prev { left: 10px; } .hero-arrow.next { right: 10px; }
  .hero-dots { bottom: 30px; }
  .hero-boxes { margin-top: 0; padding-top: 0; }
  .hero-boxes .col { flex: 0 0 100%; max-width: 100%; }
  .hbox, .hbox-primary { min-height: 0; }
  .why .col-text, .why .col-img { flex: 0 0 100%; max-width: 100%; }
  .why .col-img { margin-top: 40px; overflow: hidden; }
  .why .col-img img { transform: none; }
  .promo { flex-direction: column; }
  .promo-left { flex: 0 0 auto; padding: 60px 30px; }
  .promo-left::after { display: none; }
  .promo-right { padding: 60px 0 0; }
  .promo-right .inner { flex-direction: column; padding: 0 30px; }
  .promo-right .text { flex: 0 0 auto; }
  .promo-right .mech { margin: 30px 0 0; align-self: center; }
  .promo-right .mech img { max-width: 260px; margin: 0 auto; }
  .carousel-item { flex: 0 0 50%; }
  .services-grid, .team-grid, .pricing-grid, .booking-grid, .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process { flex-direction: column; }
  .step, .step:nth-child(2), .step:nth-child(3) { margin: 0; clip-path: none; padding: 34px 30px; min-height: 0; }
  .step .num { right: 30px; }
  .newsletter-cta { flex-direction: column; }
  .newsletter { flex: 0 0 auto; padding: 50px 30px; }
  .newsletter::after { display: none; }
  .cta-dark { padding: 50px 30px; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat { border: 0; padding: 40px 10px; }
  .header-top { font-size: 12px; }
  .header-top .ot-label, .header-top .socials { display: none; }
  .header-top::after { width: calc(80% + 65px); }
  .header-nav::after { width: calc(80% + 56px); }
  .logo img { height: 48px; }
  .header-info .btn { padding: 0 18px; font-size: 13px; }
  .footer-contact .strip { flex-direction: column; }
  .footer-contact .item { justify-content: flex-start; }
  .footer-contact .item::after { display: none; }
  .footer-main { padding: 60px 0 40px; }
  .footer-bottom .container, .footer-bottom__right { justify-content: center; text-align: center; }
  .footer-main .row > .col, .footer-main .row > .col:first-child { flex: 0 0 50%; max-width: 50%; margin-bottom: 40px; }
  .about-intro .col-img, .about-intro .col-text, .skills .col-img, .skills .col-text, .local-seo .col-text, .local-seo .col-img { flex: 0 0 100%; max-width: 100%; }
  .about-intro .col-text, .skills .col-text { margin-top: 60px; }
  .local-seo .col-img { margin-top: 30px; }
  .with-sidebar .col-main, .with-sidebar .col-side, .faq-wrap .col-main, .faq-wrap .col-side, .contact-main .col-form, .contact-main .col-info, .product-single .col-img, .product-single .col-info { flex: 0 0 100%; max-width: 100%; }
  .sidebar, .contact-main .col-info, .product-single .col-info { padding-left: 15px; margin-top: 50px; }
  .contact-boxes { grid-template-columns: 1fr; margin-top: 40px; }
  .page-title { padding: 80px 0; }
  .page-title .pt-h { font-size: 40px; }
}
@media (max-width: 767px) {
  :root { --container: 540px; }
  .reveal.left, .reveal.right { transform: translateY(40px); }
  .reveal.in { transform: none; }
  .product { padding: 14px; }
  .product-single h1 { font-size: 30px; }
  body { font-size: 14px; }
  .section { padding: 60px 0; }
  .section-title h2 { font-size: 30px; }
  .hero { height: 560px; }
  .hero-content .hero-h { font-size: 36px; }
  .hero-content p { font-size: 15px; }
  .hero-content .kicker { font-size: 17px; }
  .carousel-item { flex: 0 0 100%; }
  .features { grid-template-columns: 1fr; }
  .services-grid, .team-grid, .pricing-grid, .booking-grid, .gallery-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .booking-grid, .booking-head, .pagination { padding: 0; }
  .stats .container { grid-template-columns: 1fr 1fr; }
  .stat .num { font-size: 44px; }
  .footer-main .row > .col, .footer-main .row > .col:first-child { flex: 0 0 100%; max-width: 100%; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: span 1; }
  .price-boxes, .two-lists, .service-detail .imgs { grid-template-columns: 1fr; }
  .service-detail .imgs img:first-child { grid-column: span 1; }
  .article h1 { font-size: 30px; }
  .page-title .pt-h { font-size: 32px; }
  .promo-left h2, .promo-right h2 { font-size: 30px; }
  .post-nav { flex-direction: column; }
  .author-box { flex-direction: column; text-align: center; }
  .map { height: 320px; }
  .brands .container { justify-content: center; }
  .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; }
}


/* --------------------------------------------------------------------------
   Accent bleu ciel (2e couleur de l'identité) : 3e boîte du hero, 3e étape,
   3e bloc de contact du pied de page, badges
   -------------------------------------------------------------------------- */
.step:nth-child(3) { background: var(--sky); color: var(--navy); }
.step:nth-child(3) h3 { color: var(--navy); }
.step:nth-child(3) .icon svg { stroke: var(--navy); }
.step:nth-child(3) .num { color: rgba(27,33,41,.14); }
.footer-contact .item:nth-child(3) { background: var(--sky); color: var(--navy); }
.footer-contact .item:nth-child(3) svg { stroke: var(--navy); }
.footer-contact .item:nth-child(3) strong, .footer-contact .item:nth-child(3) strong a { color: var(--navy); }
.footer-contact .item:nth-child(3) strong a:hover { color: var(--primary-dark); }
.plan .badge { background: var(--sky); color: var(--navy); }
.product .sale { background: var(--sky); color: var(--navy); }
.experience-badge { background: var(--primary); }

/* --------------------------------------------------------------------------
   Signature daelio.fr (crédit pied de page)
   -------------------------------------------------------------------------- */
/* ------------------------------------------------------------------
   Signature daelio.fr — composant autonome, sans dépendance.
   Toutes les classes sont préfixées « daelio-sig » : aucun risque de
   collision avec les styles du site hôte.

   Personnalisation (facultative) sur .daelio-sig ou un parent :
     --daelio-sig-accent : couleur du signe et du soulignement
                           (défaut : la couleur du texte environnant)
   ------------------------------------------------------------------ */

.daelio-sig-wrap {
  /* Le pied de page ne définit pas toujours une couleur de texte sur son
     conteneur : --daelio-sig-color permet de la donner explicitement.
     Exemple : .daelio-sig-wrap { --daelio-sig-color: rgba(255,255,255,.5); } */
  color: var(--daelio-sig-color, inherit);
  margin: 22px 0 0;
  padding-top: 18px;
  text-align: center;
  border-top: 1px solid rgba(128, 128, 128, 0.16);
  border-top-color: color-mix(in srgb, currentColor 12%, transparent);
}

.daelio-sig {
  --daelio-sig-accent: currentColor;
  --daelio-sig-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid rgba(128, 128, 128, 0.22);
  border-color: color-mix(in srgb, currentColor 26%, transparent);
  background: transparent;
  color: inherit;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    border-color 0.28s var(--daelio-sig-ease),
    background-color 0.28s var(--daelio-sig-ease),
    transform 0.28s var(--daelio-sig-ease);
}

.daelio-sig:hover,
.daelio-sig:focus-visible {
  color: inherit;
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--daelio-sig-accent) 55%, transparent);
  background-color: color-mix(in srgb, currentColor 6%, transparent);
}

.daelio-sig:focus-visible {
  outline: 2px solid var(--daelio-sig-accent);
  outline-offset: 3px;
}

.daelio-sig__label {
  opacity: 0.68;
  font-weight: 400;
}

.daelio-sig__mark {
  display: inline-flex;
  width: 13px;
  height: 13px;
  flex: none;
  color: var(--daelio-sig-accent);
  opacity: 0.85;
  transition:
    transform 0.5s var(--daelio-sig-ease),
    opacity 0.28s var(--daelio-sig-ease);
}

.daelio-sig__mark svg {
  width: 100%;
  height: 100%;
  display: block;
}

.daelio-sig:hover .daelio-sig__mark,
.daelio-sig:focus-visible .daelio-sig__mark {
  transform: rotate(90deg) scale(1.14);
  opacity: 1;
}

.daelio-sig__name {
  position: relative;
  opacity: 1;
}

.daelio-sig__name::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: var(--daelio-sig-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.34s var(--daelio-sig-ease);
}

.daelio-sig:hover .daelio-sig__name::after,
.daelio-sig:focus-visible .daelio-sig__name::after {
  transform: scaleX(1);
}

.daelio-sig__tld { opacity: 0.62; }

/* Variante sans pastille : texte seul, pour les pieds de page discrets */
.daelio-sig--bare {
  padding: 0;
  border: 0;
  background: none;
}
.daelio-sig--bare:hover,
.daelio-sig--bare:focus-visible {
  background: none;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .daelio-sig,
  .daelio-sig__mark,
  .daelio-sig__name::after {
    transition-duration: 0.01ms;
  }
  .daelio-sig:hover { transform: none; }
  .daelio-sig:hover .daelio-sig__mark { transform: none; }
}

.footer-bottom .daelio-sig { --daelio-sig-accent: var(--primary-light); color: rgba(255,255,255,.6); }
.footer-bottom .daelio-sig:hover, .footer-bottom .daelio-sig:focus-visible { color: #fff; }
@media (max-width: 767px) { .hero-arrow { display: none; } }

/* --------------------------------------------------------------------------
   Bleu ciel = couleur secondaire sur tout le site : les surfaces bleues
   portent du texte charbon (contraste), les petits textes bleus sur blanc
   utilisent --primary-text.
   -------------------------------------------------------------------------- */
::selection { color: var(--on-primary); }
a:hover, .info-item a:hover, .service-card h3 a:hover, .widget-posts a:hover { color: var(--primary-text); }
.section-title .subtitle, .member .role, .tab-nav button.active, .accordion-item.open button, .widget-cats li span,
.post-nav a span, .product-single .price, .cart-table .remove, .widget-cats.shop li.active, .btn-outline-dark, .btn-white { color: var(--primary-text); }
.btn { color: var(--on-primary); }
/* Barre de navigation (bleu ciel) */
.main-nav > ul > li > a { color: var(--on-primary); }
.main-nav > ul > li > a::after { background: var(--on-primary); }
.main-nav > ul > li > a svg, .nav-tools svg { stroke: var(--on-primary); }
.nav-tools button, .nav-tools a { color: var(--on-primary); }
.cart-count { background: var(--on-primary); color: #fff; }
.menu-toggle span { background: var(--on-primary); }
.main-nav ul ul li a:hover, .main-nav ul ul li.current a { color: var(--on-primary); }
.header-nav.sticky .sticky-logo .sl-light { display: none; }
.header-nav.sticky .sticky-logo .sl-dark { display: block; }
/* Boîte devis sous le hero */
.hbox-primary, .hbox-primary h3 { color: var(--on-primary); }
.hbox-primary::after { color: rgba(27,33,41,.08); }
.hbox-primary .form-inline input, .hbox-primary .form-inline select { background-color: rgba(255,255,255,.62); color: var(--on-primary); }
.hbox-primary .form-inline input::placeholder { color: rgba(27,33,41,.75); }
.hbox-primary .form-inline select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%231B2129' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
/* Bloc « À propos » (promo), newsletter, étapes, bandeau contact du footer */
.promo-right, .promo-right h2, .promo-right li, .promo-right .kicker, .promo-right p { color: var(--on-primary); }
.promo-right .check-list li::before, .promo-right .check-list.dark li::before { border-color: var(--on-primary); }
.promo-right::before { opacity: .12; }
.newsletter, .newsletter h2 { color: var(--on-primary); }
.newsletter h2::after { background: var(--on-primary); }
.newsletter form { border-color: rgba(27,33,41,.55); }
.newsletter input { color: var(--on-primary); }
.newsletter input::placeholder { color: rgba(27,33,41,.75); }
.newsletter button svg { stroke: var(--on-primary); }
.step:nth-child(2), .step:nth-child(3), .step:nth-child(2) h3, .step:nth-child(3) h3 { color: var(--on-primary); }
.step:nth-child(2) .icon svg, .step:nth-child(3) .icon svg { stroke: var(--on-primary); }
.step:nth-child(2) .num, .step:nth-child(3) .num { color: rgba(27,33,41,.14); }
.footer-contact .item:nth-child(2), .footer-contact .item:nth-child(3),
.footer-contact .item:nth-child(2) strong, .footer-contact .item:nth-child(3) strong,
.footer-contact .item:nth-child(2) strong a, .footer-contact .item:nth-child(3) strong a { color: var(--on-primary); }
.footer-contact .item:nth-child(2) svg, .footer-contact .item:nth-child(3) svg { stroke: var(--on-primary); }
.footer-contact .item:nth-child(2) strong a:hover, .footer-contact .item:nth-child(3) strong a:hover { color: #fff; }
/* Petits éléments sur fond bleu ciel */
.pagination .active, .gallery-filter button.active, .gallery-filter button:hover, .widget-services li a:hover, .widget-services li.current a,
.tags a:hover, .accordion-item.open button::after, .post-card .date, .experience-badge, .back-top, .plan .badge, .product .sale { color: var(--on-primary); }
.experience-badge span, .experience-badge small { color: var(--on-primary); }
.service-card .icon svg, .gallery-item .zoom svg, .slider-nav button svg, .widget-search button svg, .back-top svg { stroke: var(--on-primary); }
.slider-nav button:hover svg, .hero-arrow svg { stroke: #fff; }
.hero-arrow:hover svg { stroke: var(--on-primary); }
.footer .socials a:hover svg, .share a:hover svg { stroke: var(--on-primary); }
.widget-cta, .widget-cta h4, .widget-cta strong, .widget-cta p { color: var(--on-primary); }
.widget-cta h4::after { background: var(--on-primary); }
.widget-cta strong a:hover { color: #fff; }
.widget-cta .btn { background: var(--navy); border-color: var(--navy); color: #fff; }
.widget-cta .btn:hover { border-color: #fff; }
.widget-cta .btn::before { background: var(--primary-dark); }

/* Boutons : états explicites (bleu ciel = charbon dessus, charbon = blanc dessus) */
.btn { color: var(--on-primary); }
.btn:hover { color: #fff; border-color: var(--navy); }
.btn::before { background: var(--navy); }
.btn-outline { background: transparent; color: #fff; border-color: var(--primary); }
.btn-outline::before { background: var(--primary); }
.btn-outline:hover { color: var(--on-primary); border-color: var(--primary); }
.btn-outline-dark { background: transparent; color: var(--primary-text); border-color: var(--primary); }
.btn-outline-dark::before { background: var(--primary); }
.btn-outline-dark:hover { color: var(--on-primary); border-color: var(--primary); }
.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy::before { background: var(--primary); }
.btn-navy:hover { color: var(--on-primary); border-color: var(--primary); }
.btn-white { background: #fff; color: var(--primary-text); border-color: #fff; }
.btn-white::before { background: var(--navy); }
.btn-white:hover { color: #fff; border-color: var(--navy); }
.hbox-primary .btn-outline { color: var(--on-primary); border-color: var(--on-primary); }
.hbox-primary .btn-outline::before { background: var(--navy); }
.hbox-primary .btn-outline:hover { color: #fff; border-color: var(--navy); }
.widget-cta .btn { background: var(--navy); border-color: var(--navy); color: #fff; }
.widget-cta .btn::before { background: #fff; }
.widget-cta .btn:hover { color: var(--navy); border-color: #fff; }
