/* ===== CASANETTE — Design system (identique au site original) ===== */
:root {
  --navy: #0d1b2e;
  --sage: #5c7060;
  --sage-light: #6b8f5e;
  --gold: #c69e73;
  --khaki: #5c6b33;
  --khaki-tint: #d9ddc8;
  --beige: #efebe8;
  --beige-dark: #e2dbd3;
  --white: #ffffff;
  --text-dark: #0d1b2e;
  --text-mid: #4a5568;
  --text-light: #718096;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "DM Sans", sans-serif; background: var(--beige); color: var(--text-dark); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(239,235,232,0.97); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(198,158,115,0.2); padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-logo img { height: 65px; }
.nav-links { display: flex; gap: 1.1rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--navy); font-size: 0.9rem; font-weight: 400; letter-spacing: 0.02em; transition: color 0.2s; cursor: pointer; }
.nav-links a:hover, .nav-links a.current { color: var(--sage); }
.nav-cta { background: var(--navy); color: white; padding: 0.6rem 1.4rem; border-radius: 2px; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: background 0.2s; cursor: pointer; }
.nav-cta:hover { background: var(--sage); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(239,235,232,0.98); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(198,158,115,0.3); z-index: 99; padding: 1rem 0; max-height: calc(100vh - 70px); overflow-y: auto; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.8rem 2rem; text-decoration: none; color: var(--navy); font-size: 1rem; font-weight: 400; border-bottom: 1px solid rgba(198,158,115,0.15); cursor: pointer; }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { background: var(--beige-dark); color: var(--sage); }

/* HERO */
.hero { min-height: 90vh; display: flex; align-items: center; padding: 110px 2rem 4rem; max-width: 1200px; margin: 0 auto; gap: 4rem; }
.hero-content { flex: 1; }
.hero-badge { display: inline-block; background: var(--beige-dark); border: 1px solid var(--gold); color: var(--gold); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 1.5rem; }
.hero h1 { font-family: "Playfair Display", serif; font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.15; color: var(--navy); margin-bottom: 1rem; }
.hero h1 em { font-style: italic; color: var(--sage); }
.hero-slogan { font-family: "Playfair Display", serif; font-style: italic; font-size: 1.1rem; color: var(--text-mid); margin-bottom: 2rem; padding-left: 1rem; border-left: 3px solid var(--gold); }
.hero-tags { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-tag { background: var(--white); border: 1px solid var(--beige-dark); padding: 0.4rem 1rem; border-radius: 2px; font-size: 0.85rem; color: var(--text-mid); }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary { background: var(--navy); color: white; padding: 0.9rem 2rem; border-radius: 2px; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: background 0.2s; display: inline-block; cursor: pointer; }
.btn-primary:hover { background: var(--sage); }
.btn-secondary { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); padding: 0.9rem 2rem; border-radius: 2px; text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: all 0.2s; display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; }
.btn-secondary:hover { background: var(--navy); color: white; }
.hero-image { flex: 1; max-width: 420px; display: flex; flex-direction: column; gap: 1rem; }
.hero-logo-card { background: var(--white); border: 1px solid rgba(198,158,115,0.3); border-radius: 4px; padding: 2rem; text-align: center; }
.hero-logo-card img { width: 100%; max-width: 380px; height: auto; }
.hero-situations { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.situation-card { background: var(--white); border: 1px solid var(--beige-dark); border-radius: 4px; padding: 1rem 0.75rem; text-align: center; text-decoration: none; display: block; }
.situation-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.5rem; font-size: 1.1rem; }
.situation-card.navy .situation-icon { background: var(--navy); }
.situation-card.sage .situation-icon { background: var(--sage); }
.situation-card.gold .situation-icon { background: var(--gold); }
.situation-card h4 { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.25rem; }
.situation-card p { font-size: 0.7rem; color: var(--text-light); line-height: 1.4; }

.section { padding: 4rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section-title { font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 1rem; line-height: 1.2; }

.engagement { background: var(--sage); padding: 3rem 2rem; text-align: center; color: white; }
.engagement h2 { font-family: "Playfair Display", serif; font-style: italic; font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 0.75rem; }
.engagement p { font-size: 0.95rem; opacity: 0.85; }
.engagement-items { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; margin-top: 2rem; }
.engagement-item { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.engagement-item span:first-child { font-size: 1.5rem; }
.engagement-item span:last-child { font-size: 0.8rem; opacity: 0.8; text-align: center; max-width: 120px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: var(--white); border: 1px solid var(--beige-dark); border-radius: 4px; padding: 2rem; transition: background 0.2s, border-color 0.2s, transform 0.2s; text-decoration: none; display: block; color: inherit; }
.service-card:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-3px); }
.service-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; transition: background 0.2s; }
.service-card.debarrassage .service-icon { background: rgba(13,27,46,0.1); }
.service-card.nettoyage .service-icon { background: rgba(92,112,96,0.1); }
.service-card.travaux .service-icon { background: rgba(198,158,115,0.15); }
.service-card:hover .service-icon { background: rgba(255,255,255,0.2); }
.service-card h3 { font-family: "Playfair Display", serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.75rem; transition: color 0.2s; }
.service-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card ul li { font-size: 0.9rem; color: var(--text-mid); display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.service-card ul li::before { content: "—"; color: var(--gold); font-weight: 600; flex-shrink: 0; transition: color 0.2s; }
.service-card p.card-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; transition: color 0.2s; }
.service-card .read-more { font-size: 0.85rem; color: var(--gold); font-weight: 600; transition: color 0.2s; }
.service-card:hover h3, .service-card:hover p.card-desc, .service-card:hover ul li, .service-card:hover .read-more { color: white; }
.service-card:hover ul li::before { color: white; }

