/* ===========================================
   LES EXPERTS CSE - Feuille de style globale
   Style : Professionnel & Corporate (Bleu marine + Or)
   =========================================== */

:root {
  --bleu-marine: #0a2540;
  --bleu-fonce: #14365c;
  --bleu-moyen: #2c5282;
  --bleu-clair: #e6f0fa;
  --or: #c9a45c;
  --or-clair: #d4b574;
  --or-fonce: #a8843a;
  --noir: #0a0a0a;
  --gris-fonce: #2d3748;
  --gris-moyen: #4a5568;
  --gris-clair: #718096;
  --gris-tres-clair: #f7fafc;
  --gris-bordure: #e2e8f0;
  --blanc: #ffffff;
  --blanc-casse: #fafafa;
  --rouge: #c53030;
  --vert: #2f855a;
  --ombre-douce: 0 2px 8px rgba(10, 37, 64, 0.08);
  --ombre-moyenne: 0 4px 16px rgba(10, 37, 64, 0.12);
  --ombre-forte: 0 8px 30px rgba(10, 37, 64, 0.15);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gris-fonce);
  background-color: var(--blanc);
  overflow-x: hidden;
}

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  background: var(--blanc);
  border-bottom: 3px solid var(--or);
  box-shadow: var(--ombre-douce);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background: var(--bleu-marine);
  color: var(--blanc);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.header-top a {
  color: var(--blanc);
  text-decoration: none;
  margin-left: 1.5rem;
}

.header-top a:hover {
  color: var(--or);
}

.header-main {
  padding: 1rem 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gris-tres-clair);
  display: block;
  border: 2px solid var(--or);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--bleu-marine);
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-size: 0.72rem;
  color: var(--gris-moyen);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0.15rem;
}

.nav-main {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-main a {
  color: var(--gris-fonce);
  text-decoration: none;
  padding: 0.6rem 0.9rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}

.nav-main a:hover {
  color: var(--bleu-marine);
  background: var(--bleu-clair);
}

.nav-main a.active {
  color: var(--bleu-marine);
  background: var(--bleu-clair);
}

.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--or);
}

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(44, 82, 130, 0.88) 100%),
              url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?w=1600&q=80') center/cover no-repeat;
  color: var(--blanc);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 .accent {
  color: var(--or);
}

.hero p.lead {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== BOUTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--or);
  color: var(--bleu-marine);
  border-color: var(--or);
}

.btn-primary:hover {
  background: var(--or-fonce);
  border-color: var(--or-fonce);
  color: var(--blanc);
  transform: translateY(-2px);
  box-shadow: var(--ombre-moyenne);
}

.btn-secondary {
  background: transparent;
  color: var(--blanc);
  border-color: var(--blanc);
}

.btn-secondary:hover {
  background: var(--blanc);
  color: var(--bleu-marine);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--bleu-marine);
  border-color: var(--bleu-marine);
}

.btn-outline:hover {
  background: var(--bleu-marine);
  color: var(--blanc);
}

.btn-dark {
  background: var(--bleu-marine);
  color: var(--blanc);
  border-color: var(--bleu-marine);
}

.btn-dark:hover {
  background: var(--bleu-fonce);
}

/* ===== PAGE BANNER (pages internes) ===== */
.page-banner {
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.92) 0%, rgba(44, 82, 130, 0.88) 100%),
              url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&q=80') center/cover no-repeat;
  color: var(--blanc);
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-banner::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--or);
}

.page-banner h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.page-banner .breadcrumb {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.page-banner .breadcrumb a {
  color: var(--or);
  text-decoration: none;
}

/* ===== SECTIONS ===== */
section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.2rem;
  color: var(--bleu-marine);
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--or);
  margin: 1rem auto 0;
}

