/* ============================================================
   LES VILLAS DU LAS — Design System
   Palette : Taupe foncé #5c4a3a · Taupe moyen #8b7355
             Beige doré #d4b896 · Crème #faf7f3 · Blanc #fff
   Typographie : Georgia (titres) · Arial (corps)
   ============================================================ */

:root {
  --taupe-dark:  #5c4a3a;
  --taupe:       #8b7355;
  --taupe-light: #c4a882;
  --beige-gold:  #d4b896;
  --beige-pale:  #ede8df;
  --cream:       #faf7f3;
  --cream-dark:  #f2ece3;
  --white:       #ffffff;
  --text:        #2a1e12;
  --text-muted:  #7a6a58;
  --text-light:  #b0988a;
  --radius:      18px;
  --shadow-sm:   0 4px 16px rgba(92,74,58,.08);
  --shadow-md:   0 8px 28px rgba(92,74,58,.12);
  --shadow-lg:   0 18px 48px rgba(92,74,58,.16);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: Georgia, serif; line-height: 1.1; }
h1 { font-size: clamp(36px, 5vw, 58px); }
h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 3vw, 26px); }
p { margin-bottom: 16px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===== TOPBAR ===== */
.topbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--beige-pale);
  box-shadow: 0 2px 12px rgba(92,74,58,.06);
}
.topbar-inner {
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 46px; height: 46px; object-fit: contain; border-radius: 8px; mix-blend-mode: multiply; }
.brand strong { display: block; font-family: Georgia, serif; font-size: 22px; color: var(--taupe-dark); line-height: 1; white-space: nowrap; }
.brand small { display: block; font-size: 11px; color: var(--taupe); margin-top: 3px; white-space: nowrap; }

.nav-menu { display: flex; align-items: center; gap: 20px; font-size: 13px; flex: 1; justify-content: center; }
.nav-menu a { color: var(--text); white-space: nowrap; transition: color .2s; font-weight: 500; }
.nav-menu a:hover { color: var(--taupe); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-btn {
  background: var(--taupe-dark); color: var(--white);
  padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 13px;
  white-space: nowrap; transition: background .2s;
}
.header-btn:hover { background: var(--taupe); }

.whatsapp-icon {
  width: 38px; height: 38px; border-radius: 50%;
  border: 2px solid var(--taupe-dark); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.whatsapp-icon img { width: 20px; height: 20px; }

/* Burger mobile */
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--taupe-dark); border-radius: 2px; transition: .25s; }

@media (max-width: 1000px) {
  .burger { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-top: 1px solid var(--beige-pale);
    flex-direction: column; padding: 20px 24px; gap: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 100; align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
  .topbar { position: relative; }
  .header-btn { padding: 9px 16px; font-size: 12px; }
}
@media (max-width: 560px) {
  .brand small { display: none; }
  .header-btn { display: none; }
  .topbar-inner { height: 64px; }
}

/* ===== HERO ACCUEIL ===== */
.home-hero-exact {
  position: relative; min-height: 600px; overflow: hidden;
  background: url('assets/hero.jpg') center center / cover no-repeat;
}
.hero-dark {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(42,30,18,.85) 0%, rgba(42,30,18,.55) 50%, rgba(42,30,18,.2) 100%);
}
.hero-exact-content {
  position: relative; z-index: 2;
  min-height: 600px; display: flex; align-items: center;
}
.hero-copy { max-width: 560px; padding: 100px 0 80px; }
.hero-label {
  text-transform: uppercase; letter-spacing: 5px; font-size: 12px;
  color: var(--beige-gold); font-weight: 700; margin-bottom: 16px;
}
.home-hero-exact h1 { font-family: Georgia, serif; font-size: clamp(36px,5vw,56px); line-height: 1.05; color: var(--white); margin-bottom: 20px; }
.home-hero-exact h1 span { color: var(--beige-gold); }
.home-hero-exact p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.88); max-width: 480px; margin-bottom: 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-btn-main {
  background: var(--taupe-dark); color: var(--white);
  padding: 13px 24px; border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: background .2s, transform .15s;
}
.hero-btn-main:hover { background: var(--taupe); transform: translateY(-1px); }
.hero-btn-outline {
  border: 1.5px solid rgba(255,255,255,.7); color: var(--white);
  background: rgba(255,255,255,.08); backdrop-filter: blur(4px);
  padding: 13px 24px; border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: background .2s;
}
.hero-btn-outline:hover { background: rgba(255,255,255,.18); }

