/* ================================ */
/* ====== IMPORTS & VARIABLES ====== */
/* ================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --noir:       #0e0e0e;
  --encre:      #18212A;
  --or:         #18212A;
  --or-clair:   #18212A;
  --creme:      #F5F3EE;
  --blanc:      #ffffff;
  --gris-fin:   #e8e4dc;
  --texte:      #3a3530;
  --texte-léger:#7a7068;
}

/* ================================ */
/* ====== BASE ==================== */
/* ================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--texte);
  background-color: var(--creme);
  margin: 0;
  line-height: 1.85;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--encre);
  margin: 0;
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: 0.04em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: 0.03em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); }
h4 { font-size: 1.4rem; color: var(--blanc); font-style: italic; }

p { text-align: justify; margin: 0 0 1em; }
a { text-decoration: none; color: var(--encre); transition: color 0.3s; }
a:hover { color: var(--encre); }

u { text-decoration-color: var(--encre); text-underline-offset: 3px; }

/* ================================ */
/* ====== HEADER ================== */
/* ================================ */
header {
  background: var(--blanc);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid var(--gris-fin);
  box-shadow: 0 1px 20px rgba(14,14,14,0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  max-width: 1400px;
  margin: 0 auto;
  gap: 20px;
}

.site-logo {
  height: 56px;
  width: auto;
  opacity: 0.88;
  flex-shrink: 0;
}

.site-title {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-title h1 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--encre);
}

.site-title p,
.site-title .subtitle {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--encre);
  margin: 4px 0 0;
}

/* Ligne décorative dorée sous le titre */
.site-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--encre);
  margin: 6px auto 0;
}

/* ================================ */
/* ====== NAVIGATION ============== */
/* ================================ */
nav {
  border-top: 1px solid var(--gris-fin);
  background: var(--blanc);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  padding: 14px 22px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--texte);
  transition: color 0.3s;
  position: relative;
}

nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 22px;
  right: 22px;
  height: 1px;
  background: var(--encre);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

nav ul li a:hover::after,
nav ul li a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--blanc);
  border: 1px solid var(--gris-fin);
  border-top: 2px solid var(--encre);
  list-style: none;
  min-width: 240px;
  z-index: 1000;
  box-shadow: 0 8px 30px rgba(14,14,14,0.1);
  padding: 6px 0;
}

.dropdown-menu li a {
  padding: 10px 20px;
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--texte-léger);
}

.dropdown-menu li a:hover {
  color: var(--encre);
  background: var(--creme);
}

.dropdown-menu li a::after { display: none; }

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
  display: block;
}

/* ================================ */
/* ====== HERO (page accueil) ===== */
/* ================================ */
.hero {
  background: var(--encre);
  color: var(--blanc);
  padding: 100px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
}

/* Pas de motif sur le hero */

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeUp 1s ease both;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--encre);
  margin-bottom: 20px;
  display: block;
}

.hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--blanc);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-separator {
  width: 50px;
  height: 1px;
  background: var(--encre);
  margin: 24px auto;
}

.hero p {
  font-weight: 300;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 40px;
  text-align: center;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================ */
/* ====== SECTIONS GÉNÉRALES ====== */
/* ================================ */
main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 72px;
}

section {
  margin-bottom: 60px;
  scroll-margin-top: 110px;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--encre);
  display: block;
  margin-bottom: 10px;
}

section h2 {
  color: var(--encre);
  margin-bottom: 6px;
  position: relative;
  padding-bottom: 16px;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 1px;
  background: var(--encre);
}

/* Card contenu */
.content-card {
  background: var(--blanc);
  padding: 50px 56px;
  box-shadow: 0 2px 40px rgba(14,14,14,0.06);
  border-top: 2px solid var(--encre);
}

/* ================================ */
/* ====== ENCADRÉS (accueil) ====== */
/* ================================ */
.encadres-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 20px;
  margin: 8px 0 56px;
  background: none;
  border: none;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.encadre {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  background: var(--blanc);
  padding: 40px 36px;
  text-align: left;
  border-radius: 3px;
  box-shadow: 0 2px 20px rgba(24,33,42,0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
  gap: 24px;
}

.encadre::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 3px;
  background: var(--encre);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}

