/* ============================================================
   IMPULS'ENTREPRENEURS · Feuille de style principale
   ============================================================ */

:root {
  --violet:     #6B3FA0;
  --violet-dark:#4A2980;
  --violet-light:#9B6DD0;
  --gold:       #C9953A;
  --gold-light: #E8B55A;
  --cream:      #FAF8F5;
  --dark:       #1A1025;
  --dark-soft:  #2D1E45;
  --grey:       #6B7280;
  --grey-light: #F3F0F7;
  --white:      #FFFFFF;

  --font-title: 'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;

  --radius:     12px;
  --radius-lg:  24px;
  --shadow:     0 4px 24px rgba(107,63,160,0.12);
  --shadow-lg:  0 16px 48px rgba(107,63,160,0.18);
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Helpers ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.label-section {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(107,63,160,.1);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.section-header h2 { font-family: var(--font-title); font-size: clamp(1.8rem,3vw,2.6rem); margin-bottom: 16px; }
.section-header p { color: var(--grey); font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--violet);
  color: var(--white);
}
.btn-primary:hover { background: var(--violet-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────
   NAV
───────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .logo { color: var(--dark); }
.logo-ie {
  width: 44px; height: 44px;
  background: rgba(255,255,255);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .85rem;
  flex-shrink: 0;
}
.logo-ie img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-name, .footer-name { font-size: .9rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav.scrolled .nav-links a { color: var(--dark); }
.nav-links a:hover { color: var(--violet-light); }
.nav.scrolled .nav-links a:hover { color: var(--violet); }
.btn-nav {
  background: var(--violet) !important;
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--violet-dark) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.scrolled .burger span { background: var(--dark); }

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--violet-dark) 50%, #8B3FAF 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text { text-align: left; }
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 0 80px rgba(201,149,58,0.35)) drop-shadow(0 0 30px rgba(107,63,160,0.4));
  animation: logoFloat 5s ease-in-out infinite;
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
.hero-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 24px;
}
.hero-content h1 {
  font-family: var(--font-title);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.4);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50%       { opacity: 1;  transform: scaleY(1.2); }
}

/* ─────────────────────────────────────────────
   BANDEAU ÉVÉNEMENT
───────────────────────────────────────────── */
.event-banner {
  background: linear-gradient(90deg, var(--dark) 0%, var(--dark-soft) 100%);
  padding: 40px 24px;
}
.event-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.event-date-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}
.event-day {
  font-family: var(--font-title);
  font-size: 4rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.event-month-year {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
.event-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}
.event-info { flex: 1; }
.event-label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.event-info h2 {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--white);
  margin-bottom: 4px;
}
.event-place { color: rgba(255,255,255,.6); font-size: .9rem; }
.event-banner-inner .btn { flex-shrink: 0; }

/* ─────────────────────────────────────────────
   DÉTAIL ÉVÉNEMENT
───────────────────────────────────────────── */
.event-detail { background: var(--cream); }
.event-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.event-detail-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 20px;
}
.event-detail-text p { color: var(--grey); line-height: 1.75; margin-bottom: 16px; }
.event-features { margin: 28px 0; display: flex; flex-direction: column; gap: 20px; }
.event-features li { display: flex; gap: 16px; align-items: flex-start; }
.feat-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.event-features strong { display: block; font-size: .95rem; margin-bottom: 2px; }
.event-features p { color: var(--grey); font-size: .88rem; margin: 0; }

