:root {
  --ink: #14121a;
  --ink-2: #1e1b28;
  --ink-3: #0d0b14;
  --cream: #f2ead8;
  --cream-2: #e8dfc8;
  --bissap: #8b2a35;
  --bissap-hover: #b5404e;
  --indigo: #2d3178;
  --gold: #d4a843;
  --kola: #c4895a;

  --bg: var(--ink);
  --text: var(--cream);
  --text-dim: rgba(242, 234, 216, 0.55);
  --text-dim-2: rgba(242, 234, 216, 0.4);
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.6);
  --maxw: 1152px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(18px, 5vw, 40px); }

h1, h2, h3 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.eyebrow {
  font-family: "Spline Sans Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.on-kola { color: var(--kola); }
.eyebrow.on-cream { color: var(--bissap); }

.mono { font-family: "Spline Sans Mono", monospace; }

/* --- nav --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--ink) 82%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 8px; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 21px; letter-spacing: -0.02em; color: var(--cream); }
.brand svg { width: 26px; height: 26px; color: var(--bissap); }
.nav-links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; }
.nav-links a { position: relative; padding: 4px 0; color: var(--text-dim); transition: color .15s ease; }
.nav-links a:hover { color: var(--cream); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border);
  background: transparent; align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 18px; height: 2px; background: var(--cream); position: relative; transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-mobile { display: none; border-top: 1px solid var(--border); }
.nav-mobile.open { display: block; background: var(--ink-3); }
.nav .nav-mobile .wrap { display: flex; flex-direction: column; align-items: stretch; gap: 2px; height: auto; padding: 10px 0 18px; }
.nav-mobile a {
  padding: 12px 4px; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text-dim);
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-outline { display: none; }
}

/* --- buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 12px; font-weight: 600; font-family: "Bricolage Grotesque", sans-serif;
  font-size: 14.5px; border: 1px solid transparent; transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--bissap); color: #fff; }
.btn-primary:hover { background: var(--bissap-hover); }
.btn-outline { border-color: var(--border-2); color: var(--text-dim); background: transparent; }
.btn-outline:hover { border-color: var(--indigo); color: var(--cream); }
.btn-kola { background: var(--kola); color: #fff; }
.btn-kola:hover { background: #d4995a; }
.btn-ghost { color: var(--text); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; border-radius: 8px; }

/* --- hero --- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 10vw, 100px) 0 clamp(40px, 7vw, 70px);
  background: linear-gradient(to bottom right, var(--ink), #1e1524, var(--ink));
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.hero::before { top: -10%; right: -8%; width: 480px; height: 480px; background: rgba(139, 42, 53, 0.16); filter: blur(100px); }
.hero::after { bottom: -15%; left: -10%; width: 360px; height: 360px; background: rgba(45, 49, 120, 0.2); filter: blur(90px); }
.hero .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .hero-grid { grid-template-columns: 1fr; } }

.badge {
  display: inline-flex; align-items: center; gap: 8px; font-family: "Spline Sans Mono", monospace;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  background: rgba(212, 168, 67, 0.1); border: 1px solid rgba(212, 168, 67, 0.22);
  padding: 8px 14px; border-radius: 999px; margin-bottom: 26px;
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 { font-size: clamp(38px, 6.2vw, 66px); line-height: .96; margin-bottom: 16px; }
.hero h1 .c-bissap { color: var(--bissap); }
.hero h1 .c-kola { color: var(--kola); font-style: italic; font-weight: 700; }
.hero .lede { font-size: clamp(16px, 1.8vw, 18.5px); color: var(--text-dim); max-width: 46ch; margin-bottom: 6px; }
.hero-say { font-family: "Spline Sans Mono", monospace; font-size: 12px; color: rgba(212, 168, 67, 0.55); margin-bottom: 26px; }

.hero-search {
  display: flex; align-items: center; gap: 10px; background: var(--ink-2); border: 1px solid var(--border-2);
  border-radius: 14px; padding: 13px 16px; max-width: 420px; margin-bottom: 22px;
}
.hero-search svg { width: 16px; height: 16px; color: var(--text-dim-2); flex-shrink: 0; }
.hero-search span.ph { flex: 1; font-size: 14px; color: var(--text-dim-2); }
.hero-search .btn { flex-shrink: 0; padding: 8px 16px; font-size: 12.5px; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-art { position: relative; display: flex; align-items: center; justify-content: center; height: clamp(360px, 42vw, 500px); }
.hero-phone {
  position: relative; width: clamp(190px, 20vw, 220px); height: clamp(340px, 34vw, 400px);
  background: var(--ink-2); border: 2px solid var(--border-2); border-radius: 40px; box-shadow: var(--shadow);
  overflow: hidden; z-index: 1;
}
.hero-phone img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.hero-phone .fade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,26,.85), transparent 55%); }
.hero-phone .caption { position: absolute; bottom: 20px; left: 16px; right: 16px; }
.hero-phone .caption p { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; color: #fff; font-size: 14px; margin-bottom: 4px; }
.hero-phone .caption span { font-family: "Spline Sans Mono", monospace; font-size: 10px; color: var(--gold); }
.hero-phone .caption span.n { color: rgba(255,255,255,.45); margin-left: 4px; }

.float-card {
  position: absolute; border-radius: 16px; padding: 12px 14px; box-shadow: var(--shadow); z-index: 2;
  font-family: "Bricolage Grotesque", sans-serif;
}
.float-card.price { top: 6%; right: -4%; background: var(--cream); color: var(--ink); width: 150px; }
.float-card.price .row1 { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.float-card.price img { width: 26px; height: 26px; border-radius: 50%; object-fit: cover; }
.float-card.price .name { font-weight: 700; font-size: 10.5px; }
.float-card.price .loc { font-size: 9px; color: rgba(20,18,26,.5); }
.float-card.price .row2 { display: flex; justify-content: space-between; align-items: center; font-family: "Spline Sans Mono", monospace; font-size: 10.5px; }
.float-card.price .row2 .price-tag { color: var(--bissap); font-weight: 600; }
.float-card.pay { bottom: 26%; right: -6%; background: var(--indigo); color: #fff; width: 132px; }
.float-card.pay p.tag { font-family: "Spline Sans Mono", monospace; font-size: 9px; color: rgba(255,255,255,.5); letter-spacing: .1em; margin-bottom: 6px; }
.float-card.pay .row { display: flex; align-items: center; gap: 8px; }
.float-card.pay .row .name { font-weight: 700; font-size: 12px; }
.float-card.pay .row .sub { font-size: 9px; color: rgba(255,255,255,.5); }
.float-card.avail { bottom: 4%; left: -6%; background: var(--bissap); color: #fff; width: 118px; }
.float-card.avail p.tag { font-family: "Spline Sans Mono", monospace; font-size: 9px; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.float-card.avail p.time { font-weight: 700; font-size: 14px; }
.float-card.avail p.sub { font-size: 9px; color: rgba(255,255,255,.6); margin-top: 3px; }
@media (max-width: 860px) { .float-card { display: none; } }

/* --- stats band --- */
.stats-band { background: var(--bissap); padding: 36px 0; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 700px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat b { display: block; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: clamp(28px, 4vw, 38px); color: #fff; margin-bottom: 4px; }
.stat span { font-family: "Spline Sans Mono", monospace; font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* --- sections --- */
section { padding: clamp(50px, 9vw, 96px) 0; }
.sec-head { max-width: 640px; margin-bottom: clamp(30px, 5vw, 48px); }
.sec-head h2 { font-size: clamp(28px, 4vw, 42px); margin: 12px 0 0; }
.sec-head p { color: var(--text-dim); font-size: 16px; margin-top: 10px; }
.sec-head.split-head { display: flex; flex-direction: column; }
@media (min-width: 761px) {
  .sec-head.split-head.row { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px; max-width: none; }
}

/* --- features --- */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--ink-2); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px; transition: border-color .2s ease;
}
.feature:hover { border-color: var(--border-2); }
.feature .icn {
  width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--bissap); font-size: 20px; margin-bottom: 22px;
}
.feature.alt .icn { background: var(--indigo); }
.feature.gold .icn { background: var(--kola); }
.feature h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.feature p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

/* --- feed vidéo (section claire) --- */
.section-cream { background: var(--cream); color: var(--ink); }
.section-cream .eyebrow { color: var(--bissap); }
.section-cream .sec-head h2 { color: var(--ink); }
.section-cream .sec-head p { color: rgba(20,18,26,.5); }
.reel-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
@media (max-width: 900px) { .reel-grid { grid-template-columns: repeat(3, 1fr); } }
.reel {
  position: relative; aspect-ratio: 2/3; border-radius: 12px; overflow: hidden; background: var(--cream-2);
}
.reel img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.reel:hover img { transform: scale(1.05); }
.reel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,26,.8), transparent 55%); }
.reel .info { position: absolute; bottom: 8px; left: 8px; right: 8px; z-index: 1; }
.reel .info .title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; color: #fff; font-size: 11px; line-height: 1.2; }
.reel .info .by { font-family: "Spline Sans Mono", monospace; font-size: 9px; color: rgba(255,255,255,.55); margin-top: 2px; }
.reel-more { text-align: center; margin-top: 28px; }
.reel-more .btn { border: 1px solid rgba(139,42,53,.3); color: var(--bissap); background: transparent; }
.reel-more .btn:hover { border-color: var(--bissap); background: rgba(139,42,53,.06); }

