
:root{
  --navy:#071b2f;
  --navy2:#0a2740;
  --gold:#d6b456;
  --gold2:#b8932f;
  --ink:#071b2f;
  --white:#ffffff;
  --green:#2ecc71;
  --shadow:0 18px 60px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--navy);
  color:#eaf2ff;
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.container{width:min(1100px, 92vw); margin:0 auto}

.topbar{
  background:#06233f;
  border-bottom:1px solid rgba(214,180,86,.35);
  color:#eaf2ff;
  font-size:14px;
}
.topbar__inner{display:flex; align-items:center; padding:10px 0}
.topbar__spacer{flex:1}
.topbar__cta{display:flex; gap:10px; align-items:center; opacity:.95}
.wa-dot{
  width:10px; height:10px; border-radius:999px; background:var(--green);
  box-shadow:0 0 0 6px rgba(46,204,113,.15);
}

.header{
  position:sticky; top:0; z-index:50;
  background:linear-gradient(#d6b456, #caa83c);
  color:#0b1d2e;
  border-bottom:1px solid rgba(0,0,0,.12);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 0;
}
.brand__name{
  font-family:Cinzel,serif;
  font-weight:700;
  letter-spacing:.5px;
  line-height:1.05;
  font-size:28px;
  color:#3b1b3f;
}
.brand__name span{display:inline-block; margin-top:2px}
.nav{display:flex; gap:28px; font-weight:600}
.nav a{opacity:.85}
.nav a:hover{opacity:1}
.navbtn{display:none; border:0; background:transparent; font-size:24px; cursor:pointer; color:#0b1d2e}

.mobileNav{
  background:linear-gradient(#d6b456, #caa83c);
  border-top:1px solid rgba(0,0,0,.12);
  padding:12px 0;
}
.mobileNav a{display:block; padding:10px 4vw; font-weight:600; color:#0b1d2e}

.hero{position:relative; min-height:620px; display:flex; align-items:center}
.hero__bg{
  position:absolute; inset:0;
  background:
    url("./assets/bg_stars.svg") center/cover no-repeat;
  filter:saturate(1.05);
}
.hero__inner{position:relative; padding:64px 0 70px; text-align:center}
.hero__seal{position:relative; width:250px; height:250px; margin:0 auto 22px}
.hero__ring{
  position:absolute; inset:-16px;
  border-radius:999px;
  background:conic-gradient(from 0deg, #f2de9a, #b58b1d, #f2de9a, #b58b1d, #f2de9a);
  box-shadow: var(--shadow);
}
.hero__img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  border-radius:999px;
  border:10px solid rgba(255,255,255,.18);
}
.hero__title{
  font-family:Cinzel,serif;
  font-weight:700;
  font-size: clamp(34px, 5.2vw, 64px);
  margin:10px 0 10px;
  color:#f2de9a;
  text-shadow:0 4px 28px rgba(0,0,0,.55);
  letter-spacing:1px;
}
.hero__subtitle{
  width:min(980px, 92vw);
  margin:0 auto 26px;
  font-weight:600;
  letter-spacing:.6px;
  text-transform:uppercase;
  opacity:.92;
}

.hero__actions{display:flex; gap:14px; justify-content:center; flex-wrap:wrap}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:14px 22px;
  border-radius:10px;
  font-weight:700;
  letter-spacing:.3px;
  transition:transform .12s ease, opacity .12s ease, background .12s ease;
  border:1px solid transparent;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
  background:var(--green);
  color:#061a2f;
  box-shadow:0 14px 40px rgba(46,204,113,.22);
}
.btn--ghost{
  background:transparent;
  border-color:rgba(242,222,154,.55);
  color:#f2de9a;
}

.goldBlock{
  background:linear-gradient(#d6b456, #caa83c);
  color:#0b1d2e;
  padding:64px 0;
}
.goldBlock__title{
  font-family:Cinzel,serif;
  text-align:center;
  font-size: clamp(28px, 3.2vw, 44px);
  margin:0 0 8px;
}
.goldBlock__kicker{
  text-align:center;
  font-weight:700;
  margin:0 0 26px;
}
.goldBlock__text{
  width:min(980px, 92vw);
  margin:0 auto;
  font-size:18px;
  line-height:1.65;
}
.goldBlock__note{font-weight:600}
.goldBlock__focus{text-align:center; margin-top:22px}

.work{
  background:linear-gradient(#d6b456, #caa83c);
  padding:0 0 70px;
}
.work__grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}
.workCard{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(0,0,0,.10);
  border-radius:18px;
  padding:22px 22px 18px;
  color:#0b1d2e;
  box-shadow:0 20px 55px rgba(0,0,0,.12);
}
.workCard h3{
  font-family:Cinzel,serif;
  text-align:center;
  margin:0 0 10px;
  letter-spacing:.6px;
}
.workCard p{
  margin:0 auto 14px;
  text-align:center;
  width:min(520px, 100%);
  font-weight:600;
  opacity:.92;
}
.workCard__media{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background:#000;
  height:320px;
}
.workCard__media img{
  width:100%; height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.05);
}
.play{
  position:absolute; inset:auto 18px 18px auto;
  width:54px; height:54px;
  display:grid; place-items:center;
  border-radius:999px;
  background:rgba(46,204,113,.9);
  color:#061a2f;
  font-weight:900;
  box-shadow:0 14px 40px rgba(0,0,0,.25);
}
.play:hover{transform:translateY(-2px)}

.aboutDark{
  padding:70px 0;
  background:radial-gradient(900px 600px at 50% 0%, rgba(214,180,86,.14), transparent 60%),
             linear-gradient(#061a2f, #041422);
}
.aboutDark__top{text-align:center}
.aboutDark__top h2{
  font-family:Cinzel,serif;
  font-size:40px;
  margin:0 0 10px;
  color:#d6b456;
  letter-spacing:1px;
}
.aboutDark__lead{max-width:900px; margin:0 auto 20px; opacity:.95}
.aboutDark__lists{
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin:26px 0 18px;
}
.aboutDark__lists ul{list-style:none; padding:0; margin:0}
.aboutDark__lists li{
  margin:10px 0;
  padding-left:26px;
  position:relative;
  font-weight:600;
}
.aboutDark__lists li:before{
  content:"✓";
  position:absolute; left:0; top:0;
  color:var(--gold);
}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin:24px 0 26px;
}
.stat{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(214,180,86,.18);
  border-radius:16px;
  padding:18px 16px;
  text-align:center;
}
.stat__n{font-family:Cinzel,serif; font-size:28px; color:#f2de9a}
.stat__t{opacity:.9; font-weight:600}

.gallery{
  position:relative;
  margin:10px 0 30px;
  display:flex; align-items:center; gap:14px;
}
.gallery__track{
  flex:1;
  display:flex;
  gap:14px;
  overflow:hidden;
  scroll-behavior:smooth;
  padding:2px;
}
.gallery__track img{
  width:260px; height:170px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid rgba(214,180,86,.22);
  box-shadow:0 16px 50px rgba(0,0,0,.25);
  flex:0 0 auto;
}
.galBtn{
  width:42px; height:42px;
  border-radius:999px;
  border:1px solid rgba(242,222,154,.55);
  background:rgba(0,0,0,.18);
  color:#f2de9a;
  cursor:pointer;
  font-size:22px;
}
.galBtn:hover{transform:translateY(-1px)}

.workList{
  margin-top:6px;
  padding-top:20px;
  border-top:1px solid rgba(214,180,86,.22);
}
.workList h3{
  font-family:Cinzel,serif;
  color:#d6b456;
  text-align:center;
  margin:12px 0 8px;
  letter-spacing:1px;
}
.workList p{text-align:center; margin:0 auto 18px; max-width:900px; opacity:.95}
.workList__cols{
  display:grid; grid-template-columns:repeat(2,1fr);
  gap:20px;
}
.workList__cols ul{list-style:none; padding:0; margin:0}
.workList__cols li{padding:10px 0; border-bottom:1px solid rgba(255,255,255,.06); font-weight:600; opacity:.95}
.langs{text-align:center; margin-top:16px; opacity:.95}

.testimonials{
  padding:70px 0;
  background:linear-gradient(#041422, #061a2f);
}
.testimonials h2{
  text-align:center;
  font-family:Cinzel,serif;
  color:#d6b456;
  margin:0 0 22px;
  letter-spacing:1px;
}
.testiRow{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.testi{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(214,180,86,.18);
  border-radius:16px;
  padding:22px 18px;
  min-height:240px;
}
.testi__who{
  display:flex; gap:10px; align-items:center;
  margin-bottom:10px;
  font-weight:700;
}
.quote{
  width:38px; height:38px;
  border-radius:12px;
  display:grid; place-items:center;
  background:rgba(214,180,86,.16);
  color:#d6b456;
  font-size:22px;
}
.testi__text{opacity:.92; line-height:1.6}
.dots{display:flex; justify-content:center; gap:8px; margin:16px 0 0}
.dot{
  width:10px; height:10px; border-radius:999px;
  background:rgba(255,255,255,.25);
  border:1px solid rgba(214,180,86,.25);
  cursor:pointer;
}
.dot.isOn{background:#d6b456}

.disclaimer{
  margin:24px auto 0;
  max-width:920px;
  opacity:.88;
  text-align:center;
  line-height:1.6;
}

.cta{
  background:linear-gradient(#d6b456, #caa83c);
  color:#0b1d2e;
  padding:48px 0;
}
.cta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.cta h2{
  font-family:Cinzel,serif;
  margin:0 0 6px;
}
.cta p{margin:0; font-weight:600; opacity:.9}

.waFloat{
  position:fixed;
  right:18px; bottom:18px;
  display:flex; align-items:center; gap:10px;
  padding:12px 14px;
  background:#18c464;
  color:#061a2f;
  border-radius:14px;
  box-shadow:0 18px 55px rgba(0,0,0,.35);
  z-index:60;
  max-width:min(360px, 86vw);
}
.waIcon{
  width:34px; height:34px; border-radius:12px;
  display:grid; place-items:center;
  background:rgba(255,255,255,.25);
}
.waFloat__txt{font-weight:800}

.footer{
  background:#03101b;
  border-top:1px solid rgba(214,180,86,.18);
  padding:22px 0;
}
.footer__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
  color:#eaf2ff;
}
.footer__brand{font-weight:900; letter-spacing:.4px}
.footer__sub{opacity:.8; font-size:13px}
.footer__links{display:flex; gap:10px; align-items:center; opacity:.9}
.footer__links a{color:#d6b456; font-weight:800}

@media (max-width: 920px){
  .nav{display:none}
  .navbtn{display:block}
  .work__grid{grid-template-columns:1fr}
  .testiRow{grid-template-columns:1fr}
  .cta__inner{flex-direction:column; align-items:flex-start}
  .aboutDark__lists{grid-template-columns:1fr}
  .stats{grid-template-columns:1fr}
  .workList__cols{grid-template-columns:1fr}
  .hero{min-height:640px}
}