.audience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.audience-card { background: var(--white); border-radius: 4px; padding: 1.75rem; border-top: 3px solid transparent; border-left: 1px solid var(--beige-dark); border-right: 1px solid var(--beige-dark); border-bottom: 1px solid var(--beige-dark); transition: border-top-color 0.2s, background 0.2s; }
.audience-card:hover { border-top-color: var(--gold); background: var(--sage); }
.audience-card h3 { font-family: "Playfair Display", serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 0.5rem; transition: color 0.2s; }
.audience-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.6; transition: color 0.2s; }
.audience-card:hover h3 { color: white; }
.audience-card:hover p { color: rgba(255,255,255,0.85); }
.audience-card:hover a { color: white !important; }

.prescrip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.prescrip-card { background: var(--navy); color: white; border-radius: 4px; padding: 2rem; transition: background 0.2s; }
.prescrip-card:hover { background: var(--sage); }
.prescrip-card h3 { font-family: "Playfair Display", serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.75rem; }
.prescrip-card p { font-size: 0.87rem; color: rgba(255,255,255,0.75); line-height: 1.6; }

.real-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.real-card { background: var(--khaki-tint); border: 1px solid var(--khaki); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; }
.real-card img { width: 100%; height: 240px; object-fit: cover; display: block; background: var(--beige-dark); }
.real-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; transition: background 0.2s; }
.real-card-body h3 { font-family: "Playfair Display", serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; transition: color 0.2s; }
.real-card-body p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; flex: 1; margin-bottom: 0.75rem; transition: color 0.2s; }
.real-card-body .voir-btn { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-decoration: none; transition: color 0.2s; }
.real-card:hover .real-card-body { background: var(--sage); }
.real-card:hover .real-card-body h3 { color: white; }
.real-card:hover .real-card-body p { color: rgba(255,255,255,0.85); }
.real-card:hover .real-card-body .voir-btn { color: white; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info h3 { font-family: "Playfair Display", serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.contact-item-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--beige-dark); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-text p:first-child { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 0.1rem; }
.contact-item-text a, .contact-item-text p:last-child { font-size: 0.95rem; color: var(--navy); font-weight: 500; text-decoration: none; }
.contact-item-text a:hover { color: var(--sage); }
.whatsapp-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: #25D366; color: white; padding: 0.9rem 1.75rem; border-radius: 2px; text-decoration: none; font-size: 0.9rem; font-weight: 500; margin-top: 1rem; transition: background 0.2s; }
.whatsapp-btn:hover { background: #1da854; }

footer { background: var(--navy); color: white; padding: 3rem 2rem 2rem; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { font-family: "Playfair Display", serif; color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.footer-col img { height: 60px; margin-bottom: 1rem; }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 0.4rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 0.25rem; }

.page-hero { padding: 120px 2rem 3rem; max-width: 1200px; margin: 0 auto; }
.breadcrumb { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--sage); }
.page-hero h1 { font-family: "Playfair Display", serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 1rem; }
.page-hero p.intro { font-size: 1rem; color: var(--text-mid); max-width: 700px; line-height: 1.7; }

.content-block { max-width: 800px; }
.content-block h2 { font-family: "Playfair Display", serif; font-size: 1.6rem; color: var(--navy); margin: 2rem 0 1rem; }
.content-block h3 { font-family: "Playfair Display", serif; font-size: 1.25rem; color: var(--navy); margin: 1.5rem 0 0.75rem; }
.content-block p { font-size: 0.98rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1rem; }
.content-block ul { margin: 1rem 0 1rem 1.2rem; }
.content-block ul li { font-size: 0.98rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 0.4rem; }

.internal-links { background: var(--beige-dark); border-radius: 4px; padding: 2rem; margin-top: 2.5rem; }
.internal-links h3 { font-family: "Playfair Display", serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 1rem; }
.internal-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 0.75rem; }
.internal-links-grid a { background: var(--white); padding: 0.75rem 1rem; border-radius: 2px; text-decoration: none; color: var(--navy); font-size: 0.85rem; border: 1px solid var(--beige-dark); transition: background 0.2s, border-color 0.2s, color 0.2s; }
.internal-links-grid a:hover { background: var(--sage); border-color: var(--sage); color: white; }

.cta-block { background: var(--beige-dark); border-radius: 4px; padding: 2.5rem; text-align: center; margin-top: 3rem; }
.cta-block p.lead { font-family: "Playfair Display", serif; font-style: italic; font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.cta-block p.sub { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 1.5rem; }

.zones-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.zones-list span { background: var(--white); border: 1px solid var(--beige-dark); padding: 0.35rem 0.9rem; border-radius: 20px; font-size: 0.82rem; color: var(--text-mid); }

.maps-embed { border-radius: 4px; overflow: hidden; border: 1px solid var(--beige-dark); margin-top: 1.5rem; }
.maps-embed iframe { width: 100%; height: 300px; border: 0; display: block; }

.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.contact-card { background: var(--white); border: 1px solid var(--beige-dark); border-radius: 4px; padding: 2rem; text-align: center; text-decoration: none; display: block; transition: background 0.2s, border-color 0.2s; }
.contact-card:hover { background: var(--sage); border-color: var(--sage); }
.contact-card .icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1.4rem; transition: background 0.2s; }
.contact-card:hover .icon { background: rgba(255,255,255,0.2) !important; }
.contact-card .label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 0.4rem; transition: color 0.2s; }
.contact-card .value { font-size: 1.05rem; font-weight: 600; color: var(--navy); transition: color 0.2s; }
.contact-card .sub { font-size: 0.8rem; color: var(--text-light); margin-top: 0.3rem; transition: color 0.2s; }
.contact-card:hover .label, .contact-card:hover .value, .contact-card:hover .sub { color: white; }