/* --- comment ça marche --- */
.section-alt { background: var(--ink-2); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step { position: relative; background: var(--ink-2); padding: 30px; }
.step .n-big { position: absolute; top: 22px; right: 22px; font-family: "Spline Sans Mono", monospace; font-weight: 300; font-size: 42px; color: rgba(255,255,255,.06); }
.step .n-circle {
  width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--bissap); display: flex; align-items: center;
  justify-content: center; margin-bottom: 22px; font-family: "Spline Sans Mono", monospace; font-size: 12px; color: var(--bissap);
}
.step h3 { font-size: 15.5px; margin-bottom: 8px; font-weight: 700; }
.step p { color: var(--text-dim-2); font-size: 14px; line-height: 1.6; }

/* --- pour les pros (split) --- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; }
.split .lede { color: var(--text-dim); margin-bottom: 30px; max-width: 46ch; font-size: 16px; }
.split ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 34px; list-style: none; }
@media (max-width: 480px) { .split ul { grid-template-columns: 1fr; } }
.split li { display: flex; gap: 8px; align-items: flex-start; color: var(--text-dim); font-size: 14.5px; }
.split li::before { content: "✓"; color: var(--kola); font-weight: 700; flex-shrink: 0; }
.split-art { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/5; background: var(--ink); }
.split-art img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.split-art::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,18,26,.6), transparent 55%); }
.split-caption {
  position: absolute; left: 22px; right: 22px; bottom: 22px; background: rgba(30,27,40,.9); backdrop-filter: blur(6px);
  border: 1px solid var(--border-2); border-radius: 14px; padding: 16px; z-index: 1;
}
.split-caption p { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; color: #fff; font-size: 14.5px; margin-bottom: 4px; }
.split-caption span { color: var(--text-dim-2); font-size: 12.5px; }

/* --- couverture --- */
.coverage-strip { border-top: 1px solid var(--border); padding: 44px 0; }
.coverage-strip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.coverage { display: flex; gap: 14px; flex-wrap: wrap; }
.city-pill {
  background: rgba(139,42,53,.1); border: 1px solid var(--bissap); border-radius: 12px;
  padding: 11px 20px; font-weight: 600; font-size: 14px; font-family: "Bricolage Grotesque", sans-serif;
  display: flex; align-items: center; gap: 10px; color: var(--text); cursor: default;
}
.city-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: pulse 2s ease-in-out infinite; }
.city-pill.soon { background: rgba(255,255,255,.04); border-color: var(--border-2); opacity: .8; cursor: pointer; transition: border-color .15s ease, opacity .15s ease; }
.city-pill.soon:hover { border-color: var(--gold); opacity: 1; }
.city-pill.soon .dot { background: rgba(255,255,255,.3); animation: none; }
.city-pill .tag { font-family: "Spline Sans Mono", monospace; font-size: 9px; color: var(--text-dim-2); letter-spacing: .1em; }

