/* === Cabinet Marie Leclerc — Psychothérapeute Strasbourg === */

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

:root {
  --sage-dark: #2c5f4a;
  --sage: #3d7a62;
  --sage-accent: #4a9175;
  --sage-pale: #e5f0eb;
  --clay: #b87d5b;
  --clay-light: #d4a27e;
  --cream: #faf8f3;
  --warm: #f2ece0;
  --taupe: #7a6e64;
  --text: #2a241d;
  --border: #d8d0c4;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(44,95,74,.09);
  --shadow-lg: 0 12px 48px rgba(44,95,74,.18);
  --radius: 20px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.7; background: var(--white); overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Lora', serif; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px; font-weight: 600;
  font-size: .9rem; cursor: pointer; transition: var(--transition);
  border: 2px solid transparent; font-family: 'Inter', sans-serif;
}
.btn-primary { background: var(--sage); color: var(--white); }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,122,98,.35); }
.btn-clay { background: var(--clay); color: var(--white); }
.btn-clay:hover { background: #9e6b48; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,125,91,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-soft { background: var(--sage-pale); color: var(--sage-dark); }
.btn-soft:hover { background: #d2e8de; }
.btn-lg { padding: 17px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--sage-dark);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 12px; color: var(--white); }
.logo-leaf {
  width: 38px; height: 38px;
  background: var(--sage-accent);
  border-radius: 50% 20% 50% 20%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .95rem;
}
.logo-text { font-size: 1rem; font-weight: 700; }
.logo-text em { color: #8ed4b8; font-style: normal; font-family: 'Lora', serif; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,.75); font-size: .875rem; font-weight: 500;
  padding: 8px 16px; border-radius: 30px; transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,.12); }
.nav-rdv { background: var(--clay) !important; color: var(--white) !important; font-weight: 600 !important; }
.nav-rdv:hover { background: #9e6b48 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh; padding-top: 70px;
  background: linear-gradient(155deg, var(--sage-dark) 0%, var(--sage) 60%, #5aaa85 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?auto=format&fit=crop&w=1920&q=30') center/cover;
  opacity: .07;
}
.hero::after {
  content: '';
  position: absolute; right: -100px; top: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
  padding-top: 60px; padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); color: #c8f0e0;
  border: 1px solid rgba(255,255,255,.22); border-radius: 100px;
  padding: 6px 18px; font-size: .78rem; font-weight: 600;
  letter-spacing: .04em; margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.2; letter-spacing: -.01em; margin-bottom: 22px;
}
.hero h1 em { color: #8ed4b8; font-style: italic; }
.hero-sub { font-size: 1rem; color: rgba(255,255,255,.8); margin-bottom: 36px; line-height: 1.8; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .8rem; }
.hero-trust-item i { color: #8ed4b8; }

/* Hero right */
.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-wrap { position: relative; width: 340px; }
.hero-photo {
  border-radius: 30px 12px 30px 12px;
  overflow: hidden; height: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-card-float {
  position: absolute; bottom: -24px; left: -36px;
  background: var(--white); border-radius: 16px; padding: 18px 22px;
  box-shadow: var(--shadow-lg); min-width: 180px;
}
.hcf-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--taupe); margin-bottom: 6px; }
.hcf-value { font-family: 'Lora', serif; font-size: 1.4rem; font-weight: 700; color: var(--sage-dark); }
.hcf-sub { font-size: .72rem; color: var(--taupe); margin-top: 3px; }

/* SECTIONS */
.section { padding: 96px 0; }
.bg-cream { background: var(--cream); }
.bg-warm { background: var(--warm); }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
.section-header h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--sage-dark); margin-bottom: 14px; line-height: 1.3; }
.section-header h2.light { color: var(--white); }
.section-header p { color: var(--taupe); font-size: .95rem; line-height: 1.75; }
.section-label {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--clay); margin-bottom: 10px;
}
.section-label.light { color: #8ed4b8; }

/* ACCOMPAGNEMENTS */
.accomp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.accomp-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 30px; box-shadow: var(--shadow);
  border: 1.5px solid var(--border); transition: var(--transition);
  position: relative; overflow: hidden;
}
.accomp-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--clay));
}
.accomp-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--sage-pale); }
.accomp-icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: var(--sage-pale); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 20px;
}
.accomp-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--sage-dark); margin-bottom: 12px; }
.accomp-card p { font-size: .875rem; color: var(--taupe); line-height: 1.7; margin-bottom: 20px; }
.accomp-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.accomp-tags span {
  background: var(--sage-pale); color: var(--sage-dark);
  font-size: .7rem; font-weight: 600; padding: 4px 12px; border-radius: 100px;
}

