/* =========================================================
   Declick — Site web (refonte 2026)
   Design system issu de la charte graphique V01 + bundle
   « Affiche Conférence » (claude.ai/design)
   ========================================================= */

/* ---------- Web fonts ---------- */
@font-face { font-family: 'Aftika'; src: url('../fonts/Aftika-ExtraLight.otf') format('opentype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aftika'; src: url('../fonts/Aftika-Light.otf')      format('opentype'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aftika'; src: url('../fonts/Aftika-Regular.otf')    format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aftika'; src: url('../fonts/Aftika-SemiBold.otf')   format('opentype'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aftika'; src: url('../fonts/Aftika-Bold.otf')       format('opentype'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aftika'; src: url('../fonts/Aftika-ExtraBold.otf')  format('opentype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'Aftika'; src: url('../fonts/Aftika-Black.otf')      format('opentype'); font-weight: 900; font-style: normal; font-display: swap; }

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

/* ============================================================
   Tokens
   ============================================================ */
:root {
  --declick-violet:          #7b3887;
  --declick-violet-light:    #9b5aa7;
  --declick-violet-lighter:  #f3e8f6;
  --declick-violet-dark:     #5e2968;
  --declick-blue-night:      #342d4c;
  --declick-blue-night-light:#4a4165;

  --declick-bleu-clair:      #d0e7f9;
  --declick-peche:           #eec897;
  --declick-rose:             #e0bad5;
  --declick-jaune:           #fbeda6;
  --declick-creme:           #f8f7f4;

  --surface-primary:         #ffffff;
  --surface-secondary:       #faf9f7;
  --surface-tertiary:        #f3f1ee;
  --surface-hover:           #f0eee9;
  --surface-border:          #e8e5df;
  --surface-border-light:    #f0ede8;

  --fg-1: var(--declick-blue-night);
  --fg-2: #4b5563;
  --fg-3: #6b7280;
  --fg-4: #9ca3af;
  --fg-inverted: #ffffff;

  --radius-input: .5rem;
  --radius-card:  .75rem;
  --radius-modal: 1rem;
  --radius-pill:  9999px;

  --shadow-card:        0 1px 3px rgba(52,45,76,.04), 0 1px 2px rgba(52,45,76,.03);
  --shadow-card-hover:  0 4px 12px rgba(52,45,76,.08), 0 2px 4px rgba(52,45,76,.04);
  --shadow-dropdown:    0 8px 24px rgba(52,45,76,.12), 0 2px 8px rgba(52,45,76,.06);
  --shadow-modal:       0 20px 48px rgba(52,45,76,.18), 0 4px 16px rgba(52,45,76,.08);
  --shadow-button:      0 1px 2px rgba(123,56,135,.12);
  --shadow-button-hover:0 4px 8px rgba(123,56,135,.20);
  --shadow-glow-violet: 0 0 0 3px rgba(123,56,135,.15);

  --font-display: 'Aftika', 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body:    'DM Sans', 'Aftika', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --container: 1180px;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { color: var(--fg-1); font-family: var(--font-body); -webkit-font-smoothing: antialiased; text-size-adjust: 100%; }
body { background: var(--declick-creme); line-height: 1.55; min-height: 100vh; }
img, svg { max-width: 100%; display: block; }
a { color: var(--declick-violet); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }
ul { padding: 0; margin: 0; list-style: none; }
hr { border: 0; border-top: 1px solid var(--surface-border); margin: 2rem 0; }
::selection { background: var(--declick-jaune); color: var(--declick-blue-night); }

/* ============================================================
   Type ramp
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--fg-1); margin: 0; letter-spacing: -.02em; line-height: 1.15; }
h1 { font-weight: 900; font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -.035em; }
h2 { font-weight: 800; font-size: clamp(1.75rem, 3.4vw, 2.6rem); letter-spacing: -.025em; }
h3 { font-weight: 700; font-size: 1.4rem; }
h4 { font-weight: 700; font-size: 1.1rem; }
p { margin: 0 0 1rem; color: var(--fg-2); }
.lead { font-size: 1.125rem; line-height: 1.6; color: var(--fg-2); max-width: 56ch; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .22em; color: var(--declick-violet);
}
.eyebrow::before { content: ""; display: inline-block; width: 1.5rem; height: 2px; background: var(--declick-violet); }

mark.hl-yellow {
  background: linear-gradient(180deg, transparent 62%, var(--declick-jaune) 62%);
  color: inherit; padding: 0 .15em;
}
mark.hl-peche {
  background: linear-gradient(180deg, transparent 62%, var(--declick-peche) 62%);
  color: inherit; padding: 0 .15em;
}
mark.hl-rose {
  background: linear-gradient(180deg, transparent 62%, var(--declick-rose) 62%);
  color: inherit; padding: 0 .15em;
}

/* ============================================================
   Layout helpers
   ============================================================ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.flex-row { display: flex; flex-wrap: wrap; gap: 1rem; }
.text-center { text-align: center; }
.muted { color: var(--fg-3); }
.tight { max-width: 60ch; }
.spacer-sm { height: 1.5rem; }
.spacer { height: 3rem; }

/* ============================================================
   Buttons & links
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .75rem 1.25rem; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  letter-spacing: .01em; line-height: 1; text-decoration: none;
  border: 1.5px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--declick-violet); color: #fff; box-shadow: var(--shadow-button); }
.btn-primary:hover { background: var(--declick-violet-dark); box-shadow: var(--shadow-button-hover); color: #fff; }
.btn-yellow { background: var(--declick-jaune); color: var(--declick-blue-night); }
.btn-yellow:hover { background: #f7e07a; }
.btn-ghost { background: transparent; color: var(--declick-violet); border-color: var(--declick-violet); }
.btn-ghost:hover { background: var(--declick-violet); color: #fff; }
.btn-light { background: #fff; color: var(--declick-blue-night); border-color: var(--surface-border); }
.btn-light:hover { background: var(--declick-creme); }
.btn-sm { padding: .5rem .9rem; font-size: .8rem; }
.btn-lg { padding: 1rem 1.6rem; font-size: 1rem; }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(2px); }

.linkish {
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-display); font-weight: 700; font-size: .9rem;
  color: var(--declick-violet); text-decoration: none;
  border-bottom: 2px solid var(--declick-jaune);
  padding-bottom: 2px;
}
.linkish:hover { color: var(--declick-violet-dark); text-decoration: none; }

/* ============================================================
   Top notice bar
   ============================================================ */
.notice-bar {
  background: var(--declick-blue-night); color: #fff;
  font-family: var(--font-body); font-size: .82rem;
  padding: .55rem 1rem; text-align: center;
}
.notice-bar a { color: var(--declick-jaune); font-weight: 600; border-bottom: 1px dashed var(--declick-jaune); padding-bottom: 1px; }
.notice-bar a:hover { color: #fff; text-decoration: none; }

/* ============================================================
   Site header / nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--surface-border-light);
}
.site-header .header-inner {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 1.5rem; max-width: var(--container); margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; }
.brand img { height: 34px; width: auto; }
.brand-text {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  color: var(--declick-blue-night); letter-spacing: -.01em;
}
.primary-nav {
  flex: 1; display: flex; align-items: center; gap: .25rem; flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: .25rem;
  padding: .55rem .8rem; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  color: var(--fg-1); text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover { background: var(--declick-violet-lighter); color: var(--declick-violet); text-decoration: none; }
.nav-link.is-active { color: var(--declick-violet); }
.nav-link .caret { width: .65rem; height: .65rem; opacity: .55; }

.nav-dropdown {
  position: absolute; top: calc(100% + .25rem); left: 0; min-width: 220px;
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius-card); box-shadow: var(--shadow-dropdown);
  padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 60;
}
.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block; padding: .55rem .75rem; border-radius: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .88rem;
  color: var(--fg-1); text-decoration: none;
}
.nav-dropdown a:hover { background: var(--declick-violet-lighter); color: var(--declick-violet); }

.lang-toggle {
  display: inline-flex; align-items: center; padding: .4rem .65rem;
  border: 1px solid var(--surface-border); border-radius: var(--radius-pill);
  font-family: var(--font-display); font-weight: 700; font-size: .75rem;
  color: var(--fg-2); letter-spacing: .12em; text-transform: uppercase;
  background: #fff;
}
.lang-toggle:hover { border-color: var(--declick-violet); color: var(--declick-violet); text-decoration: none; }

.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-pill);
  background: var(--declick-blue-night); color: #fff; border: 0;
}

@media (max-width: 1080px) {
  .menu-toggle { display: inline-flex; }
  .primary-nav {
    position: fixed; inset: 64px 0 0 0; background: #fff;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 1rem 1.25rem 2rem; gap: .25rem;
    overflow-y: auto;
    transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: transform .25s ease, opacity .2s ease, visibility .25s;
    border-top: 1px solid var(--surface-border);
  }
  .primary-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-link { padding: .85rem 1rem; font-size: 1rem; border-radius: 12px; }
  .nav-dropdown {
    position: static; box-shadow: none; border: 0; opacity: 1; visibility: visible;
    transform: none; padding: 0 0 0 1rem; background: transparent;
  }
}

/* ============================================================
   Hero — violet band with yellow highlight
   ============================================================ */
.hero {
  position: relative;
  background: var(--declick-violet);
  color: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(5rem, 10vw, 8rem);
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; right: -160px; top: -180px;
  width: 520px; height: 520px; border-radius: 50%;
  background: var(--declick-violet-dark); opacity: .45; z-index: -1;
}
.hero::after {
  content: ""; position: absolute; left: -120px; bottom: -160px;
  width: 360px; height: 360px; border-radius: 50%;
  background: var(--declick-violet-light); opacity: .35; z-index: -1;
}
.hero .eyebrow { color: var(--declick-jaune); }
.hero .eyebrow::before { background: var(--declick-jaune); }
.hero h1 {
  color: #fff; margin: 1rem 0 1.25rem;
  text-transform: uppercase; line-height: .95;
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
}
.hero h1 .accent { color: var(--declick-jaune); font-style: italic; font-weight: 300; }
.hero .lead { color: rgba(255,255,255,.9); max-width: 52ch; font-size: 1.15rem; }
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.hero-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1rem; border-radius: var(--radius-pill);
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.22);
  font-family: var(--font-display); font-weight: 600; font-size: .82rem;
  color: #fff; text-transform: uppercase; letter-spacing: .06em;
}
.hero-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--declick-jaune); }

/* Compact hero for inner pages */
.hero-compact { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem); }
.hero-compact h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); text-transform: none; line-height: 1.05; }
.breadcrumb { font-family: var(--font-display); font-weight: 600; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: .75rem; }
.breadcrumb a { color: var(--declick-jaune); }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-modal);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column; gap: .75rem;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); border-color: var(--declick-violet-lighter); }
.card .card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--declick-violet-lighter); color: var(--declick-violet);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.card h3 { font-size: 1.25rem; }
.card p { color: var(--fg-2); margin: 0; }
.card .card-foot { margin-top: auto; padding-top: 1rem; }