/* --- modale liste d'attente --- */
.waitlist-backdrop {
  position: fixed; inset: 0; background: rgba(13,11,20,.7); backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center; z-index: 50; padding: 20px;
}
.waitlist-backdrop[hidden] { display: none; }
.waitlist-modal {
  position: relative; background: var(--ink-2); border: 1px solid var(--border-2); border-radius: 20px;
  padding: 32px; max-width: 420px; width: 100%;
}
.waitlist-modal h3 { font-size: 22px; margin: 10px 0 8px; }
.waitlist-modal p { color: var(--text-dim); font-size: 14.5px; margin-bottom: 20px; }
.waitlist-modal form { display: flex; flex-direction: column; gap: 12px; }
.waitlist-close {
  position: absolute; top: 16px; right: 16px; background: transparent; border: none; color: var(--text-dim);
  font-size: 16px; cursor: pointer; padding: 4px;
}
.waitlist-close:hover { color: var(--text); }

/* --- cta finale --- */
.cta-band {
  text-align: center; background: linear-gradient(to bottom right, var(--bissap), var(--indigo));
  border-radius: 24px; padding: clamp(40px, 7vw, 70px) clamp(20px, 5vw, 40px); position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: .12;
  background: radial-gradient(circle at 70% 30%, var(--gold) 0%, transparent 60%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { color: rgba(255,255,255,.6); }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4.4vw, 42px); margin: 10px 0 14px; }