@media (max-width: 768px) {
  .home-hero-exact { min-height: 520px; }
  .hero-exact-content { min-height: 520px; }
  .hero-copy { padding: 90px 0 60px; }
  .hero-actions { flex-direction: column; }
  .hero-btn-main, .hero-btn-outline { width: 100%; text-align: center; }
}
@media (max-width: 480px) {
  .home-hero-exact { min-height: 480px; }
  .hero-exact-content { min-height: 480px; }
  .hero-copy { padding: 80px 0 50px; }
}

/* ===== FEATURE STRIP ===== */
.feature-strip-wrap { margin-top: -40px; position: relative; z-index: 5; margin-bottom: 60px; }
.feature-strip {
  background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-lg); display: grid;
  grid-template-columns: repeat(7, 1fr); overflow: hidden;
}
.feature-item {
  min-height: 72px; padding: 16px 12px; border-right: 1px solid var(--beige-pale);
  display: flex; align-items: center; gap: 10px; justify-content: center; text-align: left;
}
.feature-item:last-child { border-right: 0; }
.feature-item span { color: var(--taupe); font-size: 22px; flex-shrink: 0; }
.feature-item strong { color: var(--taupe-dark); font-size: 12px; line-height: 1.3; }
.hp-feat { display: flex; align-items: center; gap: 10px; padding: 16px 14px; border-right: 1px solid var(--beige-pale); }
.hp-feat:last-child { border-right: 0; }
.hp-feat-icon { font-size: 22px; }
.hp-feat strong { color: var(--taupe-dark); font-size: 12px; }

@media (max-width: 900px) {
  .feature-strip { grid-template-columns: repeat(3, 1fr); }
  .feature-strip-wrap { margin-top: 0; }
}
@media (max-width: 560px) {
  .feature-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ===== PAGE HERO (pages intérieures) ===== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--taupe-dark) 0%, var(--taupe) 100%);
  color: var(--white); padding: 80px 0 70px; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/hero.jpg') 65% center / cover no-repeat; opacity: .08;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 50px; background: linear-gradient(to bottom, transparent, var(--cream));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(32px, 4vw, 50px); color: var(--white); margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.82); max-width: 560px; line-height: 1.65; margin: 0; }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--beige-gold); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 20px;
}
@media (max-width: 600px) {
  .page-hero { padding: 60px 0 50px; }
}

/* ===== SECTIONS ===== */
.pro-section { padding: 80px 0; background: var(--cream); }
.pro-section.white { background: var(--white); }
.pro-section.dark { background: var(--taupe-dark); color: var(--white); }
.hp-section-tag { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--taupe); margin-bottom: 12px; }
.hp-section-title { font-family: Georgia, serif; font-size: clamp(28px, 4vw, 40px); color: var(--text); margin: 0 0 14px; }
.hp-section-sub { font-size: 16px; color: var(--text-muted); max-width: 580px; line-height: 1.7; margin: 0 0 48px; }
.pro-tag { font-size: 11px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--taupe); margin-bottom: 12px; }
.pro-title { font-family: Georgia, serif; font-size: clamp(28px, 4vw, 40px); color: var(--text); margin: 0 0 14px; line-height: 1.1; }
.pro-title.white { color: var(--white); }
.pro-sub { font-size: 16px; color: var(--text-muted); max-width: 580px; line-height: 1.7; margin: 0 0 48px; }

