:root {
    /* Palette dorée / crème inspirée du logo */
    --or: #b5924a;
    --or-clair: #d4b48a;
    --or-fonce: #8a6c33;
    --creme: #f8f2e6;
    --creme-fonce: #ede2cc;
    --encre: #2b2116;
    --texte: #4a3f30;
    --texte-clair: #8a7a63;
    --blanc-chaud: #fffbf5;
    --corail: #c96540;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Lato', sans-serif;
    color: var(--texte);
    background: var(--blanc-chaud);
    line-height: 1.7;
    font-weight: 300;
  }
  a { color: var(--or-fonce); text-decoration: none; }
  img { display: block; max-width: 100%; }

  /* ============ NAV ============ */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 48px;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(255,251,245,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(181,146,74,0.15);
    transition: all 0.3s ease;
  }
  nav .brand { display: flex; align-items: center; gap: 14px; color: var(--encre); }
  .brand-mark {
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .brand-mark img { width: 100%; height: 100%; object-fit: contain; }
  .brand-text .name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--encre);
    line-height: 1;
  }
  .brand-text .sub {
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or);
    margin-top: 5px;
    font-weight: 500;
  }
  nav ul { display: flex; gap: 32px; list-style: none; align-items: center; }
  nav ul a {
    color: var(--encre);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-weight: 400;
  }
  nav ul a:hover { color: var(--or); }
  nav ul a.active { color: var(--or); }
  nav ul a.cta-nav {
    padding: 11px 26px;
    background: var(--encre);
    color: white;
    border: 1px solid var(--encre);
    transition: all 0.3s ease;
  }
  nav ul a.cta-nav:hover {
    background: var(--or);
    border-color: var(--or);
    color: white;
  }

  /* Burger mobile */
  .nav-burger {
    display: none;
    width: 44px; height: 44px;
    background: transparent;
    border: 1px solid rgba(43,33,22,0.15);
    border-radius: 50%;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
    z-index: 102;
  }
  .nav-burger:hover { border-color: var(--or); }
  .nav-burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--encre);
    transition: all 0.3s ease;
  }
  .nav-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger.active span:nth-child(2) { opacity: 0; }
  .nav-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .nav-mobile-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(43,33,22,0.6); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
  }
  .nav-mobile-overlay.active { opacity: 1; visibility: visible; }

  .nav-mobile {
    position: fixed; top: 0; right: 0;
    width: 320px; max-width: 85vw; height: 100vh;
    background: var(--creme);
    padding: 100px 32px 32px;
    display: flex; flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 101; overflow-y: auto;
  }
  .nav-mobile.active { transform: translateX(0); }
  .nav-mobile a {
    display: block;
    padding: 14px 0;
    color: var(--encre);
    font-size: 14px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(181,146,74,0.2);
    transition: all 0.3s ease;
  }
  .nav-mobile a:hover { color: var(--or); padding-left: 6px; }
  .nav-mobile a.cta-mobile {
    margin-top: 24px;
    padding: 18px 24px;
    background: var(--encre);
    color: white;
    text-align: center;
    border-bottom: none;
  }
  .nav-mobile a.cta-mobile:hover { background: var(--or); padding-left: 24px; }
  body.nav-open { overflow: hidden; }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    height: 100vh; min-height: 640px;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  .hero::before {
    content: ''; position: absolute; inset: 0;
    background-image: url('images/stock/hero-home-villas.jpg');
    background-size: cover; background-position: center;
    z-index: 0;
  }
  .hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(43,33,22,0.55), rgba(43,33,22,0.75));
    z-index: 1;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 920px; padding: 0 32px;
  }
  .hero .eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--or-clair);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 6.8vw, 86px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -1px;
    margin-bottom: 32px;
  }
  .hero h1 em {
    color: var(--or-clair);
    font-style: italic;
    font-weight: 300;
  }
  .hero .subtitle {
    font-size: 17px;
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
    color: rgba(255,251,245,0.9);
    font-weight: 300;
  }
  .hero-cta {
    display: inline-flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .btn-primary, .btn-secondary {
    padding: 16px 36px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    font-weight: 500;
  }
  .btn-primary {
    background: var(--or);
    color: white;
    border: 1px solid var(--or);
  }
  .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
  }
  .btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,251,245,0.5);
  }
  .btn-secondary:hover {
    background: var(--blanc-chaud);
    color: var(--encre);
    border-color: var(--blanc-chaud);
  }

  /* Scroll indicator */
  .scroll-indicator {
    position: absolute; bottom: 32px; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,251,245,0.7);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 2;
  }
  .scroll-indicator::after {
    content: ''; display: block;
    width: 1px; height: 40px;
    background: rgba(255,251,245,0.5);
    margin: 12px auto 0;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
  }

  /* ============ Sections communes ============ */
  section { padding: 120px 48px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 20px;
    font-weight: 600;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4.8vw, 56px);
    font-weight: 400;
    color: var(--encre);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.12;
  }
  .section-title em {
    font-style: italic;
    color: var(--or);
    font-weight: 400;
  }
  .section-lead {
    font-size: 17px;
    max-width: 720px;
    margin-bottom: 60px;
    color: var(--texte);
  }

  /* ============ INTRO ============ */
  .intro { background: var(--creme); }
  .intro .intro-inner {
    max-width: 900px; margin: 0 auto;
    text-align: center;
  }
  .intro-lead {
    font-size: 20px;
    line-height: 1.7;
    color: var(--texte);
  }
  .intro-signature {
    margin-top: 40px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--or);
    font-weight: 500;
  }
  .intro-ornament {
    display: block;
    width: 60px; height: 1px;
    background: var(--or);
    margin: 32px auto;
    opacity: 0.6;
  }

  /* ============ STATS ============ */
  .stats {
    padding: 80px 48px;
    background: var(--encre);
    color: white;
  }
  .stats-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
  }
  .stat { padding: 20px; }
  .stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    color: var(--or-clair);
    line-height: 1;
    margin-bottom: 14px;
    font-weight: 400;
  }
  .stat-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,251,245,0.75);
    font-weight: 500;
  }

  /* ============ SERVICES ============ */
  .services { background: var(--blanc-chaud); }
  .services-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
  .services-header .section-lead { margin: 0 auto; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .service {
    padding: 44px 32px;
    background: var(--creme);
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
  }
  .service:hover {
    transform: translateY(-6px);
    border-color: var(--or-clair);
    box-shadow: 0 20px 40px rgba(181,146,74,0.15);
  }
  .service-icon {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    background: var(--blanc-chaud);
    border: 1px solid var(--or-clair);
    border-radius: 50%;
    margin-bottom: 24px;
    color: var(--or);
  }
  .service-icon svg { width: 24px; height: 24px; }
  .service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--encre);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    font-weight: 500;
  }
  .service-desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--texte);
  }

  /* ============ APPROACH split ============ */
  .approach { background: var(--creme); }
  .approach-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .approach-image {
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    background-image: url('images/stock/approach-owners.jpg');
    box-shadow: 0 30px 60px rgba(43,33,22,0.2);
  }
  .approach-content .section-lead { margin-bottom: 32px; }
  .approach-pillars {
    display: flex; flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }
  .pillar {
    display: flex; align-items: flex-start;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(181,146,74,0.25);
  }
  .pillar:last-child { border-bottom: none; padding-bottom: 0; }
  .pillar-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    color: var(--or);
    line-height: 1;
    min-width: 44px;
    font-weight: 400;
  }
  .pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--encre);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .pillar-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--texte);
  }

  /* ============ COMMISSION ============ */
  .commission {
    background:
      linear-gradient(135deg, rgba(43,33,22,0.92), rgba(43,33,22,0.95)),
      url('images/stock/commission-contact.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
  }
  .commission .section-eyebrow { color: var(--or-clair); }
  .commission .section-title { color: white; }
  .commission .section-title em { color: var(--or-clair); }
  .commission-figure {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(76px, 12vw, 140px);
    color: var(--or-clair);
    line-height: 1;
    margin: 40px 0 20px;
    letter-spacing: -3px;
    font-weight: 400;
  }
  .commission-figure sub {
    font-size: 22px;
    color: white;
    margin-left: 6px;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    letter-spacing: 1px;
  }
  .commission-caption {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,251,245,0.85);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 500;
  }
  .commission-note {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255,251,245,0.6);
    letter-spacing: 1px;
    text-transform: none;
    font-weight: 300;
  }

  /* ============ PORTFOLIO ============ */
  .portfolio { background: var(--blanc-chaud); }
  .portfolio-header { text-align: center; margin-bottom: 60px; }
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .portfolio-card {
    background: var(--creme);
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  .portfolio-card:hover {
    transform: translateY(-6px);
    border-color: var(--or-clair);
    box-shadow: 0 20px 40px rgba(181,146,74,0.15);
  }
  .portfolio-image {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
  }
  .portfolio-body { padding: 32px; }
  .portfolio-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--or);
    margin-bottom: 10px;
    font-weight: 600;
  }
  .portfolio-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--encre);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
    font-weight: 500;
  }
  .portfolio-specs {
    display: flex; gap: 20px;
    font-size: 12px;
    color: var(--texte-clair);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(181,146,74,0.2);
    font-weight: 500;
  }
  .portfolio-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--texte);
    margin-bottom: 20px;
  }
  .portfolio-link {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--or-fonce);
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
  }
  .portfolio-link:hover { color: var(--corail); transform: translateX(4px); }

  /* ============ PROCESS ============ */
  .process { background: var(--creme); }
  .process-header { text-align: center; max-width: 720px; margin: 0 auto 80px; }
  .process-header .section-lead { margin: 0 auto; }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .step {
    text-align: left;
    padding: 32px 0 0;
    border-top: 2px solid var(--or);
  }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    color: var(--or);
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 400;
  }
  .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--encre);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
    font-weight: 500;
  }
  .step-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--texte);
  }

  /* ============ FINAL CTA ============ */
  .final-cta {
    background:
      linear-gradient(180deg, rgba(43,33,22,0.75), rgba(43,33,22,0.9)),
      url('images/stock/finalcta-travelers.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
  }
  .final-cta .section-inner { max-width: 780px; }
  .final-cta .section-title { color: white; }
  .final-cta .section-title em { color: var(--or-clair); }
  .final-cta .section-lead {
    color: rgba(255,251,245,0.9);
    margin: 0 auto 40px;
    max-width: 620px;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--encre);
    color: rgba(255,251,245,0.7);
    padding: 60px 48px 40px;
  }
  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(212,180,138,0.15);
  }
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    color: white;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 500;
  }
  .footer-brand-sub {
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--or-clair);
    margin-bottom: 24px;
    font-weight: 500;
  }
  .footer-tagline {
    font-size: 14px;
    line-height: 1.7;
    max-width: 340px;
  }
  .footer-title {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 20px;
    font-weight: 500;
  }
  .footer-links {
    display: flex; flex-direction: column;
    gap: 12px;
    list-style: none;
  }
  .footer-links a {
    color: rgba(255,251,245,0.7);
    font-size: 14px;
    transition: color 0.3s ease;
  }
  .footer-links a:hover { color: var(--or-clair); }
  .footer-bottom {
    max-width: 1200px; margin: 32px auto 0;
    padding-top: 24px;
    display: flex; justify-content: space-between; flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: rgba(255,251,245,0.5);
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-burger { display: inline-flex; }
    nav ul { display: none; }
    section { padding: 80px 24px; }
    .services-grid { grid-template-columns: 1fr; gap: 24px; }
    .approach-split { grid-template-columns: 1fr; gap: 40px; }
    .approach-image { aspect-ratio: 4/3; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stat-value { font-size: 44px; }
    .portfolio-grid { grid-template-columns: 1fr; gap: 24px; }
    .process-steps { grid-template-columns: 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .hero { height: auto; padding: 140px 24px 100px; min-height: 0; }
    .hero-cta { flex-direction: column; }
    .btn-primary, .btn-secondary { display: block; }
    .brand-mark { width: 44px; height: 44px; }
    .brand-text .name { font-size: 18px; letter-spacing: 2px; }
  }

/* ==================== PAGES INTÉRIEURES ==================== */

/* Page hero (plus court que hero accueil) */
.page-hero {
  position: relative;
  padding: 200px 48px 120px;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(43,33,22,0.7), rgba(43,33,22,0.85));
  z-index: 1;
}
.page-hero-owners::before { background-image: url('images/stock/approach-owners.jpg'); }
.page-hero-travelers::before { background-image: url('images/stock/finalcta-travelers.jpg'); }
.page-hero-villas::before { background-image: url('images/stock/hero-home-villas.jpg'); }
.page-hero-about::before { background-image: url('images/stock/hero-about.jpg'); }
.page-hero-contact::before { background-image: url('images/stock/commission-contact.jpg'); }
.page-hero-amenagement::before { background-image: url('images/amenagement/hero-amenagement.jpg'); }

.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 900px;
}
.page-hero .eyebrow {
  font-size: 11px; letter-spacing: 5px; text-transform: uppercase;
  color: var(--or-clair); margin-bottom: 20px; font-weight: 500;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 400; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 24px;
}
.page-hero h1 em { color: var(--or-clair); font-style: italic; font-weight: 300; }
.page-hero .subtitle {
  font-size: 17px; max-width: 640px; margin: 0 auto 40px;
  line-height: 1.6; color: rgba(255,251,245,0.9);
}