.event-detail-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.visual-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.visual-card:hover { transform: translateY(-4px); }
.v-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.visual-card strong { display: block; font-size: .95rem; margin-bottom: 4px; color: var(--dark); }
.visual-card p { color: var(--grey); font-size: .82rem; margin: 0; }
.card-1 { border-top: 4px solid var(--violet); }
.card-2 { border-top: 4px solid var(--gold); }
.card-3 { border-top: 4px solid var(--violet-light); }
.card-4 { border-top: 4px solid #48BB78; }

/* ─────────────────────────────────────────────
   MISSIONS
───────────────────────────────────────────── */
.missions { background: var(--white); }
.missions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mission-card {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.mission-card:hover {
  background: var(--white);
  border-color: var(--violet);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.mission-icon { font-size: 2.4rem; margin-bottom: 20px; }
.mission-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 12px; }
.mission-card p { color: var(--grey); font-size: .9rem; line-height: 1.7; }

/* ─────────────────────────────────────────────
   ABOUT
───────────────────────────────────────────── */
.about { background: var(--cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; height: 400px; }
.about-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-stats {
  position: absolute;
  bottom: -24px;
  right: -24px;
  display: flex;
  gap: 16px;
}
.stat {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.stat-num {
  display: block;
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--violet);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .75rem; color: var(--grey); line-height: 1.4; }
.about-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p { color: var(--grey); line-height: 1.75; margin-bottom: 16px; }

/* ─────────────────────────────────────────────
   CONTACT
───────────────────────────────────────────── */
.contact { background: var(--dark); }
.contact .label-section { background: rgba(201,149,58,.15); color: var(--gold-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-title);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  margin-bottom: 16px;
}
.contact-info > p { color: rgba(255,255,255,.65); line-height: 1.75; margin-bottom: 32px; }
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 14px; align-items: center; color: rgba(255,255,255,.75); font-size: .95rem; }
.c-icon { font-size: 1.3rem; }

.contact-form {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.65); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--violet-light);
  background: rgba(255,255,255,.12);
}
.form-group select option { background: var(--dark); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  color: #48BB78;
  font-size: .9rem;
  text-align: center;
  padding: 12px;
  background: rgba(72,187,120,.1);
  border-radius: var(--radius);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.footer {
  background: #0D0818;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(1.1) drop-shadow(0 0 8px rgba(201,149,58,0.4));
  flex-shrink: 0;
}
.footer-name { font-size: .85rem; color: rgba(255,255,255,.8); }
.footer-brand > p { font-size: .75rem; color: rgba(255,255,255,.35); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,.45); font-size: .85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--violet-light); }
.footer-copy { text-align: right; }
.footer-copy p { color: rgba(255,255,255,.3); font-size: .78rem; line-height: 1.8; }
.footer-copy a { color: rgba(255,255,255,.45); }
.footer-copy a:hover { color: var(--violet-light); }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .missions-grid { grid-template-columns: repeat(2, 1fr); }
  .event-detail-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { height: 280px; }
  .about-stats { bottom: -16px; right: 16px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }

  .burger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.2rem; color: var(--white) !important; }

  .missions-grid { grid-template-columns: 1fr; }
  .event-detail-visual { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }

  .event-banner-inner { gap: 24px; }
  .event-divider { display: none; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }

  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-text { text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; justify-content: center; }
  .hero-logo-wrap { order: -1; }
  .hero-logo-img { max-width: 260px; }
  .hero-scroll { display: none; }
}

@media (max-width: 480px) {
  .event-detail-visual { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 8px; }
}

/* ─────────────────────────────────────────────
   PAGE HERO (pages internes)
───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--violet-dark) 100%);
  padding: 130px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .label-section {
  background: rgba(201,149,58,.2);
  color: var(--gold-light);
  margin-bottom: 20px;
  position: relative;
}
.page-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.page-hero > .container > p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  position: relative;
}

/* ─────────────────────────────────────────────
   NAV — active link
───────────────────────────────────────────── */
.nav.scrolled .nav-links a.active { color: var(--violet) !important; font-weight: 600; }
.nav-links a.active { color: var(--violet-light) !important; }

