/* ═══════════════════════════════════════════
   STRATÉGIE DIRIGEANTS — style.css
   Police : Open Sans (Google Fonts)
   Couleurs spec : #784a37 #f1dda5 #f8eed2 #deb377 #9b7080 #253443
═══════════════════════════════════════════ */
:root {
  --brown:    #784a37;
  --brown-dk: #5a3218;
  --brown-lt: #9e6040;
  --gold-txt: #f1dda5;
  --cream:    #f8eed2;
  --orange:   #deb377;
  --caramel:  #deb376;
  --mauve:    #9b7080;
  --mauve-dk: #7a5565;
  --txt-dark: #253443;
  --txt-mid:  #373737;
  --txt-body: #3d3d3d;
  --foot-bg:  #1a1a1a;
  --white:    #ffffff;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 16px; color: var(--txt-dark); background: #fff; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── LAYOUT ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 4rem 0; }
.section--sm{ padding: 2.5rem 0; }
.bg-cream   { background: var(--cream); }
.bg-orange  { background: var(--orange); }
.bg-brown   { background: var(--brown); }
.bg-dark    { background: var(--foot-bg); }
.text-center{ text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(120,74,55,.15);
  transition: box-shadow .3s;
}
.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 66px;
}
.nav-logo img,
.nav-inner > a > img { height: 44px; width: auto; flex-shrink: 0; }
.nav-inner > a { flex-shrink: 0; line-height: 0; }
.nav-links { display: flex; align-items: center; }
.nav-links a {
  display: block; padding: .35rem .6rem;
  font-size: .7rem; font-weight: 700;
  color: var(--txt-dark); text-transform: uppercase;
  letter-spacing: .04em; transition: color .2s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--brown); }
.nav-right {
  display: flex; gap: .6rem; align-items: center; flex-shrink: 0;
}
.nav-right a {
  white-space: nowrap; font-size: .73rem; font-weight: 700;
  padding: .45rem .9rem; border-radius: 6px; transition: all .2s;
}
.nav-right a:first-child {
  color: var(--brown);
}
.nav-right a:first-child:hover { background: var(--cream); }
.nav-right a:last-child {
  background: var(--brown); color: #fff;
}
.nav-right a:last-child:hover { background: var(--brown-dk); }

/* ── HERO (page d'accueil) ── */
.hero {
  margin-top: 66px; position: relative;
  height: 220px; overflow: hidden;
  display: flex; align-items: center;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; filter: brightness(.68);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(20,8,0,.22);
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; text-align: center; padding: 0 2rem;
}
.hero-content h1 {
  font-size: 2.3rem; font-weight: 800;
  color: var(--gold-txt); line-height: 1.25;
  text-shadow: 0 2px 20px rgba(0,0,0,.6);
}