.section-header-center { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-inner-narrow { max-width: 820px; margin: 0 auto; }

/* ==================== PROPRIÉTAIRES ==================== */

.section-lcd { background: var(--blanc-chaud); }
.lcd-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px; margin: 0 auto;
}
.lcd-card {
  padding: 40px 32px;
  background: var(--creme);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.lcd-card:hover {
  border-color: var(--or-clair);
  box-shadow: 0 20px 40px rgba(181,146,74,0.12);
  transform: translateY(-4px);
}
.lcd-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blanc-chaud);
  border: 1px solid var(--or-clair);
  border-radius: 50%;
  margin-bottom: 20px;
  color: var(--or);
}
.lcd-icon svg { width: 22px; height: 22px; }
.lcd-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--encre);
  margin-bottom: 12px;
  font-weight: 500;
}
.lcd-desc { font-size: 15px; line-height: 1.65; color: var(--texte); }

/* Modèle co-hôte */
.section-model { background: var(--creme); }
.model-split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.model-content .section-lead { margin-bottom: 32px; }
.model-benefits { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.benefit {
  display: flex; align-items: flex-start; gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(181,146,74,0.2);
}
.benefit:last-child { border-bottom: none; padding-bottom: 0; }
.benefit-check {
  width: 32px; height: 32px; min-width: 32px;
  border-radius: 50%;
  background: var(--or);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.benefit-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; color: var(--encre);
  margin-bottom: 6px; font-weight: 500;
}
.benefit-desc { font-size: 14px; line-height: 1.6; color: var(--texte); }

.model-visual {
  text-align: center;
  padding: 60px 32px;
  background: var(--blanc-chaud);
  border: 1px solid var(--or-clair);
  border-radius: 4px;
}
.model-figure { margin-bottom: 24px; }
.model-figure-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px; font-style: italic;
  color: var(--or);
  line-height: 1; margin-bottom: 12px;
  font-weight: 400;
}
.model-figure-label {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--texte-clair);
}
.model-caption {
  font-size: 14px; color: var(--texte);
  font-style: italic;
  padding-top: 24px;
  border-top: 1px solid rgba(181,146,74,0.2);
}