.section-title p {
  color: var(--gris-moyen);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.section-grise {
  background: var(--gris-tres-clair);
}

.section-noir {
  background: var(--bleu-marine);
  color: var(--blanc);
}

.section-noir .section-title h2 {
  color: var(--blanc);
}

.section-noir .section-title h2::after {
  background: var(--or);
}

.section-noir .section-title p {
  color: var(--bleu-clair);
}

/* ===== IMAGES SECTIONS ===== */
.section-image {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: var(--ombre-moyenne);
}

.image-with-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.image-with-text img,
.image-with-text .section-image {
  width: 100%;
  height: auto;
  min-height: 350px;
  border-radius: 8px;
  box-shadow: var(--ombre-moyenne);
  object-fit: cover;
}

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

/* ===== GRILLES & CARTES ===== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--blanc);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--ombre-douce);
  transition: var(--transition);
  border-top: 4px solid var(--or);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-moyenne);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--bleu-clair);
  color: var(--bleu-marine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.card h3 {
  font-size: 1.3rem;
  color: var(--bleu-marine);
  margin-bottom: 0.75rem;
}

.card p {
  color: var(--gris-moyen);
}

.card-image {
  width: calc(100% + 4rem);
  height: 200px;
  margin: -2rem -2rem 1.5rem;
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid var(--or);
}

/* ===== EQUIPE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.team-member {
  background: var(--blanc);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--ombre-douce);
  transition: var(--transition);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-moyenne);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--bleu-clair) 0%, var(--gris-tres-clair) 100%);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gris-moyen);
  font-size: 0.9rem;
  font-style: italic;
  border-bottom: 3px solid var(--or);
  position: relative;
}

.team-photo::before {
  content: '👤';
  position: absolute;
  font-size: 4rem;
  opacity: 0.25;
}

.team-photo.has-image::before {
  display: none;
}

.team-photo .placeholder-label {
  position: relative;
  background: rgba(255,255,255,0.85);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  font-size: 0.78rem;
}

.team-info {
  padding: 1.5rem 1rem;
}

.team-info h3 {
  font-size: 1.15rem;
  color: var(--bleu-marine);
  margin-bottom: 0.4rem;
}

.team-info .role {
  color: var(--or-fonce);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gris-bordure);
}

.team-info .bio {
  color: var(--gris-moyen);
  font-size: 0.92rem;
}

/* ===== LISTES ===== */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  color: var(--gris-fonce);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 22px;
  height: 22px;
  background: var(--or);
  color: var(--blanc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

/* ===== CONTENU TEXTE LONG ===== */
.content-page {
  max-width: 900px;
  margin: 0 auto;
}

.content-page h2 {
  color: var(--bleu-marine);
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--or);
}

.content-page h3 {
  color: var(--bleu-fonce);
  font-size: 1.2rem;
  margin: 1.75rem 0 0.75rem;
}

.content-page p {
  margin-bottom: 1rem;
  color: var(--gris-fonce);
  text-align: justify;
}

.content-page ul, .content-page ol {
  margin: 1rem 0 1rem 2rem;
  color: var(--gris-fonce);
}

.content-page ul li, .content-page ol li {
  margin-bottom: 0.5rem;
}

.content-page .info-box {
  background: var(--bleu-clair);
  border-left: 4px solid var(--bleu-marine);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 4px 4px 0;
}

.content-page .info-box p {
  margin-bottom: 0;
}

.content-page a {
  color: var(--bleu-marine);
  text-decoration: underline;
}

/* ===== FORMULAIRE CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  background: var(--bleu-marine);
  color: var(--blanc);
  padding: 2.5rem;
  border-radius: 8px;
}

.contact-info h3 {
  color: var(--or);
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--or);
}

.contact-item {
  margin-bottom: 1.75rem;
}

.contact-item .label {
  font-size: 0.85rem;
  color: var(--or);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-item .value {
  font-size: 1rem;
  line-height: 1.5;
}

.contact-item a {
  color: var(--blanc);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.contact-item a:hover {
  border-bottom-color: var(--or);
  color: var(--or);
}

.contact-form {
  background: var(--blanc);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: var(--ombre-moyenne);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--bleu-marine);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  border: 1px solid var(--gris-bordure);
  border-radius: 4px;
  transition: var(--transition);
  background: var(--blanc);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--bleu-marine);
  box-shadow: 0 0 0 3px var(--bleu-clair);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--gris-moyen);
}

.form-checkbox input {
  width: auto;
  margin-top: 0.25rem;
}

.form-checkbox a {
  color: var(--bleu-marine);
  text-decoration: underline;
}

/* ===== CERTIFICATIONS ===== */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.cert-card {
  background: var(--blanc);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: var(--ombre-douce);
  border: 1px solid var(--gris-bordure);
  border-top: 4px solid var(--or);
}

.cert-badge {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--or) 0%, var(--or-clair) 100%);
  color: var(--bleu-marine);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: var(--ombre-moyenne);
}

