/* ============================================================
   Michelle Gallant — Psychothérapeute · Trois-Rivières
   Palette chaude : terracotta / pêche / brun profond / crème
   ============================================================ */

:root {
  --cream: #FAF3EC;
  --paper: #FFFDFA;
  --peach: #E8A87C;
  --peach-soft: #F5DFC8;
  --peach-faint: #FBEEDF;
  --terracotta: #C05B3A;
  --terracotta-dark: #A84A2C;
  --brown: #5C4033;
  --brown-deep: #463025;
  --ink: #3D2C24;
  --muted: #7C6457;
  --line: #EADCCD;
  --serif: "Lora", Georgia, serif;
  --sans: "Karla", "Segoe UI", sans-serif;
  --maxw: 1140px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(92, 64, 51, 0.08);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.2;
  color: var(--brown-deep);
  margin: 0 0 0.5em 0;
  text-wrap: pretty;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em 0; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--terracotta); }

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 243, 236, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 72px;
  max-width: 1190px;
}

.brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.25;
  margin-right: auto;
}

.brand .brand-name {
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--brown-deep);
}

.brand .brand-title {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

@media (max-width: 560px) {
  .brand .brand-title { white-space: normal; font-size: 0.68rem; }
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 0.95rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.main-nav a:hover {
  color: var(--terracotta);
  border-bottom-color: var(--peach);
}

.lang-switch {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex: none;
}

.lang-switch:hover { color: var(--terracotta); border-color: var(--peach); }

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 26px;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--terracotta);
  color: #FFF6EF;
}

.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--brown);
  box-shadow: inset 0 0 0 1.5px var(--peach);
}

.btn-ghost:hover { background: var(--peach-faint); }

.btn-sm { padding: 9px 20px; font-size: 0.88rem; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--brown);
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .main-nav a:last-of-type { border-bottom: none; }
  .nav-toggle { display: block; }
  .site-header .header-cta { display: none; }
}

@media (max-width: 920px) {
  .main-nav a { white-space: normal; }
}

/* ---------- Avis de disponibilité ---------- */

.notice-band {
  background: var(--peach-faint);
  border-bottom: 1px solid var(--peach-soft);
  padding: 12px 0;
}

.notice-band .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 0.93rem;
  color: var(--brown);
}

.notice-band svg { flex: none; color: var(--terracotta); margin-top: 3px; }

.notice-band strong { color: var(--brown-deep); }

/* ---------- Hero ---------- */

.hero {
  padding: 84px 0 96px;
  background:
    radial-gradient(900px 480px at 88% -10%, var(--peach-faint) 0%, transparent 65%),
    var(--cream);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero .container:has(.hero-text:only-child) {
  grid-template-columns: minmax(0, 720px) 1fr;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}

.hero-text .lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-portrait {
  justify-self: center;
}

.portrait-frame {
  width: min(380px, 80vw);
  aspect-ratio: 4 / 5;
  border-radius: 190px 190px var(--radius) var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, var(--peach-soft), var(--peach));
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-placeholder {
  text-align: center;
  color: var(--brown);
  padding: 24px;
}

.portrait-placeholder .initials {
  font-family: var(--serif);
  font-size: 4.5rem;
  color: var(--brown-deep);
  line-height: 1;
}

.portrait-placeholder .hint {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 12px;
  opacity: 0.75;
}

@media (max-width: 920px) {
  .hero { padding: 56px 0 64px; }
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-portrait { justify-self: start; }
  .portrait-frame { width: min(300px, 70vw); }
}

/* ---------- Sections ---------- */

.section { padding: 88px 0; }

.section-alt { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 720px; margin-bottom: 48px; }

.section-head .eyebrow { margin-bottom: 10px; }

/* ---------- À propos ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr;
  gap: 48px;
}

.about-grid:has(.about-portrait) {
  grid-template-columns: 1.1fr 1.1fr 0.55fr;
}

.about-portrait {
  justify-self: end;
  align-self: start;
}

.portrait-frame.portrait-sm {
  width: min(230px, 70vw);
  aspect-ratio: 4 / 5;
  border-radius: 115px 115px var(--radius) var(--radius);
}

.portrait-frame.portrait-sm .initials { font-size: 2.6rem; }

.portrait-frame.portrait-sm .hint { font-size: 0.68rem; margin-top: 8px; }

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.chip {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--brown);
  background: var(--peach-faint);
  border: 1px solid var(--peach-soft);
  border-radius: 999px;
  padding: 7px 16px;
}

@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; gap: 8px; }
  .about-grid:has(.about-portrait) { grid-template-columns: 1fr; }
  .about-portrait { justify-self: center; margin-top: 24px; }
}

@media (min-width: 921px) and (max-width: 1100px) {
  .about-grid:has(.about-portrait) { grid-template-columns: 1fr 1fr; }
  .about-grid:has(.about-portrait) .about-portrait { grid-column: 1 / -1; justify-self: center; margin-top: 12px; }
}

/* ---------- Services ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow);
}

.section-alt .service-card { background: var(--cream); }

.service-card .service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--peach-faint);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card p { color: var(--muted); font-size: 0.97rem; }

.motifs {
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.motifs h4 {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 12px 0;
}

.motifs ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.motifs li {
  font-size: 0.92rem;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
}

.motifs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--peach);
}

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

/* ---------- Approche ---------- */

.approche-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.explore-card {
  background: var(--peach-faint);
  border: 1px solid var(--peach-soft);
  border-radius: var(--radius);
  padding: 32px 30px;
}

.explore-card h3 { font-size: 1.15rem; margin-bottom: 16px; }

.explore-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.explore-card li {
  padding-left: 26px;
  position: relative;
  font-size: 0.97rem;
}

.explore-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-weight: 700;
}

