/*
 * style.css
 * Psychologue Lyon – main stylesheet
 */

/* ── DESIGN TOKENS ── */
:root {
  --bg:           #F2F6F3;
  --white:        #FFFFFF;
  --ink:          #1C2B3A;
  --mid:          #546070;
  --soft:         #9ABCAA;
  --accent:       #5C8F72;
  --accent-light: #D3EAD9;
  --accent2:      #7AAF8A;
  --accent2-light:#DCF0E3;
  --line:         #D4E3D8;
  --pale:         #F4F8F5;
}

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

/* ── BASE ── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--soft); border-radius: 3px; }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 3.5rem;
  background: rgba(242,246,243,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-brand {
  display: flex; flex-direction: column; gap: 0.1rem;
  text-decoration: none;
}
.nav-brand .nb-name {
  font-family: 'Lora', serif;
  font-size: 1rem; font-weight: 500;
  color: var(--ink); letter-spacing: 0.02em;
}
.nav-brand .nb-sub {
  font-size: 0.68rem; color: var(--soft);
  letter-spacing: 0.1em; text-transform: uppercase;
}

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  text-decoration: none; font-size: 0.83rem; font-weight: 400;
  color: var(--mid); letter-spacing: 0.03em; cursor: pointer;
  transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--accent); border-bottom-color: var(--accent); }
.nav-links a.cta-nav {
  background: var(--accent); color: #fff;
  padding: 0.5rem 1.3rem; border-radius: 20px;
  font-size: 0.8rem; letter-spacing: 0.04em;
  border-bottom: none; transition: background 0.2s;
}
.nav-links a.cta-nav:hover { background: var(--ink); }

/* Mobile hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  border: none; background: transparent;
  padding: 0;
  cursor: pointer;
  justify-content: center; align-items: center;
  flex-direction: column; gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* X state */
nav.open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
nav.open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
nav.open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── LANG SELECTOR ── */
.lang-selector { position: relative; }
.lang-current {
  display: flex; align-items: center; gap: 0.3rem;
  cursor: pointer;
}
.lang-dropdown {
  position: absolute; right: 0; top: 100%; margin-top: 0.25rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: 6px; box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  display: none; min-width: 130px; z-index: 1000;
}
.lang-selector.open .lang-dropdown { display: block; }
.lang-option {
  padding: 0.4rem 0.8rem; cursor: pointer; white-space: nowrap;
}
.lang-option:hover { background: rgba(0,0,0,0.03); }

/* ══════════════════════════════════════════
   PAGE SYSTEM
══════════════════════════════════════════ */
.page { display: none; padding-top: 72px; min-height: 100vh; }
.page.active { display: block; animation: fadeUp 0.35s ease; }

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

/* ══════════════════════════════════════════
   PARTICULIERS – HERO
══════════════════════════════════════════ */
.part-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  min-height: calc(100vh - 72px);
  align-items: stretch;
}

