:root{
      --bg:#000000;
      --bg-2:#0b0b0b;
      --panel:#0f0f0f;
      --panel-2:#141414;

      --text:#ffffff;
      --muted:#cfcfcf;
      --muted-2:#9a9a9a;

      --line:rgba(255,255,255,.12);
      --line-2:rgba(255,255,255,.18);

      --gold:#d6b25e;
      --gold-2:#b8933f;

      --radius:18px;
      --radius-2:24px;

      --shadow:0 20px 60px rgba(0,0,0,.65);
      --shadow-soft:0 14px 40px rgba(0,0,0,.55);
    }

    *{ box-sizing:border-box; }

    html, body{
      height:100%;
    }

    body{
      margin:0;
      font-family:ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
      background:radial-gradient(1200px 800px at 50% -10%, #111 0%, #050505 45%, #000 100%);
      color:var(--text);
      letter-spacing:.2px;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    .site-container{
      max-width:1120px;
    }

    .stars{
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.35;
      background-image:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,.22) 0 1px, transparent 2px),
        radial-gradient(circle at 76% 33%, rgba(255,255,255,.18) 0 1px, transparent 2px),
        radial-gradient(circle at 38% 62%, rgba(255,255,255,.14) 0 1px, transparent 2px),
        radial-gradient(circle at 88% 78%, rgba(255,255,255,.16) 0 1px, transparent 2px),
        radial-gradient(circle at 22% 86%, rgba(255,255,255,.12) 0 1px, transparent 2px);
      background-size:520px 520px, 610px 610px, 740px 740px, 820px 820px, 900px 900px;
      animation:drift 18s linear infinite;
    }

    @keyframes drift{
      from{ transform:translateY(0); }
      to{ transform:translateY(22px); }
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      backdrop-filter:blur(10px);
      background:rgba(0,0,0,.35);
      border-bottom:1px solid var(--line);
    }

    .navbar{
      padding-top:14px;
      padding-bottom:14px;
    }

    .navbar-toggler{
      border-color:var(--line);
      background:rgba(255,255,255,.04);
    }

    .navbar-toggler:focus{
      box-shadow:none;
      border-color:var(--line-2);
    }

    .navbar-toggler-icon{
      filter:invert(1);
      opacity:.8;
    }

    .brand-link{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
    }

    .logo{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:999px;
      border:1px solid rgba(214,178,94,.55);
      box-shadow:0 0 0 6px rgba(214,178,94,.06);
      flex:0 0 auto;
    }

    .logo svg{
      width:26px;
      height:26px;
      display:block;
    }

    .brand-title{
      display:flex;
      flex-direction:column;
      line-height:1.05;
    }

    .brand-title strong{
      font-size:15px;
      letter-spacing:1px;
      color:var(--gold);
    }

    .brand-title span{
      font-size:11px;
      color:var(--muted-2);
      letter-spacing:2px;
      margin-top:2px;
    }

    .navbar-nav .nav-link{
      font-size:13px;
      color:var(--muted);
      padding:10px 10px;
      border-radius:10px;
      transition:all .18s ease;
    }

    .navbar-nav .nav-link:hover{
      color:var(--text);
      background:rgba(255,255,255,.06);
    }

    .nav-right{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .nav-buttons{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }

    .lang{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      color:var(--muted);
      font-size:12px;
    }

    .lang button{
      all:unset;
      cursor:pointer;
      padding:4px 8px;
      border-radius:999px;
      transition:background .15s ease, color .15s ease;
    }


    .lang button:hover{
      background:rgba(255,255,255,.06);
      color:var(--text);
    }

    .lang a{
      padding:4px 10px;
      border-radius:999px;
      text-decoration:none;
      color:var(--text);
      font-size:12px;
      display:inline-block;
    }

    .lang a.active{
      background: rgba(214,178,94,.12);
      color: var(--gold);
      outline: 1px solid rgba(214,178,94,.35);
        
    }

    .lang a{
      transition:all .2s ease;
    }

    .lang a:hover{
      background: rgba(255,255,255,.06);
    }

    .lang{
    display:flex;
    align-items:center;
    gap:10px;
    }

.lang-switch{
position:relative;
display:flex;
gap:4px;
padding:4px;
border-radius:999px;
border:1px solid rgba(255,255,255,.08);
background:rgba(255,255,255,.02);
}

.lang-switch a{
position:relative;
z-index:2;
padding:4px 10px;
font-size:12px;
text-decoration:none;
color:var(--text);
}

.lang-slider{
position:absolute;
top:4px;
left:4px;
height:22px;
width:36px;
border-radius:999px;

background:rgba(214,178,94,.18);
outline:1px solid rgba(214,178,94,.35);

box-shadow:
0 0 6px rgba(214,178,94,.35),
0 0 12px rgba(214,178,94,.15);

transition:
transform .35s ease,
box-shadow .35s ease;
}
.lang-slider.en{
transform:translateX(0);
}

.lang-slider.fr{
transform:translateX(40px);
}

.lang-switch:hover .lang-slider{
box-shadow:
0 0 8px rgba(214,178,94,.45),
0 0 16px rgba(214,178,94,.25);
}

.service-intro{
max-width:720px;
margin:0 auto 40px;
text-align:center;
color:var(--muted);
font-size:14px;
line-height:1.6;
}

    .lang-slider.en ~ a:first-of-type,
    .lang-slider.fr ~ a:last-of-type{
    color:var(--gold);
    }

    .btn-ui{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border-radius:999px;
      border:1px solid var(--line-2);
      background:rgba(255,255,255,.04);
      color:var(--text);
      font-size:13px;
      cursor:pointer;
      transition:transform .15s ease, background .15s ease, border-color .15s ease;
      user-select:none;
    }

    .btn-ui:hover{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.26);
      transform:translateY(-1px);
      color:var(--text);
    }

    .btn-ui-primary{
      border-color:rgba(214,178,94,.55);
      background:rgba(214,178,94,.10);
    }

    .btn-ui-primary:hover{
      background:rgba(214,178,94,.15);
      color:var(--text);
    }

    .hero{
      padding:44px 0 18px;
    }


    .hero-card{
      border:1px solid var(--line);
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      border-radius:var(--radius-2);
      box-shadow:var(--shadow);
      overflow:hidden;
      height:100%;
    }


    .hero-main{
      padding:34px 28px 22px;
      position:relative;

      background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.85)),
        url('../images/hero-team.webp');

      background-size:cover;
      background-position:center;
    }
    .hero-main:before{
      content:"";
      position:absolute;
      inset:-120px -160px auto auto;
      width:360px;
      height:360px;
      border-radius:999px;
      background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.08) 0, transparent 60%);
      opacity:.8;
    }

    .kicker{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(0,0,0,.25);
      color:var(--muted);
      font-size:12px;
      position:relative;
      z-index:1;
    }

    .kicker i{
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--gold);
      box-shadow:0 0 0 6px rgba(214,178,94,.12);
    }
    .cta-section{
      padding:60px 0;
    }

    .cta-card{
      border:1px solid var(--line);
      border-radius:22px;

      padding:48px 36px;

      background:
      linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));

      box-shadow:var(--shadow);
    }

    .cta-card h2{
      font-size:28px;
      margin-bottom:12px;
    }

    .cta-card p{
      color:var(--muted);
      margin-bottom:22px;
    }

    .cta-buttons{
      display:flex;
      justify-content:center;
      gap:14px;
      flex-wrap:wrap;
    }
    .contact-photo{
      width:100%;
      height:200px;
      object-fit:cover;
      border-radius:14px;
      margin-bottom:20px;
    }

    .contact-details h5{
      margin-bottom:14px;
    }

    .contact-line{
      margin-bottom:10px;
      color:var(--muted);
    }