/* APPROCHE — 2 colonnes */
.approche-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.approche-img { position: relative; }
.approche-photo { border-radius: 24px 8px 24px 8px; overflow: hidden; height: 460px; }
.approche-photo img { width: 100%; height: 100%; object-fit: cover; }
.approche-badge {
  position: absolute; bottom: 20px; right: -20px;
  background: var(--white); border-radius: 16px; padding: 18px 22px;
  box-shadow: var(--shadow-lg); text-align: center;
}
.ab-num { font-family: 'Lora', serif; font-size: 2.2rem; font-weight: 700; color: var(--sage); line-height: 1; }
.ab-label { font-size: .72rem; color: var(--taupe); margin-top: 5px; }
.approche-text h2 { font-size: clamp(1.7rem, 3vw, 2.2rem); font-weight: 700; color: var(--sage-dark); margin-bottom: 18px; line-height: 1.3; }
.approche-text > p { color: var(--taupe); line-height: 1.8; margin-bottom: 32px; }
.methodes { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.methode-item { display: flex; gap: 14px; align-items: flex-start; }
.methode-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sage); margin-top: 7px; flex-shrink: 0; }
.methode-item strong { display: block; font-weight: 700; color: var(--sage-dark); margin-bottom: 3px; font-size: .9rem; font-family: 'Lora', serif; }
.methode-item span { font-size: .85rem; color: var(--taupe); line-height: 1.65; }

/* POUR QUI */
.pourqui-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pq-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center;
  border: 1.5px solid var(--border); transition: var(--transition);
  box-shadow: var(--shadow);
}
.pq-card:hover { border-color: var(--sage); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pq-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--sage-pale); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin: 0 auto 18px;
}
.pq-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--sage-dark); margin-bottom: 10px; }
.pq-card p { font-size: .875rem; color: var(--taupe); line-height: 1.65; }

/* TEMOIGNAGES */
.temo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.temo-card {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow); transition: var(--transition);
}
.temo-card:hover { border-color: var(--sage-pale); box-shadow: var(--shadow-lg); }
.temo-stars { color: var(--clay); margin-bottom: 14px; letter-spacing: 2px; font-size: 1.1rem; }
.temo-text { font-size: .875rem; color: var(--taupe); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.temo-author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--sage-pale); color: var(--sage-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; flex-shrink: 0;
  border: 2px solid var(--border);
}
.author-name { font-weight: 700; font-size: .875rem; color: var(--text); }
.author-loc { font-size: .75rem; color: var(--taupe); }

/* TARIFS APERÇU */
.tarifs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.tarif-card {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  text-align: center; border: 1.5px solid var(--border); box-shadow: var(--shadow);
  transition: var(--transition);
}
.tarif-card.featured {
  background: var(--sage-dark); border-color: var(--sage-dark);
  box-shadow: var(--shadow-lg); transform: scale(1.04);
}
.tarif-card:not(.featured):hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.tarif-type { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--taupe); margin-bottom: 14px; font-family: 'Inter', sans-serif; }
.tarif-card.featured .tarif-type { color: rgba(255,255,255,.65); }
.tarif-price { font-size: 2.6rem; font-weight: 700; color: var(--sage-dark); line-height: 1; }
.tarif-price sup { font-size: 1.1rem; vertical-align: super; margin-left: 2px; }
.tarif-card.featured .tarif-price { color: var(--white); }
.tarif-duration { font-size: .8rem; color: var(--taupe); margin-top: 6px; margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.tarif-card.featured .tarif-duration { color: rgba(255,255,255,.6); }
.tarif-detail { font-size: .85rem; color: var(--taupe); line-height: 1.65; font-family: 'Inter', sans-serif; }
.tarif-card.featured .tarif-detail { color: rgba(255,255,255,.78); }

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--sage-dark), #3d7a62);
  padding: 72px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; right: -80px; bottom: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-band h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 700; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 36px; line-height: 1.75; position: relative; z-index: 1; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  padding: 130px 0 64px; text-align: center;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 18px; font-size: .8rem; color: rgba(255,255,255,.45); }