.ph-left {
  padding: 5rem 4rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.ph-tag {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1.8rem;
}
.ph-title {
  font-family: 'Lora', serif;
  font-size: clamp(2.4rem, 3.8vw, 4rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 1.8rem; color: var(--ink);
}
.ph-title em { font-style: italic; color: var(--accent); }
.ph-intro {
  font-size: 1.05rem; color: var(--mid); max-width: 540px;
  line-height: 1.9; font-weight: 300; margin-bottom: 2.5rem;
}
.ph-quote {
  border-left: 3px solid var(--accent-light);
  padding: 1.2rem 1.5rem;
  background: var(--pale);
  border-radius: 0 6px 6px 0;
  margin-bottom: 2.5rem; max-width: 520px;
}
.ph-quote p {
  font-family: 'Lora', serif;
  font-style: italic; font-size: 1rem; color: var(--mid); line-height: 1.7;
}
.ph-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── PHOTO SIDE ── */
.ph-right {
  background: var(--accent-light);
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
}

/* Photo container – fill the upper portion */
.ph-photo {
  width: 100%; height: 75%;
  overflow: hidden; position: relative;
}
.ph-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

.ph-card {
  background: var(--white);
  padding: 2rem 2.5rem;
}
.ph-card .pc-name {
  font-family: 'Lora', serif;
  font-size: 1.1rem; font-weight: 500; margin-bottom: 0.3rem;
}
.ph-card .pc-title {
  font-size: 0.82rem; color: var(--accent); letter-spacing: 0.05em; margin-bottom: 1rem;
}
.ph-card .pc-details {
  font-size: 0.8rem; color: var(--mid); line-height: 1.7;
}

/* ── BUTTONS ── */
.btn-main {
  background: var(--accent); color: #fff;
  padding: 0.85rem 2rem; border: none; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s;
}
.btn-main:hover { background: var(--ink); }

.btn-outline {
  background: transparent; color: var(--accent);
  padding: 0.85rem 2rem; border: 1.5px solid var(--accent); border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.04em; cursor: pointer; transition: all 0.2s;
}
.btn-outline:hover { background: var(--accent-light); }

.btn-white {
  background: #fff; color: var(--accent);
  padding: 0.9rem 2rem; border: none; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.04em; cursor: pointer; transition: all 0.2s;
  width: 100%; font-weight: 500;
}
.btn-white:hover { background: var(--ink); color: #fff; }

.btn-green {
  background: var(--accent2); color: #fff;
  padding: 0.9rem 2.2rem; border: none; border-radius: 4px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.04em; cursor: pointer; transition: background 0.2s;
}
.btn-green:hover { background: var(--ink); }

/* ══════════════════════════════════════════
   THÈMES
══════════════════════════════════════════ */
.themes-section {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 5rem 4rem;
}
.section-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; margin-bottom: 3rem;
}
.sh-left .sec-tag {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 0.6rem;
}
.sh-left h2 {
  font-family: 'Lora', serif;
  font-size: 2rem; font-weight: 400; line-height: 1.2;
}
.sh-left h2 em { font-style: italic; color: var(--accent); }

.themes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.theme-card {
  background: var(--pale); border: 1px solid var(--line);
  border-radius: 8px; padding: 2rem;
  transition: all 0.25s; position: relative; overflow: hidden;
}
.theme-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent-light); transition: background 0.25s;
}
.theme-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(92,143,114,0.1); }
.theme-card:hover::before { background: var(--accent); }
.tc-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.tc-name {
  font-family: 'Lora', serif;
  font-size: 1.15rem; font-weight: 500; margin-bottom: 0.6rem; color: var(--ink);
}
.tc-text { font-size: 0.88rem; color: var(--mid); line-height: 1.7; font-weight: 300; }

/* ══════════════════════════════════════════
   APPROCHE
══════════════════════════════════════════ */
.approche-section {
  padding: 5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  border-top: 1px solid var(--line);
}
.as-left .sec-tag {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1rem;
}
.as-left h2 {
  font-family: 'Lora', serif;
  font-size: 2rem; font-weight: 400; line-height: 1.25; margin-bottom: 1.5rem;
}
.as-left h2 em { font-style: italic; color: var(--accent); }
.as-left p {
  font-size: 0.95rem; color: var(--mid); line-height: 1.9;
  margin-bottom: 1.2rem; font-weight: 300;
}
.as-right { display: flex; flex-direction: column; gap: 1.2rem; }
.approach-step {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem;
  background: var(--white); border-radius: 8px; border: 1px solid var(--line);
}
.as-num {
  font-family: 'Lora', serif;
  font-size: 1.5rem; color: var(--accent-light);
  font-weight: 400; line-height: 1; flex-shrink: 0; width: 36px; text-align: center;
}
.as-content h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.4rem; color: var(--ink); }
.as-content p { font-size: 0.83rem; color: var(--mid); line-height: 1.65; font-weight: 300; }