/* ─────────────────────────────────────────────
   ANNUAIRE — barre de filtres
───────────────────────────────────────────── */
.annuaire-filters {
  background: var(--cream);
  padding: 20px 0;
  border-bottom: 1px solid rgba(107,63,160,.1);
  position: sticky;
  top: 73px;
  z-index: 100;
}
.filters-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.search-wrap {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: .95rem;
}
.search-wrap input {
  width: 100%;
  padding: 11px 16px 11px 40px;
  border: 1.5px solid rgba(107,63,160,.2);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-wrap input:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(107,63,160,.1);
}
.search-wrap input::placeholder { color: var(--grey); }
#secteurFilter {
  padding: 11px 38px 11px 14px;
  border: 1.5px solid rgba(107,63,160,.2);
  border-radius: var(--radius);
  background: var(--white)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B3FA0' d='M1 1l5 5 5-5'/%3E%3C/svg%3E")
    no-repeat right 14px center;
  background-size: 10px;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--dark);
  cursor: pointer;
  appearance: none;
}
#secteurFilter:focus { outline: none; border-color: var(--violet); }
.count-label {
  font-size: .83rem;
  color: var(--grey);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────
   ANNUAIRE — grille membres
───────────────────────────────────────────── */
.annuaire-main { background: var(--white); }
.membres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}
.membre-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid rgba(107,63,160,.08);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.membre-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--violet-light);
}
.membre-card-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: inherit;
}
.membre-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--violet-dark), var(--violet-light));
  overflow: hidden;
  flex-shrink: 0;
}
.membre-card-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.membre-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-title);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.75);
}
/* Logo en image principale */
.membre-card-img-logo {
  background: #f5f5f7;
}
.membre-card-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 22px;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.2));
}
/* Photo en miniature superposée */
.membre-card-img-logo .membre-card-photo {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,.22);
}
.membre-card-body {
  padding: 20px 20px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.membre-secteur-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--violet);
  background: rgba(107,63,160,.09);
  padding: 3px 10px;
  border-radius: 999px;
  align-self: flex-start;
}
.membre-card-body h3 {
  font-family: var(--font-title);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2px;
}
.membre-entrepreneur-nom {
  font-size: .82rem;
  font-weight: 500;
  color: var(--violet);
  margin-top: -2px;
}
.membre-activite {
  color: var(--grey);
  font-size: .875rem;
  flex: 1;
  line-height: 1.5;
}
.membre-reseaux {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.reseau-link {
  font-size: 1.15rem;
  transition: transform var(--transition);
  line-height: 1;
}
.reseau-link:hover { transform: scale(1.25); }
.membre-btn {
  display: block;
  margin: 0 20px 20px;
  padding: 10px 16px;
  text-align: center;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  border: 1.5px solid var(--violet);
  color: var(--violet);
  background: transparent;
  transition: all var(--transition);
}
.membre-btn:hover {
  background: var(--violet);
  color: var(--white);
}

/* ─────────────────────────────────────────────
   ANNUAIRE — CTA bas de page
───────────────────────────────────────────── */
.annuaire-cta { background: var(--cream); padding: 64px 0; }
.cta-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--violet-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--white);
  margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,.65); font-size: .95rem; }

/* ─────────────────────────────────────────────
   PROFIL — hero
───────────────────────────────────────────── */
.profile-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--violet-dark) 100%);
  padding: 130px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.profile-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.profile-hero > .container { position: relative; }
.profile-breadcrumb {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 28px;
}
.profile-breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.profile-breadcrumb a:hover { color: var(--gold-light); }
.profile-breadcrumb span { margin: 0 6px; }
.profile-photo-wrap {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  overflow: hidden;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--violet), var(--violet-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.profile-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.profile-initials-lg {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,.85);
}
.profile-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 8px;
}
.profile-hero-activite {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.profile-hero-ville { color: rgba(255,255,255,.5); font-size: .9rem; }

/* ─────────────────────────────────────────────
   PROFIL — contenu principal
───────────────────────────────────────────── */
.profile-section { background: var(--cream); }
.profile-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
  padding: 64px 0 80px;
}
.profile-sidebar { display: flex; flex-direction: column; gap: 20px; }
.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}
.profile-card-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-light);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: .9rem;
  color: var(--dark);
  line-height: 1.5;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon { font-size: 1.05rem; flex-shrink: 0; margin-top: 1px; }