/* ===== MAISONS (accueil) ===== */
.hp-maisons { padding: 80px 0; background: var(--cream); }
.hp-maisons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.hp-maison-card { background: var(--white); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--beige-pale); transition: transform .25s, box-shadow .25s; }
.hp-maison-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.hp-maison-img { position: relative; height: 280px; overflow: hidden; }
.hp-maison-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hp-maison-card:hover .hp-maison-img img { transform: scale(1.04); }
.hp-maison-badge { position: absolute; top: 16px; left: 16px; background: var(--taupe-dark); color: var(--white); font-size: 12px; font-weight: 700; padding: 7px 16px; border-radius: 999px; }
.hp-maison-body { padding: 26px; }
.hp-maison-specs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.hp-spec { background: var(--cream-dark); border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: var(--taupe-dark); }
.hp-maison-body h3 { font-family: Georgia, serif; font-size: 22px; color: var(--text); margin-bottom: 10px; }
.hp-maison-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.hp-maison-footer { display: flex; align-items: center; gap: 16px; justify-content: space-between; }
.hp-maison-btn { background: var(--taupe-dark); color: var(--white); padding: 12px 22px; border-radius: 8px; font-weight: 700; font-size: 13px; transition: background .2s; }
.hp-maison-btn:hover { background: var(--taupe); }
.hp-maison-link { font-size: 13px; font-weight: 700; color: var(--taupe); text-decoration: underline; }

@media (max-width: 768px) { .hp-maisons-grid { grid-template-columns: 1fr; } }

/* ===== RÉSERVER EN DIRECT ===== */
.hp-direct { background: var(--taupe-dark); color: var(--white); padding: 80px 0; }
.hp-direct-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hp-direct h2 { font-family: Georgia, serif; font-size: clamp(28px, 4vw, 40px); color: var(--white); margin-bottom: 16px; }
.hp-direct p { font-size: 15px; opacity: .85; line-height: 1.7; margin-bottom: 28px; }
.hp-direct-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--beige-gold); color: var(--taupe-dark);
  padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px;
  transition: background .2s, transform .15s;
}
.hp-direct-btn:hover { background: var(--taupe-light); transform: translateY(-2px); }
.hp-direct-avantages { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hp-avantage { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 16px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 12px; }
.hp-avantage-icon { font-size: 22px; }

@media (max-width: 768px) {
  .hp-direct-inner { grid-template-columns: 1fr; gap: 36px; }
  .hp-direct-avantages { grid-template-columns: 1fr; }
}

/* ===== AVIS ===== */
.hp-avis { padding: 80px 0; background: var(--white); }

/* Slider */
.slider-wrap { position: relative; overflow: hidden; }
.slider-track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.slide-card { background: var(--cream); border-radius: 22px; padding: 28px; border: 1px solid var(--beige-pale); flex: 0 0 380px; display: flex; flex-direction: column; gap: 14px; }
.slide-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--beige-gold); flex-shrink: 0; }
.slide-head { display: flex; align-items: center; gap: 12px; }
.slide-name { font-weight: 700; font-size: 14px; color: var(--text); }
.slide-src { font-size: 12px; color: var(--text-light); }
.slide-stars { color: #f5a623; font-size: 13px; letter-spacing: 2px; }
.slide-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; flex: 1; margin: 0; }
.slider-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid var(--beige-pale); background: var(--white); cursor: pointer; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: all .2s; color: var(--taupe-dark); }
.slider-btn:hover { background: var(--taupe-dark); color: var(--white); border-color: var(--taupe-dark); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--beige-pale); cursor: pointer; transition: background .2s, width .2s; }
.slider-dot.active { background: var(--taupe-dark); width: 24px; border-radius: 999px; }