/* ══════════════════════════════════════════
   CADRE
══════════════════════════════════════════ */
.cadre-section {
  background: var(--accent);
  padding: 5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.cs-left h2 {
  font-family: 'Lora', serif;
  font-size: 2.2rem; font-weight: 400; line-height: 1.25;
  color: #fff; margin-bottom: 1.5rem;
}
.cs-left h2 em { font-style: italic; opacity: 0.75; }
.cs-left p {
  font-size: 0.95rem; color: rgba(255,255,255,0.7);
  line-height: 1.9; font-weight: 300; margin-bottom: 1.5rem;
}
.cs-right {
  background: rgba(255,255,255,0.12); border-radius: 8px;
  padding: 2.5rem; border: 1px solid rgba(255,255,255,0.2);
}
.cadre-items { list-style: none; margin-bottom: 2rem; }
.cadre-items li {
  padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem; color: rgba(255,255,255,0.85);
  display: flex; gap: 0.8rem; align-items: center;
}
.cadre-items li:last-child { border-bottom: none; }
.cadre-items li .ci-icon { font-size: 1rem; flex-shrink: 0; }
.cadre-email-link {
  display: block; margin-top: 1rem;
  font-size: 0.83rem; color: rgba(255,255,255,0.7);
  text-decoration: none; text-align: center;
}
.cadre-email-link:hover { color: #fff; }

/* ══════════════════════════════════════════
   À PROPOS
══════════════════════════════════════════ */
.about-hero {
  background: var(--white);
  display: grid; grid-template-columns: 380px 1fr;
  min-height: 60vh;
}
.about-photo {
  background: var(--accent-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 3rem 2rem;
  border-right: 1px solid var(--line);
}
.about-photo-frame {
  width: 220px; height: 280px;
  border-radius: 8px; overflow: hidden;
  margin-bottom: 1.5rem;
}
.about-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 10%;
  display: block;
}
.about-photo .ap-name {
  font-family: 'Lora', serif;
  font-size: 1.2rem; font-weight: 500; text-align: center; margin-bottom: 0.3rem;
}
.about-photo .ap-title {
  font-size: 0.78rem; color: var(--accent); letter-spacing: 0.06em;
  text-align: center; margin-bottom: 1rem;
}
.about-photo .ap-langs {
  font-size: 0.75rem; color: var(--mid); text-align: center; line-height: 1.6;
}
.about-photo .ap-adeli {
  font-size: 0.68rem; color: var(--soft); text-align: center;
  margin-top: 0.8rem; line-height: 1.7;
}
.about-text {
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text .sec-tag {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1.2rem;
}
.about-text h1 {
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 400; line-height: 1.2; margin-bottom: 1.5rem;
}
.about-text h1 em { font-style: italic; color: var(--accent); }
.about-text p {
  font-size: 0.97rem; color: var(--mid); line-height: 1.9;
  max-width: 580px; font-weight: 300; margin-bottom: 1.2rem;
}

/* ── FORMATIONS ── */
.formations-section { padding: 5rem 4rem; border-top: 1px solid var(--line); }
.formations-section h2 {
  font-family: 'Lora', serif;
  font-size: 1.8rem; font-weight: 400; margin-bottom: 3rem;
}
.formations-section h2 em { font-style: italic; color: var(--accent); }
.formations-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-bottom: 4rem;
}
.formation-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 8px; padding: 2rem 2.5rem;
  transition: box-shadow 0.2s;
}
.formation-card:hover { box-shadow: 0 4px 16px rgba(92,143,114,0.08); }
.fc-year {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 0.5rem;
}
.fc-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem; font-weight: 500; margin-bottom: 0.4rem; line-height: 1.3;
}
.fc-school { font-size: 0.82rem; color: var(--mid); margin-bottom: 0.8rem; }
.fc-detail {
  font-size: 0.8rem; color: var(--soft); line-height: 1.65;
  font-weight: 300; font-style: italic;
}

/* ── TIMELINE ── */
.exp-section { padding: 0 4rem 5rem; }
.exp-section h2 {
  font-family: 'Lora', serif;
  font-size: 1.8rem; font-weight: 400; margin-bottom: 2.5rem;
}
.exp-section h2 em { font-style: italic; color: var(--accent); }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 1px; background: var(--line);
}
.tl-item { position: relative; padding: 0 0 2.5rem 2rem; }
.tl-item::before {
  content: ''; position: absolute; left: -5px; top: 6px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent-light); border: 2px solid var(--accent);
}
.tl-item:last-child { padding-bottom: 0; }
.tl-date {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 0.3rem;
}
.tl-title {
  font-family: 'Lora', serif;
  font-size: 1.05rem; font-weight: 500; margin-bottom: 0.2rem;
}
.tl-org { font-size: 0.83rem; color: var(--mid); margin-bottom: 0.6rem; }
.tl-desc {
  font-size: 0.85rem; color: var(--mid); line-height: 1.75;
  font-weight: 300; max-width: 620px;
}