.cta-band p { color: rgba(255,255,255,.65); max-width: 48ch; margin: 0 auto 28px; }
.cta-band form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; max-width: 380px; margin: 0 auto; }
.cta-band form input {
  flex: 1; min-width: 180px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; padding: 13px 16px; border-radius: 12px; font: inherit; font-size: 14px;
}
.cta-band form input::placeholder { color: rgba(255,255,255,.4); }
.cta-band form input:focus { outline: none; border-color: rgba(255,255,255,.5); }
.cta-band form .btn { background: #fff; color: var(--bissap); flex-shrink: 0; }
.cta-band form .btn:hover { background: var(--cream); }
.cta-band .sub-link { margin-top: 26px; color: rgba(255,255,255,.5); font-size: 14.5px; }
.cta-band .sub-link a { color: var(--gold); font-weight: 600; }
.cta-band .sub-link a:hover { color: #fff; }

footer { background: var(--ink-3); border-top: 1px solid var(--border); padding: 40px 0 30px; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.foot-brand { display: flex; align-items: center; gap: 8px; font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 18px; }
.foot-brand svg { width: 22px; height: 22px; color: var(--bissap); }
.foot-links { display: flex; gap: 26px; font-size: 13.5px; color: var(--text-dim-2); flex-wrap: wrap; }
.foot-links a:hover { color: var(--text-dim); }
.foot-bottom { margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 12.5px; color: rgba(242,234,216,.3); font-family: "Spline Sans Mono", monospace; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.foot-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-legal a:hover { color: var(--text-dim); }

/* --- révélation au scroll --- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* --- évènements --- */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .events-grid { grid-template-columns: 1fr; } }
.event-card {
  display: flex; flex-direction: column; background: var(--ink-2); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; transition: transform .18s ease, border-color .18s ease;
}
.event-card:hover { transform: translateY(-3px); border-color: rgba(139,42,53,.5); }
.event-cover { aspect-ratio: 16/9; background: rgba(45,49,120,.15); overflow: hidden; }
.event-cover img { width: 100%; height: 100%; object-fit: cover; }
.event-cover-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.event-cover-fallback .mark { width: 34%; color: var(--cream); opacity: .85; }
.event-body { padding: 18px; display: flex; flex-direction: column; gap: 6px; }
.event-date { color: var(--gold); font-size: 11px; letter-spacing: .04em; }
.event-body h3 { font-size: 17px; font-weight: 700; }
.event-body p { color: var(--text-dim); font-size: 14px; }
.event-loc { color: var(--text-dim-2); font-size: 13px; margin-top: 4px; }
.event-detail-cover { width: 100%; border-radius: 16px; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 20px; }
.event-detail-body { margin-top: 16px; font-size: 16.5px; line-height: 1.7; max-width: 68ch; color: var(--text-dim); }
.empty { color: var(--text-dim); padding: 30px 0; }

/* --- équipe --- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 760px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { text-align: center; }
.team-photo {
  width: 104px; height: 104px; border-radius: 50%; margin: 0 auto 16px; overflow: hidden;
  background: var(--indigo); display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-2);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo span { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 32px; color: #fff; }
.team-card h3 { font-size: 17px; margin-bottom: 4px; font-weight: 700; }
.team-role { color: var(--gold); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.team-card p { color: var(--text-dim); font-size: 14px; margin: 10px auto 0; max-width: 32ch; }

/* --- contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: start; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info { display: grid; gap: 16px; }
.contact-info .card {
  background: var(--ink-2); border: 1px solid var(--border); border-radius: 14px; padding: 20px;
}
.contact-info .card b { display: block; margin-bottom: 4px; font-family: "Bricolage Grotesque", sans-serif; }
.contact-info .card a { color: var(--gold); font-weight: 600; }
.contact-form { display: grid; gap: 14px; background: var(--ink-2); border: 1px solid var(--border); border-radius: 16px; padding: clamp(20px, 3vw, 32px); }
.field { display: grid; gap: 6px; }
.field label { font-size: 13px; font-weight: 600; color: var(--text-dim); }
.field input, .field textarea, .field select {
  font: inherit; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border-2);
  background: rgba(255,255,255,.04); color: var(--text); font-size: 14.5px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim-2); }
.field input:focus, .field textarea:focus, .field select:focus { outline: 2px solid var(--bissap); outline-offset: 1px; }
.form-status { font-size: 14px; min-height: 20px; }
.form-status.ok { color: #6fbf8b; }
.form-status.err { color: #e2646f; }

/* --- pages légales --- */
.legal { max-width: 74ch; }
.legal h1 { font-size: clamp(28px, 4vw, 38px); margin-bottom: 8px; }
.legal .updated { color: var(--text-dim-2); font-size: 13px; font-family: "Spline Sans Mono", monospace; margin-bottom: 30px; }
.legal h2 { font-size: 20px; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--text-dim); font-size: 15.5px; margin-bottom: 10px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--gold); text-decoration: underline; }
.legal em { color: var(--kola); font-style: normal; }