/* ── PAGE HERO (pages internes) ── */
.page-hero {
  margin-top: 66px; padding: 4rem 0 2.8rem;
}
.page-hero--cream  { background: var(--cream); }
.page-hero--orange { background: var(--orange); }
.page-hero--brown  { background: var(--brown); }
.page-hero--dark   { background: var(--foot-bg); }
.eyebrow {
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--mauve); margin-bottom: .6rem;
}
.page-hero--brown  .eyebrow { color: rgba(241,221,165,.6); }
.page-hero--dark   .eyebrow { color: rgba(241,221,165,.5); }
.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700; color: var(--brown);
  line-height: 1.3; max-width: 780px;
}
.page-hero--brown h1, .page-hero--dark h1 { color: var(--gold-txt); }
.page-hero p.lead {
  margin-top: .8rem; font-size: .95rem;
  line-height: 1.72; color: var(--txt-dark); max-width: 680px;
}
.page-hero--brown p.lead, .page-hero--dark p.lead { color: rgba(255,255,255,.8); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .65rem 1.9rem; border-radius: 30px; border: none; cursor: pointer;
  font-family: 'Open Sans', sans-serif; font-size: .88rem; font-weight: 700;
  letter-spacing: .03em; transition: all .18s; white-space: nowrap;
}
.btn-orange {
  background: linear-gradient(180deg, #f5a623 0%, #e07b00 100%);
  color: #fff; box-shadow: 0 3px 12px rgba(224,123,0,.35);
}
.btn-orange:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 6px 18px rgba(224,123,0,.45); }
.btn-brown {
  background: linear-gradient(180deg, #a0663d 0%, #784a37 50%, #5a3218 100%);
  color: #fff; box-shadow: 0 3px 12px rgba(90,50,24,.35);
}
.btn-brown:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(90,50,24,.45); }
.btn-mauve {
  background: linear-gradient(180deg, #b08898 0%, #9b7080 50%, #7a5565 100%);
  color: #fff; box-shadow: 0 3px 12px rgba(122,85,101,.35);
}
.btn-mauve:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(122,85,101,.45); }
.btn-gold {
  background: linear-gradient(180deg, #e8c347 0%, #c8920b 100%);
  color: #fff; box-shadow: 0 3px 12px rgba(200,146,11,.35);
}
.btn-gold:hover { transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-outline:hover { background: var(--brown); color: #fff; transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,.15); }

/* ── SECTION LABEL (barre brune) ── */
.sec-label {
  display: flex; align-items: flex-start;
  gap: .7rem; margin-bottom: 1.3rem;
}
.sec-label::before {
  content: ''; display: block; width: 7px; min-height: 28px;
  background: var(--brown); border-radius: 4px;
  flex-shrink: 0; margin-top: 3px;
}
.sec-label h2, .sec-label h3 {
  font-size: 1.12rem; font-weight: 700;
  color: var(--brown); line-height: 1.35;
}

/* ── CTA SPLIT (accueil) ── */
.cta-split { display: grid; grid-template-columns: 1fr 1fr; }
.cta-block { padding: 2.2rem 3rem; text-align: center; }
.cta-block h2 {
  font-size: 1.4rem; font-weight: 700;
  color: var(--brown); margin-bottom: 1.3rem; line-height: 1.25;
}
.cta-cream  { background: var(--cream); }
.cta-orange { background: var(--orange); }

/* ── INTRO 2-COL ── */
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start;
}
.intro-col img.main-photo {
  width: 100%; border-radius: 6px; margin-bottom: 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.intro-col h3 {
  font-size: 1.22rem; font-weight: 700;
  color: var(--brown); margin-bottom: .8rem; line-height: 1.3;
}
.intro-col p {
  font-size: .97rem; line-height: 1.68;
  color: var(--txt-dark); margin-bottom: .65rem;
}
.intro-col p strong { font-weight: 700; }

/* ── BULLET ── */
.bullet {
  display: flex; align-items: flex-start;
  gap: .55rem; margin-bottom: .45rem;
}
.bullet-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brown); flex-shrink: 0; margin-top: 6px;
}
.bullet span {
  font-size: .95rem; line-height: 1.55; color: var(--txt-dark);
}

/* ── PUB ── */
.pub {
  background: #ababab; padding: 1.4rem;
  display: flex; align-items: center; justify-content: center; min-height: 56px;
}
.pub span {
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold-txt); letter-spacing: .2em;
}

/* ── CARDS ── */
.cards-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem;
}
.card {
  background: #fff; border: 1px solid rgba(120,74,55,.13);
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,.09);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,.14); }
.card .card-photo { width: 100%; height: 175px; object-fit: cover; display: block; }
.card-body { padding: 1.3rem; }
.card-body h3 {
  font-size: 1.02rem; font-weight: 700;
  color: var(--brown); margin-bottom: .6rem; line-height: 1.3;
}
.card-body p {
  font-size: .9rem; line-height: 1.65;
  color: var(--txt-dark); margin-bottom: 1rem;
}

