/* ==========================================================================
   SOD CONSULTING — feuille de style principale
   Palette : noir chaud + or, typographie Fraunces / Inter
   ========================================================================== */

:root{
  --bg:            #0b0a09;
  --bg-panel:      #131110;
  --bg-panel-2:    #17140f;
  --bg-panel-3:    #1c1811;
  --text:          #f3ead0;
  --text-dim:      #cdbf95;
  --text-faint:    #8d7742;
  --gold:          #c9a24a;
  --gold-bright:   #e6c581;
  --gold-deep:     #7a5f2c;
  --line:          #362c1c;
  --line-soft:     rgba(201,162,74,0.16);
  --shadow:        0 30px 60px -25px rgba(0,0,0,0.7);

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 2px;
}

*, *::before, *::after{ box-sizing: border-box; }

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* subtle grain / vignette on the whole page for texture without imagery */
body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2000;
  background:
    radial-gradient(ellipse at 15% 0%, rgba(201,162,74,0.05), transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(201,162,74,0.04), transparent 50%);
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ font-family: var(--font-display); font-weight: 500; margin: 0; color: var(--text); }
p{ margin: 0; }
button{ font-family: inherit; cursor: pointer; }

::selection{ background: var(--gold); color: #14120e; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow::before{
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.gold-italic{ color: var(--gold-bright); font-style: italic; font-weight: 400; }

/* ---------- reveal-on-scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  html{ scroll-behavior: auto; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header{
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(11,10,9,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand{
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--gold-bright);
  position: relative;
  flex: none;
  overflow: hidden;
}
.brand-mark img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.brand-mark::after{
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(201,162,74,0.35);
  border-radius: 50%;
}

.brand-word{
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-word strong{
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.brand-word span{
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 2px;
}

.main-nav{
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav a{
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.main-nav a:hover{ color: var(--text); }
.main-nav a:hover::after{ right: 0; }
.main-nav a.is-active{ color: var(--gold-bright); }
.main-nav a.is-active::after{ right: 0; }

.header-cta{
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.btn-gold{
  background: var(--gold);
  color: #17140d;
}
.btn-gold:hover{
  background: var(--gold-bright);
  transform: translateY(-1px);
}
.btn-ghost{
  border-color: var(--gold-deep);
  color: var(--text);
}
.btn-ghost:hover{
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn-sm{ padding: 11px 20px; font-size: 11.5px; }

.nav-toggle{
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span{
  width: 18px;
  height: 1px;
  background: var(--text);
  display: block;
  transition: all 0.25s ease;
}
.nav-toggle.is-open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2){ opacity: 0; }
.nav-toggle.is-open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 900px){
  .main-nav{
    position: fixed;
    top: 84px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--bg-panel);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .main-nav.is-open{ max-height: 400px; }
  .main-nav a{
    width: 100%;
    padding: 16px 32px;
    border-bottom: 1px solid var(--line);
  }
  .header-cta .btn-ghost{ display: none; }
  .nav-toggle{ display: flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero{
  position: relative;
  padding: 110px 0 100px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(201,162,74,0.14), transparent 70%);
  pointer-events: none;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
  position: relative;
}

.hero h1{
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 22px 0 26px;
}

.hero-lead{
  font-size: 17.5px;
  color: var(--text-dim);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 38px;
}

.hero-actions{
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.hero-actions .link-inline{
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--gold-deep);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.hero-actions .link-inline:hover{ color: var(--gold-bright); border-color: var(--gold); }

/* right-side seal panel */
.hero-panel{
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--bg-panel), var(--bg-panel-2));
  padding: 46px 40px;
  position: relative;
}
.hero-panel::before{
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201,162,74,0.22);
  pointer-events: none;
}
.hero-seal{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold-bright);
  letter-spacing: 0.02em;
}
.hero-seal::after{
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201,162,74,0.3);
  border-radius: 50%;
}
.hero-seal::before{
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(201,162,74,0.35);
  border-radius: 50%;
}

.hero-stats{
  display: grid;
  gap: 0;
  margin-top: 30px;
}
.hero-stats li{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.hero-stats li:first-child{ border-top: none; }
.hero-stats .num{
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold-bright);
}
.hero-stats .label{
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-faint);
  text-align: right;
  max-width: 160px;
}

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; gap: 46px; }
  .hero{ padding: 70px 0 60px; }
}

/* ==========================================================================
   SECTION SCAFFOLDING
   ========================================================================== */

section{ padding: 100px 0; border-bottom: 1px solid var(--line); }
section:last-of-type{ border-bottom: none; }

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}
.section-head h2{
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 16px;
  max-width: 560px;
  line-height: 1.2;
}
.section-head .section-note{
  max-width: 320px;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.7;
  padding-bottom: 6px;
}
@media (max-width: 760px){
  .section-head{ flex-direction: column; align-items: flex-start; gap: 18px; }
}