.contact-card{

  border:1px solid var(--line);

  border-radius:22px;

  padding:50px 45px;

  background:
  linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));

  box-shadow:var(--shadow);

}
.contact-form-area{
  padding-right:20px;
}

.contact-info-area{
  padding-left:20px;
}
.contact-info-area img{
  margin-bottom:20px;
  border-radius:14px;
}
.contact-info-area h5{
  margin-top:10px;
  margin-bottom:12px;
}

.contact-info-area{
  border-left:1px solid rgba(255,255,255,.08);
  padding-left:30px;
}

.contact-card input,
.contact-card textarea{

  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);

  color: var(--text);

  border-radius: 12px;

  padding: 14px 16px;

  font-size: 14px;

}

/* placeholder color */

.contact-card input::placeholder,
.contact-card textarea::placeholder{
  color: var(--muted-2);
}

/* focus style */

.contact-card input:focus,
.contact-card textarea:focus{

  outline: none;
  box-shadow: none;

  border-color: rgba(214,178,94,.5);

  background: rgba(255,255,255,.05);

}
.contact-card textarea{
  min-height:140px;
}


.service-row-block{
  padding: 28px 0 72px;
}

.service-photo{
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 22px;
  border: 1px solid var(--line);
  display: block;
}

.service-title{
  font-size: 28px;
  margin-bottom: 10px;
}