/* ── CONTENT 2-COL (pages internes) ── */
.content-2col {
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 3rem; align-items: start;
}
.content-2col.reverse { grid-template-columns: 2fr 3fr; }
.content-text h2 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--brown); margin-bottom: .9rem; line-height: 1.35;
}
.content-text p {
  font-size: .95rem; line-height: 1.75;
  color: var(--txt-dark); margin-bottom: .75rem;
}
.content-text p strong { font-weight: 700; }
.content-text p em { font-style: italic; }

/* ── ASIDE CARDS ── */
.aside-card {
  border-radius: 8px; padding: 1.6rem; margin-bottom: 1rem;
}
.aside-brown  { background: var(--brown); }
.aside-mauve  { background: var(--mauve); }
.aside-cream  { background: var(--cream); border: 1px solid rgba(120,74,55,.2); }
.aside-card h3 {
  font-size: .97rem; font-weight: 700;
  color: var(--gold-txt); margin-bottom: .6rem;
}
.aside-card p {
  font-size: .85rem; line-height: 1.72;
  color: rgba(255,255,255,.85);
}
.aside-cream h3 { color: var(--brown); }
.aside-cream p  { color: var(--txt-dark); }
.price-big {
  font-size: 2.4rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.price-sub {
  font-size: .78rem; color: rgba(255,255,255,.6); margin-top: .3rem;
}

/* ── STEPS ── */
.steps-grid {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 1.2rem;
}
.step {
  background: #fff; border-radius: 8px; padding: 1.3rem;
  border: 1px solid rgba(120,74,55,.12);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--brown); color: #fff;
  font-weight: 700; font-size: .88rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .8rem;
}
.step h4 {
  font-size: .85rem; font-weight: 700;
  color: var(--brown); margin-bottom: .4rem; line-height: 1.3;
}
.step p { font-size: .78rem; line-height: 1.65; color: var(--txt-dark); }

/* ── DOMAINES / PÔLES ── */
.domaines-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem;
}
.domaine {
  background: var(--cream); border-radius: 8px; padding: 1.3rem;
  border: 1px solid rgba(120,74,55,.1);
  transition: transform .2s, box-shadow .2s;
}
.domaine:hover { transform: translateY(-3px); box-shadow: 0 6px 18px rgba(0,0,0,.1); }
.domaine-ico { font-size: 1.6rem; margin-bottom: .7rem; }
.domaine h4 {
  font-size: .88rem; font-weight: 700;
  color: var(--brown); margin-bottom: .4rem;
}
.domaine p { font-size: .8rem; line-height: 1.65; color: var(--txt-dark); }
.domaine--dark { background: var(--brown); }
.domaine--dark h4 { color: #fff; }
.domaine--dark p  { color: rgba(255,255,255,.85); }

/* ── AVANTAGES LIST ── */
.avantages { margin: .8rem 0 1.3rem; list-style: none; padding: 0; }
.avantages li {
  padding-left: 1.4rem; position: relative;
  font-size: .92rem; line-height: 1.65;
  color: var(--txt-dark); margin-bottom: .55rem;
}
.avantages li::before {
  content: '✓'; color: var(--brown); font-weight: 700;
  position: absolute; left: 0; top: .05rem;
}

/* ── TARIFS ── */
.tarifs-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.tarif {
  background: #fff; border-radius: 8px; padding: 2rem;
  text-align: center; border: 1px solid rgba(120,74,55,.15);
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .2s;
}
.tarif:hover { transform: translateY(-3px); }
.tarif--featured { background: var(--brown); }
.tarif-dur {
  font-size: 2rem; font-weight: 800; color: var(--brown); margin-bottom: .5rem;
}
.tarif--featured .tarif-dur { color: var(--gold-txt); }
.tarif h4 {
  font-size: .97rem; font-weight: 700; color: var(--brown); margin-bottom: .7rem;
}
.tarif--featured h4 { color: #fff; }
.tarif p { font-size: .85rem; line-height: 1.7; color: var(--txt-dark); }
.tarif--featured p { color: rgba(255,255,255,.85); }

/* ── TEAM ── */
.team-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem;
  margin-bottom: 2rem;
}
.member { text-align: center; }
.avatar {
  width: 130px; height: 140px; border-radius: 6px;
  background: #ede0d8; margin: 0 auto .8rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.2rem; overflow: hidden;
}
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.member .name { font-size: .85rem; font-weight: 700; color: var(--txt-mid); }
.member .role { font-size: .75rem; color: var(--mauve); margin-top: .2rem; }

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: rgba(255,255,255,.55); border-radius: 8px;
  padding: 1rem 1.3rem; margin-top: 1rem;
  font-weight: 700; font-size: .97rem; color: var(--brown); line-height: 1.5;
}
.note-italic {
  font-size: .83rem; font-style: italic; color: #666; margin-top: .5rem;
}