.card-violet { background: var(--declick-violet); color: #fff; border-color: var(--declick-violet-dark); }
.card-violet h3, .card-violet p { color: #fff; }
.card-violet .card-icon { background: rgba(255,255,255,.12); color: var(--declick-jaune); }
.card-violet .linkish { color: var(--declick-jaune); border-color: var(--declick-jaune); }

.card-yellow { background: var(--declick-jaune); border-color: rgba(52,45,76,.12); }
.card-yellow h3 { color: var(--declick-blue-night); }
.card-yellow p { color: var(--declick-blue-night); opacity: .82; }

/* ============================================================
   Topic chips (style affiche : icône ronde + texte)
   ============================================================ */
.chip {
  display: inline-flex; align-items: center; gap: .65rem;
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius-pill); padding: .55rem 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: .78rem;
  color: var(--declick-blue-night); text-transform: uppercase;
  letter-spacing: .04em; line-height: 1.2;
}
.chip-circle {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--declick-violet-lighter);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--declick-violet); flex-shrink: 0;
}
.chip-grid { display: grid; gap: .75rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.chip-row { display: flex; flex-wrap: wrap; gap: .5rem; }

/* ============================================================
   Section headings
   ============================================================ */
.section-head { margin-bottom: 2.5rem; }
.section-head .eyebrow { margin-bottom: .75rem; }
.section-head h2 + p { margin-top: 1rem; max-width: 60ch; color: var(--fg-2); font-size: 1.05rem; }
.section-alt { background: var(--surface-secondary); }

/* ============================================================
   Info panel (style bandeau jaune des affiches)
   ============================================================ */
.info-panel {
  background: var(--declick-jaune);
  border-radius: var(--radius-modal);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 2rem; align-items: center;
}
.info-panel h3 { color: var(--declick-blue-night); }
.info-panel .info-rows { display: grid; gap: .5rem; margin-top: 1rem; }
.info-panel .info-row { display: grid; grid-template-columns: 88px 1fr; gap: 1rem; align-items: baseline; }
.info-panel .info-label {
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  color: var(--declick-violet); text-transform: uppercase; letter-spacing: .14em;
}
.info-panel .info-value {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--declick-blue-night); line-height: 1.3;
}
@media (max-width: 720px) {
  .info-panel { grid-template-columns: 1fr; }
}