/* Grille avis fixes */
.hp-avis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.hp-review { background: var(--cream); border-radius: 20px; padding: 26px; border: 1px solid var(--beige-pale); }
.hp-review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hp-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--beige-pale); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--taupe-dark); font-size: 16px; flex-shrink: 0; }
.hp-review-name { font-weight: 700; font-size: 14px; color: var(--text); }
.hp-review-source { font-size: 12px; color: var(--text-light); }
.hp-review-stars { color: #f5a623; font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }

@media (max-width: 768px) { .hp-avis-grid { grid-template-columns: 1fr; } }

/* ===== FOOTER CTA ===== */
.pro-cta-banner {
  background: linear-gradient(135deg, var(--taupe-dark), var(--taupe));
  border-radius: 24px; padding: 48px; text-align: center; color: var(--white); margin-top: 60px;
}
.pro-cta-banner h3 { font-family: Georgia, serif; font-size: clamp(22px, 3vw, 32px); margin-bottom: 12px; }
.pro-cta-banner p { font-size: 16px; opacity: .82; margin-bottom: 28px; }
.pro-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--beige-gold); color: var(--taupe-dark);
  padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px;
  transition: background .2s, transform .15s;
}
.pro-cta-btn:hover { background: var(--taupe-light); transform: translateY(-2px); }
.pro-cta-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1.5px solid rgba(255,255,255,.5); color: var(--white);
  padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px;
  margin-left: 12px; transition: background .2s;
}
.pro-cta-btn-outline:hover { background: rgba(255,255,255,.12); }

@media (max-width: 600px) {
  .pro-cta-banner { padding: 32px 24px; }
  .pro-cta-btn, .pro-cta-btn-outline { width: 100%; justify-content: center; margin-left: 0; margin-top: 10px; }
}

/* ===== FOOTER ===== */
.footer { background: var(--cream-dark); padding: 52px 0 24px; color: var(--text); border-top: 1px solid var(--beige-pale); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 32px; }
.logo { font-family: Georgia, serif; font-size: 22px; font-weight: bold; color: var(--taupe-dark); margin-bottom: 12px; }
.logo span { display: block; font-family: Arial, sans-serif; font-size: 12px; font-weight: 400; color: var(--taupe); margin-top: 4px; }
.footer-grid strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; color: var(--taupe-dark); margin-bottom: 14px; }
.small { font-size: 13px; color: var(--text-muted); line-height: 1.8; }
.small a { color: var(--text-muted); }
.small a:hover { color: var(--taupe-dark); }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.social-dot { width: 32px; height: 32px; border-radius: 50%; background: var(--taupe); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; transition: background .2s; cursor: pointer; }
.social-dot:hover { background: var(--taupe-dark); }
.btn { display: inline-flex; align-items: center; background: var(--taupe-dark); color: var(--white); padding: 11px 20px; border-radius: 8px; font-weight: 700; font-size: 13px; transition: background .2s; }
.btn:hover { background: var(--taupe); }

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===== PROS BLOCKS (pages intérieures) ===== */
.pro-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pro-info-block { background: var(--white); border-radius: 20px; padding: 28px; border: 1px solid var(--beige-pale); box-shadow: var(--shadow-sm); }
.pro-info-icon { font-size: 30px; margin-bottom: 14px; }
.pro-info-block h3 { font-family: Georgia, serif; font-size: 19px; color: var(--taupe-dark); margin-bottom: 12px; }
.pro-info-block p, .pro-info-block li { font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.pro-info-block ul { padding-left: 18px; list-style: disc; }
.pro-cta-banner { margin-top: 60px; }

@media (max-width: 900px) { .pro-info-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pro-info-grid { grid-template-columns: 1fr; } }

/* ===== CARDS PRO ===== */
.pro-card { background: var(--white); border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--beige-pale); transition: transform .25s, box-shadow .25s; }
.pro-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.pro-card-img img { width: 100%; height: 260px; object-fit: cover; transition: transform .4s; }
.pro-card:hover .pro-card-img img { transform: scale(1.04); }
.pro-card-body { padding: 26px; }
.pro-card-body h3 { font-family: Georgia, serif; font-size: 22px; color: var(--text); margin-bottom: 10px; }
.pro-card-body p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ===== FORMULAIRE ===== */
.form { display: grid; gap: 14px; }
input, textarea, select { width: 100%; padding: 13px 16px; border: 1.5px solid var(--beige-pale); border-radius: 10px; font-family: Arial, sans-serif; font-size: 14px; color: var(--text); background: var(--white); transition: border-color .2s; }
input:focus, textarea:focus, select:focus { outline: none; border-color: var(--taupe); }
textarea { min-height: 130px; resize: vertical; }
.btn-submit { background: var(--taupe-dark); color: var(--white); padding: 14px 28px; border-radius: 10px; border: none; font-weight: 700; font-size: 15px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: background .2s, transform .15s; width: 100%; justify-content: center; }
.btn-submit:hover { background: var(--taupe); transform: translateY(-1px); }