.service-desc{
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 60ch;
}

.service-detail{
  height: 100%;
}

.detail-icon{
  width:42px;
  height:42px;

  border-radius:12px;

  border:1px solid var(--line);

  background:rgba(255,255,255,.03);

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:14px;
}

.detail-icon svg{
  width:20px;
  height:20px;

  stroke:white;
  opacity:.9;
}

.service-detail h5{
  font-size:16px;
  font-weight:600;
  margin-bottom:10px;
}

/* bullet list */

.service-detail ul{
  list-style:none;
  padding-left:0;
  margin:0;
}

/* bullet items */

.service-detail li{
  position:relative;
  padding-left:18px;

  font-size:13px;
  line-height:1.55;

  color:var(--muted);
  margin-bottom:6px;
}

.service-detail li::before{

  content:"";

  position:absolute;
  left:0;
  top:8px;

  width:6px;
  height:6px;

  border-radius:50%;

  background:var(--gold);

  box-shadow:0 0 0 3px rgba(214,178,94,.15);
}


.service-row-block{
  padding:30px 0 70px;
}

.service-row-block{
  border-bottom:1px solid rgba(255,255,255,.08);
}

.service-row-block:last-child{
  border-bottom:none;
}

.services-card{

  border:1px solid var(--line);

  border-radius:22px;

  padding:60px 48px;

  background:
  linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));

  box-shadow:var(--shadow);

}

.service-photo{
  transition: transform .35s ease;
}

.service-photo:hover{
  transform: scale(1.04);
}

.why-section{
  padding:80px 0;
}

.why-card{

  border:1px solid var(--line);
  border-radius:22px;

  padding:50px 40px;

  background:
  linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));

  box-shadow:var(--shadow);
}

.why-item{
  padding:10px 14px;
}

.why-icon{

  width:46px;
  height:46px;

  margin:0 auto 16px;

  border-radius:12px;

  border:1px solid var(--line);

  background:rgba(255,255,255,.03);

  display:flex;
  align-items:center;
  justify-content:center;
}

.why-icon svg{
  width:22px;
  height:22px;
  opacity:.9;
}

.why-item h5{
  margin-bottom:8px;
}

.why-item p{
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}