/* ============================================================
   Stats band
   ============================================================ */
.stats-band {
  background: var(--declick-blue-night); color: #fff;
  padding: clamp(2rem, 4vw, 3rem) 0;
}
.stats-band .stats-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  text-align: center;
}
.stats-band .stat-num {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--declick-jaune); letter-spacing: -.03em; line-height: 1;
}
.stats-band .stat-label {
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  color: rgba(255,255,255,.78); margin-top: .35rem;
  text-transform: uppercase; letter-spacing: .12em;
}

/* ============================================================
   Conférence promo (parents conf)
   ============================================================ */
.promo-conf {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem); align-items: center;
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius-modal); padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-card);
}
.promo-conf .promo-art {
  background: var(--declick-violet-lighter);
  border-radius: var(--radius-modal);
  padding: 1.25rem; display: flex; align-items: center; justify-content: center;
}
.promo-conf .promo-art img { max-width: 320px; width: 100%; height: auto; }
@media (max-width: 820px) { .promo-conf { grid-template-columns: 1fr; } }

/* ============================================================
   Article / prose
   ============================================================ */
.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.5rem; }
.prose h3 { margin-top: 2rem; }
.prose ul { margin: 1rem 0 1.5rem; padding-left: 0; }
.prose ul li {
  position: relative; padding-left: 1.75rem; margin-bottom: .55rem;
  color: var(--fg-2); line-height: 1.55;
}
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 1rem; height: 2px; background: var(--declick-violet);
}
.prose strong { color: var(--declick-blue-night); }