/* ===== GALERIE ===== */
.house-gallery-page { background: var(--cream); }
.house-gallery-hero { text-align: center; padding: 64px 20px 32px; }
.house-gallery-hero h1 { font-family: Georgia, serif; color: var(--taupe-dark); font-size: clamp(36px,5vw,60px); margin-bottom: 10px; }
.house-gallery-hero .sub { text-transform: uppercase; letter-spacing: 6px; color: var(--taupe); font-weight: 600; font-size: 16px; }
.house-gallery-hero .line { width: 60px; height: 2px; background: var(--taupe); margin: 20px auto 0; }
.house-subnav { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 0 auto 44px; padding: 0 20px; }
.house-subnav a, .house-subnav span { border: 1px solid var(--beige-pale); background: var(--white); border-radius: 999px; padding: 11px 22px; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; transition: all .2s; }
.house-subnav a:hover { border-color: var(--taupe-dark); color: var(--taupe-dark); }
.house-subnav span { background: var(--taupe-dark); color: var(--white); border-color: var(--taupe-dark); }

.house-top-grid { max-width: 1440px; margin: 0 auto 18px; padding: 0 22px; display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 260px 260px; gap: 14px; }
.house-top-grid a:first-child { grid-row: span 2; }
.house-top-grid a { position: relative; display: block; overflow: hidden; border-radius: 12px; box-shadow: var(--shadow-sm); }
.house-top-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.house-top-grid a:hover img { transform: scale(1.04); }
.house-gallery-grid { max-width: 1440px; margin: 0 auto 70px; padding: 0 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.house-gallery-grid a { position: relative; display: block; overflow: hidden; border-radius: 10px; min-height: 300px; box-shadow: var(--shadow-sm); }
.house-gallery-grid img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform .35s; }
.house-gallery-grid a:hover img { transform: scale(1.04); }
.house-caption { position: absolute; inset: 0; bottom: 0; top: auto; padding: 20px; background: linear-gradient(to top, rgba(42,30,18,.7), transparent); color: var(--white); font-weight: 700; opacity: 0; transition: .25s; }
.house-gallery-grid a:hover .house-caption, .house-top-grid a:hover .house-caption { opacity: 1; }

.house-intro-layout { max-width: 1180px; margin: 0 auto 52px; padding: 0 24px; display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; }
.house-intro-card { background: var(--white); border: 1px solid var(--beige-pale); border-radius: 22px; padding: 32px; box-shadow: var(--shadow-sm); }
.house-equip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 16px; }
.house-equip { background: var(--cream-dark); border-radius: 12px; padding: 13px; color: var(--taupe-dark); font-weight: 700; font-size: 13px; }

@media (max-width: 950px) {
  .house-gallery-hero h1 { font-size: 40px; }
  .house-intro-layout { grid-template-columns: 1fr; }
  .house-top-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .house-top-grid a:first-child { grid-row: auto; }
  .house-top-grid a, .house-top-grid img { height: 250px; }
  .house-gallery-grid { grid-template-columns: 1fr 1fr; }
  .house-gallery-grid a, .house-gallery-grid img { min-height: 240px; }
  .house-equip-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .house-gallery-grid { grid-template-columns: 1fr; }
}