/* ── ACCORDION (Académie, FAQ) ── */
.accordion { border: 1px solid rgba(120,74,55,.15); border-radius: 8px; overflow: hidden; }
.acc-item   { border-bottom: 1px solid rgba(120,74,55,.1); }
.acc-item:last-child { border-bottom: none; }
.acc-header {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.3rem; text-align: left;
  font-family: 'Open Sans', sans-serif;
  font-size: .93rem; font-weight: 700; color: var(--brown);
  transition: background .18s;
}
.acc-header:hover { background: rgba(248,238,210,.5); }
.acc-arrow { font-size: .8rem; transition: transform .25s; }
.acc-item.open .acc-arrow { transform: rotate(180deg); }
.acc-body {
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  padding: 0 1.3rem;
}
.acc-item.open .acc-body { max-height: 600px; padding: 0 1.3rem 1.1rem; }
.acc-body p {
  font-size: .9rem; line-height: 1.75; color: var(--txt-dark);
  margin-bottom: .5rem;
}

/* ── LOGICIEL (SaaS) ── */
.saas-tiers {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
  margin: 2rem 0;
}
.saas-tier {
  border-radius: 10px; padding: 2rem; text-align: center;
  border: 2px solid transparent;
  transition: transform .2s, box-shadow .2s;
}
.saas-tier:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.12); }
.saas-tier--admin    { background: var(--foot-bg); border-color: var(--caramel); }
.saas-tier--consult  { background: var(--brown); border-color: var(--brown-dk); }
.saas-tier--entreprise { background: var(--cream); border-color: rgba(120,74,55,.2); }
.tier-ico { font-size: 2.5rem; margin-bottom: 1rem; }
.saas-tier h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.saas-tier--admin h3     { color: var(--gold-txt); }
.saas-tier--consult h3   { color: var(--gold-txt); }
.saas-tier--entreprise h3{ color: var(--brown); }
.saas-tier p { font-size: .85rem; line-height: 1.72; }
.saas-tier--admin p     { color: rgba(255,255,255,.75); }
.saas-tier--consult p   { color: rgba(255,255,255,.82); }
.saas-tier--entreprise p{ color: var(--txt-dark); }
.feature-list { margin-top: 1rem; text-align: left; }
.feature-list li {
  font-size: .8rem; margin-bottom: .35rem; padding-left: 1rem;
  position: relative;
}
.feature-list li::before {
  content: '→'; position: absolute; left: 0; font-weight: 700;
}
.saas-tier--admin .feature-list li::before,
.saas-tier--consult .feature-list li::before { color: var(--gold-txt); }
.saas-tier--entreprise .feature-list li::before { color: var(--brown); }
.saas-tier--admin .feature-list li,
.saas-tier--consult .feature-list li { color: rgba(255,255,255,.78); }
.saas-tier--entreprise .feature-list li { color: var(--txt-dark); }

/* ── CONTACT FORM ── */
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .8rem; font-weight: 700; color: var(--brown);
  text-transform: uppercase; letter-spacing: .04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: 'Open Sans', sans-serif; font-size: .9rem;
  padding: .65rem 1rem; border-radius: 6px;
  border: 1.5px solid rgba(120,74,55,.25);
  background: #fff; color: var(--txt-dark);
  transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--brown);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