/* ── ABOUT DOUBLE ── */
.about-double {
  padding: 0 4rem 4rem; max-width: 820px;
}
.about-double .sec-tag {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 0.8rem;
}
.about-double h2 {
  font-family: 'Lora', serif;
  font-size: 1.6rem; font-weight: 400; margin-bottom: 1.2rem;
}
.about-double h2 em { font-style: italic; color: var(--accent); }
.about-double p {
  font-size: 0.97rem; color: var(--mid); line-height: 1.9;
  font-weight: 300; margin-bottom: 1rem;
}

/* ══════════════════════════════════════════
   ENTREPRISES
══════════════════════════════════════════ */
.ent-hero {
  background: linear-gradient(135deg, #1C2E25 0%, #264838 100%);
  padding: 6rem 4rem 5rem;
  position: relative; overflow: hidden;
}
.ent-hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(92,143,114,0.18) 0%, transparent 70%);
}
.ent-hero .pg-tag {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1.8rem;
}
.ent-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 400; line-height: 1.15; color: #fff;
  max-width: 780px; margin-bottom: 1.8rem;
}
.ent-hero h1 em { font-style: italic; color: #7AAF8A; }
.ent-hero p {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  max-width: 640px; line-height: 1.9; font-weight: 300;
}

.ent-services {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border-bottom: 1px solid var(--line);
}
.ent-card {
  background: var(--white); padding: 3rem 2.5rem;
  transition: background 0.2s; position: relative; overflow: hidden;
}
.ent-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--accent-light); transition: background 0.2s;
}
.ent-card:hover { background: var(--pale); }
.ent-card:hover::after { background: var(--accent); }
.ec-num {
  font-family: 'Lora', serif;
  font-size: 2.5rem; color: var(--accent-light);
  font-weight: 400; line-height: 1; margin-bottom: 1.2rem;
}
.ent-card h3 {
  font-family: 'Lora', serif; font-size: 1.15rem; font-weight: 500; margin-bottom: 0.8rem;
}
.ent-card p { font-size: 0.87rem; color: var(--mid); line-height: 1.75; font-weight: 300; }
.ent-card ul { list-style: none; margin-top: 1rem; }
.ent-card ul li {
  font-size: 0.83rem; color: var(--mid); padding: 0.3rem 0;
  display: flex; gap: 0.6rem; align-items: flex-start;
  border-bottom: 1px solid var(--line); font-weight: 300;
}
.ent-card ul li:last-child { border-bottom: none; }
.ent-card ul li::before { content: '—'; color: var(--accent); flex-shrink: 0; }

.ent-posit {
  padding: 5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  border-bottom: 1px solid var(--line);
}
.ep-left .sec-tag {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); font-weight: 500; margin-bottom: 1rem;
}
.ep-left h2 {
  font-family: 'Lora', serif;
  font-size: 2rem; font-weight: 400; line-height: 1.25; margin-bottom: 1.5rem;
}
.ep-left h2 em { font-style: italic; color: var(--accent); }
.ep-left p { font-size: 0.95rem; color: var(--mid); line-height: 1.9; font-weight: 300; margin-bottom: 1.2rem; }
.ep-right { display: flex; flex-direction: column; gap: 1rem; }
.ep-item {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 8px; padding: 1.5rem 2rem;
  display: flex; gap: 1.2rem; align-items: flex-start;
}
.ep-item .epi-icon { font-size: 1.3rem; flex-shrink: 0; }
.ep-item h4 { font-size: 0.88rem; font-weight: 500; margin-bottom: 0.3rem; }
.ep-item p { font-size: 0.8rem; color: var(--mid); line-height: 1.65; font-weight: 300; }