/* ===== CALENDRIER ===== */
.cal-status { padding: 12px 18px; border-radius: 10px; font-size: 14px; margin-bottom: 20px; }
.cal-status.ok { background: #f0ebe3; color: var(--taupe-dark); border: 1px solid var(--beige-pale); }
.cal-status.error { background: #fce4e4; color: #a00; border: 1px solid #f5c6c6; }
.cal-spec { display: inline-flex; align-items: center; gap: 6px; background: var(--cream-dark); border-radius: 999px; padding: 6px 14px; font-size: 12px; font-weight: 700; color: var(--taupe-dark); margin-right: 8px; margin-bottom: 8px; }

/* ===== AVIS PAGE ===== */
.avis-panel { }
.platform-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.platform-pill { background: var(--cream-dark); border-radius: 16px; padding: 16px 22px; font-size: 14px; border: 1px solid var(--beige-pale); flex: 1; min-width: 200px; }
.platform-pill strong { display: block; color: var(--taupe-dark); font-size: 16px; }
.rating-big { text-align: center; padding: 32px; background: var(--white); border-radius: 22px; border: 1px solid var(--beige-pale); box-shadow: var(--shadow-sm); margin-bottom: 28px; }
.num { font-family: Georgia, serif; font-size: 64px; color: var(--taupe-dark); line-height: 1; }
.stars { color: #f5a623; font-size: 22px; letter-spacing: 4px; }
.pro-review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pro-review { background: var(--cream); border-radius: 20px; padding: 26px; border: 1px solid var(--beige-pale); }
.pro-review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.pro-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--beige-pale); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--taupe-dark); font-size: 16px; flex-shrink: 0; }
.pro-review-stars { color: #f5a623; font-size: 13px; letter-spacing: 2px; margin-bottom: 10px; }
.pro-review p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }
@media (max-width: 768px) { .pro-review-grid { grid-template-columns: 1fr; } }