/* Ce qui est inclus */
.section-included { background: var(--blanc-chaud); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.included-col {
  padding: 32px 24px;
  border-top: 2px solid var(--or);
}
.included-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--encre);
  margin-bottom: 20px; font-weight: 500;
}
.included-list { list-style: none; }
.included-list li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid rgba(181,146,74,0.15);
  font-size: 14px; color: var(--texte);
  position: relative;
}
.included-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--or); font-weight: 700;
}
.included-note {
  margin-top: 60px;
  padding: 24px 32px;
  background: var(--creme);
  border-left: 3px solid var(--or);
  font-size: 14px; color: var(--texte);
  line-height: 1.7;
}
.included-note strong { color: var(--encre); }

/* FAQ */
.section-faq { background: var(--creme); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--blanc-chaud);
  border: 1px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item[open] { border-color: var(--or-clair); }
.faq-question {
  padding: 22px 28px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--encre);
  font-weight: 500;
  list-style: none;
  position: relative;
  padding-right: 60px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  position: absolute; right: 28px; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--or);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer {
  padding: 0 28px 22px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--texte);
}

/* ==================== VOYAGEURS ==================== */

.process-steps-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.section-services-extra { background: var(--creme); }
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.extra {
  padding: 32px 28px;
  background: var(--blanc-chaud);
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.extra:hover { border-color: var(--or-clair); }
.extra-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--encre);
  margin-bottom: 12px; font-weight: 500;
}
.extra-desc { font-size: 14px; line-height: 1.6; color: var(--texte); }