.reveal.active{
  opacity:1;
  transform:none;
}
    h1{
      margin:16px 0 10px;
      font-size:clamp(30px, 4.2vw, 44px);
      letter-spacing:.6px;
      position:relative;
      z-index:1;
    }

    .lead-ui{
      margin:0;
      color:var(--muted);
      line-height:1.6;
      max-width:58ch;
      position:relative;
      z-index:1;
    }

    .hero-cta{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:18px;
      position:relative;
      z-index:1;
    }

    .hero-mini{
      padding:0;
      background:none;
      border:none;
      box-shadow:none;
    }

    .mini-block{
      border:1px solid var(--line);
      border-radius:16px;
      padding:18px 16px;
      background:rgba(255,255,255,.02);

      transition:all .2s ease;
    }

    .mini-block:hover{
      border-color:rgba(214,178,94,.4);
      background:rgba(255,255,255,.04);
    }

    .mini-block h3{
      margin:0 0 8px;
      font-size:13px;
      letter-spacing:.8px;
      text-transform:uppercase;
      color:var(--muted);
    }

    .mini-block p{
      margin:0;
      color:var(--text);
      line-height:1.55;
      font-size:13px;
    }

    section{
      padding:34px 0;
    }

    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:16px;
    }

    .section-head h2{
      margin:0;
      font-size:26px;
      letter-spacing:.5px;
    }

    .section-head p{
      margin:0;
      color:var(--muted);
      max-width:58ch;
      line-height:1.55;
    }

    .panel{
      border:1px solid var(--line);
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      border-radius:var(--radius-2);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      height:100%;
    }

    .panel-inner{
      padding:20px;
    }

    .panel h3{
      margin:0 0 10px;
      font-size:16px;
      letter-spacing:.4px;
    }

    .panel .sub{
      margin:0 0 14px;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }

    .grid-cards{
      display:grid;
      grid-template-columns:1fr;
      gap:12px;
    }

    .service-card{
      display:flex;
      align-items:flex-start;
      gap:14px;
      padding:14px;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(0,0,0,.22);
    }

    .icon{
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.04);
      display:grid;
      place-items:center;
      flex:0 0 auto;
    }

    .icon svg{
      width:22px;
      height:22px;
    }

    .service-card strong{
      display:block;
      font-size:14px;
      margin-bottom:6px;
    }

    .service-card ul{
      margin:0;
      padding-left:18px;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }

    .contact-form{
      display:grid;
      gap:10px;
      margin-top:10px;
    }

    .form-control-ui{
      width:100%;
      padding:12px 12px;
      border-radius:12px;
      border:1px solid var(--line);
      background:rgba(0,0,0,.35);
      color:var(--text);
      outline:none;
      font-size:13px;
      appearance:none;
    }

    .form-control-ui::placeholder{
      color:#b3b3b3;
    }

    .form-control-ui:focus{
      border-color:rgba(255,255,255,.28);
      box-shadow:none;
      background:rgba(0,0,0,.35);
      color:var(--text);
    }

    textarea.form-control-ui{
      min-height:120px;
      resize:vertical;
    }

    .contact-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:12px;
      color:var(--muted);
      font-size:13px;
    }

    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      color:var(--muted);
      font-size:13px;
    }

    footer{
      padding:26px 0 34px;
      border-top:1px solid var(--line);
      color:var(--muted-2);
      font-size:12px;
    }

    .media-strip{
      margin-top:18px;
    }

    .media-tile{
      border:1px solid var(--line);
      background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      border-radius:var(--radius);
      padding:14px;
      overflow:hidden;
      position:relative;
      min-height:120px;
      height:100%;
    }

    .media-tile:before{
      content:"";
      position:absolute;
      inset:-60px -80px auto auto;
      width:220px;
      height:220px;
      border-radius:999px;
      background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.07) 0, transparent 60%);
      opacity:.7;
    }

    .media-tile h4{
      margin:0 0 6px;
      font-size:12px;
      letter-spacing:.9px;
      text-transform:uppercase;
      color:var(--muted);
      position:relative;
      z-index:1;
    }

    .media-tile p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
      max-width:34ch;
      position:relative;
      z-index:1;
    }

    .media-art{
      position:absolute;
      right:10px;
      bottom:-6px;
      width:120px;
      height:120px;
      opacity:.95;
    }

    .media-art path,
    .media-art rect,
    .media-art circle,
    .media-art line{
      stroke:rgba(255,255,255,.9);
    }

    @media (max-width: 991.98px){
      .nav-right{
        flex-direction:column;
        align-items:flex-start;
        margin-top:14px;
      }
    }

    @media (max-width: 575.98px){
      .brand-link{
        min-width:auto;
      }
    }