/* --- CONFIGURATION GÉNÉRALE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #1E2A32;
  line-height: 1.5;
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* --- NAVIGATION --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  flex-wrap: wrap;
  background-color: #fff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.92);
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #2C3E2F;
}
.logo span {
  font-weight: 300;
  color: #B68B40;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #2C3E2F;
  transition: 0.2s;
  font-size: 1rem;
}
.nav-links a:hover {
  color: #B68B40;
}
.menu-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #2C3E2F;
}

/* --- BOUTONS --- */
.btn {
  display: inline-block;
  background-color: #B68B40;
  color: white;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn-outline {
  background: transparent;
  border: 1.5px solid #B68B40;
  color: #B68B40;
}
.btn-outline:hover {
  background: #B68B40;
  color: white;
}
.btn:hover {
  background-color: #9a7236;
  transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
  padding: 80px 0 64px 0;
  background: #FEFAF5;
}
.hero-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
}
.hero-content {
  flex: 1;
}
.hero-content .badge {
  background: #e9e3d8;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  color: #7a5a32;
  margin-bottom: 20px;
}
.hero-content h2 {
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2C3E2F;
}
.hero-content p {
  font-size: 1.1rem;
  color: #4a5b5e;
  margin-bottom: 32px;
  max-width: 90%;
}
.hero-image {
  flex: 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s;
}

/* --- SECTIONS GÉNÉRIQUES --- */
section {
  padding: 80px 0;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #2C3E2F;
  position: relative;
  display: inline-block;
}
.section-sub {
  color: #6f7e7c;
  margin-bottom: 48px;
  font-size: 1rem;
  max-width: 600px;
}
.title-center {
  text-align: center;
}
.title-center .section-title {
  display: block;
}
.title-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* --- PROJETS --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 20px;
}
.project-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  transition: all 0.3s;
}
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px rgba(0,0,0,0.1);
}
.project-img {
  height: 260px;
  overflow: hidden;
}
.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.project-card:hover .project-img img {
  transform: scale(1.03);
}
.project-info {
  padding: 24px 20px 28px;
}
.project-info h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.project-info p {
  color: #5a6e6b;
  margin-bottom: 16px;
}
.project-tag {
  font-size: 0.8rem;
  color: #B68B40;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* --- SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.service-card {
  background: #FEFAF5;
  padding: 32px 24px;
  border-radius: 32px;
  text-align: center;
  transition: 0.2s;
}
.service-card i {
  font-size: 2.4rem;
  color: #B68B40;
  margin-bottom: 20px;
}
.service-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.service-card p {
  color: #4a5e5b;
}

/* --- ACCOMPAGNEMENT --- */
.accompagnement-wrap {
  background: #F4F0EA;
  border-radius: 48px;
  padding: 48px 40px;
  margin-top: 20px;
}
.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}
.col {
  flex: 1;
}
.col h3 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.entreprise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}
.entreprise-badge {
  background: white;
  padding: 8px 20px;
  border-radius: 60px;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.feature-list {
  list-style: none;
}
.feature-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-list i {
  color: #B68B40;
  font-size: 1.2rem;
  width: 24px;
}

/* --- TÉMOIGNAGES --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.testimonial {
  background: #fff;
  padding: 28px 28px;
  border-radius: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.04);
  border: 1px solid #f0eae2;
}
.testimonial i.fa-quote-left {
  color: #d9c6a7;
  font-size: 1.6rem;
  margin-bottom: 16px;
  display: inline-block;
}
.testimonial p {
  font-style: normal;
  font-weight: 400;
  margin-bottom: 20px;
  color: #2d3e3b;
}
.client-name {
  font-weight: 700;
  color: #2C3E2F;
}
.client-title {
  font-size: 0.8rem;
  color: #8f9e9b;
}

/* --- CONTACT --- */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  background: #fff;
  border-radius: 48px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  padding: 48px 40px;
}
.contact-info {
  flex: 1.2;
}
.contact-form {
  flex: 1;
}
.info-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.info-line i {
  width: 32px;
  font-size: 1.4rem;
  color: #B68B40;
}
.social-links a {
  color: #5b6e6b;
  margin-right: 20px;
  font-size: 1.5rem;
  transition: 0.2s;
  display: inline-block;
}
.social-links a:hover {
  color: #B68B40;
  transform: translateY(-3px);
}
.hours {
  margin: 20px 0;
  font-weight: 500;
  background: #FEFAF5;
  padding: 12px 18px;
  border-radius: 40px;
  display: inline-block;
}
input, textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 18px;
  border: 1px solid #e0d9d0;
  border-radius: 28px;
  font-family: inherit;
  background: #fefcf9;
}
textarea {
  resize: vertical;
}

/* --- FOOTER --- */
footer {
  background: #1e2a24;
  color: #cfddd8;
  text-align: center;
  padding: 32px;
  font-size: 0.85rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 880px) {
  .container { padding: 0 24px; }
  .navbar { padding: 20px 24px; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0 12px;
  }
  .nav-links.show { display: flex; }
  .menu-toggle { display: block; }
  .hero-content h2 { font-size: 2.4rem; }
  .hero-content p { max-width: 100%; }
  .section-title { font-size: 1.9rem; }
  .contact-grid { flex-direction: column; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0; }
  .accompagnement-wrap { padding: 32px 24px; }
}