/* ==================== NOS VILLAS ==================== */

.villa-detail { background: var(--blanc-chaud); padding: 100px 48px; }
.villa-detail-alt { background: var(--creme); }
.villa-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.villa-split-reverse .villa-images { order: 2; }
.villa-images {
  display: flex; flex-direction: column; gap: 12px;
}
.villa-image-main {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  box-shadow: 0 20px 40px rgba(43,33,22,0.15);
  border-radius: 2px;
}
.villa-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.villa-image-small {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border-radius: 2px;
}
.villa-location {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or); font-weight: 600;
  margin-bottom: 12px;
}
.villa-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--encre); font-weight: 500;
  letter-spacing: -0.5px; line-height: 1.1;
  margin-bottom: 20px;
}
.villa-name em { font-style: italic; color: var(--or); }
.villa-lead {
  font-size: 16px; color: var(--texte);
  line-height: 1.7; margin-bottom: 32px;
}
.villa-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px 0;
  margin-bottom: 32px;
  border-top: 1px solid rgba(181,146,74,0.25);
  border-bottom: 1px solid rgba(181,146,74,0.25);
}
.spec { text-align: center; }
.spec-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; color: var(--or);
  line-height: 1; margin-bottom: 6px;
  font-weight: 500;
}
.spec-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--texte-clair);
}
.villa-features { margin-bottom: 32px; }
.villa-features-title {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or); font-weight: 600;
  margin-bottom: 16px;
}
.villa-features-list { list-style: none; }
.villa-features-list li {
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: var(--texte);
  position: relative;
}
.villa-features-list li::before {
  content: '·';
  position: absolute; left: 8px;
  color: var(--or); font-weight: 700; font-size: 18px;
  line-height: 1;
}
.villa-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
}
.btn-outline {
  padding: 16px 36px;
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: var(--encre);
  border: 1px solid var(--encre);
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--encre); color: white;
}

