
:root{
  --ac-bg:#05060a;
  --ac-bg-soft:#0b0d13;
  --ac-card:#11131b;
  --ac-card-soft:#181a23;
  --ac-gold:#D6B168;
  --ac-gold-soft:#CFA45D;
  --ac-text:#f5f5f5;
  --ac-muted:#c7c7c7;
  --ac-font-main:"Montserrat",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --ac-font-display:"Cormorant Garamond","Playfair Display","Times New Roman",serif;
}

/* RESET */
*,
*::before,
*::after{
  box-sizing:border-box;
}
html,body{
  margin:0;
  padding:0;
}
body{
  min-height:100vh;
  background:
    radial-gradient(circle at 0 0,#20222b 0,#05060a 55%) fixed;
  color:var(--ac-text);
  font-family:var(--ac-font-main);
  -webkit-font-smoothing:antialiased;
}

/* GLOBAL LAYOUT */
.page-shell{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
main{
  flex:1;
}

/* NAVBAR */
.navbar{
  position:fixed;
  inset:0 0 auto 0;
  height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 60px;
  z-index:20;
  background:linear-gradient(to bottom,rgba(5,6,10,0.96),rgba(5,6,10,0.88),transparent);
  border-bottom:1px solid rgba(207,164,93,0.18);
  backdrop-filter:blur(14px);
}
.nav-left{
  display:flex;
  align-items:center;
  gap:20px;
}
.nav-logo{
  display:flex;
  align-items:center;
  gap:10px;
}
.nav-logo img{
  height:46px;
  width:auto;
}
.nav-brand{
  font-family:var(--ac-font-display);
  letter-spacing:.25em;
  font-size:11px;
  text-transform:uppercase;
  color:var(--ac-muted);
}
.nav-menu{
  display:flex;
  align-items:center;
  gap:26px;
  font-size:13px;
}
.nav-menu a{
  color:var(--ac-text);
  text-decoration:none;
  opacity:0.85;
  position:relative;
  padding-bottom:4px;
}
.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:1px;
  background:linear-gradient(90deg,transparent,var(--ac-gold),transparent);
  transition:width .28s ease;
}
.nav-menu a:hover{
  opacity:1;
}
.nav-menu a:hover::after{
  width:100%;
}

/* language pills */
.lang-switch{
  display:flex;
  gap:6px;
  font-size:11px;
}
.lang-pill{
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(207,164,93,0.4);
  color:var(--ac-gold);
}

/* HERO */
.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:120px 20px 80px;
  overflow:hidden;
}

.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 10% 10%,rgba(214,177,104,0.22),transparent 45%),
             radial-gradient(circle at 90% 90%,rgba(214,177,104,0.14),transparent 50%);
  mix-blend-mode:screen;
}
.hero-inner{
  position:relative;
  max-width:860px;
  padding:42px 46px 40px;
  border-radius:26px;
  border:1px solid rgba(207,164,93,0.6);
  background:radial-gradient(circle at 0% 0%,rgba(255,255,255,0.08) 0,rgba(5,6,10,0.88) 55%);
  box-shadow:0 32px 80px rgba(0,0,0,0.88);
}
.hero-eyebrow{
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--ac-gold);
  margin-bottom:10px;
}
.hero-title{
  font-family:var(--ac-font-display);
  font-size:42px;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin:0 0 14px;
}
.hero-subtitle{
  margin:0 0 20px;
  font-size:15px;
}
.hero-text{
  font-size:13px;
  max-width:640px;
  margin:0 auto 26px;
  line-height:1.6;
  color:var(--ac-muted);
}
.hero-actions{
  display:flex;
  justify-content:center;
  gap:14px;
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 26px;
  border-radius:999px;
  font-size:13px;
  border:1px solid transparent;
  text-decoration:none;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
  transition:
    background .25s ease,
    color .25s ease,
    box-shadow .25s ease,
    transform .2s ease,
    border-color .25s ease;
}
.btn-primary{
  background:linear-gradient(135deg,#f6d47b,#e0a84c);
  color:#1b1305;
  border-color:rgba(207,164,93,0.8);
  box-shadow:0 12px 28px rgba(0,0,0,0.75);
}
.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 36px rgba(0,0,0,0.85);
  filter:brightness(1.06);
}
.btn-ghost{
  background:transparent;
  color:var(--ac-text);
  border-color:rgba(207,164,93,0.55);
}
.btn-ghost:hover{
  background:rgba(255,255,255,0.04);
  box-shadow:0 10px 24px rgba(0,0,0,0.75);
}