.ent-contact {
  background: var(--accent2-light); padding: 5rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.ec-left h2 {
  font-family: 'Lora', serif;
  font-size: 2rem; font-weight: 400; line-height: 1.3; margin-bottom: 1.2rem;
}
.ec-left h2 em { font-style: italic; color: var(--accent2); }
.ec-left p {
  font-size: 0.95rem; color: var(--mid); line-height: 1.9;
  font-weight: 300; margin-bottom: 1.5rem;
}
.ec-right {
  background: var(--white); border-radius: 8px; padding: 2.5rem;
  border: 1px solid rgba(127,181,160,0.3);
}
.ec-right .ecr-title {
  font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 500;
  margin-bottom: 1.2rem; color: var(--ink);
}
.process-list { list-style: none; }
.process-list li {
  display: flex; gap: 1rem; padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.87rem; color: var(--mid); font-weight: 300;
}
.process-list li:last-child { border-bottom: none; }
.process-list li .pl-num {
  font-family: 'Lora', serif; color: var(--accent2);
  font-size: 0.9rem; font-weight: 500; flex-shrink: 0; width: 20px;
}
.ent-contact-actions { display: flex; flex-direction: column; gap: 0.8rem; }
.ent-contact-actions .js-email-link {
  font-size: 0.83rem; color: rgba(28,43,58,0.5);
  text-decoration: none;
}
.ent-contact-actions .btn-green.js-email-link {
  color: #fff;
  text-decoration: none;
}
.ent-contact-actions .js-email-link:hover { color: var(--ink); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.35);
  padding: 2rem 3.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; letter-spacing: 0.04em;
}
footer a {
  color: rgba(255,255,255,0.35); text-decoration: none;
  cursor: pointer; transition: color 0.2s;
}
footer a:hover { color: rgba(255,255,255,0.7); }
.footer-email { margin-left: 0.4rem; }

/* ══════════════════════════════════════════
   RESPONSIVE – TABLET / MOBILE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1.2rem; flex-wrap: wrap; gap: 0.5rem; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    right: 1.2rem;
    top: 100%;
    margin-top: 0.5rem;
    background: rgba(242,246,243,0.98);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    padding: 0.75rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  nav.open .nav-links {
    display: flex;
  }
  .nav-links a { font-size: 0.78rem; }
  .nav-links a.cta-nav { padding: 0.4rem 1rem; }

  /* Hero particuliers */
  .part-hero { grid-template-columns: 1fr; min-height: auto; }
  .ph-left { padding: 2rem 1.5rem; order: 2; }
  .ph-right { order: 1; height: 320px; display: none; }
  .ph-photo { height: 100%; }
  .ph-title { font-size: 1.8rem; }
  .ph-intro { font-size: 0.92rem; }
  .ph-btns { flex-direction: column; gap: 0.8rem; }
  .ph-btns .btn-main, .ph-btns .btn-outline { width: 100%; }

  /* Themes */
  .themes-section { padding: 3rem 1.5rem; }
  .themes-grid { grid-template-columns: 1fr; gap: 1rem; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

  /* Approche */
  .approche-section { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }

  /* Cadre */
  .cadre-section { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .btn-white { width: 100%; box-sizing: border-box; }

  /* Entreprises */
  .ent-hero { padding: 4rem 1.5rem 3rem; }
  .ent-hero h1 { font-size: 1.8rem; }
  .ent-services { grid-template-columns: 1fr; }
  .ent-posit { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .ent-contact { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 1.5rem; }
  .btn-green { width: 100%; box-sizing: border-box; }

  /* About */
  .about-hero { grid-template-columns: 1fr; }
  .about-photo { padding: 2rem 1.5rem; border-right: none; border-bottom: 1px solid var(--line); }
  .about-photo-frame { width: 160px; height: 200px; }
  .about-text { padding: 2rem 1.5rem; }
  .about-text h1 { font-size: 1.8rem; }

  /* Formations */
  .formations-section { padding: 3rem 1.5rem; }
  .formations-grid { grid-template-columns: 1fr; }
  .exp-section { padding: 0 1.5rem 3rem; }
  .about-double { padding: 0 1.5rem 3rem; }

  /* Footer */
  footer { flex-direction: column; gap: 0.8rem; padding: 1.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .ph-title { font-size: 1.5rem; }
  .nav-links { gap: 0.5rem; }
  .nav-links a { font-size: 0.72rem; }
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color:var(--ink);
  text-decoration: none;
}

.linkedin-link:hover {
  text-decoration: underline;
}

.linkedin-icon {
  width: 18px;
  height: 18px;
}

.linkedin-text {
  color: var(--ink);
}

.ent-contact-actions { display: flex; flex-direction: column; gap: 0.8rem; }
.ent-contact-actions .js-email-link {
  font-size: 0.83rem; color: rgba(28,43,58,0.5);
  text-decoration: none;
}
.ent-contact-actions .btn-green.js-email-link {
  color: #fff;
  text-decoration: none;
}
.ent-contact-actions .js-email-link:hover { color: var(--ink); }