.breadcrumb a { color: rgba(255,255,255,.45); }
.breadcrumb a:hover { color: #8ed4b8; }
.breadcrumb span { color: #8ed4b8; }

/* TARIFS FULL PAGE */
.tarifs-full-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-bottom: 48px; }
.tarif-full-card {
  background: var(--white); border-radius: var(--radius); padding: 36px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow); transition: var(--transition);
}
.tarif-full-card:hover { border-color: var(--sage); box-shadow: var(--shadow-lg); }
.tarif-full-card .tarif-price { font-size: 3rem; font-weight: 700; color: var(--sage-dark); }
.tarif-full-card .tarif-type { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--clay); margin-bottom: 12px; font-family: 'Inter', sans-serif; }
.tarif-full-card .tarif-duration { font-size: .85rem; color: var(--taupe); margin: 8px 0 18px; font-family: 'Inter', sans-serif; }
.tarif-includes { list-style: none; }
.tarif-includes li { display: flex; gap: 10px; align-items: flex-start; font-size: .875rem; color: var(--taupe); margin-bottom: 10px; font-family: 'Inter', sans-serif; line-height: 1.5; }
.tarif-includes i { color: var(--sage); margin-top: 3px; flex-shrink: 0; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: 1.75rem; font-weight: 700; color: var(--sage-dark); margin-bottom: 16px; }
.contact-info > p { color: var(--taupe); margin-bottom: 28px; line-height: 1.75; font-family: 'Inter', sans-serif; }
.info-items { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.ii-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--sage-pale); color: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ii-content strong { display: block; font-weight: 700; margin-bottom: 2px; font-size: .9rem; }
.ii-content span { font-size: .85rem; color: var(--taupe); font-family: 'Inter', sans-serif; }
.form-box { background: var(--white); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-lg); border: 1.5px solid var(--border); }
.fg { margin-bottom: 18px; }
.fg label { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--sage-dark); margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .875rem; color: var(--text);
  background: var(--cream); transition: var(--transition);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--sage); background: var(--white); box-shadow: 0 0 0 3px rgba(61,122,98,.1); }
.fg textarea { resize: vertical; min-height: 120px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-note { font-size: .78rem; color: var(--taupe); text-align: center; margin-top: 12px; font-family: 'Inter', sans-serif; }
.form-note i { color: var(--sage); margin-right: 4px; }

/* ACCOMPAGNEMENTS PAGE */
.accomp-full-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.accomp-full-item {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 44px; box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: start;
  transition: var(--transition); position: relative; overflow: hidden;
}
.accomp-full-item::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--sage), var(--clay));
}
.accomp-full-item:hover { box-shadow: var(--shadow-lg); border-color: var(--sage-pale); }
.accomp-icon-lg {
  width: 68px; height: 68px; border-radius: 20px;
  background: var(--sage-pale); color: var(--sage);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; flex-shrink: 0;
}
.accomp-full-item h3 { font-size: 1.3rem; font-weight: 700; color: var(--sage-dark); margin-bottom: 12px; }
.accomp-full-item p { font-size: .9rem; color: var(--taupe); line-height: 1.75; margin-bottom: 16px; font-family: 'Inter', sans-serif; }
.accomp-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.accomp-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--text); font-family: 'Inter', sans-serif; }
.accomp-list i { color: var(--sage); margin-top: 3px; flex-shrink: 0; font-size: .8rem; }

/* FOOTER */
.footer { background: var(--sage-dark); color: rgba(255,255,255,.55); padding: 60px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 24px; }
.footer-brand p { margin-top: 14px; font-size: .875rem; max-width: 260px; line-height: 1.7; font-family: 'Inter', sans-serif; }
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 16px; font-size: .9rem; font-family: 'Inter', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: .875rem; transition: color var(--transition); font-family: 'Inter', sans-serif; }
.footer-col a:hover { color: #8ed4b8; }
.footer-contact p { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: .875rem; font-family: 'Inter', sans-serif; }
.footer-contact i { color: #8ed4b8; margin-top: 3px; flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .78rem; font-family: 'Inter', sans-serif; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .accomp-grid, .temo-grid { grid-template-columns: repeat(2,1fr); }
  .tarifs-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .approche-layout { gap: 48px; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .accomp-grid, .pourqui-grid, .temo-grid, .tarifs-grid { grid-template-columns: 1fr; }
  .approche-layout { grid-template-columns: 1fr; }
  .approche-img { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tarif-card.featured { transform: scale(1); }
  .accomp-full-item { grid-template-columns: 1fr; gap: 20px; padding: 28px; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 260px;
    background: var(--sage-dark); flex-direction: column;
    padding: 90px 24px 40px; gap: 4px; list-style: none;
    transition: right var(--transition); box-shadow: -8px 0 30px rgba(0,0,0,.3);
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 12px 8px; display: block; border-bottom: 1px solid rgba(255,255,255,.07); border-radius: 0; }
  .hamburger { display: flex; }
  .fg-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .footer-grid { grid-template-columns: 1fr; }
}