/* Zone couverte */
.section-zone { background: var(--encre); color: white; }
.section-zone .section-title { color: white; }
.section-zone .section-title em { color: var(--or-clair); }
.section-zone .section-lead { color: rgba(255,251,245,0.85); }
.section-zone .section-eyebrow { color: var(--or-clair); }
.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 900px; margin: 0 auto;
}
.zone-item {
  padding: 20px 24px;
  background: rgba(255,251,245,0.05);
  border: 1px solid rgba(212,180,138,0.2);
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--or-clair);
  transition: all 0.3s ease;
  font-weight: 500;
}
.zone-item:hover {
  background: rgba(212,180,138,0.1);
  border-color: var(--or-clair);
}

/* ==================== À PROPOS ==================== */

.section-manifesto { background: var(--creme); text-align: center; }
.manifesto-lead {
  font-size: 18px; line-height: 1.8; color: var(--texte);
  margin-bottom: 24px;
}

.section-values { background: var(--blanc-chaud); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px; margin: 0 auto;
}
.value-card {
  padding: 40px 36px;
  background: var(--creme);
  border-top: 3px solid var(--or);
}
.value-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; color: var(--or);
  line-height: 1; margin-bottom: 16px;
  font-weight: 400;
}
.value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--encre);
  margin-bottom: 16px; font-weight: 500;
}
.value-desc { font-size: 15px; line-height: 1.7; color: var(--texte); }

.section-local {
  background: var(--creme);
}
.local-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: center;
}
.local-image {
  aspect-ratio: 4/5;
  background-image: url('images/stock/local-engagement.jpg');
  background-size: cover; background-position: center;
  box-shadow: 0 20px 40px rgba(43,33,22,0.2);
}
.local-points { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.local-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 12px 0;
}
.local-check {
  width: 24px; height: 24px; min-width: 24px;
  border-radius: 50%;
  background: var(--or);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 12px;
}
.local-point > div:last-child {
  font-size: 15px; color: var(--texte); line-height: 1.5;
}

/* ==================== CONTACT ==================== */

.section-contact-methods { background: var(--blanc-chaud); }
.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.contact-method-card {
  padding: 40px 32px;
  background: var(--creme);
  border: 1px solid transparent;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  color: var(--encre);
}
.contact-method-card:hover {
  border-color: var(--or);
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(181,146,74,0.15);
  text-decoration: none;
}
.contact-method-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blanc-chaud);
  border: 1px solid var(--or-clair);
  border-radius: 50%;
  color: var(--or);
}
.contact-method-icon svg { width: 24px; height: 24px; }
.contact-method-label {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or); font-weight: 600;
  margin-bottom: 8px;
}
.contact-method-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; color: var(--encre);
  font-weight: 500; margin-bottom: 8px;
}
.contact-method-note {
  font-size: 12px; color: var(--texte-clair);
  font-style: italic;
}

