/* =============================================
   HOCHMAN AVOCATS — Design System
   Couleurs extraites du logo : bleu marine + blanc
   ============================================= */

:root {
  /* Logo colors */
  --marine: #1E3A5F;
  --marine-deep: #142842;
  --marine-light: #2B4F7A;
  --blanc: #FFFFFF;
  --creme: #F9F8F6;
  --sable: #F0EDE7;

  /* Accents */
  --or: #C5A55A;
  --or-clair: #D9BE7A;
  --or-pale: rgba(197,165,90,0.1);

  /* Texte */
  --texte: #2C3345;
  --texte-light: #6E7A8A;
  --bordure: #E2DED6;

  /* Urgence */
  --rouge: #8B2020;
  --rouge-clair: #A52D2D;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--blanc);
  color: var(--texte);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

/* ====== NAV ====== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.8rem 4rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bordure);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.8rem;
  text-decoration: none;
}
.nav-logo { height: 40px; width: 40px; border-radius: 50%; object-fit: cover; }
.nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--marine); letter-spacing: 2px;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--texte-light); text-decoration: none;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--marine); }
.nav-cta {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  background: var(--marine); color: var(--blanc);
  text-decoration: none; transition: all 0.3s;
}
.nav-cta:hover { background: var(--or); }
.mobile-btn {
  display: none; background: none; border: none;
  font-size: 1.4rem; color: var(--marine); cursor: pointer;
}

/* ====== COMMON ====== */
.section { padding: 5rem 4rem; max-width: 1200px; margin: 0 auto; }
.section-full { padding: 5rem 4rem; width: 100%; }
.section-full .inner { max-width: 1200px; margin: 0 auto; }

.eyebrow {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--or); margin-bottom: 0.6rem;
}
.heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600; color: var(--marine);
  line-height: 1.25; margin-bottom: 1rem;
}
.subtext {
  font-size: 1rem; line-height: 1.8;
  color: var(--texte-light); max-width: 580px;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn-p {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.95rem 2rem;
  background: var(--marine); color: var(--blanc);
  text-decoration: none; border: 2px solid var(--marine);
  transition: all 0.3s;
}
.btn-p:hover { background: var(--or); border-color: var(--or); }

.btn-s {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 0.95rem 2rem;
  background: transparent; color: var(--marine);
  text-decoration: none; border: 2px solid var(--bordure);
  transition: all 0.3s;
}
.btn-s:hover { border-color: var(--or); color: var(--or); }

/* Trust bar */
.trust {
  background: var(--marine); padding: 1.8rem 4rem;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: center;
  gap: 4rem; flex-wrap: wrap; align-items: center;
}
.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--or-clair);
}
.trust-label {
  font-size: 0.72rem; color: rgba(255,255,255,0.5);
  margin-top: 0.15rem;
}
.trust-item { text-align: center; }

/* Footer */
.footer {
  background: var(--marine-deep);
  padding: 3rem 4rem; color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}
.footer h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--blanc);
  margin-bottom: 1rem;
}
.footer a { color: var(--or); text-decoration: none; transition: color 0.3s; }
.footer a:hover { color: var(--blanc); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 0.5rem; }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem; margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between;
  font-size: 0.72rem; color: rgba(255,255,255,0.25);
}

/* Contact section */
.contact-section {
  background: var(--marine); color: var(--blanc);
  text-align: center; padding: 5rem 4rem;
  position: relative;
}
.contact-section::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(197,165,90,0.08), transparent 60%);
  pointer-events: none;
}
.contact-inner {
  position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto;
}
.contact-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600; margin-bottom: 0.5rem;
}
.contact-sub {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2rem;
}
.contact-grid {
  display: flex; justify-content: center;
  gap: 3rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.cm-label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); margin-bottom: 0.3rem;
}
.cm a {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--or-clair);
  text-decoration: none;
}
.contact-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 1rem 2.5rem;
  border: 2px solid var(--or); color: var(--or);
  text-decoration: none; transition: all 0.3s;
}
.contact-btn:hover { background: var(--or); color: var(--marine); }

/* ====== SEO PAGE LAYOUT ====== */
.page-hero {
  padding: 8rem 4rem 4rem;
  background: var(--creme);
  position: relative;
}
.page-hero-inner {
  max-width: 800px; margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--marine);
  line-height: 1.2; margin-bottom: 1rem;
}
.page-hero .lead {
  font-size: 1.1rem; line-height: 1.8;
  color: var(--texte-light); max-width: 650px;
}

.page-content {
  max-width: 800px; margin: 0 auto;
  padding: 3rem 4rem 5rem;
}
.page-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--marine);
  margin: 2.5rem 0 1rem;
}
.page-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--marine);
  margin: 2rem 0 0.8rem;
}
.page-content p {
  font-size: 0.95rem; line-height: 1.85;
  color: var(--texte); margin-bottom: 1rem;
}
.page-content strong { color: var(--marine); }

.page-cta-box {
  background: var(--creme);
  border-left: 4px solid var(--or);
  padding: 2rem;
  margin: 2.5rem 0;
}
.page-cta-box h3 {
  font-family: 'Playfair Display', serif;
  color: var(--marine); margin: 0 0 0.5rem;
}
.page-cta-box p {
  margin-bottom: 1rem;
}

/* FAQ Schema */
.faq { margin: 2.5rem 0; }
.faq-item {
  border-bottom: 1px solid var(--bordure);
  padding: 1.2rem 0;
}
.faq-q {
  font-weight: 600; color: var(--marine);
  font-size: 1rem; margin-bottom: 0.5rem;
  cursor: pointer;
}
.faq-a {
  font-size: 0.9rem; line-height: 1.7;
  color: var(--texte-light);
}

/* Responsive */
@media (max-width: 900px) {
  .nav { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .mobile-btn { display: block; }
  .section, .section-full { padding: 3rem 1.5rem; }
  .page-hero { padding: 6rem 1.5rem 3rem; }
  .page-content { padding: 2rem 1.5rem 3rem; }
  .trust { padding: 1.5rem; }
  .trust-inner { gap: 1.5rem; }
  .contact-section { padding: 3rem 1.5rem; }
  .footer { padding: 2rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.3rem; }
}