.encadre:hover {
  box-shadow: 0 10px 40px rgba(24,33,42,0.12);
  transform: translateY(-4px);
}

.encadre:hover::before {
  transform: scaleY(1);
}

.encadre h3 {
  font-size: 1.3rem;
  color: var(--encre);
  margin-bottom: 8px;
}

.encadre p {
  font-size: 0.84rem;
  color: var(--texte-léger);
  text-align: left;
  line-height: 1.7;
  margin: 0;
  flex-grow: 1;
}

/* ================================ */
/* ====== BOUTONS ================= */
/* ================================ */
.bouton-lien {
  display: inline-block;
  padding: 10px 22px;
  background: var(--encre);
  color: var(--blanc);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--encre);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}

.bouton-lien:hover {
  background: transparent;
  color: var(--encre);
}

.bouton-or {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--blanc);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--encre);
  transition: background 0.3s, color 0.3s;
}

.bouton-or:hover {
  background: var(--encre);
  color: var(--blanc);
}

.bouton-rdv {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--encre);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--encre);
  transition: background 0.3s, color 0.3s;
}

.bouton-rdv:hover {
  background: var(--encre);
  color: var(--blanc);
}

/* Bloc CTA rendez-vous / paiement */
.cta-block {
  text-align: center;
  padding: 64px 40px;
  background: var(--encre);
  margin: 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 3px;
  box-shadow: 0 6px 40px rgba(24,33,42,0.18);
}

.cta-block p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.cta-block-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.bouton-or {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  color: var(--blanc);
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.55);
  transition: background 0.3s, border-color 0.3s;
}

.bouton-or:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--blanc);
}

/* ================================ */
/* ====== SERVICES (accordéon) ==== */
/* ================================ */
.encadre.encadre-service {
  background: var(--blanc);
  padding: 26px 32px;
  cursor: pointer;
  border-bottom: 1px solid var(--gris-fin);
  align-items: flex-start;
}

.encadre.encadre-service h2,
.encadre.encadre-service h3 {
  font-size: 1.5rem;
  color: var(--encre);
  display: flex;
  align-items: center;
  gap: 14px;
}

.encadre.encadre-service h2::before,
.encadre.encadre-service h3::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--encre);
  flex-shrink: 0;
}

.contenu-encadre {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: var(--blanc);
  border-bottom: 1px solid var(--gris-fin);
}

.contenu-encadre.open {
  /* hauteur gérée par JS */
}

.contenu-encadre p,
.contenu-encadre li {
  padding: 0 32px;
  color: var(--texte);
  font-size: 0.92rem;
}

.contenu-encadre p:first-child { padding-top: 20px; }
.contenu-encadre p:last-child  { padding-bottom: 24px; }

/* ================================ */
/* ====== À PROPOS ================ */
/* ================================ */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 0;
  background: var(--encre);
  max-width: 1100px;
  margin: 0 auto 60px;
  box-shadow: 0 4px 60px rgba(14,14,14,0.15);
}

.about-photo {
  position: relative;
  overflow: hidden;
}

.profile-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
}

.about-photo blockquote {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(14,14,14,0.75);
  color: rgba(255,255,255,0.85);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.5;
  padding: 20px 24px;
  margin: 0;
  border-left: 2px solid var(--encre);
  backdrop-filter: blur(4px);
}

.about-description {
  padding: 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-description h4 {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 8px;
}

.about-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--encre);
  margin-bottom: 20px;
  display: block;
}

.about-description p {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  line-height: 1.9;
  text-align: left;
  margin-bottom: 1em;
}

.about-separator {
  width: 36px;
  height: 1px;
  background: var(--encre);
  margin: 20px 0;
}

/* ================================ */
/* ====== HONORAIRES ============== */
/* ================================ */
.honoraires-container {
  max-width: 900px;
  margin: 0 auto;
}

.honoraires-container h2 {
  text-align: center;
  margin-bottom: 40px;
}

.honoraires-container h3 {
  font-size: 1.3rem;
}

.honoraires-intro {
  background: var(--blanc);
  border-left: 3px solid var(--encre);
  padding: 28px 36px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--texte-léger);
  font-style: italic;
}