.section-form { background: var(--creme); }
.form-header { text-align: center; margin-bottom: 60px; }
.form-header .section-lead { margin: 0 auto; }
.contact-form {
  background: var(--blanc-chaud);
  padding: 48px;
  border-radius: 4px;
  border: 1px solid var(--creme-fonce);
}
.form-row { margin-bottom: 24px; }
.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { display: block; }
.form-label {
  display: block;
  font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--texte-clair);
  margin-bottom: 8px; font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--encre);
  background: var(--creme);
  border: 1px solid var(--creme-fonce);
  border-radius: 3px;
  transition: border-color 0.3s ease;
  font-weight: 300;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--or);
  background: var(--blanc-chaud);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-submit {
  border: 1px solid var(--or);
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}
.form-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--texte-clair);
  font-style: italic;
}

.section-zone-contact { background: var(--blanc-chaud); }
.zone-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.zone-contact-info { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.zone-contact-item {
  padding: 20px 0;
  border-top: 1px solid rgba(181,146,74,0.2);
}
.zone-contact-label {
  font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or); font-weight: 600;
  margin-bottom: 8px;
}
.zone-contact-value {
  font-size: 15px; color: var(--texte);
  line-height: 1.6;
}
.zone-contact-map {
  height: 380px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--creme-fonce);
}

/* ==================== MENTIONS LÉGALES ==================== */

nav .back-link {
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--encre);
  transition: color 0.3s ease;
}
nav .back-link:hover { color: var(--or); text-decoration: none; }

.legal {
  max-width: 760px; margin: 0 auto;
  padding: 160px 32px 100px;
}
.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500; color: var(--encre);
  letter-spacing: -0.5px; margin: 16px 0 12px;
}
.legal-updated {
  font-size: 13px; color: var(--texte-clair);
  margin-bottom: 56px;
}
.legal-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 500;
  color: var(--encre);
  margin: 48px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--creme-fonce);
}
.legal p {
  font-size: 15px; margin-bottom: 14px;
  color: var(--texte); line-height: 1.7;
}
.legal strong { color: var(--encre); font-weight: 500; }

/* ==================== RESPONSIVE pages intérieures ==================== */
@media (max-width: 900px) {
  .page-hero { padding: 140px 24px 80px; min-height: 0; }
  .lcd-grid { grid-template-columns: 1fr; }
  .model-split { grid-template-columns: 1fr; gap: 40px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-steps-5 { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .villa-split, .villa-split-reverse { grid-template-columns: 1fr; gap: 32px; }
  .villa-split-reverse .villa-images { order: initial; }
  .villa-specs { grid-template-columns: repeat(2, 1fr); }
  .zone-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .local-split { grid-template-columns: 1fr; }
  .contact-methods-grid { grid-template-columns: 1fr; }
  .form-row-double { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .zone-contact-split { grid-template-columns: 1fr; }
  .legal { padding: 120px 24px 60px; }
}

/* ==================== BANDEAU CONTACT RAPIDE (bas de chaque page) ==================== */
.quick-contact {
  background: var(--creme);
  padding: 60px 48px;
  border-top: 1px solid var(--creme-fonce);
  border-bottom: 1px solid var(--creme-fonce);
}
.quick-contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.quick-contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--encre);
  font-weight: 500;
  line-height: 1.2;
}
.quick-contact-title em { font-style: italic; color: var(--or); }
.quick-contact-eyebrow {
  font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or); font-weight: 600;
  margin-bottom: 8px;
}
.quick-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quick-contact-card {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--blanc-chaud);
  border: 1px solid var(--creme-fonce);
  border-radius: 3px;
  color: var(--encre);
  transition: all 0.3s ease;
}
.quick-contact-card:hover {
  border-color: var(--or);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(181,146,74,0.12);
}
.quick-contact-icon {
  width: 40px; height: 40px; min-width: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--or);
  border-radius: 50%;
  color: white;
}
.quick-contact-icon svg { width: 18px; height: 18px; }
.quick-contact-info { flex: 1; min-width: 0; }
.quick-contact-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or); font-weight: 600;
}
.quick-contact-value {
  font-size: 13px; color: var(--encre);
  font-weight: 500; margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .quick-contact { padding: 40px 24px; }
  .quick-contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .quick-contact-cards { grid-template-columns: 1fr; }
}

