/* ==========================================================================
   Move Conciergerie — feuille de style principale
   Palette : navy #1E2B3C / copper #C08552 / cream #FAF8F5 / ink #1F2937
   ========================================================================== */

:root{
  --navy: #1E2B3C;
  --navy-2: #263449;
  --copper: #C08552;
  --copper-light: #E0A876;
  --cream: #FAF8F5;
  --tint: #F1EEE8;
  --ink: #1F2937;
  --muted: #64707D;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 20px 40px -20px rgba(30, 43, 60, 0.25);
  --font-head: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
ul, ol{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--font-head); font-weight:700; line-height:1.15; margin:0 0 .6em; color:var(--navy); }
p{ margin:0 0 1em; }
.container{ width:100%; max-width:1160px; margin:0 auto; padding:0 24px; }

.skip-link{ position:absolute; left:-999px; top:0; background:var(--navy); color:#fff; padding:10px 16px; z-index:999; }
.skip-link:focus{ left:10px; top:10px; }

/* Buttons */
.btn{ display:inline-flex; align-items:center; justify-content:center; gap:8px; padding:13px 26px; border-radius:999px; font-weight:600; font-size:15px; font-family:inherit; background:none; border:2px solid transparent; cursor:pointer; transition:.2s ease; white-space:nowrap; }
.btn-lg{ padding:16px 32px; font-size:16px; }
.btn-nav{ padding:9px 22px; }
.btn-block{ width:100%; }
.btn-accent{ background:var(--copper); color:#fff; }
.btn-accent:hover{ background:#a86f3f; }
.btn-outline{ background:transparent; border-color:rgba(255,255,255,.6); color:#fff; }
.btn-outline:hover{ background:rgba(255,255,255,.12); }
.btn-primary{ background:var(--navy); color:#fff; }
.btn-primary:hover{ background:var(--navy-2); }

/* Header */
.site-header{ position:sticky; top:0; z-index:100; background:rgba(250,248,245,.92); backdrop-filter:blur(8px); border-bottom:1px solid rgba(30,43,60,.08); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; padding:12px 24px; gap:24px; }
.logo img{ height:44px; width:auto; }
.main-nav ul{ display:flex; gap:28px; }
.main-nav a{ font-weight:600; font-size:14.5px; color:var(--navy); }
.main-nav a:hover, .main-nav a.active{ color:var(--copper); }
.header-actions{ display:flex; align-items:center; gap:14px; }
.burger{ display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:6px; }
.burger span{ width:24px; height:2px; background:var(--navy); display:block; }
.mobile-nav{ display:none; }

@media (max-width: 960px){
  .main-nav{ display:none; }
  .burger{ display:flex; }
  .mobile-nav.open{ display:block; background:var(--cream); border-top:1px solid rgba(30,43,60,.08); }
  .mobile-nav ul{ display:flex; flex-direction:column; padding:16px 24px 24px; gap:16px; }
  .mobile-nav a{ font-weight:600; color:var(--navy); font-size:16px; }
  .mobile-nav a.active{ color:var(--copper); }
}

/* Hero */
.hero{ position:relative; background-size:cover; background-position:center; color:#fff; }
.hero-overlay{ position:absolute; inset:0; background:linear-gradient(135deg, rgba(20,29,41,.90) 0%, rgba(20,29,41,.72) 55%, rgba(20,29,41,.55) 100%); }
.hero-content{ position:relative; padding:120px 24px 100px; max-width:760px; }
.badge{ display:inline-block; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.35); color:#fff; font-size:12.5px; font-weight:700; letter-spacing:.06em; padding:8px 16px; border-radius:999px; margin-bottom:22px; }
.hero h1{ color:#fff; font-size:clamp(32px, 5vw, 54px); margin-bottom:22px; }
.hero .accent{ color:var(--copper-light); }
.hero-lead{ font-size:17px; color:rgba(255,255,255,.88); max-width:600px; margin-bottom:32px; }
.hero-cta{ display:flex; flex-wrap:wrap; gap:16px; }

.hero-stats{ position:relative; background:var(--navy); }
.stats-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; padding:30px 24px; }
.stat{ text-align:center; border-left:1px solid rgba(255,255,255,.14); padding-left:24px; }
.stat:first-child{ border-left:none; padding-left:0; }
.stat-number{ display:block; font-family:var(--font-head); font-size:32px; font-weight:800; color:var(--copper-light); }
.stat-number-sm{ font-size:24px; }
.stat-label{ font-size:13.5px; color:rgba(255,255,255,.78); }
@media (max-width:720px){
  .stats-grid{ grid-template-columns:1fr; text-align:center; }
  .stat{ border-left:none; padding-left:0; border-top:1px solid rgba(255,255,255,.14); padding-top:18px; }
  .stat:first-child{ border-top:none; padding-top:0; }
}

/* Sections */
.section{ padding:90px 0; }
.section-tinted{ background:var(--tint); }
.section-dark{ background:var(--navy); color:#fff; }
.section-dark h2, .section-dark h3{ color:#fff; }
.section-head{ max-width:680px; margin:0 auto 52px; text-align:center; }
.section-lead{ color:var(--muted); font-size:16.5px; }
.section-dark .section-lead{ color:rgba(255,255,255,.75); }
.eyebrow{ font-size:13px; font-weight:700; letter-spacing:.08em; color:var(--copper); margin-bottom:12px; }
.eyebrow-light{ color:var(--copper-light); }

/* Intro */
.intro-grid{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.intro-media img{ border-radius:var(--radius); box-shadow:var(--shadow); }
.check-list li{ position:relative; padding-left:28px; margin-bottom:12px; font-weight:500; }
.check-list li::before{ content:"✓"; position:absolute; left:0; color:var(--copper); font-weight:800; }
.check-list-light li{ color:rgba(255,255,255,.9); }
.check-list-light li::before{ color:var(--copper-light); }
@media (max-width:860px){ .intro-grid{ grid-template-columns:1fr; gap:32px; } }

/* CTA banner (repris en bas de plusieurs sections pour maximiser les demandes de devis) */
.cta-banner{ margin-top:56px; background:#fff; border-radius:18px; padding:32px 40px; box-shadow:0 16px 32px -20px rgba(30,43,60,.3); display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap; border:1px solid rgba(192,133,82,.15); }
.cta-banner-title{ font-family:var(--font-head); font-weight:700; font-size:19px; color:var(--navy); margin:0 0 4px; }
.cta-banner-sub{ color:var(--muted); font-size:14.5px; margin:0; }
.cta-banner .btn{ flex:none; }
.cta-arrow{ display:inline-block; margin-left:6px; transition:transform .2s ease; }
.cta-banner a:hover .cta-arrow{ transform:translateX(4px); }
@media (max-width:640px){
  .cta-banner{ flex-direction:column; text-align:center; padding:28px 24px; margin-top:40px; }
  .cta-banner .btn{ width:100%; }
}

/* Cards */
.cards-grid{ display:grid; gap:28px; }
.cards-5{ grid-template-columns:repeat(3,1fr); }
.cards-3{ grid-template-columns:repeat(3,1fr); }
.card{ background:#fff; padding:32px 28px; border-radius:var(--radius); box-shadow:0 12px 28px -18px rgba(30,43,60,.25); }
.card-icon{ font-size:30px; margin-bottom:16px; }
.card h3{ font-size:19px; margin-bottom:10px; }
.card p{ color:var(--muted); font-size:15px; margin:0; }
@media (max-width:920px){ .cards-5{ grid-template-columns:repeat(2,1fr); } .cards-3{ grid-template-columns:1fr; max-width:440px; margin:0 auto; } }
@media (max-width:640px){ .cards-5{ grid-template-columns:1fr; } }

/* Steps */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:28px; counter-reset:step; }
.step{ background:#fff; border-radius:var(--radius); padding:28px 24px; box-shadow:0 12px 28px -18px rgba(30,43,60,.2); }
.step-number{ display:inline-block; font-family:var(--font-head); font-weight:800; font-size:22px; color:var(--copper); margin-bottom:12px; }
.step h3{ font-size:17px; margin-bottom:8px; }
.step p{ font-size:14.5px; color:var(--muted); margin:0; }
@media (max-width:920px){ .steps{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .steps{ grid-template-columns:1fr; } }

/* Pricing comparison table */
.pricing-table-wrap{ background:#fff; border-radius:20px; padding:10px; box-shadow:var(--shadow); overflow-x:auto; }
table.pricing-table{ width:100%; border-collapse:separate; border-spacing:0; min-width:460px; table-layout:fixed; }
.pricing-table .col-feature{ width:38%; }
.pricing-table .col-plan{ width:31%; }

.pricing-table th, .pricing-table td{ padding:14px 12px; text-align:center; border-bottom:1px solid var(--tint); font-size:14px; color:var(--ink); }
.pricing-table tbody tr:last-child td{ border-bottom:none; }
.pricing-table td:first-child, .pricing-table th.col-feature-head{ text-align:left; color:var(--navy); font-weight:600; padding-left:18px; }

.pricing-table thead th{ padding:40px 14px 18px; border-bottom:none; vertical-align:top; position:relative; }
.pricing-table th.col-feature-head{ font-family:var(--font-head); font-size:13px; letter-spacing:.04em; text-transform:uppercase; color:var(--muted); font-weight:700; vertical-align:bottom; padding-top:14px; }
.plan-name{ display:block; font-family:var(--font-head); font-weight:700; font-size:15px; color:var(--navy); }
.plan-price{ display:block; font-family:var(--font-head); font-weight:800; font-size:34px; color:var(--navy); margin-top:6px; }
.plan-price small{ font-size:14px; font-weight:700; color:var(--copper); }
.plan-sub{ display:block; font-size:12.5px; color:var(--muted); margin-top:2px; }
.plan-flag{ position:absolute; top:16px; left:50%; transform:translateX(-50%); display:inline-block; background:var(--copper); color:#fff; font-size:10.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:4px 10px; border-radius:999px; white-space:nowrap; }

.pricing-table .plan-featured{ background:rgba(192,133,82,.08); }
.pricing-table thead th.plan-featured{ border-radius:12px 12px 0 0; }
.pricing-table tbody tr:last-child td.plan-featured{ border-radius:0 0 12px 12px; }
.pricing-table .yes{ color:var(--copper); font-weight:800; font-size:16px; }
.pricing-table .no{ color:var(--muted); }

.pricing-cta-row{ display:flex; justify-content:center; gap:18px; flex-wrap:wrap; margin-top:32px; }
.pricing-footnote{ text-align:center; color:rgba(255,255,255,.7); font-size:14.5px; margin-top:24px; }

@media (max-width:640px){
  table.pricing-table{ min-width:0; table-layout:fixed; }
  .pricing-table .col-feature{ width:44%; }
  .pricing-table .col-plan{ width:28%; }
  .pricing-table th, .pricing-table td{ padding:9px 5px; font-size:12px; word-break:break-word; }
  .pricing-table td:first-child, .pricing-table th.col-feature-head{ padding-left:8px; }
  .pricing-table thead th{ padding:32px 5px 12px; }
  .plan-name{ font-size:12.5px; }
  .plan-price{ font-size:21px; }
  .plan-price small{ font-size:11px; }
  .plan-sub{ font-size:10px; }
  .plan-flag{ font-size:9px; padding:3px 7px; top:10px; }
  .pricing-table .yes{ font-size:14px; }
  .pricing-cta-row{ flex-direction:column; }
  .pricing-cta-row .btn{ width:100%; }
}

/* Numbered cards (pourquoi nous) */
.numbered-card{ text-align:center; padding:20px; }
.numbered{ display:inline-flex; align-items:center; justify-content:center; width:52px; height:52px; border-radius:50%; background:var(--navy); color:var(--copper-light); font-family:var(--font-head); font-weight:800; margin-bottom:18px; }
.numbered-card h3{ font-size:19px; }
.numbered-card p{ color:var(--muted); font-size:15px; }

/* Team */
.team-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:32px; max-width:600px; margin:0 auto; }
.team-card{ background:#fff; border-radius:var(--radius); overflow:hidden; text-align:center; box-shadow:0 12px 28px -18px rgba(30,43,60,.2); }
.team-card img{ width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; }
.team-card h3{ margin:20px 0 2px; font-size:18px; }
.team-role{ color:var(--copper); font-weight:600; font-size:14px; margin-bottom:20px; }
.team-note{ text-align:center; max-width:640px; margin:40px auto 0; color:var(--muted); }
@media (max-width:600px){ .team-grid{ grid-template-columns:1fr; max-width:320px; } }

/* Rentals */
.rentals-card{ background:#fff; border-radius:24px; padding:48px; box-shadow:var(--shadow); display:grid; grid-template-columns:.85fr 1.15fr; gap:64px; align-items:center; }
.rentals-gallery{ position:relative; padding:0 12% 22% 0; }
.rentals-img-main{ display:block; width:100%; height:auto; aspect-ratio:4/5; object-fit:cover; border-radius:var(--radius); box-shadow:0 24px 40px -20px rgba(30,43,60,.35); }
.rentals-img-accent{ position:absolute; right:0; bottom:0; width:56%; height:auto; aspect-ratio:5/4; object-fit:cover; border-radius:var(--radius); border:5px solid #fff; box-shadow:0 18px 30px -16px rgba(30,43,60,.4); }
.rentals-text .check-list{ margin:22px 0 30px; }
@media (max-width:900px){
  .rentals-card{ grid-template-columns:1fr; padding:32px 24px; gap:44px; text-align:left; }
  .rentals-gallery{ max-width:320px; margin:0 auto; padding:0 18% 24% 0; }
}
@media (max-width:480px){
  .rentals-card{ padding:24px 18px; }
}

/* Testimonials */
.testimonial-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.testimonial{ background:#fff; border-radius:var(--radius); padding:32px; margin:0; box-shadow:0 12px 28px -18px rgba(30,43,60,.2); }
.stars{ color:var(--copper); letter-spacing:2px; margin-bottom:14px; }
.testimonial p{ font-size:15.5px; color:var(--ink); font-style:italic; }
.testimonial footer{ display:flex; align-items:center; gap:10px; font-weight:700; color:var(--navy); }
.avatar{ width:36px; height:36px; border-radius:50%; background:var(--tint); color:var(--navy); display:inline-flex; align-items:center; justify-content:center; font-size:13px; font-weight:800; }
@media (max-width:720px){ .testimonial-grid{ grid-template-columns:1fr; } }

/* FAQ */
.faq-list{ max-width:760px; margin:0 auto; }
.faq-item{ border-bottom:1px solid rgba(30,43,60,.12); }
.faq-question{ width:100%; text-align:left; background:none; border:0; padding:22px 4px; font-family:var(--font-head); font-weight:600; font-size:16.5px; color:var(--navy); display:flex; justify-content:space-between; align-items:center; cursor:pointer; }
.faq-icon{ color:var(--copper); font-size:20px; font-weight:800; transition:transform .2s ease; }
.faq-question[aria-expanded="true"] .faq-icon{ transform:rotate(45deg); }
.faq-answer{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.faq-answer p{ padding:0 4px 20px; color:var(--muted); }

/* Contact */
.contact-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:56px; }
.contact-text p{ color:rgba(255,255,255,.8); }
.contact-info{ margin:28px 0; }
.contact-info li{ margin-bottom:16px; }
.contact-info a{ color:var(--copper-light); font-weight:600; }
.social-links{ display:flex; gap:16px; }
.social-links a{ background:rgba(255,255,255,.1); padding:9px 16px; border-radius:999px; font-weight:600; font-size:14px; }
.social-links a:hover{ background:rgba(255,255,255,.2); }

.contact-form{ background:#fff; color:var(--ink); border-radius:20px; padding:36px; box-shadow:var(--shadow); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group{ margin-bottom:16px; }
.form-group label{ display:block; font-weight:600; font-size:13.5px; margin-bottom:6px; }
.form-group input, .form-group textarea{ width:100%; padding:12px 14px; border:1px solid #DCE1E6; border-radius:10px; font-family:var(--font-body); font-size:15px; background:#FAFAFA; }
.form-group input:focus, .form-group textarea:focus{ outline:2px solid var(--copper); background:#fff; }
.hp-field{ position:absolute; left:-9999px; opacity:0; height:0; width:0; }
.form-status{ margin-top:14px; font-size:14px; font-weight:600; min-height:20px; }
.form-status.success{ color:#1e7d46; }
.form-status.error{ color:#c0392b; }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }
@media (max-width:560px){ .form-row{ grid-template-columns:1fr; } }

/* Footer */
.site-footer{ background:#141D29; color:rgba(255,255,255,.75); padding:70px 0 0; }
.footer-logo-badge{ display:inline-block; background:#fff; padding:12px 18px; border-radius:12px; margin-bottom:18px; }
.footer-logo-badge img{ height:34px; width:auto; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-grid h4{ color:#fff; font-size:15px; margin-bottom:16px; }
.footer-grid li{ margin-bottom:10px; font-size:14.5px; }
.footer-grid a:hover{ color:var(--copper-light); }
.footer-bottom{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px; padding:22px 24px; font-size:13.5px; }
.footer-legal{ display:flex; flex-wrap:wrap; gap:8px 20px; }
@media (max-width:760px){ .footer-grid{ grid-template-columns:1fr; } }
/* Reserve de l'espace a droite pour que le bouton WhatsApp flottant ne recouvre jamais les liens */
@media (min-width:561px){ .footer-bottom{ padding-right:120px; } }

/* WhatsApp float */
.whatsapp-float{ position:fixed; bottom:26px; right:26px; width:64px; height:64px; background:#25D366; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 12px 26px -6px rgba(0,0,0,.45); z-index:90; transition:transform .2s ease; }
.whatsapp-float:hover{ transform:scale(1.06); }

/* Pages legales (CGU, confidentialite) */
.legal-hero{ background:var(--navy); color:#fff; padding:56px 0 44px; }
.legal-back{ display:inline-flex; align-items:center; gap:6px; color:rgba(255,255,255,.75); font-weight:600; font-size:14px; margin-bottom:22px; }
.legal-back:hover{ color:var(--copper-light); }
.legal-hero h1{ color:#fff; margin-bottom:8px; }
.legal-updated{ color:rgba(255,255,255,.65); font-size:14px; margin:0; }

.legal-body{ max-width:760px; margin:0 auto; padding:60px 24px 90px; }
.legal-body h2{ font-size:21px; margin-top:46px; margin-bottom:14px; }
.legal-body > p:first-of-type{ font-size:16.5px; color:var(--muted); }
.legal-body p{ font-size:15.5px; line-height:1.75; }
.legal-body ul{ margin:0 0 8px; }
.legal-body ul li{ position:relative; padding-left:24px; margin-bottom:10px; font-size:15.5px; line-height:1.6; }
.legal-body ul li::before{ content:"–"; position:absolute; left:0; color:var(--copper); font-weight:700; }
.legal-body a{ color:var(--copper); font-weight:600; }

.legal-table-wrap{ overflow-x:auto; margin:22px 0 32px; border:1px solid rgba(30,43,60,.12); border-radius:12px; }
.legal-table{ width:100%; border-collapse:collapse; min-width:600px; font-size:14px; }
.legal-table th{ background:var(--tint); text-align:left; padding:12px 16px; font-family:var(--font-head); font-size:12px; text-transform:uppercase; letter-spacing:.04em; color:var(--muted); }
.legal-table td{ padding:12px 16px; border-top:1px solid rgba(30,43,60,.08); vertical-align:top; }

.legal-contact-box{ background:var(--tint); border-radius:14px; padding:24px 28px; margin:24px 0 32px; }
.legal-contact-box p{ font-size:15px; }

/* Bandeau cookies */
.cookie-banner{ position:fixed; left:0; right:0; bottom:0; z-index:200; background:var(--navy); color:#fff; padding:20px 24px; display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap; box-shadow:0 -10px 30px -10px rgba(0,0,0,.35); transform:translateY(100%); opacity:0; transition:transform .3s ease, opacity .3s ease; }
.cookie-banner.is-visible{ transform:translateY(0); opacity:1; }
.cookie-banner-text{ max-width:640px; flex:1 1 320px; }
.cookie-banner-text p{ margin:0; font-size:14px; color:rgba(255,255,255,.85); }
.cookie-banner-text a{ color:var(--copper-light); font-weight:600; }
.cookie-banner-actions{ display:flex; gap:12px; flex-wrap:wrap; flex:0 0 auto; }
.cookie-banner-actions .btn{ padding:11px 22px; font-size:14px; }
@media (max-width:560px){
  .cookie-banner{ padding:18px; }
  .cookie-banner-actions{ width:100%; }
  .cookie-banner-actions .btn{ flex:1; }
}

/* Reveal animation */
[data-reveal]{ opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; }
[data-reveal].is-visible{ opacity:1; transform:none; }