footer { background: var(--foot-bg); padding: 2.8rem 0 1.5rem; }
.foot-inner {
  display: grid; grid-template-columns: 1.8fr 2.5fr 1fr;
  gap: 3rem; align-items: start; margin-bottom: 2rem;
}
.foot-brand .foot-logo { height: 50px; margin-bottom: .9rem; }
.foot-brand p { font-size: .82rem; line-height: 1.72; color: var(--gold-txt); }
.foot-social { display: flex; gap: .65rem; margin-top: .9rem; }
.foot-social img { width: 32px; height: 32px; border-radius: 50%; }
.foot-links { display: flex; gap: 3rem; }
.foot-col h4 {
  font-size: .78rem; font-weight: 700; color: var(--caramel);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: .9rem;
}
.foot-col a {
  display: block; font-size: .78rem;
  color: rgba(241,221,165,.65); margin-bottom: .45rem; transition: color .2s;
}
.foot-col a:hover { color: var(--gold-txt); }
.foot-cta { display: flex; flex-direction: column; gap: .7rem; }
.foot-cta .btn { display: block; text-align: center; }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem; display: flex;
  justify-content: space-between; align-items: center;
}
.foot-bottom p { font-size: .72rem; color: rgba(255,255,255,.35); }
.foot-bottom span { color: var(--caramel); font-size: .72rem; font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .domaines-grid { grid-template-columns: repeat(2,1fr); }
  .steps-grid    { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nav-links     { display: none; }
  .intro-grid, .cta-split, .content-2col, .content-2col.reverse,
  .tarifs-grid, .foot-inner, .saas-tiers { grid-template-columns: 1fr; }
  .cards-grid    { grid-template-columns: 1fr 1fr; }
  .team-grid     { grid-template-columns: repeat(2,1fr); }
  .foot-links    { flex-direction: column; gap: 1.5rem; }
  .hero-content h1 { font-size: 1.7rem; }
  .form-grid     { grid-template-columns: 1fr; }
}
@media (max-width: 580px) {
  .cards-grid, .team-grid, .domaines-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 1.4rem; }
}

/* ══════════════════════════════════════════════
   HAMBURGER + DRAWER MOBILE
══════════════════════════════════════════════ */
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: .5rem;
  flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--brown); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none; position: fixed; inset: 0; top: 66px;
  background: rgba(0,0,0,.35); z-index: 298;
}
.nav-overlay.open { display: block; }

.nav-drawer {
  display: none;
  position: fixed; top: 66px; left: 0; right: 0;
  background: #fff;
  border-bottom: 2px solid var(--brown);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  z-index: 299; overflow-y: auto;
  max-height: calc(100vh - 66px);
}
.nav-drawer.open { display: block; }

.nav-drawer nav a {
  display: block; padding: .85rem 1.5rem;
  font-size: .78rem; font-weight: 700;
  color: var(--txt-dark); text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid rgba(120,74,55,.08);
  transition: color .15s, background .15s;
}
.nav-drawer nav a:hover { color: var(--brown); background: var(--cream); }

.nav-drawer .drawer-cta {
  padding: 1rem 1.5rem 1.5rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.nav-drawer .drawer-cta a {
  display: block; text-align: center; border-radius: 6px;
  padding: .65rem 1rem; font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  transition: opacity .2s;
}
.nav-drawer .drawer-cta a:hover { opacity: .85; }
.nav-drawer .drawer-cta .dc-rdv  { background: var(--gold,#C4862A); color: #fff; }
.nav-drawer .drawer-cta .dc-login { background: transparent; color: var(--brown); border: 1.5px solid var(--brown); }
.nav-drawer .drawer-cta .dc-join  { background: var(--brown); color: #fff; }

@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-right   { display: none; }
  body { overflow-x: hidden; }
}