.bg-alt{ background: var(--bg-panel); }

/* ---------- why grid / feature cards ---------- */
.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card-grid.cols-4{ grid-template-columns: repeat(4, 1fr); }
.feature-card{
  background: var(--bg);
  padding: 38px 32px;
  transition: background 0.3s ease;
}
.feature-card:hover{ background: var(--bg-panel-2); }
.feature-card .index{
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.feature-card h3{
  font-size: 19px;
  margin: 18px 0 12px;
  color: var(--gold-bright);
  font-weight: 500;
}
.feature-card p{
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}
@media (max-width: 900px){
  .card-grid, .card-grid.cols-4{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px){
  .card-grid, .card-grid.cols-4{ grid-template-columns: 1fr; }
}

/* ---------- services preview / list ---------- */
.service-row{
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 0.3s ease;
}
.service-row:last-child{ border-bottom: 1px solid var(--line); }
.service-row:hover{ padding-left: 10px; }
.service-row .tag{
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-faint);
}
.service-row h3{
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 8px;
}
.service-row p{
  color: var(--text-dim);
  font-size: 14px;
  max-width: 560px;
}
.service-row .arrow{
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
}
.service-row:hover .arrow{ opacity: 1; transform: translateX(0); }
@media (max-width: 700px){
  .service-row{ grid-template-columns: 40px 1fr; }
  .service-row .arrow{ display: none; }
}

/* ---------- process steps ---------- */
.process-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}
.process-step{ position: relative; padding-top: 26px; }
.process-step::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 1px;
  background: var(--gold);
}
.process-step .step-no{
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.process-step h3{
  font-size: 18px;
  margin: 14px 0 10px;
  font-weight: 500;
}
.process-step p{
  color: var(--text-dim);
  font-size: 13.5px;
  line-height: 1.7;
}
@media (max-width: 900px){
  .process-list{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .process-list{ grid-template-columns: 1fr; }
}

/* ---------- sectors / trust strip ---------- */
.sector-strip{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.sector-chip{
  border: 1px solid var(--line);
  padding: 12px 22px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.stat-banner{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.stat-banner .stat-num{
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold-bright);
}
.stat-banner .stat-label{
  font-size: 12.5px;
  color: var(--text-faint);
  letter-spacing: 0.05em;
  margin-top: 8px;
}
@media (max-width: 800px){
  .stat-banner{ grid-template-columns: 1fr 1fr; }
}

/* ---------- CTA banner ---------- */
.cta-banner{
  border: 1px solid var(--gold-deep);
  background: linear-gradient(160deg, rgba(201,162,74,0.08), transparent 60%), var(--bg-panel);
  padding: 70px 60px;
  text-align: center;
  position: relative;
}
.cta-banner h2{
  font-size: clamp(26px, 3.4vw, 38px);
  max-width: 640px;
  margin: 18px auto 30px;
  line-height: 1.25;
}
.cta-banner .btn{ margin: 0 8px; }
@media (max-width: 600px){
  .cta-banner{ padding: 50px 24px; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer{
  padding: 70px 0 30px;
  background: var(--bg-panel);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-brand p{
  color: var(--text-faint);
  font-size: 13.5px;
  margin-top: 18px;
  max-width: 280px;
  line-height: 1.7;
}
.footer-col h4{
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li{ margin-bottom: 12px; }
.footer-col a{
  font-size: 13.5px;
  color: var(--text-dim);
  transition: color 0.2s ease;
}
.footer-col a:hover{ color: var(--gold-bright); }
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 12px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   PAGE HERO (secondary pages)
   ========================================================================== */

.page-hero{
  padding: 70px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1{
  font-size: clamp(34px, 4.4vw, 52px);
  margin-top: 18px;
  max-width: 700px;
  line-height: 1.15;
}
.page-hero .lead{
  color: var(--text-dim);
  font-size: 16px;
  max-width: 560px;
  margin-top: 20px;
  line-height: 1.7;
}
.breadcrumb{
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.breadcrumb .gold-bright, .breadcrumb span{ color: var(--gold-bright); }

/* ==========================================================================
   SERVICES PAGE — detailed cards
   ========================================================================== */

.service-detail{
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 60px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}
.service-detail:first-of-type{ border-top: none; padding-top: 0; }
.service-detail .sd-head .tag{
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.service-detail h2{
  font-size: 27px;
  margin: 14px 0 16px;
  font-weight: 500;
}
.service-detail .sd-summary{
  color: var(--text-dim);
  font-size: 15px;
  line-height: 1.75;
}
.sd-points{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 32px;
}
.sd-points li{
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}
.sd-points li::before{
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 1px;
  background: var(--gold);
}
@media (max-width: 860px){
  .service-detail{ grid-template-columns: 1fr; gap: 24px; }
  .sd-points{ grid-template-columns: 1fr; }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-grid{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.portrait-frame{
  aspect-ratio: 4/5;
  border: 1px solid var(--line);
  background: linear-gradient(165deg, var(--bg-panel-2), var(--bg-panel-3));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-frame::before{
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,162,74,0.25);
}
.portrait-monogram{
  font-family: var(--font-display);
  font-size: 90px;
  color: rgba(201,162,74,0.5);
  letter-spacing: 0.02em;
}
.about-copy p{
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-copy h1{
  font-size: clamp(30px, 3.6vw, 44px);
  margin: 16px 0 24px;
  line-height: 1.18;
}
.credential-list{
  margin-top: 30px;
  display: grid;
  gap: 14px;
}
.credential-list li{
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-size: 13.5px;
  color: var(--text-dim);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.credential-list li strong{ color: var(--gold-bright); font-weight: 500; min-width: 100px; }

.value-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 20px;
}
@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; gap: 40px; }
  .value-list{ grid-template-columns: 1fr; }
}

.timeline{ display: grid; gap: 0; }
.timeline-item{
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.timeline-item:last-child{ border-bottom: 1px solid var(--line); }
.timeline-item .year{
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--gold-bright);
}
.timeline-item h3{ font-size: 17px; font-weight: 500; margin-bottom: 8px; }
.timeline-item p{ color: var(--text-dim); font-size: 14px; line-height: 1.7; }
@media (max-width: 600px){
  .timeline-item{ grid-template-columns: 1fr; gap: 8px; }
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-info-list{ display: grid; gap: 0; margin-top: 30px; }
.contact-info-list li{
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.contact-info-list li:last-child{ border-bottom: 1px solid var(--line); }
.contact-info-list .ci-label{
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.contact-info-list .ci-value{
  font-size: 16px;
  color: var(--text);
}
.contact-info-list a.ci-value:hover{ color: var(--gold-bright); }

.hours-table{ margin-top: 30px; display: grid; gap: 0; }
.hours-table .hr{
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--text-dim);
}
.hours-table .hr:last-child{ border-bottom: 1px solid var(--line); }
.hours-table .hr span:last-child{ color: var(--text); }

.form-panel{
  border: 1px solid var(--line);
  background: var(--bg-panel);
  padding: 44px;
}
.form-row{ margin-bottom: 24px; }
.form-row label{
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.form-row input,
.form-row select,
.form-row textarea{
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: border-color 0.25s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline: none;
  border-color: var(--gold);
}
.form-row textarea{ min-height: 130px; resize: vertical; }
.two-col{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-note{
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 14px;
  line-height: 1.6;
}
@media (max-width: 600px){
  .contact-grid{ grid-template-columns: 1fr; gap: 40px; }
  .two-col{ grid-template-columns: 1fr; }
  .form-panel{ padding: 28px 22px; }
}

.map-frame{
  margin-top: 40px;
  border: 1px solid var(--line);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 13px;
  letter-spacing: 0.05em;
  background:
    repeating-linear-gradient(45deg, rgba(201,162,74,0.03) 0 2px, transparent 2px 14px),
    var(--bg-panel-2);
}

/* ==========================================================================
   MISC / UTILITIES
   ========================================================================== */

.mt-0{ margin-top: 0 !important; }
.text-center{ text-align: center; }

.back-to-top{
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  background: rgba(11,10,9,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-bright);
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 400;
}
.back-to-top.is-visible{ opacity: 1; pointer-events: auto; }
.back-to-top:hover{ transform: translateY(-3px); border-color: var(--gold); }

/* ==========================================================================
   PAGES LÉGALES (mentions légales, confidentialité)
   ========================================================================== */

.legal-content{
  max-width: 780px;
}
.legal-content .updated{
  font-size: 12.5px;
  color: var(--text-faint);
  margin-bottom: 50px;
}
.legal-content h2{
  font-size: 22px;
  font-weight: 500;
  color: var(--gold-bright);
  margin: 56px 0 18px;
}
.legal-content h2:first-of-type{ margin-top: 0; }
.legal-content h3{
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text);
  margin: 28px 0 10px;
}
.legal-content p{
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul{
  margin: 0 0 16px;
  padding-left: 20px;
  list-style: disc;
}
.legal-content ul li{
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.legal-content a{
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content strong{ color: var(--text); font-weight: 600; }
.legal-content .placeholder{
  background: rgba(201,162,74,0.12);
  color: var(--gold-bright);
  padding: 1px 6px;
  border-radius: 2px;
  font-size: 0.95em;
}
.legal-content table{
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  font-size: 13.5px;
}
.legal-content table th,
.legal-content table td{
  text-align: left;
  padding: 12px 14px;
  border: 1px solid var(--line);
  color: var(--text-dim);
}
.legal-content table th{
  color: var(--gold-bright);
  font-weight: 600;
  background: var(--bg-panel);
}