/* ===== TABLES TARIFS ===== */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { padding: 15px 18px; border-bottom: 1px solid var(--beige-pale); text-align: left; font-size: 14px; }
.price-table th { background: var(--taupe-dark); color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.price-table tr:last-child td { border-bottom: 0; }
.price-table tr:hover td { background: var(--cream); }

/* ===== POPUP SOCIAL PROOF ===== */
#social-popup { position: fixed; bottom: 28px; left: 28px; z-index: 9999; background: var(--white); border-radius: 18px; padding: 16px 18px; box-shadow: var(--shadow-lg); border: 1px solid var(--beige-pale); display: flex; align-items: center; gap: 14px; max-width: 290px; transform: translateY(120px); opacity: 0; transition: transform .5s cubic-bezier(.34,1.4,.64,1), opacity .4s ease; pointer-events: none; }
#social-popup.visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.popup-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--beige-pale); flex-shrink: 0; }
.popup-content { flex: 1; min-width: 0; }
.popup-msg { font-size: 13px; color: var(--text); font-weight: 600; line-height: 1.4; }
.popup-time { font-size: 11px; color: var(--text-light); margin-top: 3px; display: flex; align-items: center; gap: 4px; }
.popup-time::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #4caf50; display: inline-block; flex-shrink: 0; }
.popup-close { background: none; border: none; cursor: pointer; color: var(--beige-pale); font-size: 18px; line-height: 1; padding: 2px 4px; border-radius: 4px; transition: color .2s; flex-shrink: 0; }
.popup-close:hover { color: var(--text-muted); }

/* ===== CALENDRIER DISPO ===== */
.cal-tabs { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.cal-tab { padding: 10px 22px; border-radius: 999px; border: 1.5px solid var(--beige-pale); background: var(--white); font-size: 13px; font-weight: 700; color: var(--text-muted); cursor: pointer; transition: all .2s; }
.cal-tab.active, .cal-tab:hover { background: var(--taupe-dark); color: var(--white); border-color: var(--taupe-dark); }

/* ===== HP MAISONS CARDS (nos-villas.html) ===== */
.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.card { background: var(--white); border: 1px solid var(--beige-pale); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card img { width: 100%; height: 260px; object-fit: cover; display: block; }
.card-body { padding: 24px; }
.house-label { background: var(--taupe-dark); color: var(--white); font-size: 12px; font-weight: 700; padding: 7px 16px; border-radius: 999px; }
.house-icons { display: flex; gap: 16px; flex-wrap: wrap; padding: 14px 0 0; color: var(--taupe); font-size: 13px; }
.house-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 18px; }
.link-small { color: var(--text); font-size: 13px; font-weight: 700; }

@media (max-width: 768px) { .card-grid { grid-template-columns: 1fr; } }

/* ===== UTILS ===== */
.highlight { color: var(--beige-gold); }
.kicker { letter-spacing: 3px; text-transform: uppercase; color: var(--taupe); font-weight: 700; font-size: 12px; margin-bottom: 14px; }
.check { margin: 10px 0; font-size: 14px; }
.check::before { content: "✓"; margin-right: 10px; color: var(--beige-gold); font-weight: 700; }
.section { padding: 72px 0; }
.section.alt { background: var(--cream); }

/* Accessibilité */
a:focus-visible, button:focus-visible { outline: 2px solid var(--taupe); outline-offset: 3px; border-radius: 4px; }

/* Gallery page las2 (compatibilité) */
.gallery-page-las2 { background: var(--cream); }
.gallery-header-las2 { text-align: center; padding: 70px 20px 36px; }
.gallery-header-las2 h1 { font-family: Georgia, serif; color: var(--taupe-dark); font-size: clamp(36px,5vw,60px); margin-bottom: 10px; }
.gallery-header-las2 .sub { text-transform: uppercase; letter-spacing: 6px; color: var(--taupe); font-weight: 600; font-size: 16px; }
.gallery-header-las2 .line { width: 60px; height: 2px; background: var(--taupe); margin: 20px auto 0; }
.gallery-filters-las2 { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.gallery-filters-las2 span { border: 1px solid var(--beige-pale); background: var(--white); border-radius: 999px; padding: 12px 26px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.gallery-filters-las2 span:first-child { background: var(--taupe-dark); color: var(--white); }
.gallery-las2-grid { max-width: 1440px; margin: 0 auto 70px; padding: 0 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-las2-grid a { position: relative; display: block; overflow: hidden; border-radius: 10px; min-height: 300px; box-shadow: var(--shadow-sm); }
.gallery-las2-grid img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: .3s ease; }
.gallery-las2-grid a:hover img { transform: scale(1.035); }
.gallery-las2-grid .caption { position: absolute; inset: 0; top: auto; padding: 18px; background: linear-gradient(to top, rgba(42,30,18,.65), transparent); color: var(--white); font-weight: 700; opacity: 0; transition: .25s; }
.gallery-las2-grid a:hover .caption { opacity: 1; }
.las2-info { max-width: 1120px; margin: 0 auto 70px; padding: 0 22px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; }
.las2-info-card { background: var(--white); border: 1px solid var(--beige-pale); border-radius: 20px; padding: 30px; box-shadow: var(--shadow-sm); }
@media (max-width: 950px) { .gallery-las2-grid { grid-template-columns: 1fr 1fr; } .las2-info { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .gallery-las2-grid { grid-template-columns: 1fr; } }

/* Villa tab onglets */
.villa-tab { padding: 10px 22px; border-radius: 10px; font-weight: 700; font-size: 13px; cursor: pointer; border: none; background: transparent; color: var(--text-muted); transition: all .2s; }
.villa-tab.active, .villa-tab:hover { background: var(--white); color: var(--taupe-dark); box-shadow: var(--shadow-sm); }