/* ==================== SECTION FONDATEURS ==================== */
.section-founders { background: var(--creme); }
.founders-split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px; margin: 0 auto;
}
.founders-quote {
  padding: 40px;
  background: var(--blanc-chaud);
  border: 1px solid var(--or-clair);
  border-radius: 3px;
  position: relative;
}
.founders-quote::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 90px;
  color: var(--or);
  line-height: 1;
  font-weight: 400;
}
.founders-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--encre);
  font-style: italic;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 20px;
}
.founders-quote-author {
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or); font-weight: 600;
}
.founders-content .section-lead { margin-bottom: 24px; }
.founders-signature {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(181,146,74,0.25);
  font-size: 12px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or); font-weight: 600;
}

/* ==================== ARGUMENTS FORTS (badges accueil) ==================== */
.section-badges {
  background: var(--blanc-chaud);
  padding: 80px 48px;
}
.badges-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.badge-card {
  padding: 32px 28px;
  text-align: center;
  background: var(--creme);
  border-top: 3px solid var(--or);
}
.badge-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--or);
}
.badge-icon svg { width: 32px; height: 32px; }
.badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--encre);
  font-weight: 500;
  margin-bottom: 8px;
}
.badge-desc {
  font-size: 13px;
  color: var(--texte);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .founders-split { grid-template-columns: 1fr; gap: 32px; }
  .badges-grid { grid-template-columns: 1fr; gap: 16px; }
  .section-badges { padding: 60px 24px; }
}

/* ==================== SECTION "CE QUE VOUS FOURNISSEZ" ==================== */
.section-provide { background: var(--blanc-chaud); }
.provide-intro {
  max-width: 720px; margin: 0 auto 60px;
  text-align: center;
}
.provide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.provide-cat {
  padding: 32px 28px;
  background: var(--creme);
  border-left: 3px solid var(--or);
}
.provide-cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--encre);
  font-weight: 500;
  margin-bottom: 16px;
}
.provide-list { list-style: none; }
.provide-list li {
  padding: 8px 0 8px 22px;
  font-size: 14px;
  color: var(--texte);
  position: relative;
}
.provide-list li::before {
  content: '·';
  position: absolute; left: 6px;
  color: var(--or); font-weight: 700; font-size: 20px;
  line-height: 1;
}
@media (max-width: 900px) {
  .provide-grid { grid-template-columns: 1fr; }
}

/* ==================== BLOC CONTACT INLINE (intro & commission) ==================== */

/* Après signature Alexandra & Frédéric (fond crème) */
.intro-contacts {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(181,146,74,0.25);
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.intro-contact {
  display: flex; align-items: center; gap: 10px;
  color: var(--encre);
  font-size: 14px;
  transition: color 0.3s ease;
}
.intro-contact:hover { color: var(--or); text-decoration: none; }
.intro-contact svg {
  width: 18px; height: 18px;
  color: var(--or);
  flex-shrink: 0;
}
.intro-contact-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or); font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.intro-contact-value {
  font-size: 14px; font-weight: 500;
  color: var(--encre);
}

/* Après commission-note (fond sombre) */
.commission-contacts {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(212,180,138,0.25);
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.commission-contact {
  display: flex; align-items: center; gap: 10px;
  color: var(--blanc-chaud);
  font-size: 14px;
  transition: color 0.3s ease;
}
.commission-contact:hover { color: var(--or-clair); text-decoration: none; }
.commission-contact svg {
  width: 18px; height: 18px;
  color: var(--or-clair);
  flex-shrink: 0;
}
.commission-contact-label {
  font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--or-clair); font-weight: 600;
  display: block;
  margin-bottom: 2px;
}
.commission-contact-value {
  font-size: 14px; font-weight: 500;
  color: var(--blanc-chaud);
}

@media (max-width: 900px) {
  .intro-contacts, .commission-contacts {
    flex-direction: column; gap: 16px; align-items: center;
  }
}

/* Footer : sous-liens Whatsapp avec 2 numéros */
.footer-sublinks {
  list-style: none;
  padding-left: 16px;
  margin-top: 4px;
  display: flex; flex-direction: column;
  gap: 6px;
}
.footer-sublinks a {
  font-size: 13px !important;
  color: rgba(255,251,245,0.55) !important;
}
.footer-sublinks a:hover { color: var(--or-clair) !important; }

