/* ============================================================
   Congruence Thérapie — site statique reconstruit
   Palette terracotta / neutres chauds, sobre et apaisante
   ============================================================ */

:root {
  --bg:        #faf7f2;
  --surface:   #ffffff;
  --text:      #3a3633;
  --muted:     #6f6863;
  --accent:    #c25b43;
  --accent-dk: #9e4632;
  --sage:      #7d8b6a;
  --border:    #e9e1d6;
  --shadow:    0 1px 3px rgba(58,54,51,.06), 0 8px 30px rgba(58,54,51,.06);
  --maxw: 1080px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; font-family: "Inter", sans-serif; font-weight: 600; letter-spacing: .01em; }

p { margin: 0 0 1.1em; }

a { color: var(--accent); text-decoration: none; transition: color .15s; }
a:hover { color: var(--accent-dk); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.accent { color: var(--accent); }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--accent);
  font-family: "Inter", sans-serif;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,247,242,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .emblem { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-logo { height: 56px; width: auto; display: block; border-radius: 8px; }
@media (max-width: 480px) { .brand-logo { height: 46px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .name {
  font-family: "Cormorant Garamond", serif; font-weight: 600;
  font-size: 1.35rem; color: var(--text);
}
.brand-text .tag {
  font-size: .60rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--muted);
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: block; padding: 8px 12px; border-radius: 8px;
  color: var(--text); font-size: .92rem; font-weight: 500;
}
.nav-links a:hover { background: #f0e8dd; color: var(--accent-dk); }
.nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--accent); color: #fff !important; padding: 8px 16px !important;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--accent-dk); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 42px; height: 42px; padding: 9px;
}
.nav-toggle span { display: block; height: 2px; background: var(--text); margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  padding: 84px 0 64px;
  background:
    radial-gradient(900px 400px at 80% -10%, rgba(194,91,67,.10), transparent 60%),
    radial-gradient(700px 360px at 0% 10%, rgba(125,139,106,.10), transparent 55%);
}
.hero .lead { font-size: 1.25rem; color: var(--muted); max-width: none; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.btn {
  display: inline-block; padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; cursor: pointer; border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); color: #fff; }
.btn-ghost { background: transparent; color: var(--accent); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); background: #fff; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
.section-tight { padding: 36px 0; }
.lede { font-size: 1.2rem; color: var(--muted); max-width: none; }

.page-head {
  padding: 52px 0 0;
  background: radial-gradient(800px 320px at 75% -20%, rgba(194,91,67,.09), transparent 60%);
}
.page-head + section { padding-top: 20px; }

/* prose blocks — largeur = conteneur (alignée sur les blocs) */
.container.prose { max-width: var(--maxw); }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.8em; color: var(--accent-dk); }
.prose ul { padding-left: 1.2em; margin: 0 0 1.2em; }
.prose li { margin: .3em 0; }
.prose blockquote {
  margin: 1.4em 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--accent);
  font-family: "Cormorant Garamond", serif; font-size: 1.45rem; color: var(--text); font-style: italic;
}

/* cards grid */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; color: var(--accent-dk); }
.card p:last-child { margin-bottom: 0; }
.card .num {
  font-family: "Cormorant Garamond", serif; font-size: 2.2rem; color: var(--accent);
  line-height: 1; display: block; margin-bottom: 6px;
}

.piliers-band { padding: 6px 0 14px; }
.piliers { margin: 0; }
.piliers img { display: block; width: 100%; height: auto; }

.pillars { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 18px; }
.pillar {
  text-align: center; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 10px; box-shadow: var(--shadow);
}
.pillar .dot { width: 30px; height: 30px; border-radius: 50%; margin: 0 auto 10px; }
.pillar strong { font-size: .95rem; }

.tools-list { display: grid; gap: 16px; }
.tool { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow); }
.tool h3 { margin: 0 0 .4em; color: var(--accent-dk); }
.tool p:last-child { margin-bottom: 0; }

/* tarifs table */
.tarifs { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); }
.tarifs th, .tarifs td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.tarifs th { background: #f6efe6; font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.tarifs td:last-child { text-align: right; font-weight: 600; white-space: nowrap; }
.tarifs tr:last-child td { border-bottom: 0; }

.info-band { background: #f6efe6; border-radius: var(--radius); padding: 26px 28px; border: 1px solid var(--border); }
.info-band ul { margin: 0; padding-left: 1.1em; }

.callout {
  background: linear-gradient(120deg, #fff, #fbf4ec);
  border: 1px solid var(--border); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 28px 30px; box-shadow: var(--shadow);
}

/* contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { padding: 14px 0; border-bottom: 1px solid var(--border); display: flex; gap: 12px; }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); display: block; }
.contact-list .val { font-size: 1.1rem; font-weight: 600; }
.contact-list .val a { color: var(--text); }
.contact-list .val a:hover { color: var(--accent); }

.map-embed { width: 100%; border: 0; border-radius: var(--radius); min-height: 320px; box-shadow: var(--shadow); }

/* ---------- Footer ---------- */
.site-footer {
  margin-top: 40px; background: #2e2a27; color: #d9d2c8; padding: 50px 0 28px;
}
.site-footer a { color: #e9b8a8; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 7px 0; }
.site-footer .muted { color: #9b938a; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 18px;
  font-size: .82rem; color: #9b938a; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.footer-tag { font-family: "Cormorant Garamond", serif; font-style: italic; font-size: 1.05rem; color: #cfc6bb; }

.disclaimer { font-size: .82rem; color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 8px 16px 16px; display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 10px; border-radius: 8px; }
  .nav-cta { text-align: center; margin-top: 8px; }
}