.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: -.05em;
  width: 1.2rem; height: 1.2rem; line-height: 1.2rem; text-align: center;
  background: var(--declick-jaune); color: var(--declick-blue-night);
  border-radius: 50%; font-weight: 800; font-size: .72rem;
  font-family: var(--font-display);
}

/* ============================================================
   Two-column inner page layout
   ============================================================ */
.page-grid {
  display: grid; gap: clamp(1.5rem, 3vw, 3rem);
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}
@media (max-width: 880px) { .page-grid { grid-template-columns: 1fr; } }

.aside-card {
  background: #fff; border: 1px solid var(--surface-border);
  border-radius: var(--radius-modal); padding: 1.5rem;
  position: sticky; top: 90px; box-shadow: var(--shadow-card);
}
.aside-card h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--declick-violet); text-transform: uppercase; letter-spacing: .12em; font-family: var(--font-display); font-weight: 800; }
.aside-card .meta-row { display: flex; gap: .5rem; align-items: flex-start; padding: .5rem 0; border-bottom: 1px dashed var(--surface-border); }
.aside-card .meta-row:last-child { border-bottom: 0; }
.aside-card .meta-label { font-family: var(--font-display); font-weight: 700; color: var(--declick-violet); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; min-width: 84px; }
.aside-card .meta-value { font-size: .9rem; color: var(--fg-1); }