/* ==================== ENCADRÉ CONTACT (accueil intro) ==================== */
.intro-contact-box {
  margin: 40px auto 0;
  max-width: 720px;
  padding: 32px 40px;
  background: var(--blanc-chaud);
  border: 1px solid var(--or-clair);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(181,146,74,0.08);
}
.intro-contact-box-title {
  text-align: center;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--or);
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(181,146,74,0.2);
}
.intro-contact-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.intro-contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px;
  color: var(--encre);
  border-radius: 3px;
  transition: background 0.3s ease;
}
.intro-contact-item:hover { background: var(--creme); text-decoration: none; }
.intro-contact-item svg {
  width: 22px; height: 22px;
  color: var(--or);
  flex-shrink: 0;
}
.intro-contact-item .lbl {
  display: block;
  font-size: 10px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--or); font-weight: 600;
  margin-bottom: 2px;
}
.intro-contact-item .val {
  display: block;
  font-size: 13px; color: var(--encre);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}

@media (max-width: 900px) {
  .intro-contact-box { padding: 24px; }
  .intro-contact-box-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* ==================== AVANT / APRÈS (page Aménagement) ==================== */
.section-avant-apres { background: var(--creme); }
.avant-apres-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.avant-apres-card {
  background: var(--blanc-chaud);
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.avant-apres-card:hover {
  transform: translateY(-6px);
  border-color: var(--or-clair);
  box-shadow: 0 20px 40px rgba(181,146,74,0.15);
}
/* ---- Slider interactif avant / après ---- */
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  background: var(--or-clair);
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  pointer-events: none;
}
.ba-img-before {
  clip-path: inset(0 50% 0 0);
}
.ba-label {
  position: absolute;
  top: 12px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 2px;
  color: var(--blanc-chaud);
  z-index: 2;
  pointer-events: none;
}
.ba-label-avant { left: 12px; background: rgba(43,33,22,0.72); }
.ba-label-apres { right: 12px; background: var(--corail); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: var(--blanc-chaud);
  transform: translateX(-50%);
  z-index: 3;
  cursor: ew-resize;
  box-shadow: 0 0 0 1px rgba(43,33,22,0.15);
}
.ba-handle-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blanc-chaud);
  color: var(--or-fonce);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(43,33,22,0.3);
  transition: transform 0.15s ease;
}
.ba-handle-btn svg { width: 20px; height: 20px; }
.ba-slider.is-dragging .ba-handle-btn { transform: translate(-50%, -50%) scale(1.08); }
.ba-handle:focus-visible .ba-handle-btn { outline: 2px solid var(--or); outline-offset: 2px; }

@media (max-width: 560px) {
  .ba-handle-btn { width: 36px; height: 36px; }
  .ba-handle-btn svg { width: 16px; height: 16px; }
}
.avant-apres-body { padding: 28px 32px 32px; }
.avant-apres-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--encre);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  font-weight: 500;
}
.avant-apres-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--texte);
}
@media (max-width: 900px) {
  .avant-apres-grid { grid-template-columns: 1fr; gap: 24px; }
  .avant-apres-body { padding: 24px; }
}

/* ==================== SÉLECTEUR DE LANGUE FR / EN ==================== */
.lang-switch-li { display: flex; }
.lang-switch {
  display: flex; align-items: center; gap: 2px;
  background: var(--creme);
  border: 1px solid rgba(181,146,74,0.25);
  border-radius: 20px;
  padding: 3px;
}
nav .lang-switch a {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 11px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--texte-clair);
  background: transparent;
  border: none;
  transition: all 0.3s ease;
}
nav .lang-switch a:hover { color: var(--encre); }
nav .lang-switch a.lang-switch-active {
  background: var(--blanc-chaud);
  color: var(--encre);
  box-shadow: 0 1px 4px rgba(43,33,22,0.12);
}
.lang-flag {
  width: 18px; height: 12px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(43,33,22,0.15);
  display: block;
}
.lang-flag svg { width: 100%; height: 100%; display: block; }

/* Mobile */
.lang-switch-mobile {
  display: flex; gap: 10px;
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(181,146,74,0.2);
}
.lang-switch-mobile a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px;
  border: 1px solid rgba(181,146,74,0.3) !important;
  border-radius: 6px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--texte-clair);
  font-weight: 600;
}
.lang-switch-mobile a:hover { color: var(--encre); padding-left: 12px; }
.lang-switch-mobile a.lang-switch-active {
  background: var(--encre);
  color: white;
  border-color: var(--encre) !important;
}
.lang-switch-mobile .lang-flag { width: 20px; height: 14px; }
