*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #B8922A; --gold-light: #D4AF6A; --gold-pale: #F5EDD8;
  --ink: #1A1610; --ink-mid: #3D3628; --ink-soft: #6B6054;
  --cream: #EEF4FA; --white: #FFFFFF; --line: rgba(184,146,42,0.2);
  --blue-soft: #EEF4FA; --blue-mid: #C8DCF0;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--blue-soft); color: var(--ink); font-size: 16px; line-height: 1.7; overflow-x: hidden; }

.inline-en, .inline-fr { display: none; }
.lang-en .inline-en, .lang-fr .inline-fr { display: inline; }

.lang-toggle { display: flex; gap: 4px; }
.lang-btn { background: none; border: 1px solid var(--line); padding: 5px 12px; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; color: var(--ink-soft); transition: all 0.2s; }
.lang-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.lang-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(238,244,250,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); padding: 0 5%; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink); }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; font-size: 12px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.btn-primary { background: var(--gold); color: var(--white); padding: 14px 32px; border: none; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: #9E7A1E; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink-mid); padding: 13px 32px; border: 1px solid var(--ink-mid); font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; cursor: pointer; transition: border-color 0.2s, color 0.2s; display: inline-block; }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 64px;
  background: linear-gradient(to right, #FAF7F2 0%, #EEF3F8 35%, #C8DCF0 60%, #7BAED4 80%, #3B7CB8 100%);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
  pointer-events: none;
}
.hero-text { display: flex; flex-direction: column; justify-content: center; padding: 80px 8% 80px 10%; position: relative; z-index: 1; }
.hero-eyebrow { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 4.5vw, 68px); font-weight: 300; line-height: 1.08; color: var(--ink); margin-bottom: 8px; }
.hero-title strong { font-weight: 600; display: block; }
.hero-subtitle { font-family: 'Cormorant Garamond', serif; font-size: clamp(17px, 1.8vw, 24px); font-weight: 300; color: var(--gold); font-style: italic; margin-bottom: 32px; }
.hero-desc { font-size: 15px; color: var(--ink-soft); max-width: 440px; margin-bottom: 40px; line-height: 1.8; }
.cta-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-visual { background: transparent; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; z-index: 1; }
.hero-bg-pat { display: none; }
.hero-visual-inner { position: relative; z-index: 2; text-align: center; padding: 60px 40px; width: 100%; }
.book-showcase { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.book-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.2); width: 100%; }
.bstat { background: rgba(30,60,100,0.45); backdrop-filter: blur(6px); padding: 14px 8px; text-align: center; }
.bstat-num { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: #ffffff; display: block; line-height: 1; margin-bottom: 3px; }
.bstat-lbl { font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

.sec { padding: 100px 10%; }
.section-label { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: currentColor; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 3.5vw, 52px); font-weight: 400; line-height: 1.1; color: var(--ink); margin-bottom: 20px; }
.divider { width: 60px; height: 1px; background: var(--gold); margin: 28px 0; }

#book { background: var(--white); }
.book-grid { display: grid; grid-template-columns: 280px 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.book-desc { font-size: 15px; color: var(--ink-soft); line-height: 1.85; margin-bottom: 32px; }

.chapter-list-wrap { margin-bottom: 36px; }
.accordion-toggle { display: flex; align-items: center; justify-content: space-between; cursor: pointer; padding: 14px 20px; border: 1px solid var(--line); background: var(--blue-soft); user-select: none; transition: background 0.2s; }
.accordion-toggle:hover { background: var(--blue-mid); }
.accordion-toggle-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.accordion-arrow { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; transition: transform 0.3s ease; display: block; flex-shrink: 0; }
.accordion-body { display: none; }
.accordion-body.open { display: block; }
.chapter-list { border: 1px solid var(--line); border-top: none; }
.chapter-item { display: flex; align-items: center; gap: 16px; padding: 13px 20px; border-bottom: 1px solid var(--line); font-size: 14px; color: var(--ink-mid); transition: background 0.2s; }
.chapter-item:last-child { border-bottom: none; }
.chapter-item:hover { background: var(--blue-soft); }
.ch-num { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 300; color: var(--gold); min-width: 24px; }

#services { background: var(--blue-soft); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.services-intro { font-size: 15px; color: var(--ink-soft); line-height: 1.8; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(59,124,184,0.15); }
.service-card { background: var(--blue-soft); padding: 36px 28px; position: relative; overflow: hidden; transition: background 0.3s; }
.service-card:hover { background: var(--white); }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 60px; font-weight: 300; color: rgba(184,146,42,0.1); position: absolute; top: 12px; right: 20px; line-height: 1; transition: color 0.3s; }
.service-card:hover .svc-num { color: rgba(184,146,42,0.18); }
.svc-icon { width: 38px; height: 38px; border: 1px solid var(--gold-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.svc-icon svg { width: 17px; height: 17px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.svc-name { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; color: var(--ink); margin-bottom: 10px; }
.svc-desc { font-size: 13px; color: var(--ink-soft); line-height: 1.7; }

#about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-bio-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.about-bio-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.about-bio-name { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 400; color: var(--ink); line-height: 1.15; margin-bottom: 20px; }
.about-bio-name span { color: var(--gold); }
.about-bio-text { font-size: 14px; color: var(--ink-soft); line-height: 1.9; }
.about-bio-text p { margin-bottom: 16px; }
.about-bio-text p:last-child { margin-bottom: 0; }

.faq-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.faq-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-toggle { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; cursor: pointer; padding: 18px 20px; background: var(--white); user-select: none; transition: background 0.2s; }
.faq-toggle:hover { background: var(--blue-soft); }
.faq-question { font-size: 14px; font-weight: 500; color: var(--ink); line-height: 1.4; }
.faq-arrow { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; transition: transform 0.3s ease; display: block; flex-shrink: 0; margin-top: 2px; }
.faq-body { display: none; padding: 0 20px 18px; }
.faq-body.open { display: block; }
.faq-answer { font-size: 13px; color: var(--ink-soft); line-height: 1.8; }

#process { background: #3B7CB8; }
.process-header { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 56px; }
.process-intro { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.8; }

/* EmpowerTeam banner */
.team-banner { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 32px 40px; margin-bottom: 48px; }
.team-banner-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.team-banner-name { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 500; color: #fff; letter-spacing: 0.04em; }
.team-banner-sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 2px; }
.team-banner-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 24px; }
.team-specialists { display: flex; flex-wrap: wrap; gap: 8px; }
.team-tag { font-size: 11px; letter-spacing: 0.07em; color: rgba(255,255,255,0.9); border: 1px solid rgba(255,255,255,0.3); padding: 6px 14px; background: rgba(255,255,255,0.08); }

.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.15); }
.process-step { background: rgba(30,70,120,0.45); padding: 36px 24px; position: relative; }
.step-bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: transparent; transition: background 0.3s; }
.process-step:hover .step-bar { background: rgba(255,255,255,0.6); }
.step-num { font-family: 'Cormorant Garamond', serif; font-size: 44px; font-weight: 300; color: rgba(255,255,255,0.2); line-height: 1; margin-bottom: 20px; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 19px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.step-desc { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.75; }
.step-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 10px; font-style: italic; }

footer { background: #2A5F96; padding: 64px 10%; text-align: center; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 400; color: var(--white); letter-spacing: 0.04em; margin-bottom: 10px; }
.footer-logo span { color: rgba(255,255,255,0.5); }
.footer-tag { font-family: 'Cormorant Garamond', serif; font-size: 15px; font-style: italic; color: rgba(255,255,255,0.4); margin-bottom: 40px; }
.footer-cta { display: inline-flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); padding: 16px 44px; text-decoration: none; font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); transition: all 0.2s; margin-bottom: 48px; cursor: pointer; }
.footer-cta:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); color: var(--white); }
.footer-cta svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.hero-text > * { animation: fadeUp 0.7s ease both; }
.hero-eyebrow { animation-delay: 0.05s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-desc { animation-delay: 0.38s; }
.cta-group { animation-delay: 0.46s; }

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-text { padding: 60px 6%; }
  .hero-visual { min-height: 460px; }
  .services-header, .process-header { grid-template-columns: 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  #about { grid-template-columns: 1fr; padding: 60px 6%; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .sec, #services, #book, #process, #about { padding: 60px 6%; }
  footer { padding: 48px 6%; }
}
@media (max-width: 600px) { .process-steps { grid-template-columns: 1fr; } }