/* ================================ */
/* ====== CONTACT ================= */
/* ================================ */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 0;
  background: var(--blanc);
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 2px 40px rgba(14,14,14,0.07);
}

.contact-info {
  background: var(--encre);
  padding: 50px 44px;
  color: var(--blanc);
}

.contact-info h3 {
  color: rgba(255,255,255,0.85);
  font-style: italic;
  margin-bottom: 30px;
  font-size: 1.6rem;
}

.contact-info p {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.contact-info p i {
  color: var(--encre);
  margin-top: 3px;
  flex-shrink: 0;
}

.contact-info .contact-separator {
  width: 30px;
  height: 1px;
  background: var(--encre);
  margin: 28px 0;
}

.contact-form {
  padding: 50px 44px;
}

.contact-form h3 {
  font-size: 1.6rem;
  font-style: italic;
  color: var(--encre);
  margin-bottom: 28px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form label {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--texte-léger);
  display: block;
  margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gris-fin);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--encre);
  outline: none;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-bottom-color: var(--encre);
}

.contact-form textarea { resize: vertical; min-height: 100px; }

.contact-form button {
  margin-top: 8px;
  padding: 12px 28px;
  background: var(--encre);
  color: var(--blanc);
  border: 1px solid var(--encre);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  align-self: flex-start;
}

.contact-form button:hover {
  background: transparent;
  color: var(--encre);
}

.checkbox-container {
  display: grid;
  grid-template-columns: 16px 1fr;
  align-items: start;
  gap: 10px;
}

.checkbox-container input[type="checkbox"] { margin-top: 3px; accent-color: var(--encre); }

.consent-label {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--texte-léger);
  line-height: 1.5;
}

/* ================================ */
/* ====== FOOTER ================== */
/* ================================ */
footer {
  background: var(--noir);
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 40px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

footer p { text-align: center; margin: 0; }

footer a {
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}

footer a:hover { color: rgba(255,255,255,0.85); }

.footer-gold-line {
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 10px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.footer-social {
  margin-top: 10px;
  font-size: 1rem;
}

.footer-social a { color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer-social a:hover { color: rgba(255,255,255,0.8); }

/* ================================ */
/* ====== PAGES LÉGALES =========== */
/* ================================ */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--blanc);
  padding: 60px;
  box-shadow: 0 2px 30px rgba(14,14,14,0.05);
}

.legal-container h2 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gris-fin);
}

.legal-container h2:first-of-type { margin-top: 0; }

/* ================================ */
/* ====== WELCOME SECTION ========= */
/* ================================ */
.welcome-section {
  text-align: center;
  padding: 80px 40px 52px;
  max-width: 640px;
  margin: 0 auto;
}

.welcome-section h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.welcome-section h2::after { display: none; }

.welcome-separator {
  width: 40px;
  height: 1px;
  background: var(--encre);
  opacity: 0.25;
  margin: 22px auto;
}

.welcome-section p {
  color: var(--texte-léger);
  font-size: 0.95rem;
  text-align: center;
  margin: 0 auto;
  line-height: 1.9;
  max-width: 480px;
}

/* ================================ */
/* ====== RESPONSIVE ============== */
/* ================================ */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }

  .about-photo {
    height: 320px;
  }

  .about-description {
    padding: 40px 32px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 14px 20px;
    justify-content: center;
  }

  .site-logo { display: none; }

  .site-title { flex: unset; }
  .site-title h1 { font-size: 1.4rem; letter-spacing: 0.1em; }
  .site-title p { font-size: 0.6rem; }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav ul li a {
    padding: 10px 12px;
    font-size: 0.65rem;
  }

  main { padding: 40px 20px; }

  .welcome-section { padding: 52px 20px 36px; }

  .encadres-container { gap: 14px; margin-bottom: 36px; }

  .cta-block { padding: 48px 24px; }
  .cta-block p { font-size: 1.2rem; margin-bottom: 18px; }

  .legal-container { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .encadres-container { grid-template-columns: 1fr; }

  .contact-info,
  .contact-form { padding: 32px 24px; }

  .cta-block-actions { flex-direction: column; align-items: center; }
}