.faq-item { border-bottom: 1px solid var(--beige-dark); padding: 1.25rem 0; }
.faq-item h3 { font-family: "Playfair Display", serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }

/* NAV PHONE */
.nav-phone { display: flex; align-items: center; gap: 0.4rem; color: var(--navy); text-decoration: none; font-size: 0.9rem; font-weight: 500; margin-right: 1rem; white-space: nowrap; }
.nav-social { display: flex; gap: 0.5rem; margin-right: 1rem; flex-shrink: 0; }
.nav-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; min-width: 38px; min-height: 38px; border-radius: 50%; background: rgba(13,27,46,0.08); color: var(--navy); transition: background 0.2s, color 0.2s; box-sizing: border-box; }
.nav-social a:hover { background: var(--sage); color: white; }
.nav-social a svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; display: block; }
.nav-phone:hover { color: var(--sage); }

/* SOCIAL LINKS (footer) */
.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }
.social-links a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.12); color: white; text-decoration: none; transition: background 0.2s, transform 0.2s; }
.social-links a:hover { background: var(--gold); transform: translateY(-2px); }
.social-links a svg { width: 19px; height: 19px; fill: white; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.75rem; }
.blog-card { background: var(--khaki-tint); border: 1px solid var(--khaki); border-radius: 4px; padding: 1.75rem; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.blog-card:hover { background: var(--sage); border-color: var(--sage); transform: translateY(-3px); }
.blog-card h3 { font-family: "Playfair Display", serif; font-size: 1.15rem; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.35; transition: color 0.2s; }
.blog-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; flex: 1; transition: color 0.2s; }
.blog-card .read-more { font-size: 0.85rem; color: var(--gold); font-weight: 600; transition: color 0.2s; }
.blog-card .blog-date { transition: color 0.2s; }
.blog-card:hover h3 { color: white; }
.blog-card:hover p { color: rgba(255,255,255,0.85); }
.blog-card:hover .read-more { color: white; }
.blog-card:hover .blog-date { color: rgba(255,255,255,0.7); }
.blog-date { font-size: 0.75rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.5rem; }

/* QUI SOMMES-NOUS */
.about-wrapper { display: grid; grid-template-columns: 280px 1fr; gap: 3rem; align-items: start; }
.about-photo { width: 100%; border-radius: 4px; overflow: hidden; border: 1px solid var(--beige-dark); }
.about-photo img { width: 100%; height: auto; display: block; }
.about-name { font-family: "Playfair Display", serif; font-size: 1.1rem; color: var(--navy); margin-top: 1rem; text-align: center; }
.about-role { font-size: 0.85rem; color: var(--text-light); text-align: center; }
@media (max-width: 768px) {
  .about-wrapper { grid-template-columns: 1fr; }
  .about-photo { max-width: 280px; margin: 0 auto; }
}

/* TEXT PANEL — fond kaki léger derrière les blocs de texte (articles, contenu) */
.text-panel { background: var(--khaki-tint); border-left: 4px solid var(--khaki); border-radius: 4px; padding: 2.5rem; }
.text-panel h2:first-child, .text-panel p.blog-date:first-child { margin-top: 0; }
@media (max-width: 600px) { .text-panel { padding: 1.5rem; } }

/* REVIEWS SECTION */
.reviews-section { background: var(--beige-dark); border-radius: 4px; padding: 2.5rem; margin-top: 2.5rem; }
.reviews-section h3 { font-family: "Playfair Display", serif; font-size: 1.3rem; color: var(--navy); margin-bottom: 1.5rem; text-align: center; }

@media (max-width: 768px) {
  .hero { flex-direction: column; gap: 2rem; padding-top: 90px; }
  .hero-image { max-width: 100%; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-phone { display: none; }
  .nav-social { display: none; }
}