.cert-card h3 {
  color: var(--bleu-marine);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.cert-card .cert-number {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  color: var(--gris-moyen);
  background: var(--gris-tres-clair);
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  display: inline-block;
  margin: 0.5rem 0;
  border: 1px solid var(--gris-bordure);
}

/* ===== STATISTIQUES ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--or);
  line-height: 1;
}

.stat-item .stat-label {
  color: var(--gris-moyen);
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

/* ===== TÉMOIGNAGES ===== */
.testimonial {
  background: var(--blanc);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--ombre-douce);
  border-left: 4px solid var(--or);
  position: relative;
}

.testimonial::before {
  content: '“';
  position: absolute;
  top: -0.5rem;
  left: 1rem;
  font-size: 4rem;
  color: var(--or);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.4;
}

.testimonial-text {
  color: var(--gris-fonce);
  font-style: italic;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  color: var(--bleu-marine);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-formation {
  color: var(--or-fonce);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== NOTE / RATING ===== */
.rating-card {
  background: var(--blanc);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--ombre-douce);
  border: 1px solid var(--gris-bordure);
}

.rating-card .rating-title {
  font-size: 0.9rem;
  color: var(--gris-fonce);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.rating-card .rating-grade {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--bleu-marine);
  line-height: 1;
}

.rating-card .rating-stars {
  color: var(--or);
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.rating-card .rating-votes {
  font-size: 0.85rem;
  color: var(--gris-moyen);
}

/* ===== ARTICLES ===== */
.article-card {
  background: var(--blanc);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--ombre-douce);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ombre-moyenne);
}

.article-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  border-bottom: 4px solid var(--or);
}

.article-body {
  padding: 1.75rem;
}

.article-meta {
  font-size: 0.78rem;
  color: var(--or-fonce);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.article-card h3 {
  font-size: 1.25rem;
  color: var(--bleu-marine);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.article-card p {
  color: var(--gris-moyen);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.article-card .article-link {
  color: var(--bleu-marine);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--or);
  padding-bottom: 2px;
}

/* ===== NEWSLETTER ===== */
.newsletter-block {
  background: linear-gradient(135deg, var(--bleu-marine) 0%, var(--bleu-moyen) 100%);
  color: var(--blanc);
  padding: 3rem 2rem;
  border-radius: 8px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-block::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.2) 0%, transparent 60%);
}

.newsletter-block h3 {
  color: var(--or);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.newsletter-block p {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 0.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1rem;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

.newsletter-form button {
  padding: 0.85rem 1.75rem;
  background: var(--or);
  color: var(--bleu-marine);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  font-size: 1rem;
}

.newsletter-form button:hover {
  background: var(--blanc);
}

.newsletter-form-footer {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.newsletter-form-footer input[type="email"] {
  flex: 1;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--gris-clair);
  border-radius: 4px;
  font-size: 0.92rem;
  background: rgba(255,255,255,0.95);
}

.newsletter-form-footer button {
  padding: 0.6rem 1rem;
  background: var(--or);
  color: var(--bleu-marine);
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.9rem;
  white-space: nowrap;
}

.newsletter-form-footer button:hover {
  background: var(--or-clair);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bleu-marine);
  color: var(--blanc);
  padding: 3.5rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-column h4 {
  color: var(--or);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--or);
  display: inline-block;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--blanc);
  text-decoration: none;
  opacity: 0.85;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-column a:hover {
  opacity: 1;
  color: var(--or);
}

.footer-column p {
  font-size: 0.92rem;
  opacity: 0.9;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.75;
}

/* ===== HERO PHOTO (Page d'accueil avec image latérale) ===== */
.hero-photo-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-photo {
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow: var(--ombre-forte);
  border: 4px solid var(--or);
}

@media (max-width: 900px) {
  .hero-photo-wrap {
    grid-template-columns: 1fr;
  }
  .hero-photo {
    height: 250px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p.lead { font-size: 1.05rem; }
  .section-title h2 { font-size: 1.7rem; }
  .header-main .container { flex-direction: column; gap: 1rem; }
  .nav-main { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .header-top { font-size: 0.78rem; }
  .header-top .container { justify-content: center; text-align: center; }
  .logo-img { width: 52px; height: 52px; }
  .logo-title { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 0; }
  .page-banner { padding: 2.5rem 0 2rem; }
  section { padding: 2.5rem 0; }
  .card, .contact-info, .contact-form { padding: 1.5rem; }
  .newsletter-form input[type="email"] { min-width: 100%; }
}