.contact-info-item a { color: var(--violet); transition: color var(--transition); word-break: break-all; }
.contact-info-item a:hover { color: var(--violet-dark); text-decoration: underline; }

/* Boutons réseaux sociaux */
.social-buttons { display: flex; flex-direction: column; gap: 9px; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  border: 1.5px solid;
  transition: all var(--transition);
  color: inherit;
}
.social-btn:hover { transform: translateX(4px); }
.social-btn.instagram  { color: #C13584; border-color: rgba(193,53,132,.2); background: rgba(193,53,132,.04); }
.social-btn.instagram:hover  { background: rgba(193,53,132,.1); }
.social-btn.facebook   { color: #1877F2; border-color: rgba(24,119,242,.2); background: rgba(24,119,242,.04); }
.social-btn.facebook:hover   { background: rgba(24,119,242,.1); }
.social-btn.linkedin   { color: #0A66C2; border-color: rgba(10,102,194,.2); background: rgba(10,102,194,.04); }
.social-btn.linkedin:hover   { background: rgba(10,102,194,.1); }
.social-btn.tiktok     { color: #333; border-color: rgba(0,0,0,.15); background: rgba(0,0,0,.03); }
.social-btn.tiktok:hover     { background: rgba(0,0,0,.08); }
.social-btn.twitter    { color: #1DA1F2; border-color: rgba(29,161,242,.2); background: rgba(29,161,242,.04); }
.social-btn.twitter:hover    { background: rgba(29,161,242,.1); }
.social-btn.pinterest  { color: #E60023; border-color: rgba(230,0,35,.2); background: rgba(230,0,35,.04); }
.social-btn.pinterest:hover  { background: rgba(230,0,35,.1); }
.social-btn.youtube    { color: #FF0000; border-color: rgba(255,0,0,.2); background: rgba(255,0,0,.04); }
.social-btn.youtube:hover    { background: rgba(255,0,0,.1); }
.social-btn.etsy       { color: #F56400; border-color: rgba(245,100,0,.2); background: rgba(245,100,0,.04); }
.social-btn.etsy:hover       { background: rgba(245,100,0,.1); }
.social-icon { font-size: 1.15rem; }

/* Logo entreprise */
.profile-logo-img {
  max-width: 160px;
  max-height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

/* Colonne principale */
.profile-main { display: flex; flex-direction: column; gap: 28px; }

.profile-slogan {
  background: linear-gradient(135deg, var(--violet-dark), var(--violet));
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}
.quote-mark {
  font-family: var(--font-title);
  font-size: 5rem;
  color: rgba(255,255,255,.15);
  line-height: 1;
  flex-shrink: 0;
  margin-top: -8px;
  user-select: none;
}
.profile-slogan-quote {
  font-family: var(--font-title);
  font-size: clamp(1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
}

.profile-histoire {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}
.profile-histoire-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
}
.profile-histoire-text {
  color: var(--grey);
  line-height: 1.85;
  font-size: .96rem;
  white-space: pre-wrap;
}

.profile-back {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 4px;
}

/* No result */
.no-result {
  text-align: center;
  padding: 60px 24px;
  color: var(--grey);
  font-size: .95rem;
}

/* ─────────────────────────────────────────────
   RESPONSIVE — nouvelles pages
───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .profile-layout { grid-template-columns: 260px 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .profile-layout { grid-template-columns: 1fr; }
  .profile-back { justify-content: center; }
  .cta-card { flex-direction: column; text-align: center; }
  .cta-card .btn { width: 100%; justify-content: center; }
  .filters-bar { gap: 10px; }
  .search-wrap { min-width: 100%; }
  .profile-slogan { flex-direction: column; gap: 8px; }
  .quote-mark { font-size: 3rem; }
}