/* SECTION WRAPPER */
.section{
  padding:80px 20px;
}
.section-narrow{
  max-width:1180px;
  margin:0 auto;
}
.section-card{
  background:radial-gradient(circle at 0% 0%,#2a2a2b 0%,#0a0b0e 70%);
  border-radius:22px;
  border:1px solid rgba(207,164,93,0.55);
  box-shadow:0 20px 50px rgba(0,0,0,0.6);
  padding:40px 40px 45px;
}
.section-title{
  font-family:var(--ac-font-display);
  font-size:32px;
  text-align:center;
  margin:0;
  letter-spacing:.08em;
}
.section-line{
  width:180px;
  height:1px;
  margin:18px auto 18px;
  background:linear-gradient(90deg,transparent,rgba(246,210,123,0.9),transparent);
  border-radius:999px;
}
.section-subtitle{
  text-align:center;
  font-size:15px;
  max-width:840px;
  margin:0 auto 34px;
  color:var(--ac-muted);
}

/* gold separator */
.gold-separator{
  width:90%;
  max-width:1100px;
  height:3px;
  margin:40px auto;
  background:radial-gradient(circle,
    rgba(246,210,123,0.95) 0%,
    rgba(246,210,123,0.55) 28%,
    rgba(246,210,123,0.15) 60%,
    rgba(246,210,123,0) 100%);
  border-radius:999px;
  filter:blur(.3px);
}

/* ===== STATS (Pourquoi nous faire confiance) ===== */
.stats-wrapper{
  max-width:1150px;
  margin:0 auto;
  padding:0;
}
.stats-strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:24px;
  padding:24px 40px;
  border-radius:18px;
  border:1px solid var(--ac-gold-soft);
  background:linear-gradient(135deg,#23252b 0%,#0b0d13 100%);
  box-shadow:0 16px 32px rgba(0,0,0,0.55);
  transition:border-color .35s ease,box-shadow .35s ease,background .35s ease;
}
.stats-strip:hover{
  border-color:rgba(246,210,123,0.9);
  box-shadow:0 0 38px rgba(246,210,123,0.35),
             inset 0 0 14px rgba(246,210,123,0.18),
             0 20px 45px rgba(0,0,0,0.75);
  background:linear-gradient(135deg,#2d2f36 0%,#13151d 100%);
}
.stat-item{
  flex:1 1 220px;
  text-align:center;
}
.stat-value{
  font-size:38px;
  font-weight:700;
  color:var(--ac-gold);
}
.stat-label{
  font-size:15px;
  opacity:.95;
}
.stat-icon{
  font-size:32px;
}

/* ===== EXPERTISES cards (flip) ===== */
.ac-expertises-box{
  max-width:1250px;
  margin:0 auto;
  padding:40px;
  background:radial-gradient(circle at 0% 0%,#2a2a2b 0%,#0a0b0e 70%);
  border:1px solid rgba(207,164,93,0.55);
  border-radius:22px;
  box-shadow:0 20px 50px rgba(0,0,0,0.6);
  color:#fff;
  text-align:center;
  font-family:var(--ac-font-main);
}
.ac-line{
  width:200px;
  height:2px;
  margin:18px auto 20px;
  background:linear-gradient(90deg,transparent,#d6b168,transparent);
}
.ac-subtitle{
  font-size:16px;
  opacity:.9;
  margin-bottom:45px;
}
.ac-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:28px;
}
.ac-card{
  width:31%;
  height:430px;
  position:relative;
  perspective:1200px;
}
.ac-flip{
  width:100%;
  height:100%;
  transition:transform .65s ease;
  transform-style:preserve-3d;
}
.ac-card:hover .ac-flip{
  transform:rotateY(180deg);
}
.ac-face{
  position:absolute;
  inset:0;
  padding:26px;
  border-radius:18px;
  border:1px solid rgba(207,164,93,0.28);
  background:linear-gradient(135deg,#06070b,#1a1c24);
  backface-visibility:hidden;
  text-align:left;
  box-shadow:0 10px 30px rgba(0,0,0,0.55);
}
.ac-back{
  transform:rotateY(180deg);
}
.ac-icon{
  width:60px;
  height:60px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 25%,#f7da96,#c08a3a 72%);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  margin-bottom:16px;
}
.ac-kicker{
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#d6b168;
  margin-bottom:14px;
}
.ac-face ul{
  list-style:none;
  padding:0;
  margin:0;
  font-size:14px;
}
.ac-face ul li{
  margin-bottom:8px;
  padding-left:18px;
  position:relative;
}
.ac-face ul li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-size:12px;
  color:#d6b168;
  font-weight:700;
}

/* APPROCHE + METHODOLOGIE + CTA (reusing user blocks, simplified) */
.approach-section-long,
.method-section,
.cta-section{
  max-width:1150px;
  margin:70px auto;
  padding:45px 40px 50px;
  background:radial-gradient(circle at 0% 0%,#303030 0%,#16181f 55%,#05060a 100%);
  border:1px solid #CFA45D;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(0,0,0,0.6);
  color:#f2f2f2;
  font-family:var(--ac-font-main);
}
.approach-title-long,
.method-title,
.cta-title{
  text-align:center;
  font-family:var(--ac-font-display);
  font-size:32px;
  margin:0 0 10px;
}
.approach-line-long,
.method-line{
  width:180px;
  height:1px;
  margin:16px auto 32px;
  background:linear-gradient(90deg,transparent,rgba(246,210,123,0.9),transparent);
  border-radius:999px;
}
.approach-text-long,
.method-intro,
.cta-subtitle{
  max-width:850px;
  margin:0 auto 32px;
  text-align:center;
  font-size:15px;
  line-height:1.75;
  opacity:.95;
}
.approach-grid-long,
.method-grid{
  display:flex;
  flex-wrap:wrap;
  gap:28px;
  justify-content:space-between;
}
.approach-item-long,
.method-step{
  flex:1 1 calc(50% - 28px);
  min-width:260px;
  background:rgba(0,0,0,0.26);
  border:1px solid rgba(207,164,93,0.26);
  border-radius:20px;
  padding:26px 24px 28px;
  box-shadow:0 10px 28px rgba(0,0,0,0.45);
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease,background .35s ease;
}
.approach-item-long:hover,
.method-step:hover{
  transform:translateY(-8px);
  border-color:rgba(246,210,123,0.85);
  box-shadow:0 0 38px rgba(246,210,123,0.35),
             inset 0 0 12px rgba(246,210,123,0.15),
             0 20px 45px rgba(0,0,0,0.65);
  background:rgba(0,0,0,0.32);
}
.approach-icon-long,
.method-icon{
  width:64px;
  height:64px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 25%,#f7da96,#c08a3a 75%);
  display:flex;
  justify-content:center;
  align-items:center;
  font-size:30px;
  margin-bottom:16px;
  color:#1f1505;
  box-shadow:0 6px 18px rgba(0,0,0,0.55);
  transition:transform .35s ease,box-shadow .35s ease;
}
.approach-item-long:hover .approach-icon-long,
.method-step:hover .method-icon{
  transform:scale(1.08);
  box-shadow:0 0 22px rgba(246,210,123,0.7);
}
.approach-item-long h3,
.method-step h3{
  font-family:var(--ac-font-display);
  font-size:21px;
  margin:0 0 10px;
}
.approach-item-long p,
.method-step p{
  font-size:14px;
  line-height:1.7;
  opacity:.92;
}

/* CTA */
.cta-section{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.cta-text-block{
  flex:1 1 60%;
  min-width:260px;
}
.cta-action-block{
  flex:0 0 auto;
  min-width:220px;
  text-align:right;
}
.cta-section:hover{
  transform:translateY(-6px);
  border-color:rgba(246,210,123,0.9);
  box-shadow:0 0 32px rgba(246,210,123,0.28),0 26px 60px rgba(0,0,0,0.75);
}

/* FOOTER */
.footer{
  border-top:1px solid rgba(207,164,93,0.3);
  padding:24px 20px 30px;
  background:#030306;
  font-size:12px;
  color:var(--ac-muted);
}
.footer-inner{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
}
.footer a{
  color:var(--ac-muted);
  text-decoration:none;
}
.footer a:hover{
  color:var(--ac-gold);
}

/* GENERIC CARD PAGE (legal / articles / contact) */
.page-hero-small{
  padding-top: 2px;
  text-align:center;
  margin-bottom:26px;
}
.page-hero-small img{
  height:64px;
}
.page-hero-small h1{
  font-family:var(--ac-font-display);
  font-size:30px;
  margin:18px 0 6px;
}
.page-hero-small p{
  margin:0;
  color:var(--ac-muted);
  font-size:14px;
}
.page-card{
  max-width:1150px;
  margin:10px auto 70px;
  padding:40px 42px 46px;
  border-radius:22px;
  border:1px solid rgba(207,164,93,0.55);
  background:radial-gradient(circle at 0% 0%,#2a2a2b 0%,#0a0b0e 70%);
  box-shadow:0 24px 60px rgba(0,0,0,0.7);
  font-size:14px;
  line-height:1.7;
}
.page-card h2{
  font-family:var(--ac-font-display);
  font-size:22px;
  margin-top:26px;
}
.page-card h3{
  font-family:var(--ac-font-display);
  font-size:18px;
  margin-top:20px;
}
.page-card a{
  color:var(--ac-gold);
}

/* CONTACT GRID */
.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,340px) minmax(0,1fr);
  gap:28px;
}
.contact-box{
  background:linear-gradient(135deg,#12141c,#06070b);
  border-radius:18px;
  border:1px solid rgba(207,164,93,0.45);
  padding:22px 22px 24px;
  box-shadow:0 14px 30px rgba(0,0,0,0.6);
  font-size:13px;
}
.contact-box h2{
  font-family:var(--ac-font-display);
  font-size:20px;
  margin:0 0 4px;
}
.contact-box small{
  color:var(--ac-muted);
}
.contact-map{
  margin-top:16px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(207,164,93,0.4);
}
.contact-hours{
  margin-top:22px;
}
.contact-hours table{
  width:100%;
  border-collapse:collapse;
  font-size:12px;
}
.contact-hours td{
  padding:3px 0;
}
.contact-form{
  background:linear-gradient(135deg,#171922,#05060a);
  border-radius:18px;
  border:1px solid rgba(207,164,93,0.45);
  padding:24px 26px 26px;
  box-shadow:0 16px 34px rgba(0,0,0,0.65);
}
.contact-form h2{
  font-family:var(--ac-font-display);
  font-size:22px;
  margin-top:0;
}
.form-row{
  display:flex;
  gap:16px;
}
.form-field{
  flex:1;
  margin-bottom:12px;
}
label{
  display:block;
  font-size:12px;
  margin-bottom:4px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea{
  width:100%;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.16);
  background:rgba(0,0,0,0.4);
  color:var(--ac-text);
  padding:9px 11px;
  font-family:var(--ac-font-main);
  font-size:13px;
}
textarea{
  min-height:120px;
  resize:vertical;
}
input:focus,
textarea:focus,
select:focus{
  outline:none;
  border-color:var(--ac-gold-soft);
  box-shadow:0 0 0 1px rgba(214,177,104,0.4);
}

/* RESPONSIVE */
@media(max-width:980px){
  .navbar{
    padding:0 18px;
  }
  .nav-menu{
    gap:16px;
    font-size:12px;
  }
  .hero-inner{
    padding:32px 26px 30px;
  }
  .hero-title{
    font-size:30px;
  }
  .ac-card{
    width:48%;
    height:auto;
  }
}
@media(max-width:780px){
  .nav-brand{display:none;}
  .hero{
    padding-top: 2px;
  }
  .hero-inner{
    padding:26px 20px 26px;
  }
  .hero-title{
    font-size:26px;
    letter-spacing:.12em;
  }
  .hero-subtitle{
    font-size:14px;
  }
  .hero-actions{
    flex-direction:column;
  }
  .section-card,
  .ac-expertises-box,
  .approach-section-long,
  .method-section,
  .cta-section{
    padding:26px 18px 30px;
  }
  .ac-card{
    width:100%;
    perspective:none;
    height:auto;
  }
  .ac-flip{
    transform:none !important;
  }
  .ac-back{
    display:none;
  }
  .approach-item-long,
  .method-step{
    flex:1 1 100%;
  }
  .cta-action-block{
    text-align:left;
  }
  .contact-grid{
    grid-template-columns:1fr;
  }
}


/* COOKIE BANNER */
.cookie-banner{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:999;
  padding:16px 20px;
  background:rgba(5,6,10,0.96);
  border-top:1px solid rgba(207,164,93,0.55);
  box-shadow:0 -10px 30px rgba(0,0,0,0.75);
  backdrop-filter:blur(10px);
  font-size:13px;
}
.cookie-banner__inner{
  max-width:1180px;
  margin:0 auto;
  display:flex;
  gap:18px;
  align-items:flex-start;
  justify-content:space-between;
}
.cookie-banner__text{
  color:var(--ac-muted);
  line-height:1.5;
}
.cookie-banner__text b{
  color:var(--ac-text);
}
.cookie-banner__actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  align-items:center;
  justify-content:flex-end;
}
.cookie-banner__link{
  font-size:12px;
  color:var(--ac-gold);
  text-decoration:underline;
}
.cookie-banner--hidden{
  display:none;
}
.btn-sm{
  padding:8px 16px;
  font-size:12px;
}

/* Responsive cookie banner */
@media (max-width:768px){
  .cookie-banner__inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .cookie-banner__actions{
    justify-content:flex-start;
  }
}


/* PREMIUM COOKIE BANNER ENHANCEMENT */
.cookie-banner{
  background:rgba(5,5,10,0.97);
  border-top:1px solid rgba(214,177,104,0.55);
  backdrop-filter:blur(15px);
  padding:24px;
}
.cookie-banner__text{
  font-size:14px;
  line-height:1.55;
}

/* Premium header */
.ac-header{background:#000;padding:20px 40px;position:fixed;top:0;left:0;right:0;z-index:999;}
.ac-header-inner{display:flex;justify-content:space-between;align-items:center;max-width:1400px;margin:auto;}
.ac-logo img{height:80px;}
.ac-nav a{color:#fff;margin:0 20px;font-size:18px;text-decoration:none;}
.ac-lang img{height:20px;margin-left:10px;}

/* Premium gradient header */
.ac-header {
  background: linear-gradient(to bottom, #0B0E11 0%, #101317 100%);
  padding: 25px 40px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: 130px;
}
.ac-header-inner {
  max-width: 1500px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ac-logo img { height: 100px; }
.ac-nav a {
  color: #fff;
  margin: 0 20px;
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.ac-lang img {
  height: 18px;
  margin-left: 12px;
}
.hero-overlay {
  background: rgba(0,0,0,0.30) !important;
}

/* FINAL PREMIUM FIX */
.ac-header {
  background: linear-gradient(to bottom, #0B0E11 0%, #101317 100%) !important;
  height: 150px !important;
  padding: 30px 40px !important;
}
.ac-header-inner {display:flex !important; align-items:center !important; justify-content:space-between !important;}
.ac-logo img {height: 140px !important;}
.ac-nav a {font-size: 12px !important; color:#fff !important; margin:0 15px !important;}
.ac-lang img {height:14px !important; margin-left:10px !important;}


/* spacing fix */
.ac-nav {display:flex !important; gap:20px !important;}
.ac-nav a {margin:0 !important; font-size:12px !important;}
.ac-lang img {height:12px !important; margin-left:6px !important;}
.ac-logo img {height:140px !important;}


/* FINAL FIX 190px header + no overlay */
.ac-header {
  background: linear-gradient(to bottom, #0B0E11 0%, #101317 100%) !important;
  height: 190px !important;
  padding: 45px 60px !important;
}
.ac-header-inner {display:flex !important; align-items:center !important; justify-content:space-between !important;}
.ac-logo img {height:140px !important;}
.ac-nav, .ac-lang {display:flex !important; align-items:center !important;}
.ac-nav a {font-size:12px !important; margin:0 12px !important; color:#fff !important;}
.ac-lang img {height:12px !important; margin-left:6px !important;}



.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/hero-office.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}


@media (max-width: 768px) {
    .hero-bg {
        background-image: url("../img/hero-office-mobile.webp");
        background-position: center center;
        background-size: cover;
        filter: brightness(0.9);
    }
}

/* Mobile layout fixes */
@media (max-width: 780px){
  /* Make space under fixed header */
  .hero{
    padding-top: 2px;
  }
  /* Navigation stacked so languages are visible */
  .ac-header-inner{
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .ac-nav{
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
  .ac-lang{
    margin-top: 4px;
  }
}

/* Extra-small screens: cards full width, no flip and no overlap */
@media (max-width: 640px){
  .ac-grid{
    display: block;
  }
  .ac-card{
    width: 100%;
    height: auto;
    margin-bottom: 24px;
  }
  .ac-flip{
    height: auto;
    transform: none !important;
  }
  .ac-face{
    position: relative;
  }
}


/* === PREMIUM MOBILE SLIDE-IN MENU === */
.ac-burger{
  display:none;
  margin-left:auto;
  width:42px;
  height:30px;
  padding:5px 7px;
  border-radius:999px;
  border:1px solid rgba(214,177,104,0.55);
  background:
    radial-gradient(circle at 10% 0%,rgba(255,255,255,0.12),transparent 55%),
    radial-gradient(circle at 90% 100%,rgba(214,177,104,0.45),transparent 60%),
    linear-gradient(135deg,#3b2a13,#0b0905);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
}
.ac-burger span{
  height:2px;
  background:linear-gradient(90deg,#FBE4B5,#F1C36B,#D9A546,#FBE4B5);
  border-radius:5px;
}

/* Slide-in */
.ac-nav{
  display:flex;
  gap:30px;
}

@media(max-width:900px){
  .ac-burger{display:flex;}
  .ac-nav{
    position:fixed;
    top:70px;
    right:-260px;
    width:240px;
    background:#05060a;
    flex-direction:column;
    padding:20px;
    border-left:1px solid rgba(214,177,104,0.4);
    transition:right .3s ease;
  }
  .ac-nav.ac-open{
    right:0;
  }
  .ac-header-inner{
    flex-wrap:nowrap;
  }
}


@media (min-width: 1025px) {
  #mobileBurger { display: none !important; }
}
@media (max-width: 1024px) {
  .header { position: relative; }
  #mobileBurger {
    display:block !important;
    position:absolute;
    top:50%;
    right:20px;
    transform:translateY(-50%);
    z-index:999999;
  }
  .desktop-menu, .lang-switcher {
    position: relative;
    z-index: 1;
  }
}



/* Burger fix */
@media (min-width: 1024px){
  .ac-burger{display:none !important;}
}
@media (max-width: 1023px){
  .ac-burger{
    position:absolute !important;
    top:10px !important;
    right:10px !important;
    z-index:9999 !important;
  }
}
header, .header, #header{
  position:relative !important;
}