/* ============================================================
   Resource grid
   ============================================================ */
.resource-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.resource { display: flex; flex-direction: column; gap: .5rem; padding: 1.25rem; background: #fff; border-radius: var(--radius-modal); border: 1px solid var(--surface-border); transition: transform .2s ease, box-shadow .2s ease; }
.resource:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.resource .badge {
  align-self: flex-start;
  padding: .25rem .55rem; border-radius: var(--radius-pill);
  background: var(--declick-jaune); color: var(--declick-blue-night);
  font-family: var(--font-display); font-weight: 700; font-size: .68rem;
  text-transform: uppercase; letter-spacing: .12em;
}
.resource h4 { font-size: 1rem; }
.resource p { color: var(--fg-3); font-size: .88rem; margin: 0; }

/* ============================================================
   Team grid
   ============================================================ */
.team-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.team-card {
  background: #fff; border: 1px solid var(--surface-border); border-radius: var(--radius-card);
  padding: 1.25rem; text-align: center; transition: transform .18s ease;
}
.team-card:hover { transform: translateY(-2px); }
.team-card .avatar {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto .75rem;
  background: var(--declick-violet); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
}
.team-card .role { color: var(--declick-violet); font-family: var(--font-display); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.team-card .name { color: var(--declick-blue-night); font-family: var(--font-display); font-weight: 800; font-size: 1rem; margin-top: .25rem; }

/* ============================================================
   Form
   ============================================================ */
.form-row { display: grid; gap: 1rem; }
.form-row label { font-family: var(--font-display); font-weight: 600; font-size: .85rem; color: var(--fg-1); display: block; margin-bottom: .35rem; }
.form-control {
  width: 100%; padding: .75rem 1rem; border: 1px solid var(--surface-border);
  border-radius: var(--radius-input); background: #fff;
  font-family: var(--font-body); font-size: .95rem; color: var(--fg-1);
  transition: border-color .15s, box-shadow .15s;
}
.form-control:focus { outline: 0; border-color: var(--declick-violet); box-shadow: var(--shadow-glow-violet); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--declick-blue-night); color: rgba(255,255,255,.85);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.site-footer .footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}
@media (max-width: 880px) { .site-footer .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  font-family: var(--font-display); font-weight: 800; font-size: .8rem;
  color: var(--declick-jaune); text-transform: uppercase; letter-spacing: .18em;
  margin-bottom: 1rem;
}
.site-footer a { color: rgba(255,255,255,.85); }
.site-footer a:hover { color: var(--declick-jaune); text-decoration: none; }
.site-footer .footer-brand img { height: 36px; margin-bottom: 1rem; }
.site-footer .footer-brand p { color: rgba(255,255,255,.7); font-size: .92rem; max-width: 36ch; }
.site-footer .footer-list { display: flex; flex-direction: column; gap: .55rem; }
.site-footer .footer-list a { font-size: .92rem; }
.site-footer .footer-bottom {
  margin-top: 2.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: rgba(255,255,255,.55); font-size: .8rem;
}
.social-row { display: flex; gap: .5rem; }
.social-row a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--declick-jaune); color: var(--declick-blue-night); border-color: var(--declick-jaune); }

/* ============================================================
   Utility
   ============================================================ */
.bg-cream  { background: var(--declick-creme); }
.bg-violet { background: var(--declick-violet); color: #fff; }
.bg-violet h2, .bg-violet h3 { color: #fff; }
.bg-night  { background: var(--declick-blue-night); color: #fff; }
.bg-night h2, .bg-night h3 { color: #fff; }
.bg-night p { color: rgba(255,255,255,.85); }

.surface-card { background: #fff; border-radius: var(--radius-modal); padding: clamp(1.25rem, 2.5vw, 2rem); border: 1px solid var(--surface-border); box-shadow: var(--shadow-card); }

/* ============================================================
   Print (affiche)
   ============================================================ */
@media print {
  .site-header, .site-footer, .notice-bar { display: none !important; }
  body { background: #fff; }
}
