/* Cabinet Jouve — Charte graphique */
:root {
  --bleu: #1B3A5C;
  --or: #C9A96E;
  --creme: #F5F0E6;
  --blanc: #FFFFFF;
  --texte: #1B3A5C;
  --gris: #6B7280;
  --bordure: #E5DFD0;
}

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--texte);
  background: var(--blanc);
  line-height: 1.7;
}

/* ── NAVIGATION ── */
nav {
  background: var(--bleu);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 0;
  text-decoration: none;
}

.nav-monogram {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #1B3A5C, #2C5282);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--or);
  letter-spacing: -1px;
  border: 1px solid var(--or);
  flex-shrink: 0;
}

.nav-title {
  display: flex;
  flex-direction: column;
}

.nav-title span:first-child {
  color: var(--blanc);
  font-size: 0.95rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-title span:last-child {
  color: var(--or);
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-style: normal;
  font-family: 'Arial', sans-serif;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.2rem;
}

nav ul li a {
  color: #CBD5E0;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1.5rem 0.9rem;
  display: block;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--or);
  border-bottom-color: var(--or);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--bleu) 0%, #2C5282 100%);
  color: var(--blanc);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content { position: relative; max-width: 760px; margin: 0 auto; }

.hero-badge {
  display: inline-block;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  color: var(--or);
  font-family: 'Arial', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.25;
  margin-bottom: 1.2rem;
  font-weight: normal;
}

.hero h1 em {
  color: var(--or);
  font-style: normal;
}

.hero p {
  font-family: 'Arial', sans-serif;
  font-size: 1.05rem;
  color: #CBD5E0;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-or {
  background: var(--or);
  color: var(--bleu);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.1s;
}

.btn-or:hover { background: #D4B87A; transform: translateY(-1px); }

.btn-outline {
  border: 1.5px solid rgba(201,169,110,0.5);
  color: var(--or);
  padding: 0.85rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover { border-color: var(--or); background: rgba(201,169,110,0.08); }

/* ── STATS ── */
.stats {
  background: var(--creme);
  border-top: 1px solid var(--bordure);
  border-bottom: 1px solid var(--bordure);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat-num {
  font-size: 2.2rem;
  font-weight: bold;
  color: var(--bleu);
  display: block;
}

.stat-label {
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--or);
  margin-top: 0.2rem;
}

/* ── SECTIONS ── */
.section { padding: 4.5rem 2rem; }
.section-creme { background: var(--creme); }
.section-blanc { background: var(--blanc); }

.container { max-width: 1000px; margin: 0 auto; }

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

.section-tag {
  display: inline-block;
  color: var(--or);
  font-family: 'Arial', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid var(--or);
  padding-bottom: 0.2rem;
}

.section-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: normal;
  color: var(--bleu);
  line-height: 1.3;
}

.section-header p {
  font-family: 'Arial', sans-serif;
  color: var(--gris);
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
}

/* ── GRILLES DE CARTES ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--blanc);
  border: 1px solid var(--bordure);
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(27,58,92,0.1);
  transform: translateY(-2px);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--bleu), #2C5282);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--bleu);
}

.card p {
  font-family: 'Arial', sans-serif;
  color: var(--gris);
  font-size: 0.88rem;
  line-height: 1.65;
}

.card-creme {
  background: var(--creme);
  border-color: var(--bordure);
}

/* ── AVANTAGE ── */
.avantage-bleu {
  background: var(--bleu);
  color: var(--blanc);
  padding: 4rem 2rem;
  text-align: center;
}

.avantage-bleu .section-tag { color: var(--or); }

.avantage-bleu h2 {
  color: var(--blanc);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: normal;
  margin-bottom: 2.5rem;
}

.avantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.avantage-item {
  border: 1px solid rgba(201,169,110,0.25);
  border-radius: 6px;
  padding: 1.5rem;
  background: rgba(255,255,255,0.04);
}

.avantage-item .av-icon { font-size: 1.8rem; margin-bottom: 0.7rem; }

.avantage-item h4 {
  color: var(--or);
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.avantage-item p {
  font-family: 'Arial', sans-serif;
  color: #A0AEC0;
  font-size: 0.82rem;
  line-height: 1.6;
}

/* ── PAGE HERO (sous-pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--bleu), #2C5282);
  color: var(--blanc);
  padding: 3.5rem 2rem;
  text-align: center;
}

.page-hero .section-tag { color: var(--or); }

.page-hero h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: normal;
  color: var(--blanc);
  margin-top: 0.5rem;
}

.page-hero p {
  font-family: 'Arial', sans-serif;
  color: #CBD5E0;
  max-width: 560px;
  margin: 1rem auto 0;
  font-size: 0.95rem;
}

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

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

.contact-info h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--bleu);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
}

.contact-item .ci-icon {
  width: 36px;
  height: 36px;
  background: var(--creme);
  border: 1px solid var(--bordure);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item a { color: var(--bleu); text-decoration: none; }
.contact-item a:hover { color: var(--or); }

.orias-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--creme);
  border: 1px solid var(--bordure);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  font-family: 'Arial', sans-serif;
  font-size: 0.8rem;
  color: var(--gris);
  margin-top: 1.5rem;
}

.orias-badge strong { color: var(--bleu); }

/* Formulaire */
.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bleu);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--bordure);
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--texte);
  background: var(--blanc);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bleu);
}

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

.btn-submit {
  background: var(--bleu);
  color: var(--blanc);
  border: none;
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  font-family: 'Arial', sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.btn-submit:hover { background: #2C5282; }

/* ── FOOTER ── */
footer {
  background: var(--bleu);
  color: #A0AEC0;
  padding: 2.5rem 2rem;
  text-align: center;
  font-family: 'Arial', sans-serif;
  font-size: 0.82rem;
}

footer .footer-logo {
  color: var(--or);
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

footer .footer-sub {
  color: rgba(201,169,110,0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

footer .footer-links a {
  color: #A0AEC0;
  text-decoration: none;
  transition: color 0.2s;
}

footer .footer-links a:hover { color: var(--or); }

footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1rem;
  margin-top: 1rem;
  color: #718096;
  font-size: 0.75rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav ul { display: none; }
  .stats { gap: 2rem; }
  .hero { padding: 3.5rem 1.5rem; }
}

/* ── LISTE À PUCES STYLÉE ── */
.check-list {
  list-style: none;
  font-family: 'Arial', sans-serif;
  font-size: 0.9rem;
  color: var(--gris);
}

.check-list li {
  padding: 0.4rem 0;
  padding-left: 1.6rem;
  position: relative;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--or);
  font-weight: bold;
}

/* ── SEPARATEUR OR ── */
.divider-or {
  width: 50px;
  height: 2px;
  background: var(--or);
  margin: 1rem auto;
}