.clienteles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.attentes { margin-top: 56px; max-width: 820px; }

@media (max-width: 920px) {
  .approche-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Quand consulter ---------- */

.consulter {
  background: var(--brown);
  color: #F7EBDF;
}

.consulter h2 { color: #FFF6EC; }

.consulter .eyebrow { color: var(--peach); }

.consulter-list {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
}

.consulter-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 1.02rem;
  line-height: 1.55;
}

.consulter-list .check {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(232, 168, 124, 0.22);
  color: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

@media (max-width: 820px) {
  .consulter-list { grid-template-columns: 1fr; }
}

/* ---------- Infos pratiques ---------- */

.infos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.info-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}

.info-card h3 { display: flex; align-items: center; gap: 12px; }

.info-card h3 svg { color: var(--terracotta); flex: none; }

.info-card ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card li {
  padding-left: 20px;
  position: relative;
  color: var(--ink);
}

.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--peach);
}

.tarif-rows { margin-top: 18px; display: flex; flex-direction: column; }

.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}

.tarif-row:last-of-type { border-bottom: none; }

.tarif-row .prix {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--terracotta);
  white-space: nowrap;
}

.note { font-size: 0.9rem; color: var(--muted); margin-top: 14px; }

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

/* ---------- Citation ---------- */

.quote-band { padding: 96px 0; text-align: center; }

.quote-band blockquote {
  margin: 0 auto;
  max-width: 800px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.55;
  color: var(--brown-deep);
}

.quote-band .quote-mark {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--peach);
  display: block;
  margin-bottom: 12px;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-grid > * { min-width: 0; }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
}

.contact-card ol {
  margin: 14px 0 0;
  padding-left: 0;
  list-style: none;
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card ol li {
  counter-increment: item;
  padding-left: 34px;
  position: relative;
  font-size: 0.97rem;
}

.contact-card ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--peach-faint);
  color: var(--terracotta);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coords { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }

.coord {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.coord .coord-icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--peach-faint);
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.coord .coord-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.coord a { color: var(--ink); text-decoration: none; }
.coord a:hover { color: var(--terracotta); }
.coord a, .coord span { overflow-wrap: anywhere; }

.map-frame {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

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

/* ---------- Footer ---------- */

.site-footer {
  background: var(--brown-deep);
  color: #E9D7C8;
  padding: 48px 0 40px;
  font-size: 0.92rem;
}

.site-footer a { overflow-wrap: anywhere; }

.site-footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
}

.site-footer .footer-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #FFF6EC;
  margin-bottom: 6px;
}

.site-footer .footer-legal {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(233, 215, 200, 0.2);
  font-size: 0.82rem;
  color: rgba(233, 215, 200, 0.7);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
}
